:root {
    --gold: #C9A84C;
    --gold-light: #F0CC7A;
    --gold-dim: rgba(201, 168, 76, 0.15);
    --dark: #0A0A0A;
    --dark-2: #111111;
    --dark-3: #1A1A1A;
    --text: #E8E8E8;
    --text-dim: #888888;
    --red-accent: #E03E3E;
}

*,
*::before,
*::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
}

body {
    background-color: var(--dark);
    color: var(--text);
    font-family: 'Manrope', sans-serif;
    overflow-x: hidden;
}

/* ── NOISE OVERLAY ── */
body::before {
    content: '';
    position: fixed;
    inset: 0;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.04'/%3E%3C/svg%3E");
    pointer-events: none;
    z-index: 0;
    opacity: 0.4;
}

/* ── TOPBAR ── */
.topbar {
    background: var(--red-accent);
    text-align: center;
    padding: 10px 16px;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    position: relative;
    z-index: 10;
}

.topbar span {
    color: #fff;
}

.topbar strong {
    color: #FFE066;
}

/* ── HERO ── */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding: 80px 0 60px;
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse 60% 50% at 70% 50%, rgba(201, 168, 76, 0.08) 0%, transparent 70%),
        radial-gradient(ellipse 40% 60% at 10% 80%, rgba(224, 62, 62, 0.06) 0%, transparent 60%),
        var(--dark);
    z-index: 0;
}

.hero-line {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--gold), transparent);
    z-index: 1;
}

.hero .container {
    position: relative;
    z-index: 2;
}

/* badge */
.badge-launch {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: var(--gold-dim);
    border: 1px solid rgba(201, 168, 76, 0.3);
    color: var(--gold-light);
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    padding: 6px 14px;
    border-radius: 2px;
    margin-bottom: 28px;
    animation: fadeUp 0.6s ease both;
}

.badge-launch::before {
    content: '';
    width: 6px;
    height: 6px;
    background: var(--gold);
    border-radius: 50%;
    animation: pulse 1.5s infinite;
}

@keyframes pulse {

    0%,
    100% {
        opacity: 1;
        transform: scale(1);
    }

    50% {
        opacity: 0.4;
        transform: scale(1.4);
    }
}

/* headline */
.hero-headline {
    font-family: 'Bebas Neue', sans-serif;
    font-size: clamp(52px, 8vw, 96px);
    line-height: 0.95;
    letter-spacing: 0.01em;
    color: #fff;
    animation: fadeUp 0.6s 0.1s ease both;
}

.hero-headline .gold {
    color: var(--gold);
}

.hero-headline .stroke {
    -webkit-text-stroke: 1px rgba(255, 255, 255, 0.3);
    color: transparent;
}

.hero-sub {
    font-size: 18px;
    font-weight: 400;
    color: var(--text-dim);
    line-height: 1.6;
    max-width: 480px;
    margin-top: 24px;
    animation: fadeUp 0.6s 0.2s ease both;
}

.hero-sub strong {
    color: var(--text);
    font-weight: 700;
}

/* proof strip */
.proof-strip {
    display: flex;
    gap: 28px;
    margin-top: 36px;
    flex-wrap: wrap;
    animation: fadeUp 0.6s 0.3s ease both;
}

.proof-item {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 13px;
    color: var(--text-dim);
}

.proof-item .icon {
    width: 20px;
    height: 20px;
    background: var(--gold-dim);
    border: 1px solid rgba(201, 168, 76, 0.25);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 10px;
    color: var(--gold);
    flex-shrink: 0;
}

/* ── FORM CARD ── */
.form-card {
    background: var(--dark-3);
    border: 1px solid rgba(201, 168, 76, 0.2);
    border-radius: 4px;
    padding: 40px 36px;
    position: relative;
    animation: fadeUp 0.7s 0.15s ease both;
    box-shadow: 0 0 60px rgba(201, 168, 76, 0.06), 0 20px 60px rgba(0, 0, 0, 0.5);
}

.form-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 10%;
    right: 10%;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--gold), transparent);
}

.form-card-label {
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 6px;
}

.form-card-title {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 32px;
    color: #fff;
    line-height: 1.1;
    margin-bottom: 6px;
}

.form-card-desc {
    font-size: 13px;
    color: var(--text-dim);
    margin-bottom: 28px;
    line-height: 1.5;
}

.form-card-desc strong {
    color: var(--gold-light);
}

/* spots counter */
.spots-bar {
    background: rgba(224, 62, 62, 0.08);
    border: 1px solid rgba(224, 62, 62, 0.2);
    border-radius: 2px;
    padding: 10px 14px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 24px;
    font-size: 12px;
}

.spots-bar .spots-text {
    color: #E87070;
    font-weight: 700;
    letter-spacing: 0.05em;
}

.spots-bar .spots-num {
    color: #fff;
    font-weight: 800;
    font-size: 18px;
}

/* inputs */
.form-control-custom {
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 2px;
    color: #fff;
    padding: 14px 16px;
    font-family: 'Manrope', sans-serif;
    font-size: 14px;
    width: 100%;
    transition: border-color 0.2s, background 0.2s;
    outline: none;
}

.form-control-custom::placeholder {
    color: rgba(255, 255, 255, 0.25);
}

.form-control-custom:focus {
    border-color: var(--gold);
    background: rgba(201, 168, 76, 0.04);
}

.form-label-custom {
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--text-dim);
    margin-bottom: 7px;
    display: block;
}

.form-group {
    margin-bottom: 16px;
}

/* CTA button */
.btn-cta {
    width: 100%;
    background: linear-gradient(135deg, var(--gold) 0%, #A8832A 100%);
    color: #0A0A0A;
    font-family: 'Bebas Neue', sans-serif;
    font-size: 20px;
    letter-spacing: 0.08em;
    padding: 16px 24px;
    border: none;
    border-radius: 2px;
    cursor: pointer;
    position: relative;
    overflow: hidden;
    transition: transform 0.15s, box-shadow 0.15s;
    margin-top: 8px;
}

.btn-cta::after {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 60%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.25), transparent);
    transition: left 0.4s;
}

.btn-cta:hover {
    transform: translateY(-1px);
    box-shadow: 0 8px 30px rgba(201, 168, 76, 0.3);
}

.btn-cta:hover::after {
    left: 150%;
}

.btn-cta:active {
    transform: translateY(0);
}

.form-privacy {
    font-size: 11px;
    color: var(--text-dim);
    text-align: center;
    margin-top: 12px;
    line-height: 1.5;
}

.form-privacy span {
    color: var(--gold);
}

/* ── SOCIAL PROOF ── */
.social-proof {
    padding: 70px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    position: relative;
    z-index: 2;
}

.section-label {
    font-size: 10px;
    font-weight: 800;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--gold);
    text-align: center;
    margin-bottom: 14px;
}

.section-title {
    font-family: 'Bebas Neue', sans-serif;
    font-size: clamp(36px, 5vw, 56px);
    text-align: center;
    color: #fff;
    margin-bottom: 50px;
    line-height: 1;
}

/* numbers */
.numbers-row {
    margin-bottom: 60px;
}

.number-item {
    text-align: center;
    padding: 28px 20px;
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: 3px;
    background: var(--dark-2);
    transition: border-color 0.2s;
}

.number-item:hover {
    border-color: rgba(201, 168, 76, 0.2);
}

.number-value {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 52px;
    color: var(--gold);
    line-height: 1;
}

.number-desc {
    font-size: 12px;
    color: var(--text-dim);
    margin-top: 6px;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    font-weight: 600;
}

/* testimonials */
.testimonial-card {
    background: var(--dark-2);
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: 3px;
    padding: 28px 24px;
    height: 100%;
    position: relative;
    transition: border-color 0.2s, transform 0.2s;
}

.testimonial-card:hover {
    border-color: rgba(201, 168, 76, 0.15);
    transform: translateY(-2px);
}

.testimonial-card::before {
    content: '"';
    position: absolute;
    top: -10px;
    left: 20px;
    font-family: 'Bebas Neue', sans-serif;
    font-size: 80px;
    color: var(--gold);
    opacity: 0.3;
    line-height: 1;
}

.testimonial-text {
    font-size: 14px;
    line-height: 1.7;
    color: var(--text-dim);
    margin-bottom: 20px;
    padding-top: 16px;
}

.testimonial-text strong {
    color: var(--text);
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 12px;
}

.author-avatar {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: var(--gold-dim);
    border: 1px solid rgba(201, 168, 76, 0.3);
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Bebas Neue', sans-serif;
    font-size: 18px;
    color: var(--gold);
    flex-shrink: 0;
}

.author-name {
    font-size: 13px;
    font-weight: 700;
    color: #fff;
}

.author-role {
    font-size: 11px;
    color: var(--text-dim);
    margin-top: 2px;
}

.stars {
    color: var(--gold);
    font-size: 12px;
    margin-bottom: 4px;
    letter-spacing: 2px;
}

/* ── WHAT YOU GET ── */
.what-section {
    padding: 70px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    background: var(--dark-2);
    position: relative;
    z-index: 2;
}

.benefit-item {
    display: flex;
    gap: 16px;
    margin-bottom: 24px;
    align-items: flex-start;
}

.benefit-icon {
    width: 44px;
    height: 44px;
    background: var(--gold-dim);
    border: 1px solid rgba(201, 168, 76, 0.25);
    border-radius: 2px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    flex-shrink: 0;
}

.benefit-title {
    font-size: 15px;
    font-weight: 700;
    color: #fff;
    margin-bottom: 4px;
}

.benefit-desc {
    font-size: 13px;
    color: var(--text-dim);
    line-height: 1.6;
}

/* ── URGENCY BOTTOM ── */
.urgency-section {
    padding: 80px 0;
    position: relative;
    z-index: 2;
    text-align: center;
}

.urgency-section .section-title {
    margin-bottom: 16px;
}

.urgency-desc {
    font-size: 16px;
    color: var(--text-dim);
    max-width: 500px;
    margin: 0 auto 40px;
    line-height: 1.6;
}

/* countdown */
.countdown {
    display: flex;
    gap: 16px;
    justify-content: center;
    margin-bottom: 40px;
    flex-wrap: wrap;
}

.countdown-item {
    background: var(--dark-3);
    border: 1px solid rgba(201, 168, 76, 0.2);
    border-radius: 3px;
    padding: 16px 24px;
    min-width: 80px;
    text-align: center;
}

.countdown-num {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 42px;
    color: var(--gold);
    line-height: 1;
}

.countdown-label {
    font-size: 10px;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--text-dim);
    font-weight: 700;
    margin-top: 4px;
}

/* bottom CTA */
.btn-cta-lg {
    display: inline-block;
    background: linear-gradient(135deg, var(--gold) 0%, #A8832A 100%);
    color: #0A0A0A;
    font-family: 'Bebas Neue', sans-serif;
    font-size: 22px;
    letter-spacing: 0.08em;
    padding: 18px 48px;
    border: none;
    border-radius: 2px;
    cursor: pointer;
    text-decoration: none;
    transition: transform 0.15s, box-shadow 0.15s;
    position: relative;
    overflow: hidden;
}

.btn-cta-lg:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 40px rgba(201, 168, 76, 0.35);
    color: #0A0A0A;
}

/* ── FOOTER ── */
footer {
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    padding: 30px 0;
    text-align: center;
    font-size: 12px;
    color: var(--text-dim);
    position: relative;
    z-index: 2;
}

footer a {
    color: var(--text-dim);
    text-decoration: none;
}

footer a:hover {
    color: var(--gold);
}

/* ── ANIMATIONS ── */
@keyframes fadeUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* ── DIVIDER ── */
.gold-divider {
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--gold), transparent);
    margin: 0;
    opacity: 0.3;
}

/* success message */
.success-msg {
    display: none;
    text-align: center;
    padding: 30px 0;
}

.success-icon {
    width: 64px;
    height: 64px;
    background: var(--gold-dim);
    border: 2px solid var(--gold);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    margin: 0 auto 16px;
}

.success-title {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 28px;
    color: var(--gold);
    margin-bottom: 8px;
}

.success-desc {
    font-size: 14px;
    color: var(--text-dim);
    line-height: 1.6;
}

@media (max-width: 768px) {
    .form-card {
        padding: 28px 20px;
    }

    .proof-strip {
        gap: 16px;
    }

    .hero {
        padding-top: 60px;
    }
}