/* ============================================================
   XilSolution — AI UGC studio
   Styled to the FLORA design system (styles.refero.design):
   - Obsidian #000000 canvas, Carbon #191919 surfaces, hairline Fog borders
   - monochrome chrome + one green accent (--meadow, primary CTAs only)
   - Geist = all functional UI · Playfair Display = editorial display
     (stand-in for Redaction 10 / Redaction 50 Italic)
   - radii: 24px cards+inputs · 10px buttons+tags · 9999px pill CTA+chips
   - no box-shadows: elevation = surface contrast only
   ============================================================ */

:root{
  /* FLORA color tokens */
  --obsidian: #000000;
  --pitch:    #050505;
  --carbon:   #191919;
  --graphite: #303030;
  --slate:    #606060;
  --ash:      #7b7b7b;
  --fog:      #b4b4b4;
  --mist:     #bfbfbf;
  --bone:     #eeeeee;
  --meadow:   #71d083;   /* the one chromatic accent (live flora.ai) — primary CTA only */
  --meadow-ink:#07230f;

  --bg:      var(--obsidian);
  --text:    var(--bone);
  --muted:   var(--ash);
  --body2:   var(--fog);
  --line:    rgba(180,180,180,.2);    /* hairline Fog */
  --line-hi: rgba(180,180,180,.24);   /* Fog, prominent (inputs) */

  --sans:  "Geist", Inter, system-ui, sans-serif;
  --serif: "Playfair Display", Georgia, serif;
  --ease:  cubic-bezier(.22,.8,.24,1);

  --r-card: 24px;   /* cards, inputs, large surfaces */
  --r-btn:  10px;   /* buttons, tags */
  --r-pill: 9999px; /* primary CTA + suggestion chips only */

  /* silhouette masks — the "imagery" layer (people + product) */
  --mask-bust: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 100 80'%3E%3Cpath d='M50 4a15 15 0 0 1 15 15c0 6.5-3 12-7.7 15.4C70 39 84 50 87 64l3 16H10l3-16C16 50 30 39 42.7 34.4A18.7 18.7 0 0 1 35 19 15 15 0 0 1 50 4Z'/%3E%3C/svg%3E");
  --mask-bottle: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 60 100'%3E%3Cpath d='M24 2h12a2 2 0 0 1 2 2v5l-3 4v9.5c8.5 4 14 12.5 14 22.5v39a12 12 0 0 1-12 12H23a12 12 0 0 1-12-12v-39c0-10 5.5-18.5 14-22.5V13l-3-4V4a2 2 0 0 1 2-2Z'/%3E%3C/svg%3E");
}

*{ margin:0; padding:0; box-sizing:border-box; }
html{ scroll-behavior:smooth; overflow-x:clip; }
body{
  background:
    radial-gradient(rgba(255,255,255,.045) 1px, transparent 1.4px) 0 0 / 26px 26px,
    var(--bg);
  color:var(--text);
  font-family:var(--sans);
  font-weight:400;
  line-height:1.5;
  -webkit-font-smoothing:antialiased;
  overflow-x:hidden;
}

::selection{ background:var(--bone); color:var(--pitch); }

.wrap{ max-width:1280px; margin-inline:auto; padding-inline:clamp(20px,4vw,48px); }

em{ font-family:var(--serif); font-style:italic; font-weight:400; letter-spacing:-.024em; }

/* ---------- reveal ---------- */
.js .reveal{ opacity:0; transform:translateY(26px); transition:opacity .9s var(--ease), transform .9s var(--ease); }
.js .reveal.in{ opacity:1; transform:none; }
.d1{ transition-delay:.12s } .d2{ transition-delay:.24s }
.d3{ transition-delay:.36s } .d4{ transition-delay:.48s } .d5{ transition-delay:.6s }

/* ---------- nav (FLORA: sticky, transparent, no border) ---------- */
.nav{
  position:fixed; top:0; left:0; right:0; z-index:100;
  background:linear-gradient(rgba(0,0,0,.92) 30%, rgba(0,0,0,0));
  padding-bottom:14px;
}
.nav-inner{
  max-width:1280px; margin-inline:auto; padding:20px clamp(20px,4vw,48px) 6px;
  display:flex; align-items:center; gap:40px;
}
/* FLORA: wordmark gets a serif treatment, distinct from sans UI */
.wordmark{
  font-family:var(--serif); font-weight:500; font-size:22px; letter-spacing:-.02em;
  color:var(--bone); text-decoration:none;
}
.wordmark .dot{ color:var(--slate); }
.wordmark.small{ font-size:18px; }
.nav-links{ display:flex; gap:28px; margin-left:auto; }
.nav-links a{
  color:var(--bone); text-decoration:none; font-size:14px; font-weight:400;
  opacity:.85; transition:opacity .4s var(--ease);
}
.nav-links a:hover{ opacity:1; }

/* ---------- buttons ---------- */
.btn{
  display:inline-flex; align-items:center; justify-content:center;
  padding:9px 14px; border-radius:var(--r-btn);
  font-family:var(--sans); font-size:14px; font-weight:500;
  text-decoration:none; cursor:pointer; border:1px solid transparent;
  transition:background .4s var(--ease), border-color .4s var(--ease),
             color .4s var(--ease), transform .4s var(--ease);
  white-space:nowrap;
}
/* ghost: transparent, hairline Fog border, lifts to Carbon on hover */
.btn-ghost{ background:transparent; color:var(--bone); border-color:var(--line-hi); }
.btn-ghost:hover{ background:var(--carbon); }
/* the one light element: Bone pill, Pitch text */
.btn-pill{
  background:var(--meadow); color:var(--meadow-ink);
  border-radius:var(--r-pill); padding:11px 20px;
}
.btn-pill:hover{ background:#83dc93; transform:translateY(-1px); }

/* ---------- hero ---------- */
.hero{
  position:relative; min-height:100svh;
  display:flex; flex-direction:column; align-items:center; justify-content:center;
  text-align:center; padding:120px clamp(20px,4vw,48px) 80px;
}
.hero-core{ position:relative; z-index:2; max-width:780px; }
.pill{
  display:inline-flex; align-items:center; gap:9px;
  padding:7px 16px; border:1px solid var(--line); border-radius:var(--r-pill);
  font-size:11px; letter-spacing:.14em; text-transform:uppercase;
  color:var(--ash); margin-bottom:26px;
}
.pill-dot{ width:6px; height:6px; border-radius:50%; background:var(--bone); }

/* display type = serif, tight tracking (Redaction role) */
h1{
  font-family:var(--serif);
  font-size:clamp(3rem, 7.6vw, 5.7rem);
  font-weight:400; letter-spacing:-.03em; line-height:1.04;
  color:var(--bone);
}
h1 em{ letter-spacing:-.024em; }
.sub{
  color:var(--body2); font-size:clamp(15px,1.6vw,17px); font-weight:300;
  max-width:560px; margin:22px auto 0;
}

/* FLORA Prompt Input: Carbon surface, 24px radius, circular Bone submit */
.promptbar{
  display:flex; gap:12px; align-items:center;
  margin:34px auto 0; max-width:620px;
  background:var(--carbon); border:1px solid var(--line-hi); border-radius:var(--r-card);
  padding:10px 10px 10px 24px;
  transition:border-color .5s var(--ease);
}
.promptbar:focus-within{ border-color:var(--fog); }
.promptbar input{
  flex:1; min-width:0; background:none; border:none; outline:none;
  color:var(--bone); font-family:var(--sans); font-size:15px;
}
.promptbar input::placeholder{ color:var(--ash); }
.send{
  width:44px; height:44px; flex-shrink:0; border-radius:50%;
  background:var(--meadow); color:var(--meadow-ink); border:none; cursor:pointer;
  font-size:19px; line-height:1; display:grid; place-items:center;
  transition:background .4s var(--ease), transform .4s var(--ease);
}
.send:hover{ background:#83dc93; transform:translateX(2px); }

/* suggestion chips: transparent, hairline border, Bone text */
.chips{ display:flex; flex-wrap:wrap; gap:8px; justify-content:center; margin-top:18px; }
.niche{
  background:none; border:1px solid var(--line-hi); border-radius:var(--r-pill);
  color:var(--bone); font-family:var(--sans); font-size:14px;
  padding:6px 14px; cursor:pointer;
  transition:background .4s var(--ease);
}
.niche:hover{ background:var(--carbon); }

/* floating hero phones — a collage bleeding past both edges, never under the text */
.hero-cards{ position:absolute; inset:0; z-index:1; pointer-events:none; }
.phone-float{ position:absolute; width:178px; opacity:.85; will-change:transform; }
.phone-float .screen:not(.has-media){ filter:saturate(1.2) brightness(1.18); }
.pf-1{ top:14%;   left:-2%;   transform:rotate(-6deg); }
.pf-2{ bottom:6%; left:7%;    transform:rotate(4deg); }
.pf-3{ top:12%;   right:-2%;  transform:rotate(5deg); }
.pf-4{ bottom:7%; right:7%;   transform:rotate(-4deg); }
.pf-5{ top:-6%;   left:22%;   width:150px; transform:rotate(3deg); opacity:.6; }
.pf-6{ top:-7%;   right:22%;  width:150px; transform:rotate(-5deg); opacity:.6; }
@keyframes floaty{ 0%,100%{ translate:0 0 } 50%{ translate:0 -14px } }
.pf-1 .screen{ animation:floaty 7s var(--ease) infinite; }
.pf-2 .screen{ animation:floaty 8.5s var(--ease) infinite .8s; }
.pf-3 .screen{ animation:floaty 7.6s var(--ease) infinite .4s; }
.pf-4 .screen{ animation:floaty 9s var(--ease) infinite 1.2s; }
.pf-5 .screen{ animation:floaty 8s var(--ease) infinite .5s; }
.pf-6 .screen{ animation:floaty 9.5s var(--ease) infinite 1.5s; }

.scroll-hint{ position:absolute; bottom:28px; left:50%; margin-left:-1px; z-index:2; }
.scroll-hint span{
  display:block; width:2px; height:44px; border-radius:2px;
  background:linear-gradient(var(--bone), transparent);
  animation:drip 6.5s var(--ease) infinite;
}
@keyframes drip{ 0%{ transform:scaleY(0); transform-origin:top } 45%{ transform:scaleY(1); transform-origin:top }
  55%{ transform:scaleY(1); transform-origin:bottom } 100%{ transform:scaleY(0); transform-origin:bottom } }

/* ---------- phone card (shared) — matted prints on the gallery wall ---------- */
.phone{ flex-shrink:0; }
.screen{
  position:relative; aspect-ratio:9/16; border-radius:var(--r-card); overflow:hidden;
  background:
    radial-gradient(120% 90% at 20% 0%, var(--p1), transparent 70%),
    radial-gradient(130% 100% at 85% 100%, color-mix(in srgb, var(--p1) 55%, #000), transparent 60%),
    var(--p2);
  border:1px solid var(--line);
  display:flex; flex-direction:column; justify-content:space-between;
  padding:14px;
}
/* real footage/photos inside a card */
.screen > img, .screen > video{
  position:absolute; inset:0; z-index:0; width:100%; height:100%; object-fit:cover;
}
.screen.has-media::after{ content:none; }   /* real media replaces the stand-in bust */
.chip.solo{ padding:5px 11px; }

/* the presenter — a person bust in every video frame */
.screen::after{
  content:""; position:absolute; z-index:1; left:50%; bottom:-2px;
  width:74%; aspect-ratio:100/80; transform:translateX(-50%);
  -webkit-mask:var(--mask-bust) center bottom / contain no-repeat;
  mask:var(--mask-bust) center bottom / contain no-repeat;
  background:linear-gradient(180deg,
    #dcab8c 0%, #c1906f 24%, #8a5c41 31%,
    color-mix(in srgb, var(--p1) 60%, #2a2a2a) 36%,
    color-mix(in srgb, var(--p1) 30%, #101010) 100%);
}
.screen::before{
  content:""; position:absolute; inset:0; z-index:2;
  background:linear-gradient(rgba(0,0,0,.28), transparent 30%, transparent 55%, rgba(0,0,0,.55));
  pointer-events:none;
}
.chip, .cap, .pbar{ z-index:3; }
.chip{
  position:relative; align-self:flex-start;
  display:inline-flex; align-items:center; gap:7px;
  background:rgba(5,5,5,.5); backdrop-filter:blur(6px);
  border:1px solid rgba(180,180,180,.18); border-radius:var(--r-pill);
  font-size:10.5px; font-weight:500; padding:5px 10px 5px 5px; color:var(--bone);
}
.ava{
  width:18px; height:18px; border-radius:50%;
  background:radial-gradient(circle at 30% 30%, var(--a1), var(--a2));
}
.ava.big{ width:56px; height:56px; }
.cap{
  position:relative; font-size:clamp(13px, 1.2vw, 16px); font-weight:600;
  line-height:1.25; letter-spacing:-.01em; text-align:left; color:#fff;
  text-shadow:0 1px 12px rgba(0,0,0,.6);
}
.cap em{ font-size:1.12em; }
.cap.big{ font-size:19px; }
.pbar{
  position:relative; height:3px; border-radius:3px; background:rgba(255,255,255,.16); overflow:hidden;
}
.pbar i{ position:absolute; inset:0 auto 0 0; background:var(--bone); border-radius:3px; }
.pbar i.animate{ width:0; animation:fill 15s linear infinite; }  /* ads run 15s */
@keyframes fill{ from{ width:0 } to{ width:100%} }

/* ---------- formula / node canvas ---------- */
.formula{ padding:160px clamp(20px,4vw,48px) 20px; }
.canvas{
  position:relative; margin-top:64px; min-height:560px;
  background:
    radial-gradient(rgba(255,255,255,.055) 1px, transparent 1.4px) 0 0 / 26px 26px,
    var(--carbon);
  border:1px solid var(--line); border-radius:var(--r-card);
  overflow:hidden;
}
.wires{ position:absolute; inset:0; width:100%; height:100%; pointer-events:none; }
.wires path{ fill:none; stroke:rgba(255,255,255,.2); stroke-width:2; }
.wires .pulse{ stroke:rgba(255,255,255,.55); opacity:0; transition:opacity .8s var(--ease) 1.3s; }
.canvas.wired .pulse{ opacity:1; }

/* nodes — canvas cards, one step above the panel */
.node{
  position:absolute; width:232px;
  background:var(--carbon); border:1px solid var(--line-hi); border-radius:12px;
  padding:10px;
  opacity:0; transform:translateY(18px) scale(.97);
  transition:opacity .7s var(--ease), transform .7s var(--ease);
}
.canvas.wired .node{ opacity:1; transform:none; }
.canvas.wired .n-person{ transition-delay:.15s; }
.canvas.wired .n-video{ transition-delay:.9s; }
.node-tag{
  display:block; font-size:10px; letter-spacing:.14em; text-transform:uppercase;
  color:var(--ash); margin:2px 2px 8px;
}
.node-art{
  position:relative; height:104px; border-radius:8px; overflow:hidden;
  background:radial-gradient(circle at 30% 25%, var(--n1), var(--n2));
}
.node-art img, .node-face img{
  position:absolute; inset:0; width:100%; height:100%; object-fit:cover;
}
.node-face img{ object-position:50% 22%; }
.node-art.has-media::after{ content:none; }
/* the product — a bottle silhouette, not a blob */
.node-art::after{
  content:""; position:absolute; top:9%; bottom:0; left:50%;
  aspect-ratio:60/100; transform:translateX(-50%);
  -webkit-mask:var(--mask-bottle) center bottom / contain no-repeat;
  mask:var(--mask-bottle) center bottom / contain no-repeat;
  background:linear-gradient(180deg,#efe7fb 0%,#cbb7ec 30%,#7e57c2 62%,#3d2a70 100%);
}
.node-face{ position:relative; height:104px; border-radius:8px; overflow:hidden;
  background:radial-gradient(circle at 50% 18%, #3a3347, var(--graphite)); }
/* the creator — a person bust, not an orb */
.node-face .bust{
  position:absolute; left:50%; bottom:0; width:62%; aspect-ratio:100/80;
  transform:translateX(-50%);
  -webkit-mask:var(--mask-bust) center bottom / contain no-repeat;
  mask:var(--mask-bust) center bottom / contain no-repeat;
  background:linear-gradient(180deg,#dcae90 0%,#c1906f 24%,#8a5c41 32%,#4a3a63 38%,#2f2947 100%);
}
.node-meta{ padding:10px 2px 2px; }
.node-meta b{ display:block; font-size:14px; font-weight:600; }
.node-meta span{ font-size:12px; color:var(--ash); }

.n-product{ left:5%; top:8%; }
.n-person{ left:5%; bottom:8%; }
.n-video{ right:5%; top:50%; transform:translateY(-50%) !important; width:216px; padding:8px; }
.canvas .n-video{ opacity:0; }
.canvas.wired .n-video{ opacity:1; }
.n-video .node-tag{ margin:4px 4px 8px; }
.n-video .screen{ border-radius:10px; }

/* operators */
.op{
  position:absolute; z-index:3; width:36px; height:36px;
  display:grid; place-items:center;
  background:var(--carbon); border:1px solid var(--line-hi); border-radius:50%;
  font-family:var(--sans); font-weight:500; font-size:17px; color:var(--bone);
  opacity:0; transition:opacity .6s var(--ease) .5s;
}
.canvas.wired .op{ opacity:1; }
.op-plus{ left:calc(5% + 98px); top:50%; transform:translate(0,-50%); }
.op-eq{ right:calc(5% + 240px); top:50%; transform:translate(0,-50%); }

@media (max-width: 900px){
  .canvas{ min-height:0; padding:28px 0; display:flex; flex-direction:column;
    align-items:center; gap:18px; }
  .node, .n-video{ position:static; transform:none !important; width:min(78%,260px); }
  .op{ position:static; transform:none; opacity:0; }
  .canvas.wired .op{ opacity:1; }
}

/* ---------- work wall ---------- */
.work{ padding:150px 0 60px; }
.section-head{ margin-bottom:64px; }
.kicker{
  font-size:12px; font-weight:500; letter-spacing:.18em; text-transform:uppercase;
  color:var(--ash); margin-bottom:20px;
}
/* section heading — serif display, one italic word (Redaction role) */
h2{
  font-family:var(--serif);
  font-size:clamp(2.2rem, 4.2vw, 3.4rem);
  font-weight:400; letter-spacing:-.036em; line-height:1.1;
  color:var(--bone); max-width:800px;
}

.marquee{ overflow:hidden; padding:18px 0;
  -webkit-mask-image:linear-gradient(90deg,transparent,#000 8%,#000 92%,transparent);
  mask-image:linear-gradient(90deg,transparent,#000 8%,#000 92%,transparent); }
.marquee .track{ display:flex; gap:22px; width:max-content; }
.marquee .phone{ width:225px; transition:transform .5s var(--ease), opacity .5s var(--ease); }
.marquee .phone:hover{ transform:translateY(-10px) scale(1.03); }
.marquee:hover .phone:not(:hover){ opacity:.6; }
/* hover = play: the card's real <video> starts; its progress bar is driven
   by the video's actual playback position (see app.js) */
.m-left  .track{ animation:scroll-l var(--dur,36s) linear infinite; }
.m-right .track{ animation:scroll-r var(--dur,42s) linear infinite; }
.marquee:hover .track{ animation-play-state:paused; }
@keyframes scroll-l{ from{ transform:translateX(0) } to{ transform:translateX(-50%) } }
@keyframes scroll-r{ from{ transform:translateX(-50%) } to{ transform:translateX(0) } }

/* ---------- process ---------- */
.process{
  padding:160px clamp(20px,4vw,48px);
  display:grid; grid-template-columns:1.1fr .9fr; gap:clamp(40px,6vw,90px);
  align-items:center;
}
.steps{ list-style:none; margin-top:48px; display:flex; flex-direction:column; }
.step{
  display:flex; gap:22px; padding:26px 0; border-top:1px solid var(--line);
  transition:opacity .5s var(--ease);
}
.step:last-child{ border-bottom:1px solid var(--line); }
/* feature-card numerals: Geist 600 in Ash (FLORA 01/02/03 pattern) */
.step .num{
  font-family:var(--sans); font-weight:600; font-size:18px; color:var(--ash);
  min-width:40px; padding-top:2px; letter-spacing:-.017em;
  transition:color .5s var(--ease);
}
.step h3{ font-size:17px; font-weight:600; letter-spacing:-.017em; margin-bottom:6px; }
.step p{ color:var(--body2); font-size:14.5px; font-weight:300; max-width:420px; }
/* status via grayscale weight, not color */
.step.active .num{ color:var(--bone); }
.steps.running .step:not(.active){ opacity:.35; }
.replay{ margin-top:28px; }

.proc-demo{ display:flex; justify-content:center; }
.demo-phone{ width:min(300px, 76vw); }
.demo-phone .screen{ padding:18px; } /* no shadow — surface contrast only */
.demo-status{
  text-align:center; margin-top:16px; font-size:12px; letter-spacing:.14em;
  text-transform:uppercase; color:var(--ash);
}

/* demo states */
.d-state{ position:absolute; inset:18px; z-index:4; display:flex; flex-direction:column;
  justify-content:center; align-items:center; gap:14px; text-align:center;
  opacity:0; transform:translateY(14px); transition:opacity .55s var(--ease), transform .55s var(--ease);
  pointer-events:none; }
/* demo phone: the presenter only appears once the ad is delivered */
.demo-phone .screen::after{ opacity:0; transition:opacity .6s var(--ease) .2s; }
.demo-phone[data-stage="4"] .screen::after{ opacity:1; }
.demo-phone[data-stage="0"] .d-idle,
.demo-phone[data-stage="1"] .d-scan,
.demo-phone[data-stage="2"] .d-hooks,
.demo-phone[data-stage="3"] .d-cast,
.demo-phone[data-stage="4"] .d-final{ opacity:1; transform:none; }

.d-idle p{ color:var(--ash); font-size:13px; }
.d-dotline{ display:flex; gap:6px; }
.d-dotline i{ width:6px; height:6px; border-radius:50%; background:var(--ash);
  animation:pulse 1.4s ease-in-out infinite; }
.d-dotline i:nth-child(2){ animation-delay:.2s } .d-dotline i:nth-child(3){ animation-delay:.4s }
@keyframes pulse{ 0%,100%{ opacity:.25 } 50%{ opacity:1 } }

.d-label{ font-size:11px; letter-spacing:.16em; text-transform:uppercase; color:var(--ash); }
.d-product{ display:flex; align-items:center; gap:12px; background:rgba(48,48,48,.5);
  border:1px solid var(--line); border-radius:var(--r-btn); padding:12px 16px; text-align:left; }
.d-img{ width:44px; height:44px; border-radius:8px; flex-shrink:0;
  background:radial-gradient(circle at 30% 25%, #b39ddb, #4527a0); }
.d-product b{ display:block; font-size:14px; font-weight:600; }
.d-product span{ font-size:12px; color:var(--ash); }
.d-lines{ width:100%; display:flex; flex-direction:column; gap:8px; }
.d-lines i{ height:8px; border-radius:4px; background:rgba(255,255,255,.08);
  animation:shimmer 1.6s ease-in-out infinite; }
.d-lines i:nth-child(1){ width:90% } .d-lines i:nth-child(2){ width:70%; animation-delay:.2s }
.d-lines i:nth-child(3){ width:80%; animation-delay:.4s }
@keyframes shimmer{ 0%,100%{ opacity:.4 } 50%{ opacity:1 } }

.d-hook{ width:100%; display:flex; justify-content:space-between; align-items:center; gap:10px;
  background:rgba(48,48,48,.5); border:1px solid var(--line); border-radius:var(--r-btn);
  padding:11px 14px; font-size:12.5px; text-align:left;
  opacity:0; transform:translateX(-10px); }
.d-hook b{ font-size:12px; color:var(--bone); }
.demo-phone[data-stage="2"] .d-hook{ animation:hookin .6s var(--ease) forwards; }
.demo-phone[data-stage="2"] .h1{ animation-delay:.1s }
.demo-phone[data-stage="2"] .h2{ animation-delay:.35s }
.demo-phone[data-stage="2"] .h3{ animation-delay:.6s }
@keyframes hookin{ to{ opacity:1; transform:none } }

.d-creator{ display:flex; flex-direction:column; align-items:center; gap:8px; }
.d-creator b{ font-size:17px; }
.d-creator span{ font-size:12px; color:var(--ash); }

.d-final{ justify-content:space-between; align-items:stretch; text-align:left; }
.d-final .chip{ align-self:flex-start; }
.demo-phone[data-stage="4"] .screen{ background:
  radial-gradient(120% 90% at 20% 0%, #2b1f3f, transparent 70%),
  radial-gradient(130% 100% at 85% 100%, #16101f, transparent 60%), #0c0a12; }

/* ---------- results ---------- */
.results{ padding:150px clamp(20px,4vw,48px) 80px; }
.stats{ display:grid; grid-template-columns:repeat(3,1fr); gap:22px; margin-top:56px; }
.stat{
  background:var(--carbon);                 /* Carbon card, no shadow */
  border:1px solid var(--line); border-radius:var(--r-card);
  padding:38px 32px;
}
.stat b{
  display:block; font-size:clamp(3rem,5.5vw,4.4rem); font-weight:500;
  letter-spacing:-.025em; line-height:1; color:var(--bone);
}
.stat b span{ font-family:var(--serif); font-style:italic; color:var(--slate); font-size:.55em; }
.stat p{ color:var(--body2); font-size:14px; font-weight:300; margin-top:14px; max-width:240px; }

/* ---------- statement ---------- */
.statement{
  padding:180px clamp(20px,4vw,48px);
  text-align:center; border-block:1px solid var(--line);
}
.statement p{
  font-family:var(--serif);
  font-size:clamp(2.4rem, 5.6vw, 4.4rem); font-weight:400;
  letter-spacing:-.03em; line-height:1.12; color:var(--bone);
}

/* ---------- contact ---------- */
.contact{ padding:180px clamp(20px,4vw,48px) 150px; text-align:center; }
.contact h2{ margin-inline:auto; }
.contact .sub{ margin-top:22px; }
.cta-row{ display:flex; gap:14px; justify-content:center; flex-wrap:wrap; margin-top:44px; }

/* ---------- footer ---------- */
.footer{ border-top:1px solid var(--line); padding:34px 0; }
.foot-inner{ display:flex; align-items:center; justify-content:space-between; gap:20px; flex-wrap:wrap; }
.foot-note{ color:var(--ash); font-size:13px; font-weight:300; }

/* ---------- responsive ---------- */
@media (max-width: 1240px){
  .phone-float{ display:none; }   /* gallery prints only when there's wall for them */
}
@media (max-width: 900px){
  .process{ grid-template-columns:1fr; }
  .stats{ grid-template-columns:1fr; }
  .nav-links{ display:none; }
  .marquee .phone{ width:180px; }
}
@media (prefers-reduced-motion: reduce){
  *,*::before,*::after{ animation:none !important; transition-duration:.01ms !important; }
  .reveal{ opacity:1 !important; transform:none !important; }
}
