/* Palette: Asphalt Black, Neon Orange, White */
:root {
    --bg: #111111;
    --card-bg: #1A1A1A;
    --orange: #FF4500;
    --white: #EEEEEE;
    --grey: #888888;
    
    --font-head: 'Barlow Condensed', sans-serif;
    --font-body: 'Inter', sans-serif;
}

* { margin: 0; padding: 0; box-sizing: border-box; }

body {
    background-color: var(--bg);
    color: var(--white);
    font-family: var(--font-body);
    line-height: 1.5;
}

.container { width: 90%; max-width: 1200px; margin: 0 auto; }
.section-padding { padding: 100px 0; }
a { text-decoration: none; color: inherit; transition: 0.3s; }
img { max-width: 100%; height: auto; display: block; filter: grayscale(100%) contrast(1.2); transition: 0.3s; }
img:hover { filter: grayscale(0%); }

/* Header */
.dynamic-header { background: rgba(17,17,17,0.95); padding: 20px 0; position: sticky; top: 0; z-index: 1000; border-bottom: 2px solid #222; backdrop-filter: blur(10px); }
.header-flex { display: flex; justify-content: space-between; align-items: center; }

.logo { font-family: var(--font-head); font-size: 2rem; font-weight: 800; letter-spacing: 1px; color: var(--white); font-style: italic; }
.flash { color: var(--orange); }

.bold-nav a { margin-left: 30px; font-family: var(--font-head); font-weight: 700; font-size: 1.1rem; color: var(--grey); }
.bold-nav a:hover, .bold-nav a.active { color: var(--orange); }

.menu-burger { display: none; background: none; border: 1px solid var(--orange); color: var(--orange); padding: 5px 10px; font-family: var(--font-head); cursor: pointer; }

/* Mobile Menu */
.mobile-overlay { position: fixed; top: 0; left: 0; width: 100%; height: 100%; background: var(--bg); z-index: 2000; display: flex; flex-direction: column; justify-content: center; align-items: center; transform: translateY(-100%); transition: 0.4s; }
.mobile-overlay.active { transform: translateY(0); }
.close-overlay { position: absolute; top: 20px; right: 20px; background: none; border: none; color: var(--white); font-size: 2rem; cursor: pointer; }
.mobile-overlay a { font-family: var(--font-head); font-size: 3rem; font-weight: 800; margin: 10px 0; color: var(--white); font-style: italic; }
.mobile-overlay a:hover { color: var(--orange); -webkit-text-stroke: 1px var(--orange); color: transparent; }

@media (max-width: 900px) {
    .bold-nav { display: none; }
    .menu-burger { display: block; }
}

/* Hero */
.hero-ignite { height: 85vh; position: relative; display: flex; align-items: center; overflow: hidden; }
.hero-bg { position: absolute; top: 0; left: 0; width: 100%; height: 100%; background: radial-gradient(circle at center, #222 0%, #000 100%); z-index: -1; }
.hero-bg::after { content: ''; position: absolute; width: 100%; height: 100%; background-image: url('https://images.pexels.com/photos/373543/pexels-photo-373543.jpeg?auto=compress&cs=tinysrgb&w=1920'); background-size: cover; background-position: center; opacity: 0.2; mix-blend-mode: overlay; }

.sub-head { color: var(--orange); font-family: var(--font-head); font-weight: 700; letter-spacing: 2px; font-size: 1rem; }
.hero-content h1 { font-family: var(--font-head); font-size: 5rem; line-height: 0.9; margin: 20px 0; font-weight: 800; font-style: italic; text-transform: uppercase; }
.hero-content p { font-size: 1.2rem; max-width: 600px; margin-bottom: 40px; color: #ccc; }

.cta-wrapper { display: flex; gap: 20px; }
.btn-ignite { background: var(--orange); color: var(--bg); padding: 15px 40px; font-family: var(--font-head); font-weight: 800; font-size: 1.2rem; clip-path: polygon(10px 0, 100% 0, 100% calc(100% - 10px), calc(100% - 10px) 100%, 0 100%, 0 10px); transition: 0.3s; border: none; cursor: pointer; }
.btn-ignite:hover { background: var(--white); transform: scale(1.05); }
.btn-outline { border: 2px solid var(--white); color: var(--white); padding: 13px 40px; font-family: var(--font-head); font-weight: 700; font-size: 1.1rem; }
.btn-outline:hover { background: var(--white); color: var(--bg); }

/* Stats Bar */
.stats-bar { background: var(--orange); color: var(--bg); padding: 40px 0; }
.stats-flex { display: flex; justify-content: space-around; text-align: center; }
.stat-item strong { display: block; font-family: var(--font-head); font-size: 3rem; font-weight: 800; line-height: 1; }
.stat-item span { font-weight: 700; font-family: var(--font-head); letter-spacing: 1px; font-size: 1.2rem; }

/* Programs */
.section-header h2 { font-family: var(--font-head); font-size: 3rem; font-weight: 800; text-transform: uppercase; margin-bottom: 10px; font-style: italic; }
.orange-dash { width: 100px; height: 6px; background: var(--orange); margin-bottom: 50px; }
.orange-dash.left { margin-left: 0; }
.center { text-align: center; }
.center .orange-dash { margin: 20px auto 50px; }

.cards-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 30px; }
.program-card { background: var(--card-bg); padding: 40px; border: 1px solid #333; transition: 0.3s; position: relative; overflow: hidden; }
.program-card:hover { border-color: var(--orange); transform: translateY(-10px); }
.program-card.highlight { border-top: 4px solid var(--orange); }
.card-icon { font-size: 3rem; margin-bottom: 20px; }
.program-card h3 { font-family: var(--font-head); font-size: 1.5rem; margin-bottom: 15px; }
.program-card p { color: #aaa; }

/* About */
.about-split { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; }
.about-text h1 { font-family: var(--font-head); font-size: 4rem; line-height: 0.9; margin-bottom: 20px; font-weight: 800; }
.lead { font-size: 1.2rem; color: var(--white); font-weight: 600; margin-bottom: 20px; }
.check-list { list-style: none; margin-top: 30px; font-family: var(--font-head); font-size: 1.2rem; color: var(--orange); }
.check-list li { margin-bottom: 10px; }
.about-visual { position: relative; }
.visual-box { position: absolute; bottom: -20px; left: -20px; background: var(--orange); color: var(--bg); padding: 10px 20px; font-family: var(--font-head); font-weight: 800; font-size: 1.5rem; }

/* Testimonials */
.success-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 30px; }
.success-card { background: var(--card-bg); padding: 30px; border-left: 2px solid #333; }
.success-card.accent { border-left: 2px solid var(--orange); background: #221a1a; }
.quote-mark { font-family: var(--font-head); font-size: 4rem; color: var(--orange); line-height: 0.5; margin-bottom: 10px; opacity: 0.5; }
.success-card p { font-style: italic; color: #ddd; margin-bottom: 20px; }
.author strong { display: block; font-family: var(--font-head); font-size: 1.2rem; color: var(--white); }
.author span { color: var(--grey); font-size: 0.9rem; }

/* Contact */
.contact-box { display: grid; grid-template-columns: 1fr 1.5fr; gap: 60px; background: var(--card-bg); padding: 60px; border: 1px solid #333; }
.contact-left h2 { font-family: var(--font-head); font-size: 3rem; margin-bottom: 20px; line-height: 1; }
.info-row { margin-top: 30px; }
.info-row strong { color: var(--orange); font-family: var(--font-head); display: block; font-size: 1.2rem; }

.high-energy-form .form-group { margin-bottom: 20px; }
.high-energy-form label { display: block; font-family: var(--font-head); color: var(--grey); margin-bottom: 5px; font-size: 0.9rem; }
.high-energy-form input, .high-energy-form select, .high-energy-form textarea { width: 100%; background: var(--bg); border: 1px solid #444; color: var(--white); padding: 15px; font-family: var(--font-body); font-size: 1rem; outline: none; }
.high-energy-form input:focus { border-color: var(--orange); }
.full { width: 100%; text-align: center; }

/* Legal */
.legal-text { max-width: 800px; margin: 0 auto; color: #ccc; }
.legal-text h1 { font-family: var(--font-head); }

/* Footer */
.ignite-footer { background: #000; padding: 60px 0 20px; margin-top: 100px; border-top: 2px solid var(--orange); }
.footer-content { display: flex; justify-content: space-between; margin-bottom: 40px; }
.f-brand h4 { font-family: var(--font-head); font-size: 1.5rem; color: var(--white); }
.f-links a { color: var(--grey); margin-left: 20px; font-weight: 600; }
.f-links a:hover { color: var(--orange); }
.copyright { text-align: center; color: #444; font-size: 0.8rem; font-family: var(--font-head); }

@media (max-width: 900px) {
    .hero-content h1 { font-size: 3.5rem; }
    .cards-grid, .about-split, .success-grid, .contact-box { grid-template-columns: 1fr; flex-direction: column; }
    .stats-flex { flex-direction: column; gap: 30px; }
    .footer-content { flex-direction: column; text-align: center; gap: 20px; }
    .cta-wrapper { flex-direction: column; }
}