:root {
    --ink: #171717;
    --muted: #525252;
    --line: #e5e5e5;
    --soft: #f5f5f5;
    --white: #ffffff;
    --primary: #e100ff;
    --primary-700: color-mix(in srgb, var(--primary) 82%, black);
    --primary-100: color-mix(in srgb, var(--primary) 16%, white);
    --secondary: #ff7b00;
}

* { box-sizing: border-box; }

html {
    scroll-behavior: smooth;
}

html, body {
    margin: 0;
    background: var(--white);
    color: var(--ink);
    font-family: Manrope, ui-sans-serif, system-ui, sans-serif;
    line-height: 1.5;
}

@media (prefers-reduced-motion: reduce) {
    html { scroll-behavior: auto; }
}

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

.inner {
    width: min(72rem, calc(100% - 2rem));
    margin: 0 auto;
}

.nav {
    position: sticky;
    top: 0;
    z-index: 50;
    border-bottom: 1px solid var(--line);
    background: rgba(255, 255, 255, 0.85);
    backdrop-filter: blur(12px);
}

.nav-inner {
    width: min(72rem, calc(100% - 2rem));
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1rem 0;
}

.brand {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-weight: 800;
    letter-spacing: -0.03em;
}

.brand-logo {
    width: 2rem;
    height: 2rem;
    object-fit: contain;
    border-radius: 0.4rem;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    font-size: 0.875rem;
    font-weight: 500;
    color: var(--muted);
}

.nav-links a:hover { color: var(--ink); }

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.5rem 1rem;
    border-radius: 0.5rem;
    font-weight: 600;
    font-size: 0.875rem;
    border: 1px solid transparent;
    transition: transform 0.15s ease, background 0.15s ease, border-color 0.15s ease;
}

.btn:hover { transform: translateY(-1px); }

.btn-primary {
    background: var(--primary);
    color: #fff;
}

.btn-primary:hover { background: var(--primary-700); color: #fff; }

.btn-ghost {
    border-color: var(--line);
    background: var(--white);
    color: var(--ink);
}

.btn-ghost:hover { border-color: var(--muted); }

.btn-lg {
    padding: 0.75rem 1.5rem;
    font-size: 1rem;
}

.hero {
    position: relative;
    overflow: hidden;
}

.hero-wash {
    pointer-events: none;
    position: absolute;
    inset: -20% 0 auto;
    height: 70%;
    background: radial-gradient(ellipse 55% 70% at 50% 0%, color-mix(in srgb, var(--primary) 12%, transparent), transparent 70%);
}

.hero-inner {
    position: relative;
    width: min(48rem, calc(100% - 2rem));
    margin: 0 auto;
    padding: 5rem 0 2.5rem;
    text-align: center;
}

.hero-logo {
    width: clamp(52px, 8vw, 72px);
    height: auto;
    margin: 0 auto 1.75rem;
    border-radius: 0.75rem;
}

.eyebrow {
    margin: 0 0 0.75rem;
    color: var(--primary);
    font-size: 0.875rem;
    font-weight: 600;
}

h1 {
    margin: 0;
    font-size: clamp(1.75rem, 4vw, 3rem);
    font-weight: 800;
    line-height: 1.15;
    letter-spacing: -0.035em;
}

h1 .accent {
    display: block;
    color: var(--primary);
}

.lede {
    margin: 1.25rem auto 0;
    max-width: 40rem;
    color: var(--muted);
    font-size: clamp(1.05rem, 2vw, 1.2rem);
}

.cta-row {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
    margin-top: 2rem;
}

.cta-row.center,
.hero .cta-row {
    justify-content: center;
}

.trust {
    margin: 1.25rem 0 0;
    color: var(--muted);
    font-size: 0.875rem;
}

.outcomes {
    border-top: 1px solid var(--line);
    background: var(--soft);
    padding: 1.25rem 0;
}

.outcomes-track {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 0.75rem;
    width: min(72rem, calc(100% - 2rem));
    margin: 0 auto;
}

.pill {
    border: 1px solid var(--line);
    background: var(--white);
    border-radius: 999px;
    padding: 0.5rem 1rem;
    font-size: 0.875rem;
    font-weight: 600;
}

.section {
    padding: clamp(3.5rem, 8vh, 5.5rem) 0;
    border-top: 1px solid var(--line);
}

.section-soft { background: var(--soft); }

.section-head {
    max-width: 36rem;
    margin: 0 auto 2.5rem;
    text-align: center;
}

.section-head h2,
.band h2 {
    margin: 0;
    font-size: clamp(1.5rem, 3vw, 1.9rem);
    font-weight: 800;
    letter-spacing: -0.03em;
}

.section-head p {
    margin: 0.5rem 0 0;
    color: var(--muted);
    font-size: 1.05rem;
}

.steps {
    list-style: none;
    margin: 0;
    padding: 0;
    display: grid;
    gap: 2rem;
}

.steps h3,
.features h3 {
    margin: 0;
    font-size: 1rem;
    font-weight: 700;
    letter-spacing: -0.015em;
}

.steps p,
.features p {
    margin: 0.375rem 0 0;
    color: var(--muted);
    font-size: 0.975rem;
}

.step-num {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 2.5rem;
    height: 2.5rem;
    margin-bottom: 0.75rem;
    border: 1px solid var(--line);
    border-radius: 999px;
    background: var(--white);
    color: var(--primary);
    font-size: 0.875rem;
    font-weight: 800;
}

.features {
    display: grid;
    grid-template-columns: 1fr;
    border-top: 1px solid var(--line);
}

.features article {
    padding: 1.25rem 0;
    border-bottom: 1px solid var(--line);
}

.band {
    background: var(--primary-700);
    color: #fff;
    padding: 4rem 0;
}

.band-inner { text-align: center; max-width: 48rem; }

.band p {
    margin: 0.5rem 0 0;
    color: var(--primary-100);
    font-size: 1.125rem;
}

.btn-on-brand {
    background: #fff;
    color: var(--primary-700);
}

.btn-on-brand-ghost {
    border-color: rgba(255, 255, 255, 0.7);
    color: #fff;
}

.btn-on-brand-ghost:hover { background: rgba(255, 255, 255, 0.1); }

.footer {
    border-top: 1px solid var(--line);
    background: var(--white);
}

.footer-grid {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    padding: 2.5rem 0;
}

.footer-lede {
    max-width: 20rem;
    margin: 0.75rem 0 0;
    color: var(--muted);
    font-size: 0.875rem;
}

.footer-links {
    display: flex;
    flex-wrap: wrap;
    gap: 2.5rem;
    font-size: 0.875rem;
}

.footer-links h4 {
    margin: 0 0 0.75rem;
    font-size: 0.875rem;
    font-weight: 600;
}

.footer-links a {
    display: block;
    color: var(--muted);
    margin-top: 0.5rem;
}

.footer-links a:hover { color: var(--ink); }

.footer-bar {
    border-top: 1px solid var(--line);
    padding: 1.5rem 0 2rem;
    color: var(--muted);
    font-size: 0.875rem;
}

.footer-bar p { margin: 0; }

@media (min-width: 768px) {
    .steps {
        grid-template-columns: repeat(3, 1fr);
        gap: 1.5rem;
        text-align: center;
    }

    .step-num { margin-left: auto; margin-right: auto; }

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

    .features article:nth-child(odd) { padding-right: 1.25rem; }

    .features article:nth-child(even) {
        border-left: 1px solid var(--line);
        padding-left: 1.25rem;
    }

    .footer-grid {
        flex-direction: row;
        justify-content: space-between;
        align-items: flex-start;
    }
}

@media (max-width: 800px) {
    .nav-links a:not(.btn) { display: none; }
    .hero-inner { padding-top: 3rem; }
}
