*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

  :root {
    --green:   #4ADE80;
    --green2:  #22C55E;
    --navy:  #0B1628;
    --navy2: #0F2040;
    --sky:     #38BDF8;
    --orange:  #FB923C;
    --muted:   rgba(255,255,255,0.45);
    --border:  rgba(255,255,255,0.08);
  }

  html { scroll-behavior: smooth; }

  body {
    font-family: 'DM Sans', sans-serif;
    background: var(--navy);
    color: white;
    overflow-x: hidden;
  }

  /* ── NOISE OVERLAY ── */
  body::before {
    content: '';
    position: fixed;
    inset: 0;
    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.04'/%3E%3C/svg%3E");
    pointer-events: none;
    z-index: 0;
    opacity: 0.6;
  }

  /* ── GRID PATTERN ── */
  body::after {
    content: '';
    position: fixed;
    inset: 0;
    background-image:
      linear-gradient(rgba(74,222,128,0.03) 1px, transparent 1px),
      linear-gradient(90deg, rgba(74,222,128,0.03) 1px, transparent 1px);
    background-size: 48px 48px;
    pointer-events: none;
    z-index: 0;
  }

  /* ── NAV ── */
  nav {
    position: fixed;
    top: 0; left: 0; right: 0;
    z-index: 100;
    padding: 20px 60px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    border-bottom: 1px solid var(--border);
    background: rgba(11,22,40,0.8);
    backdrop-filter: blur(20px);
  }

  .nav-logo {
    display: flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
  }

  .nav-logo-mark {
    width: 36px; height: 36px;
    border-radius: 10px;
    background: rgba(74,222,128,0.12);
    border: 1.5px solid rgba(74,222,128,0.3);
    display: flex; align-items: center; justify-content: center;
    font-family: 'Syne', sans-serif;
    font-weight: 800;
    font-size: 12px;
    color: var(--green);
    letter-spacing: -0.5px;
  }

  .nav-logo span {
    font-family: 'Syne', sans-serif;
    font-weight: 800;
    font-size: 18px;
    color: white;
    letter-spacing: -0.5px;
  }

  .nav-links {
    display: flex;
    align-items: center;
    gap: 36px;
    list-style: none;
  }

  .nav-links a {
    text-decoration: none;
    color: var(--muted);
    font-size: 14px;
    font-weight: 500;
    transition: color 0.2s;
    letter-spacing: 0.01em;
  }

  .nav-links a:hover { color: white; }

  .nav-cta {
    display: flex;
    align-items: center;
    gap: 4px;
    background: var(--green);
    color: #050A08 !important;
    padding: 10px 20px;
    border-radius: 10px;
    font-weight: 700 !important;
    font-size: 13px !important;
    transition: all 0.2s !important;
  }

  .nav-cta:hover {
    background: #22C55E !important;
    color: #050A08 !important;
    transform: translateY(-1px);
  }

  /* ── HERO ── */
  .hero {
    position: relative;
    z-index: 1;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 100px 60px 80px;
    text-align: center;
    overflow: hidden;
  }

  .hero-bg { display: none; }
  .hero-bg-overlay { display: none; }

  /* Radial glow */
  .hero-glow {
    position: absolute;
    top: 20%;
    left: 50%;
    transform: translateX(-50%);
    width: 800px;
    height: 600px;
    background: radial-gradient(ellipse, rgba(74,222,128,0.08) 0%, transparent 70%);
    pointer-events: none;
  }

  .hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 6px 16px;
    border-radius: 100px;
    border: 1px solid rgba(74,222,128,0.3);
    background: rgba(74,222,128,0.06);
    font-size: 12px;
    font-weight: 600;
    color: var(--green);
    letter-spacing: 0.08em;
    text-transform: uppercase;
    margin-bottom: 32px;
    animation: fadeUp 0.6s ease both;
  }

  .hero-badge-dot {
    width: 6px; height: 6px;
    border-radius: 50%;
    background: var(--green);
    box-shadow: 0 0 8px var(--green);
    animation: pulse 2s ease-in-out infinite;
  }

  @keyframes pulse {
    0%, 100% { opacity: 1; transform: scale(1); }
    50% { opacity: 0.6; transform: scale(0.8); }
  }

  h1 {
    font-family: 'Syne', sans-serif;
    font-weight: 800;
    font-size: clamp(36px, 6vw, 60px);
    line-height: 1.0;
    letter-spacing: -0.03em;
    margin-bottom: 28px;
    animation: fadeUp 0.6s 0.1s ease both;
  }

  h1 .accent { color: var(--green); }
  h1 .dim    { color: rgba(255,255,255,0.35); }

  .hero-sub {
    font-size: clamp(16px, 2vw, 20px);
    color: var(--muted);
    max-width: 560px;
    line-height: 1.65;
    margin-bottom: 24px;
    font-weight: 300;
    animation: fadeUp 0.6s 0.2s ease both;
  }

  .hero-actions {
    display: flex;
    align-items: center;
    gap: 16px;
    flex-wrap: wrap;
    justify-content: center;
    animation: fadeUp 0.6s 0.3s ease both;
  }

  .btn-primary {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: var(--green);
    color: #050A08;
    padding: 16px 32px;
    border-radius: 14px;
    font-weight: 700;
    font-size: 15px;
    text-decoration: none;
    transition: all 0.2s;
    letter-spacing: -0.01em;
  }

  .btn-primary:hover {
    background: #22C55E;
    transform: translateY(-2px);
    box-shadow: 0 12px 40px rgba(74,222,128,0.3);
  }

  .btn-secondary {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: transparent;
    color: white;
    padding: 16px 32px;
    border-radius: 14px;
    font-weight: 500;
    font-size: 15px;
    text-decoration: none;
    border: 1px solid var(--border);
    transition: all 0.2s;
  }

  .btn-secondary:hover {
    border-color: rgba(255,255,255,0.25);
    background: rgba(255,255,255,0.05);
  }

  /* ── HERO STATS ── */
  .hero-stats {
    display: flex;
    align-items: center;
    gap: 48px;
    margin-top: 80px;
    padding-top: 48px;
    border-top: 1px solid var(--border);
    animation: fadeUp 0.6s 0.4s ease both;
  }

  .stat { text-align: center; }
  .stat-num {
    font-family: 'Syne', sans-serif;
    font-weight: 800;
    font-size: 36px;
    letter-spacing: -0.03em;
    color: white;
    line-height: 1;
  }
  .stat-num span { color: var(--green); }
  .stat-label {
    font-size: 12px;
    color: var(--muted);
    margin-top: 6px;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    font-weight: 500;
  }
  .stat-divider {
    width: 1px; height: 48px;
    background: var(--border);
  }

  /* ── DASHBOARD MOCKUP ── */
  .mockup-section {
    position: relative;
    z-index: 1;
    padding: 0 60px 120px;
    display: flex;
    justify-content: center;
  }

  .mockup-wrap {
    position: relative;
    width: 100%;
    max-width: 1100px;
    border-radius: 20px;
    border: 1px solid var(--border);
    overflow: hidden;
    background: #0B1628;
    box-shadow: 0 80px 160px rgba(0,0,0,0.6), 0 0 0 1px rgba(74,222,128,0.1);
  }

  .mockup-bar {
    padding: 14px 20px;
    border-bottom: 1px solid var(--border);
    display: flex;
    align-items: center;
    gap: 8px;
    background: rgba(255,255,255,0.02);
  }

  .mockup-dot {
    width: 12px; height: 12px;
    border-radius: 50%;
  }

  .mockup-content {
    display: grid;
    grid-template-columns: 200px 1fr;
    height: 500px;
  }

  .mock-sidebar {
    border-right: 1px solid var(--border);
    padding: 20px 16px;
    background: rgba(255,255,255,0.01);
  }

  .mock-logo {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 4px 0 20px;
    border-bottom: 1px solid var(--border);
    margin-bottom: 16px;
  }

  .mock-logo-mark {
    width: 28px; height: 28px;
    border-radius: 8px;
    background: rgba(74,222,128,0.15);
    border: 1px solid rgba(74,222,128,0.25);
    display: flex; align-items: center; justify-content: center;
    font-family: 'Syne', sans-serif;
    font-weight: 800;
    font-size: 9px;
    color: var(--green);
  }

  .mock-logo span {
    font-family: 'Syne', sans-serif;
    font-weight: 800;
    font-size: 13px;
    color: white;
  }

  .mock-nav-item {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 9px 10px;
    border-radius: 9px;
    margin-bottom: 2px;
    font-size: 12px;
    color: rgba(255,255,255,0.45);
  }

  .mock-nav-item.active {
    background: rgba(74,222,128,0.1);
    color: var(--green);
    border: 1px solid rgba(74,222,128,0.2);
  }

  .mock-nav-dot {
    width: 14px; height: 14px;
    border-radius: 4px;
    background: rgba(255,255,255,0.08);
    flex-shrink: 0;
  }

  .mock-nav-item.active .mock-nav-dot {
    background: rgba(74,222,128,0.3);
  }

  .mock-main {
    padding: 24px;
    overflow: hidden;
  }

  .mock-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 20px;
  }

  .mock-title {
    font-family: 'Syne', sans-serif;
    font-weight: 800;
    font-size: 18px;
    letter-spacing: -0.03em;
  }

  .mock-stats-row {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 12px;
    margin-bottom: 20px;
  }

  .mock-stat-card {
    background: rgba(255,255,255,0.03);
    border: 1px solid var(--border);
    border-radius: 12px;
    padding: 14px;
  }

  .mock-stat-label {
    font-size: 9px;
    color: rgba(255,255,255,0.3);
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-bottom: 6px;
    font-weight: 600;
  }

  .mock-stat-num {
    font-family: 'Syne', sans-serif;
    font-weight: 800;
    font-size: 22px;
    letter-spacing: -0.02em;
  }

  .mock-map {
    background: rgba(255,255,255,0.02);
    border: 1px solid var(--border);
    border-radius: 12px;
    height: 200px;
    overflow: hidden;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
  }

  /* Fake map grid */
  .mock-map::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image:
      linear-gradient(rgba(74,222,128,0.06) 1px, transparent 1px),
      linear-gradient(90deg, rgba(74,222,128,0.06) 1px, transparent 1px);
    background-size: 28px 28px;
  }

  .map-pin {
    position: absolute;
    width: 10px; height: 10px;
    border-radius: 50%;
    animation: mapPulse 2s ease-in-out infinite;
  }

  .map-pin::after {
    content: '';
    position: absolute;
    inset: -4px;
    border-radius: 50%;
    border: 1.5px solid currentColor;
    opacity: 0.3;
    animation: mapRing 2s ease-in-out infinite;
  }

  @keyframes mapPulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.2); }
  }

  @keyframes mapRing {
    0% { transform: scale(1); opacity: 0.3; }
    100% { transform: scale(2); opacity: 0; }
  }

  /* ── HOW IT WORKS ── */
  .section {
    position: relative;
    z-index: 1;
  }

  .section-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 5px 14px;
    border-radius: 100px;
    border: 1px solid var(--border);
    font-size: 11px;
    font-weight: 600;
    color: var(--muted);
    letter-spacing: 0.1em;
    text-transform: uppercase;
    margin-bottom: 20px;
  }

  .section-title {
    font-family: 'Syne', sans-serif;
    font-weight: 800;
    font-size: clamp(32px, 4vw, 52px);
    letter-spacing: -0.03em;
    line-height: 1.1;
    margin-bottom: 16px;
    text-align: center;
  }

  .section-title .accent { color: var(--green); }

  .section-sub {
    font-size: 18px;
    color: var(--muted);
    max-width: 480px;
    line-height: 1.6;
    font-weight: 300;
    display: inline-block;
  }

  /* Steps */
  .steps {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2px;
    background: var(--border);
    border-radius: 20px;
    overflow: hidden;
  }

  .step {
    background: var(--navy);
    padding: 48px 36px;
    position: relative;
    transition: background 0.3s;
  }

  .step:hover { background: rgba(74,222,128,0.03); }

  .step-num {
    font-family: 'Syne', sans-serif;
    font-weight: 800;
    font-size: 64px;
    letter-spacing: -0.04em;
    color: rgba(74,222,128,0.12);
    line-height: 1;
    margin-bottom: 24px;
  }

  .step-icon {
    width: 48px; height: 48px;
    border-radius: 14px;
    background: rgba(74,222,128,0.08);
    border: 1px solid rgba(74,222,128,0.2);
    display: flex; align-items: center; justify-content: center;
    font-size: 22px;
    margin-bottom: 20px;
  }

  .step h3 {
    font-family: 'Syne', sans-serif;
    font-weight: 700;
    font-size: 20px;
    letter-spacing: -0.02em;
    margin-bottom: 12px;
    line-height: 1.2;
  }

  .step p {
    font-size: 14px;
    color: var(--muted);
    line-height: 1.7;
    font-weight: 300;
  }

  /* ── FEATURES ── */
  .features-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2px;
    background: var(--border);
    border-radius: 20px;
    overflow: hidden;
  }

  .feature-card {
    background: var(--navy);
    padding: 48px;
    transition: background 0.3s;
  }

  .feature-card:hover { background: rgba(74,222,128,0.02); }

  .feature-card.highlight {
    background: rgba(74,222,128,0.04);
    grid-column: span 2;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 48px;
    align-items: center;
  }

  .feature-icon {
    width: 52px; height: 52px;
    border-radius: 16px;
    display: flex; align-items: center; justify-content: center;
    font-size: 24px;
    margin-bottom: 24px;
  }

  .feature-icon.green  { background: rgba(74,222,128,0.1);  border: 1px solid rgba(74,222,128,0.2);  }
  .feature-icon.sky    { background: rgba(56,189,248,0.1);  border: 1px solid rgba(56,189,248,0.2);  }
  .feature-icon.orange { background: rgba(251,146,60,0.1);  border: 1px solid rgba(251,146,60,0.2);  }
  .feature-icon.purple { background: rgba(167,139,250,0.1); border: 1px solid rgba(167,139,250,0.2); }

  .feature-card h3 {
    font-family: 'Syne', sans-serif;
    font-weight: 700;
    font-size: 22px;
    letter-spacing: -0.02em;
    margin-bottom: 12px;
  }

  .feature-card p {
    font-size: 15px;
    color: var(--muted);
    line-height: 1.7;
    font-weight: 300;
  }

  .feature-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: 20px;
  }

  .tag {
    padding: 4px 12px;
    border-radius: 100px;
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.05em;
    border: 1px solid;
  }

  .tag.green  { color: var(--green);  border-color: rgba(74,222,128,0.3);  background: rgba(74,222,128,0.06);  }
  .tag.sky    { color: var(--sky);    border-color: rgba(56,189,248,0.3);  background: rgba(56,189,248,0.06);  }
  .tag.orange { color: var(--orange); border-color: rgba(251,146,60,0.3);  background: rgba(251,146,60,0.06);  }

  /* AI Score viz */
  .ai-score-demo {
    background: rgba(255,255,255,0.02);
    border: 1px solid var(--border);
    border-radius: 16px;
    padding: 24px;
  }

  .ai-bar-row {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 12px;
  }

  .ai-bar-label {
    font-size: 12px;
    color: var(--muted);
    width: 80px;
    flex-shrink: 0;
    font-weight: 500;
  }

  .ai-bar-track {
    flex: 1;
    height: 6px;
    background: rgba(255,255,255,0.05);
    border-radius: 100px;
    overflow: hidden;
  }

  .ai-bar-fill {
    height: 100%;
    border-radius: 100px;
    animation: barGrow 1.5s ease both;
  }

  @keyframes barGrow {
    from { width: 0; }
  }

  .ai-bar-val {
    font-size: 12px;
    font-weight: 600;
    color: white;
    width: 32px;
    text-align: right;
  }

  /* ── WHO IT'S FOR ── */
  .audience-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
  }

  .audience-card {
    border: 1px solid var(--border);
    border-radius: 20px;
    padding: 36px;
    transition: all 0.3s;
    background: rgba(255,255,255,0.01);
  }

  .audience-card:hover {
    border-color: rgba(74,222,128,0.3);
    background: rgba(74,222,128,0.03);
    transform: translateY(-4px);
  }

  .audience-emoji {
    font-size: 40px;
    margin-bottom: 20px;
    display: block;
  }

  .audience-card h3 {
    font-family: 'Syne', sans-serif;
    font-weight: 700;
    font-size: 20px;
    letter-spacing: -0.02em;
    margin-bottom: 12px;
  }

  .audience-card p {
    font-size: 14px;
    color: var(--muted);
    line-height: 1.7;
    font-weight: 300;
  }

  .audience-list {
    list-style: none;
    margin-top: 20px;
    display: flex;
    flex-direction: column;
    gap: 8px;
  }

  .audience-list li {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 13px;
    color: rgba(255,255,255,0.6);
  }

  .audience-list li::before {
    content: '';
    width: 5px; height: 5px;
    border-radius: 50%;
    background: var(--green);
    flex-shrink: 0;
  }

  /* ── CTA SECTION ── */
  .cta-section {
    position: relative;
    z-index: 1;
    padding: 120px 60px;
    text-align: center;
    overflow: hidden;
  }

  .cta-glow {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 600px;
    height: 400px;
    background: radial-gradient(ellipse, rgba(74,222,128,0.1) 0%, transparent 70%);
    pointer-events: none;
  }

  .cta-card {
    position: relative;
    max-width: 700px;
    margin: 0 auto;
    border: 1px solid rgba(74,222,128,0.2);
    border-radius: 28px;
    padding: 80px 60px;
    background: rgba(74,222,128,0.03);
  }

  .cta-card h2 {
    font-family: 'Syne', sans-serif;
    font-weight: 800;
    font-size: clamp(32px, 4vw, 52px);
    letter-spacing: -0.03em;
    line-height: 1.1;
    margin-bottom: 16px;
  }

  .cta-card p {
    font-size: 18px;
    color: var(--muted);
    margin-bottom: 40px;
    font-weight: 300;
    line-height: 1.6;
  }

  .cta-form {
    display: flex;
    gap: 12px;
    max-width: 460px;
    margin: 0 auto;
  }

  .cta-input {
    flex: 1;
    background: rgba(255,255,255,0.05);
    border: 1px solid var(--border);
    border-radius: 12px;
    padding: 14px 18px;
    font-size: 14px;
    color: white;
    font-family: 'DM Sans', sans-serif;
    outline: none;
    transition: border-color 0.2s;
  }

  .cta-input::placeholder { color: rgba(255,255,255,0.25); }
  .cta-input:focus { border-color: rgba(74,222,128,0.4); }

  .cta-btn {
    background: var(--green);
    color: #050A08;
    border: none;
    border-radius: 12px;
    padding: 14px 24px;
    font-size: 14px;
    font-weight: 700;
    cursor: pointer;
    font-family: 'Syne', sans-serif;
    white-space: nowrap;
    transition: all 0.2s;
  }

  .cta-btn:hover {
    background: #22C55E;
    transform: translateY(-1px);
  }

  /* ── FOOTER ── */
  footer {
    position: relative;
    z-index: 1;
    border-top: 1px solid var(--border);
    padding: 48px 60px;
    display: flex;
    align-items: center;
    justify-content: space-between;
  }

  .footer-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
  }

  .footer-logo span {
    font-family: 'Syne', sans-serif;
    font-weight: 800;
    font-size: 16px;
    color: white;
  }

  .footer-copy {
    font-size: 13px;
    color: rgba(255,255,255,0.3);
  }

  .footer-links {
    display: flex;
    gap: 28px;
    list-style: none;
  }

  .footer-links a {
    text-decoration: none;
    font-size: 13px;
    color: rgba(255,255,255,0.3);
    transition: color 0.2s;
  }

  .footer-links a:hover { color: white; }

  /* ── ANIMATIONS ── */
  @keyframes fadeUp {
    from { opacity: 0; transform: translateY(24px); }
    to   { opacity: 1; transform: translateY(0); }
  }

  .reveal {
    opacity: 0;
    transform: translateY(32px);
    transition: opacity 0.7s ease, transform 0.7s ease;
  }

  .reveal.visible {
    opacity: 1;
    transform: translateY(0);
    text-align: center;
  }

  /* ── MOBILE ── */
  @media (max-width: 768px) {
    nav { padding: 16px 24px; }
    .nav-links { display: flex; }
    .hero { padding: 100px 24px 60px; }
    .hero-stats { gap: 24px; flex-wrap: wrap; justify-content: center; }
    .mockup-section { padding: 0 24px 80px; }
    /* .section { padding: 80px 24px; } */
    .steps { grid-template-columns: 1fr; }
    .features-grid { grid-template-columns: 1fr; }
    .feature-card.highlight { grid-column: span 1; grid-template-columns: 1fr; }
    .audience-grid { grid-template-columns: 1fr; }
    .cta-section { padding: 80px 24px; }
    .cta-card { padding: 48px 28px; }
    .cta-form { flex-direction: column; }
    footer { flex-direction: column; gap: 24px; text-align: center; padding: 36px 24px; }
    .footer-links { flex-wrap: wrap; justify-content: center; }
  }

  /* ── PHONES ── */
  .phones-wrap {
    display: flex;
    align-items: flex-end;
    justify-content: center;
    gap: 24px;
    padding-bottom: 40px;
    margin-top: 60px;
  }

  .phone-frame {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
  }

  .phone-center {
    position: relative;
    z-index: 2;
    transform: translateY(-20px);
  }

  .phone-left  { transform: rotate(-6deg) translateX(20px); }
  .phone-right { transform: rotate(6deg)  translateX(-20px); }

  .phone-screen {
    width: 220px;
    height: 440px;
    border-radius: 36px;
    overflow: hidden;
    border: 2px solid rgba(255,255,255,0.12);
    box-shadow:
      0 40px 80px rgba(0,0,0,0.5),
      0 0 0 1px rgba(74,222,128,0.1),
      inset 0 0 0 1px rgba(255,255,255,0.05);
    background: #0B1628;
    position: relative;
  }

  .phone-center .phone-screen {
    width: 260px;
    height: 520px;
    box-shadow:
      0 60px 120px rgba(0,0,0,0.6),
      0 0 60px rgba(74,222,128,0.08),
      0 0 0 1px rgba(74,222,128,0.2),
      inset 0 0 0 1px rgba(255,255,255,0.08);
  }

  .phone-screen img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: top;
    display: block;
  }

  .phone-notch {
    position: absolute;
    top: 12px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 24px;
    background: rgba(0,0,0,0.8);
    border-radius: 100px;
    z-index: 3;
  }

  .phone-label {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 6px;
  }

  .phone-tag {
    padding: 4px 12px;
    border-radius: 100px;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.05em;
    text-transform: uppercase;
  }

  .phone-tag.green  { background: rgba(74,222,128,0.12); color: var(--green);   border: 1px solid rgba(74,222,128,0.25); }
  .phone-tag.sky    { background: rgba(56,189,248,0.12); color: var(--sky);     border: 1px solid rgba(56,189,248,0.25); }
  .phone-tag.orange { background: rgba(251,146,60,0.12); color: var(--orange);  border: 1px solid rgba(251,146,60,0.25); }

  .phone-caption {
    font-size: 12px;
    color: rgba(255,255,255,0.3);
    font-weight: 400;
  }

  /* Glow under center phone */
  .phone-center::after {
    content: '';
    position: absolute;
    bottom: -60px;
    left: 50%;
    transform: translateX(-50%);
    width: 200px;
    height: 80px;
    background: radial-gradient(ellipse, rgba(74,222,128,0.15) 0%, transparent 70%);
    pointer-events: none;
  }

  @media (max-width: 768px) {
    .phones-wrap { gap: 12px; }
    .phone-screen { width: 160px; height: 320px; border-radius: 28px; }
    .phone-center .phone-screen { width: 180px; height: 360px; }
    .phone-left  { transform: rotate(-4deg) translateX(10px); }
    .phone-right { transform: rotate(4deg)  translateX(-10px); }
  }


  /* ── LEADERBOARD ── */
  .leaderboard-wrap {
    max-width: 680px;
    margin: 0 auto;
  }

  .leaderboard-row {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 16px 24px;
    border-radius: 16px;
    margin-bottom: 8px;
    border: 1px solid var(--border);
    background: rgba(255,255,255,0.02);
    transition: all 0.2s;
    position: relative;
    overflow: hidden;
  }

  .leaderboard-row:hover {
    border-color: rgba(74,222,128,0.2);
    background: rgba(74,222,128,0.03);
    transform: translateX(4px);
  }

  .leaderboard-row.rank-1 {
    border-color: rgba(251,191,36,0.3);
    background: rgba(251,191,36,0.04);
  }

  .leaderboard-row.rank-2 {
    border-color: rgba(148,163,184,0.25);
    background: rgba(148,163,184,0.03);
  }

  .leaderboard-row.rank-3 {
    border-color: rgba(251,146,60,0.25);
    background: rgba(251,146,60,0.03);
  }

  .lb-rank {
    font-family: 'Syne', sans-serif;
    font-weight: 800;
    font-size: 20px;
    width: 32px;
    text-align: center;
    flex-shrink: 0;
    letter-spacing: -0.02em;
  }

  .lb-medal {
    font-size: 22px;
    width: 32px;
    text-align: center;
    flex-shrink: 0;
  }

  .lb-avatar {
    width: 42px;
    height: 42px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Syne', sans-serif;
    font-weight: 800;
    font-size: 16px;
    color: white;
    flex-shrink: 0;
  }

  .lb-info { flex: 1; min-width: 0; }

  .lb-name {
    font-weight: 600;
    font-size: 15px;
    color: white;
    margin-bottom: 3px;
  }

  .lb-meta {
    font-size: 12px;
    color: var(--muted);
    display: flex;
    align-items: center;
    gap: 8px;
  }

  .lb-badge {
    font-size: 10px;
    font-weight: 700;
    padding: 2px 8px;
    border-radius: 100px;
    text-transform: uppercase;
    letter-spacing: 0.06em;
  }

  .lb-points {
    font-family: 'Syne', sans-serif;
    font-weight: 800;
    font-size: 22px;
    letter-spacing: -0.02em;
    flex-shrink: 0;
  }

  .lb-pts-label {
    font-size: 10px;
    color: var(--muted);
    font-weight: 400;
    margin-left: 2px;
  }

  .lb-bar {
    position: absolute;
    left: 0; top: 0; bottom: 0;
    border-radius: 16px 0 0 16px;
    opacity: 0.06;
    transition: width 1s ease;
  }
/* ── HAMBURGER NAV ── */
.nav-hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 40px;
  height: 40px;
  background: none;
  border: 1px solid var(--border);
  border-radius: 10px;
  cursor: pointer;
  padding: 8px;
  transition: border-color 0.2s;
}
.nav-hamburger:hover { border-color: rgba(74,222,128,0.3); }
.nav-hamburger span {
  display: block;
  width: 100%;
  height: 2px;
  background: white;
  border-radius: 2px;
  transition: all 0.3s;
  transform-origin: center;
}
.nav-hamburger.active span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-hamburger.active span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.nav-hamburger.active span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

@media (max-width: 768px) {
  .nav-hamburger { display: flex; }
  .nav-links {
    position: fixed;
    top: 65px; left: 0; right: 0;
    background: rgba(11,22,40,0.97);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--border);
    flex-direction: column;
    gap: 0;
    padding: 16px 24px 24px;
    transform: translateY(-110%);
    opacity: 0;
    transition: transform 0.3s ease, opacity 0.3s ease;
    z-index: 99;
  }
  .nav-links.open { transform: translateY(0); opacity: 1; }
  .nav-links li { padding: 4px 0; }
  .nav-links a { font-size: 16px; padding: 10px 0; display: block; }
  .nav-cta { display: inline-flex !important; margin-top: 8px; width: fit-content; }
}

/* ── APP SHOWCASE SLIDER ── */
/*.showcase-section { padding: 80px 60px 0; }*/

.showcase-wrap {
  display: grid;
  grid-template-columns: 340px 1fr;
  gap: 80px;
  align-items: center;
  max-width: 1100px;
  margin: 0 auto;
}

.showcase-phone-col {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 28px;
}

.showcase-phone-frame {
  position: relative;
  width: 280px;
  height: 560px;
  border-radius: 44px;
  border: 2px solid rgba(255,255,255,0.12);
  overflow: hidden;
  background: #0B1628;
  box-shadow:
    0 60px 120px rgba(0,0,0,0.6),
    0 0 80px rgba(74,222,128,0.08),
    0 0 0 1px rgba(74,222,128,0.15),
    inset 0 0 0 1px rgba(255,255,255,0.06);
}

.showcase-phone-notch {
  position: absolute;
  top: 12px; left: 50%;
  transform: translateX(-50%);
  width: 90px; height: 26px;
  background: rgba(0,0,0,0.85);
  border-radius: 100px;
  z-index: 3;
}

.showcase-screens { position: relative; width: 100%; height: 100%; }

.showcase-screen {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 0.5s ease;
}
.showcase-screen.active { opacity: 1; }
.showcase-screen img { width: 100%; height: 100%; object-fit: cover; object-position: top; display: block; }

.showcase-phone-glow {
  position: absolute;
  bottom: -40px; left: 50%;
  transform: translateX(-50%);
  width: 220px; height: 80px;
  background: radial-gradient(ellipse, rgba(74,222,128,0.18) 0%, transparent 70%);
  pointer-events: none;
  z-index: -1;
}

.showcase-dots {
  display: flex;
  gap: 10px;
}
.showcase-dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: rgba(255,255,255,0.15);
  border: none;
  cursor: pointer;
  transition: all 0.3s;
  padding: 0;
}
.showcase-dot.active {
  background: var(--green);
  width: 24px;
  border-radius: 4px;
  box-shadow: 0 0 8px rgba(74,222,128,0.5);
}

/* Content slides */
.showcase-content-col { position: relative; }

.showcase-slide {
  display: none;
  opacity: 0;
  transform: translateY(16px);
  transition: opacity 0.4s ease, transform 0.4s ease;
}
.showcase-slide.active {
  display: block;
  opacity: 1;
  transform: translateY(0);
  animation: fadeUp 0.4s ease both;
}

.showcase-step-badge {
  display: inline-flex;
  padding: 5px 14px;
  border-radius: 100px;
  border: 1px solid rgba(74,222,128,0.25);
  background: rgba(74,222,128,0.05);
  font-size: 11px;
  font-weight: 700;
  color: var(--green);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 24px;
}

.showcase-title {
  font-family: 'Syne', sans-serif;
  font-weight: 800;
  font-size: clamp(28px, 3vw, 44px);
  letter-spacing: -0.03em;
  line-height: 1.1;
  margin-bottom: 20px;
}
.showcase-title .accent { color: var(--green); }

.showcase-desc {
  font-size: 16px;
  color: var(--muted);
  line-height: 1.7;
  font-weight: 300;
  margin-bottom: 32px;
  max-width: 480px;
}

.showcase-points {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 40px;
}
.showcase-points li {
  font-size: 15px;
  color: rgba(255,255,255,0.7);
  font-weight: 400;
  display: flex;
  align-items: center;
  gap: 10px;
}

.showcase-nav {
  display: flex;
  gap: 12px;
}
.showcase-arrow {
  width: 44px; height: 44px;
  border-radius: 12px;
  border: 1px solid var(--border);
  background: rgba(255,255,255,0.03);
  color: white;
  cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  transition: all 0.2s;
}
.showcase-arrow:hover {
  border-color: rgba(74,222,128,0.4);
  background: rgba(74,222,128,0.06);
  color: var(--green);
}

@media (max-width: 900px) {
  /* .showcase-section { padding: 80px 24px 0; } */
  .showcase-wrap { grid-template-columns: 1fr; gap: 48px; justify-items: center; }
  .showcase-content-col { text-align: center; }
  .showcase-points { align-items: center; }
  .showcase-nav { justify-content: center; }
  .showcase-step-badge { margin: 0 auto 24px; display: flex; width: fit-content; }
}

/* ── SCHOOL PILOT BANNER ── */
.pilot-banner {
  position: relative;
  z-index: 1;
  padding: 0 60px;
  margin: 60px 0;
}
.pilot-banner-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 20px 32px;
  border-radius: 16px;
  background: rgba(56,189,248,0.05);
  border: 1px solid rgba(56,189,248,0.2);
}
.pilot-icon { font-size: 28px; flex-shrink: 0; }
.pilot-text { flex: 1; }
.pilot-label {
  font-size: 10px;
  font-weight: 700;
  color: var(--sky);
  text-transform: uppercase;
  letter-spacing: 0.12em;
  margin-bottom: 4px;
}
.pilot-name {
  font-size: 14px;
  font-weight: 500;
  color: rgba(255,255,255,0.7);
}
.pilot-cta {
  text-decoration: none;
  font-size: 13px;
  font-weight: 700;
  color: var(--sky);
  white-space: nowrap;
  border: 1px solid rgba(56,189,248,0.3);
  padding: 8px 18px;
  border-radius: 8px;
  background: rgba(56,189,248,0.06);
  transition: all 0.2s;
  flex-shrink: 0;
}
.pilot-cta:hover { background: rgba(56,189,248,0.12); }

@media (max-width: 768px) {
  .pilot-banner { padding: 0 24px; }
  .pilot-banner-inner { flex-wrap: wrap; gap: 12px; }
  .pilot-cta { width: 100%; text-align: center; }
}

/* ── SCHOOL AUDIENCE CARD ── */
.audience-card--school {
  border-color: rgba(74,222,128,0.2) !important;
  background: rgba(74,222,128,0.03) !important;
  position: relative;
}
.audience-card--school::before {
  content: 'PILOT';
  position: absolute;
  top: 20px; right: 20px;
  font-size: 9px;
  font-weight: 800;
  letter-spacing: 0.15em;
  color: var(--green);
  background: rgba(74,222,128,0.1);
  border: 1px solid rgba(74,222,128,0.25);
  padding: 3px 8px;
  border-radius: 100px;
}
.school-pilot-tag {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 11px;
  font-weight: 600;
  color: var(--sky);
  background: rgba(56,189,248,0.08);
  border: 1px solid rgba(56,189,248,0.2);
  border-radius: 8px;
  padding: 5px 10px;
  margin-bottom: 12px;
}

/* ── APP STORE BUTTONS ── */
.app-store-btn {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 14px 28px;
  border-radius: 16px;
  border: 1px solid rgba(255,255,255,0.12);
  background: rgba(255,255,255,0.04);
  text-decoration: none;
  transition: all 0.2s;
}
.app-store-btn:hover {
  border-color: rgba(74,222,128,0.3);
  background: rgba(74,222,128,0.05);
  transform: translateY(-2px);
}
/* ── HAMBURGER NAV ── */
/* .nav-hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 40px; height: 40px;
  background: none;
  border: 1px solid var(--border);
  border-radius: 10px;
  cursor: pointer;
  padding: 8px;
  transition: border-color 0.2s;
} */
.nav-hamburger:hover { border-color: rgba(74,222,128,0.3); }
.nav-hamburger span {
  display: block; width: 100%; height: 2px;
  background: white; border-radius: 2px;
  transition: all 0.3s; transform-origin: center;
}
.nav-hamburger.active span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-hamburger.active span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.nav-hamburger.active span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

@media (max-width: 768px) {
  .nav-hamburger { display: flex; }
  .nav-links {
    position: fixed;
    top: 65px; left: 0; right: 0;
    background: rgba(11,22,40,0.97);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--border);
    flex-direction: column;
    gap: 0;
    padding: 16px 24px 24px;
    transform: translateY(-110%);
    opacity: 0;
    transition: transform 0.3s ease, opacity 0.3s ease;
    z-index: 99;
  }
  .nav-links.open { transform: translateY(0); opacity: 1; }
  .nav-links li { padding: 4px 0; }
  .nav-links a { font-size: 16px; padding: 10px; display: block; }
  .nav-cta { display: inline-flex !important; margin-top: 8px; width: fit-content; }
}

/* ── HERO + SHOWCASE MERGED ── */
.hero--showcase {
  padding-bottom: 0;
  min-height: auto;
  justify-content: flex-start;
  gap: 0;
}
.hero-text-block {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 0px 60px 50px;
  width: 100%;
}
.hero--showcase h1 {
  font-size: clamp(40px, 5.5vw, 60px);
  margin-bottom: 20px;
}
.hero--showcase .hero-sub {
  font-size: clamp(16px, 1.8vw, 20px);
}
.hero-showcase-wrap {
  width: 100%;
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 60px;
}
.hero--showcase .hero-stats {
  width: 100%;
  max-width: 900px;
  margin: 60px auto 0;
  padding: 40px 60px;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

/* ── APP SHOWCASE SLIDER ── */
.showcase-wrap {
  display: grid;
  grid-template-columns: 300px 1fr;
  gap: 72px;
  align-items: center;
}
.showcase-phone-col {
  display: flex; flex-direction: column;
  align-items: center; gap: 28px;
}
.showcase-phone-frame {
  position: relative;
  width: 280px; height: 560px;
  border-radius: 44px;
  border: 2px solid rgba(255,255,255,0.12);
  overflow: hidden;
  background: #0B1628;
  box-shadow:
    0 60px 120px rgba(0,0,0,0.6),
    0 0 80px rgba(74,222,128,0.08),
    0 0 0 1px rgba(74,222,128,0.15),
    inset 0 0 0 1px rgba(255,255,255,0.06);
}
.showcase-phone-notch {
  position: absolute; top: 12px; left: 50%;
  transform: translateX(-50%);
  width: 90px; height: 26px;
  background: rgba(0,0,0,0.85);
  border-radius: 100px; z-index: 3;
}
.showcase-screens { position: relative; width: 100%; height: 100%; }
.showcase-screen {
  position: absolute; inset: 0;
  opacity: 0; transition: opacity 0.5s ease;
}
.showcase-screen.active { opacity: 1; }
.showcase-screen img {
  width: 100%; height: 100%;
  object-fit: cover; object-position: top; display: block;
}
.showcase-phone-glow {
  position: absolute; bottom: -40px; left: 50%;
  transform: translateX(-50%);
  width: 220px; height: 80px;
  background: radial-gradient(ellipse, rgba(74,222,128,0.18) 0%, transparent 70%);
  pointer-events: none; z-index: -1;
}
.showcase-dots { display: flex; gap: 10px; }
.showcase-dot {
  width: 8px; height: 8px; border-radius: 50%;
  background: rgba(255,255,255,0.15);
  border: none; cursor: pointer;
  transition: all 0.3s; padding: 0;
}
.showcase-dot.active {
  background: var(--green); width: 24px;
  border-radius: 4px; box-shadow: 0 0 8px rgba(74,222,128,0.5);
}
.showcase-content-col { position: relative; }
.showcase-slide {
  display: none; opacity: 0;
  transform: translateY(16px);
}
.showcase-slide.active {
  display: block; opacity: 1; transform: translateY(0);
  animation: fadeUp 0.4s ease both;
}
.showcase-step-badge {
  display: inline-flex;
  padding: 5px 14px; border-radius: 100px;
  border: 1px solid rgba(74,222,128,0.25);
  background: rgba(74,222,128,0.05);
  font-size: 11px; font-weight: 700;
  color: var(--green); letter-spacing: 0.1em;
  text-transform: uppercase; margin-bottom: 24px;
}
.showcase-title {
  font-family: 'Syne', sans-serif; font-weight: 800;
  font-size: clamp(24px, 3vw, 32px);
  letter-spacing: -0.03em; line-height: 1.1;
  margin-bottom: 20px;
}
.showcase-title .accent { color: var(--green); }
.showcase-desc {
  font-size: 16px; color: var(--muted);
  line-height: 1.7; font-weight: 300;
  margin-bottom: 32px; max-width: 480px;
}
.showcase-points {
  list-style: none; display: flex;
  flex-direction: column; gap: 12px; margin-bottom: 40px;
}
.showcase-points li {
  font-size: 15px; color: rgba(255,255,255,0.7);
  font-weight: 400;
}
.showcase-nav { display: flex; gap: 12px; }
.showcase-arrow {
  width: 44px; height: 44px; border-radius: 12px;
  border: 1px solid var(--border);
  background: rgba(255,255,255,0.03);
  color: white; cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  transition: all 0.2s;
}
.showcase-arrow:hover {
  border-color: rgba(74,222,128,0.4);
  background: rgba(74,222,128,0.06);
  color: var(--green);
}

/* ── SCHOOL PILOT BANNER ── */
.pilot-banner { position: relative; z-index: 1; padding: 0 60px; margin: 60px 0; }
.pilot-banner-inner {
  max-width: 1100px; margin: 0 auto;
  display: flex; align-items: center; gap: 20px;
  padding: 20px 32px; border-radius: 16px;
  background: rgba(56,189,248,0.05);
  border: 1px solid rgba(56,189,248,0.2);
}
.pilot-icon { font-size: 28px; flex-shrink: 0; }
.pilot-text { flex: 1; }
.pilot-label {
  font-size: 10px; font-weight: 700; color: var(--sky);
  text-transform: uppercase; letter-spacing: 0.12em; margin-bottom: 4px;
}
.pilot-name { font-size: 14px; font-weight: 500; color: rgba(255,255,255,0.7); }
.pilot-cta {
  text-decoration: none; font-size: 13px; font-weight: 700;
  color: var(--sky); white-space: nowrap;
  border: 1px solid rgba(56,189,248,0.3); padding: 8px 18px;
  border-radius: 8px; background: rgba(56,189,248,0.06);
  transition: all 0.2s; flex-shrink: 0;
}
.pilot-cta:hover { background: rgba(56,189,248,0.12); }

/* ── SCHOOL AUDIENCE CARD ── */
.audience-card--school {
  border-color: rgba(74,222,128,0.2) !important;
  background: rgba(74,222,128,0.03) !important;
  position: relative;
}
.audience-card--school::before {
  content: 'PILOT';
  position: absolute; top: 20px; right: 20px;
  font-size: 9px; font-weight: 800; letter-spacing: 0.15em;
  color: var(--green); background: rgba(74,222,128,0.1);
  border: 1px solid rgba(74,222,128,0.25);
  padding: 3px 8px; border-radius: 100px;
}
.school-pilot-tag {
  display: inline-flex; align-items: center; gap: 6px;
  font-size: 11px; font-weight: 600; color: var(--sky);
  background: rgba(56,189,248,0.08);
  border: 1px solid rgba(56,189,248,0.2);
  border-radius: 8px; padding: 5px 10px; margin-bottom: 12px;
}

/* ── APP STORE BUTTONS ── */
.app-store-btn {
  display: flex; align-items: center; gap: 12px;
  padding: 14px 28px; border-radius: 16px;
  border: 1px solid rgba(255,255,255,0.12);
  background: rgba(255,255,255,0.04);
  text-decoration: none; transition: all 0.2s;
}
.app-store-btn:hover {
  border-color: rgba(74,222,128,0.3);
  background: rgba(74,222,128,0.05);
  transform: translateY(-2px);
}

/* ── MOBILE RESPONSIVE ADDITIONS ── */
@media (max-width: 900px) {
  .hero-text-block { padding: 0px 24px 40px; }
  .hero-showcase-wrap { padding: 0 24px; }
  .hero--showcase .hero-stats { padding: 32px 24px; gap: 16px; }
  .showcase-wrap { grid-template-columns: 1fr; gap: 48px; justify-items: center; }
  .showcase-content-col { text-align: center; }
  .showcase-points { align-items: center; }
  .showcase-nav { justify-content: center; }
  .pilot-banner { padding: 0 24px; }
  .pilot-banner-inner { flex-wrap: wrap; gap: 12px; }
  .pilot-cta { width: 100%; text-align: center; }
}