    * { margin: 0; padding: 0; box-sizing: border-box; }
    body { font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif; background: #fafafa; color: #1a1a1a; -webkit-font-smoothing: antialiased; overflow-x: hidden; }
    html { overflow-x: hidden; }
    a { color: inherit; text-decoration: none; }

    /* ── Nav ── */
    .nav {
      position: fixed; top: 0; left: 0; right: 0; z-index: 100;
      background: transparent;
      padding: 0 24px; height: 60px;
      display: flex; align-items: center; justify-content: space-between;
      transition: background 0.3s, box-shadow 0.3s, backdrop-filter 0.3s;
    }
    .nav.scrolled {
      background: rgba(10, 10, 46, 0.95);
      backdrop-filter: blur(12px);
      box-shadow: 0 2px 20px rgba(0,0,0,0.15);
    }
    .nav-logo { display: flex; align-items: center; gap: 10px; }
    .nav-form { display: flex; align-items: center; gap: 6px; }
    .nav-form input { padding: 7px 14px; border-radius: 8px; border: 1.5px solid rgba(255,255,255,0.3); background: rgba(255,255,255,0.1); color: #fff; font-size: 13px; width: 200px; outline: none; transition: border-color 0.2s; }
    .nav-form input::placeholder { color: rgba(255,255,255,0.5); }
    .nav-form input:focus { border-color: rgba(255,255,255,0.6); }
    .nav-btn { padding: 8px 20px; border-radius: 8px; font-size: 14px; font-weight: 600; border: none; cursor: pointer; transition: all 0.15s; }
    .nav-btn-primary { background: #fff; color: #4f46e5; }
    .nav-btn-primary:hover { background: rgba(255,255,255,0.9); }

    /* ── Hero ── */
    .hero {
      background: url('../img/hero-bg.png') center top / cover no-repeat;
      background-color: #0a0a2e;
      color: white; text-align: center;
      padding: 120px 24px 60px;
      position: relative; overflow: hidden;
      min-height: 520px;
    }
    .hero::before {
      content: ''; position: absolute; top: 0; left: 0; right: 0; bottom: 0;
      background: linear-gradient(135deg, rgba(79,70,229,0.6) 0%, rgba(124,58,237,0.5) 40%, rgba(168,85,247,0.4) 100%);
      z-index: 0;
    }
    .hero > * { position: relative; z-index: 1; }
    .hero::after {
      content: ''; position: absolute; bottom: 0; left: 0; right: 0;
      height: 160px; background: linear-gradient(to bottom, transparent 0%, rgba(250,250,250,0.2) 40%, rgba(250,250,250,0.6) 70%, #fafafa 100%);
      z-index: 1;
      z-index: 1;
    }
    .hero h1 { font-size: 46px; font-weight: 900; line-height: 1.08; margin-bottom: 18px; max-width: 720px; margin-left: auto; margin-right: auto; letter-spacing: -0.5px; }
    .hero h1 em { font-style: normal; background: linear-gradient(90deg, #a5f3fc, #c4b5fd); -webkit-background-clip: text; -webkit-text-fill-color: transparent; }
    .hero p { font-size: 18px; opacity: 0.92; max-width: 540px; margin: 0 auto 32px; line-height: 1.7; }
    .hero-form { display: flex; gap: 8px; justify-content: center; max-width: 420px; margin: 0 auto 24px; position: relative; z-index: 10; }
    .hero-form input { flex: 1; padding: 15px 20px; border-radius: 12px; border: 2px solid rgba(255,255,255,0.25); background: rgba(0,0,0,0.3); backdrop-filter: blur(12px); color: #fff; font-size: 15px; outline: none; }
    .hero-form input::placeholder { color: rgba(255,255,255,0.5); }
    .hero-form input:focus { border-color: rgba(255,255,255,0.6); }
    .hero-form button { padding: 15px 28px; border-radius: 12px; background: #fff; color: #4f46e5; font-size: 15px; font-weight: 700; border: none; cursor: pointer; white-space: nowrap; transition: all 0.2s; }
    .hero-form button:hover { transform: translateY(-1px); box-shadow: 0 6px 20px rgba(0,0,0,0.15); }
    .hero-trust { font-size: 13px; opacity: 0.7; }

    /* ── Container ── */
    .container { max-width: 820px; margin: 0 auto; padding: 0 20px; }

    /* ── How It Works ── */
    .how-section { padding: 56px 0 40px; }
    .how-section h2 { text-align: center; font-size: 30px; font-weight: 800; margin-bottom: 8px; }
    .how-section .subtitle { text-align: center; font-size: 16px; color: #666; margin-bottom: 36px; }
    .how-steps { display: grid; grid-template-columns: 1fr 1fr 1fr; gap: 20px; }
    .how-step {
      background: white; border: 1px solid #e5e7eb; border-radius: 16px;
      padding: 28px 20px; text-align: center; position: relative;
      box-shadow: 0 2px 8px rgba(0,0,0,0.03);
    }
    .how-step .step-num { position: absolute; top: -12px; left: 50%; transform: translateX(-50%); background: #4f46e5; color: #fff; width: 28px; height: 28px; border-radius: 50%; font-size: 13px; font-weight: 700; display: flex; align-items: center; justify-content: center; }
    .how-step .step-icon { font-size: 36px; margin-bottom: 12px; }
    .how-step h3 { font-size: 16px; font-weight: 700; margin-bottom: 6px; }
    .how-step p { font-size: 13px; color: #666; line-height: 1.6; }

    /* ── Voice Commands ── */
    .voice-section { padding: 40px 0; background: #f0f0ff; border-radius: 24px; margin: 0 20px 40px; }
    .voice-section h2 { text-align: center; font-size: 26px; font-weight: 800; margin-bottom: 6px; }
    .voice-section .subtitle { text-align: center; font-size: 15px; color: #666; margin-bottom: 28px; }
    .voice-bubbles { display: flex; flex-wrap: wrap; gap: 10px; justify-content: center; padding: 0 24px; max-width: 600px; margin: 0 auto; }
    .voice-bubble {
      background: white; border: 1px solid #e0e0ff; border-radius: 20px; padding: 10px 18px;
      font-size: 14px; color: #4f46e5; font-weight: 500;
      box-shadow: 0 2px 6px rgba(79,70,229,0.08);
      display: flex; align-items: center; gap: 6px;
    }
    .voice-bubble i { font-size: 12px; opacity: 0.5; }

    /* ── What You Get ── */
    .benefits-section { padding: 40px 0 48px; }
    .benefits-section h2 { text-align: center; font-size: 26px; font-weight: 800; margin-bottom: 28px; }
    .benefits-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
    .benefit {
      background: white; border: 1px solid #e5e7eb; border-radius: 14px;
      padding: 22px 20px; display: flex; gap: 14px; align-items: flex-start;
      box-shadow: 0 1px 3px rgba(0,0,0,0.03);
    }
    .benefit .icon { font-size: 24px; flex-shrink: 0; width: 40px; height: 40px; background: #f0f0ff; border-radius: 10px; display: flex; align-items: center; justify-content: center; }
    .benefit h3 { font-size: 15px; font-weight: 700; margin-bottom: 3px; }
    .benefit p { font-size: 13px; color: #666; line-height: 1.5; }

    /* ── Beta CTA ── */
    .beta-cta {
      background: linear-gradient(135deg, #4f46e5, #7c3aed);
      color: white; border-radius: 20px; margin: 0 20px 48px; padding: 40px 32px; text-align: center;
    }
    .beta-cta h2 { font-size: 26px; font-weight: 800; margin-bottom: 8px; }
    .beta-cta p { font-size: 15px; opacity: 0.85; margin-bottom: 24px; max-width: 480px; margin-left: auto; margin-right: auto; line-height: 1.6; }
    .beta-cta .cta-form { display: flex; gap: 8px; justify-content: center; max-width: 400px; margin: 0 auto; }
    .beta-cta .cta-form input { flex: 1; padding: 14px 18px; border-radius: 10px; border: 2px solid rgba(255,255,255,0.3); background: rgba(255,255,255,0.1); color: #fff; font-size: 14px; outline: none; }
    .beta-cta .cta-form input::placeholder { color: rgba(255,255,255,0.5); }
    .beta-cta .cta-form button { padding: 14px 24px; border-radius: 10px; background: #fff; color: #4f46e5; font-size: 14px; font-weight: 700; border: none; cursor: pointer; white-space: nowrap; }

    /* ── Footer ── */
    .footer { background: #111; color: #999; text-align: center; padding: 32px 20px; font-size: 13px; }
    .footer a { color: #aaa; }

    /* ── Modal ── */
    .wl-modal-overlay { position: fixed; top: 0; left: 0; right: 0; bottom: 0; background: rgba(0,0,0,0.6); backdrop-filter: blur(6px); z-index: 200; display: flex; align-items: center; justify-content: center; animation: wl-fade-in 0.3s ease; }
    @keyframes wl-fade-in { from { opacity: 0; } to { opacity: 1; } }
    @keyframes wl-slide-in { from { opacity: 0; transform: translateY(10px); } to { opacity: 1; transform: translateY(0); } }
    .wl-modal { background: linear-gradient(135deg, #1a1040 0%, #0a0a2e 100%); border-radius: 16px; padding: 32px 28px; max-width: 460px; width: 90vw; color: #fff; position: relative; box-shadow: 0 20px 60px rgba(0,0,0,0.5); animation: wl-slide-in 0.3s ease; }
    .wl-modal-close { position: absolute; top: 12px; right: 16px; background: none; border: none; color: rgba(255,255,255,0.5); font-size: 20px; cursor: pointer; }
    .wl-modal-close:hover { color: #fff; }
    .wl-modal input, .wl-modal select, .wl-modal textarea { width: 100%; padding: 12px 16px; border-radius: 10px; border: 2px solid rgba(255,255,255,0.2); background: rgba(255,255,255,0.08); color: #fff; font-size: 14px; outline: none; margin-bottom: 8px; font-family: inherit; transition: border-color 0.2s; box-sizing: border-box; }
    .wl-modal input:focus, .wl-modal select:focus, .wl-modal textarea:focus { border-color: rgba(255,255,255,0.5); }
    .wl-modal input::placeholder, .wl-modal textarea::placeholder { color: rgba(255,255,255,0.4); }
    .wl-modal select { appearance: none; }
    .wl-modal select option { background: #1a1a2e; color: #fff; }
    .wl-modal .wl-modal-btn { width: 100%; padding: 14px; border-radius: 10px; background: #fff; color: #4f46e5; font-size: 15px; font-weight: 700; border: none; cursor: pointer; transition: all 0.2s; margin-top: 4px; }
    .wl-modal .wl-modal-btn:hover { transform: translateY(-1px); box-shadow: 0 6px 20px rgba(0,0,0,0.2); }
    .wl-modal .wl-modal-btn:disabled { opacity: 0.7; cursor: not-allowed; transform: none; }
    .wl-modal .step-label { font-size: 12px; color: rgba(255,255,255,0.5); margin-bottom: 12px; }
    .wl-modal h3 { font-size: 20px; font-weight: 700; margin-bottom: 4px; }

    /* ── Responsive ── */
    @media (max-width: 768px) {
      .hero h1 { font-size: 30px; }
      .hero { padding: 100px 20px 50px; min-height: auto; }
      .how-steps { grid-template-columns: 1fr; gap: 24px; }
      .benefits-grid { grid-template-columns: 1fr; }
      .hero-form { flex-direction: column; position: relative; z-index: 10; }
      .beta-cta .cta-form { flex-direction: column; }
      .nav-cta-btn { padding: 5px 12px; font-size: 11px; }
      .voice-section { margin: 0 10px 30px; }
      [style*="grid-template-columns: 1fr 1fr 1fr"] { grid-template-columns: 1fr !important; }
      [style*="grid-template-columns:1fr 1fr 1fr"] { grid-template-columns: 1fr !important; }
      [style*="grid-template-columns: 1fr 1fr;"] { grid-template-columns: 1fr !important; }
      [style*="grid-template-columns:1fr 1fr;"] { grid-template-columns: 1fr !important; }
    }
    @media (max-width: 480px) {
      .hero h1 { font-size: 26px; }
    }
  
    /* Voice Edit Grid responsive */
    @media (max-width: 768px) {
      .voice-edit-grid { grid-template-columns: 1fr !important; gap: 48px !important; }
      .voice-edit-arrow { display: none !important; }
    }

/* --- extracted block --- */

    /* ── Countdown ── */
    .countdown-bar { display:flex; justify-content:center; gap:16px; margin-top:28px; }
    .countdown-unit { text-align:center; }
    .countdown-num { font-size:28px; font-weight:800; color:#fff; background:rgba(255,255,255,0.1); border:1px solid rgba(255,255,255,0.15); border-radius:10px; width:56px; height:56px; display:flex; align-items:center; justify-content:center; backdrop-filter:blur(8px); font-variant-numeric:tabular-nums; }
    .countdown-label { font-size:10px; color:rgba(255,255,255,0.5); text-transform:uppercase; letter-spacing:1px; margin-top:4px; }
    .countdown-title { text-align:center; font-size:13px; color:rgba(255,255,255,0.6); margin-top:20px; font-weight:500; }

    /* ── Social Proof Toast ── */
    .proof-toast { position:fixed; bottom:24px; left:24px; background:#fff; border-radius:12px; padding:12px 16px; box-shadow:0 8px 32px rgba(0,0,0,0.15); display:flex; align-items:center; gap:10px; z-index:150; transform:translateY(120px); opacity:0; transition:transform 0.5s cubic-bezier(0.4,0,0.2,1), opacity 0.5s; max-width:320px; }
    .proof-toast.show { transform:translateY(0); opacity:1; }
    .proof-toast .toast-avatar { width:36px; height:36px; border-radius:50%; background:linear-gradient(135deg,#4f46e5,#7c3aed); display:flex; align-items:center; justify-content:center; color:#fff; font-size:14px; font-weight:700; flex-shrink:0; }
    .proof-toast .toast-text { font-size:13px; color:#333; line-height:1.4; }
    .proof-toast .toast-text strong { color:#111; }
    .proof-toast .toast-text .toast-time { color:#999; font-size:11px; }
    @media(max-width:768px) { .proof-toast { left:12px; right:12px; max-width:none; bottom:12px; } }

    /* ── Live Counter ── */
    .live-counter { display:inline-flex; align-items:center; gap:8px; background:rgba(255,255,255,0.1); border:1px solid rgba(255,255,255,0.15); border-radius:20px; padding:6px 14px; font-size:13px; color:rgba(255,255,255,0.8); margin-top:16px; backdrop-filter:blur(8px); }
    .live-dot { width:8px; height:8px; border-radius:50%; background:#25D366; animation:pulse-dot 2s ease infinite; }
    @keyframes pulse-dot { 0%,100% { box-shadow:0 0 0 0 rgba(37,211,102,0.4); } 50% { box-shadow:0 0 0 6px rgba(37,211,102,0); } }
    .counter-num { font-weight:700; color:#fff; transition:all 0.3s; }

    /* ── Building Ticker ── */
    .ticker-wrap { overflow:hidden; background:transparent; border-top:none; border-bottom:none; padding:14px 0; white-space:nowrap; position:relative; z-index:2; }
    .ticker-track { display:inline-block; animation:ticker-scroll 40s linear infinite; }
    .ticker-item { display:inline-block; padding:0 36px; font-size:14px; color:#4a4a6a; font-weight:600; letter-spacing:0.3px; }
    .ticker-item .tick-icon { margin-right:8px; } .ticker-item .tick-status { color:#8888aa; font-weight:400; font-size:12px; }
    @keyframes ticker-scroll { 0% { transform:translateX(0); } 100% { transform:translateX(-50%); } }

    /* ── Pulsing dot for LIVE badge ── */
    .live-badge-dot { display:inline-block; width:6px; height:6px; border-radius:50%; background:#10b981; margin-right:4px; animation:pulse-dot 2s ease infinite; vertical-align:middle; }

    @import url('https://fonts.googleapis.com/css2?family=JetBrains+Mono:wght@400;500;600&display=swap');
    .iti { width: 100%; margin-bottom: 0; }
    .iti__tel-input {
      width: 100% !important; padding: 22px 56px 22px 116px !important;
      border-radius: 16px !important; border: 2px solid rgba(255,255,255,0.12) !important;
      background: rgba(255,255,255,0.04) !important; color: #fff !important;
      font-family: 'JetBrains Mono', 'SF Mono', 'Fira Code', monospace !important;
      font-size: 22px !important; font-weight: 500 !important; letter-spacing: 2px !important;
      outline: none !important; box-sizing: border-box !important;
      transition: border-color 0.3s, box-shadow 0.3s, background 0.3s !important;
      font-variant-numeric: tabular-nums !important;
    }
    .iti__tel-input:focus {
      border-color: rgba(37,211,102,0.5) !important;
      box-shadow: 0 0 0 4px rgba(37,211,102,0.08), 0 0 20px rgba(37,211,102,0.06) !important;
      background: rgba(255,255,255,0.06) !important;
    }
    .iti__tel-input::placeholder {
      color: rgba(255,255,255,0.15) !important; font-size: 18px !important;
      font-weight: 400 !important; letter-spacing: 3px !important;
      font-family: 'JetBrains Mono', monospace !important;
    }
    .iti__tel-input.phone-glow-1 { border-color: rgba(37,211,102,0.25) !important; box-shadow: 0 0 0 4px rgba(37,211,102,0.05), 0 0 12px rgba(37,211,102,0.04) !important; }
    .iti__tel-input.phone-glow-2 { border-color: rgba(37,211,102,0.4) !important; box-shadow: 0 0 0 4px rgba(37,211,102,0.08), 0 0 20px rgba(37,211,102,0.06) !important; }
    .iti__tel-input.phone-glow-3 { border-color: rgba(37,211,102,0.6) !important; box-shadow: 0 0 0 4px rgba(37,211,102,0.12), 0 0 28px rgba(37,211,102,0.08) !important; }
    .iti__tel-input.phone-valid {
      border-color: #25D366 !important;
      box-shadow: 0 0 0 4px rgba(37,211,102,0.15), 0 0 36px rgba(37,211,102,0.1) !important;
      background: rgba(37,211,102,0.04) !important;
    }
    @keyframes phone-pulse { 0% { box-shadow: 0 0 0 4px rgba(37,211,102,0.15), 0 0 36px rgba(37,211,102,0.1); } 50% { box-shadow: 0 0 0 6px rgba(37,211,102,0.2), 0 0 44px rgba(37,211,102,0.15); } 100% { box-shadow: 0 0 0 4px rgba(37,211,102,0.15), 0 0 36px rgba(37,211,102,0.1); } }
    .iti__tel-input.phone-valid-pulse { animation: phone-pulse 0.6s ease; }
    .iti__country-container { --iti-border-color: rgba(255,255,255,0.1); padding-left: 6px !important; }
    .iti__selected-country { padding: 0 14px 0 14px !important; border-right: 1px solid rgba(255,255,255,0.15) !important; margin-right: 12px !important; }
    .iti__selected-dial-code { font-family: 'JetBrains Mono', monospace !important; font-size: 16px !important; color: rgba(255,255,255,0.45) !important; letter-spacing: 1px !important; }
    .iti__flag-box .iti__flag { transform: scale(1.3); }
    .iti__dropdown-content { background: #12102e !important; border-color: rgba(255,255,255,0.1) !important; border-radius: 14px !important; box-shadow: 0 16px 48px rgba(0,0,0,0.6) !important; }
    .iti__search-input { background: rgba(255,255,255,0.06) !important; color: #fff !important; border-color: rgba(255,255,255,0.1) !important; border-radius: 10px !important; padding: 12px 16px !important; font-size: 14px !important; }
    .iti__country { color: rgba(255,255,255,0.9) !important; padding: 10px 14px !important; border-radius: 8px !important; margin: 2px 4px !important; }
    .iti__country:hover, .iti__country--highlight { background: rgba(37,211,102,0.12) !important; }
    .iti__dial-code { color: rgba(255,255,255,0.4) !important; }
    .phone-wrap { position: relative; }
    .phone-check {
      position: absolute; right: 16px; top: 50%; transform: translateY(-50%) scale(0);
      width: 32px; height: 32px; border-radius: 50%; background: #25D366;
      display: flex; align-items: center; justify-content: center;
      opacity: 0; z-index: 2;
      transition: none;
    }
    @keyframes wa-dot { 0%, 80%, 100% { transform: scale(0.6); opacity: 0.3; } 40% { transform: scale(1); opacity: 1; } }
    @keyframes check-bounce {
      0% { opacity: 0; transform: translateY(-50%) scale(0) rotate(-45deg); }
      50% { opacity: 1; transform: translateY(-50%) scale(1.2) rotate(0deg); }
      70% { transform: translateY(-50%) scale(0.9) rotate(0deg); }
      100% { opacity: 1; transform: translateY(-50%) scale(1) rotate(0deg); }
    }
    .phone-check.show { animation: check-bounce 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275) forwards; }
    .phone-check i { color: #fff; font-size: 15px; font-weight: 900; }
    /* ── Delightful Email Input ── */
    .email-hero-wrap { position: relative; flex: 1; }
    .email-hero-wrap input {
      width: 100%; padding: 17px 44px 17px 20px;
      border-radius: 12px; border: 2px solid rgba(255,255,255,0.2);
      background: rgba(0,0,0,0.3); backdrop-filter: blur(12px);
      color: #fff; font-size: 15px; outline: none;
      transition: border-color 0.3s, box-shadow 0.3s, background 0.3s;
    }
    .email-hero-wrap input::placeholder { color: rgba(255,255,255,0.4); }
    .email-hero-wrap input:focus { border-color: rgba(165,243,252,0.5); box-shadow: 0 0 0 3px rgba(165,243,252,0.08); }
    .email-hero-wrap input.email-valid { border-color: #25D366; box-shadow: 0 0 0 3px rgba(37,211,102,0.1), 0 0 16px rgba(37,211,102,0.06); }
    .email-hero-wrap input.email-invalid { border-color: #ef4444; box-shadow: 0 0 0 3px rgba(239,68,68,0.15); background: rgba(239,68,68,0.08) !important; }
    .email-error-msg { display:none; color:#fca5a5; font-size:13px; margin-top:6px; text-align:center; font-weight:500; line-height:1.4; }
    .email-error-msg.show { display:block; }
    .email-hero-check {
      position: absolute; right: 12px; top: 50%; width: 24px; height: 24px;
      border-radius: 50%; background: #25D366; display: flex; align-items: center; justify-content: center;
      transform: translateY(-50%) scale(0); opacity: 0; transition: none;
    }
    .email-hero-check.show { animation: check-bounce 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275) forwards; }
    .email-hero-check i { color: #fff; font-size: 12px; }
    .email-hero-spinner {
      position: absolute; right: 14px; top: 50%; transform: translateY(-50%);
      width: 20px; height: 20px; border: 2px solid rgba(255,255,255,0.15);
      border-top-color: #a5f3fc; border-radius: 50%; display: none;
    }
    @keyframes email-spin { to { transform: translateY(-50%) rotate(360deg); } }
    .email-hero-spinner.show { display: block; animation: email-spin 0.6s linear infinite; }
    .email-suggestion {
      position: absolute; top: 100%; left: 0; right: 0; margin-top: 4px;
      background: rgba(37,211,102,0.15); border: 1px solid rgba(37,211,102,0.3);
      border-radius: 8px; padding: 8px 14px; font-size: 13px; color: #a5f3fc;
      cursor: pointer; display: none; z-index: 5;
    }
    .email-suggestion:hover { background: rgba(37,211,102,0.25); }
    .email-wa-fallback {
      display: none; margin-top: 8px; text-align: center;
    }
    .email-wa-fallback a, .email-wa-fallback span {
      font-size: 13px; color: #25D366; cursor: pointer; font-weight: 500;
      transition: color 0.2s; text-decoration: none;
    }
    .email-wa-fallback a:hover, .email-wa-fallback span:hover { color: #1db954; text-decoration: underline; }
    .email-wa-fallback:hover { background: rgba(37,211,102,0.2); }
    .email-wa-fallback i { margin-right: 6px; }

    .phone-digit-count {
      position: relative; margin-top: 8px; height: 3px;
      background: rgba(255,255,255,0.05); border-radius: 2px; overflow: hidden;
    }
    .phone-digit-bar {
      height: 100%; background: linear-gradient(90deg, rgba(37,211,102,0.3), #25D366);
      border-radius: 2px; transition: width 0.3s cubic-bezier(0.4, 0, 0.2, 1);
      width: 0%;
    }
    .wl-wa-btn { display:flex;align-items:center;justify-content:center;gap:10px;width:100%;padding:16px;border-radius:12px;background:#25D366;color:#fff;font-size:16px;font-weight:700;border:none;cursor:pointer;transition:all 0.2s;margin-top:8px; }
    .wl-wa-btn:hover { background:#1fb855;transform:translateY(-1px); }
    .wl-wa-btn i { font-size:20px; }
    .wl-sms-link { display:block;text-align:center;margin-top:12px;font-size:13px;color:rgba(255,255,255,0.5);cursor:pointer;text-decoration:underline; }
    .wl-sms-link:hover { color:rgba(255,255,255,0.8); }
    .wl-field-error { border-color: #ef4444 !important; }
    .wl-error-text { color:#ef4444;font-size:12px;margin:-4px 0 8px;display:none; }

/* --- extracted block --- */

              @keyframes dragFinger { 0%{transform:translate(0,0)} 10%{transform:translate(0,0)} 70%{transform:translate(212px,168px)} 85%{transform:translate(212px,168px)} 100%{transform:translate(0,0)} }
              @keyframes growSel { 0%{width:0;height:0;opacity:0} 10%{width:0;height:0;opacity:1} 70%{width:220px;height:170px;opacity:1} 85%{width:220px;height:170px;opacity:1} 90%{width:220px;height:170px;opacity:0} 100%{width:0;height:0;opacity:0} }

/* --- extracted block --- */

          @keyframes blink { 0%,50%{opacity:1} 51%,100%{opacity:0} }
          .ve-typed { display:inline; }

/* --- extracted block --- */

  .legal-overlay { position:fixed;top:0;left:0;right:0;bottom:0;background:rgba(0,0,0,0.8);z-index:500;display:none;overflow-y:auto;-webkit-overflow-scrolling:touch; }
  .legal-overlay.open { display:block; }
  .legal-content { max-width:720px;margin:40px auto;background:#fff;border-radius:16px;padding:40px;color:#333;font-size:14px;line-height:1.8;position:relative; }
  .legal-content h1 { font-size:24px;color:#111;margin-bottom:4px; }
  .legal-content h2 { font-size:18px;color:#111;margin-top:28px;margin-bottom:8px; }
  .legal-content h3 { font-size:15px;color:#333;margin-top:20px;margin-bottom:6px; }
  .legal-content p { margin-bottom:12px; }
  .legal-content ul { margin-bottom:12px;padding-left:20px; }
  .legal-content li { margin-bottom:4px; }
  .legal-close { position:sticky;top:0;float:right;width:36px;height:36px;border-radius:50%;border:none;background:#f3f4f6;color:#666;font-size:20px;cursor:pointer;display:flex;align-items:center;justify-content:center;z-index:10; }
  .legal-close:hover { background:#e5e7eb;color:#111; }
  .legal-date { font-size:12px;color:#999;margin-bottom:24px; }
  @media(max-width:768px) { .legal-content { margin:0;border-radius:0;padding:24px 20px;min-height:100vh; } }

/* --- extracted block --- */

.chat-bubble { position:fixed; bottom:24px; right:24px; width:56px; height:56px; border-radius:50%; background:linear-gradient(135deg,#4f46e5,#7c3aed); color:#fff; display:flex; align-items:center; justify-content:center; cursor:pointer; z-index:200; box-shadow:0 4px 20px rgba(79,70,229,0.4); transition:all 0.3s; }
.chat-bubble:hover { transform:scale(1.08); box-shadow:0 6px 28px rgba(79,70,229,0.5); }
.chat-bubble svg { width:28px; height:28px; transition:all 0.3s; }
.chat-bubble.open svg { transform:rotate(90deg); }
.chat-badge { position:absolute; top:-2px; right:-2px; width:16px; height:16px; border-radius:50%; background:#ef4444; border:2px solid #fff; font-size:9px; color:#fff; display:flex; align-items:center; justify-content:center; font-weight:700; }

.chat-panel { position:fixed; bottom:92px; right:24px; width:380px; max-height:520px; background:#fff; border-radius:16px; box-shadow:0 12px 48px rgba(0,0,0,0.15); z-index:200; display:none; flex-direction:column; overflow:hidden; animation:chat-slide-up 0.3s ease; }
@keyframes chat-slide-up { from { opacity:0; transform:translateY(16px); } to { opacity:1; transform:translateY(0); } }
.chat-panel.open { display:flex; }

.chat-header { background:linear-gradient(135deg,#4f46e5,#7c3aed); color:#fff; padding:16px 20px; display:flex; align-items:center; gap:12px; }
.chat-header-avatar { width:36px; height:36px; border-radius:10px; background:rgba(255,255,255,0.2); display:flex; align-items:center; justify-content:center; font-size:18px; }
.chat-header-info h4 { font-size:14px; font-weight:700; margin:0; }
.chat-header-info p { font-size:11px; opacity:0.7; margin:2px 0 0; }
.chat-header-close { margin-left:auto; background:none; border:none; color:rgba(255,255,255,0.7); font-size:20px; cursor:pointer; padding:4px; }
.chat-header-close:hover { color:#fff; }

.chat-intro { padding:20px; text-align:center; flex:1; display:flex; flex-direction:column; justify-content:center; }
.chat-intro h3 { font-size:16px; color:#111; margin-bottom:6px; }
.chat-intro p { font-size:13px; color:#666; margin-bottom:16px; line-height:1.5; }
.chat-intro input { width:100%; padding:10px 14px; border:1.5px solid #e5e7eb; border-radius:8px; font-size:13px; margin-bottom:8px; outline:none; box-sizing:border-box; transition:border-color 0.2s; }
.chat-intro input:focus { border-color:#4f46e5; }
.chat-intro button { width:100%; padding:10px; border-radius:8px; background:linear-gradient(135deg,#4f46e5,#7c3aed); color:#fff; border:none; font-size:14px; font-weight:600; cursor:pointer; transition:all 0.2s; }
.chat-intro button:hover { box-shadow:0 4px 16px rgba(79,70,229,0.3); }
.chat-intro button:disabled { opacity:0.5; cursor:not-allowed; }

.chat-messages { flex:1; overflow-y:auto; padding:16px; display:flex; flex-direction:column; gap:8px; min-height:200px; max-height:320px; }
.chat-msg { max-width:85%; padding:10px 14px; border-radius:12px; font-size:13px; line-height:1.5; word-wrap:break-word; }
.chat-msg.bot { background:#f3f4f6; color:#333; align-self:flex-start; border-bottom-left-radius:4px; }
.chat-msg.user { background:linear-gradient(135deg,#4f46e5,#7c3aed); color:#fff; align-self:flex-end; border-bottom-right-radius:4px; }
.chat-msg.typing { background:#f3f4f6; align-self:flex-start; border-bottom-left-radius:4px; }
.chat-typing-dots span { display:inline-block; width:6px; height:6px; border-radius:50%; background:#999; margin:0 2px; animation:typing-bounce 1.4s infinite; }
.chat-typing-dots span:nth-child(2) { animation-delay:0.2s; }
.chat-typing-dots span:nth-child(3) { animation-delay:0.4s; }
@keyframes typing-bounce { 0%,60%,100% { transform:translateY(0); } 30% { transform:translateY(-4px); } }

.chat-input-wrap { padding:12px 16px; border-top:1px solid #f3f4f6; display:flex; gap:8px; align-items:center; }
.chat-input-wrap input { flex:1; padding:10px 14px; border:1.5px solid #e5e7eb; border-radius:8px; font-size:13px; outline:none; }
.chat-input-wrap input:focus { border-color:#4f46e5; }
.chat-input-wrap button { width:36px; height:36px; border-radius:50%; background:linear-gradient(135deg,#4f46e5,#7c3aed); color:#fff; border:none; cursor:pointer; display:flex; align-items:center; justify-content:center; flex-shrink:0; transition:all 0.2s; }
.chat-input-wrap button:hover { transform:scale(1.05); }

@media(max-width:768px) {
  .chat-panel { right:0; left:0; bottom:0; top:0; width:100%; max-height:100%; border-radius:0; }
  .chat-bubble { bottom:16px; right:16px; }
}
    /* Invite code boxes */
    .invite-box {
      width: 44px !important; height: 52px !important; text-align: center !important;
      font-size: 22px !important; font-weight: 700 !important; font-family: monospace !important;
      letter-spacing: 0 !important; text-transform: uppercase !important;
      background: rgba(255,255,255,0.06) !important; border: 2px solid rgba(255,255,255,0.2) !important;
      border-radius: 10px !important; color: #fff !important; padding: 0 !important;
      margin-bottom: 0 !important; outline: none !important;
      transition: border-color 0.2s, box-shadow 0.2s !important;
    }
    .invite-box:focus {
      border-color: #a78bfa !important;
      box-shadow: 0 0 0 3px rgba(167,139,250,0.2) !important;
      background: rgba(255,255,255,0.1) !important;
    }

    /* Bottom tabs - matches academy-public layout */
    .btab-stats {
      display: flex; gap: 40px; justify-content: center; margin-bottom: 28px;
    }
    .btab-stats .stat { text-align: center; }
    .btab-stats .stat .num { font-size: 32px; font-weight: 900; color: #ffffff; }
    .btab-stats .stat .label { font-size: 13px; color: #ffffff; font-weight: 500; }
    .btab-bar {
      display: flex; background: white; border-radius: 14px;
      margin: 0 auto 24px; max-width: 820px;
      box-shadow: 0 4px 24px rgba(0,0,0,0.08);
      overflow: hidden;
    }
    .btab {
      flex: 1; padding: 16px 12px; text-align: center;
      font-weight: 600; font-size: 14px; cursor: pointer;
      border: none; background: white; color: #888;
      transition: all 0.2s; border-bottom: 3px solid transparent;
    }
    .btab.active { color: #4f46e5; border-bottom-color: #4f46e5; }
    .btab:hover { color: #4f46e5; background: #f8f7ff; }
    .btab i { margin-right: 6px; }
    .btab-content { display: none; min-height: 200px; }
    .btab-content.active { display: block; animation: btab-fade 0.3s ease; }
    .btab-card {
      background: white; border: 1px solid #e5e7eb;
      border-radius: 14px; padding: 24px; margin-bottom: 14px;
      box-shadow: 0 1px 3px rgba(0,0,0,0.03);
    }
    @keyframes btab-fade { from { opacity: 0; transform: translateY(8px); } to { opacity: 1; transform: translateY(0); } }
    @media (max-width: 600px) {
      .btab-stats { gap: 16px; }
      .btab-stats .stat .num { font-size: 22px; }
      .btab-stats .stat .label { font-size: 10px; }
      .btab-bar { border-radius: 10px; }
      .btab { font-size: 11px; padding: 12px 4px; }
      .btab i { display: none; }
    }

    /* Hero email attention-grab */
    @keyframes hero-pulse { 0%,100%{box-shadow:0 0 0 4px rgba(255,255,255,0.7),0 0 30px rgba(255,255,255,0.3)} 50%{box-shadow:0 0 0 6px rgba(255,255,255,0.9),0 0 40px rgba(255,255,255,0.5)} }
    .hero-email-pulse { animation: hero-pulse 0.8s ease-in-out infinite; }

    /* Hero button states */
    .hero-btn-inactive { z-index: 10;
      background: linear-gradient(135deg, rgba(255,255,255,0.15), rgba(255,255,255,0.08));
      color: rgba(255,255,255,0.6);
      cursor: pointer; border: 1px solid rgba(255,255,255,0.25);
      backdrop-filter: blur(8px);
      position: relative; overflow: hidden;
    }
    .hero-btn-inactive:hover {
      background: linear-gradient(135deg, rgba(255,255,255,0.22), rgba(255,255,255,0.12));
      border-color: rgba(255,255,255,0.4);
      color: rgba(255,255,255,0.8);
    }
    .hero-btn-active { z-index: 10;
      background: #ffffff !important;
      background-size: auto;
      animation: none;
      color: #4f46e5 !important;
      cursor: pointer; border: none !important;
      box-shadow: 0 0 20px rgba(139,92,246,0.3), 0 0 40px rgba(139,92,246,0.1), 0 4px 16px rgba(0,0,0,0.15);
      padding: 15px 28px; font-weight: 700; transform: scale(1.02);
      position: relative; overflow: hidden;
    }
    .hero-btn-active::before {
      content: ''; position: absolute; top: -50%; left: -50%;
      width: 200%; height: 200%;
      background: linear-gradient(45deg, transparent 30%, rgba(255,255,255,0.6) 50%, transparent 70%);
      animation: hero-btn-shine 4s ease-in-out infinite;
    }
    .hero-btn-active:hover {
      transform: scale(1.05);
      box-shadow: 0 0 30px rgba(139,92,246,0.5), 0 0 60px rgba(139,92,246,0.15), 0 6px 20px rgba(0,0,0,0.2);
    }
    @keyframes hero-btn-shimmer {
      0%,100% { background-position: 0% 50%; }
      50% { background-position: 100% 50%; }
    }
    @keyframes hero-btn-shine {
      0% { transform: translateX(-100%) rotate(45deg); }
      30%,100% { transform: translateX(100%) rotate(45deg); }
    }
