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

:root {
    --bg:        #0f0f0f;
    --bg-card:   #1a1a1a;
    --bg-subtle: #1e1e1e;
    --border:    #2a2a2a;
    --border-mid:#2e2e2e;
    --text:      #f0ebe0;
    --muted:     #888;
    --faint:     #666;
    --very-faint:#555;
    --gold:      #c9a84c;
}

html { font-size: 16px; }

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

/* ── Nav ── */
.nav {
    border-bottom: 0.5px solid var(--border);
}
.nav-inner {
    max-width: 1100px;
    margin: 0 auto;
    padding: 20px 40px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.nav-logo {
    font-size: 16px;
    font-weight: 500;
    color: var(--text);
    text-decoration: none;
    letter-spacing: -0.01em;
}
.nav-cta {
    background: var(--gold);
    color: #0f0f0f;
    font-size: 13px;
    font-weight: 500;
    padding: 8px 18px;
    border-radius: 6px;
    border: none;
    cursor: pointer;
}

/* ── Hero ── */
.hero {
    max-width: 1100px;
    margin: 0 auto;
    padding: 80px 40px 64px;
}
.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: var(--bg-subtle);
    border: 0.5px solid var(--border-mid);
    color: var(--gold);
    font-size: 12px;
    padding: 5px 12px;
    border-radius: 20px;
    margin-bottom: 28px;
}
.hero-badge-dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--gold);
    flex-shrink: 0;
}
.hero h1 {
    font-size: 42px;
    font-weight: 500;
    line-height: 1.15;
    letter-spacing: -0.02em;
    color: var(--text);
    margin-bottom: 20px;
    max-width: 600px;
}
.hero h1 em {
    color: var(--gold);
    font-style: normal;
}
.hero p {
    font-size: 17px;
    color: var(--muted);
    line-height: 1.65;
    margin-bottom: 40px;
    max-width: 480px;
}

/* ── Form ── */
.hero-form {
    display: flex;
    gap: 10px;
    margin-bottom: 16px;
    max-width: 480px;
}
.hero-form input[type="email"] {
    flex: 1;
    background: var(--bg-card);
    border: 0.5px solid var(--border-mid);
    color: var(--text);
    font-size: 14px;
    padding: 12px 16px;
    border-radius: 8px;
    outline: none;
}
.hero-form input[type="email"]::placeholder {
    color: var(--very-faint);
}
.hero-form input[type="email"]:focus {
    border-color: var(--gold);
}
.hero-form button {
    background: var(--gold);
    color: #0f0f0f;
    font-size: 14px;
    font-weight: 500;
    padding: 12px 22px;
    border-radius: 8px;
    border: none;
    cursor: pointer;
    white-space: nowrap;
}
.hero-form-sub {
    font-size: 12px;
    color: var(--very-faint);
}

/* ── Divider ── */
.divider {
    height: 0.5px;
    background: var(--bg-subtle);
    margin: 0 40px;
}

/* ── Features ── */
.features {
    border-top: 0.5px solid var(--bg-subtle);
    border-bottom: 0.5px solid var(--bg-subtle);
    background: var(--bg-card);
}
.features-inner {
    max-width: 1100px;
    margin: 0 auto;
    padding: 56px 40px;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1px;
    background: var(--bg-card);
}
.feature {
    background: var(--bg);
    padding: 32px 28px;
}
.feature-num {
    font-size: 11px;
    color: var(--gold);
    font-weight: 500;
    letter-spacing: 0.1em;
    margin-bottom: 14px;
}
.feature h3 {
    font-size: 15px;
    font-weight: 500;
    color: var(--text);
    margin-bottom: 8px;
}
.feature p {
    font-size: 13px;
    color: var(--faint);
    line-height: 1.6;
}

/* ── Footer ── */
.footer {
    border-top: 0.5px solid var(--bg-subtle);
}
.footer-inner {
    max-width: 1100px;
    margin: 0 auto;
    padding: 24px 40px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.footer-logo {
    font-size: 14px;
    color: #444;
}
.footer-logo strong {
    font-weight: 500;
}
.footer-links {
    display: flex;
    gap: 20px;
}
.footer-links a {
    font-size: 12px;
    color: #444;
    text-decoration: none;
}
.footer-links a:hover {
    color: var(--text);
}

/* ── Success state ── */
.form-success {
    display: none;
    font-size: 14px;
    color: var(--gold);
    padding: 12px 0;
}

/* ── Responsive ── */
@media (max-width: 768px) {
    .nav-inner { padding: 16px 20px; }
    .hero { padding: 48px 20px 40px; }
    .hero h1 { font-size: 28px; }
    .hero p { font-size: 15px; }
    .hero-form { flex-direction: column; }
    .divider { margin: 0 20px; }
    .features-inner {
        grid-template-columns: 1fr;
        padding: 32px 20px;
        gap: 0;
    }
    .feature { padding: 24px 20px; border-bottom: 0.5px solid var(--bg-subtle); }
    .footer-inner { padding: 20px; flex-direction: column; gap: 12px; text-align: center; }
}