/* Google Fonts */
@import url('https://fonts.googleapis.com/css2?family=Syne:wght@400;500;600;700;800&family=DM+Sans:ital,wght@0,300;0,400;0,500;1,300&display=swap');

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

/* Variables */
:root {
    --black: #080808;
    --white: #f5f2ed;
    --cream: #ede9e2;
    --accent: #c8f562;
    --accent-dark: #a8d442;
    --mid: #5a5a52;
    --subtle: #2a2a26;
}

/* Base */
html {
    scroll-behavior: smooth;
}

body {
    background: var(--black);
    color: var(--white);
    font-family: 'DM Sans', sans-serif;
    font-weight: 300;
    overflow-x: hidden;
    cursor: none;
}

/* Typography scale */
h1, h2, h3 {
    font-family: 'Syne', sans-serif;
    letter-spacing: -0.02em;
    line-height: 1.05;
}

p{
    line-height: 1.7;
}

a {
    text-decoration: none;
    color:inherit;
}

/* Utility */
.accent { color: var(--accent); }
.muted { color: rgba(245,242,237,0.5); }
.section-tag {
    font-size: 0.72rem;
    font-weight: 500;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--accent);
    margin-bottom: 1.5rem;
    display: flex;
    align-items: center;
    gap: 0.6rem;
}
.section-tag::before {
    content: '';
    display: inline-block;
    width: 20px;
    height: 1px;
    background: var(--accent);
}

/* Navigation */
nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 100;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1.5rem 3rem;
    background: linear-gradient(to bottom, rgba(8,8,8,0.95), transparent);
}

.nav-logo {
    font-family: 'Syne', sans-serif;
    font-weight: 800;
    font-size: 1.3rem;
    letter-spacing: -0.02em;
    color: var(--white);
}

.nav-logo span {
    color: var(--accent);
}

.nav-cta {
    font-size: 0.8rem;
    font-weight: 500;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--black);
    background: var(--accent);
    padding: 0.6rem 1.4rem;
    border-radius: 100px;
    transition: background 0.2s;
}

.nav-cta:hover {
    background: var(--accent-dark);
}

/* Nav mobile */
@media (max-width: 768px) {
    nav {
        padding: 1.2rem 1.5rem;
    }
}

/* Hero */
.hero {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 8rem 3rem 4rem;
    position: relative;
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse 60% 50% at 70% 40%, rgba(200,245,98,0.07) 0%, transparent 70%),
        radial-gradient(ellipse 40% 60% at 20% 80%, rgba(200,245,98,0.04) 0%, transparent 60%);
    pointer-events: none;
}

.hero-grid {
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(255,255,255,0.025) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255,255,255,0.025) 1px, transparent 1px);
    background-size: 60px 60px;
    pointer-events: none;
    mask-image: radial-gradient(ellipse 80% 80% at 50% 50%, black, transparent);
}

.hero-tag {
    font-size: 0.72rem;
    font-weight: 500;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--accent);
    margin-bottom: 2rem;
    opacity: 0;
    animation: fadeUp 0.8s ease 0.2s forwards;
    display: flex;
    align-items: center;
    gap: 0.6rem
}

.hero-tag::before {
    content: '';
    display: inline-block;
    width: 24px;
    height: 1px;
    background: var(--accent);
}

.hero-headline {
    font-family: 'Syne', sans-serif;
    font-weight: 800;
    font-size: clamp(3.2rem, 8vw, 7.5rem);
    line-height: 0.95;
    max-width: 900px;
    opacity: 0;
    animation: fadeUp 0.8s ease 0.4s forwards;
}

.hero-headline em {
    font-style: normal;
    color: transparent;
    -webkit-text-stroke: 1px rgba(245,242,237,0.85);
}

.hero-headline .accent-word {
    color: var(--accent);
    display: block;
}

.hero-sub {
    margin-top: 2.5rem;
    font-size: clamp(1rem, 1.8vw, 1.15rem);
    font-weight: 300;
    color: rgba(245,242,237,0.6);
    max-width: 480px;
    line-height: 1.7;
    opacity: 0;
    animation: fadeUp 0.8s ease 0.6s forwards;
}

/*  Waitlist form  */
.hero-form {
    margin-top: 3rem;
    display: flex;
    gap: 0.75rem;
    flex-wrap: wrap;
    opacity: 0;
    animation: fadeUp 0.8s ease 0.8s forwards;
}

.hero-form input {
    flex: 1;
    min-width: 240px;
    background: rgba(245,242,237,0.06);
    border: 1px solid rgba(245,242,237,0.12);
    color: var(--white);
    font-family: 'DM Sans', sans-serif;
    font-size: 0.95rem;
    padding: 1rem 1.4rem;
    border-radius: 100px;
    outline: none;
    transition: border-color 0.2s, background 0.2s;
}

.hero-form input::placeholder {
    color: rgba(245,242,237,0.3);
}

.hero-form input:focus {
    border-color: rgba(200,245,98,0.5);
    background:rgba(245,242,237,0.09);
}

.hero-form button {
    background: var(--accent);
    color: var(--black);
    font-family: 'DM Sans', sans-serif;
    font-size: 0.9rem;
    font-weight: 500;
    letter-spacing: 0.04em;
    padding: 1rem 2rem;
    border: none;
    border-radius: 100px;
    cursor: none;
    transition: background 0.2s, transform 0.15s;
    white-space: nowrap;
}

.hero-form button:hover {
    background: var(--accent-dark);
    transform: translateY(-1px);
}

.hero-form button:active {
    transform: translateY(0);
}

.hero-note {
    margin-top: 1rem;
    font-size: 0.78rem;
    color: rgba(245,242,237,0.3);
}

.success-msg {
    display: none;
    margin-top: 1rem;
    font-size: 0.9rem;
    color: var(--accent);
    font-weight: 500;
}

/* Waitlist count */
.waitlist-count {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.82rem;
    color: rgba(245,242,237,0.4);
    margin-top: 1.2rem;
}

.count-dots {
    display: flex;
    gap: 3px;
}

.count-dot {
    width: 22px;
    height: 22px;
    border-radius: 50%;
    background: var(--subtle);
    border: 2px solid var(--black);
    margin-left: -6px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.55rem;
}

.count-dot:first-child {
    margin-left: 0;
}

/* Hero mobile */
@media (max-width: 768px) {
    .hero {
        padding-left:  1.5rem;
        padding-right: 1.5rem;
    }

    .hero-form {
        flex-direction: column;
        align-items: stretch;
    }

    .hero-form input,
    .hero-form select,
    .hero-form button {
        width: 100%;
        min-width: unset;
        flex: none;
    }

    .hero-form select#hero-frequency {
        min-width: unset;
    }
}

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

/* Stats */
.stats {
    padding: 2rem 3rem;
    border-top: 1px solid rgba(245, 242, 237, 0.07);
    border-bottom: 1px solid rgba(245, 242, 237, 0.07);
    display: flex;
    gap: 3rem;
    flex-wrap: wrap;
}

.stat-item {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.stat-num {
    font-family: 'Syne', sans-serif;
    font-size: 1.8rem;
    font-weight: 800;
    color: var(--white);
    letter-spacing: -0.02em;
}

.stat-num span {
    color: var(--accent);
}

.stat-label {
    font-size: 0.78rem;
    color: rgba(245, 242, 237, 0.4);
    letter-spacing: 0.06em;
    text-transform: uppercase;
}

/* Stats mobile */
@media (max-width: 768px) {
    .stats {
        padding: 2rem 1.5rem;
        gap: 2rem;
    }
}

/* Problem */
.problem {
    padding: 6rem 3rem;
    background: var(--subtle);
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 5rem;
    align-items: center;
}

.problem-headline {
    font-family: 'Syne', sans-serif;
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 700;
    line-height: 1.1;
}

.problem-body {
    font-size: 1rem;
    line-height: 1.8;
    color: rgba(245,242,237,0.6);
    margin-top: 1.5rem;
}

.problem-cards {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.problem-card {
    background: rgba(245,242,237,0.04);
    border: 1px solid rgba(245,242,237,0.07);
    border-radius: 16px;
    padding: 1.4rem 1.6rem;
    display: flex;
    gap: 1rem;
    align-items: flex-start;
    transition: border-color 0.2s, background 0.2s;
}

.problem-card:hover {
    border-color: rgba(200,245,98,0.2);
    background: rgba(200,245,98,0.03);
}

.card-icon {
    font-size: 1.4rem;
    flex-shrink: 0;
    margin-top: 0.1rem;
}

.card-title {
    font-family: 'Syne', sans-serif;
    font-weight: 600;
    font-size: 0.95rem;
    margin-bottom: 0.3rem;
}

.card-desc {
    font-size: 0.85rem;
    color: rgba(245,242,237,0.5);
    line-height: 1.6;
}

/* Problem mobile */
@media (max-width: 768px) {
    .problem {
        grid-template-columns: 1fr;
        gap: 3rem;
        padding-left: 1.5rem;
        padding-right: 1.5rem;
    }
}

/* How it works */
.how-section {
    padding: 6rem 3rem;
}

.how {
    max-width: 1000px;
    margin: 0 auto;
}

.how-headline {
    font-family: 'Syne', sans-serif;
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 700;
    margin-bottom: 4rem;
    max-width: 520px;
}

.steps {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1px;
    background: rgba(245,242,237,0.07);
    border-radius: 20px;
    overflow: hidden;
}

.step {
    background: var(--black);
    padding: 2.5rem 2rem;
    transition: background 0.2s
}

.step:hover {
    background: var(--subtle);
}

.step-num {
    font-family: 'Syne', sans-serif;
    font-size: 3.5rem;
    font-weight: 800;
    color: rgba(200,245,98,0.12);
    line-height: 1;
    margin-bottom: 1.5rem;
    letter-spacing: -0.04em;
}

.step-title {
    font-family: 'Syne', sans-serif;
    font-weight: 600;
    font-size: 1.1rem;
    margin-bottom: 0.75rem;
}

.step-desc {
    font-size: 0.875rem;
    color: rgba(245,242,237,0.5);
    line-height: 1.7;
}

/* How it works mobile */
@media (max-width: 768px) {
    .how-section {
        padding-left: 1.5rem;
        padding-right: 1.5rem;
    }

    .steps {
        grid-template-columns: 1fr;
    }
}

/* Who it's for */
.who {
    padding: 6rem 3rem;
    background: var(--subtle);
}

.who-inner {
    max-width: 1000px;
    margin: 0 auto;
}

.who-headline {
    font-family: 'Syne', sans-serif;
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 700;
    margin-bottom: 3rem;
}

.who-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
}

.who-card {
    border: 1px solid rgba(245,242,237,0.08);
    border-radius: 16px;
    padding: 1.6rem;
    display: flex;
    align-items: center;
    gap: 1rem;
    transition: border-color 0.2s;
}

.who-card:hover {
    border-color: rgba(200,245,98,0.3);
}

.who-emoji {
    font-size: 1.8rem;
}

.who-text {
    font-size: 0.95rem;
    font-weight: 400;
    color: rgba(245, 242, 237, 0.75);
}

.who-text strong {
    display: block;
    color: var(--white);
    font-family: 'Syne', sans-serif;
    font-weight: 600;
    margin-bottom: 0.2rem;
}

/* Who mobile */
@media (max-width: 600px) {
    .who {
        padding-left: 1.5rem;
        padding-right: 1.5rem;
    }

    .who-grid {
        grid-template-columns: 1fr;
    }
}

/* Bottom CTA */
.cta-bottom {
    text-align: center;
    padding: 8rem 3rem;
    position: relative;
    overflow: hidden;
}

.cta-bottom-bg {
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse 50% 60% at 50% 50%, rgba(200, 245, 98, 0.08) 0%, transparent 70%);
    pointer-events: none;
}

.cta-bottom-headline {
    font-family: 'Syne', sans-serif;
    font-size: clamp(2.5rem, 6vw, 5rem);
    font-weight: 800;
    letter-spacing: -0.03em;
    line-height: 1;
    margin-bottom: 1.5rem;
    position: relative;
}

.cta-bottom-sub {
    font-size: 1rem;
    color: rgba(245, 242, 237, 0.5);
    max-width: 400px;
    margin: 0 auto 2.5rem;
    line-height: 1.7;
    position: relative;
}

.cta-bottom-form {
    display: flex;
    gap: 0.75rem;
    justify-content: center;
    flex-wrap: wrap;
    position: relative;
}

.cta-bottom-form input {
    min-width: 260px;
    background: rgba(245, 242, 237, 0.06);
    border: 1px solid rgba(245, 242, 237, 0.12);
    color: var(--white);
    font-family: 'DM Sans', sans-serif;
    font-size: 0.95rem;
    padding: 1rem 1.4rem;
    border-radius: 100px;
    outline: none;
    transition: border-color 0.2s;
}

.cta-bottom-form input::placeholder {
    color: rgba(245, 242, 237, 0.3);
}

.cta-bottom-form input:focus {
    border-color: rgba(200, 245, 98, 0.5);
}

.cta-bottom-form button{
    background: var(--accent);
    color: var(--black);
    font-family: 'DM Sans', sans-serif;
    font-size: 0.9rem;
    font-weight: 500;
    padding: 1rem 2rem;
    border: none;
    border-radius: 100px;
    cursor: none;
    transition: background 0.2s, transform 0.15s;
}

.cta-bottom-form button:hover {
    background: var(--accent-dark);
    transform: translateY(-1px);
}

/* Footer */
footer {
    border-top: 1px solid rgba(245, 242, 237, 0.07);
    padding: 2rem 3rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
}

.footer-logo {
    font-family: 'Syne', sans-serif;
    font-weight: 800;
    font-size: 1.1rem;
    color: var(--white);
}

.footer-logo span {
    color: var(--accent);
}

.footer-copy {
    font-size: 0.78rem;
    color: rgba(245, 242, 237, 0.25);
}

/* CTA bottom mobile */
@media (max-width: 768px) {
    .cta-bottom {
        padding-left: 1.5rem;
        padding-right: 1.5rem;
    }

    .cta-bottom-form {
        flex-direction: column;
        align-items: stretch;
        max-width:400px;
        margin-left: auto;
        margin-right: auto;
    }

    .cta-bottom-form input,
    .cta-bottom-form button {
        width: 100%;
        min-width: unset;
    }

    footer {
        padding: 2rem 1.5rem;
        flex-direction: column;
        align-items: flex-start;
    }
}

/* Form select */
.hero-form select {
    flex: 1;
    min-width: 180px;
    background: rgba(245,242,237,0.06);
    border: 1px solid rgba(245,242,237,0.12);
    color: var(--white);
    font-family: 'DM Sans', sans-serif;
    font-size: 0.95rem;
    padding: 1rem 1.4rem;
    border-radius: 100px;
    outline: none;
    cursor: none;
    appearance: none;
    transition: border-color 0.2s, background 0.2s;
}

.hero-form select:focus {
    border-color: rgba(200, 245, 98, 0.5);
    background: rgba(245,242,237,0.09);
}

.hero-form select option{
    background:#1a1a16;
    color: var(--white);
}

/* Frequency select */
.hero-form select#hero-frequency {
    flex: 1;
    min-width: 220px;
}

/* GDPR consent */
.gdpr-label {
    display: flex;
    align-items: flex-start;
    gap: 0.6rem;
    font-size: 0.78rem;
    color: rgba(245, 242, 247, 0.4);
    max-width: 480px;
    cursor: pointer;
    line-height: 1.5;
}

.gdpr-label input[type="checkbox"] {
    width: 14px;
    height: 14px;
    min-width: 14px;
    margin-top: 0.15rem;
    accent-color: var(--accent);
    cursor: pointer;
}