/* ─────────────────────────────────────────────────────────────
   Groovies Production Studio — shared stylesheet
   SOURCE OF TRUTH: this is a verbatim copy of the <style> block
   inside index.html (the homepage keeps its own inline copy).
   If you change homepage styles, re-sync this file so the routed
   pages (/production, /dance-classes, /dj-classes, /blitz30) match.
   ───────────────────────────────────────────────────────────── */
    /* ─── DESIGN TOKENS ─── */
    :root {
      --bg:          #050505;
      --bg-2:        #0a0a0a;
      --bg-card:     #101010;
      --fg:          #ffffff;
      --fg-muted:    rgba(255,255,255,0.5);
      --yellow:      #D4FF00;
      --pink:        #FF2055;
      --blue:        #0A84FF;
      --border:      rgba(255,255,255,0.07);
      --border-hi:   rgba(255,255,255,0.14);
      --display:     'Bebas Neue', sans-serif;
      --body:        'Poppins', sans-serif;
      --ease-out:    cubic-bezier(0.16, 1, 0.3, 1);
    }

    /* ─── RESET ─── */
    *, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
    html { scroll-behavior: smooth; }
    body {
      background: var(--bg);
      color: var(--fg);
      font-family: var(--body);
      overflow-x: hidden;
      cursor: none;
      -webkit-font-smoothing: antialiased;
    }

    /* ─── CURSOR ─── */
    #cursor {
      position: fixed;
      width: 10px; height: 10px;
      background: var(--yellow);
      border-radius: 50%;
      pointer-events: none;
      z-index: 10000;
      transform: translate(-50%, -50%);
      transition: width .2s, height .2s;
      mix-blend-mode: difference;
    }
    #cursor-ring {
      position: fixed;
      width: 38px; height: 38px;
      border: 1px solid rgba(212,255,0,.45);
      border-radius: 50%;
      pointer-events: none;
      z-index: 9999;
      transform: translate(-50%, -50%);
    }
    body.cursor-hover #cursor       { width: 18px; height: 18px; }
    body.cursor-hover #cursor-ring  { width: 58px; height: 58px; border-color: rgba(212,255,0,.7); }

    /* ─── FILM GRAIN OVERLAY ─── */
    body::before {
      content: '';
      position: fixed; inset: 0;
      background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
      opacity: .032;
      pointer-events: none;
      z-index: 9997;
    }

    /* ─── NAV ─── */
    #nav {
      position: fixed; top: 0; left: 0; right: 0;
      z-index: 500;
      display: flex; align-items: center; justify-content: space-between;
      padding: 1.75rem 5rem;
      transition: background .4s, backdrop-filter .4s, padding .4s, border-color .4s;
      border-bottom: 1px solid transparent;
    }
    #nav.scrolled {
      background: rgba(5,5,5,.88);
      backdrop-filter: blur(24px);
      -webkit-backdrop-filter: blur(24px);
      padding: 1.1rem 5rem;
      border-color: var(--border);
    }
    .nav-logo {
      display: inline-flex;
      align-items: center;
      text-decoration: none;
    }
    .nav-logo img { height: 64px; width: auto; display: block; }
    .nav-links { display: flex; gap: 2.5rem; list-style: none; }
    .nav-links a {
      color: var(--fg-muted);
      text-decoration: none;
      font-size: .72rem;
      font-weight: 600;
      letter-spacing: .18em;
      text-transform: uppercase;
      transition: color .25s;
    }
    .nav-links a:hover { color: var(--fg); }
    .nav-btn {
      background: var(--yellow);
      color: #000;
      padding: .6rem 1.4rem;
      font-size: .7rem;
      font-weight: 700;
      letter-spacing: .14em;
      text-transform: uppercase;
      text-decoration: none;
      border-radius: 2px;
      transition: background .25s, transform .25s;
    }
    .nav-btn:hover { background: #fff; transform: translateY(-1px); }

    /* ── Mobile nav toggle (hamburger) + dropdown menu ── */
    .nav-toggle {
      display: none;                 /* shown only when nav-links collapse */
      flex-direction: column;
      justify-content: center;
      align-items: center;
      gap: 5px;
      width: 44px; height: 44px;     /* comfortable tap target */
      padding: 0;
      background: transparent;
      border: 1px solid var(--border-hi);
      border-radius: 4px;
      cursor: pointer;
      flex-shrink: 0;
      transition: border-color .25s, background .25s;
    }
    .nav-toggle:hover { border-color: var(--yellow); background: rgba(212,255,0,.06); }
    .nav-toggle span {
      display: block; width: 20px; height: 2px;
      background: var(--fg); border-radius: 2px;
      transition: transform .3s var(--ease-out), opacity .25s;
    }
    .nav-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
    .nav-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
    .nav-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

    .mobile-menu {
      display: none;                 /* enabled in the responsive block */
      position: absolute; top: 100%; left: 0; right: 0;
      flex-direction: column;
      background: rgba(5,5,5,.97);
      backdrop-filter: blur(24px);
      -webkit-backdrop-filter: blur(24px);
      border-bottom: 1px solid var(--border);
      padding: .5rem 2.5rem 1.6rem;
      opacity: 0; transform: translateY(-12px);
      pointer-events: none;
      transition: opacity .3s var(--ease-out), transform .3s var(--ease-out);
    }
    .mobile-menu.open { opacity: 1; transform: none; pointer-events: auto; }
    .mobile-menu a {
      color: var(--fg); text-decoration: none;
      font-size: .95rem; font-weight: 600; letter-spacing: .03em;
      padding: 1.05rem .25rem;
      border-bottom: 1px solid var(--border);
      transition: color .2s;
    }
    .mobile-menu a:hover, .mobile-menu a:active { color: var(--yellow); }
    .mobile-menu .mm-cta {
      margin-top: 1.25rem;
      background: var(--yellow); color: #000;
      text-align: center; border: none; border-radius: 2px;
      font-size: .78rem; font-weight: 700;
      letter-spacing: .14em; text-transform: uppercase;
      padding: 1.1rem;
    }
    .mobile-menu .mm-cta:hover { color: #000; background: #fff; }

    /* ─── HERO ─── */
    .hero {
      position: relative;
      height: 100svh;
      min-height: 680px;
      display: flex;
      flex-direction: column;
      justify-content: flex-end;
      padding: 0 5rem 7rem;
      overflow: hidden;
    }
    .hero-bg {
      position: absolute; inset: 0;
      background:
        radial-gradient(ellipse 90% 70% at 65% 35%, rgba(212,255,0,.055) 0%, transparent 55%),
        radial-gradient(ellipse 55% 55% at 15% 75%, rgba(255,32,85,.07) 0%, transparent 50%),
        radial-gradient(ellipse 60% 40% at 85% 85%, rgba(10,132,255,.06) 0%, transparent 50%),
        linear-gradient(180deg, transparent 30%, rgba(5,5,5,.65) 70%, var(--bg) 100%);
      will-change: transform;
    }
    .hero-grid {
      position: absolute; inset: 0;
      background-image:
        linear-gradient(rgba(255,255,255,.025) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255,255,255,.025) 1px, transparent 1px);
      background-size: 90px 90px;
      animation: gridScroll 24s linear infinite;
    }
    @keyframes gridScroll {
      from { transform: translateY(0); }
      to   { transform: translateY(90px); }
    }

    /* Orbs */
    .orb {
      position: absolute;
      border-radius: 50%;
      filter: blur(90px);
      pointer-events: none;
      animation: floatOrb 9s ease-in-out infinite;
    }
    .orb-a { width: 560px; height: 560px; background: rgba(212,255,0,.065); top: -120px; right: 8%; animation-delay: 0s; }
    .orb-b { width: 420px; height: 420px; background: rgba(255,32,85,.065); bottom: 5%; left: 2%; animation-delay: -3.5s; }
    .orb-c { width: 320px; height: 320px; background: rgba(10,132,255,.055); top: 35%; left: 42%; animation-delay: -6s; }
    @keyframes floatOrb {
      0%,100% { transform: translateY(0) scale(1); }
      50%      { transform: translateY(-28px) scale(1.04); }
    }

    /* Hero text */
    .hero-eyebrow {
      display: flex; align-items: center; gap: .75rem;
      margin-bottom: 1.75rem;
      opacity: 0; transform: translateY(16px);
      animation: fadeUp .7s var(--ease-out) .3s forwards;
    }
    .ey-dot {
      width: 7px; height: 7px;
      background: var(--yellow); border-radius: 50%;
      animation: pulseDot 2.2s ease infinite;
    }
    @keyframes pulseDot {
      0%,100% { box-shadow: 0 0 0 0 rgba(212,255,0,.5); }
      50%      { box-shadow: 0 0 0 9px rgba(212,255,0,0); }
    }
    .ey-text {
      font-size: .68rem; font-weight: 700;
      letter-spacing: .26em; text-transform: uppercase;
      color: var(--yellow);
    }
    .ey-line { width: 38px; height: 1px; background: var(--yellow); opacity: .5; }

    .hero-title {
      font-family: var(--display);
      font-size: clamp(5.5rem, 12.5vw, 14rem);
      line-height: .88;
      letter-spacing: -.01em;
      text-transform: uppercase;
      margin-bottom: 2.5rem;
    }
    .title-line { display: block; overflow: hidden; }
    .title-inner {
      display: block;
      opacity: 0; transform: translateY(105%);
      animation: slideUp .95s var(--ease-out) forwards;
    }
    .title-line:nth-child(1) .title-inner { animation-delay: .45s; }
    .title-line:nth-child(2) .title-inner { animation-delay: .6s; }
    .title-line:nth-child(3) .title-inner { animation-delay: .75s; }

    /* ── Word rotator ── */
    /*
      The rotating word is layout-independent: a hidden ghost span (the widest
      word) sits in normal flow and reserves a fixed-size box, while the live
      word is absolutely positioned ON TOP of that box. Because the live word is
      removed from flow, its width/height can change freely on every swap without
      ever nudging "MEETS MOTION." below — the container never reflows.
    */
    .rotator-wrap {
      position: relative;
      display: inline-block;
      vertical-align: bottom;
      overflow: hidden;          /* clips the slide-in/out animation */
    }
    .rotator-ghost {
      visibility: hidden;        /* invisible size-holder for the widest word */
      pointer-events: none;
      user-select: none;
      white-space: nowrap;
    }
    .rotator-word {
      position: absolute;
      left: 0;
      bottom: 0;
      white-space: nowrap;
      color: var(--yellow);
    }
    /* Exit: fade + slide upward out */
    .rotator-word.rt-exit {
      animation: rtOut .34s var(--ease-out) forwards;
    }
    /* Enter: slide up from below + fade in */
    .rotator-word.rt-enter {
      animation: rtIn .46s var(--ease-out) forwards;
    }
    @keyframes rtOut {
      from { opacity: 1; transform: translateY(0); }
      to   { opacity: 0; transform: translateY(-65%); }
    }
    @keyframes rtIn {
      from { opacity: 0; transform: translateY(70%); }
      to   { opacity: 1; transform: translateY(0); }
    }
    @media (prefers-reduced-motion: reduce) {
      .rotator-word.rt-exit,
      .rotator-word.rt-enter { animation: none !important; opacity: 1 !important; transform: none !important; }
    }

    .hero-footer {
      display: flex; align-items: flex-end; justify-content: space-between; gap: 2rem;
      opacity: 0; transform: translateY(18px);
      animation: fadeUp .75s var(--ease-out) 1.05s forwards;
    }
    .hero-desc {
      max-width: 360px;
      font-size: .92rem; line-height: 1.75;
      color: var(--fg-muted);
    }
    .hero-actions { display: flex; gap: 1rem; align-items: center; }

    /* Scroll caret */
    .scroll-caret {
      position: absolute; bottom: 2.5rem; left: 50%; transform: translateX(-50%);
      display: flex; flex-direction: column; align-items: center; gap: .5rem;
      opacity: 0; animation: fadeUp .7s var(--ease-out) 1.5s forwards;
    }
    .scroll-caret span { font-size: .58rem; letter-spacing: .22em; text-transform: uppercase; color: var(--fg-muted); }
    .scroll-line {
      width: 1px; height: 55px;
      background: linear-gradient(to bottom, rgba(255,255,255,.5), transparent);
      animation: caretDrop 2.2s ease infinite;
    }
    @keyframes caretDrop {
      0%   { transform: scaleY(0); transform-origin: top; opacity: 1; }
      49%  { transform: scaleY(1); transform-origin: top; }
      50%  { transform: scaleY(1); transform-origin: bottom; }
      100% { transform: scaleY(0); transform-origin: bottom; opacity: 0; }
    }

    /* ─── BUTTONS ─── */
    .btn-yellow {
      background: var(--yellow); color: #000;
      padding: 1rem 2.5rem;
      font-size: .72rem; font-weight: 700;
      letter-spacing: .14em; text-transform: uppercase;
      text-decoration: none; display: inline-flex; align-items: center; gap: .5rem;
      border-radius: 2px;
      transition: transform .25s, box-shadow .25s, background .25s;
    }
    .btn-yellow:hover { transform: translateY(-2px); box-shadow: 0 12px 32px rgba(212,255,0,.3); }
    .btn-yellow svg { transition: transform .25s; }
    .btn-yellow:hover svg { transform: translateX(3px); }

    .btn-ghost {
      color: var(--fg); text-decoration: none;
      font-size: .72rem; font-weight: 600;
      letter-spacing: .14em; text-transform: uppercase;
      display: inline-flex; align-items: center; gap: .5rem;
      border-bottom: 1px solid rgba(255,255,255,.3);
      padding-bottom: 2px;
      transition: color .25s, border-color .25s;
    }
    .btn-ghost:hover { color: var(--yellow); border-color: var(--yellow); }

    .btn-dark {
      background: #000; color: var(--yellow);
      padding: 1.15rem 2.8rem;
      font-size: .72rem; font-weight: 700;
      letter-spacing: .14em; text-transform: uppercase;
      text-decoration: none; display: inline-flex; align-items: center; gap: .6rem;
      border-radius: 2px; flex-shrink: 0;
      transition: transform .25s, box-shadow .25s;
    }
    .btn-dark:hover { transform: translateY(-2px); box-shadow: 0 10px 28px rgba(0,0,0,.4); }
    .btn-dark svg { transition: transform .25s; }
    .btn-dark:hover svg { transform: translateX(4px); }

    /* ─── MARQUEE ─── */
    .marquee-wrap {
      background: var(--yellow);
      padding: 1.3rem 0;
      overflow: hidden;
    }
    .marquee-track {
      display: flex; width: max-content;
      animation: marquee 28s linear infinite;
    }
    .marquee-unit {
      display: flex; align-items: center; gap: 2rem;
      padding-right: 2rem;
      font-family: var(--display);
      font-size: 1.15rem; letter-spacing: .06em;
      color: #000; white-space: nowrap;
    }
    .marquee-sep { width: 6px; height: 6px; background: rgba(0,0,0,.35); border-radius: 50%; flex-shrink: 0; }
    @keyframes marquee {
      from { transform: translateX(0); }
      to   { transform: translateX(-50%); }
    }

    /* ─── SECTION UTILITIES ─── */
    .section-label {
      font-size: .63rem; font-weight: 700;
      letter-spacing: .3em; text-transform: uppercase;
      color: var(--yellow); margin-bottom: .8rem;
    }
    .section-title {
      font-family: var(--display);
      font-size: clamp(2.8rem, 5.5vw, 5.5rem);
      line-height: .95; text-transform: uppercase;
    }

    /* ─── ABOUT ─── */
    .about {
      display: grid; grid-template-columns: 1fr 1fr; gap: 9rem; align-items: center;
      max-width: 1380px; margin: 0 auto; padding: 9rem 5rem;
    }
    .about-title {
      font-family: var(--display);
      font-size: clamp(3rem, 5.5vw, 5.5rem);
      line-height: .95; text-transform: uppercase;
      margin-bottom: 1.75rem;
    }
    .about-title i { font-style: normal; color: var(--yellow); text-shadow: 0 0 26px rgba(212,255,0,.45); }
    .about-desc { font-size: .93rem; line-height: 1.8; color: var(--fg-muted); margin-bottom: 3rem; }
    .about-stats { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; }
    .stat { border-top: 1px solid var(--border-hi); padding-top: 1.2rem; }
    .stat-n {
      font-family: var(--display); font-size: 3.2rem; line-height: 1;
      color: var(--yellow); display: block;
    }
    .stat-l {
      font-size: .65rem; font-weight: 600; letter-spacing: .12em; text-transform: uppercase;
      color: var(--fg-muted); margin-top: .2rem;
    }

    /* About visual */
    .about-visual { position: relative; }
    .about-frame {
      aspect-ratio: 4/5; border-radius: 2px; overflow: hidden;
      background: var(--bg);
      position: relative;
      /* --py is driven by the scroll handler for a gentle depth drift */
      transform: translate3d(0, var(--py, 0px), 0);
      will-change: transform;
    }
    /* ── Animated brand graphic (replaces the old studio-reel placeholder) ── */
    .brandviz { position: absolute; inset: 0; overflow: hidden; }

    /* Drifting grid — matches the hero's lines, scoped + slow, masked at edges */
    .bv-grid {
      position: absolute; inset: -2px;
      background-image:
        linear-gradient(rgba(255,255,255,.05) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255,255,255,.05) 1px, transparent 1px);
      background-size: 46px 46px;
      animation: bvGridDrift 16s linear infinite;
      -webkit-mask-image: radial-gradient(ellipse 82% 78% at 50% 50%, #000 50%, transparent 100%);
              mask-image: radial-gradient(ellipse 82% 78% at 50% 50%, #000 50%, transparent 100%);
    }
    @keyframes bvGridDrift {
      from { transform: translateY(0); }
      to   { transform: translateY(46px); }
    }
    /* Coarser neon-yellow accent grid drifting the other way for depth */
    .bv-grid--accent {
      background-image:
        linear-gradient(rgba(212,255,0,.07) 1px, transparent 1px),
        linear-gradient(90deg, rgba(212,255,0,.07) 1px, transparent 1px);
      background-size: 138px 138px;
      animation: bvGridDriftAccent 26s linear infinite;
    }
    @keyframes bvGridDriftAccent {
      from { transform: translateY(0); }
      to   { transform: translateY(-138px); }
    }

    /* Soft neon glow breathing behind the logo */
    .bv-glow {
      position: absolute; top: 50%; left: 50%;
      width: 72%; aspect-ratio: 1; border-radius: 50%;
      transform: translate(-50%, -50%);
      background: radial-gradient(circle, rgba(212,255,0,.20) 0%, transparent 62%);
      filter: blur(8px);
      animation: bvGlowPulse 4.6s ease-in-out infinite;
    }
    @keyframes bvGlowPulse {
      0%,100% { opacity: .45; transform: translate(-50%,-50%) scale(.9); }
      50%     { opacity: 1;   transform: translate(-50%,-50%) scale(1.08); }
    }

    /* Logo centrepiece — gentle neon glow pulse + subtle breathing scale.
       The PNG has uneven transparent padding (68px top vs 51px bottom on its
       400×225 canvas), so the wordmark's optical centre sits 3.78% of the image
       height below the box centre. We translate Y by -53.78% (instead of -50%)
       to land the glyphs on the true frame centre. */
    .bv-logo {
      position: absolute; top: 50%; left: 50%;
      width: 60%; max-width: 320px; height: auto;
      transform: translate(-50%, -53.78%);
      animation: bvLogoGlow 4.6s ease-in-out infinite;
    }
    @keyframes bvLogoGlow {
      0%,100% { filter: drop-shadow(0 0 6px rgba(212,255,0,.25)); transform: translate(-50%,-53.78%) scale(1); }
      50%     { filter: drop-shadow(0 0 16px rgba(212,255,0,.6)) drop-shadow(0 0 40px rgba(212,255,0,.22)); transform: translate(-50%,-53.78%) scale(1.035); }
    }

    /* Inner vignette so the frame edges sit dark + premium */
    .brandviz::after {
      content: ''; position: absolute; inset: 0; pointer-events: none;
      background: radial-gradient(ellipse 92% 90% at 50% 50%, transparent 52%, rgba(5,5,5,.88) 100%);
    }

    @media (prefers-reduced-motion: reduce) {
      .bv-grid, .bv-grid--accent, .bv-glow, .bv-logo { animation: none !important; }
      .bv-logo { filter: drop-shadow(0 0 12px rgba(212,255,0,.4)); }
      .bv-glow { opacity: .7; }
    }

    .about-badge {
      position: absolute; bottom: -1.75rem; left: -1.75rem;
      background: var(--yellow); color: #000;
      padding: 1.4rem 1.5rem; border-radius: 2px;
    }
    .badge-n { font-family: var(--display); font-size: 2.6rem; line-height: 1; display: block; }
    .badge-l { font-size: .6rem; font-weight: 700; letter-spacing: .12em; text-transform: uppercase; }
    .about-corner {
      position: absolute; top: -1.75rem; right: -1.75rem;
      width: 90px; height: 90px; border: 1px solid var(--border-hi); border-radius: 2px;
      display: flex; align-items: center; justify-content: center;
    }
    .about-corner span {
      font-family: var(--display); font-size: .65rem;
      letter-spacing: .14em; text-transform: uppercase;
      color: var(--fg-muted); text-align: center; line-height: 1.4;
    }

    /* ─── SERVICES ─── */
    .services { max-width: 1380px; margin: 0 auto; padding: 0 5rem 9rem; }
    .section-header {
      display: flex; align-items: flex-end; justify-content: space-between;
      margin-bottom: 3.5rem;
    }
    .section-ghost-num {
      font-family: var(--display); font-size: 5rem;
      color: rgba(255,255,255,.05); line-height: 1;
    }
    .svc-grid {
      display: grid; grid-template-columns: repeat(2, 1fr);
      gap: 1.5px; background: var(--border);
    }
    .svc-card {
      background: var(--bg);
      padding: 3.5rem;
      position: relative; overflow: hidden;
      transition: background .3s;
      transform-style: preserve-3d;
    }
    /* Stretched link overlay — makes the whole service card navigable to its page */
    .svc-link { position: absolute; inset: 0; z-index: 4; }
    /* Radial glow on hover */
    .svc-card::before {
      content: '';
      position: absolute; inset: 0;
      opacity: 0; transition: opacity .4s;
      background: radial-gradient(circle at var(--mx,50%) var(--my,50%), rgba(212,255,0,.055) 0%, transparent 65%);
    }
    .svc-card:hover::before { opacity: 1; }
    .svc-card:hover { background: rgba(255,255,255,.018); }

    .svc-ico {
      width: 52px; height: 52px; border-radius: 2px;
      border: 1px solid var(--border-hi);
      display: flex; align-items: center; justify-content: center;
      margin-bottom: 2rem;
      transition: border-color .3s, background .3s;
    }
    .svc-card:hover .svc-ico { border-color: var(--yellow); background: rgba(212,255,0,.07); }
    .svc-ico svg { width: 22px; height: 22px; color: var(--fg-muted); transition: color .3s; }
    .svc-card:hover .svc-ico svg { color: var(--yellow); }

    .svc-n {
      position: absolute; top: 3.5rem; right: 3.5rem;
      font-family: var(--display); font-size: 5.5rem;
      color: rgba(255,255,255,.035); line-height: 1;
      transition: color .3s;
    }
    .svc-card:hover .svc-n { color: rgba(212,255,0,.05); }

    .svc-title {
      font-family: var(--display);
      font-size: 2.1rem; text-transform: uppercase; letter-spacing: .02em;
      margin-bottom: 1rem;
    }
    .svc-desc { font-size: .88rem; line-height: 1.78; color: var(--fg-muted); margin-bottom: 2rem; }
    .svc-tags { display: flex; flex-wrap: wrap; gap: .5rem; }
    .svc-tag {
      font-size: .6rem; font-weight: 600; letter-spacing: .12em; text-transform: uppercase;
      padding: .28rem .7rem; border: 1px solid var(--border-hi); border-radius: 2px;
      color: var(--fg-muted); transition: border-color .25s, color .25s;
    }
    .svc-card:hover .svc-tag { border-color: rgba(212,255,0,.28); color: rgba(255,255,255,.7); }
    .svc-arrow {
      position: absolute; bottom: 3.5rem; right: 3.5rem;
      width: 38px; height: 38px; border-radius: 50%;
      border: 1px solid var(--border-hi);
      display: flex; align-items: center; justify-content: center;
      transition: background .25s, border-color .25s;
    }
    .svc-card:hover .svc-arrow { background: var(--yellow); border-color: var(--yellow); }
    .svc-arrow svg { width: 15px; height: 15px; color: var(--fg-muted); transition: color .25s; }
    .svc-card:hover .svc-arrow svg { color: #000; }

    /* ─── PROCESS ─── */
    .process {
      background: var(--bg-2);
      padding: 9rem 5rem;
      position: relative; overflow: hidden;
    }
    .process-inner { max-width: 1380px; margin: 0 auto; }
    .process-ghost {
      position: absolute;
      font-family: var(--display); font-size: 22rem; line-height: 1;
      color: rgba(255,255,255,.018);
      top: 50%; left: 50%;
      /* centering + parallax drift composed together via --py */
      transform: translate(-50%, calc(-50% + var(--py, 0px)));
      will-change: transform;
      white-space: nowrap; pointer-events: none; letter-spacing: .08em;
    }
    .process-steps {
      display: grid; grid-template-columns: repeat(4,1fr);
      gap: 0; margin-top: 5rem; position: relative;
    }
    .process-steps::before {
      content: '';
      position: absolute; top: 2rem; height: 1px;
      left: calc(12.5% + 1.5rem); right: calc(12.5% + 1.5rem);
      background: linear-gradient(to right, var(--yellow), var(--pink), var(--blue), transparent);
      opacity: .25;
    }
    .step { padding: 0 2.5rem; }
    .step-dot {
      width: 4rem; height: 4rem; border-radius: 50%;
      border: 1px solid var(--border-hi);
      display: flex; align-items: center; justify-content: center;
      font-family: var(--display); font-size: 1.2rem; color: var(--yellow);
      background: var(--bg-2); position: relative; z-index: 1;
      margin-bottom: 2rem;
    }
    .step-title { font-family: var(--display); font-size: 1.6rem; text-transform: uppercase; margin-bottom: .75rem; }
    .step-desc { font-size: .84rem; line-height: 1.72; color: var(--fg-muted); }

    /* ─── WORK / YOUTUBE SHOWCASE ─── */
    .showreel { max-width: 1380px; margin: 0 auto; padding: 9rem 5rem; }

    /* YouTube is the only group — centre it and let the two 16:9 players breathe */
    .work-group { margin-top: 4rem; max-width: 1120px; margin-left: auto; margin-right: auto; }
    .work-group-head {
      display: flex; align-items: baseline; justify-content: center; gap: 1rem;
      margin-bottom: 2.25rem;
    }
    .work-group-head .section-label { margin-bottom: 0; }
    .work-group-note {
      font-size: .8rem; color: var(--fg-muted); letter-spacing: .02em;
    }

    /* Two large players, side by side */
    .work-grid {
      display: grid;
      grid-template-columns: repeat(2, 1fr);
      gap: 1.5rem;
    }

    /* Card — dark frame, neon-yellow hover glow + lift to match site style */
    .work-card {
      position: relative;
      display: flex;
      flex-direction: column;
      background: var(--bg-card);
      border: 1px solid var(--border);
      border-radius: 4px;
      overflow: hidden;
      transition: transform .45s var(--ease-out), border-color .3s, box-shadow .3s;
    }
    .work-card:hover {
      transform: translateY(-6px);
      border-color: rgba(212,255,0,.5);
      box-shadow:
        0 18px 50px rgba(0,0,0,.5),
        0 0 0 1px rgba(212,255,0,.22),
        0 14px 44px rgba(212,255,0,.12);
    }

    /* 16:9 video frame holds the embed; the credit caption sits below it */
    .work-frame {
      position: relative;
      aspect-ratio: 16 / 9;
      width: 100%;
      overflow: hidden;
      background: #000;
    }

    /* Credit caption — title + ROLE only (no view counts / impact numbers) */
    .work-meta {
      padding: 1rem 1.15rem 1.1rem;
      border-top: 1px solid var(--border);
      background: linear-gradient(180deg, rgba(212,255,0,.025), transparent);
    }
    .work-title {
      font-family: var(--body);
      font-size: .9rem; font-weight: 600; line-height: 1.4; color: var(--fg);
      letter-spacing: .005em;
    }
    .work-role {
      display: flex; align-items: baseline; flex-wrap: wrap; gap: .5rem;
      margin-top: .5rem;
    }
    .work-role-lbl {
      flex-shrink: 0;
      font-size: .56rem; font-weight: 700; letter-spacing: .22em; text-transform: uppercase;
      color: #000; background: var(--yellow);
      padding: .22rem .5rem; border-radius: 2px; line-height: 1;
    }
    .work-role-txt {
      font-size: .76rem; line-height: 1.5; color: var(--fg-muted); letter-spacing: .01em;
    }

    /* Embed slot — iframe fills the 16:9 frame */
    .work-embed { position: absolute; inset: 0; background: #000; }
    .work-embed iframe {
      width: 100%; height: 100%;
      border: 0; display: block;
    }

    /* Skeleton shimmer shown until the embed loads */
    .work-embed::before {
      content: '';
      position: absolute; inset: 0;
      background:
        linear-gradient(100deg, transparent 20%, rgba(212,255,0,.06) 50%, transparent 80%) 0 0 / 200% 100%,
        var(--bg-2);
      animation: workShimmer 1.6s linear infinite;
    }
    .work-embed.is-loaded::before { display: none; }
    @keyframes workShimmer {
      from { background-position: 120% 0, 0 0; }
      to   { background-position: -120% 0, 0 0; }
    }

    .work-more {
      margin-top: 1.75rem;
      display: flex; flex-wrap: wrap; justify-content: center; gap: 1.75rem;
    }

    /* ─── #BLITZ30 ─── */
    .blitz-outer {
      background: var(--bg-2);
      border-top: 1px solid var(--border);
      border-bottom: 1px solid var(--border);
    }
    .blitz {
      max-width: 1380px; margin: 0 auto;
      padding: 9rem 5rem;
    }

    /* Header */
    .blitz-kicker {
      display: inline-flex; align-items: center; gap: .5rem;
      background: var(--yellow); color: #000;
      font-size: .6rem; font-weight: 700; letter-spacing: .25em; text-transform: uppercase;
      padding: .32rem .85rem; border-radius: 2px;
      margin-bottom: 2.5rem;
    }
    .blitz-h {
      font-family: var(--display);
      font-size: clamp(5rem, 11vw, 12rem);
      line-height: .87; text-transform: uppercase; letter-spacing: -.01em;
      margin-bottom: 1.5rem;
    }
    /*
      The neon # breathes — a soft glow pulse paired with a subtle scale so it
      reads as "alive" without distracting from the headline. inline-block lets
      the transform apply without disturbing the line's layout.
    */
    .blitz-h .bh-hash {
      color: var(--yellow);
      display: inline-block;
      transform-origin: 50% 58%;
      animation: hashGlow 3.6s ease-in-out infinite;
      will-change: transform, text-shadow;
    }
    @keyframes hashGlow {
      0%, 100% {
        transform: scale(1);
        text-shadow:
          0 0 12px rgba(212,255,0,.35),
          0 0 28px rgba(212,255,0,.14);
      }
      50% {
        transform: scale(1.055);
        text-shadow:
          0 0 22px rgba(212,255,0,.75),
          0 0 58px rgba(212,255,0,.40),
          0 0 96px rgba(212,255,0,.18);
      }
    }
    @media (prefers-reduced-motion: reduce) {
      .blitz-h .bh-hash {
        animation: none;
        text-shadow: 0 0 18px rgba(212,255,0,.4);
      }
    }
    .blitz-sub {
      font-family: var(--display);
      font-size: clamp(1.3rem, 2.6vw, 2.3rem);
      line-height: 1.08; text-transform: uppercase;
      color: var(--fg-muted); max-width: 860px;
    }

    /* Monthly Subscription banner */
    .blitz-banner {
      display: flex; align-items: center; gap: 1.4rem; flex-wrap: wrap;
      margin-top: 2.75rem;
      padding: 1.35rem 1.6rem;
      border: 1px solid rgba(212,255,0,.32);
      background: linear-gradient(90deg, rgba(212,255,0,.09), rgba(212,255,0,.012));
      border-radius: 4px;
    }
    .blitz-pill {
      display: inline-flex; align-items: center; gap: .55rem;
      background: var(--yellow); color: #000;
      font-family: var(--display); font-size: 1.15rem; letter-spacing: .1em;
      line-height: 1; text-transform: uppercase;
      padding: .6rem 1.15rem .5rem; border-radius: 999px; flex-shrink: 0;
      box-shadow: 0 0 26px rgba(212,255,0,.4);
    }
    .blitz-pill::before {
      content: ''; width: 8px; height: 8px; border-radius: 50%;
      background: #000; flex-shrink: 0;
      animation: pillPulse 1.7s ease-in-out infinite;
    }
    @keyframes pillPulse { 0%,100% { opacity: 1; } 50% { opacity: .22; } }
    .blitz-banner-txt {
      font-size: .94rem; line-height: 1.65; color: var(--fg); font-weight: 500;
      flex: 1; min-width: 240px;
    }

    /* Concept line */
    .blitz-concept {
      font-size: 1rem; line-height: 1.85; color: var(--fg-muted);
      max-width: 780px; margin-top: 2.5rem;
      padding-bottom: 5rem; border-bottom: 1px solid var(--border);
    }
    .blitz-concept i { font-style: normal; color: var(--yellow); font-weight: 500; }

    /* ─── Growth Animation ─── */
    .blitz-growth { padding: 5rem 0; border-bottom: 1px solid var(--border); }
    .bg-card {
      border: 1px solid var(--border-hi);
      background: linear-gradient(180deg, #0c0c0c, #080808);
      border-radius: 6px; padding: 2.5rem;
      position: relative; overflow: hidden;
    }
    .bg-head {
      display: flex; justify-content: space-between; align-items: baseline;
      flex-wrap: wrap; gap: .5rem; margin-bottom: 1.4rem;
    }
    .bg-tag {
      font-size: .63rem; font-weight: 700; letter-spacing: .3em; text-transform: uppercase;
      color: var(--yellow);
    }
    .bg-legend {
      font-size: .6rem; letter-spacing: .18em; text-transform: uppercase; color: var(--fg-muted);
    }

    /* Chart */
    .bg-chart { position: relative; width: 100%; }
    .bg-svg { display: block; width: 100%; height: auto; overflow: visible; }

    .bg-grid line { stroke: rgba(255,255,255,.06); stroke-width: 1; }

    /* Bars + line use a left→right (Day 1 → Day 30) brightness gradient so the
       early days read quiet/dim and the finish reads bright + explosive. */
    .bg-bar {
      fill: url(#barGrad);
      transform: scaleY(0); transform-box: fill-box; transform-origin: 50% 100%;
      transition: transform .9s var(--ease-out);
    }
    .is-live .bg-bar { transform: scaleY(1); }

    .bg-area { fill: url(#bgGrad); opacity: 0; transition: opacity 1s ease 1.2s; }
    .is-live .bg-area { opacity: 1; }

    .bg-line {
      fill: none; stroke: url(#lineGrad); stroke-width: 3;
      stroke-linecap: round; stroke-linejoin: round;
      filter: drop-shadow(0 0 7px rgba(212,255,0,.6));
      stroke-dasharray: 1; stroke-dashoffset: 1;
      transition: stroke-dashoffset 2.4s var(--ease-out);
    }
    .is-live .bg-line { stroke-dashoffset: 0; }

    /* The glowing dot rides the line as it draws — same path, same duration +
       easing as the line's stroke-dashoffset, so it sits on the drawing tip and
       lands on the Day 30 peak. Sits at Day 1 (offset 0%) until .is-live fires. */
    .bg-dot {
      fill: var(--yellow);
      offset-path: path('M25 203 L75 201 L125 198 L175 193 L225 184 L275 171 L325 153 L375 131 L425 104 L475 72 L525 38 L575 10');
      offset-distance: 0%;
      offset-rotate: 0deg;
      filter: drop-shadow(0 0 6px rgba(212,255,0,.85));
    }
    .is-live .bg-dot {
      animation:
        dotTravel 2.4s var(--ease-out) forwards,
        dotPulse 1.7s ease-in-out 2.4s infinite;
    }
    @keyframes dotTravel { from { offset-distance: 0%; } to { offset-distance: 100%; } }
    @keyframes dotPulse {
      0%,100% { filter: drop-shadow(0 0 5px rgba(212,255,0,.8)); }
      50%     { filter: drop-shadow(0 0 16px rgba(212,255,0,1)); }
    }

    /* Floating engagement icons */
    .bg-icons { position: absolute; inset: 0; pointer-events: none; overflow: hidden; }
    .bg-icon {
      position: absolute; bottom: 6px; width: 20px; height: 20px;
      color: var(--yellow); opacity: 0;
    }
    .bg-icon svg { width: 100%; height: 100%; filter: drop-shadow(0 0 5px rgba(212,255,0,.5)); }
    .is-live .bg-icon { animation: floatUp var(--dur,4.2s) var(--ease-out) var(--dly,0s) infinite; }
    @keyframes floatUp {
      0%   { transform: translateY(10px) scale(.65); opacity: 0; }
      12%  { opacity: 1; }
      78%  { opacity: .9; }
      100% { transform: translateY(-230px) scale(1.05); opacity: 0; }
    }

    /* 30-day timeline = the chart's x-axis. A track that fills Day 1 → Day 30,
       with day labels beneath that read low/quiet on the left, peak on the right. */
    .bg-timeline { margin-top: 1.5rem; }
    .bg-track {
      position: relative; height: 14px; border-radius: 999px;
      background: rgba(255,255,255,.05);
      border: 1px solid var(--border-hi); overflow: hidden;
    }
    .bg-fill {
      position: absolute; top: 0; left: 0; bottom: 0; width: 0;
      background: linear-gradient(90deg, rgba(212,255,0,.25), var(--yellow));
      box-shadow: 0 0 18px rgba(212,255,0,.5);
      transition: width 2.4s var(--ease-out);
    }
    .is-live .bg-fill { width: 100%; }
    /* 30 segment ticks overlaid */
    .bg-track::after {
      content: ''; position: absolute; inset: 0; pointer-events: none;
      background-image: repeating-linear-gradient(
        90deg,
        transparent 0,
        transparent calc(100% / 30 - 1px),
        rgba(5,5,5,.7) calc(100% / 30 - 1px),
        rgba(5,5,5,.7) calc(100% / 30)
      );
    }
    .bg-axis {
      display: flex; justify-content: space-between; align-items: baseline;
      margin-top: .65rem;
      font-size: .6rem; font-weight: 700; letter-spacing: .2em; text-transform: uppercase;
      color: var(--fg-muted);
    }
    .bg-axis .bg-axis-peak {
      color: var(--yellow);
      text-shadow: 0 0 12px rgba(212,255,0,.55);
    }

    /* ─── Tier accordions ─── */
    .blitz-tiers { padding: 5rem 0; }
    .blitz-tiers-lbl {
      font-size: .63rem; font-weight: 700; letter-spacing: .3em; text-transform: uppercase;
      color: var(--yellow); margin-bottom: 2.5rem;
    }
    .tier {
      border: 1px solid var(--border-hi); background: #0a0a0a;
      border-radius: 4px; margin-bottom: 1rem; overflow: hidden;
      transition: border-color .35s, box-shadow .35s;
    }
    .tier.open {
      border-color: rgba(212,255,0,.4);
      box-shadow: 0 0 0 1px rgba(212,255,0,.14), 0 20px 50px rgba(0,0,0,.45);
    }
    .tier-head {
      width: 100%; text-align: left; cursor: pointer;
      background: none; border: none; color: inherit; font-family: inherit;
      display: flex; align-items: center; gap: 1.25rem;
      padding: 1.7rem 2rem;
    }
    .tier-head:hover { background: rgba(212,255,0,.03); }
    .tier-head:focus-visible { outline: 2px solid var(--yellow); outline-offset: -3px; }
    .tier-n {
      font-family: var(--display); font-size: 1.45rem; color: var(--yellow);
      width: 2.2rem; flex-shrink: 0; line-height: 1;
    }
    .tier-titles { flex: 1; min-width: 0; }
    .tier-name {
      display: block;
      font-family: var(--display); font-size: clamp(1.4rem, 3.2vw, 1.85rem);
      text-transform: uppercase; letter-spacing: .02em; line-height: 1;
    }
    .tier-best { display: block; font-size: .8rem; line-height: 1.5; color: var(--fg-muted); margin-top: .4rem; }
    .tier-best b { color: var(--fg); font-weight: 600; }
    .tier-toggle {
      width: 34px; height: 34px; border-radius: 50%; flex-shrink: 0;
      border: 1px solid var(--border-hi); position: relative;
      transition: border-color .3s, transform .4s var(--ease-out);
    }
    .tier-toggle::before, .tier-toggle::after {
      content: ''; position: absolute; top: 50%; left: 50%; background: var(--yellow);
      transition: transform .4s var(--ease-out);
    }
    .tier-toggle::before { width: 12px; height: 2px; transform: translate(-50%, -50%); }
    .tier-toggle::after  { width: 2px; height: 12px; transform: translate(-50%, -50%); }
    .tier.open .tier-toggle { border-color: var(--yellow); transform: rotate(180deg); }
    .tier.open .tier-toggle::after { transform: translate(-50%, -50%) scaleY(0); }

    .tier-body {
      display: grid; grid-template-rows: 0fr;
      transition: grid-template-rows .5s var(--ease-out);
    }
    .tier.open .tier-body { grid-template-rows: 1fr; }
    .tier-body-inner { overflow: hidden; min-height: 0; }
    .tier-content { padding: 0 2rem 1.9rem; }
    .tier-row {
      display: grid; grid-template-columns: 160px 1fr; gap: 1.25rem;
      padding: 1.1rem 0; border-top: 1px solid var(--border);
    }
    .tier-row-lbl {
      font-size: .61rem; font-weight: 700; letter-spacing: .16em; text-transform: uppercase;
      color: var(--yellow); padding-top: .1rem;
    }
    .tier-row-val { font-size: .88rem; line-height: 1.7; color: var(--fg-muted); }
    .tier-row-val b { color: var(--fg); font-weight: 600; }
    .tier-feature {
      display: flex; gap: .85rem; align-items: flex-start; margin-top: 1.4rem;
      padding: 1.15rem 1.3rem; border-radius: 4px;
      background: rgba(212,255,0,.06); border: 1px solid rgba(212,255,0,.28);
    }
    .tier-feature svg { flex-shrink: 0; width: 22px; height: 22px; color: var(--yellow); margin-top: .1rem; }
    .tier-feature p { font-size: .86rem; line-height: 1.65; color: var(--fg); }
    .tier-feature b { color: var(--yellow); }

    /* ─── Closing CTA ─── */
    .blitz-cta { padding-top: 4rem; }
    .blitz-cta-line {
      font-family: var(--display);
      font-size: clamp(1.9rem, 4.4vw, 3.6rem);
      line-height: 1.02; text-transform: uppercase; max-width: 920px;
      margin-bottom: 2.25rem;
    }
    .blitz-cta-line i { font-style: normal; color: var(--yellow); }

    /* ─── Interactive Asset Calculator ─── */
    .sr-only {
      position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px;
      overflow: hidden; clip: rect(0,0,0,0); white-space: nowrap; border: 0;
    }
    .blitz-calc {
      margin-top: 5rem; padding: 2.5rem;
      border: 1px solid var(--border-hi);
      background: linear-gradient(180deg, #0c0c0c, #080808);
      border-radius: 6px;
    }
    .bc-intro { margin-bottom: 2rem; }
    .bc-kicker {
      font-size: .63rem; font-weight: 700; letter-spacing: .3em; text-transform: uppercase;
      color: var(--yellow);
    }
    .bc-title {
      font-family: var(--display);
      font-size: clamp(1.9rem, 3.6vw, 3rem);
      line-height: .98; text-transform: uppercase; margin: .55rem 0 .6rem;
    }
    .bc-sub { font-size: .9rem; line-height: 1.65; color: var(--fg-muted); max-width: 560px; }

    /* Controls */
    .bc-controls {
      display: grid; grid-template-columns: 1.2fr 1fr; gap: 2rem 2.5rem;
      padding-bottom: 2.25rem; margin-bottom: 2.25rem;
      border-bottom: 1px solid var(--border);
    }
    .bc-label {
      display: block;
      font-size: .6rem; font-weight: 700; letter-spacing: .24em; text-transform: uppercase;
      color: var(--fg-muted); margin-bottom: .9rem;
    }
    .bc-months-out { color: var(--yellow); margin-left: .35rem; letter-spacing: .12em; }

    .bc-tiers {
      display: flex; gap: .5rem; flex-wrap: wrap;
      background: rgba(255,255,255,.03);
      border: 1px solid var(--border); border-radius: 999px; padding: .35rem;
    }
    .bc-tier {
      flex: 1 1 auto; min-width: 0;
      font-family: var(--body); font-size: .72rem; font-weight: 600; letter-spacing: .02em;
      color: var(--fg-muted); background: transparent;
      border: 0; border-radius: 999px; padding: .7rem .6rem; cursor: pointer;
      white-space: nowrap; transition: color .25s, background .25s, box-shadow .25s;
    }
    .bc-tier:hover { color: var(--fg); }
    .bc-tier:focus-visible { outline: 2px solid var(--yellow); outline-offset: 2px; }
    .bc-tier.is-active {
      color: #000; background: var(--yellow);
      box-shadow: 0 0 20px rgba(212,255,0,.35);
    }

    /* Slider */
    .bc-slider {
      -webkit-appearance: none; appearance: none;
      width: 100%; height: 6px; border-radius: 999px; cursor: pointer;
      background: linear-gradient(90deg, var(--yellow) 0%, var(--yellow) var(--fill,0%), rgba(255,255,255,.1) var(--fill,0%));
      outline: none;
    }
    .bc-slider:focus-visible { box-shadow: 0 0 0 3px rgba(212,255,0,.3); }
    .bc-slider::-webkit-slider-thumb {
      -webkit-appearance: none; appearance: none;
      width: 20px; height: 20px; border-radius: 50%;
      background: var(--yellow); border: 3px solid #050505;
      box-shadow: 0 0 14px rgba(212,255,0,.7); cursor: pointer;
    }
    .bc-slider::-moz-range-thumb {
      width: 18px; height: 18px; border-radius: 50%;
      background: var(--yellow); border: 3px solid #050505;
      box-shadow: 0 0 14px rgba(212,255,0,.7); cursor: pointer;
    }
    .bc-ticks {
      display: flex; justify-content: space-between;
      margin-top: .6rem; padding: 0 2px;
      font-size: .6rem; font-weight: 700; letter-spacing: .1em; color: var(--fg-muted);
    }

    /* Outputs */
    .bc-body { display: grid; grid-template-columns: 1.5fr 1fr; gap: 2rem; align-items: start; }
    .bc-chart-card {
      border: 1px solid var(--border); border-radius: 5px;
      background: rgba(255,255,255,.012); padding: 1.4rem 1.5rem 1rem;
    }
    .bc-chart-head {
      display: flex; justify-content: space-between; align-items: center;
      flex-wrap: wrap; gap: .5rem; margin-bottom: 1rem;
    }
    .bc-chart-ttl {
      font-size: .6rem; font-weight: 700; letter-spacing: .22em; text-transform: uppercase;
      color: var(--fg-muted);
    }
    .bc-legend { display: flex; gap: 1rem; }
    .bc-lg {
      display: inline-flex; align-items: center; gap: .4rem;
      font-size: .64rem; font-weight: 600; letter-spacing: .05em; color: var(--fg-muted);
    }
    .bc-sw { width: 11px; height: 11px; border-radius: 2px; display: inline-block; }
    .bc-sw-static { background: var(--yellow); }
    .bc-sw-reel   { background: var(--pink); }
    .bc-chart { display: block; width: 100%; height: auto; overflow: visible; }

    .bc-bar-static { fill: var(--yellow); transition: y .55s var(--ease-out), height .55s var(--ease-out); }
    .bc-bar-reel   { fill: var(--pink);   transition: y .55s var(--ease-out), height .55s var(--ease-out); }
    .bc-bar-reel { filter: drop-shadow(0 0 6px rgba(255,32,85,.4)); }
    .bc-bar-static { filter: drop-shadow(0 0 6px rgba(212,255,0,.35)); }
    .bc-bar-val { fill: var(--fg); font-family: var(--body); font-size: 13px; font-weight: 600; text-anchor: middle; }
    .bc-bar-lbl { fill: var(--fg-muted); font-family: var(--body); font-size: 12px; font-weight: 600; text-anchor: middle; letter-spacing: .04em; }

    /* Summary stats */
    .bc-stats { display: grid; grid-template-columns: 1fr 1fr; gap: .9rem; margin-bottom: 1.5rem; }
    .bc-stat {
      border: 1px solid var(--border-hi); border-radius: 5px;
      background: rgba(212,255,0,.02); padding: 1rem 1.1rem;
    }
    .bc-stat:first-child { border-color: rgba(255,32,85,.3); }
    .bc-stat-n {
      display: block; font-family: var(--display);
      font-size: 2.5rem; line-height: 1; color: var(--yellow);
    }
    .bc-stat:first-child .bc-stat-n { color: var(--pink); }
    .bc-stat-freq { font-size: 1.7rem !important; }
    .bc-stat-l {
      display: block; margin-top: .4rem;
      font-size: .58rem; font-weight: 700; letter-spacing: .18em; text-transform: uppercase;
      color: var(--fg-muted);
    }

    /* Inclusions table */
    .bc-table { width: 100%; border-collapse: collapse; }
    .bc-table-cap {
      text-align: left; font-size: .58rem; font-weight: 700; letter-spacing: .2em;
      text-transform: uppercase; color: var(--yellow); padding-bottom: .8rem;
    }
    .bc-table th, .bc-table td {
      text-align: left; vertical-align: top; padding: .7rem 0;
      border-top: 1px solid var(--border); font-size: .78rem; line-height: 1.5;
    }
    .bc-table th {
      width: 38%; color: var(--fg-muted); font-weight: 600;
      font-size: .58rem; letter-spacing: .14em; text-transform: uppercase; padding-right: .8rem;
    }
    .bc-table td { color: var(--fg); }
    .bc-table td b { color: var(--yellow); font-weight: 600; }

    /* Blitz responsive */
    @media (max-width: 1100px) {
      .blitz { padding: 7rem 2.5rem; }
    }
    @media (max-width: 860px) {
      .bc-controls { grid-template-columns: 1fr; gap: 1.75rem; }
      .bc-body { grid-template-columns: 1fr; }
    }
    @media (max-width: 640px) {
      .blitz { padding: 5rem 1.4rem; }
      /* Tighten the stacked internal blitz spacing on phones (concept↔chart gap
         was concept's 5rem padding-bottom + growth's 5rem padding-top = 10rem). */
      .blitz-banner { margin-top: 2rem; }
      .blitz-concept { margin-top: 1.75rem; padding-bottom: 2.5rem; }
      .blitz-growth { padding: 2.75rem 0; }
      .blitz-tiers { padding: 3.25rem 0; }
      .blitz-calc { margin-top: 3rem; }
      .blitz-cta { padding-top: 3rem; }
      .bg-card { padding: 1.5rem 1.1rem; }
      .bg-axis { font-size: .52rem; letter-spacing: .12em; }
      .tier-head { padding: 1.35rem 1.25rem; gap: .9rem; }
      .tier-n { width: 1.6rem; font-size: 1.2rem; }
      .tier-content { padding: 0 1.25rem 1.5rem; }
      .tier-row { grid-template-columns: 1fr; gap: .35rem; }
      .blitz-calc { padding: 1.6rem 1.2rem; }
      .bc-tier { font-size: .66rem; padding: .65rem .4rem; letter-spacing: 0; }
      .bc-chart-card { padding: 1.1rem 1rem .8rem; }
      .bc-stat-n { font-size: 2.1rem; }
      .bc-stat-freq { font-size: 1.4rem !important; }
    }
    @media (max-width: 380px) {
      .bc-stats { grid-template-columns: 1fr; }
    }
    @media (prefers-reduced-motion: reduce) {
      .bc-bar-static, .bc-bar-reel { transition: none; }
    }

    /* Reduced motion: show the grown end-state instantly, no animation/streaming */
    @media (prefers-reduced-motion: reduce) {
      .bg-icons { display: none; }
      .bg-bar  { transform: scaleY(1); }
      .bg-area { opacity: 1; }
      .bg-line { stroke-dashoffset: 0; }
      .bg-dot  { offset-distance: 100%; }
      .bg-fill { width: 100%; }
    }

    /* ─── CTA BAND ─── */
    .cta-band { background: var(--yellow); padding: 7rem 5rem; position: relative; overflow: hidden; }
    .cta-ghost {
      position: absolute;
      font-family: var(--display); font-size: 20rem; letter-spacing: .05em;
      color: rgba(0,0,0,.06); top: 50%; left: 50%;
      transform: translate(-50%, calc(-50% + var(--py, 0px)));
      will-change: transform;
      white-space: nowrap; pointer-events: none;
    }
    .cta-inner {
      max-width: 1380px; margin: 0 auto;
      display: flex; align-items: center; justify-content: space-between; gap: 4rem;
      position: relative;
    }
    .cta-title {
      font-family: var(--display);
      font-size: clamp(3.5rem, 7vw, 7rem);
      line-height: .92; text-transform: uppercase; color: #000;
    }
    .cta-sub { font-size: .95rem; color: rgba(0,0,0,.55); margin-top: .8rem; max-width: 380px; line-height: 1.65; }

    /* ─── CONTACT ─── */
    .contact {
      display: grid; grid-template-columns: 1fr 1fr; gap: 9rem; align-items: start;
      max-width: 1380px; margin: 0 auto; padding: 9rem 5rem;
    }
    .contact-title {
      font-family: var(--display);
      font-size: clamp(3rem, 5vw, 5rem);
      line-height: .95; text-transform: uppercase; margin-bottom: 1.75rem;
    }
    .contact-title i { font-style: normal; color: var(--yellow); }
    .contact-desc { font-size: .9rem; line-height: 1.8; color: var(--fg-muted); margin-bottom: 3rem; }
    .contact-items { display: flex; flex-direction: column; gap: 1.5rem; }
    .ci { display: flex; gap: 1rem; align-items: flex-start; }
    .ci-icon {
      width: 38px; height: 38px; border-radius: 2px;
      border: 1px solid var(--border-hi);
      display: flex; align-items: center; justify-content: center; flex-shrink: 0;
    }
    .ci-icon svg { width: 15px; height: 15px; color: var(--yellow); }
    .ci-lbl { font-size: .6rem; font-weight: 700; letter-spacing: .16em; text-transform: uppercase; color: var(--fg-muted); margin-bottom: .2rem; }
    .ci-val { font-size: .9rem; font-weight: 500; }

    /* Form */
    .cform { display: flex; flex-direction: column; gap: 1.2rem; }
    .frow { display: grid; grid-template-columns: 1fr 1fr; gap: 1.2rem; }
    .fg { display: flex; flex-direction: column; gap: .45rem; }
    .flabel { font-size: .6rem; font-weight: 700; letter-spacing: .16em; text-transform: uppercase; color: var(--fg-muted); }
    .finput {
      background: rgba(255,255,255,.038);
      border: 1px solid var(--border);
      border-radius: 2px; padding: .95rem 1.2rem;
      color: var(--fg); font-family: var(--body); font-size: .88rem;
      outline: none; transition: border-color .25s, background .25s;
      -webkit-appearance: none;
    }
    .finput:focus { border-color: var(--yellow); background: rgba(212,255,0,.035); }
    .finput::placeholder { color: rgba(255,255,255,.18); }
    .ftextarea { min-height: 130px; resize: vertical; }
    .fselect option { background: var(--bg-card); }
    .btn-submit {
      background: var(--yellow); color: #000;
      padding: 1rem 2.5rem;
      font-size: .72rem; font-weight: 700;
      letter-spacing: .14em; text-transform: uppercase;
      border: none; border-radius: 2px;
      display: inline-flex; align-items: center; gap: .5rem;
      align-self: flex-start; transition: transform .25s, box-shadow .25s, background .25s;
    }
    .btn-submit:hover { transform: translateY(-2px); box-shadow: 0 12px 32px rgba(212,255,0,.3); }

    /* ─── FOOTER ─── */
    .footer-wrap {
      border-top: 1px solid var(--border);
      max-width: 1380px; margin: 0 auto;
      padding: 3.5rem 5rem;
      display: flex; align-items: center; justify-content: space-between;
    }
    .footer-logo {
      display: inline-flex;
      align-items: center;
      text-decoration: none;
    }
    .footer-logo img { height: 34px; width: auto; display: block; }
    .footer-copy { font-size: .72rem; color: var(--fg-muted); letter-spacing: .05em; }
    .socials { display: flex; gap: .75rem; }
    .soc {
      width: 34px; height: 34px; border-radius: 2px;
      border: 1px solid var(--border-hi);
      display: flex; align-items: center; justify-content: center;
      text-decoration: none;
      transition: border-color .25s, background .25s;
    }
    .soc:hover { border-color: var(--yellow); background: rgba(212,255,0,.07); }
    .soc svg { width: 13px; height: 13px; color: var(--fg-muted); transition: color .25s; }
    .soc:hover svg { color: var(--yellow); }

    /* ─── SCROLL REVEAL ─── */
    /*
      Reveals layer three eased properties — opacity, a translate+scale lift,
      and a soft blur that resolves to crisp — so sections "develop" into view
      like film rather than just snapping on. transform runs slightly longer
      than opacity for a graceful settle.
    */
    .rv {
      opacity: 0;
      transform: translateY(46px) scale(.97);
      filter: blur(8px);
      transition:
        opacity 1.05s var(--ease-out),
        transform 1.15s var(--ease-out),
        filter .9s var(--ease-out);
    }
    .rv.on { opacity: 1; transform: none; filter: blur(0); }
    .rv-d1 { transition-delay: .09s; }
    .rv-d2 { transition-delay: .18s; }
    .rv-d3 { transition-delay: .27s; }
    .rv-d4 { transition-delay: .36s; }
    .rv-d5 { transition-delay: .45s; }

    .stagger > * {
      opacity: 0;
      transform: translateY(36px) scale(.97);
      filter: blur(6px);
      transition:
        opacity .85s var(--ease-out),
        transform .95s var(--ease-out),
        filter .75s var(--ease-out);
    }
    .stagger.on > *:nth-child(1) { opacity:1; transform:none; filter:blur(0); transition-delay:.04s; }
    .stagger.on > *:nth-child(2) { opacity:1; transform:none; filter:blur(0); transition-delay:.14s; }
    .stagger.on > *:nth-child(3) { opacity:1; transform:none; filter:blur(0); transition-delay:.24s; }
    .stagger.on > *:nth-child(4) { opacity:1; transform:none; filter:blur(0); transition-delay:.34s; }
    .stagger.on > *:nth-child(5) { opacity:1; transform:none; filter:blur(0); transition-delay:.44s; }
    .stagger.on > *:nth-child(6) { opacity:1; transform:none; filter:blur(0); transition-delay:.54s; }

    /* Keyframes shared */
    @keyframes slideUp { to { opacity:1; transform:translateY(0); } }
    @keyframes fadeUp  { to { opacity:1; transform:translateY(0); } }

    /* ─── RESPONSIVE ─── */
    @media (max-width: 1100px) {
      #nav, #nav.scrolled { padding: 1.4rem 2.5rem; }
      .nav-links { display: none; }
      .nav-btn { display: none; }            /* CTA moves into the mobile menu */
      .nav-toggle { display: flex; }
      .mobile-menu { display: flex; }
      .nav-logo img { height: 48px; }
      .hero { padding: 0 2.5rem 5.5rem; }
      .about { grid-template-columns: 1fr; gap: 5rem; padding: 7rem 2.5rem; }
      .about-visual { order: -1; }
      /* Tuck the badge + corner inside the frame on mobile so neither bleeds
         past the frame edges (the desktop overhang relies on side gutters
         that collapse in the single-column layout). */
      .about-badge { bottom: 1rem; left: 1rem; padding: 1.1rem 1.25rem; }
      .badge-n { font-size: 2.1rem; }
      .about-corner { top: 1rem; right: 1rem; width: 76px; height: 76px; }
      .services { padding: 0 2.5rem 7rem; }
      .svc-grid { grid-template-columns: 1fr; }
      .process { padding: 7rem 2.5rem; }
      .process-steps { grid-template-columns: 1fr 1fr; gap: 3.5rem; }
      .process-steps::before { display: none; }
      .showreel { padding: 7rem 2.5rem; }
      .cta-band { padding: 5.5rem 2.5rem; }
      .cta-inner { flex-direction: column; align-items: flex-start; gap: 2.5rem; }
      .contact { grid-template-columns: 1fr; gap: 5rem; padding: 7rem 2.5rem; }
      .footer-wrap { flex-direction: column; gap: 2rem; text-align: center; padding: 3rem 2.5rem; }
    }
    @media (max-width: 640px) {
      .hero-title { font-size: clamp(4.2rem, 20vw, 6rem); }
      .hero-footer { flex-direction: column; align-items: flex-start; gap: 1.75rem; }
      .hero-actions { flex-wrap: wrap; gap: .9rem 1.25rem; }
      .hero-eyebrow { flex-wrap: wrap; gap: .6rem; margin-bottom: 1.25rem; }
      .ey-line { display: none; }            /* trailing dash looks odd once text wraps */
      .scroll-caret { display: none; }       /* decorative — overlaps the CTAs on short screens */
      /* All three stats stay on ONE row on phones — numbers + labels shrink
         responsively so nothing wraps or overflows at 390px. */
      .about-stats { grid-template-columns: repeat(3, 1fr); gap: .7rem; }
      .stat { padding-top: .9rem; }
      .stat-n { font-size: clamp(1.6rem, 7.4vw, 2.5rem); }
      .stat-l { font-size: .5rem; letter-spacing: .04em; line-height: 1.35; margin-top: .3rem; }
      .frow { grid-template-columns: 1fr; }
      .process-steps { grid-template-columns: 1fr; gap: 2.5rem; margin-top: 3rem; }
      .work-grid { grid-template-columns: 1fr; }
      .svc-card { padding: 2.75rem 2rem; }
      .svc-n { top: 2.75rem; right: 2rem; font-size: 4.5rem; }
      .svc-arrow { bottom: 2.75rem; right: 2rem; }

      /* ── Phone vertical rhythm: collapse the oversized section paddings/margins
         (each "gap" between sections is the SUM of adjacent paddings) into a
         consistent, intentional scale. Desktop/tablet spacing is untouched. ── */
      .about { padding-top: 5rem; padding-bottom: 5rem; gap: 3rem; }
      .services { padding-bottom: 3rem; }     /* was 7rem → kills Services↔Process gap */
      .process { padding-top: 4rem; padding-bottom: 4rem; }
      .showreel { padding-top: 4.5rem; padding-bottom: 4.5rem; }
      .work-group { margin-top: 2.75rem; }
      .cta-band { padding-top: 4.5rem; padding-bottom: 4.5rem; }
      .contact { padding-top: 5rem; padding-bottom: 5rem; gap: 3.5rem; }
    }
    @media (max-width: 420px) {
      #nav, #nav.scrolled { padding: 1.1rem 1.4rem; }
      .mobile-menu { padding: .5rem 1.4rem 1.6rem; }
      .hero { padding: 0 1.4rem 4.5rem; }
    }
    /* Touch devices: restore the native cursor, drop the custom one */
    @media (hover: none), (pointer: coarse) {
      body { cursor: auto; }
      #cursor, #cursor-ring { display: none; }
    }
    @media (prefers-reduced-motion: reduce) {
      *, *::before, *::after { animation-duration: .01ms !important; transition-duration: .01ms !important; }
      .title-inner, .hero-eyebrow, .hero-footer, .scroll-caret { opacity:1 !important; transform:none !important; }
      .rv, .stagger > * { opacity:1 !important; transform:none !important; filter:none !important; }
    }
