:root {
    --bg-deep: #08080c;
    --bg-primary: #0c0c12;
    --bg-elevated: #14141c;
    --bg-card: #1a1a24;
    --text: #ececf0;
    --text-primary: #ececf0;
    --text-secondary: #8888a0;
    --text-muted: #5a5a70;
    --accent: #7c7fff;
    --accent-soft: rgba(124, 127, 255, 0.15);
    --accent-glow: rgba(124, 127, 255, 0.25);
    --border: rgba(255, 255, 255, 0.06);
    --border-accent: rgba(124, 127, 255, 0.3);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    overflow-y: scroll;
}

body {
    font-family: 'DM Sans', -apple-system, BlinkMacSystemFont, sans-serif;
    line-height: 1.7;
    color: var(--text-primary);
    background: var(--bg-deep);
    min-height: 100vh;
    -webkit-font-smoothing: antialiased;
    overflow-x: hidden;
}

.gradient-bg {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    height: 100vh;
    background: 
        radial-gradient(ellipse 80% 50% at 50% -20%, rgba(124, 127, 255, 0.15) 0%, transparent 50%),
        radial-gradient(ellipse 60% 40% at 100% 0%, rgba(100, 80, 200, 0.1) 0%, transparent 50%);
    pointer-events: none;
    z-index: -1;
}

main {
    max-width: 100%;
    margin: 0 auto;
}


/* Hero */
.hero {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 3rem 1.5rem;
    text-align: center;
    max-width: 680px;
    margin: 0 auto;
}

.hero-eyebrow {
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 0.2em;
    color: var(--accent);
    margin-bottom: 2rem;
    font-weight: 500;
}

h1 {
    font-family: 'Newsreader', Georgia, serif;
    font-size: 2.75rem;
    font-weight: 400;
    line-height: 1.15;
    margin-bottom: 1.75rem;
    letter-spacing: -0.02em;
}

h1 .accent {
    color: var(--accent);
}

.hero-sub {
    font-size: 1.15rem;
    color: var(--text-secondary);
    max-width: 480px;
    margin: 0 auto 0.75rem;
    line-height: 1.6;
}

.hero-clarifier {
    font-size: 1.05rem;
    color: var(--text-muted);
    max-width: 520px;
    margin: 0 auto 3rem;
    line-height: 1.6;
}

.hero-reassurance {
    font-size: 0.85rem;
    color: var(--text-secondary);
    text-align: center;
    margin: 0 auto 1rem;
    max-width: 380px;
    opacity: 0.85;
}

/* Hero CTA */
.hero-cta {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    max-width: 340px;
    margin: 0 auto;
    width: 100%;
}

.hero-cta input[type="email"] {
    padding: 0.65rem 1rem;
    font-size: 0.9rem;
    border: 1px solid var(--border);
    border-radius: 8px;
    background: var(--bg-deep);
    color: var(--text-primary);
    font-family: inherit;
    transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.hero-cta input[type="email"]::placeholder {
    color: var(--text-muted);
}

.hero-cta input[type="email"]:focus {
    outline: none;
    border-color: var(--accent);
    box-shadow: 0 0 0 3px var(--accent-soft);
}

.hero-cta button {
    padding: 0.65rem 1.25rem;
    font-size: 0.9rem;
    background: rgba(124, 127, 255, 0.85);
    font-weight: 500;
}

.hero-cta button:hover {
    background: var(--accent);
}

.hero-form-message {
    margin-top: 0.5rem;
    padding: 0.75rem 1rem;
    border-radius: 6px;
    font-size: 0.85rem;
    text-align: center;
}

.hero-cta-sub {
    font-size: 0.8rem;
    color: var(--text-muted);
    text-align: center;
    margin-top: 0.5rem;
    margin-bottom: 0;
}

/* Content Sections */
.content-section {
    padding: 4rem 1.5rem;
}

.content-wrapper {
    max-width: 680px;
    margin: 0 auto;
}

.content-wrapper.centered {
    text-align: center;
}

.tagline {
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 0.2em;
    color: var(--accent);
    margin-bottom: 2.5rem;
    font-weight: 500;
}

.subsection-header {
    font-family: 'DM Sans', sans-serif;
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--text-primary);
    margin: 2.5rem 0 1.5rem;
}

/* Simple Lists */
.simple-list {
    list-style: none;
    padding: 0;
    margin: 1.5rem 0;
}

.simple-list li {
    padding-left: 1.5rem;
    margin-bottom: 0.75rem;
    position: relative;
    color: var(--text-secondary);
    font-size: 1.05rem;
    line-height: 1.6;
}

.simple-list li::before {
    content: '-';
    position: absolute;
    left: 0;
    color: var(--accent);
}

.simple-list.muted-list li {
    color: var(--text-muted);
}

.simple-list.muted-list li::before {
    color: var(--text-muted);
}

/* Typography */
h2 {
    font-family: 'Newsreader', Georgia, serif;
    font-size: 2rem;
    font-weight: 400;
    margin-bottom: 1.5rem;
    color: var(--text-primary);
    line-height: 1.3;
}

h3 {
    font-family: 'Newsreader', Georgia, serif;
    font-size: 1.5rem;
    font-weight: 400;
    margin-bottom: 1rem;
    color: var(--text-primary);
}

h4 {
    font-family: 'DM Sans', sans-serif;
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: var(--text-primary);
}

p {
    color: var(--text-secondary);
    margin-bottom: 1rem;
    font-size: 1.05rem;
    line-height: 1.7;
}

/* Solution Section - Steps List */
.steps-list {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    margin-top: 2rem;
}

.step {
    display: flex;
    gap: 1.5rem;
    align-items: flex-start;
}

.step-number {
    flex-shrink: 0;
    width: 36px;
    height: 36px;
    background: var(--accent-soft);
    border: 1px solid var(--border-accent);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
    color: var(--accent);
    font-size: 0.9rem;
}

.step-content h4 {
    margin-bottom: 0.5rem;
}

.step-content p {
    margin: 0;
    font-size: 1rem;
    line-height: 1.6;
}

/* Checklist Section */
.checklist {
    list-style: none;
    padding: 0;
    margin: 1.5rem 0 2rem;
}

.check-item {
    padding-left: 2rem;
    margin-bottom: 1rem;
    position: relative;
    color: var(--text-primary);
    font-size: 1.05rem;
}

.check-item::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--accent);
    font-weight: 600;
}

.checklist-note {
    margin-top: 2rem;
    padding: 1.5rem;
    background: var(--bg-elevated);
    border: 1px solid var(--border);
    border-radius: 12px;
    color: var(--text-muted);
    font-size: 0.95rem;
    line-height: 1.6;
}

/* Stories Section */
.stories-intro {
    font-size: 0.95rem;
    color: var(--text-muted);
    margin-bottom: 2rem;
}

.story-quote {
    font-family: 'Newsreader', Georgia, serif;
    font-size: 1.15rem;
    font-style: italic;
    color: var(--text-primary);
    border-left: 3px solid var(--accent);
    padding-left: 1.5rem;
    margin: 1.5rem 0;
    line-height: 1.5;
}

.stories-close {
    margin-top: 2.5rem;
    font-size: 1.05rem;
    color: var(--text-secondary);
}

/* Approaches Section */
.approach-block {
    margin-bottom: 2rem;
    padding: 1.5rem;
    background: var(--bg-elevated);
    border: 1px solid var(--border);
    border-radius: 12px;
}

.approach-block h4 {
    font-family: 'Newsreader', Georgia, serif;
    font-style: italic;
    font-weight: 400;
    color: var(--accent);
    margin-bottom: 0.75rem;
}

.approach-block p {
    margin: 0;
}

.approach-close {
    margin-top: 2rem;
    font-size: 1.05rem;
    color: var(--text-secondary);
    font-style: italic;
}

/* Pricing Section */
.price-display {
    margin: 2rem 0;
}

.price-main {
    font-family: 'Newsreader', Georgia, serif;
    font-size: 3rem;
    color: var(--text-primary);
    font-weight: 400;
    line-height: 1;
}

.price-alt {
    font-size: 1.1rem;
    color: var(--text-secondary);
    margin-top: 0.75rem;
}

.pricing-note {
    font-size: 0.9rem;
    color: var(--text-muted);
    margin: 2rem 0;
}

.pricing-features {
    margin-top: 2.5rem;
    padding: 2rem;
    background: var(--bg-elevated);
    border: 1px solid var(--border);
    border-radius: 12px;
    text-align: left;
}

.pricing-features h4 {
    margin-bottom: 1rem;
    text-align: center;
}

/* FAQ Section */
.faq-item {
    margin-bottom: 2rem;
    padding: 1.5rem;
    background: var(--bg-elevated);
    border: 1px solid var(--border);
    border-radius: 12px;
}

.faq-item h4 {
    margin-bottom: 0.75rem;
    color: var(--text-primary);
}

.faq-item p {
    margin: 0;
}

/* Final CTA Section */
.final-cta-section {
    padding: 5rem 1.5rem;
}

.final-cta-form {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    max-width: 420px;
    margin: 2rem auto;
}

.final-cta-form input[type="email"] {
    padding: 1rem 1.25rem;
    font-size: 1rem;
    border: 1px solid var(--border);
    border-radius: 10px;
    background: var(--bg-deep);
    color: var(--text-primary);
    font-family: inherit;
    transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.final-cta-form input[type="email"]::placeholder {
    color: var(--text-muted);
}

.final-cta-form input[type="email"]:focus {
    outline: none;
    border-color: var(--accent);
    box-shadow: 0 0 0 3px var(--accent-soft);
}

.trust-builders {
    display: grid;
    grid-template-columns: 1fr;
    gap: 0.75rem;
    margin-top: 2.5rem;
    max-width: 420px;
    margin-left: auto;
    margin-right: auto;
}

.trust-item {
    font-size: 0.95rem;
    color: var(--text-secondary);
    padding: 0.5rem 0;
}

/* Validation Section */
.validation-section {
    padding: 2rem 1.5rem;
}

.validation-details {
    max-width: 640px;
    margin: 0 auto;
    border: 1px solid var(--border);
    border-radius: 12px;
    background: var(--bg-elevated);
}

.validation-details summary {
    padding: 1.25rem 1.5rem;
    cursor: pointer;
    font-weight: 500;
    color: var(--text-secondary);
    font-size: 0.95rem;
    user-select: none;
    list-style: none;
    transition: color 0.2s ease;
}

.validation-details summary::-webkit-details-marker {
    display: none;
}

.validation-details summary::after {
    content: '+';
    float: right;
    font-size: 1.25rem;
    color: var(--accent);
}

.validation-details[open] summary::after {
    content: '−';
}

.validation-details summary:hover {
    color: var(--text-primary);
}

.validation-content {
    padding: 0 1.5rem 1.5rem;
    border-top: 1px solid var(--border);
}

.validation-content p {
    margin-top: 1.25rem;
}

button {
    padding: 1rem 2rem;
    font-size: 1rem;
    font-weight: 600;
    background: var(--accent);
    color: #fff;
    border: none;
    border-radius: 10px;
    cursor: pointer;
    font-family: inherit;
    transition: transform 0.15s ease, box-shadow 0.15s ease, opacity 0.15s ease;
}

button:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 24px var(--accent-glow);
}

button:active {
    transform: translateY(0);
}

button:disabled {
    opacity: 0.5;
    cursor: not-allowed;
    transform: none;
}

button:focus-visible {
    outline: 2px solid var(--accent);
    outline-offset: 2px;
}

.form-message {
    margin-top: 1rem;
    padding: 1rem;
    background: rgba(80, 200, 120, 0.1);
    border: 1px solid rgba(80, 200, 120, 0.3);
    border-radius: 8px;
    color: #50c878;
    font-size: 0.95rem;
}

/* Footer */
footer {
    padding: 2rem 1.5rem;
    border-top: 1px solid var(--border);
    text-align: center;
}

footer nav {
    display: flex;
    justify-content: center;
    gap: 2rem;
}

footer a {
    color: var(--text-muted);
    text-decoration: none;
    font-size: 0.85rem;
    transition: color 0.2s ease;
}

footer a:hover {
    color: var(--text-secondary);
}

/* Responsive */
@media (min-width: 640px) {
    h1 {
        font-size: 3.5rem;
    }

    h2 {
        font-size: 2.25rem;
    }

    .hero-sub {
        font-size: 1.25rem;
    }

    .hero-clarifier {
        font-size: 1.1rem;
    }

    .hero-reassurance {
        font-size: 0.9rem;
    }

    .hero-cta {
        flex-direction: row;
        max-width: 400px;
    }

    .hero-cta input[type="email"] {
        flex: 1;
    }

    .hero-cta button {
        white-space: nowrap;
    }

    .final-cta-form {
        flex-direction: row;
        max-width: 480px;
    }

    .final-cta-form input[type="email"] {
        flex: 1;
    }

    button {
        white-space: nowrap;
    }

    .trust-builders {
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
    }
}

@media (min-width: 768px) {
    h1 {
        font-size: 4rem;
    }

    .content-section {
        padding: 5rem 1.5rem;
    }

    .price-main {
        font-size: 3.5rem;
    }
}
