:root {
    --primary: #131E29; /* HitMill Blue */
    --accent: #CC7A00;  /* Darker Premium Orange */
    --accent-hover: #A36200;
    --background: #131E29;
    --card-bg: #1A2836;
    --white: #FFFFFF;
    --light-bg: #1A2836;
    --text-main: #E2E8F0;
    --text-muted: #94A3B8;
    --text-white: #FFFFFF;
    --border: rgba(226, 232, 240, 0.1);
    --transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    --glass: rgba(19, 30, 41, 0.8);
    --shadow: 0 10px 40px rgba(0, 0, 0, 0.4);
}

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

/* Anchor links land below the fixed 60px navbar instead of behind it. */
html {
    scroll-padding-top: 60px;
}

body {
    font-family: 'Inter', sans-serif;
    line-height: 1.6;
    color: var(--text-main);
    background-color: var(--background);
    overflow-x: hidden;
}

h1, h2, h3 {
    font-family: 'Outfit', sans-serif;
    text-transform: uppercase;
    font-weight: 800;
}

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

/* Navbar */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background: var(--glass);
    backdrop-filter: blur(15px);
    z-index: 1000;
    height: 60px;
    display: flex;
    align-items: center;
    border-bottom: 1px solid var(--border);
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
}

.scroll-progress {
    position: absolute;
    bottom: 0;
    left: 0;
    height: 3px;
    background: var(--accent);
    width: 0%;
    transition: width 0.1s ease-out;
    box-shadow: 0 0 10px var(--accent);
}

.navbar-flex {
    display: flex;
    justify-content: center; /* Centered links */
    align-items: center;
    width: 100%;
}


.nav-links {
    display: flex;
    list-style: none;
    gap: 2.5rem;
    align-items: center;
}

.nav-links a {
    text-decoration: none;
    color: var(--text-white);
    font-weight: 600;
    font-size: 0.85rem;
    text-transform: uppercase;
    transition: var(--transition);
    letter-spacing: 1.5px;
}

.nav-links a:hover {
    color: var(--accent);
}

/* Sections */
.section {
    padding: 8rem 0;
}

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

.bg-dark {
    background-color: var(--primary);
    color: var(--text-white);
}

.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.section-header h2 {
    font-size: 2.5rem;
    letter-spacing: 2px;
}

.underline {
    width: 140px;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--accent) 50%, transparent);
    margin: 1.25rem auto 0;
    border-radius: 2px;
}

/* Left-aligned section headers get a solid bar instead of the gradient,
   since a gradient that fades on both ends looks odd flush left. */
.section-header.text-left .underline {
    width: 80px;
    height: 3px;
    background: var(--accent);
    margin-left: 0;
    margin-right: auto;
}

/* Section headers should breathe a bit when the title wraps to 2 lines. */
.section-header h2 {
    line-height: 1.15;
}

.section-intro {
    text-align: center;
    max-width: 720px;
    margin: -2rem auto 3.5rem;
    color: var(--text-muted);
    font-size: 1.1rem;
    line-height: 1.7;
}

/* About Section */
.about-coach {
    display: flex;
    justify-content: center;
    align-items: center;
}

.about-image {
    width: 100%;
    max-width: 540px;
    height: auto;
    display: block;
}

.about-text h3 {
    font-size: 2rem;
    margin-bottom: 1.25rem;
    line-height: 1.2;
    letter-spacing: 1px;
}

.about-text p {
    color: var(--text-muted);
    font-size: 1.05rem;
    line-height: 1.8;
    margin-bottom: 1rem;
}

.about-text p:last-child {
    margin-bottom: 0;
}

/* Buttons */
.btn-primary {
    display: inline-block;
    padding: 0.8rem 2rem;
    background: var(--accent);
    color: var(--white);
    text-decoration: none;
    border-radius: 4px;
    font-weight: 700;
    text-transform: uppercase;
    transition: var(--transition);
    border: none;
    cursor: pointer;
}

.btn-primary:hover {
    background: var(--accent-hover);
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(243, 146, 0, 0.3);
}

.btn-secondary {
    display: inline-block;
    padding: 0.8rem 2rem;
    background: transparent;
    color: var(--white);
    text-decoration: none;
    border: 2px solid var(--white);
    border-radius: 4px;
    font-weight: 700;
    text-transform: uppercase;
    transition: var(--transition);
}

.btn-secondary:hover {
    background: var(--white);
    color: var(--primary);
}

/* Hero */
.hero {
    position: relative;
    text-align: center;
    color: var(--text-white);
    padding: 0;
    background: #010812;
    line-height: 0;
}

.hero-image {
    width: 100%;
    max-width: 1672px;
    height: auto;
    display: block;
    margin: 0 auto;
}

.hero-content {
    position: absolute;
    bottom: 3%;
    left: 0;
    right: 0;
    line-height: 1.6;
    pointer-events: none;
}

.hero-content .hero-btns {
    pointer-events: auto;
}

/* Match each section background to its image's navy
   so the un-removed image background blends invisibly. */
.about {
    background: #021023;
    padding-top: 4rem;
    padding-bottom: 4rem;
}

.app-showcase {
    background: #0d1927;
}

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

.hero-btns {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    flex-wrap: wrap;
}

/* Grid System */
.grid {
    display: grid;
    gap: 3rem;
}

.two-cols {
    grid-template-columns: 1fr 1fr;
    align-items: center;
}

.three-cols {
    grid-template-columns: repeat(3, 1fr);
}

/* Cards */
.card {
    background: var(--card-bg);
    padding: 3rem;
    border-radius: 12px;
    border: 1px solid var(--border);
    transition: var(--transition);
    box-shadow: var(--shadow);
    height: 100%;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.card h3 {
    font-size: 1.4rem;
    letter-spacing: 1px;
}

.card p {
    color: var(--text-muted);
    line-height: 1.7;
}

.card:hover {
    transform: translateY(-8px) scale(1.02);
    border-color: var(--accent);
    box-shadow: 0 15px 50px rgba(204, 122, 0, 0.2);
    background: rgba(26, 40, 54, 0.9);
}

.card-icon {
    font-size: 3rem;
    margin-bottom: 1.5rem;
}
/* App Showcase Section */
.app-showcase {
    padding: 4rem 0;
    position: relative;
    overflow: hidden;
}

/* Pricing Section */
.tech {
    padding-top: 4rem;
    padding-bottom: 6rem;
}

.pricing-stack {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    max-width: 820px;
    margin: 0 auto;
}

.pricing-primary {
    /* Inherits .card base */
}

.pricing-callout {
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 2rem;
    align-items: center;
    background: var(--card-bg);
    border: 1px solid var(--border);
    border-left: 4px solid var(--accent);
    border-radius: 12px;
    padding: 1.75rem 2.25rem;
    transition: var(--transition);
}

.pricing-callout:hover {
    border-color: var(--accent);
    border-left-color: var(--accent);
    box-shadow: 0 10px 30px rgba(204, 122, 0, 0.15);
}

.pricing-callout .callout-text h3 {
    font-size: 1.25rem;
    letter-spacing: 1px;
    margin-bottom: 0.5rem;
}

.pricing-callout .callout-text p {
    color: var(--text-muted);
    font-size: 0.95rem;
    line-height: 1.6;
    margin: 0;
}

.pricing-callout .callout-cta {
    white-space: nowrap;
}

.app-grid {
    display: flex;
    flex-direction: column;
    gap: 4rem;
}

.app-header-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    column-gap: 4rem;
    row-gap: 0.75rem;
    align-items: center;
}

.app-header-row .eyebrow {
    grid-column: 1 / -1;
    color: var(--accent);
    font-weight: 800;
    letter-spacing: 4px;
    font-size: 0.8rem;
    text-transform: uppercase;
    margin: 0;
}

.app-header-row .app-h2 {
    grid-column: 1;
    grid-row: 2;
    font-size: 2.5rem;
    letter-spacing: 2px;
    line-height: 1.15;
    margin: 0;
}

.app-header-row .app-intro {
    grid-column: 2;
    grid-row: 2;
    margin: 0;
    align-self: center;
}

.app-header-row .underline {
    grid-column: 1;
    grid-row: 3;
    margin: 0;
    width: 140px;
    height: 2px;
    background: linear-gradient(90deg, var(--accent), transparent);
    border-radius: 2px;
}

.app-content-row {
    display: grid;
    grid-template-columns: 1fr 1.9fr;
    gap: 3rem;
    align-items: center;
}

.app-content-row .feature-list {
    align-self: center;
}

.app-cta {
    margin-top: 1rem;
    text-align: center;
}

.app-visual {
    display: flex;
    justify-content: center;
    position: relative;
}

.app-image {
    width: 100%;
    max-width: 100%;
    height: auto;
    display: block;
}

.app-title.section-header {
    margin-bottom: 0;
}

.app-title.section-header .underline {
    margin-left: 0;
    margin-right: auto;
}

.app-header-row .app-intro {
    margin-bottom: 0;
}

.app-details .eyebrow {
    color: var(--accent);
    font-weight: 800;
    letter-spacing: 4px;
    font-size: 0.8rem;
    margin-bottom: 1rem;
    display: block;
}

.app-intro {
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--text-muted);
    margin-bottom: 3rem;
}

.feature-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 1.75rem;
}

.feature-item {
    padding-left: 1.25rem;
    border-left: 3px solid var(--accent);
}

.feature-text strong {
    display: block;
    font-size: 1.15rem;
    color: var(--text-white);
    margin-bottom: 0.4rem;
    letter-spacing: 0.5px;
    font-family: 'Outfit', sans-serif;
    text-transform: uppercase;
}

.feature-text p {
    font-size: 0.95rem;
    color: var(--text-muted);
    line-height: 1.6;
}

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

.lock-in {
    margin-top: 0.5rem;
    padding: 1rem;
    background: rgba(204, 122, 0, 0.08);
    border-left: 3px solid var(--accent);
    border-radius: 4px;
    font-size: 0.95rem;
}

.app-cta {
    margin-top: 4rem;
}

@media (max-width: 968px) {
    .app-header-row,
    .app-content-row {
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }
    .app-grid {
        gap: 2.5rem;
    }
    .feature-list {
        max-width: 560px;
        margin: 0 auto;
    }
}

.contact-form {
    background: var(--card-bg);
    padding: 3rem;
    border-radius: 12px;
    border: 1px solid var(--border);
    color: var(--text-white);
    box-shadow: var(--shadow);
    position: relative;
    overflow: hidden; /* Ensures child elements (like the X container) don't bleed out */
}

.price-tag {
    color: var(--accent);
    font-size: 1.5rem;
    font-weight: 800;
    margin-bottom: 1rem;
    font-family: 'Outfit', sans-serif;
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 600;
}

.form-group input, 
.form-group select, 
.form-group textarea {
    width: 100%;
    padding: 0.8rem;
    border: 1px solid var(--border);
    border-radius: 4px;
    font-family: inherit;
}

/* Sticky Contact */
.sticky-contact {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    background: var(--accent);
    color: var(--white);
    padding: 1rem 2rem;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 700;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
    z-index: 1000;
    text-transform: uppercase;
}

/* Animations */
.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: var(--transition);
}

.reveal.active {
    opacity: 1;
    transform: translateY(0);
}

/* Advanced Animations */
.pulse {
    animation: pulse 3s infinite ease-in-out;
}

@keyframes pulse {
    0% { filter: drop-shadow(0 0 20px rgba(243, 146, 0, 0.3)); }
    50% { filter: drop-shadow(0 0 40px rgba(243, 146, 0, 0.6)); }
    100% { filter: drop-shadow(0 0 20px rgba(243, 146, 0, 0.3)); }
}

.bat-speed-reveal {
    opacity: 0;
    filter: blur(10px);
    transform: translateX(-50px);
    animation: batSpeed 0.8s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

@keyframes batSpeed {
    to {
        opacity: 1;
        filter: blur(0);
        transform: translateX(0);
    }
}

.stagger-1 { animation-delay: 0.2s; }
.stagger-2 { animation-delay: 0.4s; }

.fade-in {
    opacity: 0;
    animation: fadeIn 1s ease-out forwards;
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}

@media (max-width: 992px) {
    .two-cols, .three-cols {
        grid-template-columns: 1fr;
    }
}

.form-group input:focus, 
.form-group select:focus, 
.form-group textarea:focus {
    outline: none;
    border-color: var(--accent);
    background: rgba(255, 255, 255, 0.1);
}

/* FAQ Accordion */
.faq-container {
    max-width: 850px;
    margin: 0 auto;
}

.faq-item {
    margin-bottom: 1rem;
    background: var(--card-bg);
    border: 1px solid var(--border);
    border-radius: 8px;
    overflow: hidden;
    transition: var(--transition);
}

.faq-item:hover {
    border-color: rgba(243, 146, 0, 0.3);
}

.faq-question {
    width: 100%;
    padding: 1.8rem 2.5rem;
    background: none;
    border: none;
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: var(--text-white);
    font-size: 1.1rem;
    font-weight: 700;
    text-align: left;
    cursor: pointer;
    font-family: 'Outfit', sans-serif;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.faq-question .arrow {
    width: 12px;
    height: 12px;
    border-right: 2px solid var(--accent);
    border-bottom: 2px solid var(--accent);
    transform: rotate(45deg);
    transition: var(--transition);
    margin-right: 0.5rem;
}

.faq-item.faq-open .faq-question {
    color: var(--accent);
}

.faq-item.faq-open .arrow {
    transform: rotate(-135deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: all 0.5s cubic-bezier(0, 1, 0, 1);
    background: rgba(255, 255, 255, 0.02);
}

.faq-item.faq-open .faq-answer {
    max-height: 700px;
    transition: all 0.5s cubic-bezier(1, 0, 1, 0);
}

.faq-answer p {
    padding: 0 2.5rem 1.5rem;
    color: var(--text-muted);
    font-size: 1rem;
    line-height: 1.8;
}

.faq-cta {
    padding: 0 2.5rem 2.5rem;
}

/* Modal */
.modal {
    display: none;
    position: fixed;
    z-index: 2000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(19, 30, 41, 0.9);
    backdrop-filter: blur(10px);
}

.modal-content {
    position: relative;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    max-width: 500px;
    width: 90%;
    animation: modalFadeIn 0.4s ease-out;
}

@keyframes modalFadeIn {
    from { opacity: 0; transform: translate(-50%, -60%); }
    to { opacity: 1; transform: translate(-50%, -50%); }
}

.close-modal {
    position: absolute;
    right: 15px;
    top: 15px;
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-muted);
    font-size: 2rem;
    font-weight: 300;
    line-height: 1;
    cursor: pointer;
    transition: var(--transition);
    user-select: none;
    z-index: 10;
}

.close-modal:hover {
    color: var(--accent);
    transform: rotate(90deg);
}

.stagger-3 { animation-delay: 0.6s; }
/* Testimonials Carousel */
.testimonials {
    padding: 8rem 0;
    overflow: hidden;
}

/* Testimonial Stage (centered carousel) */
.testimonial-stage {
    position: relative;
    margin: 6rem auto 0;
    max-width: 1200px;
    padding: 0 4rem;
    /* Reserved CSS variables consumed by JS via getComputedStyle */
    --tile-width: 180px;
    --tile-gap: 1.25rem;
}

.stage-viewport {
    position: relative;
    overflow: hidden;
    /* Provide vertical room so the scaled-up active tile isn't clipped */
    padding: 110px 0;
}

.stage-track {
    display: flex;
    gap: var(--tile-gap);
    list-style: none;
    transition: transform 0.6s cubic-bezier(0.65, 0, 0.35, 1);
    will-change: transform;
}

.stage-tile {
    flex: 0 0 var(--tile-width);
    display: flex;
    flex-direction: column;
    cursor: pointer;
    transition: transform 0.6s cubic-bezier(0.65, 0, 0.35, 1),
                opacity 0.4s ease;
    transform: scale(0.75);
    opacity: 0.55;
}

.stage-tile.is-adjacent {
    transform: scale(0.9);
    opacity: 0.8;
}

.stage-tile.is-active {
    transform: scale(1.45);
    opacity: 1;
    z-index: 5;
    cursor: default;
}

.stage-tile-video {
    width: 100%;
    aspect-ratio: 9 / 16;
    background: #000;
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.5);
    overflow: hidden;
    position: relative;
    transition: box-shadow 0.4s ease, border-color 0.4s ease;
}

.stage-tile.is-active .stage-tile-video {
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.7), 0 0 0 2px var(--accent);
    border-color: var(--accent);
}

/* iframes only respond to clicks on the active tile, otherwise clicks
   bubble up so the user can navigate by clicking a side tile */
.stage-tile-video iframe {
    width: 100%;
    height: 100%;
    border: 0;
    pointer-events: none;
}

.stage-tile.is-active .stage-tile-video iframe {
    pointer-events: auto;
}

.play-icon {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 56px;
    height: 56px;
    transform: translate(-50%, -50%);
    border-radius: 50%;
    background: rgba(204, 122, 0, 0.95);
    box-shadow: 0 6px 24px rgba(0, 0, 0, 0.5);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.play-icon::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 55%;
    transform: translate(-50%, -50%);
    border-style: solid;
    border-width: 10px 0 10px 16px;
    border-color: transparent transparent transparent #fff;
}

.stage-tile.is-active .play-icon {
    opacity: 1;
}

.stage-tile .player-name {
    font-size: 0.7rem;
    font-weight: 800;
    color: var(--text-white);
    margin: 0.6rem 0 0.15rem;
    letter-spacing: 0.5px;
    text-align: center;
    transition: font-size 0.4s ease;
}

.stage-tile .player-team {
    font-size: 0.55rem;
    color: var(--accent);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    margin: 0;
    text-align: center;
}

.stage-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 52px;
    height: 52px;
    border-radius: 14px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.12);
    backdrop-filter: blur(8px);
    color: rgba(255, 255, 255, 0.65);
    cursor: pointer;
    z-index: 10;
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: color 0.3s ease, border-color 0.3s ease,
                background 0.3s ease, transform 0.3s ease;
}

.stage-nav svg {
    width: 22px;
    height: 22px;
    display: block;
}

.stage-nav:hover {
    color: var(--accent);
    border-color: var(--accent);
    background: rgba(204, 122, 0, 0.06);
}

.stage-nav.prev { left: 0; }
.stage-nav.next { right: 0; }

.stage-nav.prev:hover { transform: translateY(-50%) translateX(-2px); }
.stage-nav.next:hover { transform: translateY(-50%) translateX(2px); }

@media (max-width: 900px) {
    .testimonial-stage {
        padding: 0 3rem;
        --tile-width: 150px;
        --tile-gap: 1rem;
    }
    .stage-tile.is-active {
        transform: scale(1.3);
    }
}

/* =========================================================
   Hamburger nav button, hidden by default (desktop)
   ========================================================= */
.nav-toggle {
    display: none;
    position: absolute;
    right: 1.25rem;
    top: 50%;
    transform: translateY(-50%);
    width: 40px;
    height: 40px;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 0;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 5px;
    z-index: 1100;
}

.nav-toggle span {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--text-white);
    border-radius: 2px;
    transition: transform 0.3s ease, opacity 0.3s ease;
}

.nav-toggle.open span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
}
.nav-toggle.open span:nth-child(2) {
    opacity: 0;
}
.nav-toggle.open span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
}

/* =========================================================
   Mobile layer (≤768px): one consolidated block.
   Desktop styles above are untouched. The testimonial carousel JS
   is gated to ≥769px so on mobile the `.stage-track` is just a
   native horizontal scroll-snap strip.
   ========================================================= */
@media (max-width: 768px) {
    /* Hide the orange scroll progress bar at the bottom of the navbar.
       It reads as a confusing "second bar" on small screens. */
    .scroll-progress {
        display: none;
    }

    /* Container & global */
    .container {
        padding: 0 1rem;
    }
    .section {
        padding: 3.5rem 0;
    }
    .section-header {
        margin-bottom: 2rem;
    }
    .section-header h2 {
        font-size: 1.6rem;
        letter-spacing: 1px;
    }
    .section-header .underline {
        width: 100px;
    }
    .section-intro {
        font-size: 0.95rem;
        margin: -1rem auto 2rem;
    }

    /* Mobile nav: solid bar (no glass), dropdown is fully invisible
       when closed so there's no phantom "second bar" beneath it.
       Background matches the hero's navy so the navbar reads as a
       continuous extension of the hero rather than a separate band. */
    .navbar {
        background: #010812;
        backdrop-filter: none;
        border-bottom: 1px solid rgba(255, 255, 255, 0.06);
    }
    .navbar-flex {
        justify-content: flex-start;
        padding-left: 0.5rem;
    }
    .nav-toggle {
        display: flex;
    }
    .nav-links {
        position: fixed;
        top: 60px;
        left: 0;
        right: 0;
        flex-direction: column;
        align-items: stretch;
        gap: 0;
        background: transparent;
        backdrop-filter: none;
        border-bottom: none;
        padding: 0;
        max-height: 0;
        overflow: hidden;
        pointer-events: none;
        transition: max-height 0.35s ease, padding 0.35s ease, background 0.2s ease;
    }
    .nav-links.open {
        max-height: 80vh;
        padding: 1rem 0;
        background: #0a131f;
        border-bottom: 1px solid rgba(255, 255, 255, 0.06);
        pointer-events: auto;
    }
    .nav-links li {
        text-align: center;
    }
    .nav-links a {
        display: block;
        padding: 0.9rem 1.25rem;
        font-size: 0.95rem;
    }
    .nav-links .btn-primary {
        margin: 0.75rem 1.25rem 0;
    }

    /* Hero: 60px buffer below the now-solid navbar so the image isn't
       clipped. Because the navbar bg matches the hero bg, the buffer
       reads as one continuous dark band, not a "second bar." */
    .hero {
        padding-top: 60px;
        padding-bottom: 1.5rem;
    }
    .hero-content {
        position: static;
        margin-top: 1.25rem;
        padding: 0 1rem;
    }
    .hero-btns {
        flex-direction: row;
        gap: 0.75rem;
        justify-content: center;
        flex-wrap: wrap;
    }
    .hero-btns .btn-primary,
    .hero-btns .btn-secondary {
        flex: 1 1 auto;
        max-width: 220px;
        text-align: center;
        padding: 0.7rem 1.25rem;
        font-size: 0.85rem;
    }

    /* About */
    .about {
        padding: 3rem 0;
    }
    .about .grid.two-cols {
        gap: 2rem;
    }
    /* Image sits above the text on mobile (between section title and copy) */
    .about .about-coach {
        order: -1;
    }
    .about-image {
        max-width: 350px;
        margin: 0 auto;
    }
    .about-text h3 {
        font-size: 1.5rem;
        margin-bottom: 0.75rem;
        text-align: center;
    }
    .about-text p {
        font-size: 0.95rem;
        line-height: 1.65;
        margin-bottom: 0.75rem;
    }

    /* App Showcase: title spans, intro under it, image, then bullets */
    .app-showcase {
        padding: 3rem 0;
    }
    .app-grid {
        gap: 2rem;
    }
    /* Reset the explicit grid placements from desktop so items flow in DOM
       order on mobile: eyebrow → h2 → intro → underline */
    .app-header-row {
        grid-template-columns: 1fr;
        gap: 0.75rem;
    }
    .app-header-row .eyebrow,
    .app-header-row .app-h2,
    .app-header-row .app-intro,
    .app-header-row .underline {
        grid-column: auto;
        grid-row: auto;
    }
    .app-content-row {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    /* Image renders before the bullet list on mobile */
    .app-content-row .app-visual {
        order: -1;
    }

    .app-image {
        max-width: 432px;
        margin: 0 auto;
    }
    .app-header-row .app-h2 {
        font-size: 1.6rem;
    }
    .app-header-row .eyebrow {
        font-size: 0.7rem;
        letter-spacing: 3px;
    }
    .app-header-row .app-intro {
        font-size: 0.95rem;
        line-height: 1.6;
    }
    .app-header-row .underline {
        width: 60px;
    }
    .feature-text strong {
        font-size: 1rem;
    }
    .feature-text p {
        font-size: 0.9rem;
    }

    /* Pricing */
    .tech {
        padding: 3rem 0;
    }
    .pricing-stack {
        gap: 1.5rem;
    }
    .pricing-primary.card {
        padding: 1.75rem;
    }
    .pricing-primary h3 {
        font-size: 1.3rem;
    }
    .pricing-primary .price-tag {
        font-size: 1.25rem;
    }
    .pricing-primary p {
        font-size: 0.95rem;
    }
    .pricing-callout {
        padding: 1.5rem;
        grid-template-columns: 1fr;
    }
    .pricing-callout .callout-cta {
        width: 100%;
        text-align: center;
        justify-self: stretch;
    }
    .card {
        padding: 1.75rem;
    }

    /* Testimonials: native horizontal scroll-snap, no JS centering */
    .testimonials {
        padding: 3rem 0;
    }
    .testimonial-stage {
        padding: 0;
        margin-top: 2.5rem;
        max-width: none;
    }
    .stage-viewport {
        overflow-x: auto;
        overflow-y: visible;
        padding: 0.5rem 0;
        scroll-snap-type: x mandatory;
        -webkit-overflow-scrolling: touch;
        scrollbar-width: none;
    }
    .stage-viewport::-webkit-scrollbar {
        display: none;
    }
    .stage-track {
        transform: none !important;
        gap: 1rem;
        padding: 0 14%;
    }
    .stage-tile,
    .stage-tile.is-active,
    .stage-tile.is-adjacent {
        flex: 0 0 72vw;
        max-width: 280px;
        transform: none;
        opacity: 1;
        scroll-snap-align: center;
        cursor: pointer;
    }
    .stage-tile-video {
        border-radius: 12px;
        box-shadow: 0 10px 24px rgba(0, 0, 0, 0.45);
    }
    .stage-tile-video iframe {
        pointer-events: auto;
    }
    .stage-tile .player-name {
        font-size: 1rem;
        margin: 0.75rem 0 0.2rem;
    }
    .stage-tile .player-team {
        font-size: 0.7rem;
    }
    .stage-nav {
        display: none;
    }

    /* FAQ */
    .faq-question {
        padding: 1.25rem 1.25rem;
        font-size: 0.9rem;
    }
    .faq-answer p {
        padding: 0 1.25rem 1rem;
        font-size: 0.9rem;
    }
    .faq-cta {
        padding: 0 1.25rem 1.5rem;
    }

    /* Sticky CTA */
    .sticky-contact {
        bottom: 1rem;
        right: 1rem;
        padding: 0.6rem 1rem;
        font-size: 0.8rem;
        border-radius: 30px;
    }

    /* Footer */
    .footer {
        padding: 2rem 0 4rem;
    }
    .footer p {
        font-size: 0.8rem;
    }
}

/* =========================================================
   Tiny phones (≤420px)
   ========================================================= */
@media (max-width: 420px) {
    .section-header h2 {
        font-size: 1.4rem;
    }
    .hero-btns .btn-primary,
    .hero-btns .btn-secondary {
        font-size: 0.8rem;
        padding: 0.6rem 1rem;
    }
    .stage-tile,
    .stage-tile.is-active,
    .stage-tile.is-adjacent {
        flex-basis: 78vw;
    }
    .about-image {
        max-width: 300px;
    }
    .app-image {
        max-width: 360px;
    }
}

/* =========================================================
   Body scroll lock when mobile nav is open
   ========================================================= */
body:has(.nav-links.open) {
    overflow: hidden;
}
