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

  :root {
    --bg: #0A0A0A;
    --surface: #141414;
    --surface-2: #1C1C1C;
    --border: rgba(255,255,255,0.08);
    --border-bright: rgba(255,255,255,0.15);
    --cream: #F0EBE0;
    --cream-dim: rgba(240,235,224,0.55);
    --cream-faint: rgba(240,235,224,0.2);
    --green: #00E87A;
    --green-dim: rgba(0,232,122,0.12);
    --green-mid: rgba(0,232,122,0.25);
    --serif: 'Instrument Serif', Georgia, serif;
    --sans: 'DM Sans', sans-serif;
  }

  html { scroll-behavior: smooth; }

  body {
    background: var(--bg);
    color: var(--cream);
    font-family: var(--sans);
    font-weight: 300;
    font-size: 16px;
    line-height: 1.7;
    overflow-x: hidden;
    cursor: none;
  }

  /* Custom cursor */
  .cursor {
    width: 10px; height: 10px;
    background: var(--green);
    border-radius: 50%;
    position: fixed;
    pointer-events: none;
    z-index: 9999;
    transform: translate(-50%, -50%);
    transition: transform 0.08s ease, width 0.2s ease, height 0.2s ease, opacity 0.2s;
  }
  .cursor-ring {
    width: 36px; height: 36px;
    border: 1px solid rgba(0,232,122,0.4);
    border-radius: 50%;
    position: fixed;
    pointer-events: none;
    z-index: 9998;
    transform: translate(-50%, -50%);
    transition: transform 0.18s ease, width 0.25s ease, height 0.25s ease, border-color 0.2s;
  }
  body:hover .cursor { opacity: 1; }

  /* Nav */
  nav {
    position: fixed; top: 0; left: 0; right: 0;
    padding: 1.2rem 2.5rem;
    display: flex; align-items: center; justify-content: space-between;
    z-index: 100;
    border-bottom: 1px solid transparent;
    transition: border-color 0.3s, background 0.3s;
  }
  nav.scrolled {
    background: rgba(10,10,10,0.92);
    backdrop-filter: blur(12px);
    border-color: var(--border);
  }
  .nav-logo {
    font-family: var(--serif);
    font-size: 1.4rem;
    color: var(--cream);
    letter-spacing: -0.01em;
  }
  .nav-logo span { color: var(--green); }
  .nav-cta {
    background: var(--green);
    color: #0A0A0A;
    font-family: var(--sans);
    font-size: 13px;
    font-weight: 500;
    padding: 9px 20px;
    border-radius: 40px;
    border: none;
    cursor: none;
    letter-spacing: 0.01em;
    transition: opacity 0.2s, transform 0.15s;
  }
  .nav-cta:hover { opacity: 0.88; transform: scale(1.03); }

  /* Hero */
  .hero {
    min-height: 100vh;
    display: flex; flex-direction: column;
    align-items: center; justify-content: center;
    text-align: center;
    padding: 8rem 2rem 4rem;
    position: relative;
    overflow: hidden;
  }
  .hero-glow {
    position: absolute;
    width: 600px; height: 600px;
    background: radial-gradient(circle, rgba(0,232,122,0.08) 0%, transparent 70%);
    top: 50%; left: 50%;
    transform: translate(-50%, -50%);
    pointer-events: none;
  }
  .hero-grid {
    position: absolute; inset: 0;
    background-image: linear-gradient(var(--border) 1px, transparent 1px),
                      linear-gradient(90deg, var(--border) 1px, transparent 1px);
    background-size: 60px 60px;
    mask-image: radial-gradient(ellipse 80% 60% at 50% 50%, black 0%, transparent 100%);
    pointer-events: none;
  }
  .hero-badge {
    display: inline-flex; align-items: center; gap: 7px;
    background: var(--green-dim);
    border: 1px solid rgba(0,232,122,0.25);
    border-radius: 40px;
    padding: 6px 16px;
    font-size: 12px;
    color: var(--green);
    letter-spacing: 0.06em;
    text-transform: uppercase;
    font-weight: 500;
    margin-bottom: 2.2rem;
    animation: fadeUp 0.6s ease both;
  }
  .badge-dot {
    width: 6px; height: 6px;
    background: var(--green);
    border-radius: 50%;
    animation: pulse 2s infinite;
  }
  @keyframes pulse {
    0%, 100% { opacity: 1; transform: scale(1); }
    50% { opacity: 0.5; transform: scale(0.8); }
  }

  .hero h1 {
    font-family: var(--serif);
    font-size: clamp(3.2rem, 8vw, 6.5rem);
    line-height: 1.05;
    letter-spacing: -0.02em;
    max-width: 900px;
    color: var(--cream);
    animation: fadeUp 0.7s 0.1s ease both;
  }
  .hero h1 em {
    font-style: italic;
    color: var(--green);
  }
  .hero-sub {
    font-size: clamp(1rem, 2vw, 1.2rem);
    color: var(--cream-dim);
    max-width: 500px;
    margin: 1.6rem auto 2.8rem;
    line-height: 1.65;
    font-weight: 300;
    animation: fadeUp 0.7s 0.2s ease both;
  }
  .hero-form {
    display: flex; gap: 10px;
    flex-wrap: wrap; justify-content: center;
    animation: fadeUp 0.7s 0.3s ease both;
  }
  .hero-input {
    background: var(--surface);
    border: 1px solid var(--border-bright);
    border-radius: 40px;
    padding: 14px 22px;
    font-family: var(--sans);
    font-size: 14px;
    color: var(--cream);
    width: 280px;
    outline: none;
    transition: border-color 0.2s, box-shadow 0.2s;
  }
  .hero-input::placeholder { color: var(--cream-faint); }
  .hero-input:focus {
    border-color: rgba(0,232,122,0.5);
    box-shadow: 0 0 0 3px rgba(0,232,122,0.08);
  }
  .btn-primary {
    background: var(--green);
    color: #0A0A0A;
    font-family: var(--sans);
    font-size: 14px;
    font-weight: 500;
    padding: 14px 28px;
    border-radius: 40px;
    border: none;
    cursor: none;
    transition: opacity 0.2s, transform 0.15s;
  }
  .btn-primary:hover { opacity: 0.88; transform: scale(1.03); }

  .hero-note {
    font-size: 12px;
    color: var(--cream-faint);
    margin-top: 1rem;
    animation: fadeUp 0.7s 0.4s ease both;
  }
  .hero-stats {
    display: flex; gap: 2.5rem;
    margin-top: 4rem;
    justify-content: center;
    flex-wrap: wrap;
    animation: fadeUp 0.7s 0.5s ease both;
  }
  .hero-stat-num {
    font-family: var(--serif);
    font-size: 2rem;
    color: var(--cream);
    line-height: 1;
  }
  .hero-stat-label {
    font-size: 12px;
    color: var(--cream-dim);
    margin-top: 4px;
    letter-spacing: 0.03em;
  }
  .hero-stat-divider {
    width: 1px; background: var(--border-bright);
    align-self: stretch;
  }

  @keyframes fadeUp {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
  }

  /* Section shared */
  section { padding: 7rem 2rem; }
  .container { max-width: 1080px; margin: 0 auto; }
  .section-label {
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    color: var(--green);
    font-weight: 500;
    margin-bottom: 1rem;
  }

  /* Problem */
  .problem { background: var(--surface); }
  .problem-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 5rem;
    align-items: center;
  }
  .problem h2 {
    font-family: var(--serif);
    font-size: clamp(2rem, 4vw, 3.2rem);
    line-height: 1.15;
    letter-spacing: -0.02em;
    color: var(--cream);
    margin-bottom: 1.5rem;
  }
  .problem h2 em { font-style: italic; color: var(--cream-dim); }
  .problem-body { color: var(--cream-dim); font-size: 15px; line-height: 1.8; }
  .problem-body p { margin-bottom: 1rem; }

  .pain-cards { display: flex; flex-direction: column; gap: 12px; }
  .pain-card {
    background: var(--surface-2);
    border: 1px solid var(--border);
    border-radius: 14px;
    padding: 1.1rem 1.3rem;
    display: flex; align-items: flex-start; gap: 14px;
    transition: border-color 0.2s;
  }
  .pain-card:hover { border-color: var(--border-bright); }
  .pain-icon {
    width: 36px; height: 36px;
    border-radius: 10px;
    background: rgba(255,255,255,0.04);
    display: flex; align-items: center; justify-content: center;
    flex-shrink: 0;
    font-size: 16px;
  }
  .pain-title { font-size: 14px; font-weight: 500; color: var(--cream); margin-bottom: 3px; }
  .pain-desc { font-size: 13px; color: var(--cream-dim); line-height: 1.5; }

  /* Features */
  .features h2 {
    font-family: var(--serif);
    font-size: clamp(2rem, 4vw, 3.2rem);
    line-height: 1.1;
    letter-spacing: -0.02em;
    color: var(--cream);
    margin-bottom: 0.8rem;
  }
  .features-sub {
    color: var(--cream-dim); font-size: 15px;
    max-width: 460px;
    margin-bottom: 4rem;
  }
  .features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
  }
  .feat-card {
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: 20px;
    padding: 2rem;
    transition: border-color 0.25s, transform 0.2s;
    position: relative;
    overflow: hidden;
  }
  .feat-card::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--green), transparent);
    opacity: 0;
    transition: opacity 0.3s;
  }
  .feat-card:hover { border-color: var(--border-bright); transform: translateY(-4px); }
  .feat-card:hover::before { opacity: 1; }
  .feat-num {
    font-family: var(--serif);
    font-size: 2.5rem;
    color: var(--green);
    line-height: 1;
    margin-bottom: 1.2rem;
    opacity: 0.6;
  }
  .feat-title { font-size: 17px; font-weight: 500; color: var(--cream); margin-bottom: 0.7rem; }
  .feat-body { font-size: 14px; color: var(--cream-dim); line-height: 1.65; }
  .feat-tag {
    display: inline-block;
    margin-top: 1.2rem;
    font-size: 11px;
    background: var(--green-dim);
    color: var(--green);
    padding: 4px 12px;
    border-radius: 20px;
    letter-spacing: 0.04em;
  }

  /* Social proof ticker */
  .ticker-section {
    background: var(--surface);
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
    padding: 1.3rem 0;
    overflow: hidden;
  }
  .ticker-track {
    display: flex; gap: 3rem;
    animation: scroll 22s linear infinite;
    white-space: nowrap;
  }
  .ticker-item {
    display: flex; align-items: center; gap: 10px;
    font-size: 13px; color: var(--cream-dim);
    flex-shrink: 0;
  }
  .ticker-dot { width: 5px; height: 5px; border-radius: 50%; background: var(--green); }
  @keyframes scroll {
    from { transform: translateX(0); }
    to { transform: translateX(-50%); }
  }

  /* How it works */
  .how { background: var(--bg); }
  .how h2 {
    font-family: var(--serif);
    font-size: clamp(2rem, 4vw, 3.2rem);
    line-height: 1.1;
    letter-spacing: -0.02em;
    margin-bottom: 4rem;
    color: var(--cream);
  }
  .steps { display: flex; flex-direction: column; gap: 0; }
  .step {
    display: grid;
    grid-template-columns: 60px 1fr;
    gap: 2rem;
    padding: 2.5rem 0;
    border-bottom: 1px solid var(--border);
    align-items: start;
  }
  .step:last-child { border-bottom: none; }
  .step-num {
    font-family: var(--serif);
    font-size: 3rem;
    color: var(--cream-faint);
    line-height: 1;
    padding-top: 4px;
  }
  .step-title { font-size: 18px; font-weight: 500; color: var(--cream); margin-bottom: 0.5rem; }
  .step-body { font-size: 14px; color: var(--cream-dim); line-height: 1.7; max-width: 520px; }
  .step-pill {
    display: inline-block;
    margin-top: 0.8rem;
    font-size: 12px;
    border: 1px solid var(--border-bright);
    color: var(--cream-dim);
    padding: 4px 12px;
    border-radius: 20px;
  }

  /* Urgency / Waitlist */
  .waitlist-section {
    background: var(--surface);
    text-align: center;
    padding: 8rem 2rem;
    position: relative;
    overflow: hidden;
  }
  .waitlist-glow {
    position: absolute;
    width: 700px; height: 500px;
    background: radial-gradient(ellipse, rgba(0,232,122,0.07) 0%, transparent 70%);
    top: 50%; left: 50%;
    transform: translate(-50%, -50%);
    pointer-events: none;
  }
  .waitlist-counter-box {
    display: inline-flex; align-items: center; gap: 10px;
    background: var(--surface-2);
    border: 1px solid rgba(0,232,122,0.2);
    border-radius: 40px;
    padding: 8px 20px;
    margin-bottom: 2.5rem;
  }
  .counter-num {
    font-family: var(--serif);
    font-size: 1.4rem;
    color: var(--green);
  }
  .counter-label { font-size: 13px; color: var(--cream-dim); }
  .waitlist-section h2 {
    font-family: var(--serif);
    font-size: clamp(2.5rem, 6vw, 4.5rem);
    line-height: 1.1;
    letter-spacing: -0.02em;
    color: var(--cream);
    max-width: 700px;
    margin: 0 auto 1rem;
  }
  .waitlist-section h2 em { font-style: italic; color: var(--green); }
  .waitlist-sub {
    font-size: 15px;
    color: var(--cream-dim);
    margin-bottom: 2.5rem;
    max-width: 420px;
    margin-left: auto; margin-right: auto;
  }
  .waitlist-perks {
    display: flex; justify-content: center;
    gap: 1.5rem;
    flex-wrap: wrap;
    margin-bottom: 2.5rem;
  }
  .perk {
    display: flex; align-items: center; gap: 7px;
    font-size: 13px; color: var(--cream-dim);
  }
  .perk-check {
    width: 18px; height: 18px;
    border-radius: 50%;
    background: var(--green-dim);
    display: flex; align-items: center; justify-content: center;
    flex-shrink: 0;
  }
  .waitlist-form {
    display: flex; gap: 10px;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 1rem;
  }
  .urgency-bar {
    display: inline-flex; align-items: center; gap: 8px;
    background: rgba(255,160,0,0.08);
    border: 1px solid rgba(255,160,0,0.2);
    border-radius: 8px;
    padding: 10px 20px;
    margin-top: 1.5rem;
    font-size: 13px;
    color: rgba(255,180,50,0.9);
    max-width: 410px;
  }

  /* Footer */
  footer {
    padding: 3rem 2rem;
    border-top: 1px solid var(--border);
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 1rem;
  }
  .footer-logo { font-family: var(--serif); font-size: 1.2rem; color: var(--cream); }
  .footer-logo span { color: var(--green); }
  .footer-links { display: flex; gap: 2rem; }
  .footer-links a { font-size: 13px; color: var(--cream-dim); text-decoration: none; }
  .footer-links a:hover { color: var(--cream); }
  .footer-copy { font-size: 12px; color: var(--cream-faint); }

  /* Toast */
  .toast {
    position: fixed;
    bottom: 2rem; left: 50%;
    transform: translateX(-50%) translateY(100px);
    background: var(--surface-2);
    border: 1px solid rgba(0,232,122,0.3);
    border-radius: 40px;
    padding: 12px 24px;
    font-size: 14px;
    color: var(--cream);
    z-index: 500;
    transition: transform 0.4s cubic-bezier(0.34,1.56,0.64,1);
    display: flex; align-items: center; gap: 8px;
  }
  .toast.show { transform: translateX(-50%) translateY(0); }
  .toast-icon { color: var(--green); font-size: 16px; }

  /* Scroll animations */
  .reveal { opacity: 0; transform: translateY(28px); transition: opacity 0.65s ease, transform 0.65s ease; }
  .reveal.visible { opacity: 1; transform: translateY(0); }
  .reveal-delay-1 { transition-delay: 0.1s; }
  .reveal-delay-2 { transition-delay: 0.2s; }
  .reveal-delay-3 { transition-delay: 0.3s; }

  @media (max-width: 768px) {
    .problem-grid { grid-template-columns: 1fr; gap: 3rem; }
    .features-grid { grid-template-columns: 1fr; }
    .step { grid-template-columns: 40px 1fr; }
    nav { padding: 1rem 1.2rem; }
    footer { flex-direction: column; align-items: flex-start; }
    body { cursor: auto; }
    .cursor, .cursor-ring { display: none; }
  }