    *, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
    html { scroll-behavior: smooth; -webkit-font-smoothing: antialiased; }
    body { font-family: 'Inter', sans-serif; background: #080c18; color: #F8FAFC; overflow-x: hidden; }
    .font-display { font-family: 'Outfit', sans-serif; }
    [id] { scroll-margin-top: 84px; }

    /* ── Accessibility: visible keyboard focus, skip-link, 44px hamburger hit area ── */
    a:focus-visible, button:focus-visible, input:focus-visible,
    select:focus-visible, textarea:focus-visible, [tabindex]:focus-visible {
      outline: 2px solid #818CF8; outline-offset: 2px; border-radius: 6px;
    }
    .skip-link {
      position: fixed; top: -120px; left: 1rem; z-index: 100;
      background: #4F46E5; color: #fff; font-family: 'Outfit', sans-serif; font-weight: 600;
      padding: 0.6rem 1rem; border-radius: 10px; box-shadow: 0 8px 28px -6px rgba(79,70,229,0.6);
      transition: top .2s ease;
    }
    .skip-link:focus { top: 1rem; }
    #hamburger { width: 44px; height: 44px; }
    /* skip-link target is focused programmatically — no outline around the whole page */
    #main:focus, #main:focus-visible { outline: none; }

    /* ── AURORA (fixed page canvas) ── */
    .aurora { position: fixed; inset: 0; z-index: 0; overflow: hidden; pointer-events: none; }
    .aurora::before {
      content: ""; position: absolute; inset: -20%;
      background:
        radial-gradient(38% 44% at 18% 18%, rgba(79,70,229,0.55) 0%, transparent 60%),
        radial-gradient(34% 40% at 84% 14%, rgba(6,182,212,0.40) 0%, transparent 62%),
        radial-gradient(46% 50% at 76% 72%, rgba(124,58,237,0.40) 0%, transparent 60%),
        radial-gradient(40% 46% at 22% 82%, rgba(34,211,238,0.28) 0%, transparent 62%);
      filter: blur(40px);
      animation: aurora-drift 24s ease-in-out infinite alternate;
    }
    .aurora::after { content: ""; position: absolute; inset: 0; background: radial-gradient(125% 95% at 50% 0%, transparent 28%, #080c18 80%); }
    @keyframes aurora-drift {
      0%   { transform: translate3d(0,0,0) scale(1); }
      50%  { transform: translate3d(-3%,2%,0) scale(1.08); }
      100% { transform: translate3d(3%,-2%,0) scale(1.04); }
    }
    .grain { position: fixed; inset: 0; z-index: 1; pointer-events: none; opacity: 0.04;
      background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='160' height='160'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='2' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E"); }
    .grid-texture { position: fixed; inset: 0; z-index: 1; pointer-events: none;
      background-image: linear-gradient(rgba(248,250,252,0.022) 1px, transparent 1px), linear-gradient(90deg, rgba(248,250,252,0.022) 1px, transparent 1px);
      background-size: 58px 58px;
      mask-image: radial-gradient(85% 75% at 50% 25%, #000 0%, transparent 78%);
      -webkit-mask-image: radial-gradient(85% 75% at 50% 25%, #000 0%, transparent 78%); }
    .content { position: relative; z-index: 2; }


    /* ── Brand gradients ── */
    .grad-bg { background: linear-gradient(135deg, #4F46E5 0%, #06B6D4 100%); }
    .grad-text { background: linear-gradient(120deg, #818CF8 0%, #22D3EE 60%, #c4b5fd 100%);
      -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent; color: transparent; }

    /* ── Glass (hero card / featured / nav) ── */
    .glass { background: linear-gradient(180deg, rgba(255,255,255,0.07), rgba(255,255,255,0.03));
      backdrop-filter: blur(22px) saturate(1.4); -webkit-backdrop-filter: blur(22px) saturate(1.4);
      border: 1px solid rgba(255,255,255,0.10);
      box-shadow: inset 0 1px 0 rgba(255,255,255,0.18), 0 24px 70px -20px rgba(0,0,0,0.6), 0 0 60px -28px rgba(79,70,229,0.55); }
    .glass-nav { background: rgba(10,14,28,0.5); backdrop-filter: blur(16px) saturate(1.3); -webkit-backdrop-filter: blur(16px) saturate(1.3);
      border-bottom: 1px solid transparent; transition: background .35s ease, border-color .35s ease, box-shadow .35s ease; }
    #site-header.scrolled .glass-nav { background: rgba(10,14,28,0.82); border-bottom-color: rgba(255,255,255,0.07); box-shadow: 0 10px 40px -12px rgba(0,0,0,0.55); }

    /* ── Buttons ── */
    .btn-primary { position: relative; background: linear-gradient(135deg, #4F46E5 0%, #06B6D4 100%); color: #fff;
      font-family: 'Outfit', sans-serif; font-weight: 700; letter-spacing: .01em;
      box-shadow: 0 8px 28px -6px rgba(79,70,229,0.6), inset 0 1px 0 rgba(255,255,255,0.3);
      transition: transform .2s ease, box-shadow .2s ease, filter .2s ease; }
    .btn-primary:hover { transform: translateY(-2px); box-shadow: 0 14px 40px -8px rgba(79,70,229,0.7), inset 0 1px 0 rgba(255,255,255,0.35); filter: brightness(1.05); }
    .btn-outline { font-family: 'Outfit', sans-serif; font-weight: 600; color: #c7d2fe;
      background: rgba(255,255,255,0.04); border: 1px solid rgba(255,255,255,0.16);
      transition: border-color .2s, color .2s, background .2s; }
    .btn-outline:hover { border-color: rgba(129,140,248,0.7); color: #fff; background: rgba(129,140,248,0.10); }

    /* ── Live dot ── */
    .live-dot { position: relative; }
    .live-dot::after { content: ""; position: absolute; inset: 0; border-radius: 9999px; background: inherit; animation: ping 1.8s cubic-bezier(0,0,.2,1) infinite; }
    @keyframes ping { 75%,100% { transform: scale(2.4); opacity: 0; } }

    /* ── Waveform ── */
    .wbar { width: 4px; border-radius: 9999px; background: linear-gradient(180deg,#22D3EE,#6366F1); animation: wave 1.1s ease-in-out infinite; }
    @keyframes wave { 0%,100% { transform: scaleY(.35); } 50% { transform: scaleY(1); } }

    /* ── Typing dots ── */
    .typing span { display:inline-block; width:6px; height:6px; border-radius:9999px; background:#94a3b8; animation: blink 1.2s infinite; }
    .typing span:nth-child(2){ animation-delay:.2s; } .typing span:nth-child(3){ animation-delay:.4s; }
    @keyframes blink { 0%,60%,100% { opacity:.25; transform: translateY(0);} 30% { opacity:1; transform: translateY(-3px);} }

    /* ── Sequenced conversation reveal (bottom-anchored "messenger") ──
       The stream is justify-end; each bubble animates its OWN height
       (max-height set inline by JS to the measured px) plus fade / slide /
       scale. Because the newest bubble grows at the bottom, the older ones
       are pushed up *continuously* (no abrupt jump). overflow:hidden clips
       during the grow; JS restores overflow:visible afterwards so bubble
       shadows aren't cropped. Older messages dissolve into the top mask. */
    .chat-stream {
      -webkit-mask-image: linear-gradient(to bottom, transparent 0, #000 7%, #000 100%);
              mask-image: linear-gradient(to bottom, transparent 0, #000 7%, #000 100%);
    }
    .seq {
      max-height: 0; opacity: 0; margin-top: 0; overflow: hidden;
      transform: translateY(8px) scale(.985);
      transition: max-height .5s cubic-bezier(.22,.61,.36,1),
                  opacity .45s ease,
                  transform .5s cubic-bezier(.22,.61,.36,1),
                  margin-top .45s cubic-bezier(.22,.61,.36,1);
      will-change: max-height, opacity, transform;
    }
    .seq.show { opacity: 1; margin-top: 0.625rem; transform: translateY(0) scale(1); }
    /* Booking confirmation sits OUTSIDE the fixed-height stream — it must
       reserve its slot so the card height never changes; only fade/slide in
       (no max-height growth, unlike .seq). */
    .booked-reveal { opacity: 0; transform: translateY(8px) scale(.985);
      transition: opacity .45s ease, transform .5s cubic-bezier(.22,.61,.36,1); }
    .booked-reveal.show { opacity: 1; transform: translateY(0) scale(1); }

    /* ── Scroll reveal ── */
    .reveal { opacity: 0; transform: translateY(28px); transition: opacity .75s ease, transform .75s ease; }
    .reveal.visible { opacity: 1; transform: translateY(0); }
    .reveal-d1 { transition-delay: .1s; } .reveal-d2 { transition-delay: .22s; } .reveal-d3 { transition-delay: .34s; } .reveal-d4 { transition-delay: .46s; }

    @keyframes float { 0%,100% { transform: translateY(0); } 50% { transform: translateY(-10px); } }
    .floaty { animation: float 7s ease-in-out infinite; }

    /* ── Cards ── */
    .card { background: rgba(255,255,255,0.035); border: 1px solid rgba(255,255,255,0.08); border-radius: 20px; padding: 1.75rem; height: 100%;
      transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease, background .25s ease; }
    .card:hover { transform: translateY(-5px); border-color: rgba(99,102,241,0.4); background: rgba(99,102,241,0.06); box-shadow: 0 18px 50px -18px rgba(79,70,229,0.55); }
    .icon-chip { width: 48px; height: 48px; border-radius: 14px; display: flex; align-items: center; justify-content: center;
      background: linear-gradient(135deg, rgba(79,70,229,0.20), rgba(6,182,212,0.14)); border: 1px solid rgba(255,255,255,0.10); color: #22D3EE; }

    /* ── Step number ── */
    .step-num { font-family: 'Outfit', sans-serif; font-size: 4rem; font-weight: 900; line-height: 1;
      background: linear-gradient(135deg, #6366F1, #22D3EE); -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent; color: transparent; opacity: .35; }

    /* ── Quote ── */
    .quote { border-left: 3px solid transparent; border-image: linear-gradient(180deg,#6366F1,#22D3EE) 1; }

    /* ── Pricing ── */
    .price-card { position: relative; background: rgba(255,255,255,0.035); border: 1px solid rgba(255,255,255,0.09); border-radius: 22px; padding: 2rem;
      display: flex; flex-direction: column; height: 100%; transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease; }
    .price-card:hover { transform: translateY(-5px); box-shadow: 0 20px 55px -18px rgba(79,70,229,0.5); }
    .price-card.featured { border: 1px solid transparent;
      background: linear-gradient(rgba(17,21,38,0.92), rgba(17,21,38,0.92)) padding-box, linear-gradient(135deg,#4F46E5,#06B6D4) border-box;
      box-shadow: 0 24px 64px -20px rgba(79,70,229,0.6), 0 0 70px -30px rgba(6,182,212,0.5); }
    .price-badge { position: absolute; top: -13px; left: 50%; transform: translateX(-50%); background: linear-gradient(135deg,#4F46E5,#06B6D4); color: #fff;
      font-size: 0.66rem; font-weight: 700; letter-spacing: 0.12em; text-transform: uppercase; padding: 0.3rem 0.9rem; border-radius: 99px; white-space: nowrap; box-shadow: 0 4px 14px rgba(79,70,229,0.45); }

    /* ── Niche status pill (sits beside the card title; self-contained so it
       never depends on purged utility classes from tw.css) ── */
    .niche-badge { display: inline-block; vertical-align: middle; position: relative; top: -1px; margin-left: 0.6rem;
      font-size: 0.6rem; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; line-height: 1;
      padding: 0.28rem 0.6rem; border-radius: 99px; white-space: nowrap;
      background: rgba(6,182,212,0.14); color: #5EEAD4; border: 1px solid rgba(6,182,212,0.32); }
    .niche-badge--soon { background: rgba(148,163,184,0.12); color: #94A3B8; border: 1px solid rgba(148,163,184,0.24); }

    /* ── Pricing spotlight: light panel inside the dark page ── */
    .pricing-panel { position: relative;
      background: radial-gradient(130% 130% at 50% 0%, #ffffff 0%, #eef2fb 58%, #e3e9f6 100%);
      border: 1px solid rgba(255,255,255,0.7); border-radius: 36px;
      padding: 3.5rem 1.5rem; box-shadow: 0 50px 130px -50px rgba(0,0,0,0.75), inset 0 1px 0 rgba(255,255,255,0.9); }
    @media (min-width: 768px) { .pricing-panel { padding: 4rem 3rem; } }
    .pricing-panel .grad-text { background: linear-gradient(120deg, #4F46E5 0%, #7C3AED 42%, #0891B2 100%);
      -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent; color: transparent; }
    .pricing-panel .text-white { color: #0F172A; }
    .pricing-panel .text-slate-300 { color: #475569; }
    .pricing-panel .text-slate-400 { color: #64748B; }
    .pricing-panel .text-slate-500 { color: #64748B; }
    .pricing-panel .text-indigo-400 { color: #4F46E5; }
    .pricing-panel .text-cyan-400 { color: #0891B2; }
    .pricing-panel .price-card { background: rgba(255,255,255,0.72); border-color: rgba(15,23,42,0.08); box-shadow: 0 1px 2px rgba(15,23,42,0.05); }
    .pricing-panel .price-card:hover { box-shadow: 0 22px 56px -20px rgba(79,70,229,0.30); }
    .pricing-panel .price-card.featured {
      background: linear-gradient(#ffffff,#ffffff) padding-box, linear-gradient(135deg,#4F46E5,#06B6D4) border-box;
      box-shadow: 0 24px 62px -22px rgba(79,70,229,0.38), 0 0 64px -32px rgba(6,182,212,0.45); }
    .pricing-panel .btn-outline { color: #4338CA; background: rgba(79,70,229,0.05); border-color: rgba(79,70,229,0.25); }
    .pricing-panel .btn-outline:hover { color: #3730A3; background: rgba(79,70,229,0.10); border-color: rgba(79,70,229,0.55); }

    /* ── Card spotlight (cursor-follow glow) ── */
    .card, .price-card { isolation: isolate; }
    .card { position: relative; }
    .card::before, .price-card::before {
      content: ""; position: absolute; inset: 0; border-radius: inherit; pointer-events: none; z-index: 0;
      background: radial-gradient(240px circle at var(--mx, 50%) var(--my, 50%), rgba(129,140,248,0.20), transparent 60%);
      opacity: 0; transition: opacity .35s ease; }
    .card:hover::before, .price-card:hover::before { opacity: 1; }
    .card > *, .price-card > * { position: relative; z-index: 1; }
    /* Keep the "Most popular" badge absolutely centered on the top border
       (the spotlight rule above would otherwise drop it into normal flow). */
    .price-card > .price-badge { position: absolute; z-index: 3; }


    /* ── Button sheen sweep ── */
    .btn-primary { overflow: hidden; }
    .btn-primary::after { content: ""; position: absolute; top: 0; left: -130%; width: 55%; height: 100%;
      background: linear-gradient(120deg, transparent, rgba(255,255,255,0.45), transparent); transform: skewX(-20deg);
      transition: left .6s ease; pointer-events: none; }
    .btn-primary:hover::after { left: 150%; }

    /* ── Integrations chips ── */
    .integration { cursor: default; transition: color .25s ease, border-color .25s ease, background .25s ease, transform .25s ease; }
    .integration:hover { transform: translateY(-2px); }

    /* ── Hero aurora parallax ── */
    .aurora { transition: transform .35s ease-out; will-change: transform; }

    /* ── FAQ ── */
    .faq-item { background: rgba(255,255,255,0.035); border: 1px solid rgba(255,255,255,0.09); border-radius: 16px; overflow: hidden; transition: border-color .2s, background .2s; }
    .faq-item:hover { border-color: rgba(99,102,241,0.3); }
    .faq-item.open { background: rgba(99,102,241,0.06); border-color: rgba(99,102,241,0.35); }
    .faq-answer { max-height: 0; overflow: hidden; transition: max-height .4s ease; }
    .faq-answer.open { max-height: 600px; }
    .faq-chevron { transition: transform .3s ease; }
    .faq-item.open .faq-chevron { transform: rotate(180deg); }

    /* ── Mobile menu ── */
    #mobile-menu { max-height: 0; overflow: hidden; transition: max-height .4s ease; }
    #mobile-menu.open { max-height: 420px; }
    .ham-line { transition: transform .3s ease, opacity .3s ease; }

    /* ── Preloader ── */
    #page-preloader { position: fixed; inset: 0; z-index: 9999; background: #080c18; display: flex; align-items: center; justify-content: center; transition: opacity .6s ease, visibility .6s ease; }
    #page-preloader.hidden { opacity: 0; visibility: hidden; pointer-events: none; }
    @keyframes eq-pulse { 0% { transform: scaleY(0.18); } 100% { transform: scaleY(1.05); } }
    .pl-bar-1 { transform-origin: center bottom; animation: eq-pulse .7s ease-in-out infinite alternate; }
    .pl-bar-2 { transform-origin: center bottom; animation: eq-pulse .9s ease-in-out infinite alternate .2s; }
    .pl-bar-3 { transform-origin: center bottom; animation: eq-pulse .8s ease-in-out infinite alternate .4s; }
    .pl-bar-4 { transform-origin: center bottom; animation: eq-pulse 1.1s ease-in-out infinite alternate .1s; }

    /* ── Reduced motion ── */
    @media (prefers-reduced-motion: reduce) {
      .aurora::before, .floaty, .wbar, .live-dot::after, .cue-dot, .pl-bar-1, .pl-bar-2, .pl-bar-3, .pl-bar-4 { animation: none !important; }
      .aurora { transition: none !important; }
      .btn-primary::after { transition: none !important; }
      .reveal { opacity: 1 !important; transform: none !important; }
      .seq { opacity: 1 !important; transform: none !important; max-height: none !important; overflow: visible !important; margin-top: 0.625rem; }
      .booked-reveal { opacity: 1 !important; transform: none !important; }
    }

    /* ── Contact form fields (dark) ── */
    .field-input { width: 100%; background: rgba(255,255,255,0.04); border: 1px solid rgba(255,255,255,0.12); border-radius: 12px;
      padding: 0.85rem 1.1rem; font-family: 'Inter', sans-serif; font-size: 0.9rem; color: #F8FAFC; outline: none;
      transition: border-color .2s ease, box-shadow .2s ease, background .2s ease; }
    .field-input:focus { border-color: rgba(129,140,248,0.7); box-shadow: 0 0 0 3px rgba(99,102,241,0.18); background: rgba(255,255,255,0.06); }
    .field-input::placeholder { color: #64748B; }
    select.field-input { cursor: pointer; }
    select.field-input option { background: #0f172a; color: #F8FAFC; }

    /* ── Legal prose (Privacy / Terms, dark) ── */
    .legal { color: #94a3b8; font-size: 0.95rem; line-height: 1.75; }
    .legal h2 { font-family: 'Outfit', sans-serif; font-weight: 800; color: #fff; font-size: 1.5rem; line-height: 1.25; margin: 2.5rem 0 1rem; }
    .legal h3 { font-family: 'Outfit', sans-serif; font-weight: 700; color: #e2e8f0; font-size: 1.1rem; margin: 1.75rem 0 .6rem; }
    .legal p { margin: 0 0 1rem; }
    .legal ul { list-style: disc; margin: 0 0 1rem 1.25rem; }
    .legal ol { list-style: decimal; margin: 0 0 1rem 1.25rem; }
    .legal li { margin: 0 0 .5rem; }
    .legal a { color: #818CF8; text-decoration: underline; transition: color .2s ease; }
    .legal a:hover { color: #a5b4fc; }
    .legal strong { color: #f1f5f9; font-weight: 600; }
    .legal em { color: #cbd5e1; }
    .legal table { width: 100%; border-collapse: collapse; margin: 0 0 1.25rem; font-size: 0.9rem; }
    .legal th, .legal td { border: 1px solid rgba(255,255,255,0.10); padding: 0.6rem 0.8rem; text-align: left; vertical-align: top; }
    .legal th { background: rgba(255,255,255,0.04); color: #e2e8f0; font-weight: 600; }
    .legal hr { border: none; border-top: 1px solid rgba(255,255,255,0.08); margin: 2rem 0; }
    .legal h2:first-child, .legal h3:first-child { margin-top: 0; }
    .legal .highlight-box { background: rgba(99,102,241,0.08); border: 1px solid rgba(99,102,241,0.25); border-left: 3px solid #6366F1; border-radius: 12px; padding: 1rem 1.25rem; margin: 0 0 1.75rem; }
    .legal .highlight-box p { margin: 0; color: #cbd5e1; }

    /* ── Legal TOC (dark sticky sidebar) ── */
    .toc-card { background: rgba(255,255,255,0.04); border: 1px solid rgba(255,255,255,0.09); border-radius: 18px; padding: 1.25rem; }
    .toc-link { display: block; font-size: 0.82rem; color: #94a3b8; padding: 0.35rem 0.6rem; border-radius: 8px; transition: color .2s ease, background .2s ease; }
    .toc-link:hover { color: #fff; background: rgba(99,102,241,0.10); }
    .toc-link.active { color: #fff; background: rgba(99,102,241,0.18); font-weight: 600; box-shadow: inset 2px 0 0 #818CF8; }
