:root {
    --brand-red: #ff003c;
    --brand-red-dark: #cc0030;
    --bg-black: #010101;
    --panel-bg: rgba(20, 20, 20, 0.85);
    --text-white: #ffffff;
    --text-gray: #a0a0a0;
    --text-dim: #505050;
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

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

body {
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
    background-color: var(--bg-black);
    color: var(--text-white);
    line-height: 1.4;
    overflow-x: hidden;
}

.bg-grid {
    background-image: radial-gradient(circle at 2px 2px, rgba(255, 0, 60, 0.05) 1px, transparent 0);
    background-size: 40px 40px;
}

.container { max-width: 1200px; margin: 0 auto; padding: 0 20px; }

.header {
    height: 70px;
    background: rgba(1, 1, 1, 0.8);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    z-index: 1000;
}

.header.sticky { position: sticky; top: 0; }
.header-content { height: 100%; display: flex; align-items: center; justify-content: space-between; }
.logo { height: 42px; width: auto; }

.cta-btn {
    display: inline-block;
    text-decoration: none;
    color: white;
    font-weight: 900;
    text-align: center;
    border-radius: 6px;
    background: linear-gradient(135deg, var(--brand-red) 0%, var(--brand-red-dark) 100%);
    box-shadow: 0 4px 15px rgba(255, 0, 60, 0.3);
    transition: var(--transition);
    cursor: pointer;
    border: none;
}

.cta-btn:hover { transform: scale(1.03); box-shadow: 0 8px 25px rgba(255, 0, 60, 0.5); }
.cta-btn.small { padding: 10px 24px; font-size: 11px; }
.cta-btn.medium { padding: 14px 28px; font-size: 14px; }
.cta-btn.large { padding: 20px; font-size: 18px; width: 100%; }
.uppercase { text-transform: uppercase; letter-spacing: 0.1em; }

.hero { position: relative; padding: 40px 0 80px; }
.glow-orb {
    position: absolute;
    top: 10%;
    left: 50%;
    transform: translateX(-50%);
    width: 800px;
    height: 800px;
    background: radial-gradient(circle, rgba(255, 0, 60, 0.08) 0%, transparent 70%);
    pointer-events: none;
    z-index: -1;
}

.hero-grid {
    display: grid;
    grid-template-columns: 1fr 1.4fr;
    gap: 50px;
    align-items: center;
}

@media (max-width: 992px) {
    .hero-grid { grid-template-columns: 1fr; text-align: center; }
    .hero-image { order: -1; margin-bottom: 20px; }
}

.badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(255, 0, 60, 0.1);
    color: var(--brand-red);
    border: 1px solid rgba(255, 0, 60, 0.2);
    padding: 8px 18px;
    border-radius: 50px;
    font-size: 10px;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 0.2em;
    margin-bottom: 24px;
}

.dot { width: 8px; height: 8px; background: var(--brand-red); border-radius: 50%; animation: pulse 2s infinite; }
@keyframes pulse { 0% { opacity: 0.3; } 50% { opacity: 1; } 100% { opacity: 0.3; } }

h1 {
    font-size: clamp(34px, 6vw, 52px);
    font-weight: 900;
    color: var(--brand-red);
    line-height: 1.05;
    margin-bottom: 20px;
    white-space: pre-line;
}

.subtitle { font-size: 20px; color: var(--text-gray); margin-bottom: 30px; }

.glass-card {
    background: var(--panel-bg);
    padding: 30px;
    border-radius: 16px;
    backdrop-filter: blur(20px);
}

.neon-border { border: 1px solid rgba(255, 0, 60, 0.25); }

.description { color: #ddd; font-size: 16px; margin-bottom: 30px; }

.benefits-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 15px; margin-bottom: 30px; }
@media (max-width: 600px) { .benefits-grid { grid-template-columns: 1fr; } }

.benefit-item { display: flex; flex-direction: column; align-items: center; gap: 8px; }
.benefit-icon {
    width: 32px; height: 32px; background: rgba(255, 0, 60, 0.15);
    border-radius: 50%; display: flex; align-items: center; justify-content: center;
    color: var(--brand-red); font-weight: bold; font-size: 14px;
}
.benefit-text { font-size: 10px; font-weight: 800; color: var(--text-gray); text-transform: uppercase; }

.mention { font-size: 10px; color: var(--text-dim); margin-top: 15px; font-weight: 800; letter-spacing: 0.05em; text-transform: uppercase; }

.hero-image img { width: 100%; height: auto; filter: drop-shadow(0 20px 60px rgba(255, 0, 60, 0.3)); }

.trust-footer { margin-top: 50px; text-align: center; }
.trust-text { font-size: 12px; font-weight: 800; color: var(--text-gray); margin-bottom: 10px; text-transform: uppercase; letter-spacing: 0.05em; }
.disclaimer-text { font-size: 10px; color: var(--text-dim); max-width: 650px; margin: 0 auto; line-height: 1.6; }

.sticky-footer {
    position: fixed; bottom: 20px; left: 20px; right: 20px; z-index: 1000;
    transform: translateY(150%); opacity: 0; transition: all 0.6s cubic-bezier(0.19, 1, 0.22, 1);
}
.sticky-footer.visible { transform: translateY(0); opacity: 1; }
.sticky-footer-content {
    max-width: 480px; margin: 0 auto; background: rgba(15,15,15,0.95);
    border: 1px solid var(--brand-red); padding: 12px 20px; border-radius: 12px;
    display: flex; align-items: center; justify-content: space-between;
    box-shadow: 0 15px 45px rgba(0,0,0,0.9);
}
.sticky-info .label { font-size: 10px; font-weight: 900; color: var(--brand-red); }
.sticky-info .status { font-size: 15px; font-weight: 900; color: white; display: block; }

.fade-in { opacity: 0; animation: fadeIn 0.8s ease forwards; }
.delay-1 { animation-delay: 0.2s; }
.delay-2 { animation-delay: 0.4s; }
@keyframes fadeIn { from { opacity: 0; transform: translateY(15px); } to { opacity: 1; transform: translateY(0); } }

.footer { padding: 50px 0; border-top: 1px solid rgba(255, 255, 255, 0.05); text-align: center; opacity: 0.4; }
.footer-logo { height: 22px; margin-bottom: 20px; }
.copyright { font-size: 10px; font-weight: 800; letter-spacing: 0.2em; }