  /* ═══════════════════════════════════════════════════
     DESIGN TOKENS
  ═══════════════════════════════════════════════════ */
  :root {
    --purple:      #A855F7;
    --pink:        #F472B6;
    --purple-deep: #7C3AED;
    --pink-deep:   #EC4899;
    --bg:          #0A0712;
    --bg2:         #110B1E;
    --bg3:         #19102B;
    --surface:     rgba(255,255,255,0.04);
    --surface2:    rgba(255,255,255,0.07);
    --border:      rgba(168,85,247,0.2);
    --border2:     rgba(255,255,255,0.08);
    --text:        #F8FAFC;
    --text2:       #CBD5E1;
    --text3:       #94A3B8;
    --grad:        linear-gradient(135deg, var(--purple), var(--pink));
    --grad-r:      linear-gradient(135deg, var(--pink), var(--purple));
    --glow:        0 0 40px rgba(168,85,247,0.35);
    --glow-sm:     0 0 20px rgba(168,85,247,0.25);
    --radius:      20px;
    --radius-sm:   12px;
    --radius-lg:   28px;
    --transition:  0.25s cubic-bezier(0.4,0,0.2,1);
  }

  /* ═══════════════════════════════════════════════════
     RESET & BASE
  ═══════════════════════════════════════════════════ */
  *, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
  html { scroll-behavior: smooth; }
  body {
    font-family: 'Sora', sans-serif;
    background: var(--bg);
    color: var(--text);
    line-height: 1.6;
    overflow-x: hidden;
  }
  a { text-decoration: none; color: inherit; }
  img { max-width: 100%; display: block; }

  /* ═══════════════════════════════════════════════════
     GLOBAL NOISE TEXTURE OVERLAY
  ═══════════════════════════════════════════════════ */
  body::before {
    content: '';
    position: fixed; inset: 0; z-index: 0; pointer-events: none;
    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.03'/%3E%3C/svg%3E");
    opacity: 0.4;
  }

  /* ═══════════════════════════════════════════════════
     TYPOGRAPHY
  ═══════════════════════════════════════════════════ */
  h1, h2, h3 { font-family: 'Unbounded', sans-serif; line-height: 1.18; letter-spacing: -0.01em; }
  h1 { font-size: clamp(2.1rem, 5vw, 4.2rem); font-weight: 800; }
  h2 { font-size: clamp(1.5rem, 3vw, 2.5rem); font-weight: 700; }
  h3 { font-size: 1.05rem; font-weight: 600; }
  p { line-height: 1.75; }

  /* ── Signature: ghost display word behind heroes ── */
  .ghost-word {
    position: absolute; left: 50%; top: 46%;
    transform: translate(-50%, -50%);
    font-family: 'Unbounded', sans-serif; font-weight: 900;
    font-size: clamp(5rem, 17vw, 15rem);
    letter-spacing: 0.02em; line-height: 1;
    color: transparent;
    -webkit-text-stroke: 1.5px rgba(168,85,247,0.14);
    user-select: none; pointer-events: none; white-space: nowrap;
    z-index: 0;
  }

  /* ── Signature: scrolling marquee strip ── */
  .marquee-strip {
    overflow: hidden; white-space: nowrap;
    border-top: 1px solid rgba(168,85,247,0.18);
    border-bottom: 1px solid rgba(168,85,247,0.18);
    background: rgba(168,85,247,0.04);
    padding: 18px 0;
    position: relative; z-index: 1;
  }
  .marquee-inner { display: inline-block; animation: marquee 28s linear infinite; }
  .marquee-inner span {
    font-family: 'Unbounded', sans-serif; font-weight: 700;
    font-size: 15px; letter-spacing: 0.12em; text-transform: uppercase;
    color: var(--text3); margin: 0 28px;
  }
  .marquee-inner span.mq-accent {
    background: var(--grad);
    -webkit-background-clip: text; background-clip: text;
    -webkit-text-fill-color: transparent;
  }
  @keyframes marquee { from { transform: translateX(0); } to { transform: translateX(-50%); } }
  @media (prefers-reduced-motion: reduce) { .marquee-inner { animation: none; } }

  /* ── Signature: numbered service cards ── */
  .svc-num {
    font-family: 'Unbounded', sans-serif; font-weight: 900;
    font-size: 2.6rem; line-height: 1;
    color: transparent;
    -webkit-text-stroke: 1.2px rgba(168,85,247,0.35);
    margin-bottom: 14px; display: block;
    transition: all .3s;
  }
  .glass-hover:hover .svc-num {
    -webkit-text-stroke: 0px transparent;
    background: var(--grad);
    -webkit-background-clip: text; background-clip: text;
    -webkit-text-fill-color: transparent;
  }

  .gradient-text {
    background: var(--grad);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
  }

  /* ═══════════════════════════════════════════════════
     LAYOUT
  ═══════════════════════════════════════════════════ */
  .container { max-width: 1200px; margin: 0 auto; padding: 0 24px; }
  .section { padding: 100px 0; position: relative; }
  .section-sm { padding: 64px 0; }

  /* ═══════════════════════════════════════════════════
     NAVBAR
  ═══════════════════════════════════════════════════ */
  .nav {
    position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
    transition: background var(--transition), box-shadow var(--transition);
  }
  .nav.scrolled {
    background: rgba(6, 14, 32, 0.85);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    box-shadow: 0 1px 0 var(--border), var(--glow-sm);
  }
  .nav-inner {
    max-width: 1200px; margin: 0 auto;
    padding: 0 24px;
    height: 72px;
    display: flex; align-items: center; gap: 24px;
  }
  .nav-logo {
    display: flex; align-items: center; gap: 10px;
    font-family: 'Unbounded', sans-serif;
    font-size: 1.3rem; color: var(--text);
    letter-spacing: 0.05em;
    flex-shrink: 0;
  }
  .nav-logo-mark {
    width: 38px; height: 38px; border-radius: 11px;
    background: var(--grad);
    display: flex; align-items: center; justify-content: center;
    box-shadow: 0 4px 16px rgba(168,85,247,0.4);
  }
  .nav-logo-mark svg { width: 20px; height: 20px; fill: white; }
  .nav-links {
    display: flex; align-items: center; gap: 2px;
    margin-left: auto;
  }
  .nav-links a {
    padding: 8px 16px; border-radius: 10px;
    font-size: 14px; font-weight: 500; color: var(--text3);
    transition: color var(--transition), background var(--transition);
    cursor: pointer;
  }
  .nav-links a:hover { color: var(--text); background: var(--surface2); }
  .nav-links a.active { color: var(--purple); }
  .nav-cta {
    padding: 10px 24px !important; border-radius: 12px !important;
    background: var(--grad) !important; color: white !important;
    font-weight: 600 !important; font-size: 14px !important;
    box-shadow: 0 4px 20px rgba(168,85,247,0.4);
    transition: opacity var(--transition), transform var(--transition), box-shadow var(--transition) !important;
  }
  .nav-cta:hover {
    opacity: 0.9 !important; transform: translateY(-1px) !important;
    box-shadow: 0 6px 28px rgba(168,85,247,0.55) !important;
    background: var(--grad) !important;
  }
  .nav-burger { display: none; background: none; border: none; cursor: pointer; padding: 6px; }
  .nav-burger svg { width: 24px; height: 24px; stroke: var(--text); stroke-width: 2; }

  @media (max-width: 768px) {
    .nav-links {
      display: none; flex-direction: column; align-items: stretch;
      position: absolute; top: 72px; left: 0; right: 0;
      background: rgba(6, 14, 32, 0.97);
      backdrop-filter: blur(20px);
      border-bottom: 1px solid var(--border);
      padding: 12px 20px 20px; gap: 4px;
    }
    .nav-links.open { display: flex; }
    .nav-burger { display: block; margin-left: auto; }
  }

  /* ═══════════════════════════════════════════════════
     BUTTONS
  ═══════════════════════════════════════════════════ */
  .btn {
    display: inline-flex; align-items: center; gap: 8px;
    padding: 14px 32px; border-radius: var(--radius-sm);
    font-family: 'Sora', sans-serif; font-size: 15px; font-weight: 600;
    cursor: pointer; border: none; transition: all var(--transition);
  }
  .btn-primary {
    background: var(--grad); color: white;
    box-shadow: 0 6px 24px rgba(168,85,247,0.4);
  }
  .btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 32px rgba(168,85,247,0.55);
  }
  .btn-ghost {
    background: var(--surface); color: var(--text2);
    border: 1px solid var(--border2);
    backdrop-filter: blur(10px);
  }
  .btn-ghost:hover { background: var(--surface2); color: var(--text); border-color: var(--border); }
  .btn svg { width: 18px; height: 18px; flex-shrink: 0; }

  /* ═══════════════════════════════════════════════════
     GLASS CARD
  ═══════════════════════════════════════════════════ */
  .glass {
    background: var(--surface);
    border: 1px solid var(--border2);
    border-radius: var(--radius);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
  }
  .glass-hover {
    transition: transform var(--transition), border-color var(--transition), box-shadow var(--transition);
    cursor: default;
  }
  .glass-hover:hover {
    transform: translateY(-4px);
    border-color: rgba(168,85,247,0.35);
    box-shadow: 0 16px 48px rgba(168,85,247,0.15);
  }

  /* ═══════════════════════════════════════════════════
     SECTION LABELS
  ═══════════════════════════════════════════════════ */
  .label {
    display: inline-flex; align-items: center; gap: 8px;
    padding: 6px 16px; border-radius: 100px;
    background: rgba(168,85,247,0.12);
    border: 1px solid rgba(168,85,247,0.25);
    font-size: 12px; font-weight: 600; letter-spacing: 0.08em;
    text-transform: uppercase; color: var(--purple);
    margin-bottom: 20px;
  }
  .label-dot { width: 6px; height: 6px; border-radius: 50%; background: var(--grad); }

  /* ═══════════════════════════════════════════════════
     ICON BADGE
  ═══════════════════════════════════════════════════ */
  .icon-badge {
    width: 56px; height: 56px; border-radius: 16px;
    display: flex; align-items: center; justify-content: center;
    margin-bottom: 20px; flex-shrink: 0;
  }
  .icon-badge svg { width: 26px; height: 26px; }
  .ib-purple { background: rgba(168,85,247,0.15); border: 1px solid rgba(168,85,247,0.25); }
  .ib-purple svg { stroke: var(--purple); fill: none; stroke-width: 1.8; stroke-linecap: round; stroke-linejoin: round; }
  .ib-pink   { background: rgba(244,114,182,0.15); border: 1px solid rgba(244,114,182,0.25); }
  .ib-pink   svg { stroke: var(--pink); fill: none; stroke-width: 1.8; stroke-linecap: round; stroke-linejoin: round; }
  .ib-blue   { background: rgba(96,165,250,0.15); border: 1px solid rgba(96,165,250,0.25); }
  .ib-blue   svg { stroke: #60A5FA; fill: none; stroke-width: 1.8; stroke-linecap: round; stroke-linejoin: round; }
  .ib-green  { background: rgba(52,211,153,0.15); border: 1px solid rgba(52,211,153,0.25); }
  .ib-green  svg { stroke: #34D399; fill: none; stroke-width: 1.8; stroke-linecap: round; stroke-linejoin: round; }
  .ib-grad { background: var(--grad); box-shadow: 0 6px 20px rgba(168,85,247,0.35); }
  .ib-grad svg { stroke: white; fill: none; stroke-width: 1.8; stroke-linecap: round; stroke-linejoin: round; }

  /* ═══════════════════════════════════════════════════
     DIVIDER
  ═══════════════════════════════════════════════════ */
  .divider { height: 1px; background: var(--border2); }
  .divider-glow { height: 1px; background: linear-gradient(90deg, transparent, var(--purple), transparent); opacity: 0.4; }

  /* ═══════════════════════════════════════════════════
     GRID HELPERS
  ═══════════════════════════════════════════════════ */
  .grid-3 { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 24px; }
  .grid-4 { display: grid; grid-template-columns: repeat(auto-fit, minmax(230px, 1fr)); gap: 24px; }
  .grid-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 48px; align-items: center; }
  @media (max-width: 768px) { .grid-2 { grid-template-columns: 1fr; gap: 40px; } }

  /* ═══════════════════════════════════════════════════
     GLOW ORBS
  ═══════════════════════════════════════════════════ */
  .orb {
    position: absolute; border-radius: 50%;
    pointer-events: none; filter: blur(80px); opacity: 0.4;
  }
  .orb-purple { background: var(--purple); }
  .orb-pink   { background: var(--pink); }

  /* ═══════════════════════════════════════════════════
     STAT COUNTER
  ═══════════════════════════════════════════════════ */
  .stat-num {
    font-family: 'Unbounded', sans-serif;
    font-size: 2.8rem; line-height: 1;
    background: var(--grad); -webkit-background-clip: text;
    -webkit-text-fill-color: transparent; background-clip: text;
  }
  .stat-label { font-size: 0.875rem; color: var(--text3); font-weight: 500; margin-top: 6px; }

  /* ═══════════════════════════════════════════════════
     FORM
  ═══════════════════════════════════════════════════ */
  .form-group { margin-bottom: 20px; }
  .form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
  @media (max-width: 580px) { .form-row { grid-template-columns: 1fr; } }
  label { display: block; font-size: 13px; font-weight: 500; color: var(--text3); margin-bottom: 8px; }
  input, textarea, select {
    width: 100%; padding: 13px 16px;
    background: var(--surface);
    border: 1px solid var(--border2);
    border-radius: var(--radius-sm);
    color: var(--text); font-family: 'Sora', sans-serif; font-size: 14px;
    outline: none; transition: border-color var(--transition), box-shadow var(--transition);
    backdrop-filter: blur(10px);
  }
  input::placeholder, textarea::placeholder { color: var(--text3); }
  input:focus, textarea:focus {
    border-color: rgba(168,85,247,0.6);
    box-shadow: 0 0 0 3px rgba(168,85,247,0.12);
  }
  textarea { resize: vertical; min-height: 140px; line-height: 1.7; }
  .alert-success {
    background: rgba(52,211,153,0.1); border: 1px solid rgba(52,211,153,0.3);
    border-radius: var(--radius-sm); padding: 14px 18px;
    color: #34D399; font-size: 14px; font-weight: 500; margin-bottom: 20px;
    display: flex; align-items: center; gap: 10px;
  }
  .field-error { font-size: 12px; color: #F87171; margin-top: 6px; }

  /* ═══════════════════════════════════════════════════
     PAGE HERO BANNER
  ═══════════════════════════════════════════════════ */
  .page-banner {
    padding: 140px 0 90px;
    text-align: center;
    position: relative; overflow: hidden;
    background: linear-gradient(180deg, var(--bg) 0%, var(--bg2) 100%);
  }
  .page-banner::before {
    content: '';
    position: absolute; inset: 0; pointer-events: none;
    background-image:
      linear-gradient(rgba(168,85,247,0.04) 1px, transparent 1px),
      linear-gradient(90deg, rgba(168,85,247,0.04) 1px, transparent 1px);
    background-size: 60px 60px;
  }
  .page-banner .orb { position: absolute; }
  /* bottom wave divider */
  .page-banner::after {
    content: '';
    position: absolute; bottom: -1px; left: 0; right: 0; height: 1px;
    background: linear-gradient(90deg, transparent, var(--purple), var(--pink), transparent);
    opacity: 0.5;
  }

  /* Animated waveform bars inside page banner */
  .banner-wave {
    display: inline-flex; align-items: flex-end; gap: 3px;
    height: 24px; margin-bottom: 20px;
  }
  .banner-wave .eq-bar { opacity: 0.5; }

  .breadcrumb {
    display: flex; align-items: center; justify-content: center;
    gap: 8px; font-size: 13px; color: var(--text3); margin-bottom: 20px;
  }
  .breadcrumb a { color: var(--purple); font-weight: 500; }
  .breadcrumb svg { width: 14px; height: 14px; stroke: var(--text3); stroke-width: 2; fill: none; }


  /* ═══════════════════════════════════════════════════
     FOOTER
  ═══════════════════════════════════════════════════ */
  /* ═══════════════════════════════════════════════════
     MEGA FOOTER
  ═══════════════════════════════════════════════════ */
  footer {
    background: #030a18;
    border-top: 1px solid rgba(168,85,247,0.2);
    padding: 0;
    position: relative;
    overflow: hidden;
  }
  .footer-newsletter {
    background: linear-gradient(135deg, rgba(124,58,237,0.18) 0%, rgba(236,72,153,0.12) 100%);
    border-bottom: 1px solid rgba(168,85,247,0.15);
    padding: 52px 0;
    position: relative;
  }
  .footer-newsletter-inner {
    display: flex; align-items: center; justify-content: space-between;
    gap: 40px; flex-wrap: wrap;
  }
  .footer-newsletter h3 {
    font-family: 'Unbounded', sans-serif; font-size: 1.5rem;
    color: var(--text); margin-bottom: 6px;
  }
  .footer-newsletter p { font-size: 14px; color: var(--text3); }
  .newsletter-form {
    display: flex; gap: 0; border-radius: 12px; overflow: hidden;
    border: 1px solid rgba(168,85,247,0.3);
    background: rgba(255,255,255,0.04);
    min-width: 340px;
  }
  .newsletter-form input {
    flex: 1; background: transparent; border: none;
    padding: 13px 18px; color: var(--text); font-size: 14px;
    font-family: 'Sora', sans-serif; outline: none;
    border-radius: 0;
  }
  .newsletter-form input::placeholder { color: var(--text3); }
  .newsletter-form button {
    padding: 13px 22px; background: linear-gradient(135deg, var(--purple), var(--pink));
    border: none; color: white; font-weight: 600; font-size: 14px;
    cursor: pointer; transition: opacity 0.2s; white-space: nowrap;
    font-family: 'Sora', sans-serif;
  }
  .newsletter-form button:hover { opacity: 0.88; }

  .footer-main {
    padding: 72px 0 56px;
    border-bottom: 1px solid rgba(255,255,255,0.05);
  }
  .footer-mega-grid {
    display: grid;
    grid-template-columns: 2.2fr 1fr 1fr 1fr 1fr 1fr;
    gap: 40px;
  }
  @media (max-width: 1100px) { .footer-mega-grid { grid-template-columns: 1fr 1fr 1fr; } }
  @media (max-width: 680px)  { .footer-mega-grid { grid-template-columns: 1fr 1fr; gap: 28px; } }
  @media (max-width: 420px)  { .footer-mega-grid { grid-template-columns: 1fr; } }

  .footer-brand p { font-size: 14px; color: var(--text3); line-height: 1.85; margin-top: 14px; max-width: 260px; }
  .footer-col h4 {
    font-family: 'Unbounded', sans-serif; font-size: 11px; letter-spacing: 0.1em;
    text-transform: uppercase; color: var(--text); margin-bottom: 18px;
    padding-bottom: 10px; border-bottom: 1px solid rgba(255,255,255,0.06);
  }
  .footer-col a {
    display: flex; align-items: center; gap: 7px;
    font-size: 13.5px; color: var(--text3);
    margin-bottom: 11px; transition: color var(--transition), gap var(--transition);
    cursor: pointer; text-decoration: none;
  }
  .footer-col a:hover { color: var(--purple); gap: 10px; }
  .footer-col a .fc-dot {
    width: 4px; height: 4px; border-radius: 50%;
    background: rgba(168,85,247,0.5); flex-shrink: 0;
    transition: background 0.2s;
  }
  .footer-col a:hover .fc-dot { background: var(--purple); }
  .footer-col a .fc-badge {
    font-size: 10px; font-weight: 700; letter-spacing: 0.06em;
    padding: 2px 7px; border-radius: 100px; margin-left: auto;
  }
  .badge-new { background: rgba(52,211,153,0.15); color: #34D399; border: 1px solid rgba(52,211,153,0.25); }
  .badge-api { background: rgba(96,165,250,0.15); color: #60A5FA; border: 1px solid rgba(96,165,250,0.25); }
  .badge-dev { background: rgba(168,85,247,0.15); color: #A855F7; border: 1px solid rgba(168,85,247,0.25); }

  .footer-lower {
    padding: 28px 0;
    border-bottom: 1px solid rgba(255,255,255,0.04);
  }
  .footer-lower-grid {
    display: grid; grid-template-columns: repeat(auto-fit, minmax(140px,1fr));
    gap: 16px 32px;
  }
  .footer-lower-col h5 {
    font-size: 10px; font-weight: 700; letter-spacing: 0.1em;
    text-transform: uppercase; color: rgba(255,255,255,0.25);
    margin-bottom: 10px;
  }
  .footer-lower-col a {
    display: block; font-size: 12px; color: rgba(255,255,255,0.35);
    margin-bottom: 7px; transition: color 0.2s; text-decoration: none;
  }
  .footer-lower-col a:hover { color: var(--purple); }

  .footer-bottom {
    padding: 24px 0;
    display: flex; flex-wrap: wrap; gap: 16px;
    justify-content: space-between; align-items: center;
    font-size: 12.5px; color: rgba(255,255,255,0.3);
  }
  .footer-bottom a { color: rgba(255,255,255,0.35); text-decoration: none; transition: color 0.2s; }
  .footer-bottom a:hover { color: var(--purple); }
  .footer-legal-links { display: flex; gap: 20px; flex-wrap: wrap; }
  .footer-api-tag {
    display: inline-flex; align-items: center; gap: 6px;
    padding: 5px 12px; border-radius: 8px;
    background: rgba(96,165,250,0.08); border: 1px solid rgba(96,165,250,0.2);
    font-size: 11px; font-weight: 600; color: #60A5FA;
  }
  .footer-api-tag svg { width: 13px; height: 13px; stroke: #60A5FA; fill: none; stroke-width: 2; stroke-linecap: round; }

  .social-row { display: flex; gap: 9px; margin-top: 18px; }
  .social-btn {
    width: 36px; height: 36px; border-radius: 9px;
    background: rgba(255,255,255,0.04); border: 1px solid rgba(255,255,255,0.08);
    display: flex; align-items: center; justify-content: center;
    transition: all var(--transition); cursor: pointer; text-decoration: none;
  }
  .social-btn:hover { background: rgba(168,85,247,0.15); border-color: rgba(168,85,247,0.35); }
  .social-btn svg { width: 15px; height: 15px; stroke: var(--text3); fill: none; stroke-width: 2; stroke-linecap: round; }

  .app-btns { display: flex; gap: 10px; margin-top: 18px; flex-wrap: wrap; }
  .app-btn {
    display: flex; align-items: center; gap: 9px;
    padding: 9px 16px; border-radius: 10px;
    background: rgba(255,255,255,0.05); border: 1px solid rgba(255,255,255,0.1);
    transition: all 0.2s; cursor: pointer; text-decoration: none;
  }
  .app-btn:hover { background: rgba(168,85,247,0.12); border-color: rgba(168,85,247,0.3); }
  .app-btn svg { width: 18px; height: 18px; flex-shrink: 0; }
  .app-btn-text { display: flex; flex-direction: column; line-height: 1.2; }
  .app-btn-text span:first-child { font-size: 10px; color: var(--text3); }
  .app-btn-text span:last-child  { font-size: 13px; font-weight: 600; color: var(--text); }

  /* ═══════════════════════════════════════════════════
     SCROLL ANIMATIONS
  ═══════════════════════════════════════════════════ */
  @media (prefers-reduced-motion: no-preference) {
    .fade-up {
      opacity: 0; transform: translateY(30px);
      transition: opacity 0.6s ease, transform 0.6s ease;
    }
    .fade-up.visible { opacity: 1; transform: translateY(0); }
    .fade-up:nth-child(2) { transition-delay: 0.1s; }
    .fade-up:nth-child(3) { transition-delay: 0.2s; }
    .fade-up:nth-child(4) { transition-delay: 0.3s; }
    .fade-up:nth-child(5) { transition-delay: 0.4s; }
    .fade-up:nth-child(6) { transition-delay: 0.5s; }
  }

  /* ═══════════════════════════════════════════════════
     MISC UTILS
  ═══════════════════════════════════════════════════ */
  .text-center { text-align: center; }
  .text-muted { color: var(--text3); }
  .text-sm { font-size: 14px; }
  .mt-4 { margin-top: 16px; }
  .mt-8 { margin-top: 32px; }
  .mt-12 { margin-top: 48px; }
  .mb-4 { margin-bottom: 16px; }
  .mb-8 { margin-bottom: 32px; }
  .flex { display: flex; }
  .flex-center { display: flex; align-items: center; justify-content: center; }
  .gap-3 { gap: 12px; }
  .gap-4 { gap: 16px; }
  .w-full { width: 100%; }

  /* Pulse animation for live dots */
  @keyframes pulse { 0%,100%{ opacity:1; transform:scale(1); } 50%{ opacity:.6; transform:scale(1.3); } }
  .pulse { animation: pulse 2s ease-in-out infinite; }

  /* Floating waveform bars */
  @keyframes wave1 { 0%,100%{height:8px}50%{height:24px} }
  @keyframes wave2 { 0%,100%{height:16px}50%{height:8px} }
  @keyframes wave3 { 0%,100%{height:12px}50%{height:28px} }
  @keyframes wave4 { 0%,100%{height:20px}50%{height:6px} }
  @keyframes wave5 { 0%,100%{height:6px}50%{height:20px} }
  .eq-bar { width: 4px; border-radius: 3px; background: var(--grad); display: inline-block; }
  .eq-bar:nth-child(1){animation:wave1 1.2s ease-in-out infinite;}
  .eq-bar:nth-child(2){animation:wave2 0.9s ease-in-out infinite;}
  .eq-bar:nth-child(3){animation:wave3 1.1s ease-in-out infinite;}
  .eq-bar:nth-child(4){animation:wave4 0.8s ease-in-out infinite;}
  .eq-bar:nth-child(5){animation:wave5 1.3s ease-in-out infinite;}

  @media (prefers-reduced-motion: reduce) {
    .eq-bar { animation: none; height: 14px !important; }
    .pulse { animation: none; }
  }

  /* ═══════════════════════════════════════════════════
     LIGHT THEME — palette overrides (admin-controlled)
  ═══════════════════════════════════════════════════ */
  html[data-theme="light"] {
    --bg:        #FAF8FF;
    --bg2:       #F3EEFB;
    --bg3:       #ECE4F8;
    --surface:   rgba(124,58,237,0.05);
    --surface2:  rgba(124,58,237,0.10);
    --border:    rgba(124,58,237,0.18);
    --border2:   rgba(26,19,37,0.10);
    --text:      #1A1325;
    --text2:     #43394F;
    --text3:     #6B6580;
    --glow:      0 0 40px rgba(168,85,247,0.18);
    --glow-sm:   0 0 20px rgba(168,85,247,0.14);
  }
  html[data-theme="light"] body::before { opacity: 0.18; }
  html[data-theme="light"] .nav.scrolled { background: rgba(255,255,255,0.82); }
  html[data-theme="light"] .nav-mobile,
  html[data-theme="light"] .nav-burger ~ * .nav-mobile { background: rgba(255,255,255,0.97); }
  html[data-theme="light"] footer { background: #EDE6F8; border-top-color: rgba(124,58,237,0.18); }
  html[data-theme="light"] .ghost-word { -webkit-text-stroke-color: rgba(124,58,237,0.12); }
  html[data-theme="light"] .svc-num { -webkit-text-stroke-color: rgba(124,58,237,0.45); }
