
  :root{
    --ink: #0C0C0C;
    --paper: #FFFFFF;
    --bolt: #FFD306;
    --bolt-hover: #EFC400;
    /* status green. Deliberately outside the brand accent: a live/reachable
       signal has to read as different from the yellow used everywhere else. */
    --live: #25D366;
    --live-soft: rgba(37,211,102,0.5);
    --fdr-bg: #0C0C0C;
    --fdr-line: rgba(255,211,6,0.22);
    --fdr-shadow: rgba(12,12,12,0.18);
    color-scheme: light;
    --bg-page: #FFFFFF;
    --tx: #0C0C0C;
    --tx-mid: rgba(12,12,12,0.72);
    --tx-body: rgba(12,12,12,0.68);
    --tx-dim: rgba(12,12,12,0.62);
    --tx-faint: rgba(12,12,12,0.42);
    --tx-ph: rgba(12,12,12,0.34);
    --line: rgba(12,12,12,0.1);
    --line-mid: rgba(12,12,12,0.2);
    --line-btn: rgba(12,12,12,0.22);
    --line-faint: rgba(12,12,12,0.06);
    --card: #F4F1EB;
    --card-hot: #FFF3C6;
    --card-hot-line: rgba(12,12,12,0.08);
    --tile: #ECE8E2;
    --win: #FFFFFF;
    --win-line: rgba(12,12,12,0.09);
    --dot: rgba(12,12,12,0.16);
    --glass-tint: rgba(255,255,255,0.82);
    --frost: rgba(255,255,255,0.63);
    --hairline: rgba(255, 255, 255, 0.75);
    --bevel-x: rgba(255,255,255,0.4);
    --bevel-btm: rgba(12,12,12,0.05);
    --bevel-ring: rgba(12,12,12,0.045);
    --spec-1: rgba(255,255,255,0.5);
    --spec-2: rgba(255,255,255,0.2);
    --blob: rgba(12,12,12,0.055);
    --blob-hi: rgba(255,255,255,0.5);
    --focus-gap: #FFFFFF;
    --focus-c: #0C0C0C;
    --sec-a: #FFFFFF;
    --sec-b: #F4F1EB;
    --sec-ink: #0C0C0C;
    --foot-bg: #0C0C0C;
    --sel-arrow: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 24 24' fill='none' stroke='%230C0C0C' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='m6 9 6 6 6-6'/%3E%3C/svg%3E");
    --ease-out: cubic-bezier(0.25, 1, 0.5, 1);
    --ease-glide: cubic-bezier(0.32, 0.72, 0, 1);
    --ease-in-out: cubic-bezier(0.65, 0, 0.35, 1);
    --dur-fast: 120ms;
    --dur-base: 200ms;
    --dur-slow: 320ms;
    --hdr-h: 64px;
    --hdr-h-scrolled: 54px;
  }
  html[data-theme="dark"]{
    color-scheme: dark;
    --bg-page: #0C0C0C;
    --tx: #F5F3EF;
    --tx-mid: rgba(245,243,239,0.78);
    --tx-body: rgba(245,243,239,0.72);
    --tx-dim: rgba(245,243,239,0.62);
    --tx-faint: rgba(245,243,239,0.45);
    --tx-ph: rgba(245,243,239,0.36);
    --line: rgba(245,243,239,0.12);
    --line-mid: rgba(245,243,239,0.28);
    --line-btn: rgba(245,243,239,0.26);
    --line-faint: rgba(245,243,239,0.10);
    --card: #24211C;
    --card-hot: #251F08;
    --card-hot-line: rgba(255,211,6,0.14);
    --tile: #2D2925;
    --win: #24211C;
    --win-line: rgba(245,243,239,0.13);
    --dot: rgba(245,243,239,0.2);
    --glass-tint: rgba(21,20,19,0.62);
    --frost: rgba(13,12,11,0.55);
    --hairline: rgba(255,255,255,0.15);
    --bevel-x: rgba(255,255,255,0.06);
    --bevel-btm: rgba(0,0,0,0.5);
    --bevel-ring: rgba(255,255,255,0.08);
    --spec-1: rgba(255,255,255,0.13);
    --spec-2: rgba(255,255,255,0.05);
    --blob: rgba(255,255,255,0.09);
    --blob-hi: rgba(255,255,255,0.06);
    --focus-gap: #0C0C0C;
    --focus-c: #FFD306;
    --live: #2BE07F;
    --live-soft: rgba(43,224,127,0.42);
    --fdr-bg: #000000;
    --fdr-line: rgba(255,211,6,0.30);
    --fdr-shadow: rgba(0,0,0,0.6);
    --sec-a: #0C0C0C;
    --sec-b: #1B1815;
    --sec-ink: #060606;
    --foot-bg: #060606;
    --sel-arrow: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 24 24' fill='none' stroke='%23F5F3EF' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='m6 9 6 6 6-6'/%3E%3C/svg%3E");
  }
  /* whole-page cross-fade while the theme flips — nothing may snap */
  html.theming, html.theming body, html.theming *, html.theming *::before, html.theming *::after{
    transition: background-color 560ms var(--ease-glide), color 560ms var(--ease-glide), border-color 560ms var(--ease-glide), outline-color 560ms var(--ease-glide), box-shadow 560ms var(--ease-glide), opacity 560ms var(--ease-glide), transform 560ms var(--ease-glide), fill 560ms var(--ease-glide), stroke 560ms var(--ease-glide) !important;
  }
  * { margin: 0; padding: 0; box-sizing: border-box; }
  ::selection{ background: var(--bolt); color: var(--ink); }
  a{ color: var(--tx); text-decoration: none; }
  a:hover{ color: var(--tx); }
  html { scroll-behavior: auto; overflow-x: clip; background: var(--bg-page); }
  body{
    background: var(--bg-page);
    color: var(--tx);
    font-family: 'Space Grotesk', sans-serif;
    -webkit-font-smoothing: antialiased;
    overflow-x: clip;
  }

  /* ---------------- Ambient backdrop (what the glass refracts) ---------------- */
  /* ---------------- Liquid glass header ---------------- */
  .hdr{
    position: fixed;
    top: calc(10px + 2px * var(--p, 0)); left: 10px; right: 10px;
    z-index: 100;
    height: calc(var(--hdr-h) - 10px * var(--p, 0));
    max-width: calc(1600px - 820px * var(--p, 0));
    margin: 0 auto;
    border-radius: 999px;
    will-change: height, max-width;
    transition: transform 600ms var(--ease-out), opacity 600ms var(--ease-out);
    box-shadow: 0 1px 2px rgba(12, 12, 12, 0.05);
  }
  /* deep shadow fades in with scroll progress */
  .hdr::before{
    content: "";
    position: absolute; inset: 0;
    z-index: -1;
    border-radius: inherit;
    box-shadow: 0 4px 8px rgba(12, 12, 12, 0.05), 0 18px 44px rgba(12, 12, 12, 0.12);
    opacity: var(--p, 0);
  }

  /* layer 1 — frost */
  .hdr .glass-blur{
    position: absolute; inset: 0;
    border-radius: inherit;
    backdrop-filter: blur(18px) saturate(170%);
    -webkit-backdrop-filter: blur(18px) saturate(170%);
  }
  /* layer 2 — liquid rim refraction (progressive enhancement, Chromium) */
  .hdr .glass-warp{
    position: absolute; inset: 0;
    border-radius: inherit;
    border: 14px solid transparent;
    backdrop-filter: url(#liquid-lens);
    -webkit-backdrop-filter: url(#liquid-lens);
    /* ring mask — refraction lives at the rim, the centre stays honest */
    -webkit-mask: linear-gradient(#000 0 0) padding-box, linear-gradient(#000 0 0) border-box;
    -webkit-mask-composite: xor;
    mask: linear-gradient(#000 0 0) padding-box exclude, linear-gradient(#000 0 0) border-box;
  }
  /* layer 3 — tint */
  .hdr .glass-tint{
    position: absolute; inset: 0;
    border-radius: inherit;
    background-color: var(--glass-tint);
  }
  /* extra frost fades in with scroll progress */
  .hdr .glass-tint::after{
    content: "";
    position: absolute; inset: 0;
    border-radius: inherit;
    background-color: var(--frost);
    opacity: var(--p, 0);
  }
  /* layer 4 — bevel strokes + travelling specular */
  .hdr .glass-shine{
    position: absolute; inset: 0;
    border-radius: inherit;
    box-shadow:
      inset 0 1px 0 var(--hairline),
      inset 1px 0 0 var(--bevel-x),
      inset -1px 0 0 var(--bevel-x),
      inset 0 -1px 0 var(--bevel-btm),
      inset 0 0 0 1px var(--bevel-ring);
    overflow: hidden;
  }
  .hdr .glass-shine::before{
    content: "";
    position: absolute; inset: -1px;
    border-radius: inherit;
    background:
      radial-gradient(220px 90px at calc(var(--sx, 50%)) -30px, var(--spec-1), transparent 70%),
      radial-gradient(300px 130px at calc(var(--sx, 50%)) 110%, var(--spec-2), transparent 70%);
    opacity: var(--shine-o, 0);
    transition: opacity 400ms var(--ease-out);
  }

  .hdr-inner{
    position: relative;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    padding: 0 calc(10px - 2px * var(--p, 0)) 0 calc(20px - 4px * var(--p, 0));
  }

  /* entrance */
  @media (prefers-reduced-motion: no-preference){
    .hdr{ animation: hdr-drop 640ms var(--ease-out) both; }
    @keyframes hdr-drop{
      from{ transform: translateY(-84px); opacity: 0; }
      to{ transform: translateY(0); opacity: 1; }
    }
    .hdr-in{
      animation: item-in 520ms var(--ease-out) both;
      animation-delay: calc(140ms + var(--i, 0) * 55ms);
    }
    @keyframes item-in{
      from{ opacity: 0; transform: translateY(-9px); }
      to{ opacity: 1; transform: translateY(0); }
    }
  }

  /* brand — ZaifMedia lockup: yellow bolt + light wordmark */
  .brand{
    display: flex; align-items: center; gap: 11px;
    -webkit-user-select: none; user-select: none;
  }
  .brand:hover{ color: var(--tx); }
  .brand .bolt-wrap{ position: relative; display: block; transition: transform var(--dur-base) var(--ease-out); }
  .brand .bolt{
    height: calc(38px - 6px * var(--p, 0));
    width: auto;
    display: block;
    transition: opacity 480ms var(--ease-glide);
  }
  .brand .bolt-d{ position: absolute; inset: 0; width: 100%; height: 100%; object-fit: contain; opacity: 0; }
  html[data-theme="dark"] .brand .bolt-l{ opacity: 0; }
  html[data-theme="dark"] .brand .bolt-d{ opacity: 1; }
  .brand:hover .bolt-wrap{ transform: rotate(-6deg) scale(1.08); }

  /* nav */
  .nav{
    position: absolute;
    left: 50%; top: 50%;
    transform: translate(-50%, -50%);
    display: flex;
    align-items: center;
  }
  .nav-blob{
    position: absolute;
    top: 50%;
    height: 36px;
    transform: translateY(-50%);
    border-radius: 999px;
    background: var(--blob);
    box-shadow: inset 0 1px 0 var(--blob-hi);
    opacity: 0;
    transition:
      left 380ms var(--ease-glide),
      width 380ms var(--ease-glide),
      opacity 260ms var(--ease-out);
    pointer-events: none;
  }
  .nav-blob.on{ opacity: 1; }
  .nav a{
    position: relative;
    display: inline-flex;
    align-items: center;
    height: 36px;
    padding: 0 calc(16px - 4px * var(--p, 0));
    font-size: 15.5px;
    font-weight: 400;
    color: var(--tx-dim);
    transition: color var(--dur-base) var(--ease-out);
  }
  .nav a:hover{ color: var(--tx); }
  .nav a:active{ transform: scale(0.98); }
  .nav a:focus-visible{
    outline: none;
    box-shadow: 0 0 0 2px var(--focus-gap), 0 0 0 4px var(--focus-c);
    border-radius: 999px;
  }

  /* CTA */
  .cta{
    display: inline-flex;
    align-items: center;
    gap: 10px;
    height: calc(44px - 4px * var(--p, 0));
    padding: 0 calc(20px - 3px * var(--p, 0)) 0 calc(22px - 3px * var(--p, 0));
    border-radius: 999px;
    background: var(--bolt);
    color: var(--ink);
    font-family: 'Space Grotesk', sans-serif;
    font-size: 15.5px;
    font-weight: 500;
    border: none;
    cursor: pointer;
    transition:
      transform var(--dur-base) var(--ease-out),
      background var(--dur-base) var(--ease-out),
      box-shadow var(--dur-base) var(--ease-out);
    box-shadow: 0 1px 2px rgba(12,12,12,0.15);
  }
  .cta:hover{
    background: var(--bolt-hover);
    transform: scale(1.03);
    box-shadow: 0 4px 18px rgba(12, 12, 12, 0.18);
  }
  .cta:active{ transform: scale(0.98); }
  .cta:focus-visible{
    outline: none;
    box-shadow: 0 0 0 2px var(--focus-gap), 0 0 0 4px var(--focus-c);
  }
  .cta .arr{
    position: relative;
    width: 18px; height: 18px;
    overflow: hidden;
  }
  .cta .arr svg{
    position: absolute; inset: 0;
    transition: transform var(--dur-slow) var(--ease-out);
  }
  .cta .arr svg.ghost{ transform: translate(-115%, 115%); }
  .cta:hover .arr svg.lead{ transform: translate(115%, -115%); }
  .cta:hover .arr svg.ghost{ transform: translate(0, 0); }

  /* theme toggle */
  .hdr-right{ display: flex; align-items: center; gap: 8px; }
  .mode{
    position: relative;
    width: calc(44px - 4px * var(--p, 0));
    height: calc(44px - 4px * var(--p, 0));
    flex: 0 0 auto;
    border-radius: 50%;
    border: 1px solid var(--line-btn);
    background: transparent;
    color: var(--tx);
    cursor: pointer;
    transition: border-color var(--dur-base) var(--ease-out), background var(--dur-base) var(--ease-out), color var(--dur-base) var(--ease-out), transform var(--dur-fast) var(--ease-out);
  }
  .mode:hover{ border-color: var(--tx); background: var(--blob); }
  .mode:active{ transform: scale(0.94); }
  .mode:focus-visible{ outline: none; box-shadow: 0 0 0 2px var(--focus-gap), 0 0 0 4px var(--focus-c); }
  .mode svg{ position: absolute; inset: 0; margin: auto; width: 19px; height: 19px; transition: transform 560ms var(--ease-glide), opacity 320ms var(--ease-out); }
  .mode .moon{ opacity: 0; transform: rotate(90deg) scale(0.5); }
  html[data-theme="dark"] .mode .sun{ opacity: 0; transform: rotate(-90deg) scale(0.5); }
  html[data-theme="dark"] .mode .moon{ opacity: 1; transform: none; }

  /* (condensed-state trims are driven continuously by --p above) */

  /* ---------------- Demo backdrop content (scroll to see the glass work) ---------------- */
  .hero{
    position: relative;
    height: 100svh;
    min-height: 600px;
    max-width: 1560px;
    margin: 0 auto;
    padding: clamp(120px, 18vh, 210px) clamp(24px, 4vw, 64px) clamp(40px, 6vh, 64px);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    gap: min(80px, 8vh);
    color: var(--tx);
  }
  /* kicker — yellow bolt tick + uppercase label */
  .kicker{
    display: flex; align-items: center; gap: 12px;
    font-size: 13px; font-weight: 500;
    letter-spacing: 0.14em; text-transform: uppercase;
    color: var(--tx);
    margin-bottom: 26px;
  }
  .kicker img{ height: 20px; width: auto; display: block; }
  /* section kickers — yellow bolt tick + uppercase label, one per section */
  .sec-kick{ display: flex; align-items: center; gap: 12px; font-size: 13px; font-weight: 500; letter-spacing: 0.14em; text-transform: uppercase; color: var(--tx); margin-bottom: 20px; }
  .sec-kick img{ height: 18px; width: auto; display: block; }
  .hww-head .sec-kick{ justify-content: center; }
  .wwd .sec-kick{ color: #F5F3EF; margin-bottom: clamp(14px, 2vh, 24px); }
  .hl{
    font-family: 'Clash Display', 'Space Grotesk', sans-serif;
    font-weight: 400;
    font-size: clamp(44px, min(7.2vw, 13vh), 108px);
    line-height: 1.05;
    letter-spacing: -0.015em;
    color: var(--tx);
  }
  .hl .dot{ color: var(--bolt); }
  .hl .line{ display: block; overflow: hidden; padding: 0.03em 0; }
  .hl.revealed .line{ overflow: visible; }
  .hl .li{ display: block; }
  .hl-sub{ margin-top: clamp(14px, 2vh, 22px); font-size: 16px; line-height: 1.5; color: var(--tx-dim); }

  /* inline video chip — live reel loop + play */
  .chip{
    position: relative;
    display: inline-block;
    font: inherit;
    width: 0.78em; height: 0.78em;
    border-radius: 50%;
    overflow: hidden;
    background: #0C0C0C;
    vertical-align: -0.1em;
    margin-left: 0.06em;
    border: none;
    padding: 0;
    cursor: pointer;
    will-change: transform;
    z-index: 3;
  }
  .chip canvas, .chip video{
    position: absolute; inset: 0;
    width: 100%; height: 100%;
    object-fit: cover;
    display: block;
  }
  .chip:focus-visible{ outline: 2px solid var(--focus-c); outline-offset: 3px; }
  .chip .chip-play{
    position: absolute; inset: 0;
    display: grid; place-items: center;
    pointer-events: none;
    background: radial-gradient(closest-side, rgba(0,0,0,0.22), rgba(0,0,0,0.06) 68%, transparent);
    z-index: 2;
    transition: opacity 220ms var(--ease-out);
  }
  .chip:hover .chip-play{ opacity: 0.85; }
  .chip .chip-play svg{ width: 30%; height: auto; display: block; margin-left: 5%; filter: drop-shadow(0 1px 4px rgba(0,0,0,0.4)); }

  /* theater lightbox */
  .reel-box{
    position: fixed; inset: 0;
    z-index: 300;
    display: grid; place-items: center;
    background: rgba(8, 7, 6, 0.92);
    opacity: 0;
    visibility: hidden;
    transition: opacity 450ms var(--ease-glide), visibility 0s linear 450ms;
  }
  .reel-box.open{
    opacity: 1;
    visibility: visible;
    transition: opacity 450ms var(--ease-glide);
  }
  .reel-stage{
    position: relative;
    width: min(92vw, calc((86vh) * 16 / 9));
    aspect-ratio: 16 / 9;
    border-radius: 20px;
    overflow: hidden;
    background: #0C0C0C;
    transform: scale(0.94) translateY(14px);
    transition: transform 550ms var(--ease-glide);
  }
  .reel-box.open .reel-stage{ transform: scale(1) translateY(0); }
  .reel-stage canvas, .reel-stage video, .reel-stage iframe{
    position: absolute; inset: 0;
    width: 100%; height: 100%;
    object-fit: cover;
    display: block;
    border: 0;
  }
  .reel-close{
    position: absolute;
    top: 22px; right: 26px;
    width: 40px; height: 40px;
    border-radius: 50%;
    border: 1.5px solid rgba(255,255,255,0.55);
    background: transparent;
    color: #FFFFFF;
    display: grid; place-items: center;
    cursor: pointer;
    transition: background 200ms var(--ease-out), transform 200ms var(--ease-out), border-color 200ms var(--ease-out);
  }
  .reel-close:hover{ background: rgba(255,255,255,0.14); border-color: #FFFFFF; transform: scale(1.06); }
  .reel-close:active{ transform: scale(0.96); }
  .reel-close:focus-visible{ outline: none; box-shadow: 0 0 0 2px #0C0C0C, 0 0 0 4px #FFD306; }
  /* escape hatch under the yt theater — for embed-restricted videos */
  .yt-open{ position: absolute; left: 50%; bottom: 26px; translate: -50% 0; font-size: 13px; letter-spacing: 0.02em; color: rgba(255,255,255,0.72); text-decoration: none; border-bottom: 1px solid rgba(255,255,255,0.28); padding-bottom: 2px; transition: color 200ms var(--ease-out), border-color 200ms var(--ease-out); }
  .yt-open:hover{ color: #FFFFFF; border-color: #FFD306; }
  .yt-open:focus-visible{ outline: none; box-shadow: 0 0 0 2px #0C0C0C, 0 0 0 4px #FFD306; }
  /* native controls in theater — no custom bar */

  /* bottom index row — links left, proof right */
  .hero-foot{
    width: 100%;
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: clamp(32px, 6vw, 96px);
  }
  .hero-links{ display: flex; gap: clamp(32px, 5vw, 64px); }
  .foot-link{
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 16px;
    font-size: 15.5px;
    line-height: 1.45;
    font-weight: 400;
    color: var(--tx);
    max-width: 21ch;
  }
  .foot-link:hover{ color: var(--tx); }
  .foot-link .ic{
    width: 30px; height: 30px;
    border-radius: 50%;
    border: 1.5px solid var(--tx);
    display: grid; place-items: center;
    color: var(--tx);
    transition: background 220ms var(--ease-out), color 220ms var(--ease-out), transform 220ms var(--ease-out);
  }
  .foot-link:hover .ic{ background: var(--bolt); border-color: var(--bolt); color: var(--ink); }
  .foot-link.down:hover .ic{ transform: translateY(3px); }
  .foot-link.fwd:hover .ic{ transform: translateX(3px); }
  .foot-link .ic svg{ display: block; }

  /* hero entrance — lines rise out of masks, chip pops, index fades up */
  @media (prefers-reduced-motion: no-preference){
    .kicker{ animation: foot-up 700ms var(--ease-glide) both; animation-delay: 140ms; }
    .hl .li{ animation: line-up 900ms var(--ease-glide) both; animation-delay: calc(220ms + var(--l, 0) * 100ms); }
    @keyframes line-up{ from{ transform: translateY(115%); } to{ transform: translateY(0); } }
    .hero-foot .foot-link{ animation: foot-up 700ms var(--ease-glide) both; animation-delay: calc(1000ms + var(--l, 0) * 110ms); }
    .hl-sub{ animation: foot-up 700ms var(--ease-glide) both; animation-delay: 760ms; }
    @keyframes foot-up{ from{ opacity: 0; transform: translateY(18px); } to{ opacity: 1; transform: translateY(0); } }
  }

  @media (max-width: 760px){
    .hero{ height: auto; min-height: 100svh; gap: 56px; padding-top: 140px; }
    .hero-foot{ flex-direction: column; align-items: flex-start; gap: 36px; }
    .hero-links{ gap: 32px; }
  }

  /* featured work — ink section, masonry of vertical reels */
  .work{ background: var(--sec-b); padding: clamp(56px, 9vh, 100px) 48px clamp(56px, 9vh, 120px); min-height: 100svh; display: flex; flex-direction: column; justify-content: center; }
  .work-in{ max-width: 1160px; margin: 0 auto; width: 100%; }
  .filter-bar{ display: flex; align-items: center; flex-wrap: wrap; gap: 10px 12px; margin-bottom: 46px; }
  .filter-label{ font-size: 13px; font-weight: 500; letter-spacing: 0.14em; text-transform: uppercase; color: var(--tx); margin-right: 16px; }
  .f-btn{ appearance: none; cursor: pointer; font-family: 'Space Grotesk', sans-serif; font-size: 14px; font-weight: 500; color: var(--tx-dim); background: transparent; border: 1px solid var(--line-btn); border-radius: 999px; padding: 9px 18px; transition: color 220ms var(--ease-out), border-color 220ms var(--ease-out), background 220ms var(--ease-out), transform 160ms var(--ease-out); }
  .f-btn:hover{ color: var(--tx); border-color: var(--tx); }
  .f-btn:active{ transform: scale(0.98); }
  .f-btn.on{ background: var(--bolt); border-color: var(--bolt); color: var(--ink); }
  .f-btn:focus-visible{ outline: none; box-shadow: 0 0 0 2px var(--focus-gap), 0 0 0 4px var(--focus-c); }
  .g-grid{ position: relative; transition: height 620ms var(--ease-glide); }
  .g-item{ position: absolute; top: 0; left: 0; margin: 0; border-radius: 20px; overflow: hidden; background: var(--tile); translate: 0 30px; opacity: 0; transition: transform 620ms var(--ease-glide), translate 650ms var(--ease-glide), scale 500ms var(--ease-glide), opacity 460ms var(--ease-out); }
  .g-item.seen{ translate: 0 0; opacity: 1; }
  .g-item.out{ opacity: 0; scale: 0.9; pointer-events: none; }
  .g-item video, .g-item img{ position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; transition: transform 650ms var(--ease-glide); }
  .g-item:hover video, .g-item:hover img{ transform: scale(1.045); }
  .g-tag{ position: absolute; left: 12px; bottom: 12px; z-index: 2; font-size: 12px; font-weight: 500; letter-spacing: 0.04em; color: var(--ink); background: var(--bolt); border-radius: 999px; padding: 6px 12px; opacity: 0; translate: 0 8px; transition: opacity 240ms var(--ease-out), translate 240ms var(--ease-out); pointer-events: none; }
  .g-item:hover .g-tag{ opacity: 1; translate: 0 0; }
  /* youtube tiles open the theater — play badge styled like the g-tag pill */
  [data-yt]{ cursor: pointer; }
  /* empty media slot — quiet admin placeholder, not visitor-fillable */
  .ph-slot{ position: absolute; inset: 0; display: grid; place-items: center; padding: 14px; text-align: center; font-size: 12px; letter-spacing: 0.03em; opacity: 0.55; border: 1px dashed currentColor; border-radius: inherit; pointer-events: none; }
  .cs-panel .ph-slot, .cs-inset-ph .ph-slot{ color: #F5F3EF; }
  .g-play{ position: absolute; left: 50%; top: 50%; z-index: 2; width: 44px; height: 44px; margin: -22px 0 0 -22px; display: grid; place-items: center; color: var(--ink); background: var(--bolt); border-radius: 50%; opacity: 0; scale: 0.85; transition: opacity 240ms var(--ease-out), scale 240ms var(--ease-out); pointer-events: none; }
  .g-play svg{ display: block; margin-left: 2px; }
  [data-yt]:hover .g-play, [data-yt]:focus-visible .g-play{ opacity: 1; scale: 1; }
  [data-yt]:focus-visible{ outline: 2px solid var(--bolt); outline-offset: 2px; }
  .load-wrap{ display: flex; justify-content: center; margin-top: 48px; transition: opacity 460ms var(--ease-out), transform 620ms var(--ease-glide); }
  .load-wrap.off{ opacity: 0; transform: translateY(8px); pointer-events: none; }
  .load-btn{ display: inline-flex; align-items: center; gap: 10px; height: 48px; padding: 0 26px; border-radius: 999px; border: 1.5px solid var(--tx); background: transparent; color: var(--tx); font-family: 'Space Grotesk', sans-serif; font-size: 15.5px; font-weight: 500; cursor: pointer; transition: background 220ms var(--ease-out), color 220ms var(--ease-out), transform 160ms var(--ease-out); }
  .load-btn svg{ transition: transform 220ms var(--ease-out); }
  .load-btn:hover{ background: var(--tx); color: var(--bg-page); }
  .load-btn:hover svg{ transform: translateY(2px); }
  .load-btn:active{ transform: scale(0.98); }
  .load-btn:focus-visible{ outline: none; box-shadow: 0 0 0 2px var(--focus-gap), 0 0 0 4px var(--focus-c); }
  /* whatsapp fab */
  .wa-fab{ position: fixed; right: 22px; bottom: 22px; z-index: 250; display: flex; flex-direction: column; align-items: center; gap: 7px; }
  .wa-fab .wa-btn{ width: 56px; height: 56px; border-radius: 50%; background: #25D366; display: grid; place-items: center; box-shadow: 0 6px 22px rgba(12,12,12,0.22); transition: transform 220ms var(--ease-out), box-shadow 220ms var(--ease-out); }
  .wa-fab .wa-btn img{ width: 30px; height: 30px; display: block; }
  .wa-fab:hover .wa-btn{ transform: scale(1.08); box-shadow: 0 10px 30px rgba(12,12,12,0.28); }
  .wa-fab:active .wa-btn{ transform: scale(0.97); }
  .wa-fab .wa-name{ font-size: 12.5px; font-weight: 500; color: var(--tx); background: var(--win); border: 1px solid var(--line); border-radius: 999px; padding: 4px 11px; box-shadow: 0 2px 10px rgba(12,12,12,0.1); }
  .wa-fab:focus-visible{ outline: none; }
  .wa-fab:focus-visible .wa-btn{ box-shadow: 0 0 0 2px var(--focus-gap), 0 0 0 4px var(--focus-c); }
  @media (prefers-reduced-motion: no-preference){
    .wa-fab{ animation: foot-up 700ms var(--ease-glide) 600ms both; }
  }
  @media (prefers-reduced-motion: reduce){
    .g-grid, .g-item, .g-item video, .g-item img, .g-tag, .g-play, .load-wrap, .load-btn{ transition: none; }
    .g-item{ translate: 0 0; opacity: 1; }
  }

  @media (max-width: 900px){
    .nav{ display: none; }
  }
  @media (max-width: 760px){
    .work{ padding: 72px 20px 90px; }
  }

  /* case studies — ink rows */
  .cs{ position: relative; background: var(--sec-ink); padding: clamp(64px, 9vh, 110px) 48px; isolation: isolate; }
  .cs-in{ max-width: 1240px; margin: 0 auto; }
  .cs .sec-kick{ color: #F5F3EF; }
  .cs-head{ display: flex; align-items: flex-end; justify-content: space-between; gap: 24px; margin-bottom: clamp(24px, 4vh, 40px); }
  .cs-head h2{ font-family: 'Clash Display', 'Space Grotesk', sans-serif; font-weight: 500; font-size: clamp(34px, 4.6vw, 54px); letter-spacing: -0.015em; line-height: 1.05; color: #F5F3EF; }
  .cs-head p{ font-size: 15.5px; line-height: 1.55; color: rgba(245,243,239,0.62); max-width: 34ch; text-align: right; text-wrap: pretty; }
  .cs-row{ display: grid; grid-template-columns: 1.12fr 1fr; gap: clamp(28px, 4vw, 64px); align-items: center; padding: clamp(30px, 4.5vh, 48px) 0; border-top: 1px solid rgba(245,243,239,0.14); }
  .cs-row:nth-of-type(even) .cs-media{ order: 2; }
  .cs-media{ position: relative; }
  .cs-panel{ position: relative; border-radius: 14px; overflow: hidden; background: #141312; box-shadow: 0 0 0 1px rgba(245,243,239,0.1); }
  .cs-panel video{ position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
  .cs-panel img{ position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
  .cs-strip, .cs-trip{ display: grid; grid-template-columns: repeat(3, 1fr); gap: 10px; }
  .cs-strip .cs-panel{ aspect-ratio: 9 / 16; }
  .cs-trip .cs-panel{ aspect-ratio: 4 / 5; }
  .cs-duo{ display: grid; grid-template-columns: repeat(2, 1fr); gap: 10px; width: min(100%, 420px); margin: 0 auto; }
  .cs-duo .cs-panel{ aspect-ratio: 9 / 16; }
  .cs-views{ position: absolute; left: 10px; bottom: 10px; z-index: 2; display: inline-flex; align-items: center; gap: 6px; font-size: 11.5px; font-weight: 500; letter-spacing: 0.04em; color: rgba(245,243,239,0.85); background: rgba(12,12,12,0.55); border: 1px solid rgba(245,243,239,0.2); border-radius: 999px; padding: 4px 10px; pointer-events: none; }
  .cs-views svg{ width: 11px; height: 11px; flex: 0 0 auto; }
  .cs-film-w{ position: relative; width: min(100%, 420px); margin: 0 auto; }
  .cs-film{ aspect-ratio: 4 / 5; }
  .cs-inset{ position: absolute; left: -16px; bottom: -16px; z-index: 2; width: 40%; border-radius: 14px; overflow: hidden; background: #141312; box-shadow: 0 18px 44px rgba(0,0,0,0.5), 0 0 0 1px rgba(245,243,239,0.16); }
  .cs-inset-ph{ position: relative; aspect-ratio: 4 / 5; }
  .cs-inset-ph img{ position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
  .cs-inset span{ display: block; padding: 8px 10px; font-size: 11px; font-weight: 500; letter-spacing: 0.08em; text-transform: uppercase; color: rgba(245,243,239,0.7); }
  .cs-tag{ display: inline-flex; align-items: center; gap: 8px; font-size: 12px; font-weight: 500; letter-spacing: 0.1em; text-transform: uppercase; color: var(--bolt); border: 1px solid rgba(255,211,6,0.35); border-radius: 999px; padding: 6px 12px; }
  .cs-body h3{ margin: 14px 0 10px; font-family: 'Clash Display', 'Space Grotesk', sans-serif; font-weight: 500; font-size: clamp(28px, 3.2vw, 48px); letter-spacing: -0.015em; line-height: 1.05; color: #F5F3EF; }
  .cs-out{ font-size: 15.5px; line-height: 1.55; color: rgba(245,243,239,0.72); max-width: 44ch; }
  .cs-chips{ display: flex; flex-wrap: wrap; gap: 8px; margin-top: 16px; }
  .cs-chips span{ font-size: 12.5px; font-weight: 500; color: rgba(245,243,239,0.75); border: 1px solid rgba(245,243,239,0.18); border-radius: 999px; padding: 5px 12px; }
  .cs-cta{ display: inline-flex; align-items: center; gap: 9px; margin-top: 22px; font-size: 15px; font-weight: 500; color: #F5F3EF; }
  .cs-cta:hover{ color: var(--bolt); }
  .cs-cta svg{ transition: transform 220ms var(--ease-out); }
  .cs-cta:hover svg{ transform: translateX(3px); }

  /* what we do — bento grid on ink */
  .wwd{ position: relative; background: var(--sec-ink); padding: clamp(64px, 9vh, 110px) 48px; }
  .wwd-in{ max-width: 1240px; margin: 0 auto; }
  .wwd-head{ display: flex; align-items: flex-end; justify-content: space-between; gap: 32px; margin-bottom: clamp(24px, 4vh, 42px); }
  .wwd-t{ margin: 0; font-family: 'Clash Display', 'Space Grotesk', sans-serif; font-weight: 300; font-size: clamp(44px, 6.5vw, 96px); line-height: 0.9; letter-spacing: 0; text-transform: uppercase; color: #F5F3EF; }
  .wwd-copy{ max-width: 30ch; padding-bottom: 0.4em; font-size: 15px; line-height: 1.5; color: rgba(245,243,239,0.72); text-align: right; }
  .ba-grid{ display: grid; grid-template-columns: repeat(3, 1fr); grid-auto-rows: minmax(190px, auto); gap: 14px; }
  .ba-tile{ position: relative; border-radius: 18px; overflow: hidden; background: #141312; border: 1px solid rgba(245,243,239,0.12); display: flex; flex-direction: column; justify-content: flex-end; min-height: 210px; transition: border-color 220ms var(--ease-out), transform 520ms var(--ease-glide); }
  .ba-tile:hover{ border-color: rgba(245,243,239,0.35); transform: translateY(-6px); }
  .ba-tile video, .ba-tile img{ position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; opacity: 0.55; scale: 1.02; transition: opacity 520ms var(--ease-glide), scale 900ms var(--ease-glide); }
  .ba-tile:hover video{ opacity: 0.85; scale: 1; }
  .ba-tile::after{ content: ""; position: absolute; inset: 0; background: linear-gradient(180deg, transparent 40%, rgba(12,12,12,0.82)); pointer-events: none; }
  .ba-body{ position: relative; z-index: 2; padding: 22px; }
  .ba-num{ font-size: 12px; font-weight: 500; letter-spacing: 0.14em; color: var(--bolt); }
  .ba-tile h3{ margin: 6px 0; font-family: 'Clash Display', 'Space Grotesk', sans-serif; font-weight: 500; font-size: clamp(20px, 2vw, 30px); letter-spacing: -0.01em; color: #F5F3EF; }
  .ba-tile p{ font-size: 14px; line-height: 1.5; color: rgba(245,243,239,0.78); max-width: 46ch; }
  .ba-hero{ grid-column: span 2; grid-row: span 2; }
  .ba-hero h3{ font-size: clamp(28px, 3.2vw, 48px); }
  .ba-hero .ba-body{ padding: 28px; }
  .ba-wide{ grid-column: span 2; }
  .ba-flag{ display: inline-block; font-size: 11.5px; font-weight: 500; letter-spacing: 0.08em; text-transform: uppercase; background: var(--bolt); color: var(--ink); border-radius: 999px; padding: 5px 11px; margin-bottom: 10px; }
  .ba-cta{ justify-content: center; align-items: flex-start; gap: 18px; padding: 24px; background: var(--bolt); border-color: var(--bolt); }
  .ba-cta::after{ display: none; }
  .ba-cta h3{ margin: 0; color: var(--ink); font-size: clamp(20px, 1.9vw, 26px); }
  .ba-cta a{ display: inline-flex; align-items: center; gap: 9px; height: 44px; padding: 0 22px; border-radius: 999px; background: var(--ink); color: #F5F3EF; font-size: 14.5px; font-weight: 500; transition: transform 200ms var(--ease-out), color 200ms var(--ease-out); }
  .ba-cta a:hover{ transform: translateX(4px); color: var(--bolt); }
  /* reveal */
  .wwd .rv, .cs .rv{ opacity: 0; translate: 0 44px; transition: opacity 700ms var(--ease-out), translate 800ms var(--ease-glide); transition-delay: calc(var(--d, 0) * 90ms); }
  .wwd.in .rv, .cs .rv.in{ opacity: 1; translate: 0 0; }
  @media (prefers-reduced-motion: reduce){
    .wwd .rv, .cs .rv, .ba-tile, .ba-tile video{ transition: none; }
    .wwd .rv, .cs .rv{ opacity: 1; translate: 0 0; }
  }
  @media (max-width: 900px){
    .cs{ padding: 64px 20px; }
    .cs-head{ flex-direction: column; align-items: flex-start; gap: 10px; }
    .cs-head p{ text-align: left; }
    .cs-row{ grid-template-columns: 1fr; gap: 20px; align-items: start; }
    .cs-row:nth-of-type(even) .cs-media{ order: 0; }
    .cs-strip, .cs-trip, .cs-duo{ display: flex; overflow-x: auto; scroll-snap-type: x mandatory; scrollbar-width: none; margin: 0 -20px; padding: 0 20px; width: auto; }
    .cs-strip::-webkit-scrollbar, .cs-trip::-webkit-scrollbar, .cs-duo::-webkit-scrollbar{ display: none; }
    .cs-strip .cs-panel{ flex: 0 0 46vw; scroll-snap-align: center; }
    .cs-trip .cs-panel{ flex: 0 0 62vw; scroll-snap-align: center; }
    .cs-duo .cs-panel{ flex: 0 0 56vw; scroll-snap-align: center; }
    .cs-strip .cs-panel.lead{ order: -1; }
    .cs-film-w{ margin: 0; }
    .cs-inset{ left: 12px; bottom: 12px; }
    .wwd{ padding: 64px 20px; }
    .wwd-head{ flex-direction: column; align-items: flex-start; gap: 14px; }
    .wwd-copy{ text-align: left; padding-bottom: 0; }
    .ba-grid{ grid-template-columns: 1fr 1fr; }
    .ba-hero, .ba-wide, .ba-cta{ grid-column: span 2; }
  }
  @media (max-width: 560px){
    .ba-grid{ grid-template-columns: 1fr; }
    .ba-hero, .ba-wide, .ba-cta{ grid-column: auto; }
  }

  /* how we work — expanding step cards */
  .hww{ background: var(--sec-a); min-height: 100svh; display: flex; flex-direction: column; justify-content: center; gap: min(40px, 3.5vh); padding: clamp(36px, 5.5vh, 88px) 48px; }
  .hww-head{ text-align: center; }
  .hww-head h2{ font-family: 'Clash Display', 'Space Grotesk', sans-serif; font-weight: 500; font-size: clamp(34px, min(4.6vw, 7vh), 54px); letter-spacing: -0.015em; line-height: 1.05; color: var(--tx); }
  .hww-head p{ max-width: 56ch; margin: min(14px, 1.6vh) auto 0; font-size: 16px; line-height: 1.55; color: var(--tx-dim); text-wrap: pretty; }
  .hww-pipe{ position: relative; display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; max-width: 1240px; width: 100%; margin: 0 auto; padding-bottom: 68px; }
  /* staggered cascade: each card sits a step lower, the pipeline flows downhill */
  .hww-pipe .step:nth-child(4){ top: 34px; }
  .hww-pipe .step:nth-child(5){ top: 68px; }
  .pipe-line{ position: absolute; inset: 0; width: 100%; height: 100%; pointer-events: none; z-index: 0; overflow: visible; }
  .pipe-line path{ fill: none; stroke: var(--bolt); stroke-width: 3; stroke-linecap: round; }
  .pipe-line .ghost{ stroke: var(--line-mid); stroke-width: 2; stroke-dasharray: 2 7; }
  .pipe-mk{ position: absolute; z-index: 2; opacity: 0; transform: translate(-50%,-50%); pointer-events: none; transition: opacity 200ms var(--ease-out); }
  .pipe-mk.pop > *{ animation: zaifMkPop 340ms var(--ease-out); }
  @keyframes zaifMkPop{ 0%{ transform: scale(0.55); } 60%{ transform: scale(1.18); } 100%{ transform: scale(1); } }
  .mk-play{ display: grid; place-items: center; width: 26px; height: 26px; background: var(--bolt); border-radius: 50%; box-shadow: 0 0 0 2px var(--sec-a), 0 4px 14px rgba(232,164,0,0.5); }
  .mk-play::before{ content: ""; border-style: solid; border-width: 5px 0 5px 8px; border-color: transparent transparent transparent var(--ink); margin-left: 2px; }
  .mk-chip{ display: grid; place-items: center; width: 28px; height: 28px; background: #141312; border-radius: 50%; box-shadow: 0 0 0 2px var(--sec-a), 0 4px 12px rgba(12,12,12,0.35); }
  .mk-chip svg{ width: 14px; height: 14px; color: var(--bolt); }
  .pipe-spark{ position: absolute; width: 6px; height: 6px; border-radius: 2px; background: var(--bolt); transform: translate(-50%,-50%); z-index: 3; pointer-events: none; animation: zaifSparkFly 750ms var(--ease-out) forwards; }
  @keyframes zaifSparkFly{ from{ opacity: 1; } to{ transform: translate(calc(-50% + var(--dx)), calc(-50% + var(--dy))) scale(0.35) rotate(170deg); opacity: 0; } }
  .step{ position: relative; z-index: 1; display: flex; flex-direction: column; background: var(--card); border: 1px solid var(--line-faint); border-radius: 20px; padding: 14px 14px 24px; transition: opacity 500ms var(--ease-glide), transform 500ms var(--ease-glide), box-shadow 500ms var(--ease-glide), background 500ms var(--ease-out); }
  /* inactive state only once the pipeline script is running, so no-JS never hides content */
  .hww-pipe.pipe-ready .step{ opacity: 0; transform: translateY(36px); }
  .hww-pipe.pipe-ready .step.on, .hww-pipe.pipe-ready .step:hover{ opacity: 1; transform: translateY(0); }
  .step.on, .step:hover{ box-shadow: 0 24px 50px rgba(12,12,12,0.10); }
  .step-media{ position: relative; overflow: hidden; border-radius: 14px; aspect-ratio: 16 / 11; background: var(--tile); }
  .step-media img{ position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; transition: transform 700ms var(--ease-glide); }
  .step.on .step-media img, .step:hover .step-media img{ transform: scale(1.04); }
  .step-txt{ padding: 16px 10px 0; }
  .step-kick{ display: inline-flex; align-items: center; font-size: 11px; font-weight: 700; letter-spacing: 0.16em; text-transform: uppercase; color: #C08A00; }
  .step-kick i{ display: inline-flex; width: 20px; height: 20px; border-radius: 50%; border: 1.5px solid #C08A00; color: #C08A00; font-style: normal; align-items: center; justify-content: center; margin-right: 7px; font-size: 11px; transition: background 320ms var(--ease-out), color 320ms var(--ease-out), border-color 320ms var(--ease-out); }
  .step.on .step-kick i{ background: var(--bolt); border-color: var(--bolt); color: var(--ink); }
  .step-top{ display: flex; align-items: center; gap: 10px; margin-top: 9px; }
  .step-top svg{ flex: 0 0 auto; width: 20px; height: 20px; color: var(--tx); }
  .step-top h3{ font-family: 'Clash Display', 'Space Grotesk', sans-serif; font-weight: 500; font-size: 21px; line-height: 1.15; letter-spacing: -0.01em; color: var(--tx); }
  .step-body{ margin-top: 10px; font-size: 15px; line-height: 1.55; color: var(--tx-body); max-width: 46ch; }
  .hww-cta{ display: inline-flex; align-items: center; gap: 10px; align-self: center; height: 48px; padding: 0 26px; border-radius: 999px; border: none; cursor: pointer; font-family: 'Space Grotesk', sans-serif; background: var(--bolt); color: var(--ink); font-size: 15.5px; font-weight: 500; transition: background 220ms var(--ease-out), transform 160ms var(--ease-out), box-shadow 220ms var(--ease-out); }
  .hww-cta:hover{ background: var(--bolt-hover); color: var(--ink); transform: scale(1.03); box-shadow: 0 4px 18px rgba(12,12,12,0.14); }
  .hww-cta:active{ transform: scale(0.98); }
  .hww-cta:focus-visible{ outline: none; box-shadow: 0 0 0 2px var(--focus-gap), 0 0 0 4px var(--focus-c); }
  @media (prefers-reduced-motion: reduce){
    .step, .step-media img, .pipe-mk{ transition: none; }
    .pipe-line, .pipe-mk, .pipe-spark{ display: none; }
  }
  @media (max-width: 900px){
    .hww{ min-height: 0; padding: 64px 20px 76px; }
    .hww-pipe{ grid-template-columns: 1fr; padding-bottom: 0; }
    .hww-pipe .step:nth-child(4), .hww-pipe .step:nth-child(5){ top: 0; }
    .pipe-line, .pipe-mk{ display: none; }
  }

  /* packages — three cards */
  .pkg{ background: var(--sec-b); padding: clamp(64px, 9vh, 110px) 48px; position: relative; isolation: isolate; }
  .pkg-in{ max-width: 1240px; margin: 0 auto; }
  .pkg-head{ display: flex; align-items: flex-end; justify-content: space-between; gap: 24px; margin-bottom: 36px; }
  .pkg-head h2{ font-family: 'Clash Display', 'Space Grotesk', sans-serif; font-weight: 500; font-size: clamp(34px, 4.6vw, 54px); letter-spacing: -0.015em; line-height: 1.05; color: var(--tx); }
  .pkg-head p{ font-size: 15.5px; line-height: 1.55; color: var(--tx-dim); max-width: 36ch; text-align: right; text-wrap: pretty; }
  .pkg-grid{ display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; align-items: stretch; }
  .pkg-card{ position: relative; display: flex; flex-direction: column; background: var(--win); border: 1px solid var(--win-line); border-radius: 20px; padding: 28px 26px 26px; transition: transform 520ms var(--ease-glide), box-shadow 420ms var(--ease-glide); }
  .pkg-card:hover{ transform: translateY(-6px); box-shadow: 0 18px 44px rgba(12,12,12,0.12); }
  .pkg-card.hot{ background: var(--bolt); border-color: var(--bolt); }
  .pkg-flag{ position: absolute; top: -12px; left: 24px; font-size: 11.5px; font-weight: 500; letter-spacing: 0.08em; text-transform: uppercase; background: var(--ink); color: var(--bolt); border-radius: 999px; padding: 6px 12px; }
  .pkg-name{ font-family: 'Clash Display', 'Space Grotesk', sans-serif; font-weight: 500; font-size: 22px; letter-spacing: -0.01em; color: var(--tx); }
  .pkg-card.hot .pkg-name{ color: var(--ink); }
  .pkg-line{ margin-top: 6px; font-size: 14.5px; line-height: 1.5; color: var(--tx-dim); }
  .pkg-card.hot .pkg-line{ color: rgba(12,12,12,0.72); }
  .pkg-ul{ list-style: none; display: flex; flex-direction: column; gap: 9px; margin: 18px 0 22px; padding-top: 16px; border-top: 1px solid var(--line); flex: 1; }
  .pkg-card.hot .pkg-ul{ border-top-color: rgba(12,12,12,0.18); }
  .pkg-ul li{ display: flex; gap: 10px; font-size: 14.5px; line-height: 1.45; color: var(--tx-body); }
  .pkg-card.hot .pkg-ul li{ color: rgba(12,12,12,0.8); }
  .pkg-ul li::before{ content: ""; width: 7px; height: 7px; border-radius: 2px; background: var(--bolt); flex: 0 0 auto; margin-top: 6px; }
  .pkg-card.hot .pkg-ul li::before{ color: rgba(12,12,12,0.45); }
  .pkg-cta{ display: inline-flex; align-items: center; gap: 9px; margin-top: auto; height: 44px; padding: 0 20px; border-radius: 999px; border: 1.5px solid var(--tx); color: var(--tx); font-size: 14.5px; font-weight: 500; width: fit-content; transition: background 220ms var(--ease-out), color 220ms var(--ease-out), transform 160ms var(--ease-out); }
  .pkg-cta:hover{ background: var(--tx); color: var(--bg-page); }
  .pkg-cta:active{ transform: scale(0.98); }
  .pkg-card.hot .pkg-cta{ border-color: var(--ink); color: var(--ink); }
  .pkg-card.hot .pkg-cta:hover{ background: var(--ink); color: var(--bolt); }

  /* founder strip — the one place a visitor reaches a person, so the card is
     deliberately inverted against its section instead of blending into it */
  .fdr{ background: var(--sec-a); padding: clamp(52px, 7.5vh, 92px) 48px; position: relative; isolation: isolate; }
  .fdr::before{ content: ""; position: absolute; left: 50%; top: 50%; z-index: -1; width: min(1120px, 96%); height: min(430px, 98%); translate: -50% -50%; border-radius: 50%; background: radial-gradient(58% 58% at 50% 50%, rgba(255,211,6,0.26), rgba(255,211,6,0) 70%); filter: blur(26px); pointer-events: none; }
  .fdr-in{ position: relative; max-width: 1240px; margin: 0 auto; display: flex; align-items: center; gap: clamp(22px, 3vw, 40px); background: var(--fdr-bg); border: 1px solid var(--fdr-line); border-radius: 24px; padding: clamp(24px, 3vw, 38px); box-shadow: 0 20px 48px var(--fdr-shadow), inset 0 1px 0 rgba(245,243,239,0.08); }
  .fdr-av{ position: relative; flex: 0 0 auto; }
  .fdr-ph{ position: relative; width: 116px; height: 116px; border-radius: 50%; overflow: hidden; background: #1B1917; box-shadow: 0 0 0 1px rgba(245,243,239,0.16); }
  .fdr-ph img{ position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; border-radius: inherit; }
  .fdr-ph .ph-slot{ color: #F5F3EF; }
  .fdr-live{ position: absolute; right: -3px; bottom: -1px; width: 34px; height: 34px; border-radius: 50%; display: grid; place-items: center; background: var(--live); color: #0C0C0C; border: 3px solid var(--fdr-bg); }
  .fdr-live svg{ display: block; }
  .fdr-txt{ flex: 1 1 auto; display: flex; flex-direction: column; align-items: flex-start; gap: 5px; }
  .fdr-role{ font-size: 12.5px; font-weight: 500; letter-spacing: 0.14em; text-transform: uppercase; color: var(--bolt); }
  .fdr-txt b{ font-family: 'Clash Display', 'Space Grotesk', sans-serif; font-weight: 500; font-size: clamp(23px, 2.3vw, 30px); letter-spacing: -0.01em; color: #F5F3EF; }
  .fdr-line{ font-size: 15px; line-height: 1.5; color: rgba(245,243,239,0.74); max-width: 52ch; }
  .fdr-wa{ flex: 0 0 auto; margin-left: auto; display: inline-flex; align-items: center; gap: 9px; height: 48px; padding: 0 24px; border-radius: 999px; background: #F5F3EF; color: var(--ink); font-size: 14.5px; font-weight: 500; transition: background 200ms var(--ease-out), color 200ms var(--ease-out), transform 220ms var(--ease-out), box-shadow 220ms var(--ease-out); }
  .fdr-wa:hover{ background: var(--bolt); color: var(--ink); transform: translateY(-2px); box-shadow: 0 12px 26px rgba(255,211,6,0.26); }
  .fdr-wa .arr{ display: block; transition: transform 220ms var(--ease-out); }
  .fdr-wa:hover .arr{ transform: translateX(3px); }
  @media (prefers-reduced-motion: reduce){ .fdr-wa, .fdr-wa .arr{ transition: none; } }
  @media (max-width: 900px){
    .pkg{ padding: 64px 20px; }
    .pkg-head{ flex-direction: column; align-items: flex-start; gap: 10px; }
    .pkg-head p{ text-align: left; }
    .pkg-grid{ grid-template-columns: 1fr; }
    .fdr{ padding: 32px 20px 48px; }
    .fdr-in{ flex-direction: column; align-items: flex-start; }
    .fdr-wa{ margin-left: 0; margin-top: 6px; }
  }
  @media (prefers-reduced-motion: reduce){ .pkg-card{ transition: none; } }

  /* contact — form left, media right */
  .contact{ background: var(--sec-b); min-height: 100svh; display: flex; align-items: center; padding: clamp(48px, 7vh, 100px) 48px; }
  .c-in{ display: grid; grid-template-columns: 1.02fr 1fr; gap: clamp(40px, 4.5vw, 72px); align-items: stretch; max-width: 1240px; width: 100%; margin: 0 auto; }
  .c-head h2{ font-family: 'Clash Display', 'Space Grotesk', sans-serif; font-weight: 500; font-size: clamp(34px, min(4.6vw, 7vh), 54px); letter-spacing: -0.015em; line-height: 1.05; color: var(--tx); }
  .c-head p{ margin-top: 12px; font-size: 16px; line-height: 1.55; color: var(--tx-dim); max-width: 44ch; text-wrap: pretty; }
  .c-form{ margin-top: min(34px, 3.5vh); display: flex; flex-direction: column; gap: min(20px, 2.2vh); }
  .f-row{ display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
  .fld{ display: flex; flex-direction: column; gap: 7px; min-width: 0; }
  .fld label{ font-size: 13px; font-weight: 500; letter-spacing: 0.02em; color: var(--tx-mid); }
  .fld label em{ font-style: normal; font-weight: 400; color: var(--tx-faint); }
  .fld input, .fld select, .fld textarea{ appearance: none; -webkit-appearance: none; width: 100%; background: transparent; border: none; border-bottom: 1px solid var(--line-mid); border-radius: 0; padding: 9px 2px; font-family: 'Space Grotesk', sans-serif; font-size: 15.5px; color: var(--tx); transition: border-color 220ms var(--ease-out), box-shadow 220ms var(--ease-out); }
  .fld input::placeholder, .fld textarea::placeholder{ color: var(--tx-ph); }
  .fld select{ cursor: pointer; background-image: var(--sel-arrow); background-repeat: no-repeat; background-position: right 2px center; padding-right: 26px; }
  .fld select:invalid{ color: var(--tx-ph); }
  .fld textarea{ resize: vertical; min-height: min(96px, 11vh); line-height: 1.5; }
  .fld input:focus, .fld select:focus, .fld textarea:focus{ outline: none; border-color: var(--tx); box-shadow: 0 1px 0 0 var(--tx); }
  .c-send{ display: inline-flex; align-items: center; justify-content: center; gap: 10px; height: 50px; border-radius: 999px; border: none; background: var(--bolt); color: var(--ink); font-family: 'Space Grotesk', sans-serif; font-size: 15.5px; font-weight: 500; cursor: pointer; transition: background 220ms var(--ease-out), transform 160ms var(--ease-out), box-shadow 220ms var(--ease-out); }
  .c-send:hover{ background: var(--bolt-hover); transform: scale(1.015); box-shadow: 0 4px 18px rgba(12,12,12,0.14); }
  .c-send:active{ transform: scale(0.985); }
  .c-send:focus-visible{ outline: none; box-shadow: 0 0 0 2px var(--focus-gap), 0 0 0 4px var(--focus-c); }
  .c-meta{ margin-top: min(22px, 2.4vh); padding-top: min(20px, 2.2vh); border-top: 1px solid var(--line); display: flex; align-items: center; justify-content: space-between; gap: 16px; flex-wrap: wrap; }
  .c-chans{ display: flex; gap: 8px 18px; flex-wrap: wrap; }
  .chan{ display: inline-flex; align-items: center; gap: 8px; font-size: 14.5px; font-weight: 500; color: var(--tx); }
  .chan .ic{ width: 30px; height: 30px; border-radius: 50%; background: var(--win); border: 1px solid var(--win-line); color: var(--tx-mid); display: grid; place-items: center; transition: background 220ms var(--ease-out), border-color 220ms var(--ease-out), color 220ms var(--ease-out), transform 220ms var(--ease-out); }
  .chan .ic svg{ display: block; }
  .chan:hover .ic{ background: var(--bolt); border-color: var(--bolt); color: var(--ink); transform: translateY(-2px); }
  .c-note{ display: inline-flex; align-items: center; gap: 8px; font-size: 13px; color: var(--tx-dim); }
  .c-note i{ width: 8px; height: 8px; flex: 0 0 auto; border-radius: 50%; background: var(--live); }
  @media (prefers-reduced-motion: no-preference){
    .c-note i{ animation: liveBeat 2.8s var(--ease-out) infinite; }
    @keyframes liveBeat{ 0%{ box-shadow: 0 0 0 0 var(--live-soft); } 62%{ box-shadow: 0 0 0 8px rgba(37,211,102,0); } 100%{ box-shadow: 0 0 0 0 rgba(37,211,102,0); } }
  }
  .c-media{ position: relative; border-radius: 24px; overflow: hidden; min-height: 100%; }
  .c-media img{ position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
  @media (max-width: 900px){
    .contact{ min-height: 0; padding: 64px 20px 76px; }
    .c-in{ grid-template-columns: 1fr; }
    .c-media{ min-height: 340px; order: -1; }
    .f-row{ grid-template-columns: 1fr; }
  }
  /* FAQ — hairline accordion */
  .faq{ background: var(--sec-a); padding: clamp(64px, 10vh, 120px) 48px; }
  .faq-in{ max-width: 1240px; margin: 0 auto; display: grid; grid-template-columns: 0.9fr 1.4fr; gap: clamp(40px, 5vw, 88px); align-items: start; }
  .faq-head h2{ font-family: 'Clash Display', 'Space Grotesk', sans-serif; font-weight: 500; font-size: clamp(34px, 4.6vw, 54px); letter-spacing: -0.015em; line-height: 1.05; color: var(--tx); }
  .faq-head p{ margin-top: 12px; font-size: 16px; line-height: 1.55; color: var(--tx-dim); max-width: 34ch; text-wrap: pretty; }
  .faq-ask{ display: inline-flex; align-items: center; gap: 8px; margin-top: 22px; font-size: 15px; font-weight: 500; color: var(--tx); }
  .faq-ask svg{ transition: transform 220ms var(--ease-out); }
  .faq-ask:hover svg{ transform: translateX(3px); }
  .faq-list{ border-top: 1px solid var(--line-mid); }
  .faq-item{ border-bottom: 1px solid var(--line-mid); }
  .faq-q{ display: flex; align-items: center; justify-content: space-between; gap: 24px; width: 100%; padding: 22px 0; background: transparent; border: none; cursor: pointer; text-align: left; font-family: 'Clash Display', 'Space Grotesk', sans-serif; font-weight: 500; font-size: clamp(18px, 1.6vw, 21px); letter-spacing: -0.01em; line-height: 1.2; color: var(--tx); transition: color var(--dur-base) var(--ease-out); }
  .faq-q:focus-visible{ outline: none; box-shadow: 0 0 0 2px var(--focus-gap), 0 0 0 4px var(--focus-c); border-radius: 8px; }
  .faq-x{ flex: 0 0 auto; width: 30px; height: 30px; border-radius: 50%; border: 1.5px solid var(--tx); color: var(--tx); display: grid; place-items: center; transition: background 300ms var(--ease-out), border-color 300ms var(--ease-out), color 300ms var(--ease-out), transform 560ms var(--ease-glide); }
  .faq-x svg{ display: block; }
  .faq-q:hover .faq-x{ background: var(--blob); }
  .faq-item.open .faq-x{ background: var(--bolt); border-color: var(--bolt); color: var(--ink); transform: rotate(45deg); }
  .faq-a{ display: grid; grid-template-rows: 0fr; opacity: 0; transition: grid-template-rows 560ms var(--ease-glide), opacity 400ms var(--ease-out); }
  .faq-item.open .faq-a{ grid-template-rows: 1fr; opacity: 1; }
  .faq-a > div{ overflow: hidden; }
  .faq-a p{ padding: 0 54px 26px 0; font-size: 15.5px; line-height: 1.6; color: var(--tx-body); max-width: 62ch; }
  @media (prefers-reduced-motion: reduce){ .faq-a, .faq-x{ transition: none; } }
  @media (max-width: 900px){ .faq{ padding: 64px 20px; } .faq-in{ grid-template-columns: 1fr; gap: 36px; } .faq-a p{ padding-right: 0; } }

  /* footer — ink ground in both themes, giant wordmark */
  .foot{ position: relative; background: var(--foot-bg); padding: clamp(64px, 10vh, 120px) 48px 0; overflow: clip; }
  html[data-theme="dark"] .foot{ border-top: 1px solid var(--line); }
  .foot a{ color: rgba(245,243,239,0.62); transition: color var(--dur-base) var(--ease-out); }
  .foot a:hover{ color: #F5F3EF; }
  .foot a:focus-visible, .foot button:focus-visible{ outline: none; box-shadow: 0 0 0 2px #0C0C0C, 0 0 0 4px var(--bolt); border-radius: 6px; }
  .foot-grid{ max-width: 1240px; margin: 0 auto; display: grid; grid-template-columns: 1.5fr 1fr 1fr 1fr; gap: 40px; align-items: start; }
  .foot-bolt{ height: 40px; width: auto; display: block; }
  .foot-tag{ margin: 20px 0 26px; font-family: 'Clash Display', 'Space Grotesk', sans-serif; font-weight: 500; font-size: clamp(24px, 2.2vw, 30px); letter-spacing: -0.015em; line-height: 1.1; color: #F5F3EF; max-width: 14ch; }
  .foot .cta:focus-visible{ box-shadow: 0 0 0 2px #0C0C0C, 0 0 0 4px var(--bolt); }
  .foot-col{ display: flex; flex-direction: column; gap: 13px; }
  .foot-col h4{ font-size: 13px; font-weight: 500; letter-spacing: 0.14em; text-transform: uppercase; color: var(--bolt); margin-bottom: 7px; }
  .foot-col a{ font-size: 15px; width: fit-content; }
  .foot-bar{ max-width: 1240px; margin: clamp(48px, 7vh, 80px) auto 0; padding: 20px 0; border-top: 1px solid rgba(245,243,239,0.14); display: flex; align-items: center; justify-content: space-between; gap: 16px; flex-wrap: wrap; font-size: 13px; color: rgba(245,243,239,0.5); }
  .foot-top{ display: inline-flex; align-items: center; gap: 8px; background: transparent; border: none; cursor: pointer; font-family: 'Space Grotesk', sans-serif; font-size: 13px; font-weight: 500; color: rgba(245,243,239,0.62); transition: color var(--dur-base) var(--ease-out); }
  .foot-top svg{ transition: transform 220ms var(--ease-out); }
  .foot-top:hover{ color: #F5F3EF; }
  .foot-top:hover svg{ transform: translateY(-3px); }
  .foot-mark{ margin: clamp(28px, 4vh, 56px) auto -0.17em; text-align: center; white-space: nowrap; font-family: 'Clash Display', 'Space Grotesk', sans-serif; font-size: clamp(84px, 16.8vw, 330px); line-height: 0.8; letter-spacing: -0.015em; color: #F5F3EF; user-select: none; translate: 0 26%; opacity: 0; transition: translate 900ms var(--ease-glide), opacity 700ms var(--ease-out); }
  .foot-mark.in{ translate: 0 0; opacity: 1; }
  .foot-mark .fm-b{ font-weight: 600; }
  .foot-mark .fm-l{ font-weight: 300; }
  .foot-mark .fm-dot{ color: var(--bolt); font-weight: 600; }
  @media (prefers-reduced-motion: reduce){ .foot-mark{ transition: none; translate: 0 0; opacity: 1; } }
  @media (max-width: 900px){ .foot{ padding: 64px 20px 0; } .foot-grid{ grid-template-columns: 1fr 1fr; } }

  /* dark-mode section gradients — one signature gradient per section, crossfaded via opacity */
  .hero, .work, .wwd, .hww, .contact, .faq, .foot{ isolation: isolate; }
  .work, .hww, .contact, .faq{ position: relative; }
  .hero::before, .work::before, .wwd::before, .hww::before, .contact::before, .faq::before, .foot::before{ content: ""; position: absolute; inset: 0; z-index: -1; pointer-events: none; opacity: 0; transition: opacity 560ms var(--ease-glide); }
  html[data-theme="dark"] :is(.hero, .work, .wwd, .hww, .contact, .faq, .foot)::before{ opacity: 1; }
  /* hero — midnight spotlight: warm bolt glow breaking over the top edge */
  .hero::before{ background: radial-gradient(1100px 540px at 50% -12%, rgba(255,211,6,0.10), transparent 62%), linear-gradient(180deg, #11100D 0%, #0C0C0C 48%, #090909 100%); }
  /* work — charcoal slate: diagonal light-to-dark sweep across the gallery */
  .work::before{ background: linear-gradient(135deg, #1D1B18 0%, #151412 44%, #0E0D0C 100%); }
  /* what we do — stage vignette: spotlight on the tilted card stack */
  .wwd::before{ background: radial-gradient(58% 54% at 50% 45%, #181613 0%, #0B0A09 66%, #050505 100%); }
  /* how we work — graphite rise: vertical climb with an ember floor */
  .hww::before{ background: radial-gradient(900px 380px at 50% 108%, rgba(255,211,6,0.06), transparent 60%), linear-gradient(180deg, #0A0A0A 0%, #12110F 55%, #161310 100%); }
  /* contact — ember corner: yellow warmth pooling behind the media panel */
  .contact::before{ background: radial-gradient(720px 520px at 88% 16%, rgba(255,211,6,0.09), transparent 58%), linear-gradient(115deg, #121110 0%, #171512 56%, #1B1813 100%); }
  /* faq — dawn hairline: faint glow rising from the top-left question column */
  .faq::before{ background: radial-gradient(820px 420px at 12% -6%, rgba(255,211,6,0.07), transparent 60%), linear-gradient(200deg, #121110 0%, #0C0C0C 55%, #0A0A0A 100%); }
  /* footer — under-glow: bolt light rising behind the giant wordmark */
  .foot::before{ background: radial-gradient(1200px 480px at 50% 106%, rgba(255,211,6,0.10), transparent 64%), linear-gradient(180deg, #080808 0%, #050505 100%); }

  /* dark-mode depth tuning */
  /* Alternating section tones alone are too close to read on a dark ground,
     so each section also starts with a hairline. Inset so nothing shifts. */
  html[data-theme="dark"] :is(.work, .cs, .wwd, .hww, .pkg, .fdr, .contact, .faq){
    box-shadow: inset 0 1px 0 rgba(245,243,239,0.09);
  }
  html[data-theme="dark"] .hdr{ box-shadow: 0 1px 2px rgba(0,0,0,0.4); }
  html[data-theme="dark"] .hdr::before{ box-shadow: 0 4px 8px rgba(0,0,0,0.35), 0 18px 44px rgba(0,0,0,0.55); }
  html[data-theme="dark"] .chip{ box-shadow: 0 0 0 2px rgba(255,255,255,0.16); }
  html[data-theme="dark"] .wa-fab .wa-btn{ box-shadow: 0 6px 22px rgba(0,0,0,0.45); }
  html[data-theme="dark"] .cta{ box-shadow: 0 1px 2px rgba(0,0,0,0.3); }
  html[data-theme="dark"] .cta:hover{ box-shadow: 0 4px 18px rgba(0,0,0,0.4); }
  @media (prefers-reduced-motion: reduce){
    .mode svg, .brand .bolt, .brand .bolt-wrap{ transition: none; }
    .hero::before, .work::before, .wwd::before, .hww::before, .contact::before, .faq::before, .foot::before{ transition: none; }
  }
