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

:root {
    --red: #ef4444;
    --red-light: #f87171;
    --red-dark: #dc2626;
    --crimson: #be123c;
    --orange: #f97316;
    --bg: #0f0f0f;
    --bg-card: #1a1a1a;
    --bg-light: #222222;
    --text: #fafafa;
    --text-dim: #a3a3a3;
    --border: rgba(239, 68, 68, 0.3);
    --glow: rgba(239, 68, 68, 0.5);
    --gradient: linear-gradient(135deg, var(--orange) 0%, var(--red) 50%, var(--crimson) 100%);
}

body {
    font-family: 'Segoe UI', system-ui, sans-serif;
    background: var(--bg);
    color: var(--text);
    line-height: 1.7;
    min-height: 100vh;
}

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

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

/* Announcement */
.announcement {
    background: var(--gradient);
    padding: 12px;
    text-align: center;
    font-size: 13px;
    font-weight: 600;
    color: #fff;
}

/* Header */
header {
    background: var(--bg-card);
    border-bottom: 1px solid var(--border);
    padding: 16px 0;
    position: sticky;
    top: 0;
    z-index: 1000;
}

header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-size: 28px;
    font-weight: 800;
    background: var(--gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

nav ul {
    display: flex;
    list-style: none;
    gap: 4px;
}

nav a {
    color: var(--text-dim);
    padding: 10px 16px;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 500;
    transition: all 0.3s;
}

nav a:hover {
    color: var(--red-light);
    background: rgba(239, 68, 68, 0.1);
}

nav a.active {
    background: var(--gradient);
    color: #fff;
}

/* Hero */
.hero {
    padding: 100px 0 80px;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: -100px;
    left: 50%;
    transform: translateX(-50%);
    width: 800px;
    height: 500px;
    background: radial-gradient(ellipse, rgba(239, 68, 68, 0.15) 0%, transparent 60%);
    pointer-events: none;
}

.hero-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    position: relative;
}

.hero-pill {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 18px;
    background: rgba(239, 68, 68, 0.15);
    border: 1px solid var(--border);
    border-radius: 50px;
    font-size: 12px;
    color: var(--red-light);
    font-weight: 600;
    margin-bottom: 20px;
}

.hero h1 {
    font-size: 52px;
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 20px;
}

.hero h1 .fire {
    background: var(--gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero p {
    font-size: 17px;
    color: var(--text-dim);
    margin-bottom: 30px;
    max-width: 500px;
}

.hero-img img {
    width: 100%;
    border-radius: 20px;
    border: 2px solid var(--border);
    box-shadow: 0 30px 80px rgba(239, 68, 68, 0.2);
}

/* Buttons */
.btn-row {
    display: flex;
    gap: 14px;
    flex-wrap: wrap;
}

.btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 14px 30px;
    border-radius: 10px;
    font-size: 14px;
    font-weight: 600;
    transition: all 0.3s;
    border: none;
    cursor: pointer;
}

.btn-fire {
    background: var(--gradient);
    color: #fff;
    box-shadow: 0 6px 25px var(--glow);
}

.btn-fire:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 35px var(--glow);
}

.btn-dark {
    background: var(--bg-card);
    border: 1px solid var(--border);
    color: var(--text);
}

.btn-dark:hover {
    border-color: var(--red);
    color: var(--red-light);
}

/* Stats */
.stats-area {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    padding: 60px 0;
}

.stat-block {
    background: var(--bg-card);
    border-radius: 16px;
    padding: 30px;
    text-align: center;
    position: relative;
    overflow: hidden;
    border: 1px solid transparent;
    background-image: linear-gradient(var(--bg-card), var(--bg-card)), var(--gradient);
    background-origin: border-box;
    background-clip: padding-box, border-box;
}

.stat-block h3 {
    font-size: 38px;
    font-weight: 800;
    background: var(--gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 6px;
}

.stat-block span {
    font-size: 13px;
    color: var(--text-dim);
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Section */
.section {
    padding: 80px 0;
}

.section-dark {
    background: var(--bg-light);
}

.sec-top {
    text-align: center;
    margin-bottom: 50px;
}

.sec-badge {
    display: inline-block;
    padding: 6px 16px;
    background: rgba(239, 68, 68, 0.15);
    border: 1px solid var(--border);
    border-radius: 6px;
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: var(--red-light);
    margin-bottom: 14px;
}

.sec-heading {
    font-size: 42px;
    font-weight: 700;
    margin-bottom: 14px;
}

.sec-sub {
    color: var(--text-dim);
    font-size: 16px;
    max-width: 560px;
    margin: 0 auto;
}

/* Fire Cards - Gradient Border */
.fire-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.fire-card {
    background: var(--bg-card);
    border-radius: 16px;
    padding: 32px 26px;
    position: relative;
    transition: all 0.4s;
    border: 2px solid transparent;
    background-image: linear-gradient(var(--bg-card), var(--bg-card)), linear-gradient(135deg, var(--border) 0%, transparent 50%);
    background-origin: border-box;
    background-clip: padding-box, border-box;
}

.fire-card:hover {
    transform: translateY(-8px);
    background-image: linear-gradient(var(--bg-card), var(--bg-card)), var(--gradient);
    box-shadow: 0 20px 50px rgba(239, 68, 68, 0.15);
}

.fire-card .icon {
    width: 56px;
    height: 56px;
    background: rgba(239, 68, 68, 0.15);
    border: 1px solid var(--border);
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
}

.fire-card .icon img {
    width: 30px;
    height: 30px;
    border-radius: 8px;
    object-fit: cover;
}

.fire-card h4 {
    font-size: 18px;
    margin-bottom: 12px;
}

.fire-card p {
    font-size: 14px;
    color: var(--text-dim);
    line-height: 1.7;
}

/* Split */
.split-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.split-grid.reverse {
    direction: rtl;
}

.split-grid.reverse > * {
    direction: ltr;
}

.split-content h2 {
    font-size: 38px;
    font-weight: 700;
    margin-bottom: 18px;
    line-height: 1.2;
}

.split-content p {
    color: var(--text-dim);
    margin-bottom: 16px;
    font-size: 15px;
}

.check-list {
    list-style: none;
    margin: 26px 0;
}

.check-list li {
    padding: 14px 0;
    padding-left: 36px;
    position: relative;
    font-size: 14px;
    border-bottom: 1px solid rgba(239, 68, 68, 0.15);
    color: var(--text-dim);
}

.check-list li:last-child { border-bottom: none; }

.check-list li::before {
    content: '🔥';
    position: absolute;
    left: 0;
    font-size: 14px;
}

.split-image img {
    width: 100%;
    border-radius: 20px;
    border: 2px solid var(--border);
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.4);
}

/* Steps */
.steps-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.step-card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: 16px;
    padding: 32px 22px;
    text-align: center;
    position: relative;
    transition: all 0.3s;
}

.step-card:hover {
    border-color: var(--red);
    box-shadow: 0 0 30px rgba(239, 68, 68, 0.15);
}

.step-card .number {
    position: absolute;
    top: -14px;
    left: 50%;
    transform: translateX(-50%);
    width: 32px;
    height: 32px;
    background: var(--gradient);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    font-weight: 700;
    color: #fff;
}

.step-card img {
    width: 48px;
    height: 48px;
    border-radius: 12px;
    object-fit: cover;
    margin: 10px 0 16px;
}

.step-card h5 {
    font-size: 15px;
    margin-bottom: 8px;
}

.step-card p {
    font-size: 13px;
    color: var(--text-dim);
}

/* FAQ */
.faq-wrapper {
    max-width: 820px;
    margin: 0 auto;
}

.faq-block {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: 14px;
    padding: 24px 28px;
    margin-bottom: 16px;
    transition: all 0.3s;
}

.faq-block:hover {
    border-color: var(--red);
}

.faq-block h4 {
    font-size: 16px;
    margin-bottom: 12px;
}

.faq-block p {
    font-size: 14px;
    color: var(--text-dim);
    line-height: 1.7;
}

/* Page Hero */
.page-hero {
    padding: 120px 0 50px;
    text-align: center;
    position: relative;
}

.page-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 600px;
    height: 300px;
    background: radial-gradient(circle, rgba(239, 68, 68, 0.12) 0%, transparent 60%);
    pointer-events: none;
}

.page-hero h1 {
    font-size: 48px;
    margin-bottom: 14px;
    position: relative;
}

.page-hero p {
    color: var(--text-dim);
    font-size: 18px;
    position: relative;
}

/* CTA */
.cta-section {
    background: var(--bg-card);
    border: 2px solid var(--border);
    border-radius: 24px;
    padding: 65px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.cta-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--gradient);
}

.cta-section h2 {
    font-size: 36px;
    margin-bottom: 16px;
}

.cta-section p {
    color: var(--text-dim);
    margin-bottom: 28px;
    font-size: 16px;
}

/* Footer */
footer {
    background: var(--bg-card);
    padding: 60px 0 30px;
    margin-top: 60px;
    border-top: 1px solid var(--border);
}

.footer-cols {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 40px;
    margin-bottom: 40px;
}

.footer-col h4 {
    font-size: 16px;
    color: var(--red-light);
    margin-bottom: 20px;
}

.footer-col p {
    font-size: 13px;
    color: var(--text-dim);
    line-height: 1.8;
}

.footer-col ul { list-style: none; }
.footer-col li { margin-bottom: 12px; }

.footer-col a {
    font-size: 14px;
    color: var(--text-dim);
    transition: color 0.3s;
}

.footer-col a:hover { color: var(--red-light); }

.footer-bottom {
    text-align: center;
    padding-top: 26px;
    border-top: 1px solid var(--border);
    font-size: 13px;
    color: #525252;
}

/* Responsive */
@media (max-width: 1024px) {
    .hero-container, .split-grid { grid-template-columns: 1fr; text-align: center; }
    .split-grid.reverse { direction: ltr; }
    .fire-grid { grid-template-columns: repeat(2, 1fr); }
    .steps-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
    nav ul { display: none; }
    .hero h1 { font-size: 38px; }
    .fire-grid { grid-template-columns: 1fr; }
    .stats-area { grid-template-columns: repeat(2, 1fr); }
    .footer-cols { grid-template-columns: 1fr 1fr; }
    .cta-section { padding: 45px 28px; }
}
