    *, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

    :root {
      --black:   #080808;
      --off:     #0f0f0f;
      --border:  #1e1e1e;
      --muted:   #444;
      --text:    #c8c8c8;
      --white:   #f0ede8;
      --amber:   #e8a020;
      --amber-d: #b87a10;
      --amber-g: linear-gradient(135deg, #e8a020 0%, #f0c060 100%);
    }

    html { scroll-behavior: smooth; }

    body {
      background: var(--black);
      color: var(--text);
      font-family: 'DM Sans', sans-serif;
      font-size: 16px;
      line-height: 1.6;
      overflow-x: hidden;
    }

    /* ─── NOISE 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='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)' opacity='0.04'/%3E%3C/svg%3E");
      pointer-events: none;
      z-index: 0;
      opacity: 0.35;
    }

    /* ─── NAV ─── */
    nav {
      position: fixed;
      top: 0; left: 0; right: 0;
      z-index: 100;
      padding: 20px 5vw;
      display: flex;
      justify-content: space-between;
      align-items: center;
      background: var(--black);
      border-bottom: 1px solid var(--border);
      transition: border-color 0.3s, background 0.3s;
    }
    nav.scrolled {
      background: var(--black);
      backdrop-filter: blur(12px);
      border-color: var(--border);
    }
    .nav-logo {
      font-family: 'Bebas Neue', sans-serif;
      font-size: 1.6rem;
      letter-spacing: 0.12em;
      color: var(--white);
      text-decoration: none;
      display: flex;
      align-items: center;
    }
    .nav-logo img {
      display: block;
      height: 18px;
      width: auto;
    }
    .nav-logo span { color: var(--amber); }
    .nav-cta {
      background: var(--amber);
      color: #000;
      font-family: 'DM Sans', sans-serif;
      font-weight: 500;
      font-size: 0.82rem;
      letter-spacing: 0.08em;
      text-transform: uppercase;
      padding: 10px 22px;
      text-decoration: none;
      transition: background 0.2s, transform 0.15s;
    }
    .nav-cta:hover { background: #f0c060; transform: translateY(-1px); }

    /* ─── SECTIONS ─── */
    section { position: relative; z-index: 1; }

    /* ─── HERO ─── */
    #hero {
      display: flex;
      flex-direction: column;
      justify-content: center;
      min-height: 100svh;
      min-height: 100vh;
      padding: 150px 5vw 80px;
      overflow: hidden;
    }

    /* Two-column hero layout */
    .hero-layout {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 60px;
      align-items: center;
      width: 100%;
      position: relative;
      z-index: 1;
    }
    .hero-content {
      display: flex;
      flex-direction: column;
    }
    .hero-visual {
      display: flex;
      flex-direction: column;
      align-items: center;
      justify-content: center;
      opacity: 0;
      animation: fadeUp 1s 0.6s forwards;
    }
    .lead-flow-svg {
      width: 100%;
      max-width: 600px;
      height: auto;
      overflow: visible;
      filter: drop-shadow(0 0 80px rgba(232, 160, 32, 0.1));
    }
    .hero-visual-label {
      display: flex;
      align-items: center;
      gap: 8px;
      font-family: 'DM Mono', monospace;
      font-size: 0.65rem;
      letter-spacing: 0.12em;
      text-transform: uppercase;
      color: var(--muted);
      margin-top: 18px;
    }
    .hv-dot {
      width: 6px;
      height: 6px;
      border-radius: 50%;
      background: var(--amber);
      animation: pulse 2s infinite;
      flex-shrink: 0;
    }

    @media (max-width: 900px) {
      .hero-layout {
        grid-template-columns: 1fr;
        gap: 48px;
      }
      .hero-visual {
        order: -1;
      }
      .lead-flow-svg {
        max-width: 420px;
      }
    }
    .hero-glow {
      position: absolute;
      top: -200px; left: -200px;
      width: 700px; height: 700px;
      background: radial-gradient(circle, rgba(232,160,32,0.08) 0%, transparent 70%);
      pointer-events: none;
    }
    .hero-tag {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      font-family: 'DM Mono', monospace;
      font-size: 0.72rem;
      letter-spacing: 0.14em;
      text-transform: uppercase;
      color: var(--amber);
      border: 1px solid rgba(232,160,32,0.3);
      padding: 6px 14px;
      margin-bottom: 36px;
      width: fit-content;
      opacity: 0;
      animation: fadeUp 0.8s 0.1s forwards;
    }
    .hero-tag::before {
      content: '';
      display: block;
      width: 6px; height: 6px;
      border-radius: 50%;
      background: var(--amber);
      animation: pulse 2s infinite;
    }
    @keyframes pulse {
      0%, 100% { opacity: 1; transform: scale(1); }
      50% { opacity: 0.4; transform: scale(0.7); }
    }
    .hero-h1 {
      font-family: 'Bebas Neue', sans-serif;
      font-size: clamp(3.8rem, 10vw, 9rem);
      line-height: 0.92;
      letter-spacing: 0.02em;
      color: var(--white);
      max-width: 900px;
      opacity: 0;
      animation: fadeUp 0.9s 0.25s forwards;
    }
    .hero-h1 .accent { color: var(--amber); }
    .hero-h1 .line2 {
      display: block;
      -webkit-text-stroke: 1px var(--white);
      color: transparent;
    }
    .hero-sub {
      margin-top: 32px;
      max-width: 520px;
      font-size: 1.05rem;
      font-weight: 300;
      color: var(--text);
      line-height: 1.7;
      opacity: 0;
      animation: fadeUp 0.9s 0.4s forwards;
    }
    .hero-actions {
      display: flex;
      gap: 16px;
      margin-top: 44px;
      flex-wrap: wrap;
      opacity: 0;
      animation: fadeUp 0.9s 0.55s forwards;
    }
    .btn-primary {
      background: var(--amber);
      color: #000;
      font-weight: 500;
      font-size: 0.9rem;
      letter-spacing: 0.06em;
      text-transform: uppercase;
      padding: 16px 36px;
      text-decoration: none;
      transition: background 0.2s, transform 0.15s, box-shadow 0.2s;
    }
    .btn-primary:hover {
      background: #f0c060;
      transform: translateY(-2px);
      box-shadow: 0 8px 40px rgba(232,160,32,0.25);
    }
    .btn-ghost {
      border: 1px solid var(--border);
      background: rgba(255,255,255,0.03);
      backdrop-filter: blur(12px);
      -webkit-backdrop-filter: blur(12px);
      color: var(--white);
      font-size: 0.9rem;
      letter-spacing: 0.06em;
      text-transform: uppercase;
      padding: 16px 36px;
      text-decoration: none;
      transition: border-color 0.2s, color 0.2s, background 0.2s;
    }
    .btn-ghost:hover { border-color: var(--amber); color: var(--amber); }
    .hero-stats-wrap {
      padding: 56px 5vw 60px;
      border-top: 1px solid var(--border);
    }
    .hero-stats {
      display: flex;
      gap: 48px;
      flex-wrap: wrap;
      justify-content: center;
    }
    .stat-item {}
    .stat-num {
      font-family: 'Bebas Neue', sans-serif;
      font-size: 2.6rem;
      color: var(--white);
      line-height: 1;
    }
    .stat-num span { color: var(--amber); }
    .stat-label {
      font-size: 0.78rem;
      letter-spacing: 0.08em;
      text-transform: uppercase;
      color: var(--muted);
      margin-top: 4px;
    }

    @keyframes fadeUp {
      from { opacity: 0; transform: translateY(24px); }
      to   { opacity: 1; transform: translateY(0); }
    }

    /* ─── MARQUEE ─── */
    .marquee-wrap {
      border-top: 1px solid var(--border);
      border-bottom: 1px solid var(--border);
      padding: 14px 0;
      overflow: hidden;
      background: var(--off);
    }
    .marquee-track {
      display: flex;
      gap: 0;
      animation: marquee 28s linear infinite;
      white-space: nowrap;
    }
    .marquee-item {
      display: inline-flex;
      align-items: center;
      gap: 20px;
      padding: 0 28px;
      font-family: 'DM Mono', monospace;
      font-size: 0.72rem;
      letter-spacing: 0.12em;
      text-transform: uppercase;
      color: var(--muted);
    }
    .marquee-item .dot {
      width: 4px; height: 4px;
      border-radius: 50%;
      background: var(--amber);
    }
    @keyframes marquee {
      from { transform: translateX(0); }
      to   { transform: translateX(-50%); }
    }

    /* ─── PROBLEM ─── */
    #problem {
      padding: 120px 5vw;
    }
    .section-tag {
      font-family: 'DM Mono', monospace;
      font-size: 0.7rem;
      letter-spacing: 0.16em;
      text-transform: uppercase;
      color: var(--amber);
      margin-bottom: 20px;
    }
    .section-h2 {
      font-family: 'Bebas Neue', sans-serif;
      font-size: clamp(2.8rem, 6vw, 5.5rem);
      color: var(--white);
      line-height: 0.95;
      letter-spacing: 0.02em;
      max-width: 700px;
    }
    .section-h2 .muted { color: var(--muted); }
    .problem-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
      gap: 1px;
      margin-top: 64px;
      border: 1px solid var(--border);
    }
    .problem-card {
      padding: 36px 32px;
      border-right: 1px solid rgba(255,255,255,0.08);
      background: rgba(255, 255, 255, 0.06);
      backdrop-filter: blur(32px) saturate(180%);
      -webkit-backdrop-filter: blur(32px) saturate(180%);
      transition: background 0.2s;
      box-shadow: inset 0 1px 0 rgba(255,255,255,0.13), inset 0 -1px 0 rgba(0,0,0,0.25), 0 4px 20px rgba(0,0,0,0.3);
    }
    .problem-card:last-child { border-right: none; }
    .problem-card:hover { background: rgba(255, 255, 255, 0.09); }
    .problem-num {
      font-family: 'Bebas Neue', sans-serif;
      font-size: 3rem;
      color: var(--border);
      line-height: 1;
    }
    .problem-title {
      font-size: 0.95rem;
      font-weight: 500;
      color: var(--white);
      margin: 16px 0 8px;
    }
    .problem-body {
      font-size: 0.85rem;
      color: var(--muted);
      line-height: 1.65;
      font-weight: 300;
    }

    /* ─── SOLUTION ─── */
    #solution {
      padding: 120px 5vw;
      background: var(--off);
      border-top: 1px solid var(--border);
      border-bottom: 1px solid var(--border);
    }
    .solution-layout {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 80px;
      align-items: start;
      margin-top: 64px;
    }
    @media (max-width: 768px) {
      .solution-layout { grid-template-columns: 1fr; gap: 48px; }
    }
    .flow-list {
      display: flex;
      flex-direction: column;
      gap: 0;
    }
    .flow-item {
      display: grid;
      grid-template-columns: 48px 1fr;
      gap: 20px;
      padding: 28px 0;
      border-bottom: 1px solid var(--border);
      cursor: default;
      transition: padding-left 0.2s;
    }
    .flow-item:hover { padding-left: 8px; }
    .flow-item:first-child { border-top: 1px solid var(--border); }
    .flow-num {
      font-family: 'DM Mono', monospace;
      font-size: 0.72rem;
      color: var(--amber);
      padding-top: 3px;
    }
    .flow-title {
      font-size: 1rem;
      font-weight: 500;
      color: var(--white);
      margin-bottom: 6px;
    }
    .flow-body {
      font-size: 0.85rem;
      color: var(--muted);
      line-height: 1.65;
      font-weight: 300;
    }
    .roi-box {
      border: 1px solid rgba(255,255,255,0.07);
      padding: 40px 36px;
      position: sticky;
      top: 36px;
      background: rgba(14, 14, 14, 0.52);
      backdrop-filter: blur(22px);
      -webkit-backdrop-filter: blur(22px);
      box-shadow: 0 8px 32px rgba(0,0,0,0.45), inset 0 1px 0 rgba(255,255,255,0.04);
    }
    .roi-box-tag {
      font-family: 'DM Mono', monospace;
      font-size: 0.65rem;
      letter-spacing: 0.14em;
      text-transform: uppercase;
      color: var(--muted);
      margin-bottom: 28px;
    }
    .roi-row {
      display: flex;
      justify-content: space-between;
      align-items: baseline;
      padding: 14px 0;
      border-bottom: 1px solid var(--border);
      font-size: 0.85rem;
    }
    .roi-row:last-of-type { border-bottom: none; }
    .roi-label { color: var(--muted); font-weight: 300; }
    .roi-val { color: var(--white); font-weight: 500; font-family: 'DM Mono', monospace; font-size: 0.82rem; }
    .roi-val.amber { color: var(--amber); }
    .roi-divider {
      margin: 20px 0;
      border: none;
      border-top: 1px solid var(--border);
    }
    .roi-total-label {
      font-size: 0.78rem;
      letter-spacing: 0.1em;
      text-transform: uppercase;
      color: var(--muted);
    }
    .roi-total-val {
      font-family: 'Bebas Neue', sans-serif;
      font-size: 2.4rem;
      color: var(--amber);
      line-height: 1.1;
      margin: 4px 0 8px;
    }
    .roi-sub {
      font-size: 0.78rem;
      color: var(--muted);
    }

    /* ─── ROI TILT CARD ─── */
    .tilt-card-spotlight-overlay {
      pointer-events: none;
      position: absolute;
      inset: 0;
      z-index: 10;
      overflow: hidden;
      opacity: 0;
      transition: opacity 0.3s;
    }
    .tilt-card-spotlight-overlay.is-visible {
      opacity: 1;
    }
    .tilt-card-spotlight-core {
      position: absolute;
      width: 200%;
      height: 200%;
      border-radius: 999px;
      transform: translate(-50%, -50%);
      background: radial-gradient(circle, rgba(255,255,255,0.15) 0%, transparent 40%);
    }

    /* ─── PRICING ─── */
    #pricing {
      padding: 120px 5vw;
    }
    .pricing-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 1px;
      margin-top: 64px;
      border: 1px solid var(--border);
    }
    @media (max-width: 900px) {
      .pricing-grid { grid-template-columns: 1fr; }
    }
    .pricing-card {
      background: rgba(255, 255, 255, 0.06);
      backdrop-filter: blur(32px) saturate(180%);
      -webkit-backdrop-filter: blur(32px) saturate(180%);
      padding: 44px 36px 40px;
      border-right: 1px solid rgba(255,255,255,0.08);
      position: relative;
      transition: background 0.2s;
      box-shadow: inset 0 1px 0 rgba(255,255,255,0.13), inset 0 -1px 0 rgba(0,0,0,0.25), 0 4px 20px rgba(0,0,0,0.3);
    }
    .pricing-card:last-child { border-right: none; }
    .pricing-card.featured {
      background: rgba(232, 160, 32, 0.1);
    }
    .pricing-card.featured::before {
      content: 'MOST POPULAR';
      position: absolute;
      top: -1px; left: 36px;
      background: var(--amber);
      color: #000;
      font-family: 'DM Mono', monospace;
      font-size: 0.6rem;
      letter-spacing: 0.14em;
      padding: 4px 10px;
    }
    .plan-name {
      font-family: 'DM Mono', monospace;
      font-size: 0.7rem;
      letter-spacing: 0.14em;
      text-transform: uppercase;
      color: var(--muted);
      margin-bottom: 20px;
    }
    .plan-price {
      font-family: 'Bebas Neue', sans-serif;
      font-size: 3.6rem;
      color: var(--white);
      line-height: 1;
    }
    .plan-price sup {
      font-size: 1.4rem;
      vertical-align: top;
      margin-top: 10px;
      display: inline-block;
      color: var(--muted);
    }
    .plan-recurring {
      font-size: 0.8rem;
      color: var(--muted);
      margin-top: 6px;
      margin-bottom: 28px;
    }
    .plan-recurring span { color: var(--amber); }
    .plan-divider {
      border: none;
      border-top: 1px solid var(--border);
      margin: 28px 0;
    }
    .plan-features {
      list-style: none;
      display: flex;
      flex-direction: column;
      gap: 12px;
      margin-bottom: 36px;
    }
    .plan-features li {
      display: flex;
      align-items: flex-start;
      gap: 12px;
      font-size: 0.85rem;
      color: var(--text);
      font-weight: 300;
    }
    .plan-features li::before {
      content: '→';
      color: var(--amber);
      flex-shrink: 0;
      font-size: 0.75rem;
      margin-top: 2px;
    }
    .plan-cta {
      display: block;
      text-align: center;
      padding: 14px 24px;
      font-size: 0.82rem;
      letter-spacing: 0.08em;
      text-transform: uppercase;
      font-weight: 500;
      text-decoration: none;
      transition: all 0.2s;
    }
    .plan-cta.solid {
      background: var(--amber);
      color: #000;
    }
    .plan-cta.solid:hover { background: #f0c060; }
    .plan-cta.outline {
      border: 1px solid var(--border);
      background: rgba(255,255,255,0.03);
      backdrop-filter: blur(12px);
      -webkit-backdrop-filter: blur(12px);
      color: var(--white);
    }
    .plan-cta.outline:hover { border-color: var(--amber); color: var(--amber); }

    /* ─── GUARANTEE ─── */
    #guarantee {
      padding: 100px 5vw;
      border-top: 1px solid var(--border);
      background: var(--off);
      display: flex;
      flex-direction: column;
      align-items: center;
      text-align: center;
      position: relative;
      overflow: hidden;
    }
    .guarantee-icon {
      width: 64px; height: 64px;
      border: 1px solid var(--amber);
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 1.6rem;
      margin-bottom: 32px;
      background: rgba(232, 160, 32, 0.05);
      backdrop-filter: blur(12px);
      -webkit-backdrop-filter: blur(12px);
    }
    #guarantee .section-h2 { max-width: 600px; margin: 0 auto; text-align: center; }
    .guarantee-body {
      max-width: 520px;
      margin: 24px auto 0;
      font-size: 1rem;
      font-weight: 300;
      color: var(--muted);
      line-height: 1.75;
    }
    .guarantee-body strong { color: var(--white); font-weight: 400; }

    /* ─── CTA BAND ─── */
    #cta {
      padding: 60px 5vw 120px;
      text-align: center;
      position: relative;
      overflow: hidden;
    }
    .cta-glow {
      position: absolute;
      bottom: -200px; right: -200px;
      width: 600px; height: 600px;
      background: radial-gradient(circle, rgba(232,160,32,0.06) 0%, transparent 70%);
      pointer-events: none;
    }
    #cta .section-h2 {
      max-width: 680px;
      margin: 0 auto 40px;
      text-align: center;
    }
    .cta-email {
      font-family: 'DM Mono', monospace;
      font-size: 0.8rem;
      color: var(--muted);
      margin-top: 20px;
    }
    .cta-email a { color: var(--amber); text-decoration: none; }
    .cta-email a:hover { text-decoration: underline; }

    /* ─── FOOTER ─── */
    footer {
      border-top: 1px solid var(--border);
      padding: 32px 5vw;
      display: flex;
      justify-content: space-between;
      align-items: center;
      flex-wrap: wrap;
      gap: 16px;
    }
    .footer-logo {
      font-family: 'Bebas Neue', sans-serif;
      font-size: 1.2rem;
      letter-spacing: 0.12em;
      color: var(--white);
      text-decoration: none;
      display: flex;
      flex-direction: column;
      gap: 6px;
      align-items: flex-start;
    }
    .footer-logo img {
      display: block;
      height: 30px;
      width: auto;
    }
    .footer-logo span { color: var(--amber); }
    .footer-tagline {
      font-family: 'DM Mono', monospace;
      font-size: 0.58rem;
      letter-spacing: 0.13em;
      text-transform: uppercase;
      color: var(--muted);
    }
    .footer-copy {
      font-size: 0.75rem;
      color: var(--muted);
    }
    .footer-links {
      display: flex;
      gap: 24px;
    }
    .footer-links a {
      font-size: 0.75rem;
      color: var(--muted);
      text-decoration: none;
      transition: color 0.2s;
    }
    .footer-links a:hover { color: var(--amber); }

    /* ─── SCROLL REVEAL ─── */
    .reveal {
      opacity: 0;
      transform: translateY(30px);
      transition: opacity 0.7s ease, transform 0.7s ease;
    }
    .reveal.visible {
      opacity: 1;
      transform: translateY(0);
    }
    .reveal-delay-1 { transition-delay: 0.1s; }
    .reveal-delay-2 { transition-delay: 0.2s; }
    .reveal-delay-3 { transition-delay: 0.3s; }
    .reveal-delay-4 { transition-delay: 0.4s; }

    /* ─── LIQUID GLASS BUTTONS ─── */
    .btn-primary {
      border-radius: 4px;
      box-shadow:
        inset 0 1px 0 rgba(255,255,255,0.18),
        inset 0 -1px 0 rgba(0,0,0,0.3),
        inset 1px 0 0 rgba(255,255,255,0.08),
        inset -1px 0 0 rgba(0,0,0,0.15),
        0 4px 16px rgba(232,160,32,0.22),
        0 1px 3px rgba(0,0,0,0.4);
    }
    .btn-primary:hover {
      box-shadow:
        inset 0 1px 0 rgba(255,255,255,0.22),
        inset 0 -1px 0 rgba(0,0,0,0.25),
        inset 1px 0 0 rgba(255,255,255,0.1),
        inset -1px 0 0 rgba(0,0,0,0.12),
        0 8px 32px rgba(232,160,32,0.32),
        0 2px 6px rgba(0,0,0,0.35);
    }
    .btn-ghost {
      border-radius: 4px;
      box-shadow:
        inset 0 1px 0 rgba(255,255,255,0.06),
        inset 0 -1px 0 rgba(0,0,0,0.4),
        inset 1px 0 0 rgba(255,255,255,0.04),
        inset -1px 0 0 rgba(0,0,0,0.2),
        0 2px 8px rgba(0,0,0,0.3);
    }
    .btn-ghost:hover {
      box-shadow:
        inset 0 1px 0 rgba(232,160,32,0.12),
        inset 0 -1px 0 rgba(0,0,0,0.35),
        0 4px 16px rgba(232,160,32,0.1);
    }
    .nav-cta {
      border-radius: 4px;
      box-shadow:
        inset 0 1px 0 rgba(255,255,255,0.18),
        inset 0 -1px 0 rgba(0,0,0,0.3),
        0 2px 8px rgba(232,160,32,0.18);
    }
    .nav-cta:hover {
      box-shadow:
        inset 0 1px 0 rgba(255,255,255,0.22),
        inset 0 -1px 0 rgba(0,0,0,0.25),
        0 4px 16px rgba(232,160,32,0.28);
    }
    .plan-cta {
      border-radius: 4px;
    }
    .plan-cta.solid {
      box-shadow:
        inset 0 1px 0 rgba(255,255,255,0.18),
        inset 0 -1px 0 rgba(0,0,0,0.28),
        0 3px 10px rgba(232,160,32,0.2);
    }
    .plan-cta.solid:hover {
      box-shadow:
        inset 0 1px 0 rgba(255,255,255,0.22),
        0 6px 20px rgba(232,160,32,0.3);
    }
    .plan-cta.outline {
      box-shadow:
        inset 0 1px 0 rgba(255,255,255,0.05),
        inset 0 -1px 0 rgba(0,0,0,0.35),
        0 2px 6px rgba(0,0,0,0.25);
    }
    .plan-cta.outline:hover {
      box-shadow:
        inset 0 1px 0 rgba(232,160,32,0.1),
        0 4px 14px rgba(232,160,32,0.12);
    }

    /* ─── CARD GLASS SHIMMER ─── */
    .problem-card,
    .pricing-card,
    .roi-box {
      position: relative;
      overflow: hidden;
    }
    .problem-card::before,
    .pricing-card::before,
    .roi-box::before {
      content: '';
      position: absolute;
      top: 0; left: 0; right: 0;
      height: 1px;
      background: linear-gradient(90deg, transparent 0%, rgba(255,255,255,0.12) 40%, rgba(232,160,32,0.18) 60%, transparent 100%);
      opacity: 0;
      transition: opacity 0.3s;
      pointer-events: none;
      z-index: 2;
    }
    /* Override featured card's existing ::before — add shimmer as ::after instead */
    .pricing-card.featured::after {
      content: '';
      position: absolute;
      top: 0; left: 0; right: 0;
      height: 1px;
      background: linear-gradient(90deg, transparent 0%, rgba(255,255,255,0.12) 40%, rgba(232,160,32,0.2) 60%, transparent 100%);
      opacity: 0;
      transition: opacity 0.3s;
      pointer-events: none;
      z-index: 2;
    }
    .problem-card:hover::before,
    .pricing-card:not(.featured):hover::before,
    .roi-box:hover::before { opacity: 1; }
    .pricing-card.featured:hover::after { opacity: 1; }

    /* ─── HERO GRID ─── */
    .hero-grid-base,
    .hero-grid-reveal {
      position: absolute;
      inset: 0;
      pointer-events: none;
      z-index: 0;
    }
    .hero-grid-base {
      background-image:
        linear-gradient(rgba(232,160,32,0.055) 1px, transparent 1px),
        linear-gradient(90deg, rgba(232,160,32,0.055) 1px, transparent 1px);
      background-size: 40px 40px;
      animation: gridDrift 22s linear infinite;
      opacity: 1;
    }
    .hero-grid-reveal {
      background-image:
        linear-gradient(rgba(232,160,32,0.28) 1px, transparent 1px),
        linear-gradient(90deg, rgba(232,160,32,0.28) 1px, transparent 1px);
      background-size: 40px 40px;
      animation: gridDrift 22s linear infinite;
      -webkit-mask-image: radial-gradient(300px circle at var(--gx, -999px) var(--gy, -999px), black 0%, transparent 100%);
      mask-image: radial-gradient(300px circle at var(--gx, -999px) var(--gy, -999px), black 0%, transparent 100%);
      opacity: 1;
    }
    @media (hover: none) { .hero-grid-reveal { display: none; } }
    @keyframes gridDrift {
      from { background-position: 0 0; }
      to   { background-position: 40px 40px; }
    }
    @media (prefers-reduced-motion: reduce) {
      .hero-grid-base, .hero-grid-reveal { animation: none; }
    }

    /* ─── LEAD FLOW ANIMATION ─── */
    /* Traveling light pulses along wire paths */
    .lf-pulse {
      offset-anchor: 50% 50%;
      animation: lf-travel;
      animation-iteration-count: infinite;
      animation-timing-function: cubic-bezier(0.5, 0, 0.5, 1);
    }
    /* WhatsApp — top center */
    .lf-wa {
      offset-path: path("M 160 30 L 160 120 Q 160 128 152 128 L 145 128");
      animation-duration: 3.2s;
      animation-delay: 1.5s;
    }
    /* SMS — top left */
    .lf-sms {
      offset-path: path("M 115 30 L 115 100 Q 115 108 123 108 L 145 108");
      animation-duration: 2.8s;
      animation-delay: 2.8s;
    }
    /* Phone — top right */
    .lf-phone {
      offset-path: path("M 205 30 L 205 100 Q 205 108 197 108 L 175 108");
      animation-duration: 3.5s;
      animation-delay: 0.5s;
    }
    /* Instagram — left */
    .lf-ig {
      offset-path: path("M 30 175 L 100 175 Q 108 175 108 183 L 108 190");
      animation-duration: 2.4s;
      animation-delay: 4s;
    }
    /* Facebook — left */
    .lf-fb {
      offset-path: path("M 30 205 L 100 205 Q 108 205 108 197");
      animation-duration: 2.1s;
      animation-delay: 5.5s;
    }
    /* Email — right */
    .lf-email {
      offset-path: path("M 268 190 L 220 190 Q 212 190 212 182");
      animation-duration: 2.6s;
      animation-delay: 3s;
    }
    /* Output wire — bottom */
    .lf-out {
      offset-path: path("M 160 228 L 160 290");
      animation-duration: 2s;
      animation-delay: 2s;
    }
    @keyframes lf-travel {
      0%   { offset-distance: 0%; opacity: 0; }
      8%   { opacity: 1; }
      80%  { opacity: 1; }
      100% { offset-distance: 100%; opacity: 0; }
    }

    /* Channel node entrance animation */
    .lf-channel-node {
      opacity: 0;
      animation: lf-node-appear 0.6s forwards;
      animation-timing-function: cubic-bezier(0.34, 1.56, 0.64, 1);
      transform-box: fill-box;
      transform-origin: center;
    }
    .lf-node-delay-1 { animation-delay: 0.3s; }
    .lf-node-delay-2 { animation-delay: 0.5s; }
    .lf-node-delay-3 { animation-delay: 0.7s; }
    .lf-node-delay-4 { animation-delay: 0.9s; }
    .lf-node-delay-5 { animation-delay: 1.1s; }
    @keyframes lf-node-appear {
      from { opacity: 0; transform: scale(0.6); }
      to   { opacity: 1; transform: scale(1); }
    }

    /* Scan line animation on elvyna box */
    .lf-scan-line {
      animation: lf-scan 3s ease-in-out infinite;
    }
    @keyframes lf-scan {
      0%   { transform: translateX(0); opacity: 0.7; }
      100% { transform: translateX(60px); opacity: 0; }
    }

    /* Status dots on output box */
    .lf-status-dot {
      animation: lf-dot-pulse 1.8s ease-in-out infinite;
      transform-box: fill-box;
      transform-origin: center;
    }
    .lf-dot-1 { animation-delay: 0s; }
    .lf-dot-2 { animation-delay: 0.3s; }
    .lf-dot-3 { animation-delay: 0.6s; }
    @keyframes lf-dot-pulse {
      0%, 100% { opacity: 0.2; transform: scale(0.8); }
      50%       { opacity: 1;   transform: scale(1.3); }
    }

    /* ─── PRICING TOGGLE ─── */
    .pricing-toggle-wrap {
      display: flex;
      justify-content: flex-start;
      margin-top: 36px;
      margin-bottom: -20px;
    }
    .pricing-toggle {
      display: inline-flex;
      background: var(--off);
      border: 1px solid var(--border);
      border-radius: 6px;
      padding: 3px;
      gap: 2px;
      position: relative;
    }
    .pricing-toggle button {
      position: relative;
      z-index: 1;
      padding: 8px 20px;
      font-family: 'DM Mono', monospace;
      font-size: 0.7rem;
      letter-spacing: 0.12em;
      text-transform: uppercase;
      background: transparent;
      border: none;
      cursor: pointer;
      color: var(--muted);
      border-radius: 4px;
      transition: color 0.2s;
    }
    .pricing-toggle button.active {
      color: #000;
    }
    .pricing-toggle-pill {
      position: absolute;
      top: 3px; left: 3px;
      height: calc(100% - 6px);
      border-radius: 4px;
      background: var(--amber);
      box-shadow:
        inset 0 1px 0 rgba(255,255,255,0.2),
        0 2px 8px rgba(232,160,32,0.25);
      transition: transform 0.25s cubic-bezier(0.4,0,0.2,1), width 0.25s cubic-bezier(0.4,0,0.2,1);
      pointer-events: none;
    }
    .pricing-toggle .save-badge {
      font-family: 'DM Mono', monospace;
      font-size: 0.55rem;
      letter-spacing: 0.1em;
      text-transform: uppercase;
      background: rgba(232,160,32,0.15);
      color: var(--amber);
      border: 1px solid rgba(232,160,32,0.25);
      padding: 2px 6px;
      border-radius: 3px;
      margin-left: 6px;
      vertical-align: middle;
    }
    .plan-price {
      transition: opacity 0.15s ease, transform 0.15s ease;
    }
    .plan-price.switching {
      opacity: 0;
      transform: translateY(-6px);
    }
    .plan-recurring {
      transition: opacity 0.15s ease;
    }
    .plan-recurring.switching {
      opacity: 0;
    }

    /* ─── TESTIMONIALS ─── */
    #testimonials {
      padding: 120px 5vw;
      border-top: 1px solid var(--border);
      background: var(--black);
    }
    .testimonials-inner {
      max-width: 700px;
      margin: 0 auto;
      display: flex;
      flex-direction: column;
      align-items: center;
      gap: 0;
    }
    .testimonials-quote-wrap {
      position: relative;
      padding: 0 20px;
      text-align: center;
      margin-top: 48px;
    }
    .testimonials-quote-mark {
      position: absolute;
      font-family: Georgia, serif;
      font-size: 5rem;
      line-height: 1;
      color: rgba(232,160,32,0.08);
      pointer-events: none;
      user-select: none;
    }
    .testimonials-quote-mark.open { top: -20px; left: 0; }
    .testimonials-quote-mark.close { bottom: -36px; right: 0; }
    .testimonials-quote {
      font-size: clamp(1.3rem, 3vw, 1.9rem);
      font-weight: 300;
      color: var(--white);
      line-height: 1.5;
      text-align: center;
      transition: opacity 0.25s ease, filter 0.25s ease, transform 0.25s ease;
    }
    .testimonials-quote.fading {
      opacity: 0;
      filter: blur(4px);
      transform: scale(0.99);
    }
    .testimonials-role {
      margin-top: 36px;
      font-family: 'DM Mono', monospace;
      font-size: 0.68rem;
      letter-spacing: 0.18em;
      text-transform: uppercase;
      color: var(--muted);
      text-align: center;
      transition: opacity 0.25s ease, transform 0.25s ease;
    }
    .testimonials-role.fading {
      opacity: 0;
      transform: translateY(6px);
    }
    .testimonials-avatars {
      display: flex;
      align-items: center;
      justify-content: center;
      gap: 6px;
      margin-top: 28px;
    }
    .testimonials-pill {
      display: inline-flex;
      align-items: center;
      gap: 0;
      border-radius: 999px;
      cursor: pointer;
      background: transparent;
      border: none;
      padding: 3px;
      transition: background 0.35s ease, padding-right 0.35s ease;
      overflow: hidden;
    }
    .testimonials-pill.active {
      background: var(--white);
      padding-right: 12px;
    }
    .testimonials-pill:not(.active):hover {
      background: rgba(255,255,255,0.07);
      padding-right: 12px;
    }
    .testimonials-pill img {
      width: 32px; height: 32px;
      border-radius: 50%;
      object-fit: cover;
      flex-shrink: 0;
      transition: box-shadow 0.3s;
    }
    .testimonials-pill.active img {
      box-shadow: 0 0 0 2px rgba(255,255,255,0.25);
    }
    .testimonials-pill-name {
      font-size: 0.78rem;
      font-weight: 500;
      color: #000;
      white-space: nowrap;
      max-width: 0;
      overflow: hidden;
      transition: max-width 0.35s ease, margin-left 0.35s ease, opacity 0.3s ease;
      opacity: 0;
      margin-left: 0;
    }
    .testimonials-pill:not(.active):hover .testimonials-pill-name {
      max-width: 120px;
      margin-left: 8px;
      opacity: 1;
      color: var(--white);
    }
    .testimonials-pill.active .testimonials-pill-name {
      max-width: 120px;
      margin-left: 8px;
      opacity: 1;
    }

    /* ─── PARTICLE CANVAS ─── */
    .particles-canvas {
      position: absolute;
      inset: 0;
      pointer-events: none;
      z-index: 0;
    }
    /* Ensure section children stack above canvas */
    #cta > *:not(.particles-canvas),
    #guarantee > *:not(.particles-canvas) {
      position: relative;
      z-index: 1;
    }
    @media (prefers-reduced-motion: reduce) {
      .particles-canvas { display: none; }
    }
  
