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

:root {
    --color-bg: #050505;
    /* Pitch Black */
    --color-surface: #121212;
    /* Slightly Lighter Black */
    --color-text: #FFFFFF;
    /* Pure White */
    --color-muted: #A0A0A0;
    /* Light Slate */
    --color-volt: #CCFF00;
    /* Neon Volt Yellow */
    --font-heading: 'Bebas Neue', sans-serif;
    --font-body: 'Inter', sans-serif;
    --nav-height: 90px;
}

html {
    scroll-behavior: smooth;
    background-color: var(--color-bg);
}

body {
    background-color: var(--color-bg);
    color: var(--color-text);
    font-family: var(--font-body);
    line-height: 1.5;
    overflow-x: hidden;
}

/* Utilities */
.section {
    padding: 12vh 5vw;
    width: 100%;
    position: relative;
    overflow: hidden;
}

/* Dark Section — layered gradient + subtle grid */
.dark-section {
    background-color: var(--color-bg);
    background-image:
        linear-gradient(rgba(255, 255, 255, 0.025) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.025) 1px, transparent 1px);
    background-size: 60px 60px;
}

/* Black Section — angled stripe texture */
.black-section {
    background-color: var(--color-surface);
    background-image:
        repeating-linear-gradient(-55deg,
            rgba(255, 255, 255, 0.018) 0px,
            rgba(255, 255, 255, 0.018) 1px,
            transparent 1px,
            transparent 36px);
}

/* Volt glow accent — right-side radial for dark sections */
.dark-section::before {
    content: '';
    position: absolute;
    top: -20%;
    right: -15%;
    width: 55%;
    height: 140%;
    background: radial-gradient(ellipse, rgba(204, 255, 0, 0.05) 0%, transparent 65%);
    pointer-events: none;
    z-index: 0;
}

/* Black section bottom-left glow */
.black-section::before {
    content: '';
    position: absolute;
    bottom: -20%;
    left: -10%;
    width: 50%;
    height: 120%;
    background: radial-gradient(ellipse, rgba(204, 255, 0, 0.06) 0%, transparent 60%);
    pointer-events: none;
    z-index: 0;
}

/* Ensure section children appear above pseudo-element backgrounds */
.section>* {
    position: relative;
    z-index: 1;
}

.section-border-top {
    border-top: 1px solid rgba(255, 255, 255, 0.07);
}

.container {
    max-width: 1400px;
    margin: 0 auto;
}

.container-md {
    max-width: 900px;
    margin: 0 auto;
}

.text-center {
    text-align: center;
}

.text-volt {
    color: var(--color-volt);
}

.mb-4 {
    margin-bottom: 2rem;
}

.mt-4 {
    margin-top: 2rem;
}

/* ===== NAVBAR REDESIGN ===== */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 100;
    background: rgba(5, 5, 5, 0.85);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border-bottom: 1px solid rgba(204, 255, 0, 0.15);
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.5);
    transition: background 0.4s ease;
}

.nav-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: var(--nav-height);
    padding: 0 5vw;
    max-width: 1600px;
    margin: 0 auto;
    transition: padding 0.4s ease;
}

/* Volt accent line at very bottom of nav */
.navbar::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 2px;
    background: linear-gradient(to right, var(--color-volt) 0%, rgba(204, 255, 0, 0.3) 40%, transparent 70%);
    z-index: 1;
}

.logo {
    text-decoration: none;
    font-family: var(--font-heading);
    font-size: 2rem;
    letter-spacing: 4px;
    color: var(--color-text);
    display: flex;
    align-items: center;
    gap: 0.5rem;
    line-height: 1;
}

.logo-svg {
    height: 90px;
    width: auto;
}

/* Logo left border accent previously here, replaced by logo-accent text */

.nav-links {
    display: flex;
    list-style: none;
    gap: 0;
}

.nav-link {
    text-decoration: none;
    color: rgba(255, 255, 255, 0.65);
    font-family: var(--font-heading);
    font-size: 1.1rem;
    letter-spacing: 1.5px;
    transition: color 0.2s ease;
    padding: 0.5rem 1.2rem;
    position: relative;
    display: block;
}

/* Volt underline slide-in on hover */
.nav-link::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 1.2rem;
    right: 1.2rem;
    height: 2px;
    background: var(--color-volt);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.25s ease;
}

.nav-link:hover {
    color: var(--color-text);
}

.nav-link:hover::after {
    transform: scaleX(1);
}

.nav-actions {
    display: flex;
    gap: 0.75rem;
    align-items: center;
}

/* Login - ghost with volt border */
.btn-login {
    padding: 0.5rem 1.4rem;
    border: 2px solid var(--color-volt);
    color: var(--color-volt);
    background: transparent;
    font-size: 1rem;
    letter-spacing: 1.5px;
    transition: all 0.25s ease;
}

.btn-login:hover {
    background: var(--color-volt);
    color: var(--color-bg);
    transform: translate(-2px, -2px);
    box-shadow: 4px 4px 0px rgba(255, 255, 255, 0.1);
}

/* Join Now - solid volt fill */
.btn-join {
    padding: 0.55rem 1.6rem;
    background: var(--color-volt);
    border: 2px solid var(--color-volt);
    color: var(--color-bg);
    font-size: 1rem;
    letter-spacing: 1.5px;
    font-weight: 800;
    transition: all 0.25s ease;
    cursor: pointer;
}

.btn-join:hover {
    background: #fff;
    border-color: #fff;
    color: var(--color-bg);
    transform: translate(-2px, -2px);
    box-shadow: 4px 4px 0px var(--color-volt);
}

/* Buttons */
.btn-primary,
.btn-black {
    display: inline-block;
    font-family: var(--font-heading);
    font-size: 1.2rem;
    letter-spacing: 1px;
    text-decoration: none;
    text-align: center;
    cursor: pointer;
    transition: all 0.2s ease;
}

.btn-primary {
    background: var(--color-volt);
    color: var(--color-bg);
    padding: 1rem 3rem;
    font-size: 1.5rem;
    border: 2px solid var(--color-volt);
}

.btn-primary:hover {
    background: #fff;
    border-color: #fff;
    color: var(--color-bg);
    transform: translate(-4px, -4px);
    box-shadow: 6px 6px 0px var(--color-volt);
}

.btn-black {
    background: var(--color-bg);
    color: var(--color-volt);
    padding: 1rem 3rem;
    font-size: 1.5rem;
    border: 2px solid var(--color-volt);
}

.btn-black:hover {
    background: var(--color-volt);
    border-color: var(--color-volt);
    color: var(--color-bg);
    transform: translate(-4px, -4px);
    box-shadow: 6px 6px 0px rgba(255, 255, 255, 0.1);
}

/* Hero Section */
.hero-brutal {
    position: relative;
    height: 100vh;
    display: flex;
    align-items: center;
    padding: 0 5vw;
}

.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
}

.dimmed-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center 30%;
    filter: grayscale(100%) contrast(1.2);
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background:
        linear-gradient(to right, rgba(5, 5, 5, 0.97) 0%, rgba(5, 5, 5, 0.6) 50%, rgba(5, 5, 5, 0.2) 100%),
        linear-gradient(to bottom, rgba(5, 5, 5, 0.0) 60%, rgba(5, 5, 5, 1) 100%);
    z-index: 1;
}

/* Hero Particles */
.hero-particles {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 2;
    pointer-events: none;
    overflow: hidden;
}

.particle {
    position: absolute;
    background: var(--color-volt);
    border-radius: 50%;
    opacity: 0;
    animation: particleFloat linear infinite;
}

@keyframes particleFloat {
    0% {
        transform: translateY(0) scale(1);
        opacity: 0;
    }

    10% {
        opacity: 0.6;
    }

    90% {
        opacity: 0.2;
    }

    100% {
        transform: translateY(-110vh) scale(0.5);
        opacity: 0;
    }
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
    margin-top: var(--nav-height);
}

.massive-heading {
    font-family: var(--font-heading);
    font-size: clamp(6rem, 12vw, 15rem);
    line-height: 0.85;
    margin-bottom: 1rem;
    color: var(--color-text);
    text-transform: uppercase;
}

.hero-sub {
    font-family: var(--font-body);
    font-size: clamp(1.2rem, 2vw, 1.5rem);
    font-weight: 600;
    color: var(--color-muted);
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 3rem;
    max-width: 600px;
}

/* Philosophy Section */
.section-title {
    font-family: var(--font-heading);
    font-size: clamp(3rem, 6vw, 6rem);
    line-height: 0.9;
    letter-spacing: 1px;
    position: relative;
    display: inline-block;
}

.section-title-wrap {
    text-align: center;
    position: relative;
    margin-bottom: 2rem;
}

.flex-box {
    display: flex;
    align-items: center;
    gap: 4rem;
}

.flex-left {
    flex: 1;
}

.flex-right {
    flex: 1.5;
}

.border-left {
    padding-left: 3rem;
    border-left: 4px solid var(--color-volt);
}

.body-text {
    font-size: 1.25rem;
    color: var(--color-muted);
    line-height: 1.6;
}

/* Stats Section */
.stats-section {
    background-color: var(--color-volt);
    background-image: repeating-linear-gradient(-60deg,
            rgba(5, 5, 5, 0.06) 0px,
            rgba(5, 5, 5, 0.06) 1px,
            transparent 1px,
            transparent 30px);
    padding: 6vh 5vw;
    position: relative;
    overflow: hidden;
}

.stats-section::after {
    content: 'IRON';
    position: absolute;
    right: 3vw;
    top: 50%;
    transform: translateY(-50%);
    font-family: var(--font-heading);
    font-size: clamp(8rem, 16vw, 18rem);
    color: rgba(5, 5, 5, 0.06);
    line-height: 1;
    pointer-events: none;
    letter-spacing: -4px;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    text-align: center;
}

.stat-item {
    padding: 1rem;
}

.stat-number {
    font-family: var(--font-heading);
    font-size: clamp(3rem, 6vw, 6rem);
    color: var(--color-bg);
    line-height: 1;
    transition: transform 0.3s ease;
}

.stat-label {
    font-family: var(--font-heading);
    font-size: 1.2rem;
    color: rgba(5, 5, 5, 0.7);
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-top: 0.5rem;
}

/* Zones Grid */
.grid-blocks {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 4rem;
}

.block-card {
    background: var(--color-bg);
    padding: 3rem 2rem;
    border: 1px solid rgba(255, 255, 255, 0.05);
    transition: transform 0.3s ease, border-color 0.3s ease;
}

.block-card:hover {
    transform: translateY(-10px);
    border-color: var(--color-volt);
}

.block-number {
    font-family: var(--font-heading);
    font-size: 4rem;
    color: var(--color-volt);
    line-height: 1;
    opacity: 0.8;
}

.block-title {
    font-family: var(--font-heading);
    font-size: 2.5rem;
    margin: 1rem 0;
    letter-spacing: 1px;
}

.block-desc {
    color: var(--color-muted);
    font-size: 1rem;
}

/* Gauntlet Schedule */
.schedule-head {
    display: flex;
    align-items: center;
    gap: 2rem;
    margin-bottom: 1rem;
}

.badge {
    background: var(--color-volt);
    color: var(--color-bg);
    font-family: var(--font-heading);
    padding: 0.25rem 1rem;
    font-size: 1.25rem;
    border-radius: 2px;
}

.brutal-list {
    list-style: none;
    border-top: 2px solid rgba(255, 255, 255, 0.15);
}

.brutal-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 2rem 0;
    border-bottom: 2px solid rgba(255, 255, 255, 0.15);
    transition: background-color 0.3s ease, padding 0.3s ease;
}

.brutal-item:hover {
    background-color: rgba(204, 255, 0, 0.05);
    padding-left: 1rem;
    /* Slight volt tint on hover */
}

.time-col {
    font-family: var(--font-heading);
    color: var(--color-volt);
    font-size: 2rem;
    min-width: 120px;
}

.name-col {
    font-family: var(--font-heading);
    font-size: 2.5rem;
    flex-grow: 1;
    letter-spacing: 1px;
}

.coach-col {
    font-weight: 600;
    color: var(--color-muted);
    text-transform: uppercase;
    letter-spacing: 1px;
    min-width: 120px;
    text-align: right;
}

/* Challenge of the Week */
.challenge-inner {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 6rem;
    align-items: start;
}

.challenge-desc {
    font-size: 1.1rem;
    color: var(--color-muted);
    line-height: 1.8;
    margin-bottom: 2rem;
}

.challenge-stats {
    display: flex;
    gap: 4rem;
    margin-bottom: 2.5rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    padding: 1.5rem 0;
}

.ch-stat {
    display: flex;
    flex-direction: column;
}

.ch-stat-val {
    font-family: var(--font-heading);
    font-size: 3rem;
    line-height: 1;
}

.ch-stat-label {
    font-size: 0.85rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--color-muted);
    margin-top: 0.25rem;
}

.challenge-form {
    display: flex;
    gap: 1rem;
}

.challenge-input {
    flex: 1;
    padding: 1rem;
    background: var(--color-bg);
    border: 2px solid rgba(255, 255, 255, 0.2);
    color: var(--color-text);
    font-family: var(--font-heading);
    font-size: 1.5rem;
    letter-spacing: 1px;
    transition: all 0.3s ease;
}

.challenge-input:focus {
    outline: none;
    border-color: var(--color-volt);
    transform: translate(-2px, -2px);
    box-shadow: 4px 4px 0px rgba(255, 255, 255, 0.1);
}

.challenge-btn {
    padding: 1rem 2rem;
    font-size: 1.5rem;
    border: none;
    white-space: nowrap;
    flex-shrink: 0;
}

.challenge-success {
    margin-top: 1rem;
    font-family: var(--font-heading);
    font-size: 1.25rem;
    color: var(--color-volt);
    letter-spacing: 2px;
    padding: 0.75rem 0;
}

/* Coach Photo Styles */
.coach-img-wrap {
    width: 100%;
    height: 280px;
    overflow: hidden;
    margin-bottom: 1.5rem;
    position: relative;
}

.coach-photo {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center top;
    filter: grayscale(30%) contrast(1.1);
    transition: filter 0.4s ease, transform 0.4s ease;
}

.coach-card:hover .coach-photo {
    filter: grayscale(0%) contrast(1.0);
    transform: scale(1.04);
}

/* ===== NEW FOOTER ===== */
.site-footer {
    background-color: #000;
    color: var(--color-text);
    border-top: 1px solid rgba(255, 255, 255, 0.08);
}

/* CTA Banner */
.footer-cta {
    background-color: var(--color-volt);
    padding: 8vh 0;
}

.footer-cta-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 3rem;
    flex-wrap: wrap;
}

.footer-cta-inner .massive-heading {
    font-size: clamp(4rem, 8vw, 8rem);
    margin-bottom: 0.25rem;
}

.footer-sub {
    font-weight: 800;
    font-size: 1.1rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: rgba(5, 5, 5, 0.7);
}

.footer-cta-btn {
    flex-shrink: 0;
    font-size: 1.2rem;
    padding: 1rem 3rem;
    white-space: nowrap;
}

/* Main Grid */
.footer-main {
    padding: 8vh 0 6vh;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1.5fr;
    gap: 5%;
}

/* Brand */
.footer-logo {
    font-family: var(--font-heading);
    font-size: 2.5rem;
    letter-spacing: 4px;
    color: var(--color-volt);
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.logo-svg-footer {
    height: 100px;
    width: auto;
}

.footer-tagline {
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.95rem;
    line-height: 1.8;
    margin-bottom: 2rem;
}

.footer-socials {
    display: flex;
    gap: 1.5rem;
}

.social-link {
    font-family: var(--font-heading);
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.5);
    text-decoration: none;
    letter-spacing: 2px;
    transition: color 0.2s ease;
}

.social-link:hover {
    color: var(--color-volt);
}

/* Footer columns */
.footer-heading {
    font-family: var(--font-heading);
    font-size: 1.1rem;
    letter-spacing: 3px;
    color: var(--color-volt);
    text-transform: uppercase;
    margin-bottom: 1.5rem;
}

.footer-links {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
}

.footer-links a {
    text-decoration: none;
    color: rgba(255, 255, 255, 0.55);
    font-size: 0.95rem;
    transition: color 0.2s ease, padding-left 0.2s ease;
    display: block;
}

.footer-links a:hover {
    color: var(--color-volt);
    padding-left: 6px;
}

/* Newsletter */
.footer-newsletter-desc {
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.9rem;
    line-height: 1.7;
    margin-bottom: 1.25rem;
}

.newsletter-form {
    display: flex;
    gap: 0;
}

.newsletter-input {
    flex: 1;
    padding: 0.75rem 1rem;
    background: rgba(255, 255, 255, 0.06);
    border: 2px solid rgba(255, 255, 255, 0.15);
    border-right: none;
    color: var(--color-text);
    font-family: var(--font-body);
    font-size: 0.9rem;
    transition: all 0.2s ease;
}

.newsletter-input:focus {
    outline: none;
    border-color: var(--color-volt);
    background: rgba(255, 255, 255, 0.1);
}

.newsletter-btn {
    padding: 0.75rem 1.25rem;
    background: var(--color-volt);
    border: 2px solid var(--color-volt);
    color: var(--color-bg);
    font-family: var(--font-heading);
    font-size: 1.5rem;
    cursor: pointer;
    transition: all 0.2s ease;
}

.newsletter-btn:hover {
    background: #fff;
    border-color: #fff;
}

.newsletter-success {
    margin-top: 0.75rem;
    font-family: var(--font-heading);
    color: var(--color-volt);
    letter-spacing: 2px;
    font-size: 1rem;
}

/* Bottom Bar */
.footer-bottom {
    padding: 2rem 0;
}

.footer-bottom-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: rgba(255, 255, 255, 0.35);
}

.footer-bottom-links {
    display: flex;
    gap: 2rem;
}

.footer-bottom-links a {
    color: rgba(255, 255, 255, 0.35);
    text-decoration: none;
    transition: color 0.2s ease;
}

.footer-bottom-links a:hover {
    color: var(--color-volt);
}

/* ===== HAMBURGER MENU (FRIES DESIGN) ===== */
.hamburger {
    display: none;
    flex-direction: row;
    align-items: flex-end;
    justify-content: center;
    gap: 6px;
    width: 44px;
    height: 44px;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 6px 0;
    z-index: 200;
}

.ham-line {
    display: block;
    width: 6px;
    background: var(--color-volt);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    transform-origin: center;
    border-radius: 2px;
}

/* Staggered heights for "fries" */
.ham-line:nth-child(1) {
    height: 60%;
}

.ham-line:nth-child(2) {
    height: 100%;
}

.ham-line:nth-child(3) {
    height: 80%;
}

/* Animated X state - handle vertical to diagonal transition */
.hamburger.open {
    align-items: center;
    /* Center them for the X */
}

.hamburger.open .ham-line {
    height: 100%;
    /* Make them equal length for the X */
}

.hamburger.open .ham-line:nth-child(1) {
    transform: translateX(12px) rotate(45deg);
}

.hamburger.open .ham-line:nth-child(2) {
    opacity: 0;
    transform: scaleY(0);
}

.hamburger.open .ham-line:nth-child(3) {
    transform: translateX(-12px) rotate(-45deg);
}

/* Mobile nav overlay */
.nav-mobile-open #main-menu {
    display: flex !important;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background: rgba(5, 5, 5, 0.98);
    backdrop-filter: blur(20px);
    flex-direction: column;
    justify-content: center;
    align-items: center;
    z-index: 150;
}

.nav-mobile-open .nav-links {
    display: flex !important;
    flex-direction: column;
    align-items: center;
    gap: 0;
}

.nav-mobile-open .nav-link {
    font-size: clamp(2.5rem, 8vw, 5rem);
    color: rgba(255, 255, 255, 0.8);
    padding: 1rem 2rem;
}

.nav-mobile-open .nav-link:hover {
    color: var(--color-volt);
}

/* ===== RESPONSIVE ===== */
@media (max-width: 960px) {
    .hamburger {
        display: flex;
    }

    #main-menu {
        display: none;
    }

    .nav-actions {
        display: none;
    }

    .footer-grid {
        grid-template-columns: 1fr 1fr;
        gap: 4rem 6%;
    }

    .footer-cta-inner {
        flex-direction: column;
        text-align: center;
    }

    .footer-cta-btn {
        width: 100%;
    }
}

@media (max-width: 600px) {
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .footer-bottom-inner {
        flex-direction: column;
        text-align: center;
    }

    .footer-bottom-links {
        gap: 1.5rem;
    }
}


@media (max-width: 900px) {
    .border-left {
        padding-left: 0;
        border-left: none;
        border-top: 4px solid var(--color-volt);
        padding-top: 1rem;
    }

    .brutal-item {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.5rem;
    }

    .flex-box {
        flex-direction: column;
        align-items: flex-start;
        gap: 2rem;
    }
}

/* --- Coaches, Pricing, Modal CSS --- */

/* --- VANGUARD EDITORIAL SECTION --- */

.vanguard {
    padding: 12vh 0 0;
    background: #000;
    overflow: hidden;
}

.vanguard-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    gap: 4rem;
    margin-bottom: 6rem;
}

.vanguard-header-left {
    flex: 1;
}

.label-tag {
    display: inline-block;
    color: var(--color-volt);
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-size: 0.9rem;
    margin-bottom: 1rem;
    position: relative;
    padding-left: 24px;
}

.label-tag::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 12px;
    height: 2px;
    background: var(--color-volt);
}

.vanguard-header-right {
    flex: 1;
    max-width: 500px;
    color: rgba(255, 255, 255, 0.6);
}

.vanguard-list {
    display: flex;
    flex-direction: column;
}

.vanguard-row {
    display: flex;
    min-height: 80vh;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.vanguard-row:last-child {
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.vanguard-row--reverse {
    flex-direction: row-reverse;
}

.vanguard-photo {
    flex: 0 0 45%;
    position: relative;
    overflow: hidden;
    background: #111;
}

.vanguard-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center top;
    filter: grayscale(80%) contrast(1.2);
    transition: filter 0.8s ease, transform 0.8s ease;
}

.vanguard-row:hover .vanguard-photo img {
    filter: grayscale(0%) contrast(1.0);
    transform: scale(1.05);
}

.vanguard-photo-overlay {
    position: absolute;
    bottom: 2rem;
    left: 2rem;
    pointer-events: none;
}

.coach-index {
    font-family: var(--font-heading);
    font-size: 6rem;
    color: var(--color-volt);
    line-height: 1;
    opacity: 0.8;
}

.vanguard-info {
    flex: 1;
    padding: 6vw 5vw;
    display: flex;
    flex-direction: column;
    justify-content: center;
    background-color: var(--color-bg);
    background-image: radial-gradient(rgba(255, 255, 255, 0.03) 1px, transparent 1px);
    background-size: 30px 30px;
    position: relative;
}

.vanguard-info::before {
    content: '';
    position: absolute;
    top: -20%;
    right: -20%;
    width: 50%;
    height: 140%;
    background: radial-gradient(ellipse, rgba(204, 255, 0, 0.03) 0%, transparent 65%);
    pointer-events: none;
    z-index: 0;
}

.vanguard-info>* {
    position: relative;
    z-index: 1;
}

.vanguard-info-top {
    margin-bottom: 2rem;
}

.vanguard-name {
    font-family: var(--font-heading);
    font-size: 4rem;
    letter-spacing: 2px;
    margin-bottom: 0.5rem;
    line-height: 1;
}

.vanguard-specialty {
    color: var(--color-volt);
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-size: 1rem;
}

.vanguard-bio {
    font-size: 1.15rem;
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.7;
    margin-bottom: 2.5rem;
    max-width: 600px;
}

.vanguard-tags {
    list-style: none;
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    margin-bottom: 3.5rem;
}

.vanguard-tags li {
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    padding: 0.5rem 1rem;
    border: 1px solid rgba(255, 255, 255, 0.15);
    color: rgba(255, 255, 255, 0.8);
    border-radius: 20px;
}

.btn-vanguard {
    align-self: flex-start;
    display: inline-block;
    font-family: var(--font-heading);
    font-size: 1.3rem;
    letter-spacing: 1px;
    text-decoration: none;
    color: var(--color-bg);
    background: var(--color-volt);
    padding: 1rem 2.5rem;
    transition: transform 0.3s ease, background 0.3s ease;
}

.btn-vanguard:hover {
    background: #fff;
    transform: translateY(-4px);
}

@media (max-width: 1024px) {
    .vanguard-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 2rem;
    }

    .vanguard-row {
        flex-direction: column !important;
        min-height: auto;
    }

    .vanguard-photo {
        height: 50vh;
        width: 100%;
    }
}

/* Memberships (The Toll) */
.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 4rem;
    align-items: center;
    /* helps featured card pop */
}

.pricing-card {
    background: var(--color-surface);
    padding: 3rem 2rem;
    text-align: center;
    border: 2px solid rgba(255, 255, 255, 0.1);
    position: relative;
    transition: all 0.3s ease;
}

.pricing-card h3 {
    font-family: var(--font-heading);
    font-size: 2.5rem;
    margin-bottom: 1rem;
    letter-spacing: 1px;
}

.price {
    font-family: var(--font-heading);
    font-size: 5em;
    line-height: 1;
    margin-bottom: 2rem;
}

.period {
    font-family: var(--font-body);
    font-size: 1rem;
    color: var(--color-muted);
}

.pricing-features {
    list-style: none;
    margin-bottom: 3rem;
    text-align: left;
}

.pricing-features li {
    padding: 1rem 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    color: var(--color-muted);
}

.featured {
    transform: scale(1.05);
    background: var(--color-bg);
    z-index: 2;
    box-shadow: 8px 8px 0px var(--color-volt);
}

.border-volt {
    border: 2px solid var(--color-volt);
}

.badge-featured {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--color-volt);
    color: var(--color-bg);
    font-family: var(--font-heading);
    padding: 0.25rem 1rem;
    font-size: 1.25rem;
    letter-spacing: 1px;
}

/* Location */
.massive-sub {
    font-family: var(--font-heading);
    font-size: clamp(2rem, 4vw, 3rem);
    letter-spacing: 1px;
}

.hours-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    text-align: center;
}

.hours-grid h4 {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
    letter-spacing: 1px;
}

/* The Armory (Store) */
.shop-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.product-card {
    background: var(--color-bg);
    border: 1px solid rgba(255, 255, 255, 0.05);
    transition: transform 0.3s ease, border-color 0.3s ease;
    display: flex;
    flex-direction: column;
}

.product-card:hover {
    transform: translateY(-5px);
    border-color: var(--color-volt);
}

.product-img-box {
    position: relative;
    background: #111;
    height: 250px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.placeholder-img {
    font-family: var(--font-heading);
    font-size: 4rem;
    color: rgba(255, 255, 255, 0.05);
    letter-spacing: 2px;
}

.placeholder-img.dark {
    color: rgba(0, 0, 0, 0.3);
}

.product-badge {
    position: absolute;
    top: 10px;
    left: 10px;
    background: var(--color-volt);
    color: var(--color-bg);
    font-family: var(--font-heading);
    padding: 0.2rem 0.5rem;
    font-size: 1rem;
    z-index: 2;
}

.product-badge.sold-out {
    background: #FF3333;
    color: white;
}

.product-info {
    padding: 1.5rem;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.product-title {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
    letter-spacing: 1px;
}

.product-price {
    color: var(--color-volt);
    font-family: var(--font-body);
    font-weight: 600;
    margin-bottom: 1.5rem;
    font-size: 1.1rem;
}

.product-btn {
    margin-top: auto;
    width: 100%;
    padding: 0.8rem;
    font-size: 1.1rem;
    border: none;
}

/* Wall of Fame (Testimonials) */
.testimonial-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    align-items: stretch;
}

.test-card {
    background: var(--color-surface);
    border: 1px solid rgba(255, 255, 255, 0.05);
    padding: 3rem 2rem;
    position: relative;
    text-align: left;
    display: flex;
    flex-direction: column;
    transition: transform 0.3s ease;
}

.test-card:hover {
    transform: translateY(-5px);
}

.test-card.featured-test {
    background: var(--color-volt);
    color: var(--color-bg);
    transform: scale(1.02);
    z-index: 2;
    box-shadow: 0 10px 30px rgba(204, 255, 0, 0.1);
}

.test-card.featured-test:hover {
    transform: scale(1.02) translateY(-5px);
}

.test-card.featured-test .test-author,
.test-card.featured-test .test-quote {
    color: var(--color-bg);
}

.quote-mark {
    font-family: var(--font-heading);
    font-size: 6rem;
    line-height: 0;
    color: rgba(255, 255, 255, 0.1);
    margin-bottom: 2rem;
    margin-top: 1rem;
}

.test-quote {
    font-size: 1.1rem;
    font-style: italic;
    margin-bottom: 2rem;
    flex-grow: 1;
    color: var(--color-muted);
}

.test-author {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
    letter-spacing: 1px;
}

.test-stat {
    font-weight: 800;
    text-transform: uppercase;
    font-size: 0.85rem;
    letter-spacing: 1px;
}

.text-bg {
    color: var(--color-bg);
}

/* Modal Overlay */
.modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(5, 5, 5, 0.95);
    /* Deep backdrop */
    z-index: 1000;
    display: flex;
    justify-content: center;
    align-items: center;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
}

.modal-overlay.active {
    opacity: 1;
    visibility: visible;
}

.modal-box {
    background: var(--color-surface);
    padding: 3rem;
    width: 90%;
    max-width: 500px;
    position: relative;
    border: 1px solid var(--color-volt);
    transform: scale(0.95);
    transition: transform 0.3s ease;
}

.modal-overlay.active .modal-box {
    transform: scale(1);
}

.modal-close {
    position: absolute;
    top: 1rem;
    right: 1.5rem;
    background: none;
    border: none;
    color: var(--color-text);
    font-size: 2rem;
    cursor: pointer;
    transition: color 0.3s ease;
}

.modal-close:hover {
    color: var(--color-volt);
}

/* Brutal Form */
.brutal-form {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.form-row {
    display: flex;
    gap: 1.5rem;
    flex-wrap: wrap;
}

.flex-1 {
    flex: 1;
    min-width: 200px;
}

.calculator-card {
    background: var(--color-surface);
    border: 2px solid rgba(255, 255, 255, 0.1);
    padding: 3rem;
    max-width: 700px;
    margin: 0 auto;
    position: relative;
    transition: border-color 0.3s ease;
}

.calculator-card:hover {
    border-color: var(--color-volt);
}

.rm-result-box {
    margin-top: 3rem;
    padding-top: 2rem;
    border-top: 2px solid rgba(255, 255, 255, 0.1);
    text-align: center;
    transition: opacity 0.5s ease;
}

.rm-result-box.hidden {
    opacity: 0;
    visibility: hidden;
    height: 0;
    margin: 0;
    padding: 0;
    border: none;
    overflow: hidden;
}

.massive-result {
    font-family: var(--font-heading);
    font-size: clamp(4rem, 8vw, 6rem);
    color: var(--color-text);
    line-height: 1;
    margin: 1rem 0;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.form-group label {
    font-family: var(--font-heading);
    font-size: 1.25rem;
    letter-spacing: 1px;
    color: var(--color-volt);
}

.form-group input,
.form-group select {
    padding: 1rem;
    background: var(--color-bg);
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: var(--color-text);
    font-family: var(--font-body);
    font-size: 1rem;
}

.form-group input:focus,
.form-group select:focus {
    outline: none;
    border-color: var(--color-volt);
}

/* --- THE FUEL (MACROS) --- */
.macro-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1rem;
    text-align: center;
}

.macro-item {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.macro-label {
    font-family: var(--font-heading);
    color: var(--color-muted);
    font-size: 1.2rem;
    letter-spacing: 1px;
}

.macro-val {
    font-family: var(--font-heading);
    color: var(--color-volt);
    font-size: 2.5rem;
    line-height: 1;
}

/* --- THE VAULT (VIDEOS) --- */
.video-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
}

.video-card {
    background: var(--color-bg);
    border: 1px solid rgba(255, 255, 255, 0.05);
    padding: 1rem;
    text-align: center;
    transition: transform 0.3s ease, border-color 0.3s ease;
    cursor: pointer;
}

.video-card:hover {
    transform: translateY(-5px);
    border-color: var(--color-volt);
}

.video-thumb {
    width: 100%;
    aspect-ratio: 16 / 9;
    background: #111;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1rem;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: border-color 0.3s ease;
}

.video-card:hover .video-thumb {
    border-color: var(--color-volt);
}

.play-icon {
    color: var(--color-text);
    font-size: 3rem;
    opacity: 0.5;
    transition: all 0.3s ease;
}

.video-card:hover .play-icon {
    color: var(--color-volt);
    opacity: 1;
    transform: scale(1.1);
}

.video-box {
    max-width: 800px;
    width: 95%;
}

.video-player-mockup {
    width: 100%;
    aspect-ratio: 16 / 9;
    background: #000;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 2px solid rgba(255, 255, 255, 0.1);
}

.playing-text {
    font-family: var(--font-heading);
    color: var(--color-volt);
    font-size: 2rem;
    letter-spacing: 2px;
    animation: blink 1.5s infinite;
}

@keyframes blink {

    0%,
    100% {
        opacity: 1;
    }

    50% {
        opacity: 0.3;
    }
}

/* --- GAUNTLET CLASS BOOKING --- */
.bookable-class {
    cursor: default;
}

.bookable-class:hover {
    background-color: rgba(204, 255, 0, 0.02);
}

.btn-book {
    margin-left: 2rem;
    opacity: 0;
    transform: translateX(-10px);
    transition: all 0.3s ease;
}

.bookable-class:hover .btn-book {
    opacity: 1;
    transform: translateX(0);
}

.btn-sm {
    padding: 0.5rem 1.5rem;
    font-size: 1.2rem;
}

/* JS Animation Classes */
.reveal {
    opacity: 0;
    transition: all 0.8s cubic-bezier(0.5, 0, 0, 1);
}

.reveal.active {
    opacity: 1;
}

/* Modifiers for direction (optional logic in JS, or handled purely by base classes) */
.reveal-up {
    transform: translateY(50px);
}

.reveal-up.active {
    transform: translateY(0);
}

.reveal-left {
    transform: translateX(-50px);
}

.reveal-left.active {
    transform: translateX(0);
}

/* Responsive Updates for new sections */
@media (max-width: 900px) {
    .featured {
        transform: scale(1);
    }

    .hours-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .bookable-class .btn-book {
        opacity: 1;
        transform: none;
        margin-top: 1rem;
        margin-left: 0;
    }

    .challenge-inner {
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }

    .challenge-form {
        flex-direction: column;
    }

    .stats-grid {
        grid-template-columns: 1fr 1fr;
    }
}

/* ===== SECTION-SPECIFIC BACKGROUNDS ===== */

/* Philosophy — cross-hatch grid + bottom-right gradient bloom */
#philosophy {
    background-image:
        linear-gradient(rgba(204, 255, 0, 0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(204, 255, 0, 0.03) 1px, transparent 1px);
    background-size: 80px 80px;
}

#philosophy::before {
    background: radial-gradient(ellipse at 90% 90%, rgba(204, 255, 0, 0.07) 0%, transparent 55%);
}

#philosophy::after {
    content: 'GRIT';
    position: absolute;
    bottom: -4rem;
    right: -1rem;
    font-family: var(--font-heading);
    font-size: clamp(10rem, 20vw, 22rem);
    color: rgba(255, 255, 255, 0.025);
    line-height: 1;
    pointer-events: none;
    letter-spacing: -6px;
    z-index: 0;
}

/* Training Zones — dot-grid + volt left edge bar */
#zones {
    background-image: radial-gradient(rgba(255, 255, 255, 0.05) 1px, transparent 1px);
    background-size: 30px 30px;
}

#zones::before {
    background: radial-gradient(ellipse at 10% 50%, rgba(204, 255, 0, 0.07) 0%, transparent 55%);
}

#zones::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 100%;
    background: linear-gradient(to bottom, var(--color-volt), transparent);
    z-index: 2;
}

/* Gauntlet — diagonal stripes + volt glow right */
#gauntlet {
    background-image:
        repeating-linear-gradient(-60deg,
            rgba(255, 255, 255, 0.015) 0px,
            rgba(255, 255, 255, 0.015) 1px,
            transparent 1px,
            transparent 30px);
}

#gauntlet::before {
    background: radial-gradient(ellipse at 100% 50%, rgba(204, 255, 0, 0.07) 0%, transparent 55%);
}

#gauntlet::after {
    content: 'GAUNTLET';
    position: absolute;
    bottom: -3rem;
    right: -2rem;
    font-family: var(--font-heading);
    font-size: clamp(6rem, 13vw, 16rem);
    color: rgba(204, 255, 0, 0.03);
    line-height: 1;
    pointer-events: none;
    letter-spacing: -3px;
    z-index: 0;
}

/* Challenge — diagonal stripe + top volt line */
#challenge {
    background-image:
        repeating-linear-gradient(45deg,
            rgba(204, 255, 0, 0.015) 0px,
            rgba(204, 255, 0, 0.015) 1px,
            transparent 1px,
            transparent 50px);
    border-top: 3px solid rgba(204, 255, 0, 0.3);
}

#challenge::before {
    background: radial-gradient(ellipse at 50% 0%, rgba(204, 255, 0, 0.06) 0%, transparent 60%);
}

#challenge::after {
    content: '100';
    position: absolute;
    top: 50%;
    left: -2rem;
    transform: translateY(-50%);
    font-family: var(--font-heading);
    font-size: clamp(12rem, 24vw, 28rem);
    color: rgba(204, 255, 0, 0.04);
    line-height: 1;
    pointer-events: none;
    letter-spacing: -8px;
    z-index: 0;
}

/* Vault — fine grid lines */
#vault {
    background-image:
        linear-gradient(rgba(255, 255, 255, 0.04) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.04) 1px, transparent 1px);
    background-size: 70px 70px;
}

#vault::before {
    background: radial-gradient(ellipse at 50% 50%, rgba(204, 255, 0, 0.06) 0%, transparent 55%);
}

#vault::after {
    content: '\25B6';
    position: absolute;
    bottom: -3rem;
    right: -1rem;
    font-size: clamp(12rem, 22vw, 26rem);
    color: rgba(204, 255, 0, 0.03);
    line-height: 1;
    pointer-events: none;
    z-index: 0;
}

/* Armory — radial dot pattern + volt right edge */
#armory {
    background-image: radial-gradient(rgba(204, 255, 0, 0.04) 1.5px, transparent 1.5px);
    background-size: 40px 40px;
}

#armory::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 4px;
    height: 100%;
    background: linear-gradient(to bottom, transparent, var(--color-volt));
    z-index: 1;
    pointer-events: none;
}

#armory::after {
    content: 'GEAR';
    position: absolute;
    bottom: -3rem;
    left: -1rem;
    font-family: var(--font-heading);
    font-size: clamp(10rem, 18vw, 20rem);
    color: rgba(204, 255, 0, 0.04);
    line-height: 1;
    pointer-events: none;
    letter-spacing: -5px;
    z-index: 0;
}

/* Coaches — crisscross diagonal + centered glow */
#coaches {
    background-image:
        repeating-linear-gradient(45deg,
            rgba(255, 255, 255, 0.015) 0px,
            rgba(255, 255, 255, 0.015) 1px,
            transparent 1px,
            transparent 40px),
        repeating-linear-gradient(-45deg,
            rgba(255, 255, 255, 0.015) 0px,
            rgba(255, 255, 255, 0.015) 1px,
            transparent 1px,
            transparent 40px);
}

#coaches::before {
    background: radial-gradient(ellipse at 50% 50%, rgba(204, 255, 0, 0.05) 0%, transparent 50%);
}

#coaches::after {
    content: 'ELITE';
    position: absolute;
    bottom: -3rem;
    left: 50%;
    transform: translateX(-50%);
    font-family: var(--font-heading);
    font-size: clamp(9rem, 18vw, 22rem);
    color: rgba(255, 255, 255, 0.02);
    white-space: nowrap;
    line-height: 1;
    pointer-events: none;
    z-index: 0;
}

/* Memberships — horizontal line rows + volt top rule */
#memberships {
    position: relative;
    overflow: hidden;
    background-image:
        repeating-linear-gradient(0deg,
            rgba(255, 255, 255, 0.025) 0px,
            rgba(255, 255, 255, 0.025) 1px,
            transparent 1px,
            transparent 60px);
    border-top: 3px solid var(--color-volt);
}

#memberships::before {
    background: radial-gradient(ellipse at 50% -10%, rgba(204, 255, 0, 0.08) 0%, transparent 55%);
}

#memberships::after {
    content: 'COMMIT';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-family: var(--font-heading);
    font-size: clamp(8rem, 15vw, 18rem);
    color: rgba(255, 255, 255, 0.02);
    white-space: nowrap;
    line-height: 1;
    pointer-events: none;
    letter-spacing: -4px;
    z-index: 0;
}

/* Testimonials — light grid + quote mark watermark */
#wall {
    background-image:
        linear-gradient(rgba(255, 255, 255, 0.02) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.02) 1px, transparent 1px);
    background-size: 50px 50px;
}

#wall::before {
    background: radial-gradient(ellipse at 20% 30%, rgba(204, 255, 0, 0.06) 0%, transparent 50%);
}

#wall::after {
    content: '"';
    position: absolute;
    top: -6rem;
    left: 2vw;
    font-family: var(--font-heading);
    font-size: clamp(14rem, 28vw, 34rem);
    color: rgba(204, 255, 0, 0.06);
    line-height: 1;
    pointer-events: none;
    z-index: 0;
}

/* Location / HQ */
#location {
    background-image:
        repeating-linear-gradient(-30deg,
            rgba(255, 255, 255, 0.02) 0px,
            rgba(255, 255, 255, 0.02) 1px,
            transparent 1px,
            transparent 45px);
}

#location::before {
    background: radial-gradient(ellipse at 50% 100%, rgba(204, 255, 0, 0.08) 0%, transparent 50%);
}

#location::after {
    content: 'HQ';
    position: absolute;
    right: 3vw;
    bottom: -4rem;
    font-family: var(--font-heading);
    font-size: clamp(10rem, 20vw, 24rem);
    color: rgba(255, 255, 255, 0.025);
    line-height: 1;
    pointer-events: none;
    letter-spacing: -4px;
    z-index: 0;
}