/* ============================================================
   FACEO — DARK BRAND-BRUTALISM
   Obsidian + platinum. One flame accent, rationed hard.
   Hard zero-blur shadows, 3px borders, blocky structure.
   ============================================================ */

:root{
  /* surfaces */
  --bg:#060607;
  --bg-raised:#0E0E10;
  --panel:#0E0E10;
  --panel-2:#141417;
  --card:#121214;
  --card-hi:#1A1A1D;

  /* the primary ink/border — warm off-white platinum */
  --platinum:#E9E5DC;
  --platinum-bright:#F3F2EE;
  --platinum-deep:#cfcabf;

  /* text */
  --text:#F3F2EE;
  --text-2:#bdbbb4;
  --muted:#9a988f;
  --on-accent:#0A0A0A;

  /* hairlines (platinum at low alpha — for legal/doc pages + nested) */
  --line:rgba(233,229,220,.10);
  --line-2:rgba(233,229,220,.16);
  --line-3:rgba(233,229,220,.28);

  /* meaning-only color (charts/states inside phone mockups ONLY) */
  --good:#7FB08A;
  --watch:#C9A36B;

  /* the ONE accent — flame */
  --flame-a:#FB923C;
  --flame-b:#F43F5E;
  --flame:linear-gradient(135deg,#FB923C 0%,#F43F5E 100%);
  --flame-solid:#F5B454;

  /* ---- BRUTALIST LAYER ---- */
  --ink:var(--platinum);
  --ink-bright:var(--platinum-bright);

  --b-border:3px;
  --b-border-lg:4px;
  --b-radius:4px;

  /* HARD shadows — zero blur, solid. the whole look lives here */
  --sh:6px 6px 0 var(--ink);
  --sh-lg:10px 10px 0 var(--ink);
  --sh-sm:4px 4px 0 var(--ink);
  --sh-ink:8px 8px 0 #000;
  --sh-flame:6px 6px 0 var(--flame-b);

  --maxw:1180px;
  --ease:cubic-bezier(.22,.61,.36,1);

  --font-display:"Space Grotesk", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --font-body:"Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  --font-mono:"Space Mono", ui-monospace, "JetBrains Mono", "SFMono-Regular", Menlo, monospace;
}

*{ box-sizing:border-box; margin:0; padding:0; }

html{
  -webkit-text-size-adjust:100%;
  scroll-behavior:smooth;
}

body{
  background:var(--bg);
  color:var(--text);
  font-family:var(--font-body);
  font-weight:400;
  line-height:1.6;
  -webkit-font-smoothing:antialiased;
  -moz-osx-font-smoothing:grayscale;
  overflow-x:hidden;
  position:relative;
}

a{ color:inherit; text-decoration:none; }
img{ max-width:100%; display:block; }
button{ font-family:inherit; }

::selection{ background:var(--flame-solid); color:#1a0a05; }

/* focus rings */
a:focus-visible,
button:focus-visible,
summary:focus-visible,
[tabindex]:focus-visible{
  outline:3px solid var(--platinum);
  outline-offset:3px;
  border-radius:var(--b-radius);
}

/* ---------- helpers ---------- */
.wrap{
  width:100%;
  max-width:var(--maxw);
  margin:0 auto;
  padding:0 24px;
  position:relative;
  z-index:2;
}
.sr-only{
  position:absolute; width:1px; height:1px;
  padding:0; margin:-1px; overflow:hidden;
  clip:rect(0,0,0,0); white-space:nowrap; border:0;
}
.skip{
  position:absolute; left:16px; top:-70px;
  z-index:200;
  background:var(--platinum); color:var(--on-accent);
  padding:11px 18px; border-radius:var(--b-radius);
  border:var(--b-border) solid var(--ink); box-shadow:var(--sh-ink);
  font-weight:700; font-family:var(--font-display); text-transform:uppercase;
  letter-spacing:.02em;
  transition:top .2s var(--ease);
}
.skip:focus{ top:16px; }

/* mono eyebrow/label */
.kicker{
  display:inline-block;
  font-family:var(--font-mono);
  font-weight:700;
  font-size:12px;
  letter-spacing:.14em;
  text-transform:uppercase;
  color:var(--muted);
}

h1,h2,h3{ font-family:var(--font-display); font-weight:700; }

/* ---------- sticker badges ---------- */
.sticker{
  display:inline-flex; align-items:center; gap:6px;
  font-family:var(--font-mono);
  font-size:11px; font-weight:700; letter-spacing:.08em; text-transform:uppercase;
  color:var(--ink-bright);
  background:var(--panel-2);
  border:2px solid var(--ink);
  border-radius:var(--b-radius);
  padding:5px 10px;
  box-shadow:var(--sh-sm);
  transform:rotate(-2deg);
}
.sticker.alt{ transform:rotate(2deg); }
.sticker.flame{
  background:var(--flame);
  color:#1a0a05;
  border-color:var(--flame-solid);
  box-shadow:var(--sh-flame);
}

/* flame highlight box for one word in a headline */
.hl{
  background:var(--flame); color:#1a0a05;
  padding:0 .12em;
  -webkit-box-decoration-break:clone; box-decoration-break:clone;
}

/* ============================================================
   BACKDROP — grain + dot/line grid (no soft bloom)
   ============================================================ */
.grain{
  position:fixed; inset:0;
  pointer-events:none;
  z-index:1;
  opacity:.05;
  mix-blend-mode:overlay;
  background-image:url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='160' height='160'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='2' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}
.dotgrid{
  background-image:radial-gradient(var(--line-2) 1px, transparent 1px);
  background-size:22px 22px;
  background-position:-1px -1px;
}
.linegrid{
  background-image:
    linear-gradient(var(--line) 1px, transparent 1px),
    linear-gradient(90deg, var(--line) 1px, transparent 1px);
  background-size:64px 64px;
}

/* ============================================================
   NAV
   ============================================================ */
.progress{
  position:fixed; top:0; left:0; right:0;
  height:4px; z-index:100;
  transform:scaleX(0); transform-origin:left;
  background:var(--flame);
}
.nav{
  position:sticky; top:0; z-index:90;
  padding-block:16px;
  background:rgba(6,6,7,.85);
  -webkit-backdrop-filter:blur(8px); backdrop-filter:blur(8px);
  border-bottom:var(--b-border) solid var(--ink);
  transition:padding .22s var(--ease);
}
.nav.is-scrolled{ padding-block:10px; }
.nav-inner{
  display:flex; align-items:center; justify-content:space-between; gap:18px;
}
.wordmark{
  display:inline-flex; align-items:center; gap:9px;
  font-family:var(--font-display);
  font-weight:700; font-size:22px;
  letter-spacing:-.04em; text-transform:uppercase; color:var(--text);
}
.wordmark .mark{
  width:30px; height:30px; border-radius:var(--b-radius);
  border:2px solid var(--ink); background:var(--panel-2);
  object-fit:cover; flex:none;
}
.wordmark .dot{ color:var(--flame-solid); }
.nav-links{
  display:flex; align-items:center; gap:26px;
  font-family:var(--font-mono);
  font-size:12.5px; letter-spacing:.06em; text-transform:uppercase;
  color:var(--text-2);
}
.nav-links a{ transition:color .15s var(--ease); }
.nav-links a:hover{ color:var(--ink-bright); }
.nav-right{ display:flex; align-items:center; gap:16px; }

/* mobile disclosure menu — hidden on desktop, shown <=960px */
.nav-menu{ display:none; position:relative; }
.nav-menu > summary{
  list-style:none; cursor:pointer;
  width:44px; height:44px; flex:none;
  display:grid; place-items:center;
  border:var(--b-border) solid var(--ink); border-radius:var(--b-radius);
  background:var(--panel-2); box-shadow:var(--sh-sm);
}
.nav-menu > summary::-webkit-details-marker{ display:none; }
.nav-burger,
.nav-burger::before,
.nav-burger::after{
  content:""; display:block;
  width:18px; height:2px; background:var(--ink); border-radius:1px;
}
.nav-burger{ position:relative; }
.nav-burger::before{ position:absolute; top:-6px; left:0; }
.nav-burger::after{ position:absolute; top:6px; left:0; }
.nav-menu-panel{
  position:absolute; top:calc(100% + 12px); right:0; z-index:95;
  display:flex; flex-direction:column; gap:6px;
  min-width:220px; padding:12px;
  background:var(--panel); border:var(--b-border) solid var(--ink);
  border-radius:var(--b-radius); box-shadow:var(--sh-lg);
}
.nav-menu-panel a:not(.btn-b){
  display:flex; align-items:center; min-height:44px; padding:0 12px;
  font-family:var(--font-mono); font-size:13px; letter-spacing:.06em; text-transform:uppercase;
  color:var(--text-2); border-radius:var(--b-radius);
  transition:background .15s var(--ease), color .15s var(--ease);
}
.nav-menu-panel a:not(.btn-b):hover{ background:var(--panel-2); color:var(--ink-bright); }
.nav-menu-panel .btn-b{ justify-content:center; margin-top:6px; min-height:44px; }

/* ============================================================
   BRUTALIST BUTTONS — press-down hover
   ============================================================ */
.btn-b{
  display:inline-flex; align-items:center; gap:10px;
  font-family:var(--font-display); font-weight:700; font-size:16px;
  letter-spacing:-.01em; text-transform:uppercase;
  padding:15px 26px;
  border:var(--b-border) solid var(--ink);
  border-radius:var(--b-radius);
  background:var(--ink); color:var(--on-accent);
  box-shadow:var(--sh-ink);
  cursor:pointer;
  transition:transform .12s var(--ease), box-shadow .12s var(--ease);
}
.btn-b svg{ display:block; flex:none; }
.btn-b:hover{ transform:translate(4px,4px); box-shadow:4px 4px 0 #000; }
.btn-b:active,.btn-b.is-press{ transform:translate(8px,8px); box-shadow:0 0 0 #000; }

/* App Store stacked label */
.btn-b .label-stack{ display:flex; flex-direction:column; align-items:flex-start; line-height:1.05; text-transform:none; }
.btn-b .label-stack .small{ font-family:var(--font-mono); font-size:10px; font-weight:700; opacity:.7; letter-spacing:.06em; text-transform:uppercase; }
.btn-b .label-stack .big{ font-family:var(--font-display); font-size:17px; font-weight:700; letter-spacing:-.02em; text-transform:uppercase; }

/* secondary = outline on obsidian */
.btn-b.ghost{ background:transparent; color:var(--ink); box-shadow:var(--sh); }
.btn-b.ghost:hover{ transform:translate(3px,3px); box-shadow:3px 3px 0 var(--ink); }
.btn-b.ghost:active{ transform:translate(6px,6px); box-shadow:0 0 0 var(--ink); }

/* the ONE flame CTA — App Store button */
.btn-b.flame{ background:var(--flame); color:#1a0a05; border-color:var(--flame-solid); box-shadow:6px 6px 0 #000; }
.btn-b.flame:hover{ transform:translate(4px,4px); box-shadow:2px 2px 0 #000; }
.btn-b.flame:active{ transform:translate(6px,6px); box-shadow:0 0 0 #000; }

/* compact nav CTA */
.btn-b.compact{ padding:9px 16px; font-size:14px; box-shadow:5px 5px 0 #000; }
.btn-b.compact:hover{ transform:translate(3px,3px); box-shadow:2px 2px 0 #000; }
.btn-b.compact:active{ transform:translate(5px,5px); box-shadow:0 0 0 #000; }

/* ============================================================
   SECTION SCAFFOLD
   ============================================================ */
section{ position:relative; z-index:2; }
.section{ padding-block:clamp(72px,12vw,140px); }
[id]{ scroll-margin-top:96px; }

.section-head{ max-width:720px; margin:0 auto clamp(40px,6vw,64px); }
.section-head.center{ text-align:center; }
.section-head .kicker{ margin-bottom:16px; }
.section-head h2{
  font-size:clamp(32px,5.2vw,58px);
  line-height:.98; letter-spacing:-.035em; text-transform:uppercase;
}
.section-head p{ margin-top:18px; color:var(--text-2); font-size:clamp(15px,2vw,18px); line-height:1.6; }

/* ============================================================
   HERO
   ============================================================ */
.hero{
  position:relative;
  padding-top:clamp(40px,6vw,72px);
  padding-bottom:clamp(56px,9vw,110px);
  border-bottom:var(--b-border) solid var(--ink);
  overflow:hidden;
}
.hero-grid{
  display:grid; grid-template-columns:1.08fr .92fr;
  gap:clamp(32px,5vw,72px); align-items:center;
}
.hero-stickers{ display:flex; gap:12px; flex-wrap:wrap; margin-bottom:26px; }
.hero h1{
  font-size:clamp(44px,9vw,104px);
  line-height:.92; letter-spacing:-.045em; text-transform:uppercase;
}
.hero .subhead{
  margin-top:28px; max-width:50ch;
  font-size:clamp(16px,2.2vw,19px); color:var(--text-2); line-height:1.62;
}
.hero .cta-row{ margin-top:36px; display:flex; flex-wrap:wrap; gap:16px; align-items:center; }
.hero .cta-note{
  margin-top:18px; font-family:var(--font-mono);
  font-size:11.5px; letter-spacing:.04em; color:var(--muted); text-transform:uppercase;
}

/* hero visual */
.hero-visual{ position:relative; display:flex; justify-content:center; align-items:center; min-height:460px; }
.hero-visual .shot{ transform:rotate(-2deg); }

/* ============================================================
   PHONE MOCKUP — brutalist chassis, soft inner screen
   ============================================================ */
.phone-float{ will-change:transform; }
.phone-float.idle{ animation:float 8s ease-in-out infinite; }
@keyframes float{
  0%,100%{ transform:translateY(0); }
  50%{ transform:translateY(-10px); }
}

/* exhibit frame label */
.shot{ position:relative; }
.shot::before{
  content:attr(data-label);
  position:absolute; top:-14px; left:14px; z-index:9;
  font-family:var(--font-mono); font-size:10px; font-weight:700; letter-spacing:.1em;
  color:var(--ink-bright); background:var(--panel);
  border:2px solid var(--ink); border-radius:var(--b-radius);
  padding:3px 8px; box-shadow:var(--sh-sm); transform:rotate(-2deg);
}

.phone{
  position:relative; z-index:2;
  width:100%; max-width:300px;
  aspect-ratio:9/19.5;
  background:var(--panel);
  border-radius:36px;
  border:var(--b-border-lg) solid var(--ink);
  padding:10px;
  box-shadow:14px 14px 0 #000;
}
.phone-screen{
  position:relative; height:100%;
  background:var(--bg);
  border-radius:24px; overflow:hidden;
  padding:16px 14px;
  display:flex; flex-direction:column;
}
.phone-notch{
  position:absolute; top:9px; left:50%; transform:translateX(-50%);
  width:84px; height:24px; background:var(--bg);
  border-radius:14px; z-index:5;
}
.statusbar{
  display:flex; align-items:center; justify-content:space-between;
  font-size:11px; font-weight:700; color:var(--text-2);
  font-family:var(--font-display); padding:2px 6px 12px;
}
.statusbar .sb-icons{ display:flex; align-items:center; gap:5px; }
.statusbar svg{ display:block; }

.scr-title{ font-family:var(--font-display); font-weight:700; font-size:15px; color:var(--text); text-transform:uppercase; letter-spacing:-.01em; }
.scr-sub{ font-family:var(--font-mono); font-size:10px; color:var(--muted); text-transform:uppercase; letter-spacing:.06em; }

/* ----- radar score screen ----- */
.radar-wrap{ position:relative; margin:6px auto 0; width:100%; max-width:230px; }
.radar-score{ text-align:center; margin-top:2px; }
.radar-score .big-num{ font-family:var(--font-display); font-weight:700; font-size:48px; line-height:1; color:var(--text); }
.radar-score .slash{ color:var(--muted); font-size:18px; font-weight:700; }
.verdict-pill{
  display:inline-block; margin-top:8px;
  font-family:var(--font-mono);
  font-size:10px; font-weight:700; letter-spacing:.05em; text-transform:uppercase;
  color:var(--good); border:2px solid rgba(127,176,138,.5);
  background:rgba(127,176,138,.1); border-radius:var(--b-radius); padding:4px 11px;
}
.metric-chips{ display:flex; gap:6px; justify-content:center; margin-top:12px; flex-wrap:wrap; }
.mchip{ font-family:var(--font-mono); font-size:9.5px; font-weight:700; border-radius:var(--b-radius); padding:5px 9px; border:2px solid var(--line-2); color:var(--text-2); text-transform:uppercase; letter-spacing:.03em; }
.mchip.good{ color:var(--good); border-color:rgba(127,176,138,.4); }
.mchip.watch{ color:var(--watch); border-color:rgba(201,163,107,.4); }

.radar-ring,.radar-spoke{ stroke:var(--line-2); fill:none; }
.radar-poly{ stroke:var(--platinum); stroke-width:1.8; fill:rgba(127,176,138,.18); stroke-linejoin:round; }
.radar-axis{ fill:var(--muted); font-size:7px; font-family:var(--font-mono); }
.radar-dot{ fill:var(--platinum); }

.draw .radar-poly{ stroke-dasharray:900; stroke-dashoffset:900; fill-opacity:0; transition:stroke-dashoffset 1.1s var(--ease); }
.draw.is-drawn .radar-poly{ stroke-dashoffset:0; }
.draw .radar-poly.fillin{ transition:stroke-dashoffset 1.1s var(--ease), fill-opacity .6s ease .8s; }
.draw.is-drawn .radar-poly.fillin{ fill-opacity:1; }

/* ----- plan + streak (squared brutalist) ----- */
.plan-head{ display:flex; align-items:baseline; justify-content:space-between; }
.streak-strip{ display:flex; gap:6px; align-items:center; margin:14px 0 4px; }
.day-dot{ width:18px; height:18px; border-radius:2px; border:2px solid var(--line-3); }
.day-dot.done{ background:var(--ink); border-color:var(--ink); }
.day-dot.today{ border-color:var(--ink); box-shadow:3px 3px 0 var(--ink); }
.streak-count{ display:flex; align-items:center; gap:5px; margin-left:auto; font-family:var(--font-display); font-weight:700; font-size:14px; }
.streak-count svg{ display:block; }
.progbar{ height:10px; border-radius:3px; border:2px solid var(--line-3); background:transparent; overflow:hidden; margin:14px 0; }
.progbar > i{ display:block; height:100%; width:66%; background:var(--ink); transition:width 1s var(--ease); }
.plan-prog .progbar > i{ width:0; }
.plan-prog.fill .progbar > i{ width:66%; }
.plan-row{ display:flex; align-items:center; gap:10px; padding:11px 0; border-top:1px solid var(--line); }
.checkbox{ width:20px; height:20px; border-radius:3px; border:2px solid var(--line-3); flex:none; display:grid; place-items:center; }
.checkbox.on{ background:var(--ink); border-color:var(--ink); }
.checkbox svg{ opacity:0; }
.checkbox.on svg{ opacity:1; }
.plan-row .task{ font-size:12.5px; color:var(--text); }
.plan-row.done .task{ color:var(--muted); }
.plan-row .pts{ margin-left:auto; font-family:var(--font-mono); font-size:9.5px; color:var(--muted); font-weight:700; }

/* ----- before/after slider (squared) ----- */
.ba{
  position:relative; width:100%; aspect-ratio:3/4;
  border-radius:var(--b-radius); overflow:hidden; touch-action:none;
  user-select:none; -webkit-user-select:none;
  margin-top:6px; background:var(--card);
  border:var(--b-border) solid var(--ink);
}
.ba-layer{ position:absolute; inset:0; }
.ba-before{ clip-path:inset(0 calc(100% - var(--pos,55%)) 0 0); }
.ba-label{
  position:absolute; bottom:10px;
  font-family:var(--font-mono); font-size:9px; font-weight:700;
  letter-spacing:.06em; text-transform:uppercase; color:var(--ink-bright);
  background:var(--panel); border:2px solid var(--ink);
  padding:3px 8px; border-radius:var(--b-radius); z-index:4;
}
.ba-label.now{ left:10px; }
.ba-label.pot{ right:10px; }
.ba-handle{
  position:absolute; top:0; bottom:0; left:var(--pos,55%);
  width:3px; background:var(--platinum); transform:translateX(-1.5px);
  z-index:5; cursor:ew-resize;
}
.ba-grip{
  position:absolute; top:50%; left:50%; transform:translate(-50%,-50%);
  width:44px; height:44px; border-radius:4px;
  background:var(--platinum); color:var(--on-accent);
  border:2px solid var(--on-accent);
  display:grid; place-items:center;
  box-shadow:3px 3px 0 #000;
}
.ba-disclaimer{ font-family:var(--font-mono); font-size:9px; color:var(--muted); text-align:center; margin-top:8px; line-height:1.4; text-transform:uppercase; letter-spacing:.04em; }

/* ----- hairstyle ----- */
.hair-stage{ position:relative; width:100%; aspect-ratio:1; border-radius:var(--b-radius); overflow:hidden; background:var(--card); margin-top:6px; border:var(--b-border) solid var(--ink); }
.hair-layer{ position:absolute; inset:0; opacity:0; transition:opacity .25s var(--ease); }
.hair-layer.active{ opacity:1; }
.hair-chips{ display:flex; gap:6px; flex-wrap:wrap; justify-content:center; margin-top:12px; }
.hair-chip{
  font-family:var(--font-mono); font-size:9.5px; font-weight:700; padding:6px 12px; border-radius:var(--b-radius);
  min-height:44px; display:inline-flex; align-items:center; justify-content:center;
  border:2px solid var(--ink); color:var(--text-2); background:transparent;
  text-transform:uppercase; letter-spacing:.03em;
  box-shadow:var(--sh-sm);
  cursor:pointer; transition:transform .12s var(--ease), background .2s var(--ease), color .2s var(--ease), box-shadow .12s var(--ease);
}
.hair-chip:hover{ transform:translate(2px,2px); box-shadow:2px 2px 0 var(--ink); }
.hair-chip.active{ background:var(--platinum); color:var(--on-accent); box-shadow:2px 2px 0 #000; }

/* ----- chat ----- */
.chat{ display:flex; flex-direction:column; gap:9px; margin-top:6px; flex:1; }
.bubble{
  max-width:84%; font-size:12px; line-height:1.45;
  padding:9px 12px; border-radius:var(--b-radius);
}
.bubble.in{ align-self:flex-start; background:var(--panel-2); color:var(--text); border:2px solid var(--line-3); box-shadow:var(--sh-sm); }
.bubble.out{ align-self:flex-end; background:var(--platinum); color:var(--on-accent); }
.typing{ display:inline-flex; gap:4px; align-items:center; }
.typing i{ width:6px; height:6px; border-radius:2px; background:var(--muted); animation:blink 1.2s infinite; }
.typing i:nth-child(2){ animation-delay:.2s; }
.typing i:nth-child(3){ animation-delay:.4s; }
@keyframes blink{ 0%,60%,100%{ opacity:.25; transform:translateY(0);} 30%{ opacity:1; transform:translateY(-2px);} }
.chat-input{
  margin-top:auto; display:flex; align-items:center; gap:8px;
  border:2px solid var(--line-3); border-radius:var(--b-radius); padding:7px 8px 7px 12px;
}
.chat-input span{ font-family:var(--font-mono); font-size:10.5px; color:var(--muted); flex:1; text-transform:uppercase; letter-spacing:.03em; }
.chat-send{ width:26px; height:26px; border-radius:3px; background:var(--platinum); color:var(--on-accent); display:grid; place-items:center; flex:none; }

.face-svg{ width:100%; height:100%; }

/* ============================================================
   MARQUEE — bordered slab band
   ============================================================ */
.marquee{
  border-top:var(--b-border) solid var(--ink);
  border-bottom:var(--b-border) solid var(--ink);
  background:var(--panel);
  padding:16px 0; overflow:hidden;
  -webkit-mask-image:linear-gradient(90deg,transparent,#000 6%,#000 94%,transparent);
  mask-image:linear-gradient(90deg,transparent,#000 6%,#000 94%,transparent);
}
.marquee-track{
  display:flex; gap:0; width:max-content;
  animation:marq 32s linear infinite;
}
.marquee-track span{
  white-space:nowrap; color:var(--ink);
  font-family:var(--font-mono); font-weight:700; font-size:14px; letter-spacing:.06em; text-transform:uppercase;
  padding:0 20px; display:inline-flex; align-items:center; gap:20px;
}
.marquee-track span::after{ content:"\25C6"; color:var(--flame-b); opacity:1; }
@keyframes marq{ to{ transform:translateX(-50%); } }

/* ============================================================
   HOW IT WORKS — one outer slab, internal seams
   ============================================================ */
.steps{
  display:grid; grid-template-columns:repeat(3,1fr); gap:0;
  border:var(--b-border) solid var(--ink); border-radius:var(--b-radius);
  box-shadow:var(--sh-lg); background:var(--panel);
}
.step{
  padding:36px 30px; position:relative;
  border-right:var(--b-border) solid var(--ink);
  transition:background .18s var(--ease);
}
.step:last-child{ border-right:0; }
.step:hover{ background:var(--panel-2); }
.step .num{
  display:inline-flex; align-items:center; justify-content:center;
  width:46px; height:46px; border-radius:var(--b-radius);
  border:2px solid var(--ink); box-shadow:var(--sh-sm);
  font-family:var(--font-mono); font-size:16px; font-weight:700;
  color:var(--text); margin-bottom:22px; letter-spacing:-.02em;
}
.step h3{ font-size:22px; letter-spacing:-.02em; margin-bottom:10px; text-transform:uppercase; }
.step p{ color:var(--text-2); font-size:15px; line-height:1.6; }

/* ============================================================
   FEATURES
   ============================================================ */
.feat + .feat{ margin-top:clamp(64px,9vw,110px); }
.feat-grid{
  display:grid; grid-template-columns:1fr 1fr;
  gap:clamp(36px,6vw,80px); align-items:center;
}
.feat.reverse .feat-text{ order:2; }
.feat.reverse .feat-media{ order:1; }
.feat-text .kicker{ display:block; margin-bottom:16px; }
.feat-text h2{ font-size:clamp(28px,4.4vw,46px); line-height:1.0; letter-spacing:-.03em; text-transform:uppercase; }
.feat-text p{ margin-top:18px; color:var(--text-2); font-size:clamp(15px,2vw,17px); max-width:46ch; line-height:1.62; }
.feat-list{ list-style:none; margin-top:24px; display:flex; flex-direction:column; gap:12px; }
.feat-list li{ display:flex; align-items:center; gap:12px; font-size:14.5px; color:var(--text); }
.feat-list li .tick{
  flex:none; width:24px; height:24px; border-radius:var(--b-radius);
  border:2px solid var(--ink); display:grid; place-items:center; color:var(--text);
}
.feat-media{ display:flex; justify-content:center; }

/* feature image cards (real photos) */
.media-card{
  position:relative; width:100%; max-width:420px;
  border-radius:var(--b-radius); overflow:hidden;
  border:var(--b-border) solid var(--ink);
  box-shadow:var(--sh);
  background:var(--card);
  transition:transform .14s var(--ease), box-shadow .14s var(--ease);
}
.media-card:hover{ transform:translate(-3px,-3px); box-shadow:9px 9px 0 var(--ink); }
.media-card img{ width:100%; height:auto; }
.media-card .cap{
  position:absolute; left:12px; bottom:12px;
  font-family:var(--font-mono); font-size:9.5px; font-weight:700; color:var(--ink-bright); letter-spacing:.04em; text-transform:uppercase;
  background:var(--panel); border:2px solid var(--ink); box-shadow:var(--sh-sm);
  padding:4px 9px; border-radius:var(--b-radius);
}
/* card hover lift on phone shots too */
.feat-media .shot{ transition:transform .14s var(--ease); }

/* ============================================================
   TRUST BAND
   ============================================================ */
.trust-band{
  background:var(--bg-raised);
  border-top:var(--b-border) solid var(--ink);
  border-bottom:var(--b-border) solid var(--ink);
}
.trust-grid{
  display:grid; grid-template-columns:repeat(4,1fr); gap:0;
  border:var(--b-border) solid var(--ink); border-radius:var(--b-radius);
  box-shadow:var(--sh-lg); background:var(--panel);
  margin-bottom:28px;
}
.trust-item{
  display:flex; flex-direction:column; align-items:flex-start; gap:12px;
  padding:28px 24px;
  color:var(--text); font-size:15px; font-weight:600;
  border-right:var(--b-border) solid var(--ink);
}
.trust-item:last-child{ border-right:0; }
.trust-item .ticon{
  width:40px; height:40px; border-radius:var(--b-radius);
  border:2px solid var(--ink); display:grid; place-items:center; color:var(--text);
}
.trust-item svg{ flex:none; color:var(--text); }
.trust-note{ text-align:center; color:var(--muted); font-size:14px; max-width:62ch; margin-inline:auto; line-height:1.6; }

/* ============================================================
   PRICING
   ============================================================ */
.price-card{
  max-width:460px; margin:0 auto;
  background:var(--panel); border:var(--b-border-lg) solid var(--ink);
  border-radius:var(--b-radius); padding:clamp(28px,5vw,44px);
  text-align:center; position:relative;
  box-shadow:var(--sh-lg);
}
.price-card .tag{
  display:inline-block;
  font-family:var(--font-mono); font-weight:700; font-size:12px; letter-spacing:.1em; text-transform:uppercase; color:#1a0a05;
  background:var(--flame); border:2px solid var(--flame-solid); box-shadow:var(--sh-sm);
  padding:5px 12px; border-radius:var(--b-radius); transform:rotate(-2deg);
}
.price-lines{ display:flex; flex-direction:column; gap:6px; margin:28px 0 8px; }
.price-main{ font-family:var(--font-display); font-weight:700; font-size:clamp(34px,7vw,52px); letter-spacing:-.04em; text-transform:uppercase; }
.price-main .per{ font-size:18px; color:var(--text-2); font-weight:700; }
.price-alt{ font-size:15px; color:var(--text-2); }
.price-alt b{ color:var(--text); font-weight:700; }
.value-pill{
  display:inline-block; margin-top:16px;
  font-family:var(--font-mono); font-size:11px; font-weight:700; letter-spacing:.03em; text-transform:uppercase;
  color:var(--text); background:var(--panel-2);
  border:2px solid var(--line-3); border-radius:var(--b-radius); padding:6px 13px;
}
.price-card .feat-incl{
  list-style:none; text-align:left; margin:24px auto 0; max-width:320px;
  display:flex; flex-direction:column; gap:10px;
}
.price-card .feat-incl li{ display:flex; align-items:center; gap:10px; font-size:14px; color:var(--text); }
.price-card .feat-incl li .tick{ flex:none; width:22px; height:22px; border-radius:var(--b-radius); border:2px solid var(--ink); display:grid; place-items:center; }
.price-card .sub{ font-family:var(--font-mono); color:var(--text-2); font-size:12px; margin-top:22px; text-transform:uppercase; letter-spacing:.04em; }
.price-card .cta-row{ margin-top:24px; display:flex; justify-content:center; }
.price-card .fine{ font-family:var(--font-mono); color:var(--muted); font-size:11px; margin-top:16px; text-transform:uppercase; letter-spacing:.04em; }

/* ============================================================
   FAQ — bordered rows
   ============================================================ */
.faq{
  max-width:820px; margin:0 auto;
  border:var(--b-border) solid var(--ink); border-radius:var(--b-radius);
  box-shadow:var(--sh-lg); background:var(--panel); overflow:hidden;
}
.faq details{ border-bottom:var(--b-border) solid var(--ink); }
.faq details:last-child{ border-bottom:0; }
.faq summary{
  list-style:none; cursor:pointer;
  display:flex; align-items:center; gap:16px;
  padding:22px 24px;
  font-family:var(--font-display); font-weight:700; font-size:17px;
  color:var(--text); letter-spacing:-.01em; text-transform:uppercase;
  transition:background .15s var(--ease);
}
.faq summary:hover{ background:var(--panel-2); }
.faq summary::-webkit-details-marker{ display:none; }
.faq-icon{
  margin-left:auto; flex:none; width:22px; height:22px; position:relative;
  border:2px solid var(--ink); border-radius:var(--b-radius);
  transition:transform .25s var(--ease);
}
.faq-icon::before,.faq-icon::after{
  content:""; position:absolute; background:var(--text);
  top:50%; left:50%; transform:translate(-50%,-50%);
}
.faq-icon::before{ width:10px; height:2px; }
.faq-icon::after{ width:2px; height:10px; }
.faq details[open] .faq-icon{ transform:rotate(45deg); }
.faq-body{ padding:0 24px 24px; color:var(--text-2); font-size:15px; line-height:1.65; max-width:68ch; }

/* ============================================================
   FINAL CTA
   ============================================================ */
.final{ position:relative; text-align:center; overflow:hidden; border-top:var(--b-border) solid var(--ink); }
.final .final-inner{
  max-width:760px; margin:0 auto;
  border:var(--b-border-lg) solid var(--ink); border-radius:var(--b-radius);
  box-shadow:var(--sh-lg); background:var(--panel);
  padding:clamp(40px,7vw,72px) clamp(24px,5vw,56px);
}
.final h2{ font-size:clamp(34px,7vw,72px); line-height:.96; letter-spacing:-.04em; text-transform:uppercase; }
.final p{ margin:20px auto 0; max-width:44ch; color:var(--text-2); font-size:clamp(16px,2.2vw,18px); }
.final .cta-row{ margin-top:32px; display:flex; justify-content:center; }

/* ============================================================
   FOOTER
   ============================================================ */
footer{ border-top:var(--b-border) solid var(--ink); padding-block:48px 56px; position:relative; z-index:2; background:var(--panel); }
.foot-top{ display:flex; align-items:flex-start; justify-content:space-between; flex-wrap:wrap; gap:24px; }
.foot-brand{ display:inline-flex; align-items:center; gap:9px; font-family:var(--font-display); font-weight:700; font-size:20px; letter-spacing:-.03em; text-transform:uppercase; }
.foot-brand .mark{ width:28px; height:28px; border-radius:var(--b-radius); border:2px solid var(--ink); }
.foot-copy{ font-family:var(--font-mono); font-size:12px; color:var(--muted); margin-top:8px; text-transform:uppercase; letter-spacing:.04em; }
.foot-links{ display:flex; align-items:center; flex-wrap:wrap; gap:10px 24px; font-family:var(--font-mono); font-size:12.5px; text-transform:uppercase; letter-spacing:.05em; }
.foot-links a{ color:var(--text-2); transition:color .15s var(--ease); }
.foot-links a:hover{ color:var(--ink-bright); }
.foot-trust{ margin-top:28px; padding-top:24px; border-top:1px solid var(--line); color:var(--muted); font-family:var(--font-mono); font-size:11px; text-transform:uppercase; letter-spacing:.05em; display:flex; flex-wrap:wrap; gap:8px 18px; }
.foot-trust span{ display:inline-flex; align-items:center; gap:8px; }
.foot-trust span::before{ content:"\25C6"; color:var(--flame-b); }
.foot-trust span:first-child::before{ display:none; }

/* ============================================================
   LEGAL / DOC PAGES — brutalist frame, calm reading body
   ============================================================ */
.doc{ max-width:820px; margin:0 auto; padding-block:clamp(48px,8vw,80px); }
.doc-head{
  margin-bottom:40px;
  border:var(--b-border) solid var(--ink); border-radius:var(--b-radius);
  box-shadow:var(--sh); background:var(--panel);
  padding:clamp(24px,4vw,40px);
}
.doc-head h1{ font-size:clamp(32px,5vw,52px); letter-spacing:-.04em; line-height:.98; text-transform:uppercase; }
.doc-head .eff{ margin-top:14px; font-family:var(--font-mono); color:var(--muted); font-size:12px; text-transform:uppercase; letter-spacing:.06em; }
.doc-intro{ color:var(--text-2); font-size:16px; line-height:1.7; margin-bottom:8px; }
.doc h2{
  font-family:var(--font-display); font-size:clamp(19px,3vw,25px); letter-spacing:-.02em; margin:44px 0 14px;
  text-transform:uppercase; padding-left:14px; border-left:var(--b-border) solid var(--flame-solid);
}
.doc h3{ font-family:var(--font-display); font-size:16px; font-weight:600; margin:24px 0 8px; color:var(--text); }
.doc p{ color:var(--text-2); line-height:1.72; margin-bottom:14px; font-size:15.5px; }
.doc ul{ margin:0 0 16px 20px; color:var(--text-2); line-height:1.72; font-size:15.5px; }
.doc li{ margin-bottom:8px; }
.doc a{ color:var(--text); text-decoration:underline; text-decoration-color:var(--flame-solid); text-underline-offset:3px; }
.doc a:hover{ text-decoration-color:var(--platinum); }
.doc strong{ color:var(--text); font-weight:700; }
.doc-card{
  background:var(--panel); border:var(--b-border) solid var(--ink);
  border-radius:var(--b-radius); box-shadow:var(--sh); padding:24px 26px; margin:24px 0;
}
.doc-card h3:first-child{ margin-top:0; }

/* support page contact block */
.contact-block{
  display:grid; grid-template-columns:repeat(2,1fr); gap:0;
  border:var(--b-border) solid var(--ink); border-radius:var(--b-radius);
  box-shadow:var(--sh-lg); background:var(--panel); margin:32px 0 8px;
}
.contact-block .cb-item{ padding:28px 26px; border-right:var(--b-border) solid var(--ink); }
.contact-block .cb-item:last-child{ border-right:0; }
.contact-block .cb-item .kicker{ margin-bottom:10px; }
.contact-block .cb-item h3{ font-size:20px; text-transform:uppercase; letter-spacing:-.02em; margin-bottom:8px; }
.contact-block .cb-item p{ color:var(--text-2); font-size:14.5px; line-height:1.6; }
.contact-block .cb-item a{ color:var(--text); text-decoration:underline; text-decoration-color:var(--flame-solid); text-underline-offset:3px; font-weight:600; }

/* ============================================================
   REVEAL ANIMATION (snappy)
   ============================================================ */
.reveal{ opacity:0; transform:translateY(14px); transition:opacity .45s var(--ease), transform .45s var(--ease); }
.reveal.is-in{ opacity:1; transform:none; }
.reveal-group > *{ transition-delay:calc(var(--i,0) * 60ms); }

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width:960px){
  .hero-grid{ grid-template-columns:1fr; }
  .hero-visual{ order:-1; min-height:0; margin-bottom:8px; }
  .nav-links{ display:none; }
  .nav-right{ display:none; }
  .nav-menu{ display:block; }
}
@media (max-width:860px){
  .feat-grid{ grid-template-columns:1fr; gap:32px; }
  .feat.reverse .feat-text,.feat.reverse .feat-media{ order:0; }
  .feat-media{ order:-1; }

  /* steps: outer slab, bottom seams */
  .steps{ grid-template-columns:1fr; box-shadow:var(--sh); }
  .step{ border-right:0; border-bottom:var(--b-border) solid var(--ink); }
  .step:last-child{ border-bottom:0; }

  /* trust grid: 2-col then seams */
  .trust-grid{ grid-template-columns:1fr 1fr; box-shadow:var(--sh); }
  .trust-item{ border-bottom:var(--b-border) solid var(--ink); }
  .trust-item:nth-child(2n){ border-right:0; }
  .trust-item:nth-last-child(-n+2){ border-bottom:0; }

  .contact-block{ grid-template-columns:1fr; box-shadow:var(--sh); }
  .contact-block .cb-item{ border-right:0; border-bottom:var(--b-border) solid var(--ink); }
  .contact-block .cb-item:last-child{ border-bottom:0; }
}
@media (max-width:560px){
  :root{
    --b-border:2px; --b-border-lg:3px;
    --sh:5px 5px 0 var(--ink); --sh-lg:7px 7px 0 var(--ink);
    --sh-sm:3px 3px 0 var(--ink); --sh-ink:6px 6px 0 #000;
    --sh-flame:5px 5px 0 var(--flame-b);
  }
  .wrap{ padding:0 18px; }
  .hero .cta-row{ flex-direction:column; align-items:stretch; }
  .hero .cta-row .btn-b{ justify-content:center; }
  .phone{ box-shadow:10px 10px 0 #000; }
  .foot-top{ flex-direction:column; }
  .nav-right .nav-cta-text{ display:inline; }

  /* trust grid full stack on tiny screens */
  .trust-grid{ grid-template-columns:1fr; }
  .trust-item{ border-right:0; }
  .trust-item:nth-last-child(-n+2){ border-bottom:var(--b-border) solid var(--ink); }
  .trust-item:last-child{ border-bottom:0; }
}

/* ============================================================
   REDUCED MOTION — kill non-essential motion only.
   Borders, shadows, rotations, grids are static layout → KEPT.
   ============================================================ */
@media (prefers-reduced-motion: reduce){
  html{ scroll-behavior:auto; }
  *,*::before,*::after{
    animation-duration:.001ms !important;
    animation-iteration-count:1 !important;
    transition-duration:.001ms !important;
  }
  .reveal{ opacity:1 !important; transform:none !important; }
  .phone-float.idle{ animation:none; }
  .marquee-track{ animation:none; transform:none; }
  .progress{ display:none; }
  .draw .radar-poly{ stroke-dashoffset:0; fill-opacity:1; }
  .plan-prog .progbar > i{ width:66%; }

  /* press/lift transitions off; keep a clear hover state */
  .btn-b{ transition:none; }
  .btn-b:hover,.btn-b:active{ transform:none; box-shadow:var(--sh-ink); }
  .btn-b:hover{ background:var(--ink-bright); }
  .btn-b.flame:hover{ filter:brightness(1.08); }
  .btn-b.ghost:hover{ box-shadow:var(--sh); background:rgba(233,229,220,.06); }

  .media-card{ transition:none; }
  .media-card:hover{ transform:none; box-shadow:var(--sh); border-color:var(--ink-bright); }
  .hair-chip{ transition:none; }
  .hair-chip:hover{ transform:none; box-shadow:var(--sh-sm); }
}
