/* Extracted from landing.html style block 1 */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

  :root {
    --primary: #6366f1;
    --primary-dark: #4f46e5;
    --primary-light: rgba(99, 102, 241, 0.12);
    --primary-glow: rgba(99, 102, 241, 0.35);
    --gold: #f59e0b;
    --dark: #0b0f19;
    --text: #1e293b;
    --muted: #64748b;
    --border: #e2e8f0;
    --border-dark: rgba(255, 255, 255, 0.08);
    --bg: #f8fafc;
    --white: #ffffff;
    --radius: 20px;
    --shadow: 0 10px 30px -10px rgba(0, 0, 0, 0.06), 0 1px 3px rgba(0, 0, 0, 0.02);
    --shadow-lg: 0 20px 40px -15px rgba(99, 102, 241, 0.25);
    --glass-bg: rgba(255, 255, 255, 0.85);
    --glass-border: rgba(255, 255, 255, 0.6);
  }

  html { scroll-behavior: smooth; }

  body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    color: var(--text);
    background: var(--bg);
    line-height: 1.6;
    overflow-x: hidden;
  }

  /* Custom Scrollbar */
  ::-webkit-scrollbar { width: 10px; }
  ::-webkit-scrollbar-track { background: #0f172a; }
  ::-webkit-scrollbar-thumb { background: #334155; border-radius: 999px; border: 2px solid #0f172a; }
  ::-webkit-scrollbar-thumb:hover { background: #475569; }

  h1, h2, h3, h4 {
    font-family: 'Outfit', sans-serif;
    color: var(--dark);
    font-weight: 700;
  }

  /* ── NAVBAR ── */
  .nav {
    position: fixed; top: 0; left: 0; right: 0; z-index: 100;
    background: var(--white);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(226, 232, 240, 0.8);
    padding: 0 32px;
    height: 72px;
    display: flex; align-items: center; justify-content: space-between;
    transition: all 0.3s ease;
  }
  .nav-logo {
    display: flex; align-items: center; gap: 12px;
    font-family: 'Outfit', sans-serif;
    font-weight: 800; font-size: 20px; color: var(--dark);
    text-decoration: none;
  }
  .nav-logo-icon {
    width: 40px; height: 40px; border-radius: 12px;
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    display: flex; align-items: center; justify-content: center;
    font-size: 20px;
    box-shadow: 0 4px 12px rgba(99, 102, 241, 0.25);
  }
  .nav-links {
    display: flex; align-items: center; gap: 12px;
  }
  .nav-links a {
    text-decoration: none; color: var(--muted); font-size: 14px; font-weight: 600;
    padding: 8px 16px; border-radius: 10px;
    transition: all 0.2s ease;
  }
  .nav-links a:hover { color: var(--primary); background: var(--primary-light); }
  .btn-nav {
    background: var(--primary); color: var(--white) !important;
    padding: 10px 24px !important; border-radius: 12px !important;
    font-weight: 700 !important;
    box-shadow: 0 4px 14px rgba(99, 102, 241, 0.2);
  }
  .btn-nav:hover { background: var(--primary-dark) !important; transform: translateY(-1px); box-shadow: 0 6px 18px rgba(99, 102, 241, 0.3) !important; }
  
  .nav-mobile-toggle {
    display: none; background: none; border: none;
    cursor: pointer; padding: 8px; border-radius: 10px;
    color: var(--dark); font-size: 24px;
    transition: background 0.2s;
  }
  .nav-mobile-toggle:hover { background: rgba(0,0,0,0.05); }

  /* ── HERO ── */
  .hero {
    min-height: 100vh;
    background: radial-gradient(circle at 80% 20%, #1e1b4b 0%, #0b0f19 50%, #030712 100%);
    display: flex; flex-direction: column;
    align-items: center; justify-content: center;
    text-align: center;
    padding: 120px 24px 80px;
    position: relative; overflow: hidden;
  }
  .hero::before {
    content: '';
    position: absolute; inset: 0;
    background-image: radial-gradient(rgba(99, 102, 241, 0.15) 1px, transparent 1px);
    background-size: 32px 32px;
    mask-image: radial-gradient(ellipse 60% 50% at 50% 50%, #000 40%, transparent 100%);
    -webkit-mask-image: radial-gradient(ellipse 60% 50% at 50% 50%, #000 40%, transparent 100%);
    opacity: 0.6;
  }
  .hero::after {
    content: '';
    position: absolute;
    top: -10%; left: 30%; width: 500px; height: 500px;
    background: radial-gradient(circle, rgba(99, 102, 241, 0.25) 0%, transparent 70%);
    filter: blur(60px);
    animation: floatingGlow 15s infinite alternate ease-in-out;
    pointer-events: none;
  }
  @keyframes floatingGlow {
    0% { transform: translate(0, 0) scale(1); }
    100% { transform: translate(100px, 50px) scale(1.2); }
  }

  .hero-badge {
    position: relative;
    display: inline-flex; align-items: center; gap: 8px;
    background: rgba(99, 102, 241, 0.15); border: 1px solid rgba(99, 102, 241, 0.3);
    color: #a5b4fc; font-size: 13px; font-weight: 700;
    padding: 8px 18px; border-radius: 100px;
    margin-bottom: 28px;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
  }
  .hero-badge-dot {
    width: 8px; height: 8px; border-radius: 50%;
    background: #6366f1;
    box-shadow: 0 0 10px #6366f1;
    animation: pulse 2s infinite;
  }
  @keyframes pulse {
    0%, 100% { opacity: 1; transform: scale(1); }
    50% { opacity: .4; transform: scale(1.5); }
  }

  .hero h1 {
    position: relative;
    font-size: clamp(38px, 6vw, 76px);
    font-weight: 900; line-height: 1.1;
    color: var(--white);
    margin-bottom: 24px;
    max-width: 900px;
    letter-spacing: -0.02em;
  }
  .hero h1 span {
    background: linear-gradient(135deg, #a5b4fc, #c084fc, #fbbf24);
    -webkit-background-clip: text; -webkit-text-fill-color: transparent;
    background-clip: text;
  }
  .hero-sub {
    position: relative;
    font-size: clamp(16px, 2.5vw, 20px);
    color: #94a3b8; max-width: 600px;
    margin-bottom: 44px; line-height: 1.7;
    font-weight: 400;
  }
  .hero-cta {
    position: relative;
    display: flex; gap: 16px; flex-wrap: wrap; justify-content: center;
  }

  .btn {
    display: inline-flex; align-items: center; gap: 10px;
    padding: 16px 36px; border-radius: 14px;
    font-size: 15px; font-weight: 700;
    text-decoration: none; cursor: pointer;
    transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
    border: none;
    white-space: nowrap;
  }
  .btn-primary {
    background: var(--primary); color: var(--white);
    box-shadow: var(--shadow-lg);
  }
  .btn-primary:hover {
    background: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: 0 15px 35px rgba(99, 102, 241, 0.4);
  }
  .btn-outline {
    background: rgba(255, 255, 255, 0.05); color: var(--white);
    border: 1px solid rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
  }
  .btn-outline:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.3);
    transform: translateY(-2px);
  }

  .hero-stats {
    position: relative;
    display: flex; gap: 48px; flex-wrap: wrap; justify-content: center;
    margin-top: 80px; padding-top: 48px;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    width: 100%; max-width: 720px;
  }
  .hero-stat { text-align: center; }
  .hero-stat-val {
    font-family: 'Outfit', sans-serif;
    font-size: 36px; font-weight: 800;
    color: var(--white); line-height: 1;
    background: linear-gradient(135deg, #ffffff, #94a3b8);
    -webkit-background-clip: text; -webkit-text-fill-color: transparent;
    background-clip: text;
  }
  .hero-stat-lbl { font-size: 13px; color: #64748b; margin-top: 8px; font-weight: 500; }

  /* ── FEATURES ── */
  .section { padding: 100px 32px; }
  .section-inner { max-width: 1200px; margin: 0 auto; }
  .section-tag {
    display: inline-block;
    background: var(--primary-light); color: var(--primary);
    font-size: 12px; font-weight: 800; letter-spacing: .08em;
    text-transform: uppercase; padding: 6px 14px; border-radius: 100px;
    margin-bottom: 16px;
  }
  .section-title {
    font-size: clamp(28px, 4vw, 44px); font-weight: 800;
    color: var(--dark); line-height: 1.2; margin-bottom: 16px;
    letter-spacing: -0.01em;
  }
  .section-sub {
    font-size: 16px; color: var(--muted); max-width: 560px; line-height: 1.7;
    font-weight: 400;
  }

  .features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 24px; margin-top: 64px;
  }
  .feature-card {
    background: var(--white); border: 1px solid var(--border);
    border-radius: var(--radius); padding: 36px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative; overflow: hidden;
  }
  .feature-card::before {
    content: '';
    position: absolute; top: 0; left: 0; width: 100%; height: 4px;
    background: linear-gradient(90deg, var(--primary), var(--primary-dark));
    opacity: 0; transition: opacity 0.3s ease;
  }
  .feature-card:hover {
    box-shadow: 0 20px 40px -10px rgba(15, 23, 42, 0.06);
    transform: translateY(-4px);
    border-color: rgba(99, 102, 241, 0.2);
  }
  .feature-card:hover::before { opacity: 1; }
  .feature-icon {
    width: 56px; height: 56px; border-radius: 16px;
    display: flex; align-items: center; justify-content: center;
    font-size: 24px; margin-bottom: 24px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.03);
  }
  .feature-card h3 { font-size: 18px; font-weight: 700; color: var(--dark); margin-bottom: 12px; }
  .feature-card p { font-size: 14px; color: var(--muted); line-height: 1.7; }

  /* ── HOW IT WORKS ── */
  .how-bg { background: #f1f5f9; }
  .steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 28px; margin-top: 64px;
  }
  .step {
    text-align: center; padding: 40px 28px;
    background: var(--white); border-radius: var(--radius);
    border: 1px solid var(--border);
    transition: all 0.3s ease;
  }
  .step:hover {
    border-color: rgba(99, 102, 241, 0.3);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.05);
  }
  .step-num {
    width: 52px; height: 52px; border-radius: 50%;
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    color: var(--white); font-size: 22px; font-weight: 800;
    display: flex; align-items: center; justify-content: center;
    margin: 0 auto 20px;
    box-shadow: 0 4px 12px rgba(99, 102, 241, 0.25);
  }
  .step h3 { font-size: 17px; font-weight: 700; color: var(--dark); margin-bottom: 12px; }
  .step p { font-size: 14px; color: var(--muted); line-height: 1.7; }

  /* ── PLANS ── */
  .plans-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 24px; margin-top: 64px; align-items: start;
  }
  .plan-card {
    background: var(--white); border: 1px solid var(--border);
    border-radius: var(--radius); padding: 40px 32px;
    position: relative; transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  }
  .plan-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 25px 50px -12px rgba(15, 23, 42, 0.08);
  }
  .plan-card.featured {
    border-color: var(--primary);
    box-shadow: var(--shadow-lg);
  }
  .plan-badge {
    position: absolute; top: -14px; left: 50%; transform: translateX(-50%);
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    color: var(--white);
    font-size: 11px; font-weight: 800; letter-spacing: .08em;
    padding: 6px 18px; border-radius: 100px;
    box-shadow: 0 4px 10px rgba(99, 102, 241, 0.3);
  }
  .plan-name { font-size: 14px; font-weight: 700; color: var(--muted); text-transform: uppercase; letter-spacing: 0.08em; margin-bottom: 12px; }
  .plan-price {
    font-size: 44px; font-weight: 900; color: var(--dark); line-height: 1;
    margin-bottom: 8px;
    font-family: 'Outfit', sans-serif;
  }
  .plan-price sub { font-size: 14px; color: var(--muted); font-weight: 500; vertical-align: baseline; }
  .plan-desc { font-size: 13px; color: var(--muted); margin: 12px 0 24px; }
  
  .plan-features { list-style: none; margin-bottom: 36px; }
  .plan-features li {
    display: flex; align-items: flex-start; gap: 12px;
    font-size: 14px; color: var(--text); padding: 9px 0;
    border-bottom: 1px solid #f1f5f9;
  }
  .plan-features li:last-child { border-bottom: none; }
  .plan-features li::before {
    content: '✓'; color: #10b981; font-weight: 800;
    flex-shrink: 0;
  }
  .plan-features li.no::before { content: '×'; color: #cbd5e1; }
  .plan-features li.no { color: var(--muted); }
  
  .btn-plan {
    display: block; text-align: center; text-decoration: none;
    padding: 14px; border-radius: 12px; font-size: 14px; font-weight: 700;
    transition: all 0.2s;
  }
  .btn-plan-outline {
    border: 2px solid var(--border); color: var(--text);
    background: transparent;
  }
  .btn-plan-outline:hover { border-color: var(--primary); color: var(--primary); background: var(--primary-light); }
  .btn-plan-primary {
    background: var(--primary); color: var(--white); border: 2px solid var(--primary);
    box-shadow: 0 4px 12px rgba(99, 102, 241, 0.2);
  }
  .btn-plan-primary:hover { background: var(--primary-dark); box-shadow: 0 6px 16px rgba(99, 102, 241, 0.35); }

  /* ── VERIFY DEMO ── */
  .verify-section {
    background: radial-gradient(circle at 10% 80%, #1e1b4b 0%, #0b0f19 70%, #030712 100%);
    color: var(--white);
  }
  .verify-inner {
    max-width: 1200px; margin: 0 auto;
    display: grid; grid-template-columns: 1fr 1fr;
    gap: 80px; align-items: center;
  }
  .verify-text .section-title { color: var(--white); }
  .verify-text .section-sub { color: #94a3b8; }
  
  .verify-demo {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-radius: 24px; padding: 40px;
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.3);
  }
  .verify-input-row {
    display: flex; gap: 10px;
  }
  .verify-input {
    flex: 1; padding: 14px 20px; border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.12);
    background: rgba(255, 255, 255, 0.06); color: var(--white);
    font-size: 14px; outline: none;
    font-family: ui-monospace, SFMono-Regular, monospace;
    transition: all 0.25s ease;
  }
  .verify-input::placeholder { color: #475569; }
  .verify-input:focus { border-color: var(--primary); background: rgba(255,255,255,0.1); }
  
  .verify-btn {
    padding: 14px 24px; border-radius: 12px;
    background: var(--primary); color: var(--white);
    border: none; cursor: pointer; font-size: 14px; font-weight: 700;
    transition: all 0.2s;
    box-shadow: var(--shadow-lg);
  }
  .verify-btn:hover { background: var(--primary-dark); transform: translateY(-1px); }
  
  .verify-result {
    margin-top: 24px; display: none;
    border-radius: 16px; padding: 24px;
    border: 1px solid rgba(16, 185, 129, 0.2);
    background: rgba(16, 185, 129, 0.04);
    animation: slideUp 0.3s ease;
  }
  @keyframes slideUp { from { opacity: 0; transform: translateY(10px); } to { opacity: 1; transform: translateY(0); } }
  .verify-result.show { display: block; }
  .verify-result.error {
    border-color: rgba(239, 68, 68, 0.2); background: rgba(239, 68, 68, 0.04);
  }

  /* ── CTA ── */
  .cta-section {
    text-align: center; padding: 100px 32px;
    background: #f1f5f9;
  }
  .cta-box {
    max-width: 800px; margin: 0 auto;
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    border-radius: 32px; padding: 72px 48px;
    box-shadow: var(--shadow-lg);
    position: relative; overflow: hidden;
  }
  .cta-box::before {
    content: '';
    position: absolute; top: -50%; left: -50%; width: 200%; height: 200%;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.1) 0%, transparent 60%);
    pointer-events: none;
  }
  .cta-box h2 { font-size: clamp(26px, 4vw, 40px); font-weight: 800; color: var(--white); margin-bottom: 16px; letter-spacing: -0.01em; }
  .cta-box p { color: rgba(255, 255, 255, 0.85); font-size: 16px; margin-bottom: 36px; max-width: 500px; margin-left: auto; margin-right: auto; }
  .cta-btns { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }
  .btn-white { background: var(--white); color: var(--primary-dark); box-shadow: 0 4px 12px rgba(0,0,0,0.05); }
  .btn-white:hover { background: #f8fafc; transform: translateY(-2px); box-shadow: 0 8px 20px rgba(0,0,0,0.1); }
  .btn-ghost { background: rgba(255, 255, 255, 0.12); color: var(--white); border: 1px solid rgba(255, 255, 255, 0.25); }
  .btn-ghost:hover { background: rgba(255, 255, 255, 0.2); transform: translateY(-2px); }

  /* ── FOOTER ── */
  .footer {
    background: var(--dark); color: #64748b;
    padding: 60px 32px; text-align: center;
    font-size: 14px;
    border-top: 1px solid rgba(255,255,255,0.03);
  }
  .footer-inner { max-width: 1200px; margin: 0 auto; }
  .footer-links { display: flex; gap: 28px; justify-content: center; flex-wrap: wrap; margin-bottom: 28px; }
  .footer-links a { color: #64748b; text-decoration: none; font-weight: 500; transition: color .15s; }
  .footer-links a:hover { color: var(--white); }
  .footer p { font-size: 13px; color: #475569; }

  /* ── MOBILE ── */
  @media (max-width: 768px) {
    .nav { padding: 0 20px; }
    .nav-links { display: none; flex-direction: column; gap: 4px; }
    .nav-links.open {
      display: flex; position: fixed;
      top: 72px; left: 0; right: 0;
      background: var(--white); border-bottom: 1px solid var(--border);
      padding: 16px 20px;
      box-shadow: 0 15px 30px rgba(0, 0, 0, 0.08);
    }
    .nav-links.open a { display: block; padding: 12px 16px; }
    .nav-mobile-toggle { display: flex; align-items: center; justify-content: center; }

    .hero { padding: 110px 20px 60px; }
    .hero-stats { gap: 32px; margin-top: 48px; }

    .section { padding: 80px 20px; }
    .verify-inner { grid-template-columns: 1fr; gap: 48px; }

    .plans-grid { grid-template-columns: 1fr; }
    .plan-card.featured { order: -1; }

    .cta-box { padding: 48px 24px; }
  }

  @media (max-width: 480px) {
    .hero-cta { flex-direction: column; align-items: center; width: 100%; }
    .hero-cta .btn { width: 100%; justify-content: center; }
    .cta-btns { flex-direction: column; width: 100%; }
    .cta-btns .btn { justify-content: center; width: 100%; }
    .verify-input-row { flex-direction: column; }
  }
/* Extracted inline styles from landing.html */
.landing-inline-1 { background:#ede9fe; }
.landing-inline-2 { background:#dcfce7; }
.landing-inline-3 { background:#fef3c7; }
.landing-inline-4 { background:#fee2e2; }
.landing-inline-5 { background:#e0f2fe; }
.landing-inline-6 { background:#f0fdf4; }
.landing-inline-7 { background:rgba(99,102,241,.2);color:#a5b4fc; }
.landing-inline-8 { color:#94a3b8;font-size:14px;margin-bottom:16px; }
.landing-inline-9 { grid-column:1/-1;text-align:center;color:var(--muted);padding:40px; }
.landing-inline-10 { color:#94a3b8; }
.landing-inline-11 { color:#10b981;font-weight:700;margin-bottom:12px; }
.landing-inline-12 { display:grid;grid-template-columns:1fr 1fr;gap:8px;font-size:13px; }
.landing-inline-13 { color:#64748b; }
.landing-inline-14 { color:#f1f5f9; }
.landing-inline-15 { color:#64748b; }
.landing-inline-16 { color:#f1f5f9; }
.landing-inline-17 { color:#64748b; }
.landing-inline-18 { color:#f1f5f9; }
.landing-inline-19 { color:#64748b; }
.landing-inline-20 { color:#f1f5f9; }
.landing-inline-21 { color:#f87171;font-weight:700; }
.landing-inline-22 { color:#f87171; }
