/* ===== RESET & BASE ===== */
*, *::before, *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --navy: #0a0e27;
    --navy-light: #111640;
    --navy-mid: #161b4a;
    --purple-deep: #1a1145;
    --amber: #e8a838;
    --amber-light: #f0c060;
    --amber-glow: #e8a83840;
    --gold: #d4a44a;
    --white: #ffffff;
    --white-soft: #e0e4f0;
    --white-muted: #8890b5;
    --glass: rgba(255, 255, 255, 0.04);
    --glass-border: rgba(255, 255, 255, 0.08);
    --radius: 16px;
    --radius-sm: 10px;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    background: var(--navy);
    color: var(--white);
    line-height: 1.7;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}

h1, h2, h3 {
    font-family: 'Space Grotesk', 'Inter', sans-serif;
    line-height: 1.2;
    font-weight: 700;
}

.container {
    max-width: 1140px;
    margin: 0 auto;
    padding: 0 24px;
}

a {
    text-decoration: none;
    color: inherit;
}

/* ===== ANIMATIONS ===== */
.fade-in {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.7s ease, transform 0.7s ease;
}

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

@keyframes gradientMove {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}

@keyframes float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-8px); }
}

@keyframes glow-pulse {
    0%, 100% { box-shadow: 0 0 20px var(--amber-glow), 0 0 40px rgba(232, 168, 56, 0.15); }
    50% { box-shadow: 0 0 30px var(--amber-glow), 0 0 60px rgba(232, 168, 56, 0.25); }
}

@keyframes scrollDown {
    0% { transform: translateY(0); opacity: 1; }
    50% { transform: translateY(12px); opacity: 0.3; }
    100% { transform: translateY(0); opacity: 1; }
}

/* ===== BUTTONS ===== */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 16px 36px;
    border-radius: 60px;
    font-family: 'Space Grotesk', sans-serif;
    font-weight: 600;
    font-size: 1.05rem;
    cursor: pointer;
    transition: all 0.3s ease;
    border: none;
}

.btn-primary {
    background: linear-gradient(135deg, var(--amber), var(--gold));
    color: var(--navy);
}

.btn-primary:hover {
    transform: translateY(-2px);
    filter: brightness(1.1);
}

.btn-glow {
    animation: glow-pulse 3s ease-in-out infinite;
}

.btn-arrow {
    font-size: 1.2rem;
    transition: transform 0.3s ease;
}

.btn:hover .btn-arrow {
    transform: translateX(4px);
}

.btn-full {
    width: 100%;
    justify-content: center;
}

.btn-large {
    padding: 20px 48px;
    font-size: 1.15rem;
}

/* ===== NAV ===== */
.nav {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    z-index: 100;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 24px 40px;
}

.nav-logo {
    display: flex;
    align-items: center;
    gap: 10px;
}

.logo-icon {
    color: var(--amber);
    font-size: 1.4rem;
}

.logo-text {
    font-family: 'Space Grotesk', sans-serif;
    font-weight: 600;
    font-size: 1.2rem;
    letter-spacing: -0.5px;
}

.logo-accent {
    color: var(--amber);
}

.nav-cta {
    padding: 10px 24px;
    border: 1px solid var(--amber);
    border-radius: 60px;
    font-family: 'Space Grotesk', sans-serif;
    font-weight: 500;
    font-size: 0.9rem;
    color: var(--amber);
    transition: all 0.3s ease;
}

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

/* ===== HERO ===== */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 120px 24px 80px;
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    inset: 0;
    background: linear-gradient(-45deg, var(--navy), var(--purple-deep), var(--navy-mid), #0d1235);
    background-size: 400% 400%;
    animation: gradientMove 15s ease infinite;
    z-index: 0;
}

.hero-bg::after {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse at 50% 30%, rgba(232, 168, 56, 0.06) 0%, transparent 60%);
}

.hero-content {
    position: relative;
    z-index: 1;
    max-width: 780px;
}

.hero-badge {
    display: inline-block;
    padding: 6px 20px;
    border: 1px solid var(--amber);
    border-radius: 60px;
    font-size: 0.8rem;
    font-weight: 500;
    color: var(--amber);
    letter-spacing: 1.5px;
    text-transform: uppercase;
    margin-bottom: 32px;
    animation: float 4s ease-in-out infinite;
}

.hero h1 {
    font-size: clamp(2.4rem, 5.5vw, 4rem);
    font-weight: 800;
    line-height: 1.15;
    margin-bottom: 24px;
    background: linear-gradient(135deg, var(--white), var(--white-soft));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-sub {
    font-size: clamp(1.05rem, 2vw, 1.25rem);
    color: var(--white-muted);
    margin-bottom: 40px;
    max-width: 560px;
    margin-left: auto;
    margin-right: auto;
}

.hero-micro {
    margin-top: 16px;
    font-size: 0.85rem;
    color: var(--white-muted);
}

.hero-scroll {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 1;
}

.scroll-line {
    width: 1px;
    height: 40px;
    background: var(--amber);
    opacity: 0.4;
    animation: scrollDown 2s ease-in-out infinite;
}

/* ===== PROBLEM ===== */
.problem {
    padding: 120px 24px;
    background: var(--navy);
    position: relative;
}

.problem::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 1px;
    height: 80px;
    background: linear-gradient(to bottom, var(--amber), transparent);
    opacity: 0.3;
}

.problem-content {
    max-width: 700px;
    margin: 0 auto;
    text-align: center;
}

.problem-line {
    font-family: 'Space Grotesk', sans-serif;
    font-size: clamp(1.3rem, 3vw, 1.8rem);
    font-weight: 400;
    color: var(--white-muted);
    margin-bottom: 28px;
    line-height: 1.5;
}

.problem-punch {
    font-size: clamp(1.6rem, 3.5vw, 2.2rem);
    font-weight: 700;
    color: var(--amber);
    margin-top: 12px;
}

/* ===== SECTION HEADERS ===== */
.section-header {
    text-align: center;
    margin-bottom: 64px;
}

.section-tag {
    display: inline-block;
    padding: 6px 18px;
    background: var(--glass);
    border: 1px solid var(--glass-border);
    border-radius: 60px;
    font-size: 0.8rem;
    font-weight: 500;
    color: var(--amber);
    letter-spacing: 1px;
    text-transform: uppercase;
    margin-bottom: 20px;
}

.section-header h2 {
    font-size: clamp(1.8rem, 4vw, 2.8rem);
    font-weight: 700;
}

/* ===== WHAT'S INSIDE ===== */
.inside {
    padding: 120px 24px;
    background: linear-gradient(180deg, var(--navy), var(--navy-light));
}

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

.feature-card {
    background: var(--glass);
    border: 1px solid var(--glass-border);
    border-radius: var(--radius);
    padding: 36px 28px;
    transition: all 0.4s ease;
}

.feature-card:hover {
    border-color: rgba(232, 168, 56, 0.2);
    background: rgba(255, 255, 255, 0.06);
    transform: translateY(-4px);
}

.feature-icon {
    width: 56px;
    height: 56px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, rgba(232, 168, 56, 0.12), rgba(232, 168, 56, 0.04));
    border-radius: 14px;
    color: var(--amber);
    margin-bottom: 20px;
}

.feature-card h3 {
    font-size: 1.15rem;
    margin-bottom: 10px;
}

.feature-card p {
    font-size: 0.92rem;
    color: var(--white-muted);
    line-height: 1.65;
}

/* ===== HOW IT WORKS ===== */
.how {
    padding: 120px 24px;
    background: var(--navy-light);
}

.steps {
    max-width: 680px;
    margin: 0 auto;
}

.step {
    display: flex;
    gap: 28px;
    align-items: flex-start;
    padding: 28px 0;
    border-bottom: 1px solid var(--glass-border);
}

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

.step-num {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 2.4rem;
    font-weight: 700;
    color: var(--amber);
    opacity: 0.3;
    min-width: 60px;
    line-height: 1;
    padding-top: 4px;
}

.step-content h3 {
    font-size: 1.2rem;
    margin-bottom: 6px;
}

.step-content p {
    font-size: 0.95rem;
    color: var(--white-muted);
}

/* ===== NUMBERS ===== */
.numbers {
    padding: 100px 24px;
    background: var(--navy);
    position: relative;
}

.numbers::before,
.numbers::after {
    content: '';
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    width: 1px;
    height: 60px;
    background: linear-gradient(to bottom, transparent, var(--amber), transparent);
    opacity: 0.2;
}

.numbers::before { top: 0; }
.numbers::after { bottom: 0; }

.numbers-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 32px;
    text-align: center;
}

.number-value {
    font-family: 'Space Grotesk', sans-serif;
    font-size: clamp(2.4rem, 5vw, 3.4rem);
    font-weight: 700;
    color: var(--amber);
    margin-bottom: 8px;
}

.number-label {
    font-size: 0.9rem;
    color: var(--white-muted);
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 500;
}

/* ===== TESTIMONIALS ===== */
.testimonials {
    padding: 120px 24px;
    background: linear-gradient(180deg, var(--navy), var(--navy-light));
}

.testimonial-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 32px;
}

.testimonial-card {
    background: var(--glass);
    border: 1px solid var(--glass-border);
    border-radius: var(--radius);
    padding: 40px 32px;
    position: relative;
    transition: all 0.4s ease;
}

.testimonial-card:hover {
    border-color: rgba(232, 168, 56, 0.15);
}

.testimonial-quote {
    font-family: Georgia, serif;
    font-size: 4rem;
    color: var(--amber);
    opacity: 0.25;
    line-height: 1;
    margin-bottom: -10px;
}

.testimonial-card p {
    font-size: 1.05rem;
    color: var(--white-soft);
    line-height: 1.7;
    margin-bottom: 28px;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 14px;
}

.author-avatar {
    width: 44px;
    height: 44px;
    border-radius: 12px;
    background: linear-gradient(135deg, var(--amber), var(--gold));
    color: var(--navy);
    font-family: 'Space Grotesk', sans-serif;
    font-weight: 700;
    font-size: 0.85rem;
    display: flex;
    align-items: center;
    justify-content: center;
}

.author-name {
    font-weight: 600;
    font-size: 0.95rem;
}

.author-role {
    font-size: 0.8rem;
    color: var(--white-muted);
}

/* ===== PRICING ===== */
.pricing {
    padding: 120px 24px;
    background: var(--navy-light);
}

.pricing-card {
    max-width: 520px;
    margin: 0 auto;
    background: linear-gradient(135deg, rgba(255,255,255,0.06), rgba(255,255,255,0.02));
    border: 1px solid var(--glass-border);
    border-radius: var(--radius);
    padding: 48px 40px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.pricing-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--amber), var(--gold), var(--amber));
}

.pricing-badge {
    display: inline-block;
    padding: 6px 18px;
    background: rgba(232, 168, 56, 0.1);
    border: 1px solid rgba(232, 168, 56, 0.2);
    border-radius: 60px;
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--amber);
    margin-bottom: 28px;
}

.pricing-amount {
    margin-bottom: 8px;
    display: flex;
    align-items: flex-start;
    justify-content: center;
    gap: 4px;
}

.pricing-dollar {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 1.6rem;
    font-weight: 600;
    color: var(--amber);
    padding-top: 12px;
}

.pricing-number {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 5rem;
    font-weight: 800;
    line-height: 1;
    color: var(--white);
}

.pricing-period {
    font-size: 1.1rem;
    color: var(--white-muted);
    padding-top: 16px;
}

.pricing-note {
    color: var(--white-muted);
    font-size: 0.9rem;
    margin-bottom: 36px;
}

.pricing-features {
    list-style: none;
    text-align: left;
    margin-bottom: 36px;
}

.pricing-features li {
    padding: 10px 0;
    border-bottom: 1px solid var(--glass-border);
    font-size: 0.95rem;
    color: var(--white-soft);
    display: flex;
    align-items: center;
    gap: 12px;
}

.pricing-features li:last-child {
    border-bottom: none;
}

.check {
    color: var(--amber);
    font-weight: 700;
    font-size: 1rem;
}

.pricing-affiliate {
    margin-top: 20px;
    font-size: 0.85rem;
    color: var(--white-muted);
    font-style: italic;
}

/* ===== MANIFESTO ===== */
.manifesto {
    padding: 120px 24px;
    background: var(--navy);
    position: relative;
}

.manifesto-content {
    max-width: 700px;
    margin: 0 auto;
    text-align: center;
}

.manifesto-content h2 {
    font-size: clamp(1.8rem, 4vw, 2.6rem);
    margin-bottom: 40px;
    margin-top: 20px;
}

.manifesto-text p {
    font-size: 1.08rem;
    color: var(--white-soft);
    margin-bottom: 24px;
    line-height: 1.8;
}

.manifesto-text em {
    color: var(--amber);
    font-style: italic;
}

.manifesto-closing {
    margin-top: 40px;
    font-family: 'Space Grotesk', sans-serif;
    font-size: 1.3rem !important;
    font-weight: 600;
    color: var(--white) !important;
    line-height: 1.5 !important;
}

/* ===== CTA FOOTER ===== */
.cta-footer {
    padding: 120px 24px;
    background: linear-gradient(180deg, var(--navy), var(--purple-deep));
    text-align: center;
    position: relative;
}

.cta-footer::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse at 50% 50%, rgba(232, 168, 56, 0.05) 0%, transparent 60%);
}

.cta-content {
    position: relative;
    z-index: 1;
}

.cta-content h2 {
    font-size: clamp(2.4rem, 5vw, 4rem);
    font-weight: 800;
    margin-bottom: 12px;
}

.cta-content p {
    font-size: 1.15rem;
    color: var(--white-muted);
    margin-bottom: 40px;
}

/* ===== FOOTER ===== */
.footer {
    padding: 32px 24px;
    background: rgba(0,0,0,0.3);
}

.footer-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.footer-copy {
    font-size: 0.8rem;
    color: var(--white-muted);
}

/* ===== RESPONSIVE ===== */
@media (max-width: 900px) {
    .features-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .numbers-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 40px 24px;
    }
}

@media (max-width: 700px) {
    .nav {
        padding: 18px 20px;
    }
    .features-grid {
        grid-template-columns: 1fr;
    }
    .testimonial-grid {
        grid-template-columns: 1fr;
    }
    .numbers-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .step {
        gap: 18px;
    }
    .step-num {
        font-size: 1.8rem;
        min-width: 45px;
    }
    .pricing-card {
        padding: 36px 24px;
    }
    .pricing-number {
        font-size: 4rem;
    }
    .footer-inner {
        flex-direction: column;
        gap: 12px;
        text-align: center;
    }
    .hero {
        padding: 100px 20px 60px;
    }
    .problem,
    .inside,
    .how,
    .testimonials,
    .pricing,
    .manifesto,
    .cta-footer {
        padding: 80px 20px;
    }
    .numbers {
        padding: 60px 20px;
    }
}

@media (max-width: 480px) {
    .numbers-grid {
        grid-template-columns: 1fr 1fr;
        gap: 32px 16px;
    }
    .btn {
        padding: 14px 28px;
        font-size: 0.95rem;
    }
    .btn-large {
        padding: 16px 36px;
    }
}
