:root {
    --navy: #1E1740;
    --pink: #E91E8C;
    --pink-light: #F472B6;
    --pink-glow: rgba(233,30,140,0.18);
    --cream: #FAF8FF;
    --white: #ffffff;
    --muted: rgba(255,255,255,0.55);
    --card-bg: rgba(255,255,255,0.04);
    --card-border: rgba(255,255,255,0.09);
  }

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

  html { scroll-behavior: smooth; }

  body {
    font-family: 'DM Sans', sans-serif;
    background: var(--navy);
    color: var(--white);
    overflow-x: hidden;
    min-height: 100vh;
  }

  /* ── NOISE TEXTURE OVERLAY ── */
  body::before {
    content: '';
    position: fixed; inset: 0; z-index: 0;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.04'/%3E%3C/svg%3E");
    pointer-events: none;
  }

  /* ── GRADIENT MESH BACKGROUND ── */
  .mesh {
    position: fixed; inset: 0; z-index: 0; pointer-events: none;
    background:
      radial-gradient(ellipse 80% 60% at 10% 20%, rgba(233,30,140,0.22) 0%, transparent 60%),
      radial-gradient(ellipse 60% 50% at 90% 80%, rgba(120,60,220,0.18) 0%, transparent 60%),
      radial-gradient(ellipse 50% 40% at 50% 50%, rgba(30,23,64,0.8) 0%, transparent 100%);
  }

  /* ── FLOATING ORBS ── */
  .orb {
    position: fixed; border-radius: 50%; pointer-events: none; z-index: 0;
    filter: blur(80px); opacity: 0.35;
    animation: drift 12s ease-in-out infinite alternate;
  }
  .orb-1 { width: 500px; height: 500px; background: var(--pink); top: -150px; left: -100px; animation-delay: 0s; }
  .orb-2 { width: 400px; height: 400px; background: #7C3AED; bottom: -100px; right: -80px; animation-delay: -4s; }
  .orb-3 { width: 300px; height: 300px; background: var(--pink); top: 50%; right: 10%; animation-delay: -8s; }

  @keyframes drift {
    from { transform: translate(0, 0) scale(1); }
    to   { transform: translate(30px, 20px) scale(1.08); }
  }

  /* ── LAYOUT ── */
  .page { position: relative; z-index: 1; }

  /* ── NAV ── */
  nav {
    display: flex; align-items: center; justify-content: space-between;
    padding: 24px 48px;
    border-bottom: 1px solid var(--card-border);
    backdrop-filter: blur(12px);
    position: sticky; top: 0; z-index: 100;
    background: rgba(30,23,64,0.6);
  }
  .logo {
    font-family: 'Syne', sans-serif;
    font-weight: 800; font-size: 22px; letter-spacing: -0.5px;
    display: flex; align-items: center; gap: 10px;
  }
  .logo-icon {
    width: 36px; height: 36px; border-radius: 10px;
    background: linear-gradient(135deg, var(--pink), #9333EA);
    display: flex; align-items: center; justify-content: center;
    font-size: 18px; font-weight: 800;
  }
  .nav-pill {
    background: var(--pink-glow); border: 1px solid rgba(233,30,140,0.35);
    border-radius: 999px; padding: 8px 20px;
    font-size: 13px; font-weight: 500; color: var(--pink-light);
    letter-spacing: 0.3px;
  }

  /* ── HERO ── */
  .hero {
    min-height: 90vh;
    display: flex; flex-direction: column; align-items: center; justify-content: center;
    text-align: center; padding: 80px 24px 60px;
    position: relative;
  }

  .badge {
    display: inline-flex; align-items: center; gap: 8px;
    background: var(--card-bg); border: 1px solid var(--card-border);
    border-radius: 999px; padding: 8px 18px;
    font-size: 13px; color: var(--muted); letter-spacing: 0.5px; text-transform: uppercase;
    margin-bottom: 40px;
    animation: fadeUp 0.8s ease both;
  }
  .badge-dot {
    width: 7px; height: 7px; border-radius: 50%;
    background: var(--pink);
    animation: pulse 2s ease-in-out infinite;
  }
  @keyframes pulse {
    0%, 100% { box-shadow: 0 0 0 0 rgba(233,30,140,0.7); }
    50% { box-shadow: 0 0 0 6px rgba(233,30,140,0); }
  }

  h1 {
    font-family: 'Syne', sans-serif;
    font-size: clamp(48px, 7vw, 88px);
    font-weight: 800; line-height: 1.0; letter-spacing: -3px;
    max-width: 900px; margin-bottom: 28px;
    animation: fadeUp 0.8s 0.1s ease both;
  }
  h1 .accent { color: var(--pink); position: relative; display: inline-block; }
  h1 .accent::after {
    content: '';
    position: absolute; bottom: 2px; left: 0; right: 0; height: 3px;
    background: linear-gradient(90deg, var(--pink), transparent);
    border-radius: 2px;
  }

  .subtitle {
    font-size: clamp(17px, 2vw, 21px); color: var(--muted);
    font-weight: 300; max-width: 560px; line-height: 1.65;
    margin-bottom: 52px;
    animation: fadeUp 0.8s 0.2s ease both;
  }

  /* ── FORM ── */
  .form-wrap {
    width: 100%; max-width: 520px;
    animation: fadeUp 0.8s 0.3s ease both;
    margin-bottom: 28px;
  }
  .form-row {
    display: flex; gap: 10px; align-items: stretch;
    background: rgba(255,255,255,0.06);
    border: 1px solid rgba(255,255,255,0.12);
    border-radius: 16px; padding: 6px 6px 6px 20px;
    transition: border-color 0.3s, box-shadow 0.3s;
  }
  .form-row:focus-within {
    border-color: var(--pink);
    box-shadow: 0 0 0 3px var(--pink-glow);
  }

  .role-select {
    background: rgba(255,255,255,0.08); border: 1px solid rgba(255,255,255,0.12);
    border-radius: 12px; padding: 0 14px;
    color: var(--white); font-family: 'DM Sans', sans-serif;
    font-size: 14px; cursor: pointer; outline: none;
    margin-bottom: 10px; width: 100%;
    height: 48px;
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath d='M2 4l4 4 4-4' stroke='%23aaa' stroke-width='1.5' fill='none' stroke-linecap='round'/%3E%3C/svg%3E");
    background-repeat: no-repeat; background-position: right 14px center;
    transition: border-color 0.2s;
  }
  .role-select:focus { border-color: var(--pink); }
  .role-select option { background: #1E1740; }

  input[type="email"] {
    flex: 1; background: transparent; border: none; outline: none;
    color: var(--white); font-family: 'DM Sans', sans-serif;
    font-size: 16px; font-weight: 400;
    padding: 14px 0;
  }
  input::placeholder { color: rgba(255,255,255,0.3); }

  .cta-btn {
    background: linear-gradient(135deg, var(--pink) 0%, #9333EA 100%);
    border: none; border-radius: 10px;
    padding: 14px 28px; color: white;
    font-family: 'Syne', sans-serif; font-weight: 700; font-size: 15px;
    cursor: pointer; white-space: nowrap;
    transition: transform 0.15s, box-shadow 0.15s, opacity 0.15s;
    position: relative; overflow: hidden;
  }
  .cta-btn::after {
    content: ''; position: absolute; inset: 0;
    background: linear-gradient(135deg, rgba(255,255,255,0.15), transparent);
    opacity: 0; transition: opacity 0.2s;
  }
  .cta-btn:hover { transform: translateY(-1px); box-shadow: 0 8px 30px rgba(233,30,140,0.4); }
  .cta-btn:hover::after { opacity: 1; }
  .cta-btn:active { transform: translateY(0); }

  .form-note {
    font-size: 13px; color: rgba(255,255,255,0.3);
    animation: fadeUp 0.8s 0.4s ease both;
  }

  /* ── SUCCESS STATE ── */
  .success-msg {
    display: none;
    background: rgba(233,30,140,0.1); border: 1px solid rgba(233,30,140,0.3);
    border-radius: 14px; padding: 20px 28px;
    text-align: center; max-width: 520px; width: 100%;
    animation: fadeUp 0.5s ease both;
  }
  .success-msg.show { display: block; }
  .success-msg p { font-size: 16px; color: var(--pink-light); font-weight: 500; }
  .success-msg span { font-size: 13px; color: var(--muted); display: block; margin-top: 6px; }

  /* ── COUNTER ── */
  .counter-wrap {
    display: flex; gap: 40px; margin-top: 60px; justify-content: center;
    animation: fadeUp 0.8s 0.5s ease both;
  }
  .counter-item { text-align: center; }
  .counter-num {
    font-family: 'Syne', sans-serif; font-size: 36px; font-weight: 800;
    line-height: 1; color: white;
  }
  .counter-label { font-size: 13px; color: var(--muted); margin-top: 4px; letter-spacing: 0.5px; text-transform: uppercase; }
  .counter-divider { width: 1px; background: var(--card-border); }

  /* ── FEATURES ── */
  .features {
    padding: 80px 48px;
    max-width: 1100px; margin: 0 auto;
  }
  .section-tag {
    font-size: 12px; text-transform: uppercase; letter-spacing: 2px;
    color: var(--pink); font-weight: 600; margin-bottom: 16px;
  }
  .section-title {
    font-family: 'Syne', sans-serif; font-size: clamp(32px, 4vw, 48px);
    font-weight: 800; letter-spacing: -1.5px; margin-bottom: 60px;
    line-height: 1.1;
  }
  .features-grid {
    display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 20px;
  }
  .feature-card {
    background: var(--card-bg); border: 1px solid var(--card-border);
    border-radius: 20px; padding: 32px 28px;
    transition: border-color 0.3s, transform 0.3s, background 0.3s;
    position: relative; overflow: hidden;
  }
  .feature-card::before {
    content: ''; position: absolute; inset: 0;
    background: linear-gradient(135deg, var(--pink-glow), transparent 60%);
    opacity: 0; transition: opacity 0.3s;
  }
  .feature-card:hover { border-color: rgba(233,30,140,0.4); transform: translateY(-4px); background: rgba(255,255,255,0.06); }
  .feature-card:hover::before { opacity: 1; }
  .feature-icon {
    width: 48px; height: 48px; border-radius: 14px;
    background: linear-gradient(135deg, rgba(233,30,140,0.25), rgba(147,51,234,0.2));
    border: 1px solid rgba(233,30,140,0.2);
    display: flex; align-items: center; justify-content: center;
    font-size: 22px; margin-bottom: 20px;
  }
  .feature-title {
    font-family: 'Syne', sans-serif; font-size: 18px; font-weight: 700;
    margin-bottom: 10px; letter-spacing: -0.3px;
  }
  .feature-desc { font-size: 15px; color: var(--muted); line-height: 1.6; font-weight: 300; }

  /* ── HOW IT WORKS ── */
  .how {
    padding: 80px 48px; max-width: 1100px; margin: 0 auto;
    border-top: 1px solid var(--card-border);
  }
  .steps { display: flex; flex-direction: column; gap: 0; max-width: 680px; }
  .step {
    display: flex; gap: 28px; align-items: flex-start; padding: 32px 0;
    border-bottom: 1px solid var(--card-border);
    position: relative;
  }
  .step:last-child { border-bottom: none; }
  .step-num {
    font-family: 'Syne', sans-serif; font-size: 13px; font-weight: 700;
    color: var(--pink); letter-spacing: 1px; text-transform: uppercase;
    min-width: 60px; padding-top: 4px;
  }
  .step-content h3 {
    font-family: 'Syne', sans-serif; font-size: 20px; font-weight: 700;
    margin-bottom: 8px; letter-spacing: -0.3px;
  }
  .step-content p { color: var(--muted); font-size: 15px; line-height: 1.6; font-weight: 300; }

  /* ── WHO IS IT FOR ── */
  .for-section {
    padding: 80px 48px; max-width: 1100px; margin: 0 auto;
    border-top: 1px solid var(--card-border);
  }
  .for-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; }
  .for-card {
    background: var(--card-bg); border: 1px solid var(--card-border);
    border-radius: 20px; padding: 36px 32px;
    transition: border-color 0.3s;
  }
  .for-card:hover { border-color: rgba(233,30,140,0.3); }
  .for-card h3 {
    font-family: 'Syne', sans-serif; font-size: 22px; font-weight: 800;
    margin-bottom: 6px; letter-spacing: -0.5px;
  }
  .for-card .for-sub { color: var(--pink); font-size: 13px; font-weight: 500; margin-bottom: 20px; text-transform: uppercase; letter-spacing: 0.5px; }
  .for-list { list-style: none; display: flex; flex-direction: column; gap: 10px; }
  .for-list li {
    font-size: 15px; color: var(--muted); font-weight: 300;
    display: flex; align-items: center; gap: 10px;
  }
  .for-list li::before {
    content: ''; width: 6px; height: 6px; border-radius: 50%;
    background: var(--pink); flex-shrink: 0;
  }

  /* ── FINAL CTA ── */
  .final-cta {
    padding: 100px 48px; text-align: center;
    border-top: 1px solid var(--card-border);
    position: relative;
  }
  .final-cta h2 {
    font-family: 'Syne', sans-serif; font-size: clamp(36px, 5vw, 64px);
    font-weight: 800; letter-spacing: -2px; line-height: 1.05;
    max-width: 700px; margin: 0 auto 20px;
  }
  .final-cta p { color: var(--muted); font-size: 18px; font-weight: 300; max-width: 480px; margin: 0 auto 44px; }

  /* ── FOOTER ── */
  footer {
    padding: 32px 48px;
    border-top: 1px solid var(--card-border);
    display: flex; align-items: center; justify-content: space-between;
    font-size: 13px; color: rgba(255,255,255,0.25);
  }

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

  .reveal { opacity: 0; transform: translateY(30px); transition: opacity 0.7s ease, transform 0.7s ease; }
  .reveal.visible { opacity: 1; transform: translateY(0); }

  /* ── RESPONSIVE ── */
  @media (max-width: 768px) {
    nav { padding: 16px 24px; }
    .hero { padding: 60px 20px 40px; }
    h1 { letter-spacing: -2px; }
    .features, .how, .for-section, .final-cta { padding: 60px 24px; }
    .for-grid { grid-template-columns: 1fr; }
    .counter-wrap { gap: 24px; }
    .form-row { flex-direction: column; padding: 12px; gap: 8px; }
    .cta-btn { width: 100%; padding: 16px; }
    footer { flex-direction: column; gap: 12px; text-align: center; }
  }