/* Optional licensed upgrade — files absent by default, falls back to Switzer.
   Paths are relative to THIS file (/assets/), so they resolve to /assets/fonts/.
   They previously read "assets/fonts/..." and resolved to /assets/assets/fonts/ —
   which would have kept 404ing even after the licensed files were dropped in. */
@font-face{ font-family:"PP Neue Montreal"; font-weight:300; font-style:normal; font-display:swap;
  src:url("fonts/PPNeueMontreal-Light.woff2") format("woff2"); }
@font-face{ font-family:"PP Neue Montreal"; font-weight:350; font-style:normal; font-display:swap;
  src:url("fonts/PPNeueMontreal-Book.woff2") format("woff2"); }
@font-face{ font-family:"PP Neue Montreal"; font-weight:500; font-style:normal; font-display:swap;
  src:url("fonts/PPNeueMontreal-Medium.woff2") format("woff2"); }

/* =====================================================================
   AURA — augen.pro design language. Light, editorial, restrained.
   Palette + type tokens lifted from augen's CSS; copy is AURA-original.
   ===================================================================== */
:root{
  --paper:#fdfdfd;
  --ink:#0f1012;
  --ink-2:#1d1e20;
  --mute:rgba(15,16,18,.46);
  --mute-2:rgba(15,16,18,.30);
  --line:#e7e7ea;
  --surface:#f2f2f4;
  --surface-2:#f8f8f8;
  /* semantic accents — used sparingly, like augen's category colors */
  --accent:#ff5e1f;     /* orange — the single accent */
  --green:#00b982;
  --orange:#ff5102;
  --yellow:#fca311;

  --font:"PP Neue Montreal","Switzer",system-ui,sans-serif;

  --ease:cubic-bezier(0.16,1,0.3,1);
  --ease-sharp:cubic-bezier(0.4,0,1,1);

  --pad:clamp(20px,3.2vw,52px);
  --maxw:1680px;
  --header-h:clamp(64px,7.9vh,96px);

  /* type scale (augen-like): light weights, tight display tracking */
  --fs-hero:clamp(3.4rem,9.72vw,11rem);
  --fs-display:clamp(2.2rem,5.2vw,4.8rem);
  --fs-h2:clamp(1.7rem,3.4vw,3rem);
  --fs-lead:clamp(1.35rem,2.5vw,2.3rem);
  --fs-body:clamp(1rem,1.05vw,1.18rem);
  --fs-label:0.78rem;
}

*{ box-sizing:border-box; margin:0; padding:0; }
html{ -webkit-font-smoothing:antialiased; text-rendering:optimizeLegibility; }
body{
  font-family:var(--font);
  background:var(--paper);
  color:var(--ink);
  font-weight:350;
  font-size:var(--fs-body);
  line-height:1.45;
  letter-spacing:.008em;
  overflow-x:hidden;
}
::selection{ background:var(--ink); color:var(--paper); }

.shell{ width:100%; max-width:var(--maxw); margin-inline:auto; padding-inline:var(--pad); }
section{ position:relative; }

/* shared 12-col grid */
.grid12{ display:grid; grid-template-columns:repeat(12,1fr); column-gap:clamp(14px,2.5vw,34px); }

/* labels (numbered, uppercase, mono-ish via tabular) */
.label{ font-size:var(--fs-label); letter-spacing:.04em; text-transform:uppercase; color:var(--mute);
  font-weight:400; font-variant-numeric:tabular-nums; display:inline-flex; gap:.6em; align-items:baseline; }
.label .n{ color:var(--ink); }

/* display headings */
.display{ font-weight:300; letter-spacing:-.02em; line-height:.96; }
.h2{ font-size:var(--fs-h2); font-weight:300; letter-spacing:-.02em; line-height:1.02; }
.lead{ font-size:var(--fs-lead); font-weight:350; letter-spacing:-.01em; line-height:1.18; }
.muted{ color:var(--mute); }

/* link with directional hint + animated underline */
.arrowlink{ display:inline-flex; align-items:center; gap:.7em; color:var(--ink); text-decoration:none;
  font-size:var(--fs-body); letter-spacing:.01em; position:relative; width:fit-content; }
.arrowlink .ul{ position:relative; }
.arrowlink .ul::after{ content:""; position:absolute; left:0; bottom:-2px; height:1px; width:100%;
  background:var(--ink); transform:scaleX(0); transform-origin:left; transition:transform .6s var(--ease); }
.arrowlink:hover .ul::after,.arrowlink:focus-visible .ul::after{ transform:scaleX(1); }
.arrowlink .arw{ transition:transform .5s var(--ease); }
.arrowlink:hover .arw{ transform:translateX(7px); }

/* ===== reveals — augen-style blur-up =====
   Hidden initial states are scoped under html.anim, which the init script adds ONLY once
   GSAP + ScrollTrigger are confirmed alive (25-Aug fix). If a CDN is blocked or init throws,
   the page renders fully instead of an invisible wall of opacity-0 content. */
.reveal{ transition:opacity .9s var(--ease),transform .9s var(--ease),filter .9s var(--ease); }
/* mobile: no blur-up theatrics — ScrollTrigger reveals are fragile there and the
   content must simply BE present (26-Aug mobile sweep) */
@media (max-width:860px){
  .reveal, .mask>span, .lr span{ opacity:1!important; transform:none!important; filter:none!important; }
}
html.anim .reveal:not(.in){ opacity:0; transform:translateY(16px); filter:blur(7px); }
.reveal.in{ opacity:1; transform:none; filter:blur(0); }
.reveal.d1{transition-delay:.08s}.reveal.d2{transition-delay:.16s}
.reveal.d3{transition-delay:.24s}.reveal.d4{transition-delay:.32s}
.mask>span{ display:block;
  transition:opacity 1s var(--ease),transform 1s var(--ease),filter 1s var(--ease); }
html.anim .mask:not(.in)>span{ opacity:0; transform:translateY(18px); filter:blur(8px); }
.mask.in>span{ opacity:1; transform:none; filter:blur(0); }
.mask.l2>span{ transition-delay:.09s } .mask.l3>span{ transition-delay:.18s }
/* timeline-driven load elements — hidden until GSAP takes over (no flash) */
html.anim .tl{ opacity:0; will-change:transform,opacity,filter; }

/* image placeholder — typographic plate holder */
.ph{ position:relative; background:var(--surface); border:1px solid var(--line); overflow:hidden; }
.ph::before{ content:""; position:absolute; inset:0;
  background-image:linear-gradient(var(--line) 1px,transparent 1px),linear-gradient(90deg,var(--line) 1px,transparent 1px);
  background-size:46px 46px; opacity:.5; }
.ph .cap{ position:absolute; left:16px; bottom:14px; right:16px; display:flex; justify-content:space-between;
  font-size:.72rem; letter-spacing:.04em; text-transform:uppercase; color:var(--mute); }
.ph .mark{ position:absolute; inset:0; display:grid; place-items:center; color:var(--mute-2);
  font-size:clamp(2rem,5vw,4rem); font-weight:300; }
.ph.tall{ aspect-ratio:3/4; } .ph.wide{ aspect-ratio:16/10; } .ph.sq{ aspect-ratio:1/1; }

/* =====================================================================
   HEADER
   ===================================================================== */
/* augen-exact: separate frosted logo circle + rounded-rect nav, no shadow/border */
.nav{ position:fixed; top:clamp(14px,2.4vh,30px); left:0; right:0; z-index:50;
  display:flex; flex-direction:column; align-items:center; gap:10px; pointer-events:none; }
.nav>*{ pointer-events:auto; }
.nav-row{ display:flex; align-items:center; gap:8px; }
.nav-logo{ width:48px; height:48px; flex:0 0 auto; border-radius:50%;
  background:hsla(0,0%,47%,.1); -webkit-backdrop-filter:blur(20px); backdrop-filter:blur(20px);
  display:grid; place-items:center; text-decoration:none; transition:background .3s var(--ease); }
.nav-logo img{ height:27px; width:27px; object-fit:contain; display:block; }
.nav-logo img.white{ display:none; }
.nav-logo:hover{ background:hsla(0,0%,47%,.17); }
.nav-pill{ display:flex; align-items:center; height:48px; padding:0 26px; border-radius:14px;
  background:hsla(0,0%,47%,.1); -webkit-backdrop-filter:blur(20px); backdrop-filter:blur(20px); }
.nav-pill a{ color:var(--ink); text-decoration:none; font-size:.95rem; font-weight:350; letter-spacing:-.01em;
  opacity:.92; transition:opacity .3s var(--ease); white-space:nowrap; }
.nav-pill a:not(:last-child){ margin-right:clamp(18px,2.3vw,42px); }
.nav-pill a:hover{ opacity:.5; }
/* second CTA pill */
.nav-sub{ display:inline-flex; align-items:center; gap:11px; height:34px; padding:0 5px 0 15px;
  border-radius:11px; background:hsla(0,0%,47%,.1); -webkit-backdrop-filter:blur(20px); backdrop-filter:blur(20px);
  text-decoration:none; }
.nav-sub .t{ font-size:.78rem; color:var(--mute); letter-spacing:-.004em; }
.nav-sub .go{ width:28px; height:19px; border-radius:40px; border:1px solid var(--accent);
  display:grid; place-items:center; color:var(--accent); font-size:.68rem;
  transition:background .35s var(--ease),color .35s var(--ease); }
.nav-sub:hover .go{ background:var(--accent); color:#fff; }
/* ---- mobile nav: hamburger + full-screen menu (augen burger) ---- */
.nav-burger{ display:none; width:46px; height:46px; flex:0 0 auto; border-radius:50%; border:none;
  background:hsla(0,0%,47%,.1); -webkit-backdrop-filter:blur(20px); backdrop-filter:blur(20px);
  cursor:pointer; flex-direction:column; align-items:center; justify-content:center; gap:5px; z-index:52; }
.nav-burger span{ width:17px; height:1.5px; background:var(--ink); border-radius:2px;
  transition:transform .35s var(--ease), opacity .2s var(--ease); }
.nav.menu-open .nav-burger span:nth-child(1){ transform:translateY(3.25px) rotate(45deg); }
.nav.menu-open .nav-burger span:nth-child(2){ opacity:0; }
.nav.menu-open .nav-burger span:nth-child(3){ transform:translateY(-3.25px) rotate(-45deg); }
.nav-menu{ position:fixed; inset:0; z-index:48; background:rgba(253,253,253,.97);
  -webkit-backdrop-filter:blur(26px); backdrop-filter:blur(26px);
  display:flex; flex-direction:column; justify-content:center; gap:0; padding:var(--pad);
  opacity:0; visibility:hidden; pointer-events:none; transition:opacity .45s var(--ease), visibility .45s; }
.nav.menu-open .nav-menu{ opacity:1; visibility:visible; pointer-events:auto; }
.nav-menu .nm-main a{ display:block; color:var(--ink); text-decoration:none; padding:9px 0;
  font-size:clamp(1.9rem,8vw,2.6rem); font-weight:300; letter-spacing:-.02em; }
.nav-menu .nm-products{ margin-top:clamp(28px,5vh,44px); padding-top:24px; border-top:1px solid var(--line); }
.nav-menu .nm-t{ display:block; font-size:.72rem; text-transform:uppercase; letter-spacing:.06em;
  color:var(--mute); margin-bottom:14px; }
.nav-menu .nm-products a{ display:inline-flex; align-items:baseline; gap:.5em; color:var(--ink);
  text-decoration:none; font-size:1.2rem; padding:9px 18px 9px 0; }
.nav-menu .nm-products a .id{ color:var(--accent); font-size:.85rem; }
.nav-menu .nm-cta{ margin-top:clamp(28px,5vh,44px); display:inline-flex; align-items:center; gap:14px;
  color:var(--accent); text-decoration:none; font-size:1.15rem; letter-spacing:-.01em; }
.nav-menu .nm-cta .go{ width:34px; height:22px; border-radius:40px; border:1px solid var(--accent);
  display:grid; place-items:center; font-size:.72rem; }
@media(max-width:860px){
  .nav{ flex-direction:row; justify-content:space-between; align-items:center; }
  .nav-pill{ display:none; } .nav-sub{ display:none; }
  .nav-burger{ display:flex; }
}

/* =====================================================================
   HERO
   ===================================================================== */
/* augen-style hero: image center-right frosting into white, content bottom-left */
.hero{ min-height:100svh; position:relative; overflow:hidden; background:var(--paper); }
/* the product visual — large, zoomed, center-right, dissolving into white at the bottom */
.hero-visual{ position:absolute; top:0; bottom:0; right:0; left:0; z-index:1;
  display:flex; align-items:flex-start; justify-content:center; }
/* sharp device up top; fades out so the blurred copy takes over toward the bottom */
.hero-visual .device{ height:128vh; width:auto; margin-top:clamp(120px,15vh,170px); position:relative; z-index:2;
  mix-blend-mode:multiply;
  -webkit-mask-image:linear-gradient(180deg,#000 0%,#000 50%,transparent 66%);
          mask-image:linear-gradient(180deg,#000 0%,#000 50%,transparent 66%); }
/* blurred copy — takes over the lower region and runs blurred to the very bottom (no white wash) */
.hero-visual .frost{ position:absolute; top:0; left:50%; transform:translateX(-50%);
  height:128vh; width:auto; margin-top:clamp(120px,15vh,170px); z-index:1; opacity:.92; filter:blur(26px);
  mix-blend-mode:multiply;
  -webkit-mask-image:linear-gradient(180deg,transparent 38%,#000 54%,#000 100%);
          mask-image:linear-gradient(180deg,transparent 38%,#000 54%,#000 100%); }

.hero-content{ position:absolute; left:var(--pad); bottom:clamp(40px,9vh,96px); z-index:4;
  max-width:min(46vw,640px); }
.hero-content .brand{ height:clamp(26px,2.2vw,32px); width:auto; display:block; margin-bottom:12px; }
.hero-content h1{ color:var(--ink); font-weight:350; letter-spacing:-.02em; line-height:1.18;
  font-size:clamp(1.3rem,1.7vw,1.7rem); max-width:13ch; }
.hero-content h1 .soft{ color:var(--ink); }
.hero-content h1 .w{ display:inline-block; will-change:transform,opacity,filter; }
.hero-explore{ display:flex; align-items:center; gap:10px; flex-wrap:wrap; margin-top:clamp(18px,2.6vh,28px); }
.hero-explore .lab{ color:var(--mute); font-size:.88rem; margin-right:2px; }
.pill{ display:inline-flex; align-items:center; gap:.5em; border:1px solid var(--accent);
  color:var(--accent); border-radius:100px; padding:.46em 1em; font-size:.86rem; text-decoration:none;
  transition:background .4s var(--ease),color .4s var(--ease); white-space:nowrap; }
.pill sup{ font-size:.6em; line-height:0; position:relative; top:-.5em; vertical-align:baseline;
  margin:0; }
.pill:hover{ background:var(--accent); color:#fff; }
/* augen-style scroll indicator — vertical pill below the text */
.scroll-ind{ margin-top:clamp(26px,4vh,46px); width:26px; height:50px; border-radius:40px;
  border:1px solid var(--line); display:grid; place-items:start center; padding-top:9px;
  color:var(--mute); overflow:hidden; }
.scroll-ind .dot{ font-size:.8rem; line-height:1; animation:scrollDot 2s var(--ease) infinite; }
@keyframes scrollDot{ 0%{ transform:translateY(-3px); opacity:0 } 25%{ opacity:1 }
  60%{ opacity:1 } 100%{ transform:translateY(16px); opacity:0 } }
@media(max-width:860px){
  /* device sits in the upper band, dissolving above the text (no overlap) */
  .hero-visual{ left:0; right:0; bottom:auto; height:62vh; align-items:flex-start; }
  .hero-visual .device,.hero-visual .frost{ height:auto; max-height:58vh; width:auto; max-width:82vw;
    margin-top:calc(var(--header-h) + clamp(6px,2vh,18px)); }
  .hero-content{ left:var(--pad); right:var(--pad); bottom:clamp(26px,5vh,52px); max-width:none; }
  .hero-content h1{ font-size:clamp(1.55rem,6.6vw,2.1rem); max-width:none; }
  .hero-content .brand{ height:28px; margin-bottom:14px; }
  .hero-explore{ margin-top:20px; }
}

/* =====================================================================
   0.1 — OVERVIEW / BREAKTHROUGH
   ===================================================================== */
.block{ padding-block:clamp(80px,12vh,200px); }
/* augen overview: grey panel, left-aligned two columns (small label · statement) */
.overview{ background:#efefef; padding-block:clamp(120px,24vh,280px); }
.ov-grid{ display:grid; grid-template-columns:repeat(12,1fr); column-gap:clamp(14px,2.5vw,34px);
  align-items:start; }
.ov-label{ grid-column:3/5; display:flex; flex-direction:column; line-height:1.35; padding-top:.2em; }
.ov-label .eyebrow{ color:var(--mute); }
.ov-label .theme{ color:var(--ink); }
.ov-label .eyebrow,.ov-label .theme{ font-size:clamp(.9rem,1vw,1rem); font-weight:350; letter-spacing:-.01em; }
.ov-body{ grid-column:5/10; }
/* the statement — left-justified, accent tail flashes inline within the sentence */
.stmt{ font-size:clamp(1.4rem,1.95vw,2rem); font-weight:350; letter-spacing:-.02em; line-height:1.22;
  color:var(--ink); max-width:24ch; }
.stmt .accent{ color:var(--accent); display:block; }   /* flash starts on the next line */
.stmt .w,.stmt .fw{ display:inline-block; vertical-align:baseline; will-change:transform,opacity,filter; }
/* CTA — augen 'arrow-pill + label', accent */
.ov-cta{ display:inline-flex; align-items:center; gap:14px; text-decoration:none; margin-top:clamp(36px,5vw,72px); }
.ov-cta .go{ width:34px; height:21px; border-radius:40px; border:1px solid var(--accent);
  display:grid; place-items:center; color:var(--accent); font-size:.72rem;
  transition:background .35s var(--ease),color .35s var(--ease); }
.ov-cta .t{ color:var(--accent); font-size:1rem; letter-spacing:-.01em; }
.ov-cta:hover .go{ background:var(--accent); color:#fff; }
@media(max-width:860px){ .ov-label{ grid-column:1/13; margin-bottom:22px; }
  .ov-body{ grid-column:1/13; } .stmt{ max-width:30ch; } }

/* =====================================================================
   PRINCIPLES — Mission / Vision / Ambition (term + definition)
   ===================================================================== */
/* Mission / Vision / Ambition — dark section, augen numbered rows */
.mva{ background:#101113; color:var(--paper); padding-block:clamp(90px,15vh,180px); position:relative; }
.mva .topgrid,.mva-row{ display:grid; grid-template-columns:repeat(12,1fr); column-gap:clamp(14px,2.5vw,34px); }
.mva .topline{ grid-column:5/13; line-height:1.45; margin-bottom:clamp(64px,12vh,150px); }
.mva .topline .a{ display:block; color:var(--paper); }
.mva .topline .b{ display:block; color:var(--accent); }
.mva .topline .a,.mva .topline .b{ font-size:clamp(.95rem,1.05vw,1.1rem); font-weight:350; letter-spacing:-.01em; }
.mva-row{ padding-top:clamp(30px,4vw,54px); align-items:start; }
.mva-ico{ grid-column:1/3; align-self:start; width:48px; height:48px; border-radius:3px;
  background:var(--accent); display:grid; place-items:center; }
.mva-ico img{ width:26px; height:auto; display:block; }
.mva-row .idx{ grid-column:3/5; padding-top:.35em; line-height:1.4; }
.mva-row .idx .n{ display:block; color:rgba(253,253,253,.4); font-size:clamp(.85rem,.95vw,1rem); }
.mva-row .idx .l{ display:block; color:var(--paper); font-size:clamp(.9rem,1vw,1.05rem); }
.mva-row .stmt2{ grid-column:5/13; font-size:clamp(1.55rem,2.7vw,2.5rem); font-weight:350; letter-spacing:-.025em;
  line-height:1.1; padding-bottom:clamp(30px,4vw,54px); color:var(--paper); }
.mva-row:not(:last-child) .stmt2{ border-bottom:1px solid rgba(253,253,253,.13); }
/* brightness fades down the rows (topgrid is the 1st div, so rows are 2nd–4th) */
.mva-row:nth-of-type(3) .stmt2{ color:rgba(253,253,253,.6); }
.mva-row:nth-of-type(4) .stmt2{ color:rgba(253,253,253,.38); }
.mva-row .stmt2 .w{ display:inline-block; will-change:transform,opacity,filter; }
@media(max-width:860px){
  .mva .topline{ grid-column:1/13; }
  .mva-ico{ grid-column:1/13; margin-bottom:24px; }
  .mva-row .idx{ grid-column:1/5; } .mva-row .stmt2{ grid-column:5/13; } }

/* =====================================================================
   APPROACH — product showcases, alternating asymmetric
   ===================================================================== */
.approach .intro{ margin-bottom:clamp(48px,7vw,110px); max-width:30ch; }
.showcase{ padding-block:clamp(48px,7vh,110px); border-top:1px solid var(--line); }
.showcase .grid12{ align-items:center; row-gap:32px; }
.sc-media{ grid-column:1/7; }
.sc-frame{ position:relative; aspect-ratio:4/5; overflow:hidden; }
.sc-frame.wide{ aspect-ratio:3/2; }
/* assembled ↔ exploded crossfade on hover (renders are white-bg → multiply drops it) */
.sc-explode{ position:absolute; inset:0; }
.sc-explode img{ position:absolute; inset:0; width:100%; height:100%; object-fit:contain;
  mix-blend-mode:multiply; transition:opacity .6s var(--ease), transform .75s var(--ease); }
.sc-explode .asm{ opacity:1; }
.sc-explode .exp{ opacity:0; transform:scale(.97); }
.sc-frame:hover .asm{ opacity:0; }
.sc-frame:hover .exp{ opacity:1; transform:none; }
/* touch devices (no hover) — show the exploded view by default */
@media (hover:none){ .sc-explode .asm{ opacity:0; } .sc-explode .exp{ opacity:1; transform:none; } }
.sc-frame .cap{ position:absolute; left:18px; bottom:15px; right:18px; z-index:2; display:flex; justify-content:space-between;
  font-size:.72rem; letter-spacing:.04em; text-transform:uppercase; color:var(--mute); }
.sc-body{ grid-column:8/12; }
.showcase.flip .sc-media{ grid-column:7/13; order:2; }
.showcase.flip .sc-body{ grid-column:2/6; order:1; }
.sc-id{ font-size:clamp(2.6rem,6vw,5.4rem); font-weight:300; letter-spacing:-.03em; line-height:1; }
.sc-id sup{ font-size:.4em; vertical-align:super; }
.sc-body h3{ font-size:var(--fs-h2); font-weight:300; letter-spacing:-.02em; margin:18px 0 16px; line-height:1.02; }
.sc-body p{ color:var(--mute); max-width:38ch; margin-bottom:28px; }
.sc-body .meta{ display:flex; gap:24px; margin:24px 0 28px; border-top:1px solid var(--line); padding-top:18px; }
.sc-body .meta div{ font-size:.85rem; }
.sc-body .meta .k{ color:var(--mute); text-transform:uppercase; letter-spacing:.04em; font-size:.7rem; margin-bottom:4px; }
@media(max-width:860px){
  .sc-media,.sc-body,.showcase.flip .sc-media,.showcase.flip .sc-body{ grid-column:1/13; order:0; }
}

/* =====================================================================
   METHOD band (link out)
   ===================================================================== */
.method{ border-top:1px solid var(--line); border-bottom:1px solid var(--line);
  padding-block:clamp(60px,9vh,150px); }
.method .grid12{ align-items:end; row-gap:28px; }
.method .big{ grid-column:1/9; font-size:var(--fs-display); font-weight:300; letter-spacing:-.02em; line-height:1.02; }
.method .act{ grid-column:10/13; padding-bottom:8px; }
@media(max-width:860px){ .method .big,.method .act{ grid-column:1/13; } }

/* =====================================================================
   EDITORIAL — big paragraph with highlighted phrases
   ===================================================================== */
.editorial .grid12{ }
.editorial .body{ grid-column:3/12; font-size:var(--fs-display); font-weight:300; letter-spacing:-.02em;
  line-height:1.12; }
.editorial .body span{ color:var(--mute); }
@media(max-width:860px){ .editorial .body{ grid-column:1/13; } }

/* =====================================================================
   THREE NUMBERED CLOSERS (1.0 / 2.0 / 3.0)
   ===================================================================== */
.closer{ border-top:1px solid var(--line); padding-block:clamp(64px,9vh,140px); }
.closer .grid12{ align-items:start; row-gap:36px; }
.closer .idx{ grid-column:1/4; font-size:clamp(3rem,7vw,7rem); font-weight:300; letter-spacing:-.03em; line-height:.9; }
.closer .main{ grid-column:5/13; }
.closer .main h3{ font-size:var(--fs-display); font-weight:300; letter-spacing:-.02em; line-height:1.04;
  max-width:18ch; margin-bottom:30px; }
.metrics{ display:grid; grid-template-columns:repeat(4,1fr); gap:28px; margin-top:8px; }
.metrics .m .n{ font-size:clamp(2.4rem,4vw,3.6rem); font-weight:300; letter-spacing:-.02em; line-height:1; }
.metrics .m .n sup{ font-size:.4em; vertical-align:super; color:var(--mute); }
.metrics .m .l{ color:var(--mute); font-size:.85rem; margin-top:12px; max-width:18ch; }
.brandrow{ display:grid; grid-template-columns:repeat(3,1fr); gap:1px; background:var(--line);
  border:1px solid var(--line); margin-top:8px; }
.brandrow div{ background:var(--paper); aspect-ratio:16/7; display:grid; place-items:center;
  font-weight:500; letter-spacing:.1em; color:var(--mute); transition:color .4s var(--ease),background .4s var(--ease); }
.brandrow div:hover{ color:var(--ink); background:var(--surface-2); }
.contact-cta{ display:inline-flex; align-items:baseline; gap:.4em; font-weight:300; letter-spacing:-.02em;
  font-size:clamp(2.4rem,6vw,5rem); color:var(--ink); text-decoration:none; line-height:1; }
.contact-cta .arw{ font-size:.5em; transition:transform .5s var(--ease); }
.contact-cta:hover .arw{ transform:translate(8px,-2px); }
@media(max-width:760px){ .closer .idx,.closer .main{ grid-column:1/13; }
  .metrics{ grid-template-columns:1fr 1fr; }
  /* 26-Aug sweep: five stacked 16:7 voids -> a compact tiled wall */
  .brandrow{ grid-template-columns:1fr 1fr; }
  .brandrow div{ aspect-ratio:auto; min-height:74px; padding:14px 10px; font-size:.72rem; text-align:center; }
  .brandrow div:last-child:nth-child(odd){ grid-column:1/-1; } }

/* secondary contact row under the display CTA — both channels, on every page.
   Colour is inherited so it works on the light homepage and the dark product pages. */
.contact-alt{ display:flex; flex-wrap:wrap; align-items:center; gap:.5em 1.1em;
  margin-top:clamp(18px,2.4vw,28px); font-size:.92rem; letter-spacing:-.01em; }
.contact-alt a{ color:inherit; opacity:.62; text-decoration:none;
  border-bottom:1px solid currentColor; padding-bottom:2px;
  transition:opacity .35s var(--ease), color .35s var(--ease); }
.contact-alt a:hover{ opacity:1; color:var(--accent); }
.contact-alt .sep{ opacity:.3; }

/* =====================================================================
   FOOTER
   ===================================================================== */
footer{ background:var(--ink); color:var(--paper); padding-block:clamp(60px,8vh,110px) 40px; }
footer .grid12{ row-gap:48px; }
footer .f-brand{ grid-column:1/6; }
footer .f-brand img{ height:56px; opacity:.95; margin-bottom:24px; }
footer .f-brand p{ color:rgba(253,253,253,.5); max-width:30ch; }
footer .f-col{ grid-column:span 2; }
footer .f-col h4{ font-size:.72rem; text-transform:uppercase; letter-spacing:.06em; color:rgba(253,253,253,.5);
  font-weight:400; margin-bottom:18px; }
footer .f-col a{ display:block; color:rgba(253,253,253,.82); text-decoration:none; padding:5px 0;
  transition:color .3s var(--ease); }
footer .f-col a:hover{ color:var(--paper); }
footer .f-bottom{ grid-column:1/13; display:flex; justify-content:space-between; align-items:center;
  border-top:1px solid rgba(253,253,253,.14); padding-top:26px; margin-top:14px; flex-wrap:wrap; gap:14px;
  color:rgba(253,253,253,.5); font-size:.85rem; }
footer .f-bottom .loc{ display:inline-flex; gap:.5em; align-items:center; }
footer .f-bottom .loc::before{ content:""; width:7px; height:7px; border-radius:50%; background:var(--green); }
@media(max-width:760px){ footer .f-brand{ grid-column:1/13; } footer .f-col{ grid-column:span 6; } }

/* focus + reduced motion */
:focus-visible{ outline:2px solid var(--accent); outline-offset:3px; border-radius:2px; }
@media (prefers-reduced-motion: reduce){
  *{ animation-duration:.01ms!important; transition-duration:.01ms!important; scroll-behavior:auto!important; }
  .reveal{ opacity:1!important; transform:none!important; filter:none!important; }
  .mask>span{ opacity:1!important; transform:none!important; filter:none!important; }
  .tl{ opacity:1!important; transform:none!important; filter:none!important; }
}

/* =====================================================================
   PRODUCT PAGE (mirror.html / sizing.html / web.html)
   ===================================================================== */
.pp-hero{ min-height:100svh; padding-top:calc(var(--header-h) + clamp(40px,8vh,90px));
  display:grid; grid-template-columns:repeat(12,1fr); column-gap:clamp(14px,2.5vw,34px);
  align-items:center; position:relative; overflow:hidden; }
.pp-hero .pp-copy{ grid-column:2/7; z-index:2; }
.pp-hero .pp-eyebrow{ font-size:.85rem; color:var(--mute); letter-spacing:-.01em; }
.pp-hero .pp-eyebrow b{ color:var(--accent); font-weight:400; }
.pp-hero h1{ font-weight:300; letter-spacing:-.03em; line-height:.95;
  font-size:clamp(2.8rem,6vw,5.4rem); margin:.25em 0 .4em; }
.pp-hero .pp-sub{ color:var(--mute); font-size:var(--fs-lead); font-weight:350; letter-spacing:-.01em;
  line-height:1.25; max-width:30ch; }
.pp-hero .pp-visual{ grid-column:7/13; align-self:stretch; position:relative; }
.pp-hero .pp-visual img{ position:absolute; top:50%; left:50%; transform:translate(-50%,-50%);
  height:92%; width:auto; max-width:100%; object-fit:contain; }
@media(max-width:860px){ .pp-hero{ grid-template-columns:1fr; }
  .pp-hero .pp-copy{ grid-column:1; } .pp-hero .pp-visual{ grid-column:1; height:60vh; } }

/* spec strip */
.pp-specs{ border-top:1px solid var(--line); border-bottom:1px solid var(--line);
  display:grid; grid-template-columns:repeat(4,1fr); }
.pp-specs .sp{ padding:clamp(28px,4vw,56px) clamp(18px,2vw,32px); border-left:1px solid var(--line); }
.pp-specs .sp:first-child{ border-left:none; }
.pp-specs .sp .k{ font-size:.72rem; text-transform:uppercase; letter-spacing:.05em; color:var(--mute); }
.pp-specs .sp .v{ font-size:clamp(1.4rem,2vw,1.9rem); font-weight:350; letter-spacing:-.02em; margin-top:.5em; }
@media(max-width:760px){ .pp-specs{ grid-template-columns:1fr 1fr; }
  .pp-specs .sp:nth-child(3){ border-left:none; } }

/* interactive schematic */
.pp-schem{ padding-block:clamp(80px,12vh,170px); }
.pp-schem .head{ max-width:34ch; margin-bottom:clamp(40px,6vw,80px); }
.schem-grid{ display:grid; grid-template-columns:repeat(12,1fr); column-gap:clamp(14px,2.5vw,34px);
  align-items:center; row-gap:40px; }
.schem-stage{ grid-column:1/8; position:relative; aspect-ratio:3/2; }
.schem-stage img{ position:absolute; inset:0; width:100%; height:100%; object-fit:contain; }
.hot{ position:absolute; width:26px; height:26px; transform:translate(-50%,-50%); cursor:pointer;
  display:grid; place-items:center; }
.hot .ring{ width:26px; height:26px; border-radius:50%; border:1px solid var(--accent);
  display:grid; place-items:center; color:var(--accent); font-size:.72rem; background:var(--paper);
  transition:background .3s var(--ease),color .3s var(--ease),transform .3s var(--ease); }
.hot.on .ring,.hot:hover .ring{ background:var(--accent); color:#fff; transform:scale(1.12); }
.schem-legend{ grid-column:9/13; list-style:none; }
.schem-legend li{ display:flex; gap:14px; align-items:baseline; padding:11px 0;
  border-top:1px solid var(--line); color:var(--mute); cursor:default;
  transition:color .25s var(--ease); }
.schem-legend li .ln{ font-variant-numeric:tabular-nums; color:var(--mute-2); font-size:.85rem; min-width:1.6em; }
.schem-legend li .lt{ font-size:1rem; letter-spacing:-.01em; }
.schem-legend li.on{ color:var(--ink); }
.schem-legend li.on .ln{ color:var(--accent); }
@media(max-width:860px){ .schem-stage{ grid-column:1/13; } .schem-legend{ grid-column:1/13; } }

/* back link */
.pp-back{ display:inline-flex; align-items:center; gap:.6em; color:var(--mute); text-decoration:none;
  font-size:.92rem; margin-bottom:clamp(20px,3vh,34px); transition:color .3s var(--ease); }
.pp-back:hover{ color:var(--ink); }

/* =====================================================================
   DARK PRODUCT PAGE (augen A¹ Sense style) — body.dark
   ===================================================================== */
body.dark{ background:#070708; color:#f3f3f3; }
body.dark .nav-logo{ background:hsla(0,0%,100%,.08); }
body.dark .nav-logo img.ink{ display:none; } body.dark .nav-logo img.white{ display:block; }
body.dark .nav-pill{ background:hsla(0,0%,100%,.07); }
body.dark .nav-pill a{ color:#f3f3f3; }
body.dark .nav-sub{ background:hsla(0,0%,100%,.07); }
body.dark .nav-sub .t{ color:rgba(255,255,255,.6); }
body.dark .label{ color:rgba(255,255,255,.45); } body.dark .label .n{ color:#fff; }

/* centered hero */
.ppd-hero{ min-height:100svh; padding-top:calc(var(--header-h) + clamp(26px,5vh,60px));
  display:flex; flex-direction:column; align-items:center; text-align:center; position:relative; }
.ppd-intro{ font-size:.95rem; color:rgba(255,255,255,.4); letter-spacing:-.01em; }
.ppd-stage{ flex:1 1 auto; display:flex; align-items:center; justify-content:center; width:100%;
  position:relative; min-height:0; padding-block:clamp(16px,4vh,46px); }
.ppd-stage::before{ content:""; position:absolute; width:min(62vw,660px); aspect-ratio:1; border-radius:50%;
  background:radial-gradient(circle, rgba(255,255,255,.11), transparent 64%); }
.ppd-stage img{ height:min(54vh,580px); width:auto; position:relative; z-index:1;
  filter:drop-shadow(0 30px 70px rgba(0,0,0,.6)); }
.ppd-name{ display:inline-flex; align-items:center; gap:.45em; color:var(--accent);
  font-weight:300; letter-spacing:-.03em; font-size:clamp(2.6rem,6vw,5rem); line-height:1; }
.ppd-name .sq{ width:.52em; height:.52em; background:var(--accent); border-radius:5px; }
.ppd-name sup{ font-size:.46em; vertical-align:.8em; }
.ppd-desc{ color:rgba(255,255,255,.6); max-width:40ch; margin:clamp(18px,3vh,28px) auto 0;
  font-size:var(--fs-lead); font-weight:350; line-height:1.3; }
.ppd-status{ position:absolute; right:var(--pad); bottom:clamp(22px,4vh,44px);
  font-size:.78rem; color:rgba(255,255,255,.32); text-align:right; max-width:24ch; line-height:1.5; }
.ppd-cue{ position:absolute; left:var(--pad); bottom:clamp(22px,4vh,44px); width:26px; height:42px;
  border:1px solid rgba(255,255,255,.18); border-radius:40px; display:grid; place-items:start center;
  padding-top:8px; color:rgba(255,255,255,.5); font-size:.8rem; }

/* big ghosted statement + exploded macro */
.ppd-reveal{ position:relative; padding-block:clamp(70px,15vh,200px); display:grid; place-items:center; overflow:hidden; }
.ppd-bigtype{ position:absolute; inset:0; display:grid; place-items:center; text-align:center;
  font-weight:300; letter-spacing:-.03em; line-height:.92; font-size:clamp(3rem,11vw,11rem);
  color:rgba(255,255,255,.055); pointer-events:none; padding:0 var(--pad); }
.ppd-bigtype .accent{ color:rgba(255,94,31,.8); }
.ppd-macro{ position:relative; z-index:1; }
.ppd-macro img{ height:min(72vh,780px); width:auto;
  filter:drop-shadow(0 40px 90px rgba(0,0,0,.7)); }

/* dark overrides for shared spec strip + schematic */
body.dark .pp-specs{ border-color:rgba(255,255,255,.12); }
body.dark .pp-specs .sp{ border-left-color:rgba(255,255,255,.12); }
body.dark .pp-specs .sp .k{ color:rgba(255,255,255,.4); }
body.dark .schem-legend li{ border-top-color:rgba(255,255,255,.12); color:rgba(255,255,255,.5); }
body.dark .schem-legend li.on{ color:#fff; }
body.dark .schem-legend li .ln{ color:rgba(255,255,255,.3); }
body.dark .hot .ring{ background:#070708; }
body.dark .pp-back{ color:rgba(255,255,255,.45); } body.dark .pp-back:hover{ color:#fff; }
body.dark .contact-cta{ color:#fff; }

/* full-bleed macro gallery (dark product page) */
.macro-panel{ position:relative; height:100svh; width:100%; overflow:hidden; }
.macro-panel img{ position:absolute; inset:0; width:100%; height:100%; object-fit:cover;
  object-position:left center; }
.macro-panel .cap{ position:absolute; left:var(--pad); bottom:clamp(30px,6vh,64px); z-index:2; }
.macro-panel .cap .n{ font-size:.76rem; letter-spacing:.06em; text-transform:uppercase; color:rgba(255,255,255,.55); }
.macro-panel .cap .t{ display:block; font-size:clamp(1.5rem,2.6vw,2.4rem); font-weight:300;
  letter-spacing:-.025em; color:#fff; margin-top:.35em; }

/* nav dropdown (augen nav-sub-items) */
.nav-dd{ position:relative; display:inline-flex; align-items:center; }
.nav-dd>a::after{ content:""; display:inline-block; width:5px; height:5px; margin-left:7px;
  border-right:1px solid currentColor; border-bottom:1px solid currentColor; transform:translateY(-2px) rotate(45deg);
  opacity:.5; transition:transform .3s var(--ease); }
.nav-dd:hover>a::after{ transform:translateY(0) rotate(225deg); }
.nav-drop{ position:absolute; top:100%; left:50%; transform:translateX(-50%) translateY(2px);
  margin-top:14px; min-width:300px; padding:12px; border-radius:16px;
  background:hsla(0,0%,98%,.72); -webkit-backdrop-filter:blur(20px); backdrop-filter:blur(20px);
  border:1px solid rgba(15,16,18,.06);
  opacity:0; visibility:hidden; pointer-events:none;
  transition:opacity .35s var(--ease), transform .35s var(--ease), visibility .35s; }
.nav-dd:hover .nav-drop, .nav-dd:focus-within .nav-drop{
  opacity:1; visibility:visible; transform:translateX(-50%) translateY(0); pointer-events:auto; }
.nav-drop::before{ content:""; position:absolute; left:0; right:0; top:-16px; height:16px; }
.nd-title{ display:block; font-size:.7rem; text-transform:uppercase; letter-spacing:.06em;
  color:var(--mute); padding:7px 12px 11px; }
.nd-link{ display:flex; align-items:baseline; gap:.55em; padding:11px 12px; border-radius:10px;
  text-decoration:none; color:var(--ink); transition:background .25s var(--ease); white-space:nowrap; }
.nd-link:hover{ background:hsla(0,0%,47%,.1); }
.nd-link .nd-id{ color:var(--accent); font-size:.8rem; font-variant-numeric:tabular-nums; }
.nd-link .nd-nm{ font-size:.98rem; }
.nd-link .nd-desc{ color:var(--mute); font-size:.84rem; margin-left:auto; padding-left:2em; }
body.dark .nav-drop{ background:hsla(0,0%,10%,.72); border-color:rgba(255,255,255,.08); }
body.dark .nd-link{ color:#f3f3f3; }
@media(max-width:760px){ .nav-drop{ display:none; } }

/* ===================== HERO REVEAL — cursor spotlight + outfit stack ===================== */
/* animatable spotlight radius */
@property --r { syntax:"<length>"; inherits:false; initial-value:0px; }

/* character + garment stack laid over the kiosk, matching .device geometry exactly.
   base.png is 1024x1536 (aspect 2/3); width is derived from height so the box
   lines up pixel-for-pixel with .device (height:128vh; width:auto). */
.hero-visual .reveal-char{
  position:absolute; top:0; left:50%; transform:translateX(-50%);
  height:128vh; width:calc(128vh * 2 / 3); margin-top:clamp(120px,15vh,170px);
  z-index:3;               /* above .device(2), below .hero-content(4) */
  pointer-events:none;
  visibility:hidden;       /* only shown while actively revealing inside the screen */
  --r:0px; --mx:50%; --my:40%;
  -webkit-mask-image:radial-gradient(circle var(--r) at var(--mx) var(--my),
                     #000 0%, #000 60%, transparent 100%);
          mask-image:radial-gradient(circle var(--r) at var(--mx) var(--my),
                     #000 0%, #000 60%, transparent 100%);
  transition:--r .5s var(--ease);
}
/* every garment/character layer fills the box identically (same source dims) */
.hero-visual .reveal-char .rc-layer{ position:absolute; inset:0;
  width:100%; height:100%; object-fit:fill; }
.hero.revealing .reveal-char{ --r:clamp(140px,15vw,260px); visibility:visible; }

@media(max-width:860px){ .hero-visual .reveal-char{ display:none; } }
@media(prefers-reduced-motion:reduce){ .hero-visual .reveal-char{ display:none; } }

/* hero supporting line under the title */
.hero-content .hero-sub{ color:var(--mute); font-weight:350; letter-spacing:-.01em;
  font-size:clamp(.92rem,1.05vw,1.06rem); line-height:1.4; max-width:32ch;
  margin-top:clamp(10px,1.4vh,16px); }
@media(max-width:860px){ .hero-content .hero-sub{ font-size:1rem; max-width:34ch; } }

/* ===================== PRODUCTS — tags, KPI strip, CTAs, coming-soon ===================== */
.sc-tag{ display:inline-block; color:var(--accent); font-size:.82rem; letter-spacing:.01em;
  margin:14px 0 2px; }
.sc-body h3 em, .soon-note em{ font-style:italic; }

/* KPI / proof strip (replaces the old spec .meta) */
.kpis{ display:flex; flex-wrap:wrap; gap:22px 38px; margin:26px 0 2px;
  border-top:1px solid var(--line); padding-top:20px; }
.kpi-n{ font-size:clamp(1.45rem,2.1vw,1.9rem); font-weight:300; letter-spacing:-.02em;
  color:var(--ink); line-height:1; }
.kpi-n .u{ color:var(--accent); }
.kpi-l{ color:var(--mute); font-size:.78rem; margin-top:7px; max-width:19ch; line-height:1.32; }

/* attractive product CTAs — accent pills, hover lift + arrow nudge */
.cta-row{ display:flex; flex-wrap:wrap; gap:16px 12px; margin-top:clamp(24px,2.6vw,32px);
  align-items:flex-start; }
.cta{ display:flex; flex-direction:column; align-items:flex-start; gap:7px; }
.cta-for{ color:var(--mute); font-size:.73rem; letter-spacing:.03em; padding-left:3px; }
.btn{ display:inline-flex; align-items:center; gap:.55em; border-radius:100px;
  padding:.82em 1.35em; font-size:.94rem; letter-spacing:-.01em; text-decoration:none;
  border:1px solid var(--accent); white-space:nowrap; will-change:transform;
  transition:background .45s var(--ease), color .45s var(--ease),
             transform .45s var(--ease), box-shadow .45s var(--ease); }
.btn .arw{ transition:transform .5s var(--ease); }
.btn:hover, .btn:focus-visible{ transform:translateY(-2px); }
.btn:hover .arw, .btn:focus-visible .arw{ transform:translateX(5px); }
.btn-primary{ background:var(--accent); color:#fff; }
.btn-primary:hover, .btn-primary:focus-visible{ box-shadow:0 14px 32px -14px var(--accent); }
.btn-ghost{ background:transparent; color:var(--accent); }
.btn-ghost:hover, .btn-ghost:focus-visible{ background:var(--accent); color:#fff; }
.btn:focus-visible{ outline:2px solid var(--ink); outline-offset:3px; }
.sc-explore{ display:inline-flex; margin-top:18px; font-size:.9rem; color:var(--mute); }
.sc-explore .ul{ color:var(--ink); }

/* single-image product frame (Window / Atrium) — subtle zoom on hover */
.sc-single{ position:absolute; inset:0; width:100%; height:100%; object-fit:contain;
  mix-blend-mode:multiply; transition:transform .8s var(--ease); }
.sc-frame:hover .sc-single{ transform:scale(1.03); }

/* coming soon band */
.soon{ border-top:1px solid var(--line); margin-top:clamp(40px,7vw,96px);
  padding-top:clamp(40px,6vh,72px); }
.soon-head{ display:flex; flex-wrap:wrap; align-items:baseline; gap:10px 20px;
  margin-bottom:clamp(26px,4vw,44px); }
.soon-note{ color:var(--mute); font-size:.9rem; line-height:1.45; max-width:52ch; }
.soon-grid{ display:grid; grid-template-columns:1fr 1fr; gap:1px; background:var(--line);
  border:1px solid var(--line); border-radius:14px; overflow:hidden; }
.soon-card{ background:var(--paper); padding:clamp(22px,3vw,40px);
  display:flex; flex-direction:column; gap:11px; }
.soon-card .sc-code{ color:var(--accent); font-size:.85rem; letter-spacing:.01em; }
.soon-card .sc-code sup{ font-size:.55em; vertical-align:super; }
.soon-card h4{ font-size:clamp(1.3rem,2.4vw,1.9rem); font-weight:300; letter-spacing:-.02em;
  line-height:1.05; }
.soon-card p{ color:var(--mute); font-size:.95rem; line-height:1.45; max-width:42ch; }
.soon-card .stat{ color:var(--ink); font-size:.85rem; margin-top:auto; padding-top:14px; }
.soon-card .stat b{ color:var(--accent); font-weight:400; }
@media(max-width:860px){ .soon-grid{ grid-template-columns:1fr; } }

/* mobile: match augen — copy ABOVE, image BELOW in product showcases */
@media(max-width:860px){
  .showcase .sc-body, .showcase.flip .sc-body{ order:0; }
  .showcase .sc-media, .showcase.flip .sc-media{ order:1; margin-top:clamp(20px,4vw,32px); }
}

/* ===================== MOBILE HERO + NAV — match augen ===================== */
@media(max-width:860px){
  /* nav: inset logo + burger from the edges */
  .nav{ padding-inline:clamp(24px,6.5vw,38px); top:clamp(16px,2.6vh,28px); }

  /* hero: centered vertical flow — copy first, image second */
  .hero{ display:flex; flex-direction:column; align-items:center; justify-content:flex-start;
    text-align:center; min-height:100svh;
    padding-top:calc(var(--header-h) + clamp(36px,11vh,104px)); padding-bottom:0; overflow:hidden; }
  .hero-content{ position:static; order:1; left:auto; right:auto; bottom:auto; width:100%;
    max-width:none; display:flex; flex-direction:column; align-items:center; }
  .hero-content .brand{ margin:0 0 16px; }
  .hero-content h1{ max-width:18ch; }
  .hero-content .hero-sub{ max-width:34ch; margin-inline:auto; }
  .hero-explore{ justify-content:center; }
  .hero-explore .lab{ display:none; }   /* augen shows just the pills, centered */
  .hero-visual{ position:relative; order:2; inset:auto; left:auto; right:auto; top:auto; bottom:auto;
    flex:1 1 0; min-height:0; width:100%; display:flex; justify-content:center; align-items:flex-start;
    overflow:hidden; margin-top:clamp(20px,4vh,40px); }
  .hero-visual .frost{ display:none; }
  /* viewport-relative height (like desktop's 128vh) so it always bleeds off the bottom; robust in Safari */
  .hero-visual .device{ position:relative; height:68svh; width:auto; max-width:96vw; max-height:none;
    margin:0; -webkit-mask-image:none; mask-image:none; }
  /* dissolve at the viewport edge (the image's own bottom-fade would leave a white strip on the short mobile image) */
  .hero-visual{ -webkit-mask-image:linear-gradient(180deg,#000 82%,transparent 100%);
                        mask-image:linear-gradient(180deg,#000 82%,transparent 100%); }
  .scroll-ind{ position:absolute; left:clamp(24px,6.5vw,38px); bottom:16px; margin:0; }

  /* 2-line hamburger → clean X */
  .nav.menu-open .nav-burger span:nth-child(1){ transform:translateY(3.25px) rotate(45deg); }
  .nav.menu-open .nav-burger span:nth-child(2){ transform:translateY(-3.25px) rotate(-45deg); opacity:1; }
}

/* ===================== 0.4 LIVE TRY-ON DEMO ===================== */
.tryon{ border-top:1px solid var(--line); }
.tryon .grid12{ align-items:center; row-gap:44px; }
.tryon .td-body{ grid-column:2/7; }
.tryon .td-stage-col{ grid-column:8/12; display:flex; justify-content:center; }
.tryon h3{ font-size:var(--fs-display); font-weight:300; letter-spacing:-.02em; line-height:1.04;
  max-width:14ch; margin:18px 0 16px; }
.tryon .td-body>p{ color:var(--mute); max-width:44ch; margin-bottom:30px; }

/* garment rail */
.td-rail{ border-top:1px solid var(--line); padding-top:22px; }
.td-lab{ display:block; font-size:.72rem; text-transform:uppercase; letter-spacing:.05em;
  color:var(--mute); margin-bottom:14px; }
.td-brands{ display:flex; flex-wrap:wrap; gap:8px; margin-bottom:12px; }
.td-tab{ font:inherit; font-size:.86rem; letter-spacing:-.01em; color:var(--mute); background:none;
  border:1px solid var(--line); border-radius:100px; padding:.5em 1.05em; cursor:pointer;
  transition:color .35s var(--ease),border-color .35s var(--ease); }
.td-tab:hover{ color:var(--ink); }
.td-tab.on{ color:var(--ink); border-color:var(--ink); }
.td-chips{ display:flex; flex-wrap:wrap; gap:7px; }
.td-chip{ font:inherit; font-size:.8rem; letter-spacing:-.005em; color:var(--mute); background:var(--surface-2);
  border:1px solid transparent; border-radius:8px; padding:.5em .85em; cursor:pointer;
  transition:color .35s var(--ease),border-color .35s var(--ease),background .35s var(--ease); }
.td-chip:hover{ color:var(--ink); background:var(--surface); }
.td-chip.on{ color:var(--accent); border-color:var(--accent); background:var(--paper); }

/* status line */
.td-status{ display:flex; align-items:baseline; gap:.6em; margin-top:18px;
  font-size:.82rem; color:var(--mute); }
.td-dot{ width:7px; height:7px; border-radius:50%; background:var(--mute-2); flex:0 0 auto;
  position:relative; top:-1px; }
.td-status.ready .td-dot,.td-status.live .td-dot{ background:var(--green); }
.td-status.live .td-dot{ animation:tdPulse 1.6s ease-in-out infinite; }
.td-status.busy .td-dot{ background:var(--yellow); }
.td-status.warn .td-dot{ background:var(--accent); }
@keyframes tdPulse{ 0%,100%{ opacity:1 } 50%{ opacity:.35 } }

/* portrait stage — reads as a phone/kiosk screen, not a webcam widget */
.td-frame{ position:relative; width:min(100%,calc((76vh - 40px) * 9 / 16),380px); }
.td-screen{ position:relative; aspect-ratio:9/16; border-radius:26px; overflow:hidden;
  background:#101113; border:1px solid var(--line);
  box-shadow:0 30px 70px -30px rgba(15,16,18,.35); }
.td-local,.td-remote{ position:absolute; inset:0; }
.td-local video,.td-remote video{ width:100%; height:100%; object-fit:cover; display:block; }
/* while live, local preview shrinks to a corner pip under the remote output */
.td-frame[data-state="live"] .td-local,
.td-frame[data-state="paused"] .td-local{ inset:auto 10px 10px auto; width:27%; aspect-ratio:9/16;
  border-radius:10px; overflow:hidden; z-index:3; border:1px solid rgba(253,253,253,.25); }
.td-remote{ z-index:1; }

/* standby lookbook interior — .ph grid language on a dark screen */
.td-standby{ position:absolute; inset:0; z-index:2; display:grid; place-items:center;
  background:#101113; transition:opacity .6s var(--ease); }
.td-standby::before{ content:""; position:absolute; inset:0;
  background-image:linear-gradient(rgba(253,253,253,.06) 1px,transparent 1px),
                   linear-gradient(90deg,rgba(253,253,253,.06) 1px,transparent 1px);
  background-size:46px 46px; }
.td-garment{ position:absolute; inset:12%; width:76%; height:76%; object-fit:contain; z-index:1; }
.td-plate{ position:relative; z-index:2; display:flex; flex-direction:column; align-items:center;
  gap:10px; text-align:center; padding:0 22px; }
.td-plate-brand{ font-size:.7rem; letter-spacing:.14em; text-transform:uppercase; color:rgba(253,253,253,.45); }
.td-plate-name{ font-size:clamp(1.15rem,1.5vw,1.5rem); font-weight:300; letter-spacing:-.015em;
  color:var(--paper); max-width:16ch; line-height:1.15; }
.td-plate-note{ font-size:.68rem; letter-spacing:.05em; text-transform:uppercase; color:rgba(253,253,253,.3); }
.td-plate.has-img{ justify-content:flex-end; padding-bottom:78px; height:100%; }
.td-plate.has-img .td-plate-note{ display:none; }
.td-frame[data-state="live"] .td-standby,
.td-frame[data-state="paused"] .td-standby{ opacity:0; pointer-events:none; }

/* start button — overlaid at the base of the screen */
.td-start{ position:absolute; left:50%; bottom:18px; transform:translateX(-50%); z-index:4;
  display:inline-flex; align-items:center; gap:.55em; font:inherit; font-size:.88rem; letter-spacing:-.01em;
  color:#fff; background:var(--accent); border:none; border-radius:100px; padding:.8em 1.3em;
  cursor:pointer; white-space:nowrap;
  transition:transform .45s var(--ease),box-shadow .45s var(--ease),opacity .45s var(--ease); }
.td-start .arw{ transition:transform .5s var(--ease); }
.td-start:hover{ transform:translateX(-50%) translateY(-2px); box-shadow:0 14px 32px -12px var(--accent); }
.td-start:hover .arw{ transform:translateX(5px); }
.td-frame[data-state="standby"] .td-start{ opacity:.45; }
.td-frame[data-state="connecting"] .td-start,
.td-frame[data-state="live"] .td-start,
.td-frame[data-state="paused"] .td-start{ opacity:0; pointer-events:none; }

/* paused / resume overlay */
.td-overlay{ position:absolute; inset:0; z-index:5; display:grid; place-items:center;
  background:rgba(16,17,19,.55); -webkit-backdrop-filter:blur(6px); backdrop-filter:blur(6px);
  color:var(--paper); font-size:.9rem; text-align:center; padding:0 26px; cursor:pointer;
  opacity:0; visibility:hidden; transition:opacity .45s var(--ease),visibility .45s; }
.td-frame[data-state="paused"] .td-overlay{ opacity:1; visibility:visible; }

/* stage caption */
.td-cap{ display:flex; justify-content:space-between; margin-top:13px; padding:0 4px;
  font-size:.68rem; letter-spacing:.05em; text-transform:uppercase; color:var(--mute); }

@media(max-width:860px){
  .tryon .td-body,.tryon .td-stage-col{ grid-column:1/13; }
  .tryon .td-stage-col{ order:1; }
  .td-frame{ width:min(76vw,340px); }
}

/* ===================== W1 · POCKET — PDP mockup ===================== */
.pdp-mock{ background:var(--surface); border:1px solid var(--line); overflow:visible; }
.pm-window{ position:absolute; inset:7% 16% 13% 7%; background:var(--paper); border:1px solid var(--line);
  border-radius:12px; overflow:hidden; box-shadow:0 24px 60px -30px rgba(15,16,18,.25); }
.pm-bar{ display:flex; align-items:center; gap:5px; padding:9px 12px; border-bottom:1px solid var(--line); }
.pm-bar span{ width:7px; height:7px; border-radius:50%; background:var(--line); }
.pm-bar i{ font-style:normal; font-size:.58rem; color:var(--mute-2); letter-spacing:.01em;
  margin-left:8px; overflow:hidden; text-overflow:ellipsis; white-space:nowrap; }
.pm-body{ display:grid; grid-template-columns:1.1fr 1fr; gap:clamp(10px,1.6vw,20px);
  padding:clamp(10px,1.6vw,20px); height:calc(100% - 32px); }
.pm-img{ background:var(--surface); border:1px solid var(--line); display:grid; place-items:center;
  color:var(--mute-2); font-size:.66rem; letter-spacing:.06em; text-transform:uppercase; text-align:center;
  line-height:1.5; }
.pm-info{ display:flex; flex-direction:column; gap:9px; padding-top:4px; min-width:0; }
.pm-line{ height:9px; border-radius:3px; background:var(--mist,#e5e3df); background:var(--line); }
.pm-line.dim{ opacity:.55; }
.pm-line.w45{width:45%}.pm-line.w60{width:60%}.pm-line.w70{width:70%}.pm-line.w85{width:85%}
.pm-price{ font-size:clamp(.9rem,1.2vw,1.1rem); font-weight:350; letter-spacing:-.01em; margin-top:2px; }
.pm-sizes{ display:flex; gap:5px; }
.pm-sizes i{ font-style:normal; font-size:.6rem; width:22px; height:22px; display:grid; place-items:center;
  border:1px solid var(--line); border-radius:5px; color:var(--mute); }
.pm-sizes i.on{ border-color:var(--ink); color:var(--ink); }
.pm-try{ display:inline-flex; align-items:center; justify-content:center; gap:.5em; margin-top:4px;
  font-size:clamp(.68rem,.95vw,.85rem); letter-spacing:-.005em; color:#fff; background:var(--accent);
  border-radius:100px; padding:.62em 1em; width:fit-content; white-space:nowrap; }
.pm-phone{ position:absolute; right:4%; bottom:5%; width:30%; aspect-ratio:9/16; z-index:2;
  background:#101113; border-radius:16px; padding:5px;
  box-shadow:0 26px 60px -24px rgba(15,16,18,.5);
  transition:transform .8s var(--ease); }
.sc-frame:hover .pm-phone{ transform:translateY(-8px); }
.pm-cam{ position:relative; width:100%; height:100%; border-radius:12px; overflow:hidden;
  background:linear-gradient(180deg,#26272b 0%,#151619 60%,#0d0e10 100%); }
.pm-cam::before{ content:""; position:absolute; inset:0;
  background-image:linear-gradient(rgba(253,253,253,.05) 1px,transparent 1px),
                   linear-gradient(90deg,rgba(253,253,253,.05) 1px,transparent 1px);
  background-size:30px 30px; }
.pm-live{ position:absolute; top:9px; left:9px; display:inline-flex; align-items:center; gap:.45em;
  font-size:.56rem; letter-spacing:.1em; text-transform:uppercase; color:rgba(253,253,253,.75); }
.pm-live i{ width:6px; height:6px; border-radius:50%; background:var(--accent);
  animation:tdPulse 1.6s ease-in-out infinite; }
.pm-you{ position:absolute; left:0; right:0; bottom:12%; text-align:center;
  font-size:.62rem; letter-spacing:.04em; line-height:1.5; color:rgba(253,253,253,.4);
  text-transform:uppercase; }
@media(max-width:860px){ .pm-phone{ right:2%; } }

/* coming-soon grid, single card */
.soon-grid.one{ grid-template-columns:1fr; }
.soon-grid.one .soon-card{ max-width:none; }

/* ===================================================================== 
   26-Aug mobile sweep — everything after the demo was desktop rhythm
   stretched onto a phone: viewport-height paddings, orphaned CTA pills,
   display-scale numerals. Mobile gets its own tempo.
   ===================================================================== */
@media(max-width:860px){
  /* section rhythm: fixed comfortable beats instead of vh-derived voids */
  .block{ padding-block:56px; }
  .closer{ padding-block:56px; }
  .mva{ padding-block:64px 72px; }
  .mva .topline{ margin-bottom:44px; }
  .mva-row{ padding-top:26px; }
  .mva-row .stmt2{ font-size:1.45rem; padding-bottom:26px; }
  .showcase{ padding-block:40px; }
  .showcase .grid12{ row-gap:20px; }
  /* stat strip: two tidy columns, no orphan drift */
  .kpis{ display:grid; grid-template-columns:1fr 1fr; gap:18px 20px; margin:20px 0 0; }
  /* CTAs: full-width tap targets, caption tucked under its own button */
  .cta-row{ margin-top:20px; gap:14px; flex-direction:column; align-items:stretch; }
  .cta-row .cta{ width:100%; align-items:stretch; }
  .cta-row .btn{ width:100%; justify-content:center; }
  .cta-for{ text-align:center; padding-left:0; }
  /* closers: the giant index numeral was eating half a screen */
  .closer .grid12{ row-gap:18px; }
  .closer .idx{ font-size:2.4rem; line-height:1; }
}
@media(max-width:860px){
  .cap .cap-hover{ display:none; }   /* there is no hover on touch */
  .mva{ padding-top:48px; }
}
