  /* Self-hosted Poppins (latin subset) — removes render-blocking Google Fonts request */
  @font-face { font-family: 'Poppins'; font-style: normal; font-weight: 300; font-display: swap; src: url('/assets/fonts/poppins-300.woff2') format('woff2'); }
  @font-face { font-family: 'Poppins'; font-style: normal; font-weight: 400; font-display: swap; src: url('/assets/fonts/poppins-400.woff2') format('woff2'); }
  @font-face { font-family: 'Poppins'; font-style: normal; font-weight: 500; font-display: swap; src: url('/assets/fonts/poppins-500.woff2') format('woff2'); }
  @font-face { font-family: 'Poppins'; font-style: normal; font-weight: 600; font-display: swap; src: url('/assets/fonts/poppins-600.woff2') format('woff2'); }
  @font-face { font-family: 'Poppins'; font-style: normal; font-weight: 700; font-display: swap; src: url('/assets/fonts/poppins-700.woff2') format('woff2'); }

  :root {
    --ink: #050505;
    --ink-soft: #0B0B0F;
    --charcoal: #17171C;
    --paper: #FFFFFF;
    --off-white: #F7F7F8;
    --warm-off-white: #F4F1EC;
    --grey-text: #6B6B76;
    --border: #E2E2E7;
    --border-on-ink: rgba(255, 255, 255, 0.10);

    --grad-orange:  #FF7A2F;
    --grad-coral:   #FF5B5F;
    --grad-pink:    #FF3E91;
    --grad-magenta: #D83DFF;
    --grad-purple:  #7A4DFF;
    --gradient: linear-gradient(90deg, var(--grad-orange) 0%, var(--grad-coral) 25%, var(--grad-pink) 50%, var(--grad-magenta) 75%, var(--grad-purple) 100%);
    --gradient-soft: linear-gradient(135deg, rgba(255,122,47,0.12) 0%, rgba(255,62,145,0.10) 50%, rgba(122,77,255,0.14) 100%);

    --font: 'Poppins', system-ui, -apple-system, sans-serif;
    --container: 1400px;
    --radius-card: 16px;
    --radius-large: 24px;
    --radius-pill: 999px;
  }
  *,*::before,*::after { box-sizing: border-box; }
  html { scroll-behavior: smooth; }
  body {
    margin: 0;
    font-family: var(--font);
    font-weight: 400;
    color: var(--ink);
    background: var(--off-white);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    text-rendering: optimizeLegibility;
    line-height: 1.55;
    font-synthesis: none;
  }
  img { max-width: 100%; display: block; }
  a { color: inherit; text-decoration: none; }
  button { font-family: inherit; cursor: pointer; }

  .container { width: 100%; max-width: var(--container); margin: 0 auto; padding: 0 20px; }
  .section { padding: 100px 0; position: relative; overflow: hidden; }
  .section.tight { padding: 60px 0; }

  h1, h2, h3, h4 { font-family: var(--font); font-weight: 600; margin: 0; letter-spacing: -0.025em; line-height: 1.05; color: inherit; text-wrap: balance; }
  p, .lede { text-wrap: pretty; }
  h1 { font-size: clamp(48px, 6.4vw, 88px); letter-spacing: -0.035em; line-height: 0.98; }
  h2 { font-size: clamp(36px, 4.6vw, 64px); letter-spacing: -0.03em; line-height: 1.04; }
  h3 { font-size: clamp(20px, 2vw, 26px); letter-spacing: -0.018em; line-height: 1.2; }
  h3.card-h { font-size: 17px; letter-spacing: -0.01em; }
  p  { margin: 0; font-size: 16px; line-height: 1.6; }
  .lede { font-size: 16px; line-height: 1.55; color: var(--grey-text); }
  .dark .lede { color: rgba(255,255,255,0.7); }

  .ig {
    background: var(--gradient);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    -webkit-text-fill-color: transparent;
  }
  .ig.shimmer {
    background-size: 200% 100%;
    animation: shimmer 6s linear infinite;
  }
  @keyframes shimmer {
    from { background-position: 0% 0%; }
    to { background-position: 200% 0%; }
  }
  @media (prefers-reduced-motion: reduce) { .ig.shimmer { animation: none; } }
  .eyebrow { font-size: 11px; font-weight: 600; letter-spacing: 0.18em; text-transform: uppercase; color: var(--grey-text); }
  .eyebrow.on-ink { color: rgba(255,255,255,0.6); }

  .btn { display: inline-flex; align-items: center; justify-content: center; gap: 8px; padding: 14px 22px; border-radius: var(--radius-pill); font-weight: 500; font-size: 14px; transition: transform 200ms ease, box-shadow 220ms ease, background 200ms ease, color 200ms ease, border-color 200ms ease; border: 1.5px solid transparent; }
  .btn-primary { background: var(--ink); color: var(--paper); }
  .btn-primary:hover { transform: translateY(-1px); box-shadow: 0 0 0 1.5px var(--grad-pink), 0 12px 32px rgba(255,62,145,0.18); }
  .btn-light { background: var(--paper); color: var(--ink); }
  .btn-light:hover { transform: translateY(-1px); box-shadow: 0 12px 32px rgba(0,0,0,0.18); }
  .btn-secondary { background: transparent; color: var(--ink); border-color: rgba(11,11,15,0.18); }
  .btn-secondary:hover { border-color: var(--ink); }
  .arrow { width: 14px; height: 14px; transition: transform 220ms ease; }
  .btn:hover .arrow { transform: translateX(3px); }

  /* ── Nav ─────────────────────────────────────────── */
  .nav { position: fixed; top: 14px; left: 50%; transform: translateX(-50%); z-index: 50; backdrop-filter: blur(20px) saturate(140%); -webkit-backdrop-filter: blur(20px) saturate(140%); background: rgba(5,5,5,0.72); border: 1px solid rgba(255,255,255,0.08); border-radius: var(--radius-pill); padding: 8px 8px 8px 22px; display: flex; align-items: center; gap: 28px; }
  .nav-logo { display: inline-flex; align-items: center; gap: 10px; color: var(--paper); font-weight: 600; letter-spacing: -0.02em; font-size: 15px; }
  .nav-logo svg { height: 18px; width: auto; display: block; }
  .nav-logo .dot { width: 8px; height: 8px; border-radius: 50%; background: var(--gradient); box-shadow: 0 0 12px rgba(255,62,145,0.6); flex-shrink: 0; }
  .nav-links { display: flex; align-items: center; gap: 24px; }
  .nav-links a { color: rgba(255,255,255,0.7); font-size: 13px; font-weight: 500; transition: color 180ms ease; }
  .nav-links a:hover { color: var(--paper); }
  .nav .btn { padding: 9px 18px; font-size: 13px; background: var(--paper); color: var(--ink); white-space: nowrap; flex-shrink: 0; }
  .nav-logo { flex-shrink: 0; }
  @media (max-width: 760px) { .nav-links { display: none; } }

  /* ── Hero, single column ─────────────────────────── */
  .hero { padding: 4px; background: var(--off-white); }
  .hero-card { border-radius: var(--radius-card); overflow: hidden; position: relative; background: var(--ink); color: var(--paper); --mx: 50%; --my: 50%; }
  .hero-spot { position: absolute; inset: 0; pointer-events: none; z-index: 0; background:
    radial-gradient(680px circle at var(--mx) var(--my),
      rgba(255,122,47,0.65) 0%,
      rgba(255,91,95,0.52) 18%,
      rgba(255,62,145,0.42) 36%,
      rgba(216,61,255,0.30) 54%,
      rgba(122,77,255,0.18) 70%,
      transparent 84%);
    mix-blend-mode: screen; opacity: 0; transition: opacity 0.5s ease; }
  .hero-card:hover .hero-spot, .hero-card:focus-within .hero-spot { opacity: 1; }
  @media (hover: none) { .hero-spot { display: none; } }
  @media (prefers-reduced-motion: reduce) { .hero-spot { display: none; } }
  .hero-inner { position: relative; z-index: 1; max-width: 1080px; margin: 0 auto; padding: 96px 80px; display: flex; flex-direction: column; align-items: center; text-align: center; }
  .hero-inner h1 { margin-bottom: 24px; max-width: 820px; }
  .hero-inner .brand-rule { height: 2px; width: 56px; background: var(--gradient); border-radius: 2px; margin-bottom: 28px; }
  .hero-inner .lede { color: rgba(255,255,255,0.72); margin-bottom: 36px; max-width: 620px; }
  .hero-actions { display: flex; gap: 12px; flex-wrap: wrap; justify-content: center; margin-bottom: 56px; }
  .hero-inner .btn-primary { background: var(--paper); color: var(--ink); }
  .hero-inner .btn-primary:hover { box-shadow: 0 12px 28px rgba(255,62,145,0.3), 0 0 0 1.5px var(--grad-pink); }

  .hero-bloom-tl { position: absolute; top: -180px; left: -120px; width: 520px; height: 520px; border-radius: 50%; background: radial-gradient(circle, rgba(255,122,47,0.32) 0%, rgba(255,91,95,0.18) 35%, rgba(216,61,255,0.08) 65%, transparent 80%); opacity: 0.6; pointer-events: none; z-index: 0; }
  .hero-bloom-br { position: absolute; bottom: -200px; right: -160px; width: 600px; height: 600px; border-radius: 50%; background: radial-gradient(circle, rgba(216,61,255,0.32) 0%, rgba(255,62,145,0.20) 35%, rgba(122,77,255,0.10) 60%, transparent 78%); opacity: 0.6; pointer-events: none; z-index: 0; }

  .vsl-stage { position: relative; width: 100%; display: flex; justify-content: center; }
  .vsl-stage::before { content: ""; position: absolute; left: 50%; top: 50%; transform: translate(-50%,-50%); width: 110%; max-width: 1100px; aspect-ratio: 16/9; background:
    radial-gradient(ellipse at 30% 30%, rgba(255,122,47,0.55) 0%, transparent 55%),
    radial-gradient(ellipse at 70% 70%, rgba(216,61,255,0.55) 0%, transparent 55%),
    radial-gradient(ellipse at 50% 100%, rgba(122,77,255,0.45) 0%, transparent 60%);
    filter: blur(50px); pointer-events: none; z-index: 0; opacity: 0.85; }
  .vsl-frame { width: 100%; max-width: 880px; aspect-ratio: 16/9; border-radius: var(--radius-large); overflow: hidden; position: relative; box-shadow: 0 40px 100px rgba(0,0,0,0.55); z-index: 1; }
  .vsl-frame::before { content: ""; position: absolute; inset: -1.5px; border-radius: calc(var(--radius-large) + 1.5px); padding: 1.5px; background: var(--gradient); -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0); -webkit-mask-composite: xor; mask-composite: exclude; pointer-events: none; opacity: 0.55; z-index: 4; }
  .vsl-frame iframe { position: absolute; inset: 0; width: 100%; height: 100%; border: 0; }
  .vsl-poster { position: absolute; inset: 0; background-size: cover; background-position: center; cursor: pointer; z-index: 3; display: flex; align-items: center; justify-content: center; transition: opacity 400ms ease; }
  .vsl-poster::after { content: ""; position: absolute; inset: 0; background: linear-gradient(180deg, rgba(0,0,0,0.10) 0%, transparent 30%, transparent 55%, rgba(0,0,0,0.6) 100%); pointer-events: none; }
  .vsl-poster.hidden { opacity: 0; pointer-events: none; }
  .vsl-play { position: relative; width: 92px; height: 92px; border-radius: 50%; background: rgba(255,255,255,0.96); display: flex; align-items: center; justify-content: center; border: 0; cursor: pointer; box-shadow: 0 16px 40px rgba(0,0,0,0.45); transition: transform 280ms ease; z-index: 2; }
  .vsl-poster:hover .vsl-play { transform: scale(1.06); }
  .vsl-play svg { width: 26px; height: 26px; color: var(--ink); margin-left: 4px; }
  .vsl-play::before, .vsl-play::after { content: ""; position: absolute; inset: 0; border-radius: 50%; border: 2px solid rgba(255,255,255,0.7); animation: vsl-pulse 2.6s cubic-bezier(.4,0,.2,1) infinite; pointer-events: none; }
  .vsl-play::after { animation-delay: 1.3s; }
  @keyframes vsl-pulse { 0% { transform: scale(1); opacity: 0.7; } 100% { transform: scale(1.85); opacity: 0; } }
  .vsl-stage { display: flex; flex-direction: column; align-items: center; }
  .vsl-caption { display: inline-flex; align-items: center; gap: 6px; margin-top: 22px; padding: 6px 12px; border-radius: var(--radius-pill); background: rgba(255,255,255,0.06); border: 1px solid rgba(255,255,255,0.12); font-weight: 600; letter-spacing: 0.14em; font-size: 11px; text-transform: uppercase; color: rgba(255,255,255,0.85); }
  .vsl-caption svg { width: 9px; height: 9px; }
  .vsl-transcript { margin-top: 16px; max-width: 880px; width: 100%; color: rgba(255,255,255,0.7); }
  .vsl-transcript summary { cursor: pointer; padding: 8px 14px; border-radius: var(--radius-pill); background: rgba(255,255,255,0.04); border: 1px solid rgba(255,255,255,0.10); font-size: 11px; font-weight: 600; letter-spacing: 0.14em; text-transform: uppercase; color: rgba(255,255,255,0.65); display: inline-flex; align-items: center; gap: 6px; list-style: none; transition: background 200ms ease, border-color 200ms ease; }
  .vsl-transcript summary::-webkit-details-marker { display: none; }
  .vsl-transcript summary:hover { background: rgba(255,255,255,0.08); border-color: rgba(255,255,255,0.18); color: rgba(255,255,255,0.9); }
  .vsl-transcript[open] summary { background: rgba(255,255,255,0.08); }
  .vsl-transcript-body { margin-top: 18px; padding: 24px 28px; border-radius: var(--radius-card); background: rgba(255,255,255,0.03); border: 1px solid rgba(255,255,255,0.08); font-size: 14px; line-height: 1.7; text-align: left; max-height: 480px; overflow-y: auto; }
  .vsl-transcript-body p { margin-bottom: 12px; color: rgba(255,255,255,0.78); }
  .vsl-transcript-body p:last-child { margin-bottom: 0; }
  .vsl-transcript-body strong { color: var(--paper); }

  /* ── Free mini-series (interspersed VSL sections) ───────────── */
  .training { background: var(--ink); color: var(--paper); position: relative; overflow: hidden; }
  .training::before { content: ""; position: absolute; left: 50%; top: -12%; width: 72%; aspect-ratio: 1; transform: translateX(-50%); border-radius: 50%; background: radial-gradient(circle, rgba(255,122,47,0.16) 0%, rgba(216,61,255,0.12) 45%, transparent 70%); filter: blur(72px); pointer-events: none; z-index: 0; }
  .training > .container { position: relative; z-index: 1; }
  .training .sec-head { margin-bottom: 44px; }
  .training .sec-head .eyebrow { color: rgba(255,255,255,0.6); }
  .training .sec-head h2 { color: var(--paper); }
  .training .sec-head .lede { color: rgba(255,255,255,0.72); }
  .training .vsl-frame { max-width: 760px; box-shadow: 0 32px 80px rgba(0,0,0,0.5); }
  .training .vsl-cta { display: flex; justify-content: center; margin-top: 34px; }
  .training .vsl-cta .btn { background: var(--paper); color: var(--ink); }
  .training .vsl-cta .btn:hover { box-shadow: 0 12px 28px rgba(255,62,145,0.3), 0 0 0 1.5px var(--grad-pink); }

  @media (max-width: 980px) {
    .hero-inner { padding: 64px 24px; }
    .hero-inner h1 { font-size: 44px; line-height: 1.05; }
  }

  /* ── Logos strip, marquee ───────────────────────── */
  .logos { background: var(--paper); padding: 64px 0; border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); }
  .logos-row { display: flex; align-items: center; gap: 32px; }
  .logos-label { font-size: 11px; font-weight: 600; letter-spacing: 0.18em; text-transform: uppercase; color: var(--grey-text); white-space: nowrap; flex-shrink: 0; padding-left: 20px; }
  .marquee {
    flex: 1;
    overflow: hidden;
    -webkit-mask-image: linear-gradient(to right, transparent 0%, black 8%, black 92%, transparent 100%);
            mask-image: linear-gradient(to right, transparent 0%, black 8%, black 92%, transparent 100%);
  }
  .marquee-track {
    display: flex;
    gap: 64px;
    align-items: center;
    width: max-content;
    animation: marquee 38s linear infinite;
  }
  @keyframes marquee {
    from { transform: translateX(0); }
    to   { transform: translateX(-50%); }
  }
  .marquee:hover .marquee-track { animation-play-state: paused; }
  @media (prefers-reduced-motion: reduce) { .marquee-track { animation: none; } }
  .marquee-track img {
    height: 44px;
    width: auto;
    object-fit: contain;
    opacity: 0.7;
    filter: grayscale(100%);
    mix-blend-mode: multiply;
    transition: opacity 220ms ease, filter 220ms ease;
    flex-shrink: 0;
  }
  .marquee-track img:hover { opacity: 1; filter: grayscale(0); }

  /* ── Section header (centered eyebrow + headline) ─ */
  .sec-head { text-align: center; max-width: 880px; margin: 0 auto 56px; }
  .sec-head .brand-rule { height: 2px; width: 48px; background: var(--gradient); border-radius: 2px; margin: 0 auto 24px; }
  .sec-head .eyebrow { display: inline-block; margin-bottom: 16px; }
  .sec-head h2 { display: block; }
  .sec-head .lede { margin: 16px auto 0; max-width: 600px; }

  /* ── Services, asymmetric grid ──────────────────── */
  .services { background: var(--off-white); }
  .services-grid { display: grid; grid-template-columns: 1.55fr 1fr; gap: 14px; }
  .svc-card { border-radius: var(--radius-large); padding: 24px 24px 0; height: 380px; display: flex; flex-direction: column; gap: 4px; position: relative; overflow: hidden; transition: transform 280ms ease, box-shadow 280ms ease; }
  .svc-card.with-text-bottom { padding-bottom: 22px; }
  .svc-card.split { padding: 0; }
  .svc-card.light { background: var(--paper); border: 1px solid var(--border); }
  .svc-card.glow { background: var(--ink); color: var(--paper); }
  .svc-card.glow::before { content: ""; position: absolute; inset: 0; background: radial-gradient(ellipse at 50% -10%, rgba(255,122,47,0.45) 0%, rgba(255,62,145,0.28) 30%, rgba(122,77,255,0.16) 60%, transparent 88%); pointer-events: none; }
  .svc-card.glow.bottom::before { background: radial-gradient(ellipse at 30% 105%, rgba(216,61,255,0.55) 0%, rgba(255,62,145,0.30) 25%, rgba(122,77,255,0.16) 55%, transparent 85%); }
  .svc-card .svc-head { display: flex; flex-direction: column; gap: 6px; align-items: center; text-align: center; position: relative; z-index: 2; }
  .svc-card .svc-head h3 { font-size: clamp(26px, 2.4vw, 34px); font-weight: 600; letter-spacing: -0.02em; }
  .svc-card .svc-head .eyebrow { font-size: 11px; }
  .svc-card.glow .svc-head .eyebrow { color: rgba(255,255,255,0.65); }
  .svc-card p { font-size: 14px; line-height: 1.55; color: var(--grey-text); position: relative; z-index: 2; }
  .svc-card.glow p { color: rgba(255,255,255,0.78); }
  .svc-visual { flex: 1; position: relative; z-index: 1; }

  /* Card 1 (light): tilted Premiere screenshot bleeding to bottom */
  .svc-edit { perspective: 1400px; display: flex; align-items: flex-start; justify-content: center; overflow: visible; padding-top: 18px; margin-top: 0; }
  .svc-edit img { width: 105%; max-width: 680px; border-radius: 10px; box-shadow: 0 24px 48px rgba(11,11,15,0.22), 0 4px 12px rgba(11,11,15,0.08); transform: rotateX(14deg) translateY(0%); transform-origin: 50% 100%; transition: transform 600ms cubic-bezier(.2,.8,.2,1); }
  .svc-card:hover .svc-edit img { transform: rotateX(6deg) translateY(-4%); }

  /* Card 2 (split horizontal): text-left + iPhone-right bleeding to edge */
  .svc-card.split-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 0; padding: 0; align-items: stretch; }
  .svc-card.split-2 .svc-text { padding: 28px 0 28px 28px; display: flex; flex-direction: column; gap: 12px; justify-content: flex-start; align-items: flex-start; position: relative; z-index: 2; }
  .svc-card.split-2 .svc-text h3 { font-size: clamp(24px, 2.2vw, 30px); font-weight: 600; letter-spacing: -0.02em; line-height: 1.1; }
  .svc-card.split-2 .svc-text p { font-size: 15px; line-height: 1.55; color: rgba(255,255,255,0.82); max-width: 280px; }
  .svc-card.split-2 .svc-iphone { padding: 0; align-items: flex-end; justify-content: center; position: relative; height: 100%; overflow: hidden; }
  .svc-iphone .iphone {
    position: absolute;
    bottom: -8%;
    left: 50%;
    transform: translateX(-50%) rotate(-3deg);
    width: 86%;
    aspect-ratio: 250/511;
    transition: transform 500ms cubic-bezier(.2,.8,.2,1);
  }
  .svc-card:hover .svc-iphone .iphone { transform: translateX(-50%) rotate(-1deg) translateY(-10px); }
  .svc-iphone .iphone .frame {
    position: absolute; inset: 0;
    background-image: url('/assets/SmHXNBJFOnB1dbDEG9VsOBodno.png');
    background-size: contain;
    background-repeat: no-repeat;
    background-position: top center;
    z-index: 2;
    pointer-events: none;
  }
  .svc-iphone .iphone video {
    position: absolute;
    top: 1.6%;
    left: 5%;
    width: 90%;
    height: 79%;
    object-fit: cover;
    border-radius: 22px 22px 0 0;
    z-index: 1;
  }

  /* Card 3 (glow.bottom): tilted thumbnails marquee + cursor, large */
  .svc-thumbs-wrap { perspective: 1400px; padding-top: 8px; position: relative; flex: 1; display: flex; align-items: center; }
  .svc-thumbs-tilt {
    width: 100%;
    transform: perspective(1400px) rotate(-2deg) rotateX(18deg);
    transform-origin: 50% 100%;
    overflow: hidden;
    -webkit-mask-image: linear-gradient(to right, transparent 0%, black 6%, black 94%, transparent 100%);
            mask-image: linear-gradient(to right, transparent 0%, black 6%, black 94%, transparent 100%);
  }
  .svc-thumbs-track { display: flex; gap: 12px; align-items: center; width: max-content; animation: thumbs-scroll 32s linear infinite; }
  @keyframes thumbs-scroll {
    from { transform: translateX(0); }
    to   { transform: translateX(-50%); }
  }
  .svc-card:hover .svc-thumbs-track { animation-play-state: paused; }
  @media (prefers-reduced-motion: reduce) { .svc-thumbs-track { animation: none; } }
  .svc-thumbs-track .t-thumb {
    height: 280px;
    width: 158px;
    flex-shrink: 0;
    border-radius: 14px;
    background-size: cover;
    background-position: center;
    box-shadow: 0 16px 32px rgba(0,0,0,0.45);
  }
  .svc-thumbs-track .t-thumb.wide { width: 498px; }
  .svc-cursor {
    position: absolute;
    bottom: 8px;
    left: 50%;
    width: 64px;
    height: 64px;
    background: url('/assets/IsZV88WNdmt0ijkQfSuWumLc6do.png') center/contain no-repeat;
    transform: translateX(-50%) rotate(-22deg);
    z-index: 5;
    filter: drop-shadow(0 6px 14px rgba(0,0,0,0.55));
    pointer-events: none;
  }

  /* Card 4 (light): motion graphics image, larger */
  .svc-motion { display: flex; align-items: center; justify-content: center; padding-bottom: 4px; }
  .svc-motion img { width: 80%; max-height: 200px; object-fit: contain; transition: transform 500ms cubic-bezier(.2,.8,.2,1); filter: drop-shadow(0 10px 24px rgba(11,11,15,0.10)); }
  .svc-card:hover .svc-motion img { transform: translateY(-4px) scale(1.03); }
  .svc-foot { text-align: center; margin: 0 auto; max-width: 280px; padding-top: 8px; }

  @media (max-width: 980px) {
    .services-grid { grid-template-columns: 1fr; }
    .svc-card { height: 440px; }
    .svc-card.split-2 { grid-template-columns: 1fr; height: auto; min-height: 480px; }
    .svc-card.split-2 .svc-iphone { height: 280px; }
  }

  /* ── About + working philosophy ─────────────────── */
  .about { background: var(--off-white); padding: 110px 0; position: relative; overflow: hidden; }
  .about::before { content: ""; position: absolute; right: -10%; top: -20%; width: 50%; aspect-ratio: 1; border-radius: 50%; background: radial-gradient(circle, rgba(255,122,47,0.15) 0%, rgba(255,62,145,0.08) 40%, transparent 70%); filter: blur(60px); pointer-events: none; }
  .about-grid { display: grid; grid-template-columns: 0.85fr 1.15fr; gap: 80px; align-items: center; position: relative; z-index: 1; }
  .about-text .eyebrow { color: var(--grey-text); }
  .about-text h2 { font-size: clamp(36px, 4vw, 56px); margin: 18px 0 24px; }
  .about-text p { font-size: 16px; line-height: 1.65; color: var(--grey-text); margin-bottom: 16px; max-width: 540px; }
  .about-tags { display: flex; flex-wrap: wrap; gap: 8px; margin: 28px 0 32px; }
  .about-tag { display: inline-flex; align-items: center; gap: 8px; padding: 8px 14px; border-radius: var(--radius-pill); background: var(--paper); border: 1px solid var(--border); font-size: 13px; font-weight: 500; color: var(--ink); }
  .about-tag .dot { width: 6px; height: 6px; border-radius: 50%; background: var(--gradient); flex-shrink: 0; }
  .about-stats { display: flex; gap: 32px; padding: 24px 0 0; border-top: 1px solid var(--border); margin-top: 8px; }
  .about-stat strong { display: block; font-size: clamp(28px, 3vw, 40px); font-weight: 600; letter-spacing: -0.02em; line-height: 1; background: var(--gradient); -webkit-background-clip: text; background-clip: text; color: transparent; -webkit-text-fill-color: transparent; }
  .about-stat span { display: block; font-size: 12px; font-weight: 500; letter-spacing: 0.06em; color: var(--grey-text); margin-top: 6px; }
  .about-photo { aspect-ratio: 4/5; border-radius: var(--radius-large); position: relative; overflow: hidden; background: var(--ink); }
  .about-photo img { width: 100%; height: 100%; object-fit: cover; }
  .about-photo .badge { position: absolute; bottom: 18px; left: 18px; padding: 8px 14px; border-radius: var(--radius-pill); background: rgba(0,0,0,0.55); backdrop-filter: blur(10px); color: var(--paper); font-size: 11px; font-weight: 600; letter-spacing: 0.16em; text-transform: uppercase; }
  .philosophy { background: var(--ink); color: var(--paper); padding: 110px 0 130px; position: relative; overflow: hidden; }
  .quote-anim { font-size: clamp(22px, 2.6vw, 36px); font-weight: 500; line-height: 1.4; letter-spacing: -0.012em; max-width: 1000px; margin: 36px auto 64px; text-align: center; color: rgba(255,255,255,0.92); }
  .quote-anim .word { display: inline-block; opacity: 0; transform: translateY(10px); transition: opacity 0.5s ease, transform 0.5s ease; margin-right: 0.18em; }
  .quote-anim .word.ig { background: var(--gradient); -webkit-background-clip: text; background-clip: text; color: transparent; -webkit-text-fill-color: transparent; }
  .quote-anim.in .word { opacity: 1; transform: translateY(0); }
  .quote-anim .br-gap { display: block; height: 0.6em; }
  @media (prefers-reduced-motion: reduce) { .quote-anim .word { opacity: 1; transform: none; transition: none; } }
  .philosophy::before { content: ""; position: absolute; right: -10%; top: -20%; width: 60%; aspect-ratio: 1; border-radius: 50%; background: radial-gradient(circle, rgba(216,61,255,0.30) 0%, rgba(255,62,145,0.16) 40%, transparent 70%); filter: blur(60px); pointer-events: none; }
  .philosophy .sec-head .eyebrow { color: rgba(255,255,255,0.55); }
  .philosophy h2 { color: var(--paper); }
  .phil-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; margin-top: 56px; position: relative; z-index: 1; }
  .phil-item { padding: 32px; border-radius: var(--radius-card); background: rgba(255,255,255,0.04); border: 1px solid rgba(255,255,255,0.08); }
  .phil-item .num { font-size: 11px; font-weight: 600; letter-spacing: 0.18em; color: rgba(255,255,255,0.5); }
  .phil-item h3.card-h { font-size: 22px; font-weight: 600; letter-spacing: -0.02em; margin: 14px 0 10px; }
  .phil-item p { font-size: 14px; line-height: 1.6; color: rgba(255,255,255,0.72); }
  @media (max-width: 980px) { .about-grid { grid-template-columns: 1fr; gap: 40px; } .phil-grid { grid-template-columns: 1fr; } }

  /* ── Showcase, single Instagram feature ──────────── */
  .showcase { background: var(--ink); color: var(--paper); padding: 110px 0 130px; position: relative; overflow: hidden; }
  .showcase .sec-head .eyebrow { color: rgba(255,255,255,0.55); }
  .showcase::before { content: ""; position: absolute; left: -10%; top: -20%; width: 50%; aspect-ratio: 1; border-radius: 50%; background: radial-gradient(circle, rgba(255,122,47,0.30) 0%, rgba(255,62,145,0.14) 40%, transparent 70%); filter: blur(60px); pointer-events: none; }
  .showcase::after { content: ""; position: absolute; right: -10%; bottom: -20%; width: 50%; aspect-ratio: 1; border-radius: 50%; background: radial-gradient(circle, rgba(216,61,255,0.30) 0%, rgba(122,77,255,0.14) 40%, transparent 70%); filter: blur(60px); pointer-events: none; }
  .ig-stage { display: grid; grid-template-columns: 340px 1fr; gap: 64px; align-items: center; margin-top: 64px; position: relative; z-index: 1; max-width: 920px; margin-left: auto; margin-right: auto; }
  .ig-phone { width: 340px; aspect-ratio: 9/16; border-radius: 24px; position: relative; overflow: hidden; box-shadow: 0 30px 80px rgba(0,0,0,0.6), 0 0 0 1px rgba(255,255,255,0.08); background: #000; }
  .ig-phone::before { content: ""; position: absolute; inset: -1.5px; border-radius: calc(24px + 1.5px); padding: 1.5px; background: var(--gradient); -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0); -webkit-mask-composite: xor; mask-composite: exclude; pointer-events: none; opacity: 0.5; z-index: 4; }
  .ig-phone video { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
  .ig-phone .ig-overlay { position: absolute; inset: 0; background: linear-gradient(180deg, rgba(0,0,0,0.5) 0%, transparent 25%, transparent 60%, rgba(0,0,0,0.65) 100%); z-index: 2; pointer-events: none; }
  .ig-phone .ig-meta { position: absolute; top: 16px; left: 16px; right: 16px; display: flex; align-items: center; gap: 10px; z-index: 3; }
  .ig-phone .ig-meta .av { width: 32px; height: 32px; border-radius: 50%; background: var(--gradient); color: #fff; font-weight: 700; font-size: 13px; display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
  .ig-phone .ig-meta .name { font-size: 13px; font-weight: 600; color: #fff; line-height: 1.1; }
  .ig-phone .ig-meta .name span { display: block; font-size: 11px; font-weight: 400; color: rgba(255,255,255,0.65); }
  .ig-phone .ig-stats { position: absolute; bottom: 16px; left: 16px; right: 16px; z-index: 3; display: flex; gap: 14px; }
  .ig-phone .ig-stats span { display: inline-flex; align-items: center; gap: 5px; font-size: 12px; font-weight: 500; color: #fff; }
  .ig-phone .ig-stats svg { width: 16px; height: 16px; }
  .ig-info { display: flex; flex-direction: column; gap: 16px; }
  .ig-info .pip { display: inline-flex; align-items: center; gap: 8px; padding: 6px 12px; border-radius: var(--radius-pill); background: rgba(255,255,255,0.06); border: 1px solid rgba(255,255,255,0.12); font-size: 11px; font-weight: 600; letter-spacing: 0.12em; text-transform: uppercase; color: rgba(255,255,255,0.9); align-self: flex-start; }
  .ig-info .pip .live-dot { width: 8px; height: 8px; border-radius: 50%; background: #22c55e; box-shadow: 0 0 0 0 rgba(34,197,94,0.6); animation: pulse-dot 2s ease-out infinite; }
  .ig-info .stat-big { font-size: clamp(40px, 4.5vw, 64px); font-weight: 600; letter-spacing: -0.025em; line-height: 1; background: var(--gradient); -webkit-background-clip: text; background-clip: text; color: transparent; -webkit-text-fill-color: transparent; }
  .ig-info .stat-big-label { font-size: 13px; color: rgba(255,255,255,0.62); margin-top: -4px; }
  .ig-info p { font-size: 15px; line-height: 1.6; color: rgba(255,255,255,0.78); margin-top: 8px; max-width: 420px; }
  .ig-cta { display: flex; gap: 10px; flex-wrap: wrap; margin-top: 16px; }
  .ig-cta a { display: inline-flex; align-items: center; gap: 8px; padding: 12px 20px; border-radius: var(--radius-pill); font-size: 13px; font-weight: 600; transition: transform 200ms ease, box-shadow 220ms ease, background 200ms ease, border-color 200ms ease; }
  .ig-cta .primary { background: var(--paper); color: var(--ink); }
  .ig-cta .primary:hover { transform: translateY(-1px); box-shadow: 0 12px 28px rgba(255,62,145,0.3); }
  .ig-cta .ghost { background: transparent; color: var(--paper); border: 1.5px solid rgba(255,255,255,0.22); }
  .ig-cta .ghost:hover { border-color: var(--paper); }
  .ig-cta svg { width: 14px; height: 14px; }
  @media (max-width: 760px) { .ig-stage { grid-template-columns: 1fr; gap: 32px; max-width: 380px; text-align: center; } .ig-info { align-items: center; } .ig-info p { text-align: center; } .ig-cta { justify-content: center; } }

  /* ── Method / flywheel ──────────────────────────── */
  .method { background: var(--paper); padding: 110px 0 130px; position: relative; overflow: hidden; --mx: 50%; --my: 50%; }
  .method::before {
    content: "";
    position: absolute; inset: 0;
    background: radial-gradient(
      ellipse 50% 65% at var(--mx) var(--my),
      rgba(255,122,47,0.30) 0%,
      rgba(255,62,145,0.22) 20%,
      rgba(216,61,255,0.16) 45%,
      rgba(122,77,255,0.10) 65%,
      transparent 85%);
    pointer-events: none;
    z-index: 0;
    transition: background 220ms ease-out;
    mix-blend-mode: multiply;
  }
  .method.method-dark { background: var(--ink); color: var(--paper); }
  .method.method-dark::before {
    background: radial-gradient(
      ellipse 50% 65% at var(--mx) var(--my),
      rgba(255,122,47,0.55) 0%,
      rgba(255,62,145,0.40) 20%,
      rgba(216,61,255,0.28) 45%,
      rgba(122,77,255,0.18) 65%,
      transparent 85%);
    mix-blend-mode: screen;
  }
  .method.method-dark .ring-static { stroke: rgba(255,255,255,0.10); }
  .method.method-dark .ring-ticks-major { stroke: rgba(255,255,255,0.22); }
  .method.method-dark .ring-ticks-minor { stroke: rgba(255,255,255,0.15); }
  .method.method-dark .outer-orbiter circle { fill: rgba(11,11,15,0.6); stroke: rgba(255,255,255,0.20); filter: none; }
  .method.method-dark .flywheel-center { background: var(--ink); border-color: rgba(255,255,255,0.10); box-shadow: 0 18px 40px rgba(0,0,0,0.4); }
  .method.method-dark .flywheel-center .small { color: rgba(255,255,255,0.55); }
  .method.method-dark .fly-point { background: rgba(255,255,255,0.04); border-color: rgba(255,255,255,0.10); box-shadow: 0 16px 36px rgba(0,0,0,0.3); }
  .method.method-dark .fly-point:hover { border-color: rgba(255,255,255,0.25); }
  .method.method-dark .fly-point .num { color: rgba(255,255,255,0.55); }
  .method.method-dark .fly-point p { color: rgba(255,255,255,0.7); }
  .method.method-dark .sec-head .eyebrow { color: rgba(255,255,255,0.55); }
  .method.method-dark h2 { color: var(--paper); }
  .method.method-dark .sec-head .lede { color: rgba(255,255,255,0.72); }
  /* On dark sections, keep muted text light (the darker --grey-text is for light backgrounds only) */
  .philosophy, .case-dark, .beam-section, .method.method-dark, .training { --grey-text: rgba(255,255,255,0.62); }
  .method > .container { position: relative; z-index: 1; }
  .method .sec-head { margin-bottom: 64px; }
  .flywheel-wrap { position: relative; max-width: 760px; margin: 0 auto; aspect-ratio: 1; --scroll-rot: 0deg; }
  .flywheel { width: 100%; height: 100%; display: block; }
  .flywheel .ring-static { fill: none; stroke: rgba(11,11,15,0.06); stroke-width: 1; }
  .flywheel .ring-ticks-major { fill: none; stroke: rgba(11,11,15,0.18); stroke-width: 8; stroke-dasharray: 0.4 4.6; transform-origin: 300px 300px; transform: rotate(calc(var(--scroll-rot, 0deg) * 0.35)); transition: transform 120ms linear; }
  .flywheel .ring-ticks-minor { fill: none; stroke: rgba(11,11,15,0.12); stroke-width: 3; stroke-dasharray: 0.25 1.42; transform-origin: 300px 300px; transform: rotate(calc(var(--scroll-rot, 0deg) * -0.7)); transition: transform 120ms linear; }
  @media (prefers-reduced-motion: reduce) { .flywheel .ring-ticks-major, .flywheel .ring-ticks-minor { transform: rotate(0deg); transition: none; } }
  .flywheel .ring-anim { fill: none; stroke: url(#flyGrad); stroke-width: 2; stroke-linecap: round; transition: stroke-dashoffset 2.4s cubic-bezier(.4,0,.2,1); }
  .flywheel .orbiter { transform-origin: 300px 300px; transform: rotate(var(--scroll-rot)); transition: transform 120ms linear; }
  @media (prefers-reduced-motion: reduce) { .flywheel .orbiter { transform: rotate(0deg); transition: none; } }
  .flywheel .node { opacity: 0; transition: opacity 0.5s ease; }
  .flywheel .node .halo { opacity: 0.22; }
  .flywheel .n1 .dot, .flywheel .n1 .halo { fill: #FF7A2F; }
  .flywheel .n2 .dot, .flywheel .n2 .halo { fill: #FF3E91; }
  .flywheel .n3 .dot, .flywheel .n3 .halo { fill: #7A4DFF; }
  .flywheel.in .ring-anim { stroke-dashoffset: 0; }
  .flywheel.in .n1 { opacity: 1; transition-delay: 0.6s; }
  .flywheel.in .n2 { opacity: 1; transition-delay: 1.4s; }
  .flywheel.in .n3 { opacity: 1; transition-delay: 2.1s; }
  .flywheel-center { position: absolute; left: 50%; top: 50%; transform: translate(-50%,-50%); text-align: center; padding: 28px 36px; max-width: 320px; border-radius: 32px; background: var(--paper); border: 1px solid var(--border); box-shadow: 0 18px 40px rgba(11,11,15,0.06); display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 8px; z-index: 2; }
  .flywheel-center .small { font-size: 10px; font-weight: 600; letter-spacing: 0.22em; text-transform: uppercase; color: var(--grey-text); }
  .flywheel-center .big { font-size: clamp(20px, 2.1vw, 26px); font-weight: 600; letter-spacing: -0.02em; line-height: 1.15; }
  .flywheel-center .big .ig { display: block; }
  .flywheel-center .micro { font-size: 11px; color: var(--grey-text); letter-spacing: 0.04em; }
  .method-stage { position: relative; max-width: 1180px; margin: 56px auto 0; padding: 0 24px; }
  .method-stage .flywheel-wrap { margin: 0 auto; }
  .fly-point { position: absolute; width: 280px; padding: 22px 24px; border-radius: var(--radius-card); background: var(--paper); border: 1px solid var(--border); box-shadow: 0 16px 36px rgba(11,11,15,0.08); z-index: 3; transition: transform 280ms ease, box-shadow 280ms ease, border-color 240ms ease; }
  .fly-point:hover { transform: translateY(-2px); box-shadow: 0 22px 48px rgba(11,11,15,0.12); border-color: rgba(11,11,15,0.18); }
  .fly-point .num { font-size: 10px; font-weight: 600; letter-spacing: 0.18em; color: var(--grey-text); }
  .fly-point .num .dot { display: inline-block; width: 8px; height: 8px; border-radius: 50%; margin-right: 8px; vertical-align: middle; }
  .fly-point.p1 .dot { background: #FF7A2F; }
  .fly-point.p2 .dot { background: #FF3E91; }
  .fly-point.p3 .dot { background: #7A4DFF; }
  .fly-point h3.card-h { font-size: 18px; font-weight: 600; letter-spacing: -0.02em; line-height: 1.2; margin: 8px 0 6px; }
  .fly-point p { font-size: 13px; line-height: 1.55; color: var(--grey-text); }
  /* Position cards overlapping the wheel near each colored node */
  .fly-point.p1 { top: 0; left: 50%; transform: translateX(-50%); }
  .fly-point.p1:hover { transform: translateX(-50%) translateY(-3px); }
  .fly-point.p2 { top: 56%; right: 0; }
  .fly-point.p3 { top: 56%; left: 0; }
  /* outer orbit dots — white with shadow, counter-rotating */
  .flywheel .outer-orbiter { transform-origin: 300px 300px; transform: rotate(calc(var(--scroll-rot, 0deg) * -0.55)); transition: transform 120ms linear; }
  .flywheel .outer-orbiter circle { fill: white; stroke: rgba(11,11,15,0.18); stroke-width: 0.6; filter: drop-shadow(0 2px 4px rgba(11,11,15,0.12)); }
  @media (prefers-reduced-motion: reduce) { .flywheel .outer-orbiter { transform: rotate(0deg); transition: none; } }
  /* Pulse rings on each colored node */
  .flywheel .pulse-ring { fill: none; stroke-width: 2; }
  .flywheel .n1 .pulse-ring { stroke: #FF7A2F; }
  .flywheel .n2 .pulse-ring { stroke: #FF3E91; }
  .flywheel .n3 .pulse-ring { stroke: #7A4DFF; }
  .flywheel.in .pulse-ring { animation: node-pulse 2.6s ease-out infinite; transform-box: fill-box; transform-origin: center; }
  .flywheel.in .n2 .pulse-ring { animation-delay: 0.85s; }
  .flywheel.in .n3 .pulse-ring { animation-delay: 1.7s; }
  @keyframes node-pulse {
    0% { transform: scale(0.6); opacity: 0.7; }
    100% { transform: scale(2.4); opacity: 0; }
  }
  @media (prefers-reduced-motion: reduce) { .flywheel.in .pulse-ring { animation: none; } }
  @media (max-width: 980px) {
    .fly-point { position: static; width: auto; max-width: none; }
    .method-stage { display: flex; flex-direction: column; gap: 16px; }
    .method-stage .flywheel-wrap { order: 2; }
    .fly-point.p1 { order: 1; transform: none; }
    .fly-point.p1:hover { transform: translateY(-2px); }
    .fly-point.p2 { order: 3; }
    .fly-point.p3 { order: 4; }
  }

  /* ── ROI Comparison: A / B / C ───────────────── */
  .opt-label { position: absolute; top: 32px; left: 50%; transform: translateX(-50%); padding: 8px 18px; border-radius: var(--radius-pill); background: var(--ink); color: var(--paper); font-size: 11px; font-weight: 600; letter-spacing: 0.20em; text-transform: uppercase; z-index: 5; box-shadow: 0 8px 24px rgba(0,0,0,0.15); }
  .opt-label.on-light { background: var(--paper); color: var(--ink); border: 1px solid var(--border); }

  /* Option A — Cinematic ROI Story */
  .roi-a { background: var(--ink); color: var(--paper); padding: 130px 0 110px; position: relative; overflow: hidden; }
  .roi-a::before { content: ""; position: absolute; left: -8%; top: -20%; width: 55%; aspect-ratio: 1; border-radius: 50%; background: radial-gradient(circle, rgba(255,122,47,0.40) 0%, rgba(255,62,145,0.20) 40%, transparent 70%); filter: blur(60px); pointer-events: none; }
  .roi-a::after { content: ""; position: absolute; right: -8%; bottom: -20%; width: 55%; aspect-ratio: 1; border-radius: 50%; background: radial-gradient(circle, rgba(216,61,255,0.40) 0%, rgba(122,77,255,0.20) 40%, transparent 70%); filter: blur(60px); pointer-events: none; }
  .roi-a > .container { position: relative; z-index: 1; }
  .roi-a .sec-head .eyebrow { color: rgba(255,255,255,0.55); }
  .roi-a h2 { color: var(--paper); }
  .roi-journey { display: flex; align-items: stretch; justify-content: space-between; gap: 0; margin: 64px auto 56px; max-width: 1180px; }
  .roi-journey .step { flex: 1; padding: 24px 12px; text-align: center; display: flex; flex-direction: column; gap: 10px; align-items: center; justify-content: center; }
  .roi-journey .step .step-num { font-size: clamp(28px, 3vw, 42px); font-weight: 600; letter-spacing: -0.03em; line-height: 1; }
  .roi-journey .step .step-label { font-size: 10px; font-weight: 600; letter-spacing: 0.18em; text-transform: uppercase; color: rgba(255,255,255,0.6); }
  .roi-journey .step.highlight .step-num { background: var(--gradient); -webkit-background-clip: text; background-clip: text; color: transparent; -webkit-text-fill-color: transparent; font-size: clamp(36px, 3.8vw, 54px); }
  .roi-journey .step.highlight .step-label { color: rgba(255,255,255,0.85); }
  .roi-journey .step-line { flex: 0 0 28px; align-self: center; height: 1px; background: linear-gradient(to right, rgba(255,255,255,0.10), rgba(255,255,255,0.30), rgba(255,255,255,0.10)); position: relative; }
  .roi-journey .step-line::after { content: ""; position: absolute; right: -2px; top: 50%; transform: translateY(-50%); width: 5px; height: 5px; border-radius: 50%; background: rgba(255,255,255,0.45); }
  .roi-a .roi-supporting { display: flex; flex-wrap: wrap; justify-content: center; align-items: center; gap: 18px; padding: 22px 24px; border-top: 1px solid rgba(255,255,255,0.10); border-bottom: 1px solid rgba(255,255,255,0.10); margin: 48px auto 0; max-width: 1080px; }
  .roi-a .roi-supporting span { font-size: 13px; color: rgba(255,255,255,0.72); }
  .roi-a .roi-supporting .sep { color: rgba(255,255,255,0.20); }
  .roi-a .cta-row { display: flex; justify-content: center; margin-top: 40px; }
  .roi-a .cta-row .btn { background: var(--paper); color: var(--ink); }
  @media (max-width: 980px) {
    .roi-journey { flex-direction: column; gap: 0; }
    .roi-journey .step-line { width: 1px; height: 28px; align-self: center; background: linear-gradient(to bottom, rgba(255,255,255,0.10), rgba(255,255,255,0.30), rgba(255,255,255,0.10)); }
    .roi-journey .step-line::after { right: 50%; top: auto; bottom: -2px; transform: translateX(50%); }
  }

  /* Option B — Magazine pull-quote */
  .roi-b { background: var(--paper); padding: 130px 0; position: relative; }
  .roi-b .pq-stage { text-align: center; max-width: 1180px; margin: 0 auto; padding: 0 24px; }
  .roi-b .pq-eyebrow { font-size: 11px; font-weight: 600; letter-spacing: 0.20em; text-transform: uppercase; color: var(--grey-text); margin-bottom: 32px; display: block; }
  .roi-b .pq-hero { font-size: clamp(140px, 18vw, 260px); font-weight: 600; line-height: 0.85; letter-spacing: -0.06em; background: var(--gradient); -webkit-background-clip: text; background-clip: text; color: transparent; -webkit-text-fill-color: transparent; margin-bottom: 28px; }
  .roi-b .pq-headline { font-size: clamp(36px, 4.4vw, 60px); font-weight: 600; letter-spacing: -0.025em; line-height: 1.05; margin-bottom: 24px; max-width: 800px; margin-left: auto; margin-right: auto; color: var(--ink); }
  .roi-b .pq-sub { font-size: 17px; line-height: 1.6; color: var(--grey-text); max-width: 560px; margin: 0 auto 48px; }
  .roi-b .pq-stats { display: grid; grid-template-columns: repeat(4, 1fr); gap: 32px; max-width: 920px; margin: 0 auto; padding-top: 48px; border-top: 1px solid var(--border); }
  .roi-b .pq-stat { text-align: center; }
  .roi-b .pq-stat strong { display: block; font-size: clamp(26px, 2.8vw, 36px); font-weight: 600; letter-spacing: -0.025em; line-height: 1; margin-bottom: 10px; }
  .roi-b .pq-stat span { display: block; font-size: 11px; font-weight: 600; letter-spacing: 0.16em; color: var(--grey-text); text-transform: uppercase; }
  .roi-b .pq-cta-row { display: flex; justify-content: center; margin-top: 40px; }
  @media (max-width: 760px) { .roi-b .pq-stats { grid-template-columns: repeat(2, 1fr); gap: 28px; } }

  /* Option C — Receipt / P&L */
  .roi-c { background: var(--off-white); padding: 130px 0 110px; position: relative; }
  .roi-c .sec-head { margin-bottom: 24px; }
  .roi-c .receipt { background: var(--paper); border: 1px solid var(--border); border-radius: 12px; max-width: 520px; margin: 48px auto 0; padding: 40px 44px; box-shadow: 0 30px 80px rgba(11,11,15,0.08); position: relative; }
  /* (removed the perforated "torn receipt" top/bottom edges — cleaner card) */
  .roi-c .receipt-head { display: flex; justify-content: space-between; align-items: baseline; font-size: 10px; font-weight: 600; letter-spacing: 0.16em; text-transform: uppercase; color: var(--grey-text); margin-bottom: 8px; }
  .roi-c .receipt-title { text-align: center; font-size: 13px; font-weight: 600; color: var(--ink); margin-bottom: 16px; }
  .roi-c .receipt-divider { height: 1px; background: var(--border); margin: 14px 0; }
  .roi-c .receipt-divider.dashed { border-top: 1px dashed rgba(11,11,15,0.30); height: 0; background: transparent; margin: 18px 0; }
  .roi-c .receipt-row { display: flex; justify-content: space-between; align-items: baseline; gap: 16px; padding: 8px 0; font-size: 14px; }
  .roi-c .receipt-row .r-label { color: var(--ink); }
  .roi-c .receipt-row .r-value { font-weight: 600; color: var(--ink); font-variant-numeric: tabular-nums; white-space: nowrap; flex-shrink: 0; }
  @media (max-width: 720px) { .roi-c .receipt-row { font-size: 13px; gap: 12px; } }
  .roi-c .receipt-row .r-value.neg { color: var(--grey-text); }
  .roi-c .receipt-row .r-value.pos { color: var(--ink); }
  .roi-c .receipt-row.total { padding: 10px 0; }
  .roi-c .receipt-row.total .r-label { font-size: 11px; font-weight: 600; letter-spacing: 0.14em; text-transform: uppercase; color: var(--grey-text); }
  .roi-c .receipt-row.total .r-value.gradient { font-size: clamp(26px, 2.6vw, 36px); font-weight: 600; letter-spacing: -0.03em; line-height: 1; background: var(--gradient); -webkit-background-clip: text; background-clip: text; color: transparent; -webkit-text-fill-color: transparent; }
  .roi-c .receipt-foot { text-align: center; margin-top: 16px; padding-top: 16px; border-top: 1px dashed rgba(11,11,15,0.30); font-size: 11px; color: var(--grey-text); letter-spacing: 0.06em; }
  .roi-c .receipt-cta { display: flex; justify-content: center; margin-top: 40px; }

  /* ── Stats bento ────────────────────────────── */
  .strip { background: var(--off-white); padding: 110px 0; }
  .bento-grid { display: grid; grid-template-columns: repeat(4, 1fr); grid-auto-rows: 220px; gap: 14px; }
  .bento { border-radius: 28px; padding: 28px; position: relative; overflow: hidden; display: flex; flex-direction: column; gap: 10px; transition: transform 280ms ease, box-shadow 280ms ease; }
  .bento:hover { transform: translateY(-2px); }
  .bento.light { background: var(--paper); border: 1px solid var(--border); }
  .bento.dark { background: var(--ink); color: var(--paper); }
  .bento.gradient { background: var(--ink); color: var(--paper); }
  .bento.gradient::before { content: ""; position: absolute; inset: 0; background: radial-gradient(ellipse at 70% 60%, rgba(216,61,255,0.55) 0%, rgba(255,62,145,0.35) 30%, rgba(122,77,255,0.18) 60%, transparent 90%); pointer-events: none; }
  .bento.gradient > * { position: relative; z-index: 1; }
  .bento .bento-eyebrow { font-size: 10px; font-weight: 600; letter-spacing: 0.20em; text-transform: uppercase; color: var(--grey-text); }
  .bento.dark .bento-eyebrow, .bento.gradient .bento-eyebrow { color: rgba(255,255,255,0.55); }

  /* B1: Hero ROI (2 cols × 2 rows) */
  .b-roi { grid-column: 1 / 3; grid-row: 1 / 3; padding: 40px; justify-content: space-between; }
  .b-roi::after { content: ""; position: absolute; right: -6%; top: -20%; width: 55%; aspect-ratio: 1; border-radius: 50%; background: radial-gradient(circle, rgba(255,122,47,0.42) 0%, rgba(255,62,145,0.22) 35%, rgba(122,77,255,0.10) 65%, transparent 85%); filter: blur(30px); pointer-events: none; z-index: 0; }
  .b-roi > * { position: relative; z-index: 1; }
  .b-roi .roi-num { font-size: clamp(96px, 11vw, 168px); font-weight: 600; letter-spacing: -0.045em; line-height: 0.9; background: var(--gradient); -webkit-background-clip: text; background-clip: text; color: transparent; -webkit-text-fill-color: transparent; }
  .b-roi .roi-mid { display: flex; flex-direction: column; gap: 6px; }
  .b-roi .roi-label { font-size: 12px; font-weight: 600; letter-spacing: 0.18em; text-transform: uppercase; color: rgba(255,255,255,0.7); }
  .b-roi .roi-headline { font-size: clamp(22px, 2.2vw, 30px); font-weight: 600; letter-spacing: -0.02em; line-height: 1.15; max-width: 460px; }
  .b-roi .roi-body { font-size: 14px; line-height: 1.55; color: rgba(255,255,255,0.7); max-width: 420px; }
  .b-roi .btn { align-self: flex-start; background: var(--paper); color: var(--ink); }

  /* B2: 3M+ views (top right, dark gradient) */
  .b-views { grid-column: 3; grid-row: 1; }
  .b-views .views-num { font-size: clamp(44px, 4.5vw, 60px); font-weight: 600; letter-spacing: -0.03em; line-height: 1; margin-top: auto; background: var(--gradient); -webkit-background-clip: text; background-clip: text; color: transparent; -webkit-text-fill-color: transparent; }
  .b-views .label { font-size: 12px; font-weight: 500; letter-spacing: 0.04em; color: rgba(255,255,255,0.65); }
  .b-views .spark { position: absolute; right: -10%; bottom: -10%; width: 110%; height: 70%; opacity: 0.18; pointer-events: none; }
  .b-views .spark svg { width: 100%; height: 100%; }

  /* B3: 100+ businesses (dot grid) */
  .b-clients { grid-column: 4; grid-row: 1; }
  .b-clients .num { font-size: clamp(36px, 3.6vw, 48px); font-weight: 600; letter-spacing: -0.03em; line-height: 1; margin-top: auto; }
  .b-clients .label { font-size: 12px; font-weight: 500; color: var(--grey-text); }
  .b-clients .dot-grid { position: absolute; right: -8px; top: 32px; width: 88px; opacity: 0.6; display: grid; grid-template-columns: repeat(8, 8px); gap: 4px; }
  .b-clients .dot-grid span { width: 8px; height: 8px; border-radius: 50%; background: rgba(11,11,15,0.18); }
  .b-clients .dot-grid span.on { background: linear-gradient(135deg, #FF7A2F, #FF3E91); }

  /* B4: 2-3 wks first enquiry (dark) */
  .b-time { grid-column: 3; grid-row: 2; }
  .b-time .num { font-size: clamp(36px, 3.6vw, 48px); font-weight: 600; letter-spacing: -0.03em; line-height: 1; margin-top: auto; }
  .b-time .label { font-size: 12px; font-weight: 500; color: rgba(255,255,255,0.6); }
  .b-time .calendar { position: absolute; right: -10px; top: 26px; display: grid; grid-template-columns: repeat(7, 9px); gap: 4px; opacity: 0.5; }
  .b-time .calendar span { width: 9px; height: 9px; border-radius: 2px; background: rgba(255,255,255,0.10); }
  .b-time .calendar span.hit { background: linear-gradient(135deg, #FF7A2F, #FF3E91); }

  /* B5: 10 yrs since 2015 (light, timeline) */
  .b-yrs { grid-column: 4; grid-row: 2; }
  .b-yrs .num { font-size: clamp(36px, 3.6vw, 48px); font-weight: 600; letter-spacing: -0.03em; line-height: 1; }
  .b-yrs .label { font-size: 12px; font-weight: 500; color: var(--grey-text); }
  .b-yrs .timeline { display: flex; align-items: center; gap: 8px; margin-top: auto; }
  .b-yrs .timeline .yr { font-size: 10px; font-weight: 600; color: var(--grey-text); letter-spacing: 0.06em; }
  .b-yrs .timeline .line { flex: 1; height: 2px; border-radius: 2px; background: linear-gradient(to right, var(--border), var(--grad-orange), var(--grad-pink), var(--grad-purple)); position: relative; }
  .b-yrs .timeline .line::after { content: ""; position: absolute; right: -3px; top: 50%; transform: translateY(-50%); width: 8px; height: 8px; border-radius: 50%; background: var(--grad-purple); box-shadow: 0 0 0 4px rgba(122,77,255,0.18); }

  /* B6: Chart 8K subs (3 cols) */
  .b-chart { grid-column: 1 / 4; grid-row: 3; padding: 28px 32px; }
  .b-chart .chart-head { display: flex; align-items: flex-start; justify-content: space-between; gap: 16px; }
  .b-chart .chart-head .label-small { font-size: 11px; font-weight: 600; letter-spacing: 0.16em; text-transform: uppercase; color: var(--grey-text); }
  .b-chart .chart-head .num { font-size: clamp(36px, 3.4vw, 48px); font-weight: 600; letter-spacing: -0.04em; line-height: 0.95; }
  .b-chart .chart-svg { width: 100%; flex: 1; min-height: 80px; position: relative; margin: 4px 0; }
  .b-chart .chart-svg svg { width: 100%; height: 100%; display: block; }
  .b-chart .chart-foot { display: flex; align-items: center; gap: 12px; font-size: 13px; color: var(--grey-text); }
  .b-chart .chart-foot strong { color: var(--ink); font-weight: 600; }
  .b-chart .who-pulse { width: 8px; height: 8px; border-radius: 50%; background: #22c55e; box-shadow: 0 0 0 0 rgba(34,197,94,0.6); animation: pulse-dot 2s ease-out infinite; flex-shrink: 0; }
  @keyframes pulse-dot { 0% { box-shadow: 0 0 0 0 rgba(34,197,94,0.55); } 70% { box-shadow: 0 0 0 8px rgba(34,197,94,0); } 100% { box-shadow: 0 0 0 0 rgba(34,197,94,0); } }
  .chart-path { transition: stroke-dashoffset 2.4s cubic-bezier(.4,0,.2,1); }
  .b-chart.in .chart-path { stroke-dashoffset: 0; }

  /* B7: CTA (gradient) */
  .b-cta { grid-column: 4; grid-row: 3; justify-content: space-between; }
  .b-cta .top { display: flex; align-items: center; justify-content: space-between; gap: 8px; }
  .b-cta h3 { font-size: clamp(22px, 2.2vw, 26px); font-weight: 600; letter-spacing: -0.02em; }
  .b-cta p { font-size: 12.5px; line-height: 1.5; color: rgba(255,255,255,0.82); }
  .b-cta .arrow-pill { width: 38px; height: 38px; border-radius: 50%; background: var(--paper); color: var(--ink); display: flex; align-items: center; justify-content: center; flex-shrink: 0; }

  @media (max-width: 980px) {
    .bento-grid { grid-template-columns: repeat(2, 1fr); grid-auto-rows: 200px; }
    .b-roi { grid-column: 1 / -1; grid-row: 1; }
    .b-views { grid-column: 1; grid-row: 2; }
    .b-clients { grid-column: 2; grid-row: 2; }
    .b-time { grid-column: 1; grid-row: 3; }
    .b-yrs { grid-column: 2; grid-row: 3; }
    .b-chart { grid-column: 1 / -1; grid-row: 4; }
    .b-cta { grid-column: 1 / -1; grid-row: 5; }
  }
  @media (max-width: 540px) {
    .bento-grid { grid-template-columns: 1fr; }
    .b-roi, .b-views, .b-clients, .b-time, .b-yrs, .b-chart, .b-cta { grid-column: 1; grid-row: auto; }
  }

  /* ── Testimonials grid ───────────────────────────── */
  .testimonials { background: var(--paper); overflow: hidden; padding-bottom: 40px; }
  .t-marquee { position: relative; display: flex; flex-direction: column; gap: 12px; -webkit-mask-image: linear-gradient(to right, transparent 0%, black 6%, black 94%, transparent 100%); mask-image: linear-gradient(to right, transparent 0%, black 6%, black 94%, transparent 100%); }
  .t-row { display: flex; width: max-content; will-change: transform; }
  .t-row.r1 { animation: t-scroll-left 45s linear infinite; }
  .t-row.r2 { animation: t-scroll-right 55s linear infinite; }
  .t-marquee:hover .t-row { animation-play-state: paused; }
  @keyframes t-scroll-left { from { transform: translate3d(0,0,0); } to { transform: translate3d(-50%,0,0); } }
  @keyframes t-scroll-right { from { transform: translate3d(-50%,0,0); } to { transform: translate3d(0,0,0); } }
  @media (prefers-reduced-motion: reduce) { .t-row { animation: none; } }
  .t-card { background: var(--paper); border: 1px solid var(--border); border-radius: var(--radius-large); padding: 22px 24px; display: flex; flex-direction: column; gap: 14px; transition: border-color 240ms ease, transform 280ms ease, box-shadow 280ms ease; width: 340px; flex-shrink: 0; margin-right: 12px; }
  .t-card:hover { border-color: rgba(11,11,15,0.4); transform: translateY(-2px); box-shadow: 0 14px 36px rgba(11,11,15,0.06); }
  .t-row.r2 .t-card { background: var(--off-white); }
  .stars { display: flex; gap: 2px; color: var(--grad-orange); }
  .stars svg { width: 14px; height: 14px; fill: currentColor; }
  .t-quote { font-size: 14px; line-height: 1.6; color: var(--ink); }
  .t-author { display: flex; align-items: center; gap: 12px; margin-top: auto; }
  .t-author .logo { width: 38px; height: 38px; border-radius: 50%; background: var(--ink); color: var(--paper); display: flex; align-items: center; justify-content: center; font-weight: 600; font-size: 12px; flex-shrink: 0; }
  .t-author strong { display: block; font-size: 14px; font-weight: 600; }
  .t-author span { font-size: 12px; color: var(--grey-text); }

  .t-grid-2 { display: grid; grid-template-columns: 1fr 1.4fr; gap: 16px; margin-top: 16px; }
  @media (max-width: 980px) { .t-grid, .t-grid-2 { grid-template-columns: 1fr; } }

  /* ── Have questions? wide bar ────────────────────── */

  /* ── Featured proof ──────────────────────────────── */
  .proof { background: var(--off-white); }
  /* ── Case study, featured ──────────────────────────── */
  .case { padding: 120px 0; position: relative; overflow: hidden; }
  .case-light { background: var(--off-white); }
  .case-dark { background: var(--ink); color: var(--paper); }
  .case-dark::before { content: ""; position: absolute; left: -10%; top: -20%; width: 55%; aspect-ratio: 1; border-radius: 50%; background: radial-gradient(circle, rgba(255,122,47,0.30) 0%, rgba(255,62,145,0.16) 40%, transparent 70%); filter: blur(60px); pointer-events: none; }
  .case-dark::after { content: ""; position: absolute; right: -10%; bottom: -25%; width: 55%; aspect-ratio: 1; border-radius: 50%; background: radial-gradient(circle, rgba(216,61,255,0.30) 0%, rgba(122,77,255,0.14) 40%, transparent 70%); filter: blur(60px); pointer-events: none; }
  .case-grid { display: grid; gap: 80px; align-items: center; position: relative; z-index: 1; }
  .case-light .case-grid { grid-template-columns: 380px 1fr; }
  .case-dark .case-grid { grid-template-columns: 1fr 380px; }
  .case-text .eyebrow { color: var(--grey-text); margin-bottom: 18px; display: inline-block; }
  .case-dark .case-text .eyebrow { color: rgba(255,255,255,0.6); }
  .case-text h2 { font-size: clamp(40px, 4.4vw, 64px); font-weight: 600; letter-spacing: -0.025em; line-height: 1.04; margin-bottom: 24px; }
  .case-dark .case-text h2 { color: var(--paper); }
  .case-text .case-quote { font-size: 17px; line-height: 1.6; color: var(--grey-text); margin-bottom: 32px; max-width: 520px; }
  .case-dark .case-text .case-quote { color: rgba(255,255,255,0.78); }
  .case-author { display: flex; align-items: center; gap: 12px; margin-bottom: 32px; font-size: 14px; color: var(--grey-text); }
  .case-author .stars { display: flex; gap: 2px; }
  .case-author .stars svg { width: 13px; height: 13px; color: var(--grad-orange); }
  .case-author strong { font-weight: 600; color: var(--ink); }
  .case-dark .case-author { color: rgba(255,255,255,0.6); }
  .case-dark .case-author strong { color: var(--paper); }
  .case-stats { display: flex; gap: 40px; padding-top: 28px; border-top: 1px solid var(--border); max-width: 480px; }
  .case-dark .case-stats { border-top-color: rgba(255,255,255,0.12); }
  .case-stat strong { display: block; font-size: clamp(28px, 3vw, 38px); font-weight: 600; letter-spacing: -0.02em; line-height: 1; background: var(--gradient); -webkit-background-clip: text; background-clip: text; color: transparent; -webkit-text-fill-color: transparent; }
  .case-stat span { display: block; font-size: 11px; font-weight: 600; letter-spacing: 0.16em; color: var(--grey-text); text-transform: uppercase; margin-top: 8px; }
  .case-dark .case-stat span { color: rgba(255,255,255,0.55); }
  .case-video { aspect-ratio: 9/16; border-radius: var(--radius-large); position: relative; overflow: hidden; background: #000; box-shadow: 0 36px 80px rgba(0,0,0,0.18); }
  .case-dark .case-video { box-shadow: 0 40px 100px rgba(0,0,0,0.55); }
  .case-video::before { content: ""; position: absolute; inset: -1.5px; border-radius: calc(var(--radius-large) + 1.5px); padding: 1.5px; background: var(--gradient); -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0); -webkit-mask-composite: xor; mask-composite: exclude; pointer-events: none; opacity: 0.5; z-index: 5; }
  .case-video video { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
  .case-poster { position: absolute; inset: 0; z-index: 3; cursor: pointer; display: flex; align-items: center; justify-content: center; background: linear-gradient(180deg, rgba(0,0,0,0.05) 0%, transparent 30%, transparent 60%, rgba(0,0,0,0.5) 100%); transition: opacity 400ms ease; }
  .case-poster.hidden { opacity: 0; pointer-events: none; }
  .case-play { position: relative; width: 76px; height: 76px; border-radius: 50%; background: rgba(255,255,255,0.96); border: 0; cursor: pointer; display: flex; align-items: center; justify-content: center; box-shadow: 0 14px 36px rgba(0,0,0,0.4); transition: transform 240ms ease; }
  .case-poster:hover .case-play { transform: scale(1.06); }
  .case-play svg { width: 22px; height: 22px; color: var(--ink); margin-left: 3px; }
  .case-play::before, .case-play::after { content: ""; position: absolute; inset: 0; border-radius: 50%; border: 2px solid rgba(255,255,255,0.7); animation: case-pulse 2.6s cubic-bezier(.4,0,.2,1) infinite; pointer-events: none; }
  .case-play::after { animation-delay: 1.3s; }
  @keyframes case-pulse { 0% { transform: scale(1); opacity: 0.7; } 100% { transform: scale(1.75); opacity: 0; } }
  .case-badge { position: absolute; bottom: 18px; left: 18px; z-index: 4; padding: 6px 12px; border-radius: var(--radius-pill); background: rgba(0,0,0,0.55); backdrop-filter: blur(10px); color: var(--paper); font-size: 10px; font-weight: 600; letter-spacing: 0.16em; text-transform: uppercase; pointer-events: none; }
  @media (max-width: 980px) { .case-light .case-grid, .case-dark .case-grid { grid-template-columns: 1fr; gap: 48px; } .case-light .case-video, .case-dark .case-video { max-width: 380px; margin: 0 auto; width: 100%; } .case-dark .case-text { order: 2; } .case-dark .case-video { order: 1; } }

  /* ── FAQ ─────────────────────────────────────────── */
  .faq { background: var(--paper); }
  .faq-list { max-width: 880px; margin: 0 auto; display: flex; flex-direction: column; gap: 8px; }
  .faq-item { background: var(--paper); border: 1px solid var(--border); border-radius: var(--radius-large); transition: border-color 240ms ease; }
  .faq-item.open { border-color: rgba(255,62,145,0.4); box-shadow: 0 0 0 1.5px rgba(255,62,145,0.18); }
  .faq-q { width: 100%; border: 0; background: transparent; padding: 22px 28px; display: flex; align-items: center; justify-content: space-between; gap: 24px; text-align: left; font-size: 16px; font-weight: 500; letter-spacing: -0.01em; color: var(--ink); }
  .faq-q .plus { width: 24px; height: 24px; flex-shrink: 0; transition: transform 280ms cubic-bezier(.2,.8,.2,1); color: var(--grey-text); }
  .faq-item.open .plus { transform: rotate(45deg); color: var(--grad-pink); }
  .faq-a { max-height: 0; overflow: hidden; transition: max-height 360ms cubic-bezier(.2,.8,.2,1); }
  .faq-a-inner { padding: 0 28px 24px; max-width: 720px; color: var(--grey-text); font-size: 15px; line-height: 1.6; }

  /* ── Final CTA + Form ────────────────────────────── */
  .cta { background: var(--off-white); padding-bottom: 0; }
  .cta-inner { text-align: center; max-width: 880px; margin: 0 auto; padding-bottom: 80px; position: relative; }
  .cta-inner h2 { margin-bottom: 18px; }
  .cta-inner .lede { margin-bottom: 40px; max-width: 520px; margin-left: auto; margin-right: auto; }
  .form { max-width: 520px; margin: 0 auto; display: flex; flex-direction: column; gap: 20px; text-align: left; }
  .field { display: flex; flex-direction: column; gap: 8px; }
  .field label { font-size: 14px; font-weight: 500; color: var(--ink); }
  .field input, .field select { padding: 14px 16px; border-radius: 10px; border: 1px solid transparent; background: rgba(11,11,15,0.04); font-family: var(--font); font-size: 14px; color: var(--ink); transition: background 200ms ease, border-color 200ms ease, box-shadow 200ms ease; }
  .field input:focus, .field select:focus { background: var(--paper); border-color: rgba(255,62,145,0.5); box-shadow: 0 0 0 3px rgba(255,62,145,0.12); outline: none; }
  .field input::placeholder { color: var(--grey-text); }
  .radios { display: flex; flex-direction: column; gap: 12px; margin-top: 8px; }
  .radio { display: flex; align-items: center; gap: 10px; cursor: pointer; font-size: 14px; }
  .radio input { appearance: none; -webkit-appearance: none; width: 18px; height: 18px; border-radius: 50%; border: 1.5px solid var(--border); cursor: pointer; transition: border-color 180ms ease, background 180ms ease; }
  .radio input:checked { border-color: var(--grad-pink); background: radial-gradient(circle, var(--grad-pink) 0%, var(--grad-pink) 40%, transparent 50%); }
  .form .btn-primary { padding: 16px; }

  /* ── Footer ──────────────────────────────────────── */
  .footer { background: var(--ink); color: rgba(255,255,255,0.7); padding: 100px 0 32px; position: relative; overflow: hidden; margin-top: 80px; }
  .footer-bloom { position: absolute; top: -260px; left: 50%; transform: translateX(-50%); width: 1100px; height: 480px; background: radial-gradient(ellipse, rgba(216,61,255,0.32) 0%, rgba(255,62,145,0.18) 35%, rgba(122,77,255,0.10) 60%, transparent 80%); pointer-events: none; opacity: 0.7; border-radius: 50%; filter: blur(20px); }
  .footer-top { display: grid; grid-template-columns: 1.4fr 1fr 1fr 1fr; gap: 48px; padding-bottom: 48px; border-bottom: 1px solid rgba(255,255,255,0.08); position: relative; z-index: 1; }
  .footer-brand .nav-logo { color: var(--paper); margin-bottom: 18px; }
  .footer-brand p { font-size: 14px; line-height: 1.6; color: rgba(255,255,255,0.6); max-width: 320px; margin-bottom: 24px; }
  .footer-cta { display: inline-flex; align-items: center; gap: 8px; padding: 10px 18px; border-radius: var(--radius-pill); background: var(--paper); color: var(--ink); font-size: 13px; font-weight: 600; transition: transform 200ms ease, box-shadow 220ms ease; }
  .footer-cta:hover { transform: translateY(-1px); box-shadow: 0 12px 28px rgba(255,62,145,0.3); }
  .footer-cta svg { width: 14px; height: 14px; }
  .footer-col h3 { font-size: 11px; font-weight: 600; letter-spacing: 0.18em; text-transform: uppercase; color: rgba(255,255,255,0.5); margin-bottom: 18px; }
  .footer-col ul { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 12px; }
  .footer-col a { color: rgba(255,255,255,0.78); font-size: 14px; transition: color 180ms ease; }
  .footer-col a:hover { color: var(--paper); }
  .footer-bottom { display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 16px; padding-top: 32px; position: relative; z-index: 1; font-size: 13px; color: rgba(255,255,255,0.55); }
  .footer-bottom a { color: rgba(255,255,255,0.55); transition: color 180ms ease; }
  .footer-bottom a:hover { color: var(--paper); }
  .footer-social { display: flex; gap: 8px; }
  .footer-social a { width: 36px; height: 36px; border-radius: 50%; border: 1px solid rgba(255,255,255,0.12); display: inline-flex; align-items: center; justify-content: center; transition: border-color 200ms ease, background 200ms ease; }
  .footer-social a:hover { border-color: rgba(255,255,255,0.4); background: rgba(255,255,255,0.04); }
  .footer-social svg { width: 16px; height: 16px; }
  .footer-legal { display: flex; gap: 18px; flex-wrap: wrap; }
  @media (max-width: 760px) { .footer-top { grid-template-columns: 1fr 1fr; gap: 32px; } .footer-brand { grid-column: 1/-1; } }

  /* ── Animations ──────────────────────────────────── */
  @keyframes rise { from { opacity: 0; transform: translateY(14px); } to { opacity: 1; transform: translateY(0); } }
  .rise > * { opacity: 0; animation: rise 720ms cubic-bezier(.2,.8,.2,1) forwards; }
  .rise > *:nth-child(1) { animation-delay: 60ms; }
  .rise > *:nth-child(2) { animation-delay: 160ms; }
  .rise > *:nth-child(3) { animation-delay: 260ms; }
  .rise > *:nth-child(4) { animation-delay: 360ms; }
  @media (prefers-reduced-motion: reduce) { .rise > * { opacity: 1; animation: none; } }

  /* ── Mid-page CTA strip ──────────────────────── */
  .mid-cta { padding: 32px 0; background: var(--off-white); }
  .mid-cta-bar { background: var(--ink); color: var(--paper); border-radius: var(--radius-pill); padding: 22px 32px; display: flex; align-items: center; justify-content: space-between; gap: 24px; flex-wrap: wrap; max-width: 980px; margin: 0 auto; }
  .mid-cta-bar h3.card-h { font-size: clamp(18px, 1.7vw, 22px); font-weight: 600; letter-spacing: -0.015em; margin: 0; color: var(--paper); }

  /* ── Animated Beam (Content Engine flow) ─────────── */
  .beam-section { background: var(--ink); color: var(--paper); padding: clamp(72px, 8vw, 120px) 0; position: relative; overflow: hidden; }
  .beam-section .sec-head { color: var(--paper); }
  .beam-section .sec-head h2 { color: var(--paper); }
  .beam-section .sec-head .lede { color: rgba(255,255,255,0.72); max-width: 620px; margin: 16px auto 0; }
  .beam-stage { position: relative; max-width: 880px; margin: 56px auto 0; min-height: 460px; padding: 24px 8px; display: flex; align-items: center; justify-content: space-between; gap: 24px; }
  .beam-col { display: flex; flex-direction: column; justify-content: center; gap: 14px; z-index: 2; position: relative; }
  .beam-inputs { gap: 16px; flex: 0 0 auto; }
  .beam-center, .beam-output { flex: 0 0 auto; }
  .beam-node { display: inline-flex; align-items: center; gap: 12px; padding: 12px 16px 12px 14px; background: var(--charcoal); border: 1px solid rgba(255,255,255,0.10); border-radius: 999px; color: var(--paper); transition: transform 240ms ease, border-color 240ms ease; backdrop-filter: blur(6px); }
  .beam-node svg { width: 22px; height: 22px; flex-shrink: 0; opacity: 0.95; }
  .beam-node span { font-size: 14px; font-weight: 500; letter-spacing: -0.005em; white-space: nowrap; }
  .beam-node:hover { transform: translateY(-1px); border-color: rgba(255,62,145,0.35); }
  .beam-hub { padding: 18px; background: var(--paper); color: var(--ink); border: 0; box-shadow: 0 18px 48px rgba(255,62,145,0.28), 0 0 0 1.5px rgba(255,255,255,0.08); }
  .beam-hub img { width: 56px; height: 56px; display: block; }
  .beam-out { padding: 14px 20px 14px 16px; border-color: rgba(255,255,255,0.18); background: linear-gradient(135deg, rgba(255,122,47,0.15), rgba(122,77,255,0.15)); }
  .beam-overlay { position: absolute; inset: 0; width: 100%; height: 100%; pointer-events: none; z-index: 1; }
  .beam-overlay .beam-wire { stroke: rgba(255,255,255,0.10); stroke-width: 1.5; fill: none; }
  .beam-overlay .beam-pulse { stroke: url(#beamGrad); stroke-width: 2.5; fill: none; stroke-linecap: round; }
  .beam-pulse { animation: beamPulse 3.2s linear infinite; }
  @keyframes beamPulse {
    0% { stroke-dashoffset: var(--beam-len, 600); }
    100% { stroke-dashoffset: calc(var(--beam-dash, 60) * -1); }
  }
  @media (prefers-reduced-motion: reduce) {
    .beam-pulse { animation: none; opacity: 0.5; stroke-dasharray: none; stroke-dashoffset: 0; }
  }
  @media (max-width: 720px) {
    .beam-stage { flex-direction: column; min-height: 0; gap: 14px; padding: 16px 0; }
    .beam-overlay { display: none; }
    .beam-inputs { gap: 10px; }
    .beam-node { width: max-content; }
    .beam-hub { margin: 4px 0; }
    .beam-col { width: 100%; align-items: center; }
  }

  /* ── Backlight glow (magicui port — SVG filter, applied directly) ── */
  .glow-backlight { filter: url(#sequenceBacklight); isolation: isolate; }
  @media (prefers-reduced-motion: reduce) {
    .glow-backlight { filter: none; }
  }

  /* ── Border Beam (magicui port — rotating conic-gradient ring for circular hub) ── */
  .beam-hub { position: relative; }
  .beam-hub::before {
    content: '';
    position: absolute;
    inset: -4px;
    border-radius: 50%;
    padding: 4px;
    background: conic-gradient(from 0deg, transparent 0deg, transparent 270deg, #FF7A2F 295deg, #FF3E91 320deg, #7A4DFF 345deg, transparent 360deg);
    -webkit-mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
    -webkit-mask-composite: xor;
            mask-composite: exclude;
    animation: beamHubSpin 4.2s linear infinite;
    pointer-events: none;
  }
  @keyframes beamHubSpin {
    to { transform: rotate(360deg); }
  }
  @media (prefers-reduced-motion: reduce) {
    .beam-hub::before { animation: none; opacity: 0.4; }
  }
  /* ── Content → Ads → Audience beam (second instance) ── */
  /* Solid white glowing stroke so the travelling dash is visible across the full width
     (the shared #beamGrad is userSpaceOnUse 0–100 and fades to transparent out here). */
  #beamOverlay2 .beam-pulse { stroke: #ffffff; stroke-width: 2.5; filter: drop-shadow(0 0 5px rgba(255,255,255,0.9)); }
  /* The travelling pulse is core to this diagram — keep it moving even under reduced-motion (it's subtle). */
  @media (prefers-reduced-motion: reduce) {
    #beamOverlay2 .beam-pulse { animation: beamPulse 3.2s linear infinite; opacity: 1; }
  }
  .beam-hub-ads { padding: 0; width: 104px; height: 104px; border-radius: 50%; background: var(--ink); color: var(--paper); justify-content: center; border: 0; box-shadow: 0 18px 48px rgba(255,62,145,0.30), 0 0 0 1.5px rgba(255,255,255,0.16); }
  .beam-hub-ads span { font-size: 24px; font-weight: 700; letter-spacing: 0.06em; white-space: nowrap; }

  /* ── Aurora Text (magicui port — animated gradient background-clip:text) ── */
  .aurora-text {
    background-image: linear-gradient(135deg, #FF7A2F 0%, #FF5B5F 25%, #FF3E91 50%, #D83DFF 75%, #7A4DFF 100%);
    background-size: 200% auto;
    background-clip: text;
    -webkit-background-clip: text;
    color: transparent;
    -webkit-text-fill-color: transparent;
    animation: auroraShimmer 8s linear infinite;
    display: inline-block;
  }
  @keyframes auroraShimmer {
    0%   { background-position: 0% 50%; }
    100% { background-position: 200% 50%; }
  }
  @media (prefers-reduced-motion: reduce) {
    .aurora-text { animation: none; background-position: 50% 50%; }
  }
  .mid-cta-bar a { color: var(--paper); display: inline-flex; align-items: center; gap: 8px; font-weight: 600; font-size: 14px; border-bottom: 1px solid rgba(255,255,255,0.4); padding-bottom: 4px; transition: border-color 200ms ease; }
  .mid-cta-bar a:hover { border-color: var(--grad-pink); }

  /* ── Fit qualifier (Who this is for) ──────────── */
  .fit { background: var(--off-white); padding: 110px 0; }
  .fit-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; max-width: 1080px; margin: 56px auto 0; }
  .fit-card { background: var(--paper); border: 1px solid var(--border); border-radius: var(--radius-card); padding: 36px; }
  .fit-card.no { background: transparent; border: 1px dashed rgba(11,11,15,0.18); }
  .fit-card h3 { font-size: 22px; font-weight: 600; letter-spacing: -0.02em; margin-bottom: 22px; }
  .fit-card.no h3 { color: var(--grey-text); }
  .fit-list { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 14px; }
  .fit-list li { display: flex; align-items: flex-start; gap: 12px; font-size: 15px; line-height: 1.5; color: var(--ink); }
  .fit-list li svg { flex-shrink: 0; margin-top: 3px; width: 18px; height: 18px; }
  .fit-card.no .fit-list li { color: var(--grey-text); }
  .fit-card.no .fit-list li svg { color: rgba(11,11,15,0.30); }
  .fit-card.yes .fit-list li svg { color: #22c55e; }
  @media (max-width: 760px) { .fit-grid { grid-template-columns: 1fr; } }

  /* ── Comparison table ─────────────────────────── */
  .compare { background: var(--paper); padding: 110px 0; }
  .compare-table { max-width: 1080px; margin: 56px auto 0; border: 1px solid var(--border); border-radius: var(--radius-large); overflow: hidden; box-shadow: 0 16px 40px rgba(11,11,15,0.04); }
  .compare-row { display: grid; grid-template-columns: 1.4fr 1fr 1fr 1fr; align-items: stretch; }
  .compare-row + .compare-row { border-top: 1px solid var(--border); }
  .compare-cell { padding: 18px 22px; font-size: 14px; display: flex; align-items: center; justify-content: center; text-align: center; gap: 8px; }
  .compare-row.head .compare-cell { background: var(--off-white); font-weight: 600; font-size: 12px; letter-spacing: 0.06em; text-transform: uppercase; color: var(--grey-text); padding: 22px 22px; }
  .compare-row.head .compare-cell:first-child { color: var(--ink); }
  .compare-row.head .compare-cell.us { background: var(--ink); color: var(--paper); position: relative; overflow: hidden; }
  .compare-row.head .compare-cell.us::before { content: ""; position: absolute; inset: 0; background: radial-gradient(ellipse at center, rgba(255,62,145,0.40) 0%, rgba(122,77,255,0.20) 50%, transparent 80%); pointer-events: none; }
  .compare-row.head .compare-cell.us > * { position: relative; z-index: 1; }
  .compare-row .compare-cell:first-child { color: var(--ink); font-weight: 500; }
  .compare-row .compare-cell.us { background: rgba(216,61,255,0.04); border-left: 1.5px solid rgba(216,61,255,0.30); border-right: 1.5px solid rgba(216,61,255,0.30); font-weight: 600; color: var(--ink); }
  .compare-row:last-child .compare-cell.us { border-bottom: 1.5px solid rgba(216,61,255,0.30); }
  .compare-cell svg { width: 18px; height: 18px; flex-shrink: 0; }
  .compare-cell.no { color: var(--grey-text); }
  .compare-cell.no svg { color: rgba(11,11,15,0.25); }
  .compare-cell.yes svg, .compare-cell.us-yes svg { color: #22c55e; }
  @media (max-width: 760px) {
    .compare-table { font-size: 12px; }
    .compare-cell { padding: 14px 12px; font-size: 12px; }
  }

  /* ── Guarantee ─────────────────────────────── */
  .guarantee { background: var(--off-white); padding: 80px 0; }
  .guarantee-card { max-width: 760px; margin: 0 auto; background: var(--paper); border: 1px solid var(--border); border-radius: var(--radius-card); padding: 36px 44px; display: grid; grid-template-columns: auto 1fr; gap: 28px; align-items: center; box-shadow: 0 18px 44px rgba(11,11,15,0.06); position: relative; overflow: hidden; }
  .guarantee-card::before { content: ""; position: absolute; right: -10%; top: -50%; width: 50%; aspect-ratio: 1; border-radius: 50%; background: radial-gradient(circle, rgba(255,122,47,0.10) 0%, rgba(255,62,145,0.06) 40%, transparent 70%); pointer-events: none; }
  .guarantee-card > * { position: relative; z-index: 1; }
  .guarantee-icon { width: 72px; height: 72px; border-radius: 50%; background: var(--gradient); display: flex; align-items: center; justify-content: center; flex-shrink: 0; box-shadow: 0 12px 28px rgba(255,62,145,0.30); }
  .guarantee-icon svg { width: 32px; height: 32px; color: var(--paper); }
  .guarantee-text h3 { font-size: 22px; font-weight: 600; letter-spacing: -0.02em; margin-bottom: 8px; }
  .guarantee-text p { font-size: 14px; line-height: 1.55; color: var(--grey-text); margin: 0; }
  @media (max-width: 540px) { .guarantee-card { grid-template-columns: 1fr; text-align: center; padding: 32px 28px; } .guarantee-icon { margin: 0 auto; } }

  /* ── Next steps timeline ───────────────────── */
  .next-steps { background: var(--ink); color: var(--paper); padding: 110px 0; position: relative; overflow: hidden; }
  .next-steps .sec-head .eyebrow { color: rgba(255,255,255,0.55); }
  .next-steps h2 { color: var(--paper); }
  .next-steps::before { content: ""; position: absolute; inset: 0; background: radial-gradient(ellipse at 50% 0%, rgba(255,62,145,0.18) 0%, rgba(122,77,255,0.10) 40%, transparent 70%); pointer-events: none; }
  .next-steps > .container { position: relative; z-index: 1; }
  .next-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; margin-top: 56px; }
  .next-step { background: rgba(255,255,255,0.04); border: 1px solid rgba(255,255,255,0.10); border-radius: var(--radius-card); padding: 28px; position: relative; transition: transform 240ms ease, border-color 240ms ease; }
  .next-step:hover { transform: translateY(-2px); border-color: rgba(255,255,255,0.22); }
  .next-step .step-day { font-size: 11px; font-weight: 600; letter-spacing: 0.18em; color: rgba(255,255,255,0.55); text-transform: uppercase; }
  .next-step .step-num { position: absolute; top: 24px; right: 24px; width: 32px; height: 32px; border-radius: 50%; background: var(--gradient); color: var(--paper); display: flex; align-items: center; justify-content: center; font-weight: 700; font-size: 13px; }
  .next-step h3.card-h { font-size: 18px; font-weight: 600; letter-spacing: -0.02em; margin: 18px 0 8px; }
  .next-step p { font-size: 13px; line-height: 1.55; color: rgba(255,255,255,0.7); margin: 0; }
  @media (max-width: 760px) { .next-grid { grid-template-columns: 1fr 1fr; } }
  @media (max-width: 480px) { .next-grid { grid-template-columns: 1fr; } }

  /* ── Lead magnet ───────────────────────────── */
  .magnet { background: var(--off-white); padding: 80px 0; }
  .magnet-card { max-width: 820px; margin: 0 auto; background: var(--paper); border: 1px solid var(--border); border-radius: var(--radius-large); padding: 40px 48px; display: grid; grid-template-columns: auto 1fr; gap: 28px; align-items: center; box-shadow: 0 18px 44px rgba(11,11,15,0.06); position: relative; overflow: hidden; }
  .magnet-card::before { content: ""; position: absolute; right: -10%; top: -50%; width: 50%; aspect-ratio: 1; border-radius: 50%; background: radial-gradient(circle, rgba(255,122,47,0.10) 0%, rgba(216,61,255,0.06) 40%, transparent 70%); pointer-events: none; }
  .magnet-card > * { position: relative; z-index: 1; }
  .magnet-icon { width: 64px; height: 64px; border-radius: 14px; background: var(--ink); color: var(--paper); display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
  .magnet-icon svg { width: 28px; height: 28px; }
  .magnet-text h3 { font-size: 22px; font-weight: 600; letter-spacing: -0.015em; margin-bottom: 6px; }
  .magnet-text > p { font-size: 14px; line-height: 1.55; color: var(--grey-text); margin-bottom: 18px; max-width: 460px; }
  .magnet-form { display: flex; gap: 8px; align-items: center; }
  .magnet-form input { flex: 1; padding: 12px 18px; border: 1px solid var(--border); border-radius: var(--radius-pill); font-family: inherit; font-size: 14px; outline: none; transition: border-color 200ms ease; }
  .magnet-form input:focus { border-color: var(--ink); }
  .magnet-form button { background: var(--ink); color: var(--paper); border: 0; padding: 12px 22px; border-radius: var(--radius-pill); font-family: inherit; font-size: 14px; font-weight: 600; cursor: pointer; transition: transform 200ms ease, box-shadow 220ms ease; flex-shrink: 0; }
  .magnet-form button:hover { transform: translateY(-1px); box-shadow: 0 12px 28px rgba(255,62,145,0.30); }
  .magnet-fine { font-size: 11px; color: var(--grey-text); margin-top: 10px; }
  @media (max-width: 580px) {
    .magnet-card { grid-template-columns: 1fr; padding: 32px 24px; text-align: left; }
    .magnet-icon { margin: 0; }
    .magnet-form { flex-direction: column; align-items: stretch; }
  }

  /* ── Sticky mobile CTA ─────────────────────── */
  .sticky-cta { position: fixed; bottom: 14px; left: 14px; right: 14px; z-index: 80; display: none; align-items: center; justify-content: space-between; padding: 12px 16px 12px 22px; border-radius: var(--radius-pill); background: var(--ink); color: var(--paper); box-shadow: 0 14px 36px rgba(0,0,0,0.30); font-weight: 600; font-size: 14px; transform: translateY(20px); opacity: 0; transition: transform 320ms ease, opacity 320ms ease; }
  .sticky-cta.show { transform: translateY(0); opacity: 1; }
  .sticky-cta .arrow { width: 36px; height: 36px; border-radius: 50%; background: var(--paper); color: var(--ink); display: flex; align-items: center; justify-content: center; flex-shrink: 0; margin-left: 12px; }
  .sticky-cta .arrow svg { width: 14px; height: 14px; }
  @media (max-width: 760px) { .sticky-cta { display: flex; } body { padding-bottom: 80px; } }
