:root {
    --primary: #14b8a6;
    /* Teal 500 */
    --primary-hover: #0d9488;
    --secondary: #6366f1;
    /* Indigo 500 */
    --secondary-hover: #4f46e5;
    --background: #0f172a;
    /* Slate 900 */
    --surface: #1e293b;
    /* Slate 800 */
    --surface-light: #334155;
    /* Slate 700 */
    --text: #f8fafc;
    /* Slate 50 */
    --text-muted: #94a3b8;
    /* Slate 400 */
    --border: rgba(255, 255, 255, 0.1);
    --glass-bg: rgba(30, 41, 59, 0.7);
    --glass-border: rgba(255, 255, 255, 0.05);

    --container-width: 1000px;
    --radius: 12px;

    scroll-padding-top: 90px;
}

#how-it-works,
#what-you-get,
#results,
#faq,
#pricing,
#free-trigger-map {
    scroll-margin-top: 90px;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

[id] {
    scroll-margin-top: 100px;
}

.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

body {
    font-family: 'Inter', sans-serif;
    background-color: var(--background);
    color: var(--text);
    line-height: 1.6;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}

h1,
h2,
h3,
h4,
.logo,
.btn {
    font-family: 'Outfit', sans-serif;
}

.container {
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 1.5rem;
}

section {
    position: relative;
}

.section-padding {
    padding: 6rem 0;
}

.text-center {
    text-align: center;
}

.mt-4 {
    margin-top: 2rem;
}

.w-full {
    width: 100%;
}

.hidden {
    display: none;
}

/* Sticky Header */
.sticky-header {
    position: sticky;
    top: 0;
    z-index: 100;
    background: var(--glass-bg);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid var(--glass-border);
    padding: 1rem 0;
}

nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--text);
    text-decoration: none;
    letter-spacing: -0.5px;
}

.logo span {
    color: var(--primary);
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 2rem;
}

.nav-links a {
    color: var(--text-muted);
    text-decoration: none;
    font-size: 0.9rem;
    font-weight: 500;
    transition: color 0.2s;
}

.nav-links li:nth-child(2) {
    display: none;
}

/* Hide 'What you get' in nav to make room for 2nd CTA */

.nav-cta {
    display: flex;
    gap: 0.75rem;
    align-items: center;
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 0.8rem 1.75rem;
    border-radius: var(--radius);
    font-weight: 600;
    text-decoration: none;
    transition: transform 0.2s, background 0.2s, box-shadow 0.2s;
    cursor: pointer;
    border: none;
    text-align: center;
}

.btn:active {
    transform: scale(0.98);
}

.btn-primary {
    background: var(--primary);
    color: white;
    box-shadow: 0 4px 14px rgba(20, 184, 166, 0.4);
}

.btn-primary:hover {
    background: var(--primary-hover);
    box-shadow: 0 6px 20px rgba(20, 184, 166, 0.6);
}

.btn-secondary {
    background: var(--surface-light);
    color: var(--text);
    border: 1px solid var(--border);
}

.btn-secondary:hover {
    background: #475569;
}

.btn-sm {
    padding: 0.5rem 1rem;
    font-size: 0.85rem;
}

/* Hero Section */
.hero {
    padding: 8rem 0 6rem;
    background: linear-gradient(to bottom, rgba(15, 23, 42, 0.8), rgba(15, 23, 42, 0.95)), url('hero-bg.png');
    background-size: cover;
    background-position: center;
    position: relative;
    overflow: hidden;
}

.hero::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 150px;
    background: linear-gradient(to top, var(--background), transparent);
}

.hero-content {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.hero-headline {
    font-size: 3.5rem;
    line-height: 1.1;
    font-weight: 800;
    margin-bottom: 1.5rem;
    letter-spacing: -1px;
}

.hero-subheadline {
    font-size: 1.25rem;
    color: var(--text-muted);
    margin-bottom: 3rem;
    line-height: 1.6;
}

.hero-subheadline strong {
    color: var(--text);
}

.benefit-bullets {
    list-style: none;
    text-align: left;
    max-width: 600px;
    margin: 0 auto 3rem;
    display: grid;
    gap: 1.5rem;
}

.benefit-bullets li {
    display: flex;
    gap: 1rem;
    align-items: flex-start;
}

.benefit-bullets .icon {
    font-size: 1.5rem;
    background: var(--surface);
    padding: 0.5rem;
    border-radius: 8px;
    line-height: 1;
}

.cta-group {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.micro-trust {
    font-size: 0.85rem;
    color: var(--text-muted);
    font-style: italic;
}

/* First Win Block */
.first-win-block {
    background: rgba(20, 184, 166, 0.05);
    border: 1px solid rgba(20, 184, 166, 0.2);
    border-radius: 16px;
    padding: 2rem;
    max-width: 500px;
    margin: 2rem auto;
    text-align: left;
}

.first-win-block h4 {
    color: var(--primary);
    margin-bottom: 1rem;
    font-size: 1.1rem;
    font-weight: 700;
}

.first-win-block ul {
    list-style: none;
    margin-bottom: 1rem;
}

.first-win-block li {
    font-size: 0.95rem;
    margin-bottom: 0.5rem;
    padding-left: 1.5rem;
    position: relative;
}

.first-win-block li::before {
    content: "→";
    position: absolute;
    left: 0;
    color: var(--primary);
}

.first-win-footer {
    font-size: 0.9rem;
    color: var(--text-muted);
    font-style: italic;
}

/* Graphic Section */
.graphic-section {
    padding: 4rem 0;
}

.step-graphic {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: var(--surface);
    padding: 3rem;
    border-radius: 20px;
    border: 1px solid var(--border);
}

.step {
    flex: 1;
    text-align: center;
}

.step-icon {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    background: var(--background);
    width: 80px;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    margin: 0 auto 1.5rem;
    border: 2px solid var(--primary);
}

.step h3 {
    margin-bottom: 0.5rem;
    font-size: 1.25rem;
}

.step p {
    font-size: 0.9rem;
    color: var(--text-muted);
}

.connector {
    width: 60px;
    height: 2px;
    background: var(--border);
    margin: 0 1rem;
}

/* Pain Section */
.section-title {
    font-size: 2.25rem;
    margin-bottom: 4rem;
    font-weight: 700;
}

.pain-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-bottom: 4rem;
}

.pain-card {
    background: var(--surface);
    padding: 2.5rem;
    border-radius: var(--radius);
    border: 1px solid var(--border);
}

.pain-card h3 {
    margin-bottom: 1.5rem;
    color: var(--primary);
    font-size: 1.1rem;
}

.pain-card ul {
    list-style: none;
    display: grid;
    gap: 1rem;
}

.pain-card li {
    font-size: 0.95rem;
    color: var(--text-muted);
    position: relative;
    padding-left: 1.5rem;
}

.pain-card li::before {
    content: "→";
    position: absolute;
    left: 0;
    color: var(--primary);
}

.belief-box {
    background: linear-gradient(135deg, var(--surface) 0%, #172554 100%);
    padding: 4rem;
    border-radius: 20px;
    border: 1px solid var(--secondary);
    margin-bottom: 4rem;
}

.belief-box h3 {
    font-size: 1.5rem;
    margin-bottom: 2rem;
}

.belief-box ul {
    list-style: none;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
}

.belief-box li {
    display: flex;
    gap: 0.75rem;
}

.belief-box li::before {
    content: "✓";
    color: var(--primary);
    font-weight: bold;
}

.callout-card {
    background: var(--primary);
    color: white;
    padding: 1.5rem;
    border-radius: var(--radius);
    text-align: center;
    max-width: 400px;
    margin: 0 auto;
    font-weight: 700;
    font-size: 1.25rem;
}

/* Qualifier Section */
.qualifier-section {
    background: var(--background);
}

.qualifier-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    max-width: 800px;
    margin: 0 auto;
}

.qualifier-box {
    padding: 2.5rem;
    border-radius: 20px;
    border: 1px solid var(--border);
}

.qualifier-box h3 {
    margin-bottom: 1.5rem;
    font-size: 1.25rem;
}

.qualifier-box.yes {
    background: rgba(20, 184, 166, 0.05);
    border-color: rgba(20, 184, 166, 0.2);
}

.qualifier-box.yes h3 {
    color: var(--primary);
}

.qualifier-box.no {
    background: rgba(248, 113, 113, 0.05);
    /* Red-400 tint */
    border-color: rgba(248, 113, 113, 0.1);
}

.qualifier-box.no h3 {
    color: #f87171;
}

.qualifier-box ul {
    list-style: none;
}

.qualifier-box li {
    font-size: 0.95rem;
    margin-bottom: 0.75rem;
    display: flex;
    gap: 0.75rem;
}

.qualifier-box.yes li::before {
    content: "✓";
    color: var(--primary);
}

.qualifier-box.no li::before {
    content: "×";
    color: #f87171;
    font-weight: bold;
}

/* Outcome Section */
.outcome-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-bottom: 6rem;
}

.outcome-block {
    text-align: center;
    padding: 2rem;
}

.outcome-icon {
    font-size: 3rem;
    margin-bottom: 1.5rem;
}

.outcome-block h3 {
    margin-bottom: 1rem;
}

.outcome-block p {
    color: var(--text-muted);
}

.paradigm-section {
    background: var(--surface);
    padding: 5rem;
    border-radius: 20px;
    border: 1px solid var(--border);
}

.paradigm-section h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
}

.paradigm-section p {
    font-size: 1.25rem;
    color: var(--text-muted);
    max-width: 700px;
    margin: 0 auto;
}

/* Product Section */
.badge {
    background: rgba(20, 184, 166, 0.1);
    color: var(--primary);
    padding: 0.4rem 1rem;
    border-radius: 999px;
    font-size: 0.85rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.product-intro h1 {
    font-size: 3rem;
    margin: 1.5rem 0;
}

.product-intro p {
    font-size: 1.25rem;
    color: var(--text-muted);
    margin-bottom: 4rem;
}

.what-you-get-grid {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 4rem;
    align-items: center;
}

.get-list h3 {
    font-size: 1.5rem;
    margin-bottom: 2rem;
}

.get-list ul {
    list-style: none;
    display: grid;
    gap: 1.25rem;
}

.get-list li {
    display: flex;
    gap: 1rem;
    font-weight: 500;
}

.get-list li::before {
    content: "🎁";
}

.founder-note .note-box {
    background: var(--surface);
    padding: 3rem;
    border-radius: 20px;
    border-left: 4px solid var(--primary);
    font-style: italic;
}

.founder-note p {
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
}

.founder-note cite {
    font-weight: 700;
    color: var(--text);
    font-style: normal;
}

/* Pricing Section */
.pricing-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2.5rem;
    max-width: 900px;
    margin: 0 auto;
}

.pricing-card {
    background: var(--surface);
    padding: 3rem;
    border-radius: 24px;
    border: 1px solid var(--border);
    display: flex;
    flex-direction: column;
    position: relative;
}

.pricing-card.featured {
    border: 2px solid var(--primary);
    transform: scale(1.05);
    background: linear-gradient(135deg, var(--surface) 0%, #0f172a 100%);
}

.featured-badge {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--primary);
    color: white;
    padding: 0.4rem 1.25rem;
    border-radius: 999px;
    font-size: 0.8rem;
    font-weight: 800;
    text-transform: uppercase;
}

.card-header h3 {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
}

.price {
    font-size: 3rem;
    font-weight: 800;
    margin-bottom: 2rem;
}

.card-desc {
    color: var(--text-muted);
    margin-bottom: 1.5rem;
}

.form-hint {
    font-size: 0.9rem;
    color: var(--primary);
    font-weight: 600;
    margin-bottom: 1rem;
    text-align: center;
}

.card-mini-list {
    background: var(--surface-light);
    padding: 1rem;
    border-radius: 12px;
    margin-bottom: 1.5rem;
}

.card-mini-list p {
    font-size: 0.85rem;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.card-mini-list p:first-child {
    margin-bottom: 0.5rem;
}

.free-mini-list {
    list-style: none;
    display: grid;
    gap: 0.5rem;
    margin: 0 0 1rem 0;
    padding: 0;
    color: var(--text);
    font-weight: 600;
}

.free-mini-list li {
    display: flex;
    gap: 0.5rem;
    align-items: center;
}

.free-mini-list li::before {
    content: "✓";
    color: var(--primary);
    font-weight: 800;
}

.free-microcopy {
    font-size: 0.85rem;
    color: var(--text-muted);
    text-align: center;
    margin-top: 0.5rem;
}

.input-microcopy {
    display: block;
    font-size: 0.75rem;
    color: var(--text-muted);
    margin-top: 0.25rem;
}

.btn-note {
    font-size: 0.8rem;
    color: var(--text-muted);
    margin-top: 0.5rem;
    text-align: center;
}

.success-hint {
    font-size: 0.9rem;
    color: var(--text-muted);
    margin-bottom: 1.5rem;
}

.success-tip {
    color: var(--text-muted);
    font-weight: 500;
    font-size: 0.95rem;
    margin-bottom: 1rem;
}

.email-form input {
    background: var(--background);
    border: 1px solid var(--border);
    padding: 0.8rem 1rem;
    border-radius: 8px;
    color: white;
    outline: none;
}

.email-form input:focus {
    border-color: var(--primary);
}

.success-message {
    margin-top: 1rem;
    color: var(--text);
    text-align: center;
}

.success-message p {
    color: var(--primary);
    font-weight: 700;
    font-size: 1.1rem;
    margin-bottom: 1rem;
}

.success-next-step {
    color: var(--secondary);
    text-decoration: none;
    font-weight: 600;
    font-size: 0.95rem;
    border-bottom: 1px solid var(--secondary);
    transition: opacity 0.2s;
}

.success-next-step:hover {
    opacity: 0.8;
}

.free-tier {
    background: var(--background);
    border-color: var(--surface-light);
}

.card-benefits {
    list-style: none;
    margin-bottom: 2.5rem;
    flex-grow: 1;
}

.card-benefits li {
    margin-bottom: 1rem;
    display: flex;
    gap: 0.75rem;
}

.card-benefits li::before {
    content: "✓";
    color: var(--primary);
}

.restart-line {
    margin-top: 2rem;
    font-size: 0.85rem;
    color: var(--text-muted);
    text-align: center;
}

/* Restart Section */
.restart-box {
    background: var(--surface);
    padding: 4rem;
    border-radius: 20px;
    text-align: center;
}

.restart-steps {
    display: flex;
    justify-content: center;
    gap: 2rem;
    margin: 3rem 0;
}

.r-step {
    background: var(--background);
    padding: 1rem 2rem;
    border-radius: 999px;
    border: 1px solid var(--border);
    font-weight: 600;
}

/* Social Proof */
.testimonial-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.testimonial-card {
    background: var(--surface);
    padding: 2.5rem;
    border-radius: var(--radius);
    border: 1px solid var(--border);
}

.testimonial-card p {
    font-style: italic;
    margin-bottom: 1.5rem;
}

.testimonial-card cite {
    font-weight: 700;
}

/* FAQ Objection box */
.faq-objection-box {
    background: var(--surface);
    border: 1px solid var(--primary);
    padding: 2.5rem;
    border-radius: 20px;
    margin-bottom: 4rem;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.faq-objection-box h4 {
    color: var(--primary);
    font-size: 1.25rem;
    margin-bottom: 1.5rem;
    text-align: center;
}

.faq-objection-box ul {
    list-style: none;
    max-width: 500px;
    margin: 0 auto;
}

.faq-objection-box li {
    margin-bottom: 0.75rem;
    display: flex;
    gap: 0.75rem;
    font-weight: 500;
}

.faq-objection-box li::before {
    content: "🛡️";
}

.faq-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 3rem;
}

.faq-item h4 {
    font-size: 1.1rem;
    margin-bottom: 1rem;
    color: var(--primary);
}

.faq-item p {
    color: var(--text-muted);
}

/* Footer */
footer {
    padding: 4rem 0;
    border-top: 1px solid var(--border);
    margin-top: 6rem;
}

.footer-links {
    display: flex;
    justify-content: center;
    gap: 2rem;
    margin-bottom: 2rem;
}

.footer-links a {
    color: var(--text-muted);
    text-decoration: none;
}

.copyright {
    text-align: center;
    color: var(--text-muted);
    font-size: 0.85rem;
}

.disclaimer-section {
    padding: 2rem 0;
    color: var(--text-muted);
    font-size: 0.85rem;
    font-style: italic;
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.hero-content,
.pain-card,
.outcome-block,
.pricing-card,
.restart-box {
    animation: fadeInUp 0.8s ease-out forwards;
}

.pain-card:nth-child(2) {
    animation-delay: 0.1s;
}

.pain-card:nth-child(3) {
    animation-delay: 0.2s;
}

.outcome-block:nth-child(2) {
    animation-delay: 0.1s;
}

.outcome-block:nth-child(3) {
    animation-delay: 0.2s;
}

/* Mobile Responsive */
@media (max-width: 900px) {
    .nav-links {
        display: none;
    }

    .hero-headline {
        font-size: 2.5rem;
    }

    .step-graphic {
        flex-direction: column;
        gap: 2rem;
    }

    .connector {
        width: 2px;
        height: 40px;
        margin: 0;
    }

    .pain-grid,
    .outcome-grid,
    .faq-grid,
    .testimonial-grid {
        grid-template-columns: 1fr;
    }

    .belief-box ul {
        grid-template-columns: 1fr;
    }

    .what-you-get-grid {
        grid-template-columns: 1fr;
    }

    .pricing-grid {
        grid-template-columns: 1fr;
    }

    .pricing-card.featured {
        transform: none;
    }

    .restart-steps {
        flex-direction: column;
        gap: 1rem;
    }
}