/* ============================================================================
   FVLM — marketing site. Design system ported 1:1 from the bureau-va language
   (owner's own system + licensed Saans). All values measured from the source.

   PALETTE  stage #DBDBDB · cream #F2F2F2 · hero #E4F7EE · lime #DBFE71 ·
            mint #28FFC0 · ink #33353A · black #000 · white #fff
   TYPE     Saans (body 380) · Saans Medium (display 570)
     hero 54.2->138.5px lh .96 · hero-sm 48->100px lh .93 · intro 18->27px lh 1.2
     body 18px lh 1.4 +.03em · caption 16px lh 1.5 · eyebrow 12px 600 .18em UP
   SPACE    gutter 1px · inset pad 40/50/60 · hero pt 20/30/40 pb 20/45/80 gap 20-50
   RADII    card 4 · media 10 · pill 24 (h48)
   GRID     9/7/5/3 cols · dense · tile col×row span == aspect · 1px gutters
   MOTION   curve cubic-bezier(.22,.7,.2,1) · media fade .3s · reveal @view · marquee 100s
   ============================================================================ */

@font-face{ font-family:"Saans"; src:url("fonts/Saans-Regular-1.woff2") format("woff2"); font-weight:300 460; font-display:swap }
@font-face{ font-family:"Saans Medium"; src:url("fonts/Saans-Medium-1.woff2") format("woff2"); font-weight:460 640; font-display:swap }

:root{
  --stage:#DBDBDB; --cream:#F2F2F2; --hero:#E4F7EE; --lime:#DBFE71; --mint:#28FFC0;
  --ink:#33353A; --ink-2:#333; --black:#000; --white:#fff;
  --r-tile:4px; --r-media:10px; --r-pill:24px;
  --gutter:1px;
  --pad-40:clamp(20px, 1rem + 1.6vw, 40px);
  --pad-50:clamp(22px, 1rem + 2.2vw, 50px);
  --pad-60:clamp(24px, 1rem + 3vw, 60px);
  --edge:clamp(16px, 1rem + 1vw, 30px);
  --ease:cubic-bezier(.22,.7,.2,1);
  --sans:"Saans", ui-sans-serif, system-ui, sans-serif;
  --medium:"Saans Medium", ui-sans-serif, system-ui, sans-serif;
  --maxw:1728px;
}

*,*::before,*::after{ box-sizing:border-box }
html{ -webkit-text-size-adjust:100% }
body{
  margin:0; background:var(--stage); color:var(--ink);
  font-family:var(--sans); font-weight:380; font-size:18px; line-height:1.4; letter-spacing:.03em;
  -webkit-font-smoothing:antialiased; text-rendering:optimizeLegibility; overflow-x:hidden;
}
img,video{ display:block; max-width:100% }
a{ color:inherit; text-decoration:none }
button{ font:inherit; color:inherit; background:none; border:0; cursor:pointer }

/* ---- type ---- */
.display{ font-family:var(--medium); font-weight:570; font-size:clamp(3.39rem,1.85rem + 6.3vw,8.66rem); line-height:.96; letter-spacing:-.006em; margin:0 }
.display-sm{ font-family:var(--medium); font-weight:570; font-size:clamp(2rem,1.15rem + 3.4vw,4rem); line-height:.98; letter-spacing:-.006em; margin:0 }
.hero-sm{ font-family:var(--medium); font-weight:570; font-size:clamp(3rem,2.05rem + 3.9vw,6.25rem); line-height:.93; margin:0 }
.intro{ font-family:var(--sans); font-weight:380; font-size:clamp(1.125rem,.96rem + .67vw,1.6875rem); line-height:1.2; letter-spacing:normal; margin:0 }
.body{ font-size:18px; line-height:1.4; letter-spacing:.03em; margin:0 }
.caption{ font-size:16px; line-height:1.5; letter-spacing:normal; margin:0 }
.eyebrow{ font-size:12px; font-weight:600; line-height:1; letter-spacing:.18em; text-transform:uppercase; margin:0 }

/* ---- shell / rounded-panel rhythm ---- */
.shell{ width:100%; max-width:var(--maxw); margin:0 auto; padding:1px }

/* ---- hero ---- */
.hero{ background:var(--hero); border-radius:var(--r-tile); margin-bottom:var(--gutter); position:relative; overflow:hidden;
  padding:clamp(60px,3rem + 6vw,120px) var(--edge) clamp(20px,1rem + 4vw,80px);
  display:flex; flex-direction:column; gap:clamp(20px,1rem + 2vw,50px) }
.hero__bar{ position:absolute; top:0; left:0; right:0; display:flex; align-items:center; justify-content:space-between; padding:var(--edge) }
.hero__mark{ font-family:var(--medium); font-weight:570; font-size:20px; letter-spacing:.01em }
.hero__intro{ max-width:40em; display:grid; grid-template-columns:1fr 1fr; align-items:start; gap:clamp(30px,2rem + 1vw,50px) }
@media (max-width:640px){ .hero__intro{ grid-template-columns:1fr; max-width:24em } }
.hero__cta{ display:flex; gap:14px; flex-wrap:wrap; align-items:center }

/* ---- buttons / nav btn ---- */
.btn{ display:inline-flex; align-items:center; height:48px; line-height:48px; padding:0 30px; border-radius:var(--r-pill);
  background:var(--black); color:var(--white); font-size:16px; letter-spacing:normal; white-space:nowrap; transition:transform .15s var(--ease) }
.btn:hover{ transform:translateY(-1px) } .btn:active{ transform:none }
.btn--ghost{ background:transparent; color:var(--ink); box-shadow:inset 0 0 0 1px rgba(51,53,58,.28) }
.navbtn{ width:48px; height:48px; border-radius:12px; background:var(--white); color:var(--black); display:grid; place-items:center }
.navbtn svg{ width:40px; height:40px }

/* ---- GRID (dense masonry: col×row span == aspect) ---- */
.wall{ display:grid; grid-template-columns:repeat(3,1fr); grid-auto-flow:row dense; margin-right:calc(-1 * var(--gutter)) }
@media (min-width:640px){ .wall{ grid-template-columns:repeat(5,1fr) } }
@media (min-width:768px){ .wall{ grid-template-columns:repeat(7,1fr) } }
@media (min-width:1024px){ .wall{ grid-template-columns:repeat(9,1fr) } }

.cell{ grid-column:span 3; aspect-ratio:3/4 }             /* mobile: full width, portrait */
.cell__pad{ height:100%; padding:0 var(--gutter) var(--gutter) 0 }
/* aspect always; spans engage at sm+ so tiles interlock into square row-units */
.s-2x3{ aspect-ratio:2/3 } .s-4x3{ aspect-ratio:4/3 } .s-3x3{ aspect-ratio:1/1 }
.s-3x2{ aspect-ratio:3/2 } .s-3x4{ aspect-ratio:3/4 } .s-5x2{ aspect-ratio:5/2 }
.s-2x2{ aspect-ratio:1/1 } .s-4x4{ aspect-ratio:1/1 } .s-4x2{ aspect-ratio:2/1 }
@media (min-width:640px){
  .s-2x3{ grid-column:span 2; grid-row:span 3 } .s-4x3{ grid-column:span 4; grid-row:span 3 }
  .s-3x3{ grid-column:span 3; grid-row:span 3 } .s-3x2{ grid-column:span 3; grid-row:span 2 }
  .s-3x4{ grid-column:span 3; grid-row:span 4 } .s-5x2{ grid-column:span 5; grid-row:span 2 }
  .s-2x2{ grid-column:span 2; grid-row:span 2 } .s-4x4{ grid-column:span 4; grid-row:span 4 } .s-4x2{ grid-column:span 4; grid-row:span 2 }
}

/* ---- TILE — cream inset card (default) ---- */
.tile{ position:relative; height:100%; background:var(--cream); border-radius:var(--r-tile); overflow:hidden; display:flex; flex-direction:column }
.tile__media{ flex:1 1 auto; min-height:0; display:flex; align-items:center; justify-content:center; padding:var(--pad-50) }
.s-2x2 .tile__media,.s-2x3 .tile__media{ padding:var(--pad-40) }
.s-4x4 .tile__media{ padding:var(--pad-60) }
.tile__media img,.tile__media video{ width:100%; height:100%; object-fit:cover; border-radius:var(--r-media); opacity:0; transition:opacity .3s var(--ease) }
.tile__media.is-loaded img,.tile__media.is-loaded video{ opacity:1 }
.tile__cap{ padding:0 var(--pad-50) var(--pad-50) }
.s-2x2 .tile__cap,.s-2x3 .tile__cap{ padding:0 var(--pad-40) var(--pad-40) }
.tile__cap .k{ color:var(--ink); opacity:.62 } .tile__cap .v{ color:var(--ink) }

/* fill card — media edge-to-edge, caption below on cream */
.tile--fill .tile__media{ padding:0 }
.tile--fill .tile__media img,.tile--fill .tile__media video{ border-radius:0 }

/* bleed — media full-frame, caption overlays a bottom scrim (white) */
.tile--bleed{ background:#111 }
.tile--bleed .tile__media{ padding:0 } .tile--bleed .tile__media img,.tile--bleed .tile__media video{ border-radius:0 }
.tile--bleed .tile__cap{ position:absolute; left:0; right:0; bottom:0; padding:var(--pad-50);
  background:linear-gradient(to top, rgba(0,0,0,.6), rgba(0,0,0,.25) 42%, transparent) }
.tile--bleed .tile__cap .k{ color:rgba(255,255,255,.72); opacity:1 } .tile--bleed .tile__cap .v{ color:#fff }

/* edge banner — wide, media hugs right, cream air left */
.tile--edge .tile__media{ padding:0 0 0 var(--pad-50); justify-content:flex-end }
.tile--edge .tile__media img,.tile--edge .tile__media video{ border-radius:var(--r-media) 0 0 var(--r-media) }

/* phone mockup inside a cream card */
.tile__media--phone{ padding:clamp(16px,1rem + 1.6vw,34px) }
.phone{ position:relative; height:100%; margin:0 auto; aspect-ratio:1080/2400; background:#0b0b0b; border-radius:30px; padding:7px;
  box-shadow:0 1px 0 rgba(255,255,255,.14) inset, 0 16px 36px rgba(0,0,0,.26) }
.phone::before{ content:""; position:absolute; top:10px; left:50%; transform:translateX(-50%); width:34%; height:8px; background:#0b0b0b; border-radius:0 0 10px 10px; z-index:2 }
.phone img{ width:100%; height:100%; object-fit:cover; border-radius:24px; opacity:0; transition:opacity .3s var(--ease) }
.tile__media--phone.is-loaded .phone img{ opacity:1 }

/* zoom phone — magnified feature closeup: the phone bleeds off ONE edge, and that single cut is softened with a blur (never both edges). Otherwise identical to the phone mockups. */
.tile__media--zoom{ position:relative; padding:0; overflow:hidden; align-items:flex-end }
.tile__media--zoom .phone{ height:160% }
.tile__media--zoom.is-loaded .phone img{ opacity:1 }
.tile__media--zoom .fade{ position:absolute; left:0; right:0; top:0; height:46%; z-index:3; pointer-events:none;
  -webkit-backdrop-filter:blur(9px); backdrop-filter:blur(9px);
  -webkit-mask-image:linear-gradient(to bottom,#000,#000 18%,transparent);
          mask-image:linear-gradient(to bottom,#000,#000 18%,transparent) }
/* reel = 3 preloaded grains stacked; gauge crossfades opacity (no src reload, no black flash) */
.tile__media--reel{ position:relative }
.tile__media--reel .reel-v{ position:absolute; inset:0; width:100%; height:100%; object-fit:cover; opacity:0; transition:opacity .45s var(--ease) }
.tile__media--reel .reel-v.is-on{ opacity:1 }

/* CTA card — cream + lime sweep + pill */
.tile--cta{ align-items:center; justify-content:center; text-align:center; gap:22px; padding:clamp(24px,4vw,60px) }
.tile--cta .sweep{ background-image:linear-gradient(var(--lime),var(--lime)); background-repeat:no-repeat; background-size:0% 100%;
  transition:background-size .6s var(--ease); padding:.04em .12em; box-decoration-break:clone; -webkit-box-decoration-break:clone }
.cell.seen .tile--cta .sweep{ background-size:100% 100% }
.tile--cta .caption,.tile--cta .hero-sm{ color:var(--ink) }
.tile--cta .hero-sm{ line-height:.92; letter-spacing:-.01em }

/* neon block — solid colour, one line */
.tile--lime{ background:var(--lime) } .tile--mint{ background:var(--mint) } .tile--cream{ background:var(--hero) }

/* run heading */
.run-head{ padding:clamp(44px,4rem + 3vw,96px) var(--edge) clamp(16px,1rem + 1vw,28px); display:flex; flex-direction:column; gap:14px }
.run-head .eyebrow{ color:var(--ink-2) }

/* ---- ticker ---- */
.ticker{ background:var(--mint); border-radius:var(--r-tile); margin:var(--gutter) 0; overflow:hidden; padding:30px 0 }
.ticker__track{ display:inline-flex; white-space:nowrap; will-change:transform; animation:marquee 100s linear infinite }
.ticker__track>*{ margin:0 45px; color:var(--ink-2) }
@keyframes marquee{ from{ transform:translateX(0) } to{ transform:translateX(-50%) } }

/* ---- close ---- */
.band{ background:var(--lime); border-radius:var(--r-tile); margin:var(--gutter) 0; padding:clamp(44px,4rem + 3vw,96px) var(--edge);
  display:flex; flex-direction:column; align-items:center; text-align:center; gap:22px }
.foot{ background:var(--cream); border-radius:var(--r-tile); margin-top:var(--gutter); padding:clamp(24px,2rem + 2vw,80px) var(--edge) }
.foot__grid{ display:flex; flex-wrap:wrap; gap:40px; justify-content:space-between }
.foot__col{ min-width:200px } .foot a{ display:inline-block } .foot a:hover{ opacity:.6 }
.foot__mark{ font-family:var(--medium); font-weight:570; line-height:.78; font-size:clamp(4rem,1rem + 12vw,14rem); letter-spacing:-.02em;
  margin-top:clamp(24px,3vw,52px); user-select:none; pointer-events:none }

/* ---- nav overlay ---- */
.nav{ position:fixed; inset:0; z-index:50; background:var(--hero); display:flex; flex-direction:column; justify-content:center; gap:4px;
  padding:var(--edge); transform:translateY(-100%); transition:transform .4s var(--ease) }
.nav.open{ transform:none }
.nav>a{ font-family:var(--medium); font-weight:570; line-height:1.02; font-size:clamp(2.4rem,1rem + 7vw,5rem) }
.nav>a:hover{ opacity:.55 }
.nav__close{ position:absolute; top:var(--edge); right:var(--edge) }
.nav__foot{ margin-top:28px; display:flex; gap:26px } .nav__foot a{ font-family:var(--sans); font-weight:380; font-size:16px }

/* ---- reveal ---- */
.cell,.run-head{ opacity:0; transform:translateY(16px); transition:opacity .7s var(--ease), transform .7s var(--ease) }
.cell.seen,.run-head.seen{ opacity:1; transform:none }

@media (prefers-reduced-motion:reduce){
  *{ animation:none !important; transition:none !important }
  .cell,.run-head{ opacity:1; transform:none }
  .tile__media img,.tile__media video,.phone img{ opacity:1 }
  .tile--cta .sweep{ background-size:100% 100% }
}

/* ---- CTA + neon statements sized to fit their tile (no overflow/overlap) ---- */
.tile--cta{ overflow:hidden }
.tile--cta .hero-sm{ font-size:clamp(1.6rem, 1rem + 2.2vw, 2.8rem); line-height:1.04; letter-spacing:-.01em }
.tile--cta .sweep{ padding:.02em .1em }

.hero h1{ margin-left:-.04em } /* optical left-align to wordmark */


/* footer wordmark — close the wide F-V pair */
.foot__mark{ font-kerning:normal }

/* ===== ZINE — grey-ground book, ported verbatim from kapildassite (Nieves-matched) ===== */
:root{ --gg-grain:url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAADIAAAAyCAMAAAAp4XiDAAAAUVBMVEWFhYWDg4N3d3dtbW17e3t1dXWBgYGHh4d5eXlzc3OLi4ubm5uVlZWPj4+NjY19fX2JiYl/f39ra2uRkZGZmZlpaWmXl5dvb29xcXGTk5NnZ2c8TV1mAAAAG3RSTlNAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEAvEOwtAAAFVklEQVR4XpWWB67c2BUFb3g557T/hRo9/WUMZHlgr4Bg8Z4qQgQJlHI4A8SzFVrapvmTF9O7dmYRFZ60YiBhJRCgh1FYhiLAmdvX0CzTOpNE77ME0Zty/nWWzchDtiqrmQDeuv3powQ5ta2eN0FY0InkqDD73lT9c9lEzwUNqgFHs9VQce3TVClFCQrSTfOiYkVJQBmpbq2L6iZavPnAPcoU0dSw0SUTqz/GtrGuXfbyyBniKykOWQWGqwwMA7QiYAxi+IlPdqo+hYHnUt5ZPfnsHJyNiDtnpJyayNBkF6cWoYGAMY92U2hXHF/C1M8uP/ZtYdiuj26UdAdQQSXQErwSOMzt/XWRWAz5GuSBIkwG1H3FabJ2OsUOUhGC6tK4EMtJO0ttC6IBD3kM0ve0tJwMdSfjZo+EEISaeTr9P3wYrGjXqyC1krcKdhMpxEnt5JetoulscpyzhXN5FRpuPHvbeQaKxFAEB6EN+cYN6xD7RYGpXpNndMmZgM5Dcs3YSNFDHUo2LGfZuukSWyUYirJAdYbF3MfqEKmjM+I2EfhA94iG3L7uKrR+GdWD73ydlIB+6hgref1QTlmgmbM3/LeX5GI1Ux1RWpgxpLuZ2+I+IjzZ8wqE4nilvQdkUdfhzI5QDWy+kw5Wgg2pGpeEVeCCA7b85BO3F9DzxB3cdqvBzWcmzbyMiqhzuYqtHRVG2y4x+KOlnyqla8AoWWpuBoYRxzXrfKuILl6SfiWCbjxoZJUaCBj1CjH7GIaDbc9kqBY3W/Rgjda1iqQcOJu2WW+76pZC9QG7M00dffe9hNnseupFL53r8F7YHSwJWUKP2q+k7RdsxyOB11n0xtOvnW4irMMFNV4H0uqwS5ExsmP9AxbDTc9JwgneAT5vTiUSm1E7BSflSt3bfa1tv8Di3R8n3Af7MNWzs49hmauE2wP+ttrq+AsWpFG2awvsuOqbipWHgtuvuaAE+A1Z/7gC9hesnr+7wqCwG8c5yAg3AL1fm8T9AZtp/bbJGwl1pNrE7RuOX7PeMRUERVaPpEs+yqeoSmuOlokqw49pgomjLeh7icHNlG19yjs6XXOMedYm5xH2YxpV2tc0Ro2jJfxC50ApuxGob7lMsxfTbeUv07TyYxpeLucEH1gNd4IKH2LAg5TdVhlCafZvpskfncCfx8pOhJzd76bJWeYFnFciwcYfubRc12Ip/ppIhA1/mSZ/RxjFDrJC5xifFjJpY2Xl5zXdguFqYyTR1zSp1Y9p+tktDYYSNflcxI0iyO4TPBdlRcpeqjK/piF5bklq77VSEaA+z8qmJTFzIWiitbnzR794USKBUaT0NTEsVjZqLaFVqJoPN9ODG70IPbfBHKK+/q/AWR0tJzYHRULOa4MP+W/HfGadZUbfw177G7j/OGbIs8TahLyynl4X4RinF793Oz+BU0saXtUHrVBFT/DnA3ctNPoGbs4hRIjTok8i+algT1lTHi4SxFvONKNrgQFAq2/gFnWMXgwffgYMJpiKYkmW3tTg3ZQ9Jq+f8XN+A5eeUKHWvJWJ2sgJ1Sop+wwhqFVijqWaJhwtD8MNlSBeWNNWTa5Z5kPZw5+LbVT99wqTdx29lMUH4OIG/D86ruKEauBjvH5xy6um/Sfj7ei6UUVk4AIl3MyD4MSSTOFgSwsH/QJWaQ5as7ZcmgBZkzjjU1UrQ74ci1gWBCSGHtuV1H2mhSnO3Wp/3fEV5a+4wz//6qy8JxjZsmxxy5+4w9CDNJY09T072iKG0EnOS0arEYgXqYnXcYHwjTtUNAcMelOd4xpkoqiTYICWFq0JSiPfPDQdnt+4/wuqcXY47QILbgAAAABJRU5ErkJggg==); }
.zineground{ display:flex; flex-direction:column; align-items:center; gap:24px; padding:clamp(20px,3vw,48px) var(--edge) clamp(40px,5vw,80px) }
.gg-canvas{ position:relative; background-color:#fff; background-image:linear-gradient(135deg, rgba(226,226,226,.6) 0%, rgba(198,197,195,.6) 100%); --gg-page-h:78vh; width:fit-content; max-width:100%; margin-inline:0; padding:26px 26px 20px; display:flex; align-items:center; justify-content:center; overflow-x:auto; overflow-y:hidden }
.gg-stage{ display:grid; align-items:center; justify-items:center }
.gg-box{ position:relative; display:flex; grid-area:1/1; width:auto }
.gg-box:not(.active):not(.warm){ display:none }
.gg-box.warm:not(.active){ visibility:hidden; pointer-events:none }
.gg-page{ position:relative; flex:0 0 auto; height:var(--gg-page-h); width:calc(var(--gg-page-h) * 0.705); background:#fff; box-shadow:2px 2px 3px rgba(0,0,0,.4); overflow:hidden }
.gg-page.gg-empty{ background:none; box-shadow:none }
.gg-page:not(.gg-empty)::before{ content:''; position:absolute; inset:0; z-index:3; pointer-events:none; opacity:.4; background-image:var(--gg-grain) }
.gg-page:not(.gg-empty)::after{ content:''; position:absolute; inset:0; z-index:3; pointer-events:none; background-image:linear-gradient(135deg, rgba(255,255,255,.1) 0%, rgba(0,0,0,.06) 100%) }
.gg-photo{ position:absolute; overflow:hidden; z-index:1 }
.gg-photo img{ width:100%; height:100%; object-fit:cover; display:block }
.gg-nav{ position:absolute; top:0; bottom:0; width:50%; border:0; padding:0; background:none; appearance:none; z-index:5 }
.gg-prev{ left:0; cursor:url("data:image/svg+xml,%3Csvg%20xmlns%3D%27http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%27%20width%3D%2730%27%20height%3D%2730%27%20viewBox%3D%270%200%2030%2030%27%3E%3Cg%20fill%3D%27none%27%20stroke-linecap%3D%27round%27%20stroke-linejoin%3D%27round%27%3E%3Cpath%20d%3D%27M22%2015H9M14%2010l-5%205%205%205%27%20stroke%3D%27%23ffffff%27%20stroke-width%3D%273.4%27%20stroke-opacity%3D%270.6%27%2F%3E%3Cpath%20d%3D%27M22%2015H9M14%2010l-5%205%205%205%27%20stroke%3D%27%23111111%27%20stroke-width%3D%271.3%27%2F%3E%3C%2Fg%3E%3C%2Fsvg%3E") 15 15, w-resize }
.gg-next{ right:0; cursor:url("data:image/svg+xml,%3Csvg%20xmlns%3D%27http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%27%20width%3D%2730%27%20height%3D%2730%27%20viewBox%3D%270%200%2030%2030%27%3E%3Cg%20fill%3D%27none%27%20stroke-linecap%3D%27round%27%20stroke-linejoin%3D%27round%27%3E%3Cpath%20d%3D%27M8%2015H21M16%2010l5%205-5%205%27%20stroke%3D%27%23ffffff%27%20stroke-width%3D%273.4%27%20stroke-opacity%3D%270.6%27%2F%3E%3Cpath%20d%3D%27M8%2015H21M16%2010l5%205-5%205%27%20stroke%3D%27%23111111%27%20stroke-width%3D%271.3%27%2F%3E%3C%2Fg%3E%3C%2Fsvg%3E") 15 15, e-resize }
.gg-counter{ display:none }
.zine__ctrl{ display:flex; align-items:center; gap:16px }
@media (max-width:768px){
  .gg-canvas{ --gg-page-h:34vh; width:100%; padding:14px; overflow-x:auto }
  .gg-box{ width:auto } .gg-stage{ width:auto }
}
.story{ max-width:var(--maxw); margin:0 auto; padding:clamp(64px,9vw,132px) var(--edge); display:flex; flex-direction:column; align-items:flex-start; gap:20px }
.story .eyebrow{ color:var(--ink-2) } .story .intro{ color:var(--ink) }

/* ===== PHOTO — exploded isometric diagram (TE technical-manual) ===== */
.iso{ padding:clamp(16px,2vw,30px) var(--edge) clamp(40px,4vw,72px); display:flex; justify-content:center }
.iso__svg{ width:100%; max-width:940px; height:auto; display:block; background:#fff; border-radius:var(--r-tile) }

/* PHOTO — iso diagram + photo-camera mockup, asymmetric (bureau negative space) */
.photo-stage{ max-width:var(--maxw); margin:0 auto; padding:clamp(16px,2vw,30px) var(--edge) clamp(40px,5vw,80px); display:grid; grid-template-columns:minmax(0,1.85fr) minmax(0,0.85fr); gap:clamp(24px,4vw,72px); align-items:start }
.photo-stage .iso{ padding:0 }
.pcam{ margin-top:clamp(56px,14vw,210px); display:flex; flex-direction:column; gap:16px }
.pcam .phone{ height:auto; width:100%; max-width:300px; margin:0 auto }
.pcam .phone img{ opacity:1 }
.pcam__cap{ font-family:var(--sans); font-size:14px; line-height:1.45; color:var(--ink-2); max-width:26ch; width:100%; margin:0 auto }
@media (max-width:768px){ .photo-stage{ grid-template-columns:1fr } .pcam{ margin-top:8px } .pcam .phone{ max-width:260px } }

/* ===== gauge type-selector tile (thinnest weight in the family) ===== */
.tile--gauge{ align-items:center; justify-content:center; text-align:center; gap:16px; padding:clamp(24px,4vw,48px) }
.tile--gauge .eyebrow{ color:var(--ink-2) }
.gauge{ display:flex; flex-direction:column; gap:2px; align-items:center }
.gauge__opt{ font-family:var(--sans); font-weight:380; font-size:clamp(2.1rem,1.3rem + 2.6vw,3.5rem); line-height:1.12; letter-spacing:-.01em; color:var(--ink-2); background:none; border:0; padding:2px 0; cursor:pointer; transition:color .15s var(--ease) }
.gauge__opt span{ font-size:.4em; letter-spacing:.03em; margin-left:.06em }
.gauge__opt:hover{ color:var(--ink) }
.gauge__opt.is-on{ color:var(--ink); text-decoration:underline; text-decoration-color:var(--lime); text-decoration-thickness:3px; text-underline-offset:5px }
