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

:root {
    --bg: 16 14 12;
    --surface: 24 22 20;
    --surface-alt: 34 30 26;

    --text: 245 238 228;
    --text-soft: 214 201 184;
    --muted: 172 156 136;
    --border: 56 48 40;

    --primary: 251 146 60;
    --primary-hover: 221 107 32;
    --primary-soft: 72 36 16;

    --accent: 253 186 116;
    --success: 74 222 128;
    --warning: 250 204 21;
    --danger: 248 113 113;

    --ring: 251 146 60;

    --shadow-sm: 0 1px 3px rgb(0 0 0 / 0.45);
    --shadow-md: 0 14px 36px rgb(0 0 0 / 0.6);
    --shadow-lg: 0 22px 56px rgb(0 0 0 / 0.7);
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
    background: rgb(var(--bg));
    color: rgb(var(--text));
    line-height: 1.6;
}

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

.container {
    width: min(1120px, calc(100% - 40px));
    margin: 0 auto;
}

.header {
    position: sticky;
    top: 0;
    z-index: 20;
    background: rgba(var(--bg), 0.75);
    backdrop-filter: blur(16px);
    border-bottom: 1px solid rgba(var(--primary), 0.2);
}

.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 16px 0;
}

.brand {
    display: flex;
    align-items: center;
    gap: 12px;
    min-width: 220px;
}

.logo {
    width: 42px;
    height: 42px;
    border-radius: 16px;
    display: grid;
    place-items: center;
    background: rgba(var(--primary), 0.14);
    border: 2px solid rgba(var(--ring), 0.4);
    box-shadow: var(--shadow-sm);
    color: rgb(var(--primary));
    font-weight: 900;
    font-size: 18px;
}

.brand-title {
    font-weight: 900;
    letter-spacing: -0.03em;
    font-size: 16px;
}

.brand-subtitle {
    color: rgb(var(--muted));
    font-size: 11px;
    letter-spacing: 0.01em;
}

.nav {
    display: none;
    align-items: center;
    gap: 24px;
    font-size: 14px;
    font-weight: 600;
}

.nav a {
    color: rgb(var(--muted));
    transition: color 0.2s ease;
    position: relative;
}

.nav a:hover {
    color: rgb(var(--primary));
}

.nav a::after {
    content: "";
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 2px;
    background: rgb(var(--primary));
    transition: width 0.25s ease;
}

.nav a:hover::after {
    width: 100%;
}

.header-actions {
    display: flex;
    gap: 10px;
    align-items: center;
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 13px 20px;
    border-radius: 16px;
    border: 2px solid rgba(var(--border), 0.8);
    background: rgba(var(--surface), 0.9);
    color: rgb(var(--text));
    box-shadow: var(--shadow-sm);
    transition: all 0.2s ease;
    cursor: pointer;
    font-weight: 700;
    letter-spacing: -0.01em;
    font-size: 14px;
}

.btn:hover {
    transform: translateY(-2px);
    border-color: rgba(var(--border), 1);
    background: rgba(var(--surface), 1);
    box-shadow: var(--shadow-md);
}

.btn-primary {
    border: 2px solid rgba(var(--ring), 0.4);
    background: rgb(var(--primary));
    color: white;
    box-shadow: var(--shadow-md);
}

.btn-primary:hover {
    background: linear-gradient(135deg, rgba(var(--primary), 1), rgba(var(--primary-hover), 1));
    box-shadow: var(--shadow-lg);
    transform: translateY(-2px) scale(1.02);
}

.btn-small {
    padding: 10px 14px;
    border-radius: 14px;
    font-size: 13px;
}

.pill {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 14px;
    border-radius: 999px;
    border: 2px solid rgba(var(--primary), 0.3);
    background: rgba(var(--primary-soft), 0.4);
    color: rgb(var(--accent));
    box-shadow: var(--shadow-sm);
    font-size: 12px;
    letter-spacing: 0.02em;
    font-weight: 600;
}

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

.glow {
    position: absolute;
    inset: -200px;
    background:
        radial-gradient(650px 450px at 18% 20%, rgba(var(--primary), 0.18), transparent 70%),
        radial-gradient(550px 380px at 85% 40%, rgba(var(--primary), 0.14), transparent 70%),
        radial-gradient(520px 440px at 50% 110%, rgba(var(--accent), 0.14), transparent 70%);
    filter: blur(24px);
    z-index: -1;
}

.hero-grid {
    display: grid;
    gap: 32px;
    padding: 64px 0 40px;
}

h1 {
    margin-top: 18px;
    font-size: clamp(38px, 5.5vw, 62px);
    line-height: 1.02;
    letter-spacing: -0.05em;
    font-weight: 900;
    background: linear-gradient(135deg, rgb(var(--text)), rgb(var(--accent)));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.lead {
    margin-top: 18px;
    font-size: 17px;
    line-height: 1.7;
    color: rgb(var(--muted));
    max-width: 58ch;
}

.cta-row {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
    margin-top: 24px;
}

.trust {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 12px;
    margin-top: 24px;
}

.trust-card {
    border: 2px solid rgba(var(--border), 0.75);
    background: rgba(var(--surface), 0.8);
    border-radius: 18px;
    padding: 14px 16px;
    box-shadow: var(--shadow-sm);
    transition: all 0.25s ease;
}

.trust-card:hover {
    border-color: rgba(var(--primary), 0.5);
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

.trust-card b {
    display: block;
    font-size: 14px;
    letter-spacing: -0.02em;
    font-weight: 800;
    color: rgb(var(--accent));
}

.trust-card span {
    display: block;
    margin-top: 4px;
    font-size: 12px;
    color: rgb(var(--muted));
    line-height: 1.5;
}

.microproof {
    margin-top: 18px;
    display: grid;
    gap: 10px;
    max-width: 62ch;
}

.microproof-item {
    display: flex;
    align-items: center;
    gap: 10px;
    color: rgb(var(--text-soft));
    font-size: 13px;
    line-height: 1.6;
}

.dot {
    width: 10px;
    height: 10px;
    border-radius: 999px;
    background: rgba(var(--primary), 0.35);
    border: 2px solid rgba(var(--ring), 0.5);
    box-shadow: var(--shadow-sm);
    flex: 0 0 auto;
}

.shot {
    border: 2px solid rgba(var(--primary), 0.3);
    background: linear-gradient(180deg, rgba(var(--surface), 0.95), rgba(var(--surface), 0.7));
    border-radius: 28px;
    padding: 18px;
    box-shadow: var(--shadow-lg);
}

.shot-frame {
    border-radius: 22px;
    overflow: hidden;
    border: 2px solid rgba(var(--primary), 0.25);
    background: rgba(0, 0, 0, 0.4);
    aspect-ratio: 16 / 10;
    display: grid;
    place-items: center;
    position: relative;
}

.shot-frame::before {
    content: "";
    position: absolute;
    inset: 0;
    background:
        linear-gradient(180deg, rgba(var(--primary), 0.1), transparent 40%),
        radial-gradient(850px 450px at 50% 0%, rgba(var(--primary), 0.1), transparent 65%);
    pointer-events: none;
}

.shot-hint {
    text-align: center;
    padding: 0 28px;
}

.shot-hint .title {
    font-weight: 800;
    letter-spacing: -0.03em;
    font-size: 18px;
}

.shot-hint .sub {
    margin-top: 8px;
    font-size: 14px;
    color: rgb(var(--muted));
    line-height: 1.6;
}

.shot-actions {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-top: 14px;
    gap: 10px;
    color: rgb(var(--muted));
    font-size: 12px;
    font-weight: 600;
}

.kbd {
    border: 2px solid rgba(var(--border), 0.8);
    background: rgba(var(--surface), 0.9);
    padding: 5px 10px;
    border-radius: 12px;
    color: rgb(var(--text-soft));
    font-weight: 700;
    font-size: 11px;
}

.section {
    padding: 64px 0;
}

.section-title {
    margin: 0 0 12px;
    font-size: 32px;
    letter-spacing: -0.04em;
    font-weight: 900;
    background: linear-gradient(135deg, rgb(var(--text)), rgb(var(--accent)));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.section-desc {
    margin: 0 0 28px;
    color: rgb(var(--muted));
    max-width: 72ch;
    line-height: 1.7;
    font-size: 16px;
}

.grid-3 {
    display: grid;
    gap: 16px;
}

.card {
    border: 2px solid rgba(var(--border), 0.75);
    background: rgba(var(--surface), 0.75);
    border-radius: 22px;
    padding: 22px;
    box-shadow: var(--shadow-sm);
    transition: all 0.25s ease;
}

.card:hover {
    border-color: rgba(var(--primary), 0.5);
    transform: translateY(-3px);
    box-shadow: var(--shadow-md);
}

.card h3 {
    margin: 0 0 10px;
    font-size: 17px;
    letter-spacing: -0.03em;
    font-weight: 800;
    color: rgb(var(--accent));
}

.card p {
    margin: 0;
    color: rgb(var(--muted));
    line-height: 1.7;
    font-size: 14px;
}

.steps {
    display: grid;
    gap: 14px;
}

.step {
    display: flex;
    gap: 14px;
    align-items: flex-start;
    padding: 18px 20px;
    border-radius: 22px;
    border: 2px solid rgba(var(--border), 0.75);
    background: rgba(var(--surface), 0.65);
    box-shadow: var(--shadow-sm);
    transition: all 0.25s ease;
}

.step:hover {
    border-color: rgba(var(--primary), 0.5);
    transform: translateX(4px);
    box-shadow: var(--shadow-md);
}

.step-num {
    width: 38px;
    height: 38px;
    border-radius: 16px;
    display: grid;
    place-items: center;
    background: rgba(var(--primary), 0.14);
    border: 2px solid rgba(var(--ring), 0.4);
    color: rgb(var(--primary));
    font-weight: 900;
    flex: 0 0 auto;
    font-size: 16px;
}

.step b {
    display: block;
    letter-spacing: -0.02em;
    font-size: 15px;
    font-weight: 800;
}

.step span {
    display: block;
    margin-top: 5px;
    color: rgb(var(--muted));
    font-size: 14px;
    line-height: 1.7;
}

/* NEW: split / quote / mini-cards */
.split {
    display: grid;
    gap: 16px;
}

.quote {
    border: 2px solid rgba(var(--primary), 0.35);
    background: linear-gradient(180deg, rgba(var(--surface), 0.9), rgba(var(--surface), 0.65));
    border-radius: 26px;
    padding: 22px;
    box-shadow: var(--shadow-md);
    position: relative;
    overflow: hidden;
}

.quote::before {
    content: "";
    position: absolute;
    inset: -120px -160px auto -160px;
    height: 240px;
    background: radial-gradient(closest-side, rgba(var(--primary), 0.18), transparent 74%);
    filter: blur(20px);
}

.quote-top,
.quote-bottom {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    flex-wrap: wrap;
}

.quote-badge {
    display: inline-flex;
    align-items: center;
    padding: 6px 12px;
    border-radius: 999px;
    font-size: 11px;
    border: 2px solid rgba(var(--ring), 0.4);
    background: rgba(var(--primary), 0.14);
    color: rgb(var(--accent));
    font-weight: 800;
    letter-spacing: 0.02em;
}

.quote-text {
    position: relative;
    margin-top: 12px;
    color: rgb(var(--text-soft));
    font-size: 14px;
    line-height: 1.75;
}

.quote-muted {
    color: rgb(var(--muted));
    font-size: 13px;
    font-weight: 700;
}

.mini-grid {
    display: grid;
    gap: 12px;
}

.mini {
    border: 2px solid rgba(var(--border), 0.75);
    background: rgba(var(--surface), 0.65);
    border-radius: 18px;
    padding: 14px 16px;
    box-shadow: var(--shadow-sm);
    transition: all 0.25s ease;
}

.mini:hover {
    border-color: rgba(var(--primary), 0.5);
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

.mini b {
    display: block;
    color: rgb(var(--accent));
    font-weight: 900;
    letter-spacing: -0.02em;
    font-size: 14px;
}

.mini span {
    display: block;
    margin-top: 4px;
    color: rgb(var(--muted));
    font-size: 12px;
    line-height: 1.5;
}

.note {
    margin-top: 18px;
    border: 2px solid rgba(var(--primary), 0.25);
    background: rgba(var(--primary-soft), 0.25);
    border-radius: 18px;
    padding: 14px 16px;
    color: rgb(var(--text-soft));
    font-size: 13px;
    line-height: 1.65;
}

/* Waitlist */
.waitlist {
    max-width: 760px;
    margin: 0 auto;
    border: 2px solid rgba(var(--primary), 0.4);
    background: linear-gradient(180deg, rgba(var(--surface), 0.9), rgba(var(--surface), 0.65));
    border-radius: 32px;
    padding: 24px;
    box-shadow: var(--shadow-lg);
    overflow: hidden;
    position: relative;
}

.waitlist::before {
    content: "";
    position: absolute;
    inset: -140px -180px auto -180px;
    height: 280px;
    background: radial-gradient(closest-side, rgba(var(--primary), 0.2), transparent 74%);
    filter: blur(20px);
}

.waitlist-inner {
    position: relative;
    padding: 16px;
    display: grid;
    gap: 14px;
}

.form {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
}

input[type="email"] {
    flex: 1 1 260px;
    padding: 14px 16px;
    border-radius: 16px;
    border: 2px solid rgba(var(--border), 0.9);
    background: rgba(var(--bg), 0.65);
    color: rgb(var(--text));
    outline: none;
    box-shadow: var(--shadow-sm);
    font-size: 14px;
    font-weight: 600;
    transition: all 0.2s ease;
}

input[type="email"]:focus {
    border-color: rgba(var(--primary), 0.8);
    box-shadow: 0 0 0 6px rgba(var(--primary), 0.14), var(--shadow-sm);
    background: rgba(var(--bg), 0.8);
}

input[type="email"]::placeholder {
    color: rgb(var(--muted));
}

.cta-split {
    display: flex;
    gap: 12px;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    border: 2px solid rgba(var(--border), 0.75);
    background: rgba(var(--surface), 0.55);
    border-radius: 18px;
    padding: 14px 16px;
    margin-top: 6px;
}

.cta-left {
    display: grid;
    gap: 2px;
}

.cta-left b {
    color: rgb(var(--text));
    font-weight: 900;
    letter-spacing: -0.02em;
    font-size: 14px;
}

.cta-left span {
    color: rgb(var(--muted));
    font-size: 13px;
    font-weight: 600;
}

.fineprint {
    color: rgb(var(--muted));
    font-size: 12px;
    line-height: 1.7;
}

footer {
    border-top: 2px solid rgba(var(--primary), 0.2);
    padding: 24px 0;
    color: rgb(var(--muted));
    font-size: 13px;
    font-weight: 600;
}

footer a:hover {
    color: rgb(var(--accent));
}

@media (min-width: 900px) {
    .nav {
        display: flex;
    }

    .hero-grid {
        grid-template-columns: 1.1fr 0.9fr;
        align-items: center;
        padding: 88px 0 48px;
    }

    .grid-3 {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }

    .steps {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .split {
        grid-template-columns: 1.15fr 0.85fr;
        align-items: stretch;
    }

    .mini-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}