/* Google Fonts — Bebas Neue + Barlow Condensed (all needed weights) + Barlow body */
@import url('https://fonts.googleapis.com/css2?family=Bebas+Neue&family=Barlow+Condensed:wght@400;600;700&family=Barlow:ital,wght@0,300;0,400;0,500;0,600;0,700;1,300;1,400&display=swap');

:root {
    --black: #0a0a0a;
    --red: #d42b2b;
    --red-dark: #9e1a1a;
    --gold: #c9a84c;
    --white: #f5f0e8;
    --grey: #1a1a1a;
    --grey-mid: #2a2a2a;
    --grey-light: #383838;
    --muted: #777;
}


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


body {
    background: var(--black);
    color: var(--white);
    font-family: 'Barlow', sans-serif;
    font-weight: 300;
    line-height: 1.6;
    overflow-x: hidden;
}

html {
    scroll-behavior: smooth;
}

.section {
    padding: 80px 32px;
}

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

.section-label {
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 5px;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 10px;
}

.section-title {
    font-family: 'Bebas Neue', sans-serif;
    font-size: clamp(40px, 7vw, 68px);
    line-height: 1;
    letter-spacing: 1px;
    margin-bottom: 20px;
}

.section-title span {
    color: var(--red);
}



/* ================================================
NAVBAR
================================================ */


nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 100;
    padding: 16px 32px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: rgba(10, 10, 10, 0.92);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.nav-logo {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 22px;
    letter-spacing: 3px;
    color: var(--white);
    text-decoration: none;
}

.nav-logo span {
    color: var(--red);
}

.nav-cta {
    background: var(--red);
    color: var(--white);
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    padding: 10px 22px;
    text-decoration: none;
    transition: background 0.2s;
}

.nav-cta:hover {
    background: var(--red-dark);
}



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

.hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse 70% 60% at 30% 50%, rgba(212, 43, 43, 0.14) 0%, transparent 65%), repeating-linear-gradient(0deg, transparent, transparent 79px, rgba(255, 255, 255, 0.015) 80px), repeating-linear-gradient(90deg, transparent, transparent 79px, rgba(255, 255, 255, 0.015) 80px);
}

.hero-inner {
    max-width: 760px;
    position: relative;
}

.hero-eyebrow {
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 6px;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 20px;
    opacity: 0;
    animation: fadeUp 0.7s ease forwards 0.2s;
}

.hero h1 {
    font-family: 'Bebas Neue', sans-serif;
    font-size: clamp(64px, 14vw, 140px);
    line-height: 0.92;
    letter-spacing: 2px;
    margin-bottom: 28px;
    opacity: 0;
    animation: fadeUp 0.7s ease forwards 0.3s;
}

.hero h1 em {
    display: block;
    font-style: normal;
    color: var(--red);
}

.hero-sub {
    font-size: clamp(16px, 2.5vw, 20px);
    color: #bbb;
    max-width: 500px;
    line-height: 1.65;
    margin-bottom: 40px;
    opacity: 0;
    animation: fadeUp 0.7s ease forwards 0.5s;
}

.hero-sub strong {
    color: var(--white);
    font-weight: 500;
}

.hero-actions {
    display: flex;
    gap: 14px;
    flex-wrap: wrap;
    opacity: 0;
    animation: fadeUp 0.7s ease forwards 0.65s;
}

.btn-primary {
    background: var(--red);
    color: var(--white);
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 15px;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    padding: 16px 36px;
    text-decoration: none;
    display: inline-block;
    transition: background 0.2s, transform 0.15s;
}

.btn-primary:hover {
    background: var(--red-dark);
    transform: translateY(-2px);
}

.btn-ghost {
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: var(--white);
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 15px;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    padding: 16px 36px;
    text-decoration: none;
    display: inline-block;
    transition: border-color 0.2s, color 0.2s;
}

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


.hero-stat-row {
    display: flex;
    gap: 40px;
    margin-top: 60px;
    flex-wrap: wrap;
    opacity: 0;
    animation: fadeUp 0.7s ease forwards 0.8s;
}

.hero-stat .num {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 42px;
    line-height: 1;
    color: var(--gold);
}

.hero-stat .label {
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 12px;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--muted);
    margin-top: 2px;
}


.scroll-hint {
    position: absolute;
    bottom: 32px;
    left: 32px;
    display: flex;
    align-items: center;
    gap: 10px;
    opacity: 0;
    animation: fadeUp 0.7s ease forwards 1.1s;
}

.scroll-line {
    width: 40px;
    height: 1px;
    background: linear-gradient(to right, var(--gold), transparent);
}

.scroll-hint span {
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 11px;
    letter-spacing: 4px;
    color: var(--muted);
    text-transform: uppercase;
}

@keyframes fadeUp {
    0% {
        opacity: 0;
        transform: translateY(20px);
    }

    100% {
        opacity: 1;
        transform: translateY(0);
    }
}



/* URGENCY  */
.urgency {
    background: var(--red);
    padding: 18px 32px;
    text-align: center;
}

.urgency p {
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 16px;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--white);
}

.urgency p span {
    color: rgba(255, 255, 255, 0.7);
    font-weight: 400;
    margin-left: 8px;
}




/* HOW IT WORKS  */

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

.step {
    background: var(--grey);
    padding: 36px 28px;
    position: relative;
    overflow: hidden;
    transition: background 0.2s;
}

.step-num {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 72px;
    line-height: 1;
    color: rgba(255, 255, 255, 0.05);
    position: absolute;
    top: 10px;
    right: 16px;
}

.step-icon {
    font-size: 32px;
    margin-bottom: 16px;
}

.step h3 {
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 22px;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: var(--white);
    margin-bottom: 10px;
}

.step p {
    font-size: 14px;
    color: #aaa;
    line-height: 1.7;
}

.step::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: var(--red);
}

.step:nth-child(2)::after {
    background: var(--gold);
}

.step:nth-child(3)::after {
    background: var(--white);
}

.step:hover {
    background: var(--grey-mid);
}

hr.div {
    border: none;
    border-top: 1px solid var(--grey-mid);
    max-width: 960px;
    margin: 0 auto;
}



/* WHAT'S INCLUDED  */
.includes-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2px;
    margin-top: 40px;
}


.include-item {
    background: var(--grey);
    padding: 24px 28px;
    display: flex;
    gap: 18px;
    align-items: flex-start;
    transition: background 0.2s;
}

.include-icon {
    font-size: 24px;
    flex-shrink: 0;
    margin-top: 2px;
}

.include-item h4 {
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 17px;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: var(--white);
    margin-bottom: 4px;
}

.include-item p {
    font-size: 13px;
    color: #aaa;
    line-height: 1.6;
}

.include-item:hover {
    background: var(--grey-mid);
}



/* PRICING  */
.pricing {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2px;
}


/* FAQs  */
.faq-list {
    margin-top: 40px;
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.faq-item {
    background: var(--grey);
    border-left: 3px solid var(--grey-light);
    padding: 24px 28px;
    cursor: pointer;
    transition: border-color 0.2s, background 0.2s;
}

.faq-item:hover {
    border-color: var(--red);
    background: var(--grey-mid);
}

.faq-q {
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 18px;
    font-weight: 700;
    letter-spacing: 0.5px;
    color: var(--white);
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 16px;
}

.faq-arrow {
    color: var(--gold);
    font-size: 20px;
    flex-shrink: 0;
    transition: transform 0.3s;
}

.faq-a {
    font-size: 14px;
    color: #aaa;
    line-height: 1.7;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.35s ease, padding-top 0.35s ease;
}


.faq-item.open {
    border-color: var(--gold);
}

.faq-item.open .faq-arrow {
    transform: rotate(45deg);
}

.faq-item.open .faq-a {
    max-height: 200px;
    padding-top: 12px;
}



/* REGISTER  */

.form-section {
    background: var(--grey);
    padding: 60px 32px;
}

.form-inner {
    max-width: 600px;
    margin: 0 auto;
    text-align: center;
}

.form-inner .section-title {
    text-align: center;
}

.form-inner p {
    font-size: 15px;
    color: #aaa;
    margin-bottom: 36px;
    line-height: 1.7;
}

.form {
    display: flex;
    flex-direction: column;
    gap: 12px;
    text-align: left;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
}

.form input,
.form select,
.form textarea {
    background: var(--black);
    border: 1px solid var(--grey-light);
    color: var(--white);
    font-family: 'Barlow', sans-serif;
    font-size: 15px;
    font-weight: 300;
    padding: 14px 18px;
    width: 100%;
    outline: none;
    transition: border-color 0.2s;
    appearance: none;
}

.form select {
    color: #555;
    cursor: pointer;
}

.form select.selected {
    color: var(--white);
}

.form textarea {
    resize: none;
    height: 100px;
}

.form-submit {
    background: var(--red);
    color: var(--white);
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 16px;
    font-weight: 700;
    letter-spacing: 3px;
    text-transform: uppercase;
    padding: 18px;
    border: none;
    cursor: pointer;
    width: 100%;
    transition: background 0.2s, transform 0.15s;
    margin-top: 8px;
}

.form-submit:hover {
    background: var(--red-dark);
    transform: translateY(-2px);
}

.form-success {
    display: none;
    background: rgba(52, 160, 96, 0.1);
    border: 1px solid rgba(52, 160, 96, 0.4);
    padding: 24px;
    text-align: center;
    margin-top: 20px;
}

.form-inner p {
    font-size: 15px;
    color: #aaa;
    margin-bottom: 36px;
    line-height: 1.7;
}


/* FOOTER  */
footer {
    border-top: 1px solid var(--grey-mid);
    padding: 32px;
    text-align: center;
}

.footer-logo {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 28px;
    letter-spacing: 3px;
    margin-bottom: 8px;
}

.footer-logo span {
    color: var(--red);
}


@media (max-width: 680px) {
    nav {
        padding: 14px 20px;
    }

    .hero {
        padding: 100px 20px 60px;
    }

    .section {
        padding: 60px 20px;
    }

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

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

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

    .form-section {
        padding: 48px 20px;
    }

    .form-row {
        grid-template-columns: 1fr;
    }
}