:root {
    --background: #050508;
    --surface: #14121E;
    --surface-raised: #1C1928;
    --ink: #E7E3DA;
    --ink-secondary: rgba(231, 227, 218, 0.6);
    --hairline: rgba(255, 255, 255, 0.12);
    --amber: #D97757;
    --iris: #7B5AE0;
    --jade: #3CA282;
    --sun: #F5BE4F;
    --signature: linear-gradient(135deg, var(--iris), var(--amber));
}

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

html {
    scroll-behavior: smooth;
}

body {
    background: var(--background);
    color: var(--ink);
    font-family: -apple-system, BlinkMacSystemFont, "SF Pro Text", "Segoe UI", sans-serif;
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

main {
    flex: 1;
}

h1, h2, h3 {
    line-height: 1.15;
    letter-spacing: -0.02em;
}

section {
    max-width: 960px;
    margin: 0 auto;
    padding: 96px 24px;
}

.gradient-text {
    background: var(--signature);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

/* Navigation */

.nav {
    position: sticky;
    top: 0;
    backdrop-filter: blur(16px);
    background: rgba(5, 5, 8, 0.7);
    border-bottom: 1px solid var(--hairline);
    z-index: 10;
}

.nav-inner {
    max-width: 960px;
    margin: 0 auto;
    padding: 16px 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.wordmark {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-size: 20px;
    font-weight: 700;
    letter-spacing: -0.02em;
    color: var(--ink);
    text-decoration: none;
}

.wordmark-icon {
    width: 28px;
    height: 28px;
    border-radius: 7px;
}

.nav-cta {
    color: var(--ink);
    text-decoration: none;
    font-size: 14px;
    font-weight: 600;
    padding: 8px 16px;
    border: 1px solid var(--hairline);
    border-radius: 999px;
    transition: border-color 0.2s ease;
}

.nav-cta:hover {
    border-color: var(--amber);
}

/* Hero */

.hero {
    text-align: center;
    padding-top: 112px;
}

.hero-badge {
    display: inline-block;
    margin-bottom: 24px;
    padding: 6px 16px;
    border: 1px solid rgba(245, 190, 79, 0.45);
    border-radius: 999px;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--sun);
}

.hero h1 {
    font-size: clamp(40px, 7vw, 64px);
    font-weight: 800;
}

.subtitle {
    max-width: 560px;
    margin: 24px auto 32px;
    font-size: 19px;
    color: var(--ink-secondary);
}

.button-primary {
    display: inline-block;
    background: var(--signature);
    color: #fff;
    text-decoration: none;
    font-size: 16px;
    font-weight: 700;
    padding: 14px 32px;
    border: none;
    border-radius: 999px;
    cursor: pointer;
    transition: transform 0.15s ease, box-shadow 0.15s ease;
}

.button-primary:hover {
    transform: translateY(-1px);
    box-shadow: 0 8px 32px rgba(123, 90, 224, 0.35);
}

.hero-note {
    margin-top: 16px;
    font-size: 13px;
    color: var(--ink-secondary);
}

.hero-demo {
    margin-top: 64px;
}

.demo-placeholder {
    aspect-ratio: 16 / 9;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--surface);
    border: 1px solid var(--hairline);
    border-radius: 16px;
    color: var(--ink-secondary);
    font-size: 14px;
}

/* Steps */

.steps h2,
.actions h2,
.privacy h2,
.waitlist h2 {
    font-size: clamp(28px, 4.5vw, 40px);
    font-weight: 800;
    text-align: center;
}

.section-subtitle {
    text-align: center;
    color: var(--ink-secondary);
    margin-top: 12px;
}

.steps-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-top: 48px;
}

.step {
    background: var(--surface);
    border: 1px solid var(--hairline);
    border-radius: 16px;
    padding: 28px;
}

.step-header {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 12px;
}

.step-number {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    width: 32px;
    height: 32px;
    border-radius: 999px;
    background: var(--signature);
    color: #fff;
    font-size: 15px;
    font-weight: 700;
}

.step h3 {
    font-size: 18px;
}

.step p {
    font-size: 15px;
    color: var(--ink-secondary);
}

/* Actions */

.actions-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-top: 48px;
}

.action-card {
    background: var(--surface);
    border: 1px solid var(--hairline);
    border-radius: 16px;
    padding: 28px;
    transition: border-color 0.2s ease;
}

.action-card:hover {
    border-color: rgba(217, 119, 87, 0.5);
}

.action-card h3 {
    font-size: 17px;
}

.action-capture {
    margin-top: 12px;
    min-height: 45px;
    font-size: 14px;
    color: var(--ink-secondary);
}

.action-arrow {
    display: block;
    margin: 6px 0;
    font-size: 15px;
    font-weight: 700;
    color: var(--amber);
}

.action-result {
    font-size: 14px;
    color: var(--ink);
}

.actions-more {
    text-align: center;
    margin-top: 32px;
    font-size: 15px;
    color: var(--ink-secondary);
}

/* Privacy */

.privacy {
    text-align: center;
}

.privacy p {
    max-width: 620px;
    margin: 24px auto 0;
    color: var(--ink-secondary);
    font-size: 17px;
}

/* Pricing */

.pricing h2 {
    font-size: clamp(28px, 4.5vw, 40px);
    font-weight: 800;
    text-align: center;
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
    max-width: 720px;
    margin: 48px auto 0;
}

.pricing-card {
    background: var(--surface);
    border: 1px solid var(--hairline);
    border-radius: 16px;
    padding: 32px 28px;
}

.pricing-card-highlighted {
    border-color: rgba(123, 90, 224, 0.6);
}

.pricing-card h3 {
    font-size: 17px;
    color: var(--ink-secondary);
    text-transform: uppercase;
    letter-spacing: 0.06em;
}

.pricing-price {
    margin-top: 12px;
    font-size: 40px;
    font-weight: 800;
    letter-spacing: -0.02em;
}

.pricing-unit {
    font-size: 18px;
    font-weight: 600;
    color: var(--ink-secondary);
}

.pricing-interval {
    margin-top: 4px;
    font-size: 13px;
    color: var(--ink-secondary);
}

.pricing-features {
    margin-top: 20px;
    padding-left: 20px;
    display: flex;
    flex-direction: column;
    gap: 8px;
    font-size: 14px;
    color: var(--ink-secondary);
}

.pricing-features li::marker {
    color: var(--amber);
}

.pricing-note {
    margin-top: 20px;
    font-size: 12px;
    color: var(--ink-secondary);
}

.pricing-note a {
    color: var(--amber);
}

.pricing-offer {
    margin-top: 32px;
    text-align: center;
    font-size: 14px;
    color: var(--sun);
}

.pricing-offer a {
    color: var(--sun);
    font-weight: 600;
}

.pricing-footnote {
    margin-top: 16px;
    text-align: center;
    font-size: 13px;
    color: var(--ink-secondary);
}

/* Legal pages */

.legal {
    max-width: 720px;
}

.legal h1 {
    font-size: clamp(32px, 5vw, 44px);
    font-weight: 800;
}

.legal-updated {
    margin-top: 8px;
    font-size: 13px;
    color: var(--ink-secondary);
}

.legal h2 {
    margin-top: 40px;
    font-size: 20px;
    font-weight: 700;
}

.legal p,
.legal ul {
    margin-top: 12px;
    font-size: 15px;
    color: var(--ink-secondary);
}

.legal ul {
    padding-left: 24px;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.legal li::marker {
    color: var(--amber);
}

.legal a {
    color: var(--amber);
}

.legal strong {
    color: var(--ink);
}

/* Waitlist */

.waitlist {
    text-align: center;
}

.waitlist-form {
    display: flex;
    justify-content: center;
    gap: 12px;
    margin-top: 32px;
    flex-wrap: wrap;
}

.waitlist-form input {
    background: var(--surface);
    border: 1px solid var(--hairline);
    border-radius: 999px;
    color: var(--ink);
    font-size: 16px;
    padding: 14px 24px;
    width: min(360px, 100%);
    outline: none;
    transition: border-color 0.2s ease;
}

.waitlist-form input:focus {
    border-color: var(--iris);
}

.waitlist-status {
    margin-top: 20px;
    font-size: 15px;
    color: var(--jade);
}

.waitlist-status.error {
    color: var(--amber);
}

/* Footer */

.footer {
    border-top: 1px solid var(--hairline);
}

.footer-inner {
    max-width: 960px;
    margin: 0 auto;
    padding: 32px 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.footer-links {
    display: flex;
    gap: 24px;
}

.footer-links a {
    color: var(--ink-secondary);
    text-decoration: none;
    font-size: 14px;
    transition: color 0.2s ease;
}

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

/* Responsive */

@media (max-width: 720px) {
    section {
        padding: 64px 20px;
    }

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