/* Palette: Speed Yellow, Asphalt Black, White */
:root {
    --yellow: #FFD700;
    --yellow-dark: #E6C200;
    --black: #111111;
    --dark-grey: #1A1A1A;
    --white: #FFFFFF;
    
    --font-head: 'Teko', sans-serif;
    --font-body: 'Roboto', sans-serif;
}

* { margin: 0; padding: 0; box-sizing: border-box; }

body {
    background-color: var(--black);
    color: var(--white);
    font-family: var(--font-body);
    line-height: 1.5;
}

/* Speed Lines Background */
.speed-lines {
    position: fixed; top: 0; left: 0; width: 100%; height: 100%;
    background: repeating-linear-gradient(45deg, rgba(255,255,255,0.03) 0, rgba(255,255,255,0.03) 1px, transparent 1px, transparent 50px);
    z-index: -1;
}

.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%); transition: 0.3s; }
img:hover { filter: grayscale(0%); }

/* Header */
.fast-header { padding: 20px 0; background: rgba(17, 17, 17, 0.95); position: sticky; top: 0; z-index: 1000; border-bottom: 2px solid var(--yellow); }
.header-flex { display: flex; justify-content: space-between; align-items: center; }

.logo { font-family: var(--font-head); font-size: 2.2rem; font-weight: 700; color: var(--white); letter-spacing: 1px; font-style: italic; }
.yellow-flash { color: var(--yellow); margin: 0 5px; font-style: normal; }

.speed-nav a { margin-left: 30px; font-family: var(--font-head); font-size: 1.4rem; color: #888; text-transform: uppercase; font-weight: 500; }
.speed-nav a:hover, .speed-nav a.active { color: var(--yellow); }

.mobile-toggle { display: none; background: var(--yellow); border: none; font-family: var(--font-head); font-size: 1.2rem; padding: 5px 15px; font-weight: 700; cursor: pointer; transform: skewX(-10deg); }

/* Mobile Menu */
.mobile-menu { position: fixed; top: 0; right: -100%; width: 100%; height: 100%; background: var(--yellow); z-index: 2000; display: flex; flex-direction: column; justify-content: center; align-items: center; transition: 0.3s; }
.mobile-menu.active { right: 0; }
.close-btn { position: absolute; top: 20px; right: 20px; background: none; border: 2px solid var(--black); font-size: 1.5rem; font-weight: 700; padding: 5px 15px; cursor: pointer; }
.mobile-menu a { font-family: var(--font-head); font-size: 3rem; color: var(--black); margin: 10px 0; text-transform: uppercase; font-weight: 700; }

@media (max-width: 900px) {
    .speed-nav { display: none; }
    .mobile-toggle { display: block; }
}

/* Hero */
.hero-speed { height: 85vh; position: relative; display: flex; align-items: center; justify-content: center; text-align: left; }
.hero-bg { position: absolute; top: 0; left: 0; width: 100%; height: 100%; background-size: cover; background-position: center; z-index: 0; }
.hero-overlay { position: absolute; top: 0; left: 0; width: 100%; height: 100%; background: linear-gradient(90deg, #111 0%, rgba(17,17,17,0.7) 100%); z-index: 1; }
.hero-content { position: relative; z-index: 2; width: 100%; }

.skew-box { display: inline-block; background: var(--yellow); padding: 5px 15px; transform: skewX(-10deg); margin-bottom: 20px; }
.tag { font-family: var(--font-head); font-size: 1.2rem; color: var(--black); font-weight: 700; transform: skewX(10deg); display: block; }

.hero-content h1 { font-family: var(--font-head); font-size: 5rem; line-height: 0.9; margin-bottom: 20px; font-style: italic; text-transform: uppercase; }
.hero-content p { font-size: 1.3rem; margin-bottom: 40px; max-width: 600px; color: #ccc; }

.cta-group { display: flex; gap: 20px; }
.btn-yellow { background: var(--yellow); color: var(--black); padding: 15px 40px; font-family: var(--font-head); font-size: 1.5rem; font-weight: 700; border: none; cursor: pointer; transition: 0.3s; transform: skewX(-10deg); text-decoration: none; display: inline-block; }
.btn-yellow:hover { background: var(--white); transform: skewX(-10deg) translateY(-3px); }
.btn-outline { border: 2px solid var(--white); color: var(--white); padding: 13px 40px; font-family: var(--font-head); font-size: 1.5rem; font-weight: 700; transition: 0.3s; transform: skewX(-10deg); display: inline-block; }
.btn-outline:hover { border-color: var(--yellow); color: var(--yellow); }

/* Metrics Strip */
.metrics-strip { background: var(--yellow); color: var(--black); padding: 30px 0; transform: skewY(-2deg); margin-top: 50px; }
.strip-grid { display: flex; justify-content: space-around; text-align: center; transform: skewY(2deg); }
.metric strong { display: block; font-family: var(--font-head); font-size: 3.5rem; line-height: 1; }
.metric span { font-family: var(--font-body); font-weight: 700; text-transform: uppercase; font-size: 0.9rem; }

/* Why Section */
.section-title h2 { font-family: var(--font-head); font-size: 3.5rem; font-style: italic; text-transform: uppercase; margin-bottom: 5px; }
.yellow-bar { width: 100px; height: 6px; background: var(--yellow); margin-bottom: 40px; transform: skewX(-20deg); }
.yellow-bar.left { margin-right: auto; }
.center { text-align: center; }
.center .yellow-bar { margin: 0 auto 40px; }

.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 30px; }
.speed-card { background: var(--dark-grey); padding: 40px; position: relative; border-left: 4px solid var(--yellow); transition: 0.3s; }
.speed-card:hover { transform: translateY(-10px); background: #222; }
.num { font-family: var(--font-head); font-size: 4rem; color: #333; position: absolute; top: 10px; right: 20px; line-height: 1; font-weight: 700; }
.speed-card h3 { font-family: var(--font-head); font-size: 2rem; margin-bottom: 15px; position: relative; z-index: 2; }
.speed-card p { color: #aaa; position: relative; z-index: 2; }

/* Tracks */
.tracks-list { display: flex; flex-direction: column; gap: 30px; max-width: 900px; margin: 0 auto; }
.track-card { background: var(--dark-grey); padding: 30px; border: 1px solid #333; transition: 0.3s; }
.track-card.highlight { border-color: var(--yellow); box-shadow: 0 0 20px rgba(255, 215, 0, 0.1); }
.track-header { display: flex; justify-content: space-between; align-items: center; border-bottom: 1px solid #333; padding-bottom: 15px; margin-bottom: 20px; }
.track-header h3 { font-family: var(--font-head); font-size: 2rem; font-style: italic; margin: 0; }
.level { font-family: var(--font-head); background: #333; padding: 2px 10px; font-size: 1rem; }
.track-card.highlight .level { background: var(--yellow); color: var(--black); }
.track-body ul { list-style: none; margin: 20px 0; color: #aaa; }
.track-body li { margin-bottom: 5px; font-family: var(--font-head); font-size: 1.2rem; }
.btn-link { color: var(--yellow); font-family: var(--font-head); font-size: 1.3rem; font-weight: 700; text-transform: uppercase; }

/* Mentors */
.mentors-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 40px; align-items: center; }
.mentor-intro h1 { font-family: var(--font-head); font-size: 3.5rem; line-height: 1; margin-bottom: 20px; }
.mentor-card { background: var(--dark-grey); padding: 20px; text-align: center; border-bottom: 4px solid var(--yellow); }
.mentor-card img { width: 100%; height: 300px; object-fit: cover; margin-bottom: 20px; }
.m-info h3 { font-family: var(--font-head); font-size: 2rem; margin-bottom: 5px; }
.m-info span { color: var(--yellow); font-weight: 700; display: block; margin-bottom: 10px; }
.m-info p { font-size: 0.9rem; color: #aaa; }

/* Contact Form */
.apply-box { max-width: 700px; margin: 0 auto; background: var(--dark-grey); padding: 50px; border: 2px solid var(--yellow); transform: skewX(-2deg); }
.apply-box > * { transform: skewX(2deg); } /* Counter skew content */
.apply-header { text-align: center; margin-bottom: 40px; }
.apply-header h2 { font-family: var(--font-head); font-size: 3rem; margin-bottom: 10px; }

.high-contrast-form .form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; margin-bottom: 20px; }
.form-group { margin-bottom: 20px; }
.high-contrast-form input, .high-contrast-form select, .high-contrast-form textarea { width: 100%; background: var(--black); border: 1px solid #444; color: var(--white); padding: 15px; font-family: var(--font-head); font-size: 1.2rem; }
.high-contrast-form input:focus, .high-contrast-form select:focus, .high-contrast-form textarea:focus { border-color: var(--yellow); outline: none; }
.full { width: 100%; margin-top: 10px; }

/* Legal */
.legal-text { max-width: 800px; margin: 0 auto; }
.legal-text h1 { font-family: var(--font-head); font-size: 3rem; }

/* Footer */
.speed-footer { border-top: 1px solid #333; padding: 60px 0 20px; margin-top: 100px; }
.footer-content { display: flex; justify-content: space-between; align-items: center; margin-bottom: 40px; }
.f-brand h4 { font-family: var(--font-head); font-size: 2rem; color: var(--yellow); margin-bottom: 5px; }
.f-links a { margin-left: 20px; font-family: var(--font-head); font-size: 1.2rem; color: #aaa; }
.f-links a:hover { color: var(--white); }
.copyright { text-align: center; font-size: 0.8rem; color: #555; }

@media (max-width: 900px) {
    .hero-content h1 { font-size: 3rem; }
    .cta-group { flex-direction: column; }
    .grid-3, .mentors-grid, .high-contrast-form .form-row { grid-template-columns: 1fr; }
    .strip-grid { flex-direction: column; gap: 20px; }
    .footer-content { flex-direction: column; gap: 20px; text-align: center; }
}