  :root{
    --cav-yellow:#FBCD10;
    --cav-yellow-deep:#F5B301;
    --cav-black:#0A0A0A;
    --cav-white:#FFFFFF;
    --muted:#b8bac2;
    --soft:#777b86;
    --line:rgba(255,255,255,.14);
    --panel:rgba(8,9,10,.78);
    --max:1180px;
  }
  *{box-sizing:border-box}
  html{background:#000;scroll-behavior:smooth}
  body{
    margin:0;
    background:#000;
    color:var(--cav-white);
    font-family:Inter,system-ui,-apple-system,BlinkMacSystemFont,"Segoe UI",sans-serif;
    overflow-x:hidden;
    -webkit-font-smoothing:antialiased;
  }
  img{display:block;max-width:100%}
  a{color:inherit;text-decoration:none}
  button{font:inherit}
  ::selection{background:var(--cav-yellow);color:#070500}
  .wrap{width:min(var(--max),calc(100% - 44px));margin:0 auto}
  .eyebrow{
    display:inline-flex;
    align-items:center;
    gap:12px;
    color:var(--cav-yellow);
    font-family:"Space Grotesk",Inter,sans-serif;
    font-size:12px;
    font-weight:700;
    letter-spacing:.26em;
    text-transform:uppercase;
  }
  .eyebrow:before{content:"";width:28px;height:1px;background:currentColor}
  h1,h2,h3{
    margin:0;
    font-family:"Space Grotesk",Inter,sans-serif;
    line-height:.98;
    letter-spacing:0;
    text-wrap:balance;
  }
  p{margin:0}
  .btn{
    display:inline-flex;
    align-items:center;
    justify-content:center;
    min-height:56px;
    padding:0 28px;
    border:1px solid rgba(0,0,0,.28);
    border-radius:999px;
    background:var(--cav-yellow);
    color:#0e0a00;
    font-family:"Space Grotesk",Inter,sans-serif;
    font-size:17px;
    font-weight:800;
    box-shadow:0 18px 48px rgba(251,205,16,.18);
    transition:transform .18s ease, background .18s ease;
  }
  .btn:hover{transform:translateY(-2px);background:#ffd633}
  .btn:focus-visible{outline:3px solid #fff;outline-offset:4px}

  .scrolly{
    position:relative;
    height:1200svh;
    background:#000;
  }
  .stage{
    position:sticky;
    top:0;
    height:100svh;
    overflow:hidden;
    isolation:isolate;
    background:#000;
  }
  #scrubCanvas{
    position:absolute;
    inset:0;
    width:100%;
    height:100%;
    display:block;
    z-index:1;
    /* Poster fallback (behind the intro-poster <picture>) is per-story: each page
       sets #scrubCanvas background-image inline so this shared sheet stays story-agnostic. */
    background:#030303 center/cover no-repeat;
  }
  .intro-poster{
    position:absolute;
    inset:0;
    z-index:2;
    opacity:1;
    transition:opacity .12s linear;
    pointer-events:none;
    background:#000;
    will-change:transform,opacity;
  }
  .intro-poster img{
    width:100%;
    height:100%;
    max-width:none;
    object-fit:cover;
    object-position:center center;
  }
  .scrim{
    position:absolute;
    inset:0;
    z-index:3;
    background:
      linear-gradient(90deg,rgba(0,0,0,.9) 0%,rgba(0,0,0,.74) 30%,rgba(0,0,0,.32) 62%,rgba(0,0,0,.08) 100%),
      linear-gradient(180deg,rgba(0,0,0,.22) 0%,rgba(0,0,0,.1) 38%,rgba(0,0,0,.72) 100%);
    opacity:.78;
    pointer-events:none;
  }
  .stage.visual-pause .scrim{
    background:
      radial-gradient(circle at 62% 42%,rgba(0,0,0,.02) 0%,rgba(0,0,0,.12) 38%,rgba(0,0,0,.48) 100%),
      linear-gradient(90deg,rgba(0,0,0,.42) 0%,rgba(0,0,0,.2) 46%,rgba(0,0,0,.08) 100%),
      linear-gradient(180deg,rgba(0,0,0,.1) 0%,rgba(0,0,0,.04) 48%,rgba(0,0,0,.38) 100%);
  }
  /* Film-grain overlay (Tom 2026-06-22) — camouflages frame-upscaling softness + webp
     compression artifacts (eye reads texture as detail). Static, GPU-composited, zero
     per-frame cost. Sits above the image+scrim but below the copy (z<4) so text stays
     crisp. Reverse: ?grain=0 (or remove the .grain-on toggle / this block). */
  .grain{
    position:absolute; inset:0; z-index:3; pointer-events:none;
    opacity:0; mix-blend-mode:overlay;
    background-image:url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='140' height='140'><filter id='n'><feTurbulence type='fractalNoise' baseFrequency='0.82' numOctaves='2' stitchTiles='stitch'/><feColorMatrix type='saturate' values='0'/></filter><rect width='100%25' height='100%25' filter='url(%23n)'/></svg>");
    background-size:140px 140px;
    transition:opacity .4s ease;
  }
  .stage.grain-on .grain{opacity:.17}
  /* Vignette (Tom 2026-07-06) — darkens the soft, upscaled edges of the render and
     pulls the eye to the sharper center subject. Sits with scrim/grain (z:3), below
     copy. Only active alongside grain-on so non-staircase stages are unaffected. */
  .stage.grain-on::after{
    content:""; position:absolute; inset:0; z-index:3; pointer-events:none;
    background:radial-gradient(120% 100% at 60% 42%,rgba(0,0,0,0) 46%,rgba(0,0,0,.20) 74%,rgba(0,0,0,.46) 100%);
  }
  .stage.intro-active .frame-status{opacity:0}
  .brand-row{
    position:absolute;
    z-index:5;
    inset:24px 28px auto;
    display:flex;
    align-items:center;
    justify-content:space-between;
    gap:20px;
    pointer-events:none;
  }
  .brand-row img{width:178px;height:auto}
  .brand-row .btn{min-height:48px;padding:0 22px;font-size:15px;pointer-events:auto}
  .frame-status{
    position:absolute;
    z-index:5;
    right:28px;
    bottom:24px;
    display:flex;
    align-items:center;
    gap:12px;
    color:rgba(255,255,255,.76);
    font-family:"Space Grotesk",Inter,sans-serif;
    font-size:12px;
    font-weight:700;
    letter-spacing:.16em;
    text-transform:uppercase;
  }
  .frame-status span:first-child{
    width:9px;
    height:9px;
    border-radius:50%;
    background:var(--cav-yellow);
    box-shadow:0 0 0 9px rgba(251,205,16,.13);
  }
  .copy-layer{
    position:absolute;
    inset:0;
    z-index:4;
    pointer-events:none;
  }
  .copy-block{
    position:absolute;
    left:clamp(22px,7vw,94px);
    bottom:clamp(74px,12vh,136px);
    width:min(610px,calc(100vw - 44px));
    padding:clamp(18px,1.9vw,26px);
    border:1px solid rgba(255,255,255,.16);
    border-radius:8px;
    background:
      linear-gradient(135deg,rgba(255,255,255,.06),rgba(255,255,255,.014)),
      rgba(4,5,7,.84);
    box-shadow:0 22px 64px rgba(0,0,0,.28);
    /* no-blur (Tom 2026-06-22): blur removed, bg solidified .5->.84 for legibility */
    opacity:0;
    visibility:hidden;
    transform:translateY(28px);
    transition:opacity .25s ease, transform .25s ease, visibility 0s linear .25s;
    pointer-events:none;
  }
  .copy-block:before{
    content:"";
    position:absolute;
    width:34px;
    height:34px;
    left:-1px;
    top:-1px;
    border-left:2px solid var(--cav-yellow);
    border-top:2px solid var(--cav-yellow);
    opacity:.86;
  }
  .copy-block:after{
    content:"";
    position:absolute;
    width:34px;
    height:34px;
    right:-1px;
    bottom:-1px;
    border-right:2px solid rgba(251,205,16,.65);
    border-bottom:2px solid rgba(251,205,16,.65);
    opacity:.72;
  }
  .copy-block.active{
    opacity:1;
    visibility:visible;
    transform:translateY(0);
    transition-delay:0s;
    pointer-events:auto;
  }
  .copy-block.center{left:50%;bottom:50%;transform:translate(-50%,calc(50% + 28px));text-align:center}
  .copy-block.center.active{transform:translate(-50%,50%)}
  .copy-block.visual-pause,
  .copy-block.visual-pause.active{
    opacity:0;
    visibility:hidden;
    pointer-events:none;
  }
  .copy-block.right{left:auto;right:clamp(22px,7vw,94px)}
  .copy-block h1{font-size:clamp(42px,5.8vw,82px);max-width:850px}
  .copy-block h2{font-size:clamp(32px,3.75vw,54px);max-width:760px}
  .copy-block p{
    margin-top:18px;
    max-width:700px;
    color:#d7d8dd;
    font-size:clamp(16px,1.45vw,20px);
    line-height:1.45;
  }
  .copy-block.center p{margin-left:auto;margin-right:auto}
  .copy-block.hero-block{
    top:50%;
    bottom:auto;
    left:auto;
    right:clamp(38px,6vw,104px);
    width:min(676px,calc(100vw - 88px));
    max-height:calc(100svh - 150px);
    overflow:hidden;
    transform:translateY(calc(-50% + 28px));
    padding:clamp(22px,2.3vw,32px);
    border:1px solid rgba(255,255,255,.17);
    /* 30% wider card + lower bg opacity for a clearer look (Tom 2026-07-06) */
    background:
      linear-gradient(135deg,rgba(255,255,255,.06),rgba(255,255,255,.015)),
      rgba(4,5,7,.62);
    box-shadow:0 22px 70px rgba(0,0,0,.24);
  }
  .copy-block.hero-block.active{transform:translateY(-50%)}
  /* Hero pops in 2s after load (Tom 2026-06-18 13:20): springy entrance. */
  .copy-block.hero-block{transition:opacity .55s ease, transform .55s cubic-bezier(.18,.9,.24,1.18), visibility 0s linear .55s}
  .copy-block.hero-block.active{transition-delay:0s}
  .copy-block.hero-block:before,
  .copy-block.hero-block:after{display:block}
  .copy-block.hero-block h1{font-size:clamp(40px,3.7vw,60px)}
  .copy-block.hero-block p{font-size:clamp(17px,1.4vw,20px);max-width:640px}
  .copy-block.hero-block h1,
  .copy-block.hero-block p,
  .copy-block.hero-block .eyebrow,
  .copy-block.hero-block .microcopy{text-shadow:0 3px 18px rgba(0,0,0,.82)}
  .copy-block.hero-block .hud-grid,
  .copy-block.hero-block .proof-line{display:none}
  .copy-block.beat-50{width:min(620px,calc(100vw - 44px));bottom:clamp(70px,10vh,112px)}
  .copy-block.beat-200{width:min(610px,calc(100vw - 44px));bottom:clamp(78px,11vh,120px)}
  .copy-block.beat-300{width:min(600px,calc(100vw - 44px));left:clamp(26px,5.8vw,82px)}
  .copy-block.beat-400{
    width:min(620px,calc(100vw - 44px));
    padding:clamp(18px,1.9vw,26px);
  }
  .copy-block.beat-400 h2{font-size:clamp(32px,3.55vw,52px)}
  .copy-block.beat-400 .hud-grid{display:none}
  .copy-block.beat-turn{
    width:min(575px,calc(100vw - 44px));
    left:clamp(28px,5vw,78px);
  }
  .copy-block.beat-turn .flow-steps{display:none}
  .copy-block.beat-relief{
    left:clamp(30px,5vw,78px);
    right:auto;
    width:min(535px,calc(100vw - 44px));
  }
  .copy-block.beat-relief .hud-grid{display:none}
  .copy-block.beat-mainframe{
    left:auto;
    right:clamp(34px,5vw,84px);
    width:min(560px,calc(100vw - 44px));
  }
  .copy-block.beat-mainframe h2{font-size:clamp(32px,3.25vw,50px)}
  .copy-block.beat-payoff{
    left:clamp(34px,6vw,84px);
    right:auto;
    bottom:clamp(86px,12vh,128px);
    width:min(560px,calc(100vw - 44px));
    text-align:left;
  }
  .copy-block.center.beat-payoff,
  .copy-block.center.beat-payoff.active{transform:translateY(0)}
  .copy-actions{
    display:flex;
    align-items:center;
    gap:18px;
    flex-wrap:wrap;
    margin-top:22px;
    pointer-events:auto;
  }
  .microcopy{color:#c7c8ce;font-size:14px;font-weight:700}
  .cast-line{
    margin-top:16px;
    color:#ededf0;
    font-size:14px;
    font-weight:800;
    line-height:1.45;
  }
  .cast-line strong{color:var(--cav-yellow)}
  .proof-line{
    display:flex;
    align-items:center;
    gap:10px;
    margin-top:22px;
    color:#e5e5e8;
    font-size:14px;
    font-weight:800;
  }
  .proof-line:before{content:"";width:10px;height:10px;border-radius:50%;background:var(--cav-yellow)}
  .hud-grid{
    display:grid;
    grid-template-columns:repeat(3,minmax(0,1fr));
    gap:10px;
    margin-top:18px;
  }
  .hud-square{
    min-height:86px;
    border:1px solid rgba(255,255,255,.14);
    border-radius:8px;
    background:rgba(0,0,0,.34);
    padding:13px;
    display:flex;
    flex-direction:column;
    justify-content:space-between;
  }
  .hud-square b{
    display:block;
    color:var(--cav-yellow);
    font-family:"Space Grotesk",Inter,sans-serif;
    font-size:22px;
    line-height:1;
  }
  .hud-square span{
    display:block;
    color:#d8d9dd;
    font-size:12px;
    font-weight:800;
    line-height:1.25;
  }
  .door-stack{
    display:flex;
    align-items:center;
    gap:6px;
    margin-top:18px;
  }
  .door-stack i{
    width:28px;
    height:38px;
    border:1px solid rgba(251,205,16,.62);
    border-radius:4px 4px 2px 2px;
    background:linear-gradient(180deg,rgba(251,205,16,.32),rgba(251,205,16,.08));
    box-shadow:0 0 18px rgba(251,205,16,.12);
  }
  .door-stack i:nth-child(2){opacity:.8;transform:translateY(4px)}
  .door-stack i:nth-child(3){opacity:.64;transform:translateY(8px)}
  .door-stack i:nth-child(4){opacity:.48;transform:translateY(12px)}
  .flow-steps{
    display:grid;
    grid-template-columns:repeat(3,minmax(0,1fr));
    gap:10px;
    margin-top:18px;
  }
  .flow-step{
    border:1px solid rgba(251,205,16,.25);
    border-radius:8px;
    background:rgba(251,205,16,.08);
    padding:12px;
    color:#ece4c6;
    font-size:12px;
    font-weight:800;
    line-height:1.25;
  }
  .flow-step strong{display:block;color:var(--cav-yellow);font-family:"Space Grotesk",Inter,sans-serif;font-size:18px;margin-bottom:6px}
  .proof-cluster{
    display:grid;
    grid-template-columns:repeat(3,minmax(0,1fr));
    gap:12px;
    margin-top:26px;
    max-width:720px;
  }
  .proof-chip{
    border:1px solid rgba(251,205,16,.24);
    border-radius:8px;
    background:rgba(0,0,0,.44);
    padding:14px 16px;
    color:#dedfe4;
    font-size:13px;
    line-height:1.35;
  }
  .proof-chip b{display:block;color:var(--cav-yellow);font-size:20px;line-height:1.1}
  .guarantee-lockup{
    display:flex;
    align-items:center;
    gap:16px;
    width:100%;
    margin-top:22px;
    padding:14px 16px;
    border:1px solid rgba(251,205,16,.34);
    border-radius:8px;
    background:
      radial-gradient(circle at 20% 50%,rgba(251,205,16,.12),transparent 34%),
      rgba(0,0,0,.36);
    box-shadow:0 18px 58px rgba(0,0,0,.22);
  }
  .guarantee-seal{
    width:84px;
    height:84px;
    flex:0 0 84px;
    filter:drop-shadow(0 0 24px rgba(251,205,16,.22));
  }
  .guarantee-seal .fill{fill:rgba(251,205,16,.08)}
  .guarantee-seal path,
  .guarantee-seal polyline{
    fill:none;
    stroke:var(--cav-yellow);
    stroke-width:3.2;
    stroke-linecap:round;
    stroke-linejoin:round;
  }
  .guarantee-seal .inner{opacity:.46}
  .guarantee-copy strong{
    display:block;
    color:var(--cav-yellow);
    font-family:"Space Grotesk",Inter,sans-serif;
    font-size:24px;
    line-height:1;
    margin-bottom:8px;
  }
  .guarantee-copy span{
    display:block;
    color:#e8e8ec;
    font-size:14px;
    font-weight:800;
    line-height:1.35;
  }

  .sticky-cta{
    position:fixed;
    left:50%;
    bottom:calc(16px + env(safe-area-inset-bottom));
    z-index:20;
    transform:translate(-50%,120%);
    opacity:0;
    transition:transform .25s ease,opacity .25s ease;
    width:min(640px,calc(100vw - 32px));
    min-height:64px;
    border:1px solid rgba(251,205,16,.42);
    border-radius:999px;
    background:#030303;
    box-shadow:0 16px 70px rgba(0,0,0,.6);
    display:flex;
    align-items:center;
    justify-content:space-between;
    gap:18px;
    padding:8px 10px 8px 24px;
  }
  .sticky-cta.show{transform:translate(-50%,0);opacity:1}
  .sticky-cta > span:first-child{font-weight:800;color:#eee;font-size:15px}
  .sticky-cta .btn{
    min-height:50px;
    min-width:230px;
    padding:0 34px;
    color:#0e0a00;
    font-size:17px;
    box-shadow:inset 0 -3px 0 rgba(0,0,0,.16),0 12px 34px rgba(251,205,16,.24);
  }
  .scroll-cue{
    position:absolute;
    left:50%;
    bottom:calc(22px + env(safe-area-inset-bottom));
    z-index:6;
    width:auto;
    height:48px;
    padding:0 14px 0 18px;
    border:1px solid rgba(251,205,16,.44);
    border-radius:999px;
    background:rgba(0,0,0,.52);
    box-shadow:0 18px 54px rgba(0,0,0,.36),0 0 28px rgba(251,205,16,.12);
    display:inline-flex;
    align-items:center;
    gap:8px;
    transform:translate(-50%,0);
    opacity:1;
    transition:opacity .18s ease,transform .18s ease,visibility .18s ease;
    pointer-events:none;
  }
  .scroll-cue:before{
    content:"";
    position:absolute;
    inset:9px;
    border-radius:inherit;
    border:1px solid rgba(255,255,255,.08);
  }
  .scroll-cue span{
    color:#f5f0e4;
    font-size:11px;
    font-weight:900;
    letter-spacing:2px;
    text-transform:uppercase;
    white-space:nowrap;
  }
  .scroll-cue svg{
    width:20px;
    height:20px;
    color:var(--cav-yellow);
    filter:drop-shadow(0 0 10px rgba(251,205,16,.28));
    animation:cueBounce 1.35s ease-in-out infinite;
  }
  .scroll-cue.hide{
    opacity:0;
    visibility:hidden;
    transform:translate(-50%,12px);
  }
  @keyframes cueBounce{
    0%,100%{transform:translateY(-4px)}
    50%{transform:translateY(5px)}
  }

  .section{
    padding:104px 0;
    background:#050505;
    border-top:1px solid var(--line);
  }
  .section.light{background:#f3f0e7;color:#111;border-top-color:rgba(0,0,0,.1)}
  .section-head{
    display:grid;
    grid-template-columns:minmax(0,1fr) minmax(300px,440px);
    gap:52px;
    align-items:end;
    margin-bottom:42px;
  }
  .section-head h2{font-size:clamp(36px,5vw,60px);margin-top:18px}
  .section-head p{color:var(--muted);font-size:18px;line-height:1.55}
  .light .section-head p,.light p{color:#5b5c63}
  .light .eyebrow{color:#a27600}
  .proof-grid,.offer-grid,.how-grid,.roi-grid,.size-grid{
    display:grid;
    gap:16px;
  }
  .proof-grid{grid-template-columns:1.1fr .9fr .9fr}
  .offer-grid{grid-template-columns:1fr 1fr}
  .how-grid{grid-template-columns:repeat(3,1fr)}
  .roi-grid{grid-template-columns:1fr 1fr}
  .size-grid{grid-template-columns:repeat(4,1fr)}
  .card{
    border:1px solid rgba(255,255,255,.12);
    border-radius:8px;
    background:rgba(255,255,255,.04);
    padding:26px;
  }
  .light .card{background:#fff;border-color:rgba(0,0,0,.1);box-shadow:0 18px 54px rgba(24,20,10,.06)}
  .card h3{font-size:26px;margin-bottom:12px}
  .card p{color:var(--muted);line-height:1.58}
  .card .num{display:block;color:var(--cav-yellow);font-family:"Space Grotesk",Inter,sans-serif;font-size:36px;font-weight:800;margin-bottom:8px}
  .light .card .num{color:#b98600}
  .logos{
    display:flex;
    flex-wrap:wrap;
    gap:10px;
    margin-top:18px;
  }
  .logo-pill{
    border:1px solid rgba(255,255,255,.13);
    border-radius:999px;
    padding:9px 12px;
    color:#d9d9dd;
    font-size:13px;
    font-weight:800;
  }
  .light .logo-pill{border-color:rgba(0,0,0,.12);color:#2d2d2d}
  .cloud-cta{
    text-align:center;
    background:
      radial-gradient(circle at 50% 0%,rgba(251,205,16,.16),transparent 40%),
      #000;
  }
  .cloud-cta h2{font-size:clamp(42px,6vw,78px);max-width:940px;margin:0 auto}
  .cloud-cta p{color:#c8c8ce;font-size:18px;margin:22px auto 0;max-width:700px}
  .cloud-cta .btn{margin-top:30px}
  .footer{
    padding:34px 0;
    background:#000;
    border-top:1px solid var(--line);
    color:var(--soft);
    font-size:14px;
  }
  .footer .wrap{display:flex;align-items:center;justify-content:space-between;gap:20px}
  .footer img{width:154px}

  /* Calendly inline embed — needs an explicit HEIGHT (not just min-height) so the
     injected iframe's height:100% resolves; otherwise it collapses to ~150px. */
  .cal-wrap{
    width:100%;max-width:493px;margin:clamp(28px,4vh,48px) auto 0;
    height:730px;
    border-radius:18px;overflow:hidden;
    background:#0b0b0c;border:1px solid rgba(255,255,255,.07);
    box-shadow:0 32px 80px -20px rgba(0,0,0,.55);
  }
  /* Same inversion trick as .cta-cal — see ONE-42912 note near .site-cta .cta-cal. */
  .cal-wrap iframe{display:block;width:100%;height:100%;border:0;filter:invert(.94) hue-rotate(180deg);}
  /* Desktop: render the widget at its full 560x830 layout (so nothing clips/scrolls)
     then scale the whole card down ~12% so it reads smaller. Mobile keeps full-bleed. */
  @media (min-width:821px){
    .cal-wrap iframe{
      width:560px;height:830px;
      transform:scale(.88);transform-origin:top left;
    }
  }

  /* Tablet / mobile: go near-full-bleed for more calendar room + taller for the
     single-column scheduler layout. Negative margin stays within .wrap padding. */
  /* Mobile: render the scheduler at a roomy logical size, then SCALE THE WHOLE THING
     DOWN (uniform) so the full block is visible at once — smaller, not cropped. Same
     trick the desktop card uses. width = 100%/scale so it still fills the column after
     scaling; container height = logical height * scale so there's no gap/cutoff. (Tom 2026-06-22) */
  @media (max-width:820px){
    .cal-wrap{
      width:calc(100% + 36px);max-width:none;margin-left:-18px;margin-right:-18px;
      height:780px;border-radius:14px;
    }
    .cal-wrap iframe{
      width:125%;height:900px;
      transform:scale(.8);transform-origin:top left;
    }
  }
  @media (max-width:480px){
    .cal-wrap{ height:638px; }
    .cal-wrap iframe{ width:133.33%;height:850px;transform:scale(.75);transform-origin:top left; }
  }

  @media (max-width:820px){
    /* Footer lives OUTSIDE #hiw, so its mobile rule must be in this GLOBAL sheet, not the
       @scope(#hiw) block (Tom 2026-06-19). Stack the logo above the line vs a cramped row. */
    .footer .wrap{flex-direction:column;text-align:center;gap:14px}
    .footer img{width:118px}
    .stage{height:100dvh}
    .intro-poster img{object-position:center top}
    .brand-row{inset:18px 20px auto}
    .brand-row img{width:154px}
    .brand-row .btn{display:none}
    .frame-status{display:none}
    .sticky-cta{display:none}
    .scroll-cue{height:36px;padding:0 11px 0 13px;bottom:calc(8px + env(safe-area-inset-bottom));gap:6px}
    .scroll-cue span{font-size:9px;letter-spacing:1.4px}
    .scroll-cue svg{width:16px;height:16px}
    .scroll-cue:before{inset:6px}
    .copy-block{
      bottom:0;
      padding:14px 16px 22px;
      background:
        linear-gradient(135deg,rgba(255,255,255,.042),rgba(255,255,255,.008)),
        rgba(4,5,7,.82);
      /* Scroll-through model (Tom 2026-06-18 12:43): no max-height clip,
         every block is fully readable. JS drives translateY so the block
         enters from below, rests, then scrolls up out of the viewport top
         while the staircase keeps moving. */
      border-radius:16px 16px 0 0;
      border-bottom:none;
      transition:opacity .08s linear, visibility 0s linear .08s;
      will-change:transform,opacity;
    }
    .copy-block.active{transition-delay:0s}
    /* When JS-driven scroll-through is active, CSS transforms must not fight it. */
    .copy-block.mob-scroll-through,
    .copy-block.mob-scroll-through.active{transform:none}
    .copy-block.hero-block{
      top:auto;
      bottom:clamp(42px,7vh,64px);
      left:20px;
      right:auto;
      width:calc(100vw - 40px);
      max-height:none;
      transform:translateY(28px);
      padding:18px;
    }
    .copy-block.hero-block.active{transform:translateY(0)}
    .copy-block h1{font-size:40px;max-width:620px}
    .copy-block h2{font-size:30px;max-width:620px}
    .copy-block p{font-size:15px;line-height:1.38;margin-top:12px}
    .copy-block .eyebrow{font-size:11px;letter-spacing:.25em}
    .copy-actions{margin-top:16px;gap:12px}
    .microcopy{font-size:12px}
    .proof-line,
    .hud-grid,
    .flow-steps,
    .proof-cluster,
    .door-stack{display:none}
    .hud-square{min-height:74px}
    .copy-block.beat-50,
    .copy-block.beat-200,
    .copy-block.beat-300,
    .copy-block.beat-turn,
    .copy-block.beat-relief,
    .copy-block.beat-mainframe,
    .copy-block.beat-payoff{
      left:0;right:0;bottom:0;
      width:100vw;
      border-radius:16px 16px 0 0;
      border-left:none;border-right:none;border-bottom:none;
    }
    .copy-block.beat-mainframe h2,
    .copy-block.beat-payoff h2{font-size:25px}
    .copy-block.beat-400 h2{font-size:26px}
    .copy-block h2{font-size:23px !important}
    .copy-block p{font-size:13px;margin-top:7px}
    .copy-block.beat-relief{bottom:0}
    .copy-block.beat-relief .copy-actions{align-items:flex-start}
    .guarantee-lockup{gap:12px;padding:12px}
    .guarantee-seal{width:66px;height:66px;flex-basis:66px}
    .guarantee-copy strong{font-size:20px}
    .guarantee-copy span{font-size:13px}
    .section{padding:78px 0}
    .section-head,.proof-grid,.offer-grid,.how-grid,.roi-grid,.size-grid{grid-template-columns:1fr}
  }

  @media (max-width:480px){
    .wrap{width:min(100% - 34px,var(--max))}
    .brand-row img{width:142px}
    .copy-block{width:calc(100vw - 34px);left:17px;bottom:44px}
    .copy-block.hero-block{width:calc(100vw - 34px);left:17px;top:auto;bottom:42px}
    .copy-block.right{right:17px}
    .copy-block.center{width:100vw;left:0;right:0;bottom:0 !important;transform:none !important;border-radius:16px 16px 0 0;border-left:none;border-right:none;border-bottom:none;text-align:left}
    .copy-block.center.active{transform:none !important}
    .copy-block.center.beat-testimonial .bt-by{justify-content:flex-start}
    .bt-quote{font-size:clamp(17px,4.8vw,22px)}
    .copy-block.beat-testimonial .ov-eyebrow{justify-content:flex-start}
    .copy-block h1{font-size:33px}
    .copy-block h2{font-size:28px}
    .copy-block p{font-size:14px}
    .copy-actions .btn{width:100%}
    .copy-block.hero-block .copy-actions .btn{width:auto;min-height:50px}
    .copy-block.hero-block .copy-actions{gap:12px}
    .microcopy{font-size:12px}
  }

  /* ===== HIW overlay micro-components (live over the staircase video) ===== */
  .ov-eyebrow{display:inline-flex;align-items:center;gap:8px;font-family:"Space Grotesk",Inter,sans-serif;font-size:11px;font-weight:800;letter-spacing:.22em;text-transform:uppercase;color:var(--cav-yellow);margin-bottom:10px}
  /* Tom 2026-06-22: TITLE + eyebrow stay visible (no entrance animation).
     Only the inner content blocks pop up — see .seq-in below. */
  .ov-eyebrow .tick{width:8px;height:8px;border-radius:50%;background:var(--cav-yellow);box-shadow:0 0 0 6px rgba(251,205,16,.14)}
  /* Mini 2AM-reality timeline */
  .ov-timeline{display:grid;grid-template-columns:auto 1fr;gap:16px 16px;margin-top:18px}
  .ov-timeline .clk{align-self:start;display:inline-flex;align-items:center;justify-content:center;min-width:78px;padding:7px 13px;border-radius:999px;background:var(--cav-yellow);color:#191305;font-family:"Space Grotesk",Inter,sans-serif;font-weight:800;font-size:12px;letter-spacing:.14em;text-transform:uppercase;box-shadow:0 8px 20px -8px rgba(251,205,16,.65)}
  .ov-timeline .ct{color:#fff;font-size:15px;line-height:1.4;font-weight:700;padding-left:16px;border-left:2px solid rgba(251,205,16,.4)}
  .ov-timeline .ct small{display:block;color:#a9aab2;font-weight:500;font-size:12.5px;margin-top:5px;line-height:1.38}
  /* Mini diverge split */
  .ov-split{display:grid;grid-template-columns:1fr auto 1fr;gap:10px;align-items:center;margin-top:18px}
  .ov-split .col{border-radius:8px;padding:12px 14px;border:1px solid rgba(255,255,255,.12);background:rgba(0,0,0,.36)}
  .ov-split .col .k{display:flex;align-items:center;gap:8px;font-size:11px;font-weight:800;letter-spacing:.16em;text-transform:uppercase;color:#cfd0d6}
  .ov-split .col .k .dot{width:8px;height:8px;border-radius:50%}
  .ov-split .col .v{font-family:"Space Grotesk",Inter,sans-serif;font-weight:800;color:var(--cav-yellow);font-size:26px;line-height:1.1;margin-top:6px}
  .ov-split .col.bad .v{color:#ff7a73}
  .ov-split .col.bad .k .dot{background:#d9554d}
  .ov-split .col.good .k .dot{background:var(--cav-yellow)}
  .ov-split .col .lab{margin-top:4px;color:#b6b7bd;font-size:12px;font-weight:700;line-height:1.3}
  .ov-split .vs{color:#9a9ba2;font-size:12px;font-weight:900;letter-spacing:.2em}
  /* Mini live dispatch ticker */
  .ov-disp{margin-top:16px;border:1px solid rgba(255,255,255,.14);border-radius:8px;background:rgba(0,0,0,.4);padding:14px}
  .ov-disp-head{display:flex;align-items:center;justify-content:space-between;gap:10px;padding-bottom:10px;margin-bottom:10px;border-bottom:1px dashed rgba(255,255,255,.12)}
  .ov-disp-clock{font-family:"Space Grotesk",Inter,sans-serif;font-weight:800;color:#fff;font-size:18px;letter-spacing:.08em}
  .ov-disp-clock .am{font-size:11px;color:#cfd0d6;margin-left:6px}
  .ov-live{display:inline-flex;align-items:center;gap:7px;font-size:10px;font-weight:900;letter-spacing:.22em;text-transform:uppercase;color:#fff}
  .ov-live .pulse{width:8px;height:8px;border-radius:50%;background:#34c46a;box-shadow:0 0 0 0 rgba(52,196,106,.6);animation:ovPulse 1.6s ease-out infinite}
  @keyframes ovPulse{0%{box-shadow:0 0 0 0 rgba(52,196,106,.55)}80%{box-shadow:0 0 0 10px rgba(52,196,106,0)}100%{box-shadow:0 0 0 0 rgba(52,196,106,0)}}
  .ov-disp-steps{display:grid;gap:8px;font-size:12px}
  .ov-disp-steps .s{display:grid;grid-template-columns:54px 1fr;gap:10px;align-items:baseline}
  .ov-disp-steps .t{font-family:"Space Grotesk",Inter,sans-serif;font-weight:800;color:var(--cav-yellow);font-size:12px;letter-spacing:.04em}
  .ov-disp-steps .l{color:#e3e4e8;font-weight:700;line-height:1.3}
  /* Mini value-card grid */
  .ov-vgrid{display:grid;grid-template-columns:repeat(2,minmax(0,1fr));gap:8px;margin-top:16px}
  .ov-vc{border:1px solid rgba(255,255,255,.13);border-radius:8px;background:rgba(0,0,0,.36);padding:10px 12px}
  .ov-vc .n{display:block;font-family:"Space Grotesk",Inter,sans-serif;color:var(--cav-yellow);font-size:11px;font-weight:800;letter-spacing:.16em}
  .ov-vc .t{display:block;color:#fff;font-size:13px;font-weight:800;line-height:1.25;margin-top:3px}
  .ov-vc .d{display:block;color:#cfd0d6;font-size:11px;font-weight:600;line-height:1.35;margin-top:4px}
  /* Mini guarantee seal lockup w/ quote */
  .ov-quote{margin-top:14px;color:#e8e8ec;font-size:13px;font-weight:600;line-height:1.4;font-style:italic;border-left:2px solid var(--cav-yellow);padding-left:12px}
  .ov-quote .a{display:block;margin-top:6px;font-style:normal;color:#cfd0d6;font-size:12px;font-weight:800}
  .ov-quote .au{color:var(--cav-yellow);font-style:normal;font-weight:800}
  /* Side claim: video teaser (beat-relief) */
  .ov-quote.ov-videolink{display:flex;align-items:flex-start;gap:10px;font-style:normal;text-decoration:none;color:#e8e8ec;font-size:13px;font-weight:700}
  .ov-quote.ov-videolink:hover .au{text-decoration:underline}
  .ov-quote.ov-videolink .pv{flex:none;width:26px;height:26px;border-radius:7px;background:#e8281f;color:#fff;display:grid;place-items:center;font-size:10px;margin-top:1px}
  .ov-quote.ov-videolink .au{color:var(--cav-yellow);font-weight:800}
  .ov-quote.ov-videolink .a{display:block;margin-top:3px;color:#cfd0d6;font-size:12px;font-weight:800}
  /* Full-focus testimonial beat (scrollytelling) */
  .copy-block.beat-testimonial{width:min(760px,calc(100vw - 44px));text-align:center;background:linear-gradient(135deg,rgba(251,205,16,.085),rgba(255,255,255,.015)),rgba(4,5,7,.88)}
  .bt-quote{position:relative;font-family:"Space Grotesk",Inter,sans-serif;font-weight:500;font-style:normal;font-size:clamp(23px,3.1vw,40px);line-height:1.2;letter-spacing:-.015em;color:#fff;margin:8px 0 0}
  .bt-quote .mark{color:var(--cav-yellow);font-size:1.25em;line-height:0;margin-right:.04em;opacity:.5}
  .bt-quote .au{color:var(--cav-yellow)}
  .bt-by{margin-top:22px;display:inline-flex;align-items:center;gap:13px;justify-content:center;flex-wrap:wrap}
  .bt-av{width:48px;height:48px;border-radius:50%;background:linear-gradient(135deg,#FBCD10,#caa400);color:#1c1916;display:grid;place-items:center;font-family:"Space Grotesk",sans-serif;font-weight:800;font-size:16px}
  .bt-nm{text-align:left}
  .bt-nm b{display:block;color:#fff;font-weight:700;font-size:15px}
  .bt-nm span{color:#cdced4;font-size:13px}
  .bt-stars{color:var(--cav-yellow);letter-spacing:2px;font-size:15px}
  /* ===== Client proof wall (Option A dedicated testimonials section) ===== */
  .proofwall{background:#0a0b0d;border-top:1px solid var(--line);padding:clamp(64px,9vh,110px) 0;position:relative}
  .proofwall .wrap{width:min(var(--max),calc(100% - 44px));margin:0 auto}
  .proofwall .pw-head{text-align:center;max-width:780px;margin:0 auto clamp(32px,5vh,52px)}
  .proofwall .pw-head h2{font-family:"Space Grotesk",Inter,sans-serif;font-size:clamp(29px,3.6vw,50px);line-height:1.06;letter-spacing:-.02em;color:#fff;margin:18px 0 0}
  .proofwall .pw-head .au{color:var(--cav-yellow)}
  .pw-gbadge{display:inline-flex;align-items:center;gap:11px;background:rgba(255,255,255,.96);color:#1c1916;border-radius:12px;padding:9px 16px;box-shadow:0 14px 40px rgba(0,0,0,.45)}
  .pw-gbadge .em{width:26px;height:26px;flex:none;border-radius:50%;background:conic-gradient(#4285F4 0deg 90deg,#EA4335 90deg 180deg,#FBBC05 180deg 270deg,#34A853 270deg 360deg);display:grid;place-items:center}
  .pw-gbadge .em::after{content:"";width:10px;height:10px;border-radius:50%;background:#fff}
  .pw-gbadge .r{display:flex;align-items:center;gap:8px;font-family:"Space Grotesk",Inter,sans-serif}
  .pw-gbadge .r .s{font-size:17px;font-weight:800}
  .pw-gbadge .r .st{color:#F5B301;letter-spacing:1px;font-size:13px}
  .pw-gbadge .r .sub{font-size:12px;color:#6f6f75;font-weight:600}
  .pw-hero{border:1px solid var(--line);border-radius:18px;background:linear-gradient(135deg,rgba(251,205,16,.07),rgba(255,255,255,.012)),#101113;padding:clamp(28px,4vw,52px);position:relative;overflow:hidden;margin-bottom:clamp(16px,2.4vw,26px)}
  .pw-hero .mk{position:absolute;top:-26px;left:16px;font-family:"Space Grotesk",sans-serif;font-size:150px;line-height:1;color:var(--cav-yellow);opacity:.13;pointer-events:none}
  .pw-hero blockquote{position:relative;margin:0;font-family:"Space Grotesk",Inter,sans-serif;font-weight:500;font-size:clamp(23px,3vw,40px);line-height:1.2;letter-spacing:-.015em;color:#f4f4f5}
  .pw-hero blockquote .au{color:var(--cav-yellow)}
  .pw-by{margin-top:26px;display:flex;align-items:center;gap:14px;flex-wrap:wrap}
  .pw-by .av{width:54px;height:54px;border-radius:50%;background:linear-gradient(135deg,#FBCD10,#caa400);color:#1c1916;display:grid;place-items:center;font-family:"Space Grotesk",sans-serif;font-weight:800;font-size:18px;flex:none}
  .pw-by .nm b{display:block;color:#fff;font-weight:700}
  .pw-by .nm span{color:var(--muted);font-size:14px}
  .pw-by .stars{margin-left:auto;color:var(--cav-yellow);letter-spacing:2px;font-size:16px}
  .pw-vids{display:grid;grid-template-columns:repeat(3,minmax(0,1fr));gap:clamp(14px,1.6vw,20px)}
  .pw-vc{display:flex;flex-direction:column;gap:12px}
  .pw-vc .cap{color:#cdced4;font-size:13.5px;font-weight:600;line-height:1.38}
  .pw-vc .cap b{color:#fff;display:block;font-weight:700;margin-bottom:2px}
  @media(max-width:820px){.pw-vids{grid-template-columns:1fr}.pw-by .stars{margin-left:0;width:100%}}
  /* Phone: scale the testimonial down so the whole card reads compactly (Tom 2026-06-22) */
  @media(max-width:480px){
    .proofwall{padding:clamp(40px,7vh,64px) 0}
    .proofwall .pw-head{margin-bottom:24px}
    .proofwall .pw-head h2{font-size:22px;line-height:1.14}
    .pw-gbadge{padding:7px 13px}
    .pw-gbadge .r .s{font-size:15px}
    .pw-hero{padding:20px 18px;border-radius:14px}
    .pw-hero .mk{font-size:88px;top:-12px;left:12px}
    .pw-hero blockquote{font-size:17px;line-height:1.34;letter-spacing:-.01em}
    .pw-by{margin-top:16px;gap:11px}
    .pw-by .av{width:42px;height:42px;font-size:15px}
    .pw-by .nm span{font-size:13px}
    .pw-by .stars{font-size:15px}
  }
  /* Mini stat strip */
  .ov-stats{display:grid;grid-template-columns:repeat(4,minmax(0,1fr));gap:8px;margin-top:18px}
  .ov-stat{border:1px solid rgba(255,255,255,.13);border-radius:8px;background:rgba(0,0,0,.36);padding:10px 8px;text-align:center}
  .ov-stat .v{font-family:"Space Grotesk",Inter,sans-serif;color:var(--cav-yellow);font-weight:800;font-size:20px;line-height:1}
  .ov-stat .v small{font-size:11px;color:#cfd0d6;font-weight:700;margin:0 1px}
  .ov-stat .k{color:#cfd0d6;font-size:10px;font-weight:800;letter-spacing:.04em;line-height:1.25;margin-top:6px}
  /* ===== Partner case-study cards (replaces aggregate stat tiles) ===== */
  .ov-cases{display:grid;grid-template-columns:repeat(2,minmax(0,1fr));gap:10px;margin-top:16px;text-align:left}
  .ov-case{border:1px solid rgba(255,255,255,.13);border-radius:10px;background:rgba(0,0,0,.4);padding:12px 13px}
  .ov-case .ov-case-h{display:flex;flex-direction:column;gap:1px;margin-bottom:9px}
  .ov-case .nm{font-family:"Space Grotesk",Inter,sans-serif;color:#fff;font-weight:800;font-size:14px;letter-spacing:.01em}
  .ov-case .loc{color:#9a9ba3;font-size:10px;font-weight:700;letter-spacing:.05em;text-transform:uppercase}
  .ov-case .ov-case-hl{color:var(--cav-yellow);font-family:"Space Grotesk",Inter,sans-serif;font-weight:800;font-size:18px;line-height:1.05;margin-bottom:8px}
  .ov-case .r{display:flex;justify-content:space-between;align-items:baseline;gap:10px;padding:5px 0;border-top:1px solid rgba(255,255,255,.07)}
  .ov-case .r .k{color:#cfd0d6;font-size:11px;font-weight:700}
  .ov-case .r .v{color:#e8e8ec;font-size:12px;font-weight:700;font-variant-numeric:tabular-nums;text-align:right}
  .ov-case .r .v b{color:#fff;font-weight:800}
  @media (max-width:820px){.ov-cases{grid-template-columns:1fr;gap:8px}}
  .ov-cases .ov-case{opacity:0;transform:translateY(16px);transition:opacity .4s ease, transform .4s ease;will-change:opacity, transform}
  @media (prefers-reduced-motion: reduce){.ov-cases .ov-case{opacity:1;transform:none;transition:none}}
  /* Mini Google badge */
  .ov-gbadge{display:inline-flex;align-items:center;gap:12px;background:rgba(255,255,255,.96);color:#1c1916;border-radius:12px;padding:10px 14px;margin-top:16px;box-shadow:0 14px 40px rgba(0,0,0,.32)}
  .ov-gbadge .em{width:30px;height:30px;flex:none;border-radius:50%;background:conic-gradient(#4285F4 0deg 90deg,#EA4335 90deg 180deg,#FBBC05 180deg 270deg,#34A853 270deg 360deg);display:grid;place-items:center}
  .ov-gbadge .em::after{content:"";width:12px;height:12px;border-radius:50%;background:#fff}
  .ov-gbadge .b{display:flex;flex-direction:column;gap:1px;line-height:1.1}
  .ov-gbadge .b .t{font-size:11px;font-weight:700;color:#3c3c43;letter-spacing:.04em}
  .ov-gbadge .b .r{display:flex;align-items:center;gap:8px;font-family:"Space Grotesk",Inter,sans-serif}
  .ov-gbadge .b .r .s{font-size:18px;font-weight:800}
  .ov-gbadge .b .r .st{color:#F5B301;font-size:13px;letter-spacing:1px}
  .ov-gbadge .b .sub{font-size:10px;color:#6f6f75}
  /* Sizing tweak: keep overlay panels readable */
  .copy-block.beat-200{max-width:min(640px,calc(100vw - 44px))}
  .copy-block.beat-300{max-width:min(620px,calc(100vw - 44px))}
  .copy-block.beat-400{max-width:min(640px,calc(100vw - 44px))}
  .copy-block.beat-mainframe{max-width:min(620px,calc(100vw - 44px))}
  .copy-block.beat-payoff{max-width:min(620px,calc(100vw - 44px))}
  @media (max-width:820px){
    .ov-stats{grid-template-columns:repeat(2,minmax(0,1fr))}
    .ov-disp-steps{font-size:11px}
    .ov-disp-steps .s{grid-template-columns:48px 1fr}
    .ov-vgrid{grid-template-columns:repeat(3,minmax(0,1fr));gap:5px;margin-top:9px}
    .ov-vc{padding:7px 8px}
    .ov-vc .n{font-size:9px}
    .ov-vc .t{font-size:11px;margin-top:2px}
    .ov-vc .d{display:none}
    .ov-disp{margin-top:9px;padding:9px 11px}
    .ov-disp-steps{gap:5px}
    .ov-timeline{gap:10px 11px;margin-top:10px}
    .ov-split{grid-template-columns:1fr}
    .ov-split .vs{display:none}
  }

  @media (prefers-reduced-motion: reduce){
    html{scroll-behavior:auto}
    .scrolly{height:auto}
    .stage{position:relative;height:auto;min-height:100svh}
    #scrubCanvas{position:absolute}
    .intro-poster{position:absolute}
    .copy-layer{position:relative;z-index:4;padding:110px 0 54px}
    .copy-block,.copy-block.center,.copy-block.right{
      position:relative;
      inset:auto;
      left:auto;
      right:auto;
      bottom:auto;
      width:min(760px,calc(100% - 34px));
      margin:0 auto 54px;
      opacity:1;
      transform:none;
      text-align:left;
    }
    .copy-block.center.active,.copy-block.center{transform:none}
    .sticky-cta{display:none}
  }
  .brand-row{display:none}
  .site-nav{position:fixed;top:0;left:0;right:0;z-index:60;display:flex;align-items:center;justify-content:space-between;gap:20px;padding:14px clamp(18px,4vw,40px);background:linear-gradient(180deg,rgba(0,0,0,.66),rgba(0,0,0,0));transition:background .25s ease,backdrop-filter .25s ease}
  .site-nav.scrolled{background:rgba(8,9,10,.97);border-bottom:1px solid var(--line)}
  .site-nav img{width:148px;height:auto}
  .site-nav .nav-links{display:flex;align-items:center;gap:26px}
  .site-nav .nav-links a:not(.btn){font-family:"Space Grotesk",Inter,sans-serif;font-size:14px;font-weight:600;color:rgba(255,255,255,.82);letter-spacing:.02em}
  .site-nav .nav-links a:not(.btn):hover{color:var(--cav-yellow)}
  .site-nav .nav-links .btn{min-height:44px;padding:0 20px;font-size:15px;box-shadow:none}
  .anchor{display:block;position:relative;top:-92px;visibility:hidden}
  .reviews-embed{width:100%}
  @media (max-width:760px){.site-nav .nav-links a:not(.btn){display:none}.site-nav img{width:122px}}
  /* ===== Scroll-progress rail (slim gold) — ONE-35264 ===== */
  .scroll-rail{position:fixed;top:0;left:0;height:3px;width:0;z-index:70;background:linear-gradient(90deg,rgba(251,205,16,.65),var(--cav-yellow));box-shadow:0 0 10px rgba(251,205,16,.5);transition:width .08s linear;pointer-events:none}
  /* ===== Mobile nav: brand hamburger + slide-down drawer — ONE-35264 ===== */
  .nav-burger{display:none;flex-direction:column;justify-content:center;gap:5px;width:44px;height:44px;border:1px solid rgba(255,255,255,.22);border-radius:11px;background:rgba(0,0,0,.35);cursor:pointer;padding:0 11px;-webkit-tap-highlight-color:transparent;flex:0 0 auto}
  .nav-burger span{display:block;height:2px;width:100%;background:#fff;border-radius:2px;transition:transform .26s cubic-bezier(.4,.01,.2,1),opacity .2s ease}
  .nav-burger[aria-expanded="true"]{border-color:rgba(251,205,16,.55)}
  .nav-burger[aria-expanded="true"] span:nth-child(1){transform:translateY(7px) rotate(45deg)}
  .nav-burger[aria-expanded="true"] span:nth-child(2){opacity:0}
  .nav-burger[aria-expanded="true"] span:nth-child(3){transform:translateY(-7px) rotate(-45deg)}
  .mobile-nav-scrim{position:fixed;inset:0;z-index:58;background:rgba(0,0,0,.6);opacity:0;transition:opacity .26s ease;pointer-events:none}
  .mobile-nav-scrim.open{opacity:1;pointer-events:auto}
  .mobile-nav{position:fixed;top:0;left:0;right:0;z-index:59;display:flex;flex-direction:column;gap:6px;padding:78px clamp(18px,6vw,30px) 26px;background:linear-gradient(180deg,rgba(8,9,10,.99),rgba(8,9,10,.97));border-bottom:1px solid var(--line);box-shadow:0 26px 60px rgba(0,0,0,.55);transform:translateY(-104%);transition:transform .32s cubic-bezier(.22,.9,.27,1);visibility:hidden}
  .mobile-nav.open{transform:translateY(0);visibility:visible}
  .mobile-nav .mn-link{font-family:"Space Grotesk",Inter,sans-serif;font-size:20px;font-weight:700;color:#fff;letter-spacing:.01em;padding:15px 6px;border-bottom:1px solid rgba(255,255,255,.08)}
  .mobile-nav .mn-link:active{color:var(--cav-yellow)}
  .mobile-nav .mn-cta{margin-top:16px;min-height:54px;justify-content:center;font-size:16px}
  @media (max-width:760px){.nav-burger{display:flex}.site-nav{gap:10px}}
  @media (min-width:761px){.mobile-nav,.mobile-nav-scrim,.nav-burger{display:none !important}}
  @media (prefers-reduced-motion:reduce){.scroll-rail{transition:none}.mobile-nav{transition:transform .01s linear}.mobile-nav-scrim{transition:none}.nav-burger span{transition:none}}
  /* ---- ported: client logo marquee ---- */
  @keyframes logoMarq{from{transform:translateX(0)}to{transform:translateX(-50%)}}
  .logos{text-align:center}
  .logos.fold-light{background:#f7f4ef;color:#1c1916;border-top:1px solid rgba(0,0,0,.06);border-bottom:1px solid rgba(0,0,0,.06);--gold:#F5B301;--muted:#6f6960;--muted-2:#a39b91}
  .logos .ll{font-family:"Space Grotesk",Inter,sans-serif;font-size:12px;font-weight:600;letter-spacing:.24em;text-transform:uppercase;color:var(--muted-2);margin-bottom:clamp(26px,4vh,40px)}
  .logos-wrap{position:relative;overflow:hidden;-webkit-mask-image:linear-gradient(90deg,transparent,#000 11%,#000 89%,transparent);mask-image:linear-gradient(90deg,transparent,#000 11%,#000 89%,transparent)}
  .logos-track{display:flex;align-items:center;width:max-content;animation:logoMarq 40s linear infinite}
  .logos-wrap:hover .logos-track{animation-play-state:paused}
  .logos-track img{height:42px;width:auto;margin:0 clamp(30px,4vw,58px);object-fit:contain;flex:none}
  .logos-track img.logo-wide{height:42px;max-width:260px}
  .logos-track img.logo-tall{height:64px}
  /* ---- ported: social proof (google badge + quote + trust chips) ---- */
  .cav-social{--gold:#F5B301;--hair:rgba(0,0,0,.10);--hair-2:rgba(0,0,0,.16);--muted:#6f6960;--muted-2:#a39b91;--panel:#ffffff}
  .gbadge{display:inline-flex;align-items:center;gap:16px;background:#fff;border-radius:16px;padding:14px 20px;box-shadow:0 24px 60px -22px rgba(0,0,0,.35);border:1px solid rgba(0,0,0,.07);text-align:left}
  .gbadge .g-emblem{width:38px;height:38px;flex:none;border-radius:50%;background:conic-gradient(#4285F4 0deg 90deg,#EA4335 90deg 180deg,#FBBC05 180deg 270deg,#34A853 270deg 360deg);display:grid;place-items:center}
  .gbadge .g-emblem::after{content:"";width:15px;height:15px;border-radius:50%;background:#fff}
  .gbadge .g-body{display:flex;flex-direction:column;gap:4px}
  .gbadge .g-top{font-family:"Space Grotesk",Inter,sans-serif;font-weight:600;font-size:13px;color:#3c3c43}
  .gbadge .g-rate{display:flex;align-items:center;gap:11px}
  .gbadge .g-score{font-family:"Space Grotesk",Inter,sans-serif;font-weight:700;font-size:27px;color:#1c1916;line-height:1}
  .gbadge .g-stars{display:flex;gap:2px}
  .gbadge .g-stars svg{width:17px;height:17px;display:block}
  .gbadge .g-sub{font-size:12px;color:#6f6f75;text-decoration:underline;text-underline-offset:3px}
  .cav-social .quote{max-width:1000px;margin:0 auto;text-align:center}
  .cav-social .quote .mark{font-family:"Space Grotesk",Inter,sans-serif;font-size:90px;line-height:.5;color:var(--gold);opacity:.4;height:48px}
  .cav-social .quote blockquote{font-family:"Space Grotesk",Inter,sans-serif;font-weight:500;font-size:clamp(1.5rem,3.4vw,2.5rem);line-height:1.22;letter-spacing:-.02em;margin:0;color:#1c1916}
  .cav-social .quote blockquote .au{color:#a87a00}
  .cav-social .quote .by{margin-top:30px;display:inline-flex;flex-direction:column;align-items:center;gap:12px}
  .cav-social .quote .by .av-img{width:64px;height:64px;border-radius:50%;object-fit:cover;border:2px solid rgba(245,179,1,.55);box-shadow:0 12px 28px -18px rgba(0,0,0,.5)}
  .cav-social .quote .by .nm{text-align:center}
  .cav-social .quote .by .nm b{display:block;font-weight:600;color:#1c1916}
  .cav-social .quote .by .nm span{color:var(--muted);font-size:14px}
  .cav-social .trust{margin-top:56px;border-top:1px solid var(--hair);padding-top:38px}
  .cav-social .trust .tl{text-align:center;font-family:"Space Grotesk",Inter,sans-serif;font-size:12px;letter-spacing:.24em;text-transform:uppercase;color:var(--muted-2);margin-bottom:24px}
  .cav-social .trust-row{display:flex;flex-wrap:wrap;justify-content:center;gap:16px}
  .cav-social .trust-chip{border:1px solid var(--hair);border-radius:100px;padding:11px 24px;font-family:"Space Grotesk",Inter,sans-serif;font-weight:600;letter-spacing:.06em;color:var(--muted);font-size:14px;background:var(--panel)}
  @media(max-width:760px){.logos-track img{height:30px;margin:0 26px}.logos-track img.logo-wide{height:30px}.logos-track img.logo-tall{height:46px}}
  /* ---- ported banner (cavalry.works hero) ---- */
  .top-banner{position:relative;z-index:1;background:#000;border-bottom:1px solid var(--line);padding:clamp(104px,15vh,156px) 0 clamp(54px,8vh,88px)}
  .top-banner .tb-grid{width:min(var(--max),calc(100% - 44px));margin:0 auto;display:grid;gap:clamp(30px,4vw,64px);align-items:center;grid-template-columns:1fr}
  @media(min-width:900px){.top-banner .tb-grid{grid-template-columns:minmax(0,1fr) minmax(0,1.05fr)}}
  .tb-copy{display:flex;flex-direction:column;align-items:flex-start;gap:20px}
  .tb-copy h1{font-family:"Space Grotesk",Inter,sans-serif;font-size:clamp(33px,4.3vw,55px);line-height:1.03;color:#fff;max-width:15ch}
  .tb-sub{color:var(--muted);font-size:clamp(15px,1.3vw,18px)}
  .tb-ctas{display:flex;flex-wrap:wrap;gap:14px;align-items:center}
  .btn.ghost{background:transparent;color:var(--cav-yellow);border:1px solid rgba(251,205,16,.5);box-shadow:none}
  .btn.ghost:hover{background:rgba(251,205,16,.1);transform:translateY(-2px)}
  .tb-visual{display:flex;flex-direction:column;gap:18px}
  .tb-video{position:relative;display:block;aspect-ratio:16/9;border-radius:18px;overflow:hidden;background:#0d0e10;box-shadow:0 30px 80px -30px rgba(0,0,0,.85);border:1px solid var(--line)}
  .tb-video img{width:100%;height:100%;object-fit:cover;transition:transform .3s ease}
  .tb-video:hover img{transform:scale(1.04)}
  .tb-play{position:absolute;inset:0;display:grid;place-items:center}
  .tb-play>span{display:grid;place-items:center;width:84px;height:56px;border-radius:14px;background:#e8281f;color:#fff;box-shadow:0 12px 32px rgba(0,0,0,.45);transition:transform .2s ease}
  .tb-video:hover .tb-play>span{transform:scale(1.08)}
  .tb-play svg{width:26px;height:26px}
  .tb-quote{border-left:2px solid var(--cav-yellow);padding:4px 0 4px 22px;margin:0}
  .tb-quote p{font-family:"Space Grotesk",Inter,sans-serif;font-style:italic;font-size:clamp(16px,1.5vw,21px);line-height:1.4;color:#e7e8ec}
  .tb-quote .au{color:var(--cav-yellow);font-style:normal;font-weight:600}
  .tb-quote footer{margin-top:12px;font-size:14px;font-weight:600;color:var(--soft)}

  /* ===== PINNED-SCROLL: sequential reveal ===== */
  /* Children start hidden; transition to visible when .seq-in is toggled in JS */
  .ov-timeline > *,
  .ov-split > *,
  .ov-disp-steps .s,
  .ov-vgrid .ov-vc,
  .copy-block.beat-turn .proof-chip,
  .ov-stats .ov-stat,
  .copy-block.beat-relief .guarantee-lockup,
  .copy-block.beat-relief .ov-quote,
  .copy-block.beat-payoff .ov-gbadge,
  .copy-block.beat-payoff .copy-actions {
    opacity:0;
    transform:translateY(36px) scale(.985);
    transition:opacity .55s cubic-bezier(.2,.7,.2,1), transform .65s cubic-bezier(.16,.84,.3,1);
    will-change:opacity, transform;
  }
  /* Pronounced "pop up the screen" entrance for the inner content blocks: they
     rise from below the card with a small scale-in, after the title is already
     visible. Children stagger via the .seq-in JS reveal (timeline, 6-card grid,
     split panes, dispatch steps, proof chips). (Tom 2026-06-22) */
  .ov-timeline > *,
  .ov-vgrid .ov-vc,
  .ov-disp-steps .s,
  .ov-stats .ov-stat,
  .copy-block.beat-turn .proof-chip,
  .copy-block.beat-payoff .ov-gbadge,
  .copy-block.beat-payoff .copy-actions,
  .copy-block.beat-relief .guarantee-lockup,
  .copy-block.beat-relief .ov-quote{
    transform:translateY(44px) scale(.96);
  }
  .ov-split > *{transform:translateY(40px) scale(.97);}
  .seq-in {
    opacity:1 !important;
    transform:translateY(0) scale(1) !important;
  }
  /* Reduced-motion: everything immediately visible, no holds */
  @media (prefers-reduced-motion: reduce) {
    .ov-timeline > *,
    .ov-split > *,
    .ov-disp-steps .s,
    .ov-vgrid .ov-vc,
    .copy-block.beat-turn .proof-chip,
    .ov-stats .ov-stat,
    .copy-block.beat-relief .guarantee-lockup,
    .copy-block.beat-relief .ov-quote,
    .copy-block.beat-payoff .ov-gbadge,
    .copy-block.beat-payoff .copy-actions {
      opacity:1;
      transform:none;
      transition:none;
    }
  }

/* Shared-chrome custom elements: no layout box (fixed nav + flow footer escape). */
site-header,site-footer{display:contents}

/* ============================================================================
   Shared "Book a call" band — rendered ABOVE the footer by <site-footer> on
   every page (booking is always present + identical). Fully scoped to .site-cta
   so it never collides with a page's own design system.
   ============================================================================ */
.site-cta{padding:clamp(64px,9vh,110px) 0;background:radial-gradient(circle at 50% 0%,rgba(251,205,16,.10),transparent 42%),#000;color:#fff;font-family:Inter,system-ui,-apple-system,"Segoe UI",sans-serif;text-align:center;border-top:1px solid rgba(255,255,255,.08);opacity:0;transform:translateY(22px);transition:opacity .7s ease,transform .7s cubic-bezier(.2,.7,.2,1)}
.site-cta.in{opacity:1;transform:none}
.site-cta a{text-decoration:none}
.site-cta-in{width:min(720px,calc(100% - 44px));margin:0 auto;display:flex;flex-direction:column;align-items:center}
.site-cta .cta-eyebrow{display:inline-flex;align-items:center;gap:10px;color:#FBCD10;font-family:"Space Grotesk",Inter,sans-serif;font-size:12px;font-weight:700;letter-spacing:.22em;text-transform:uppercase}
.site-cta .cta-dot{width:8px;height:8px;border-radius:50%;background:#34c46a;box-shadow:0 0 0 0 rgba(52,196,106,.55);animation:ctaPing 2s ease-out infinite}
@keyframes ctaPing{0%{box-shadow:0 0 0 0 rgba(52,196,106,.5)}70%{box-shadow:0 0 0 9px rgba(52,196,106,0)}100%{box-shadow:0 0 0 0 rgba(52,196,106,0)}}
.site-cta .cta-head{margin:18px 0 0;font-family:"Space Grotesk",Inter,sans-serif;font-size:clamp(30px,4.4vw,52px);line-height:1.04;font-weight:700;max-width:760px;text-wrap:balance}
.site-cta .cta-au{color:#FBCD10}
.site-cta .cta-sub{margin:16px auto 0;max-width:560px;color:#c8c8ce;font-size:clamp(15px,1.4vw,18px);line-height:1.5}
/* Dark mode via inversion (ONE-42912): Calendly hardcodes white inputs + the
   confirmation pill and offers no real dark theme, so the embed loads Calendly's
   LIGHT theme (see chrome.js) and this filter flips the whole iframe dark —
   dark inputs w/ light text everywhere, brand yellow inverts to a warm amber.
   invert(.94) (not 1) lands the card at ~#0f0f10 so it still reads as a card
   against the #0b0b0c band. */
.site-cta .cta-cal{width:100%;max-width:493px;margin:clamp(28px,4vh,48px) auto 0;height:730px;border-radius:18px;overflow:hidden;background:#0b0b0c;border:1px solid rgba(255,255,255,.07);box-shadow:0 32px 80px -20px rgba(0,0,0,.55)}
.site-cta .cta-cal iframe{display:block;width:100%;height:100%;border:0;filter:invert(.94) hue-rotate(180deg)}
.site-cta .cta-closing{display:inline-flex;align-items:center;gap:8px;margin-top:26px;color:#8a8b90;font-family:"Space Grotesk",Inter,sans-serif;font-size:11px;font-weight:700;letter-spacing:.2em;text-transform:uppercase}
@media (max-width:820px){
  .site-cta{padding:clamp(48px,7vh,80px) 0}
  .site-cta .cta-cal{width:calc(100% + 36px);max-width:none;margin-left:-18px;margin-right:-18px;height:780px;border-radius:14px}
  .site-cta .cta-cal iframe{width:125%;height:900px;transform:scale(.8);transform-origin:top left}
}
@media (prefers-reduced-motion:reduce){.site-cta{transition:none;opacity:1;transform:none}.site-cta .cta-dot{animation:none}}
