/* ═══ REBUILT & REWIRED — BRAND SYSTEM ═══ */

:root {
    --navy: #0A0E5D;
    --navy-deep: #060b54;
    --gold: #B49554;
    --gold-light: #e8c97a;
    --gold-gradient: linear-gradient(135deg, #c09853 0%, #e8c97a 40%, #c09853 60%, #a07840 100%);
    --cream: #EDECE1;
    --cream-light: #F8F7F4;
    --coral: #C4644E;
    --dark: #1A1A2E;
    --gray: #6B7280;
    --gray-light: #D1D5DB;
    --white: #FFFFFF;
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Libre Franklin', 'Helvetica Neue', sans-serif;
    color: var(--dark);
    background: var(--white);
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
}

/* ═══ TYPOGRAPHY ═══ */

h1, h2, h3 {
    font-family: 'Lora', Georgia, serif;
    font-weight: 700;
    line-height: 1.25;
}

h1 { font-size: clamp(2rem, 5vw, 3.25rem); }
h2 { font-size: clamp(1.5rem, 3.5vw, 2.25rem); }
h3 { font-size: clamp(1.125rem, 2.5vw, 1.5rem); }

p {
    font-size: 1rem;
    line-height: 1.75;
    color: var(--gray);
}

/* ═══ LAYOUT ═══ */

.section {
    padding: 5.5rem 1.5rem;
}

.container {
    max-width: 960px;
    margin: 0 auto;
}

.container-narrow {
    max-width: 640px;
    margin: 0 auto;
}

/* ═══ NAVIGATION ═══ */

.nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 100;
    background: rgba(6, 11, 84, 0.95);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-bottom: 1px solid rgba(180, 149, 84, 0.15);
    padding: 0 1.5rem;
}

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

.nav-logo {
    height: 52px;
    width: auto;
    filter: drop-shadow(0 0 10px rgba(192, 152, 83, 0.8)) drop-shadow(0 0 20px rgba(192, 152, 83, 0.4));
    mix-blend-mode: lighten;
}

.nav-brand {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    text-decoration: none;
}

.nav-brand-text {
    font-family: 'Libre Franklin', sans-serif;
    font-size: 0.7rem;
    font-weight: 600;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--gold);
}

.nav-links {
    display: flex;
    gap: 2rem;
    align-items: center;
    list-style: none;
}

.nav-links a {
    font-size: 0.8rem;
    font-weight: 500;
    letter-spacing: 0.05em;
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    transition: color 0.2s ease;
}

.nav-links a:hover {
    color: var(--gold);
}

.nav-links .btn-nav {
    background: var(--gold-gradient);
    color: var(--navy);
    padding: 0.5rem 1.25rem;
    border-radius: 4px;
    font-weight: 700;
    font-size: 0.75rem;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.nav-links .btn-nav:hover {
    filter: brightness(1.1);
    color: var(--navy);
}

/* Mobile nav toggle */
.nav-toggle {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
}

.nav-toggle span {
    display: block;
    width: 22px;
    height: 2px;
    background: var(--gold);
    margin: 5px 0;
    transition: all 0.3s ease;
}

/* ═══ HERO ═══ */

.hero {
    background: var(--navy-deep);
    background-image:
        radial-gradient(ellipse 80% 50% at 50% 50%, var(--navy) 0%, var(--navy-deep) 70%),
        radial-gradient(circle at 20% 30%, rgba(192, 152, 83, 0.06) 0%, transparent 50%),
        radial-gradient(circle at 80% 70%, rgba(192, 152, 83, 0.04) 0%, transparent 40%);
    padding: 10rem 1.5rem 6rem;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.hero::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 120px;
    background: linear-gradient(to bottom, transparent, var(--cream));
}

.hero-label {
    font-family: 'Libre Franklin', sans-serif;
    font-size: 0.7rem;
    font-weight: 600;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 1.5rem;
}

.hero h1 {
    color: var(--white);
    margin-bottom: 1.25rem;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.hero h1 em {
    font-style: normal;
    background: var(--gold-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-sub {
    font-family: 'Lora', Georgia, serif;
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.6);
    font-style: italic;
    max-width: 500px;
    margin: 0 auto 2.5rem;
    line-height: 1.7;
}

.hero-cta {
    display: inline-flex;
    gap: 1rem;
    flex-wrap: wrap;
    justify-content: center;
}

/* ═══ BUTTONS ═══ */

.btn {
    display: inline-block;
    padding: 1rem 2rem;
    border-radius: 6px;
    font-family: 'Libre Franklin', sans-serif;
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    text-decoration: none;
    cursor: pointer;
    border: none;
    transition: all 0.25s ease;
}

.btn-gold {
    background: var(--gold-gradient);
    color: var(--navy);
    box-shadow: 0 4px 16px rgba(192, 152, 83, 0.3);
}

.btn-gold:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 24px rgba(192, 152, 83, 0.4);
    filter: brightness(1.05);
}

.btn-outline {
    background: transparent;
    color: var(--white);
    border: 1px solid rgba(255, 255, 255, 0.3);
}

.btn-outline:hover {
    border-color: var(--gold);
    color: var(--gold);
}

.btn-dark {
    background: var(--navy);
    color: var(--white);
}

.btn-dark:hover {
    background: var(--navy-deep);
    transform: translateY(-2px);
    box-shadow: 0 4px 16px rgba(6, 11, 84, 0.3);
}

/* ═══ PAIN POINTS ═══ */

.pain-points {
    background: var(--cream);
}

.pain-list {
    list-style: none;
    max-width: 560px;
    margin: 2rem auto 0;
}

.pain-list li {
    display: flex;
    align-items: flex-start;
    gap: 0.875rem;
    padding: 0.75rem 0;
    font-size: 1rem;
    line-height: 1.65;
    color: var(--dark);
}

.pain-list li::before {
    content: '→';
    color: var(--coral);
    font-weight: 700;
    flex-shrink: 0;
    margin-top: 0.1em;
}

.pain-closing {
    font-family: 'Lora', Georgia, serif;
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--navy);
    text-align: center;
    margin-top: 2.5rem;
}

/* ═══ METHOD ═══ */

.method {
    background: var(--white);
}

.method-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 0;
    margin-top: 2.5rem;
    max-width: 560px;
    margin-left: auto;
    margin-right: auto;
}

.method-step {
    display: flex;
    gap: 1.25rem;
    align-items: flex-start;
    padding: 1.25rem 1.5rem;
    border-bottom: 1px solid rgba(6, 11, 84, 0.06);
}

.method-step:last-child {
    border-bottom: none;
}

.method-letter {
    width: 48px;
    height: 48px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Lora', Georgia, serif;
    font-size: 1.35rem;
    font-weight: 700;
    color: var(--white);
    flex-shrink: 0;
}

.method-step h3 {
    font-size: 1.1rem;
    color: var(--navy);
    margin-bottom: 0.25rem;
}

.method-step p {
    font-size: 0.95rem;
    line-height: 1.6;
}

/* ═══ ABOUT ═══ */

.about {
    background: var(--cream);
}

.about-label {
    font-family: 'Libre Franklin', sans-serif;
    font-size: 0.7rem;
    font-weight: 600;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 1rem;
}

.about p {
    color: var(--dark);
    margin-bottom: 1rem;
    font-size: 1.05rem;
    line-height: 1.8;
}

.about p strong {
    color: var(--navy);
    font-size: 1.1rem;
}

/* ═══ QUIZ CTA ═══ */

.quiz-cta {
    background: var(--navy-deep);
    text-align: center;
}

.quiz-cta h2 {
    color: var(--white);
    margin-bottom: 0.75rem;
}

.quiz-cta p {
    color: rgba(255, 255, 255, 0.6);
    font-style: italic;
    font-family: 'Lora', Georgia, serif;
    margin-bottom: 2rem;
}

/* ═══ EMAIL CAPTURE ═══ */

.email-section {
    background: var(--cream-light);
    text-align: center;
    border-top: 1px solid rgba(6, 11, 84, 0.06);
    border-bottom: 1px solid rgba(6, 11, 84, 0.06);
}

.email-section h2 {
    color: var(--navy);
    margin-bottom: 0.5rem;
}

.email-section > .container-narrow > p {
    margin-bottom: 2rem;
}

.email-form {
    display: flex;
    gap: 0.75rem;
    max-width: 440px;
    margin: 0 auto;
}

.email-form input[type="email"] {
    flex: 1;
    padding: 1rem 1.25rem;
    border: 1px solid var(--gray-light);
    border-radius: 6px;
    font-family: 'Libre Franklin', sans-serif;
    font-size: 0.95rem;
    color: var(--dark);
    outline: none;
}

.email-form input[type="email"]:focus {
    border-color: var(--gold);
    box-shadow: 0 0 0 3px rgba(180, 149, 84, 0.15);
}

.email-privacy {
    font-size: 0.7rem;
    color: var(--gray);
    margin-top: 0.75rem;
}

/* ═══ SOCIAL ═══ */

.social-links {
    display: flex;
    gap: 1rem;
    justify-content: center;
    margin-top: 1.5rem;
}

.social-links a {
    padding: 0.6rem 1.25rem;
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 4px;
    color: var(--gold);
    text-decoration: none;
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.05em;
    transition: all 0.2s ease;
}

.social-links a:hover {
    border-color: var(--gold);
    background: rgba(180, 149, 84, 0.1);
}

/* ═══ FOOTER ═══ */

.footer {
    background: var(--navy-deep);
    padding: 2.5rem 1.5rem;
    text-align: center;
}

.footer p {
    font-size: 0.7rem;
    color: rgba(255, 255, 255, 0.3);
    line-height: 1.8;
}

.footer a {
    color: var(--gold);
    text-decoration: none;
}

/* ═══ QUOTE BANNER ═══ */

.quote-banner {
    background: var(--navy-deep);
    padding: 3.5rem 1.5rem;
    text-align: center;
}

.quote-banner blockquote {
    font-family: 'Lora', Georgia, serif;
    font-size: clamp(1.1rem, 2.5vw, 1.4rem);
    font-style: italic;
    color: var(--gold);
    line-height: 1.6;
    max-width: 500px;
    margin: 0 auto;
}

/* ═══ BUY PAGE ═══ */

.buy-hero {
    background: var(--navy-deep);
    padding: 9rem 1.5rem 4rem;
    text-align: center;
}

.buy-hero h1 {
    color: var(--white);
    margin-bottom: 0.75rem;
}

.buy-hero .price {
    font-family: 'Lora', Georgia, serif;
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--gold);
    margin-bottom: 0.5rem;
}

.buy-hero .price-sub {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.5);
    margin-bottom: 2rem;
}

.whats-inside {
    background: var(--cream);
}

.check-list {
    list-style: none;
    max-width: 560px;
    margin: 2rem auto 0;
}

.check-list li {
    display: flex;
    align-items: flex-start;
    gap: 0.875rem;
    padding: 0.6rem 0;
    font-size: 0.95rem;
    line-height: 1.6;
    color: var(--dark);
}

.check-list li::before {
    content: '✓';
    color: var(--gold);
    font-weight: 700;
    flex-shrink: 0;
}

.who-for {
    background: var(--navy-deep);
}

.who-for h2 {
    color: var(--white);
    text-align: center;
    margin-bottom: 2rem;
}

.who-list {
    list-style: none;
    max-width: 560px;
    margin: 0 auto;
}

.who-list li {
    display: flex;
    align-items: flex-start;
    gap: 0.875rem;
    padding: 0.6rem 0;
    font-size: 0.95rem;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.8);
}

.who-list li::before {
    content: '◆';
    color: var(--gold);
    flex-shrink: 0;
}

.objections {
    background: var(--white);
}

.objection-item {
    margin-bottom: 1.75rem;
}

.objection-item h3 {
    font-family: 'Lora', Georgia, serif;
    font-size: 1rem;
    color: var(--navy);
    margin-bottom: 0.35rem;
}

.objection-item p {
    font-size: 0.9rem;
}

.final-cta {
    background: var(--cream);
    text-align: center;
}

.final-cta h2 {
    color: var(--navy);
    margin-bottom: 0.5rem;
}

.trust-badges {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    flex-wrap: wrap;
    margin-top: 1.5rem;
}

.trust-badges span {
    font-size: 0.75rem;
    color: var(--gray);
    display: flex;
    align-items: center;
    gap: 0.4rem;
}

.trust-badges span::before {
    content: '●';
    color: var(--gold);
    font-size: 0.4rem;
}

/* ═══ ANIMATIONS ═══ */

.fade-in {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

/* ═══ RESPONSIVE ═══ */

@media (max-width: 768px) {
    .nav-links {
        display: none;
        position: absolute;
        top: 64px;
        left: 0;
        right: 0;
        background: var(--navy-deep);
        flex-direction: column;
        padding: 1.5rem;
        gap: 1rem;
        border-bottom: 1px solid rgba(180, 149, 84, 0.15);
    }

    .nav-links.open {
        display: flex;
    }

    .nav-toggle {
        display: block;
    }

    .hero {
        padding: 8rem 1.5rem 5rem;
    }

    .section {
        padding: 3.5rem 1.5rem;
    }

    .hero-cta {
        flex-direction: column;
        align-items: center;
    }

    .email-form {
        flex-direction: column;
    }

    .social-links {
        flex-direction: column;
        align-items: center;
    }

    .method-grid {
        grid-template-columns: 1fr;
    }
}
