/* =========================================
   GRIDIRON COMMAND - LANDING PAGE STYLES
   High-Converting, Hormozi-Style Design
   ========================================= */

/* CSS Variables */
:root {
    /* Brand Colors */
    --primary: #22c55e;
    --primary-dark: #16a34a;
    --primary-glow: rgba(34, 197, 94, 0.3);
    --secondary: #3b82f6;
    --secondary-dark: #2563eb;

    /* Backgrounds */
    --bg-dark: #0a0d14;
    --bg-card: #12161f;
    --bg-card-hover: #1a1f2e;
    --bg-elevated: #1e2433;

    /* Text */
    --text-primary: #ffffff;
    --text-secondary: #9ca3af;
    --text-muted: #6b7280;

    /* Accents */
    --accent-gold: #f59e0b;
    --accent-red: #ef4444;

    /* Borders */
    --border-subtle: rgba(255, 255, 255, 0.08);
    --border-glow: rgba(34, 197, 94, 0.4);

    /* Typography */
    --font-display: 'Saira Condensed', 'Rajdhani', system-ui, sans-serif;
    --font-body: 'Rajdhani', system-ui, sans-serif;

    /* Spacing */
    --section-padding: 100px 0;
    --container-width: 1200px;
}

/* Reset & Base */
*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
    /* iOS Safari - ensure proper scroll with fixed elements */
    height: 100%;
}

body {
    font-family: var(--font-body);
    background: var(--bg-dark);
    color: var(--text-primary);
    line-height: 1.6;
    overflow-x: hidden;
    /* iOS Safari - smooth momentum scrolling with fixed elements */
    -webkit-overflow-scrolling: touch;
    min-height: 100%;
}

.container {
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 24px;
}

/* Typography */
h1, h2, h3, h4 {
    font-family: var(--font-display);
    font-weight: 700;
    line-height: 1.1;
    text-transform: uppercase;
    letter-spacing: 1px;
}

h1 { font-size: clamp(3rem, 7vw, 5rem); font-weight: 800; }
h2 { font-size: clamp(2.5rem, 5vw, 3.5rem); }
h3 { font-size: clamp(1.5rem, 2.5vw, 2rem); }

.highlight {
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.section-eyebrow {
    display: inline-block;
    font-size: 0.875rem;
    font-weight: 700;
    letter-spacing: 3px;
    color: var(--primary);
    margin-bottom: 20px;
    text-transform: uppercase;
}

/* =========================================
   NAVIGATION
   ========================================= */
.nav-bar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 16px 0;
    transition: all 0.3s ease;
}

.nav-bar.scrolled {
    background: rgba(10, 13, 20, 0.95);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--border-subtle);
    padding: 12px 0;
}

.nav-container {
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    position: relative;
}

.nav-logo img {
    height: 40px;
    width: auto;
}

.nav-links {
    display: flex;
    gap: 24px;
    align-items: center;
}

.nav-links a {
    color: var(--text-secondary);
    text-decoration: none;
    font-weight: 600;
    font-size: 0.95rem;
    transition: color 0.2s;
}

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

/* --- Features Dropdown Trigger --- */
.nav-dropdown-trigger {
    display: flex;
    align-items: center;
    gap: 6px;
    color: var(--text-secondary);
    background: none;
    border: none;
    font-family: inherit;
    font-weight: 600;
    font-size: 0.95rem;
    cursor: pointer;
    padding: 4px 0;
    transition: color 0.2s;
}

.nav-dropdown-trigger:hover {
    color: var(--text-primary);
}

.nav-dropdown-trigger.active {
    color: var(--primary);
}

.nav-chevron {
    width: 16px;
    height: 16px;
    transition: transform 0.3s ease;
}

.nav-dropdown-trigger.active .nav-chevron {
    transform: rotate(180deg);
}

/* --- Mega Menu --- */
.mega-menu {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    z-index: 999;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-8px);
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
    pointer-events: none;
}

.mega-menu.active {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
    pointer-events: auto;
}

.mega-menu-inner {
    max-width: var(--container-width);
    margin: 8px auto 0;
    padding: 28px 32px;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 0;
    background: rgba(14, 17, 24, 0.97);
    backdrop-filter: blur(24px);
    border: 1px solid var(--border-subtle);
    border-radius: 16px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5), 0 0 1px rgba(255, 255, 255, 0.05);
}

.mega-col {
    padding: 0 20px;
}

.mega-col:not(:last-child) {
    border-right: 1px solid var(--border-subtle);
}

.mega-col-header {
    display: flex;
    align-items: center;
    gap: 8px;
    font-family: var(--font-display);
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--primary);
    margin-bottom: 16px;
    padding-bottom: 10px;
    border-bottom: 1px solid rgba(34, 197, 94, 0.15);
}

.mega-col-header i {
    width: 16px;
    height: 16px;
}

.mega-link {
    display: block;
    padding: 10px 12px;
    border-radius: 8px;
    text-decoration: none;
    transition: all 0.2s ease;
    margin-bottom: 2px;
}

.mega-link:hover {
    background: rgba(255, 255, 255, 0.05);
}

.mega-link-title {
    display: block;
    font-weight: 600;
    font-size: 0.9rem;
    color: var(--text-primary);
    margin-bottom: 2px;
}

.mega-link-desc {
    display: block;
    font-size: 0.78rem;
    color: var(--text-muted);
    line-height: 1.4;
}

.mega-link:hover .mega-link-title {
    color: var(--primary);
}

/* --- Mobile Menu Group Labels --- */
.mobile-menu-group-label {
    display: block;
    font-family: var(--font-display);
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--primary);
    padding: 16px 0 6px;
    margin-top: 4px;
    border-top: 1px solid var(--border-subtle);
}

.mobile-menu-group-label:first-child {
    border-top: none;
    padding-top: 0;
    margin-top: 0;
}

/* Hide mega menu on mobile */
@media (max-width: 768px) {
    .mega-menu {
        display: none;
    }
}

.btn-nav-cta {
    background: var(--primary);
    color: var(--bg-dark);
    padding: 10px 24px;
    border-radius: 8px;
    font-weight: 700;
    text-decoration: none;
    transition: all 0.2s;
}

.btn-nav-cta:hover {
    background: var(--primary-dark);
    transform: translateY(-2px);
}

/* Product Navigation Links */
.nav-products {
    display: flex;
    gap: 8px;
    margin-left: 24px;
    padding-left: 24px;
    border-left: 1px solid var(--border-subtle);
}

.nav-product {
    --link-color: #9ca3af;
    color: var(--link-color);
    text-decoration: none;
    font-weight: 600;
    font-size: 0.9rem;
    padding: 6px 14px;
    border-radius: 6px;
    border: 1px solid transparent;
    transition: all 0.2s ease;
}

.nav-product:hover {
    color: var(--link-color);
    background: rgba(255, 255, 255, 0.05);
    border-color: rgba(255, 255, 255, 0.1);
}

.nav-product.active {
    background: rgba(255, 255, 255, 0.08);
    border-color: var(--link-color);
}

/* Product-specific colors */
.nav-product[data-product="coach"] {
    --link-color: #22c55e;
}

.nav-product[data-product="referee"] {
    --link-color: #f59e0b;
}

.nav-product[data-product="platform"] {
    --link-color: #a855f7;
}

.nav-product[data-product="parent"] {
    --link-color: #3b82f6;
}

/* =========================================
   HERO SECTION
   ========================================= */
/* Hero wrapper - full viewport width for background image */
.hero-wrapper {
    position: relative;
    width: 100%;
    min-height: 100vh;
    min-height: 100dvh;
    /* Note: removed overflow:hidden as it was blocking page scroll */
}

/* Full-screen hero background image - FIXED for parallax scroll effect */
.hero-bg-image {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    height: 100dvh;
    background: url('../assets/img/gc-hero-banner.webp') 65% center / cover no-repeat;
    z-index: 0;
    pointer-events: none;
    /* iOS Safari fix - force GPU layer for proper fixed positioning */
    -webkit-transform: translateZ(0);
    transform: translateZ(0);
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
    will-change: transform;
}
/* Dark overlay - heavy on left (text), clear on right (players show through) */
.hero-bg-image::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(
        to right,
        rgba(10, 13, 20, 0.93) 0%,
        rgba(10, 13, 20, 0.80) 35%,
        rgba(10, 13, 20, 0.35) 60%,
        rgba(10, 13, 20, 0.10) 80%,
        rgba(10, 13, 20, 0.05) 100%
    );
}

.hero {
    min-height: 100vh; /* fallback */
    min-height: 100dvh;
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: center;
    gap: 60px;
    padding: 120px 5% 80px 5%;
    width: 100%;
    position: relative;
    z-index: 1;
    background: transparent;
    overflow: hidden;
}

.hero-bg-grid {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image:
        linear-gradient(rgba(34, 197, 94, 0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(34, 197, 94, 0.03) 1px, transparent 1px);
    background-size: 60px 60px;
    pointer-events: none;
}

.hero-content {
    position: relative;
    z-index: 1;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: rgba(34, 197, 94, 0.1);
    border: 1px solid rgba(34, 197, 94, 0.3);
    padding: 10px 20px;
    border-radius: 50px;
    font-size: 0.875rem;
    font-weight: 700;
    letter-spacing: 1px;
    color: var(--primary);
    margin-bottom: 28px;
}

.badge-icon {
    font-size: 1rem;
}

.pulse-dot {
    width: 10px;
    height: 10px;
    background: var(--primary);
    border-radius: 50%;
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0%, 100% { opacity: 1; box-shadow: 0 0 0 0 rgba(34, 197, 94, 0.7); }
    50% { opacity: 0.8; box-shadow: 0 0 0 10px rgba(34, 197, 94, 0); }
}

.hero-headline {
    margin-bottom: 28px;
}

.hero-subheadline {
    font-size: 1.25rem;
    color: var(--text-secondary);
    margin-bottom: 40px;
    max-width: 540px;
    line-height: 1.7;
}

.hero-subheadline strong {
    color: var(--text-primary);
}

.hero-cta-group {
    display: flex;
    gap: 16px;
    margin-bottom: 32px;
    flex-wrap: wrap;
}

/* Buttons */
.btn-primary {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: var(--primary);
    color: var(--bg-dark);
    padding: 14px 28px;
    border-radius: 10px;
    font-weight: 700;
    font-size: 1rem;
    text-decoration: none;
    transition: all 0.2s;
    border: none;
    cursor: pointer;
}

.btn-primary:hover {
    background: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: 0 10px 30px var(--primary-glow);
}

.btn-secondary {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: transparent;
    color: var(--text-primary);
    padding: 14px 28px;
    border-radius: 10px;
    font-weight: 700;
    font-size: 1rem;
    text-decoration: none;
    border: 2px solid var(--border-subtle);
    transition: all 0.2s;
}

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

.btn-large {
    padding: 16px 32px;
    font-size: 1.1rem;
}

.btn-xl {
    padding: 20px 40px;
    font-size: 1.25rem;
}

.hero-trust {
    display: flex;
    align-items: center;
    gap: 16px;
}

.trust-avatars {
    display: flex;
}

.avatar {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: var(--bg-elevated);
    border: 2px solid var(--bg-dark);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
    margin-left: -8px;
}

.avatar:first-child {
    margin-left: 0;
}

.trust-text {
    font-size: 0.875rem;
    color: var(--text-muted);
}

/* Hero Visual */
.hero-visual {
    position: relative;
    z-index: 1;
}

.app-mockup {
    position: relative;
    transform: scale(1.25);
    transform-origin: center center;
}

.mockup-frame {
    overflow: hidden;
}

.mockup-screenshot {
    width: 100%;
    height: auto;
    display: block;
    image-rendering: -webkit-optimize-contrast;
    image-rendering: crisp-edges;
}

.mockup-overlay {
    position: absolute;
    bottom: 20px;
    left: 20px;
    right: 20px;
}

.play-card-preview {
    background: var(--bg-elevated);
    border-radius: 12px;
    padding: 16px;
    display: flex;
    align-items: center;
    gap: 16px;
    border: 1px solid var(--border-subtle);
}

.play-card-preview img {
    width: 80px;
    height: 60px;
    object-fit: contain;
    background: #1a1d24;
    border-radius: 6px;
}

.play-card-preview span {
    font-weight: 700;
    font-size: 1.1rem;
}

.floating-stat {
    position: absolute;
    background: var(--bg-elevated);
    border: 1px solid var(--border-subtle);
    border-radius: 12px;
    padding: 16px 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    animation: float 3s ease-in-out infinite;
}

.stat-1 {
    top: 10%;
    right: -30px;
    animation-delay: 0s;
}

.stat-2 {
    bottom: 30%;
    right: -40px;
    animation-delay: 0.5s;
}

.stat-3 {
    bottom: calc(10% + 200px);
    left: -30px;
    animation-delay: 1s;
}

@keyframes float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
}

.stat-number {
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--primary);
    font-family: var(--font-display);
}

.stat-label {
    font-size: 0.75rem;
    color: var(--text-muted);
    font-weight: 600;
}

/* =========================================
   PROBLEM SECTION
   ========================================= */
.problem-section {
    padding: var(--section-padding);
    background: linear-gradient(180deg, var(--bg-dark) 0%, var(--bg-card) 100%);
}

.problem-header {
    text-align: center;
    margin-bottom: 60px;
}

.problem-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.problem-card {
    background: var(--bg-elevated);
    border: 1px solid var(--border-subtle);
    border-radius: 16px;
    padding: 32px 24px;
    text-align: center;
    transition: all 0.3s;
}

.problem-card:hover {
    transform: translateY(-8px);
    border-color: var(--accent-red);
    box-shadow: 0 20px 40px rgba(239, 68, 68, 0.1);
}

.problem-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
}

.problem-icon svg.pain-icon {
    width: 96px;
    height: 96px;
}

/* ---- Animated Pain Point Icon Keyframes ---- */
@keyframes painPulseGlow {
    0%, 100% { filter: drop-shadow(0 0 4px #EF4444) drop-shadow(0 0 8px rgba(239, 68, 68, 0.5)); }
    50% { filter: drop-shadow(0 0 12px #EF4444) drop-shadow(0 0 24px rgba(239, 68, 68, 0.8)); }
}
@keyframes painDrawRoute {
    0% { stroke-dashoffset: 100; }
    100% { stroke-dashoffset: 0; }
}
@keyframes painTangleMove {
    0%, 100% { transform: translate(0, 0); }
    25% { transform: translate(2px, -2px); }
    50% { transform: translate(-1px, 2px); }
    75% { transform: translate(1px, 1px); }
}
@keyframes painFloat {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-4px); }
}
@keyframes painBounce {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-6px); }
}
@keyframes painSlash {
    0% { stroke-dashoffset: 80; opacity: 0.3; }
    50% { opacity: 1; }
    100% { stroke-dashoffset: 0; opacity: 1; }
}
@keyframes painTick {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}
@keyframes painFadeInOut {
    0%, 100% { opacity: 0.15; }
    50% { opacity: 0.4; }
}
@keyframes painXPulse {
    0%, 100% { opacity: 0.4; transform: scale(1); }
    50% { opacity: 0.8; transform: scale(1.1); }
}
@keyframes painGlitch {
    0%, 90%, 100% { transform: translate(0, 0); }
    92% { transform: translate(-2px, 1px); }
    94% { transform: translate(2px, -1px); }
    96% { transform: translate(-1px, -1px); }
    98% { transform: translate(1px, 1px); }
}
@keyframes painPositionSwap {
    0%, 40%, 100% { transform: translateX(0); }
    45%, 55% { transform: translateX(8px); }
    60%, 95% { transform: translateX(0); }
}

/* Global glow pulse on all pain icons */
.pain-icon { animation: painPulseGlow 3s ease-in-out infinite; }
.pain-icon:hover { filter: drop-shadow(0 0 16px #EF4444) drop-shadow(0 0 32px rgba(239, 68, 68, 0.9)) !important; }

/* Icon 1: Juggling */
.icon-juggling .tangle-line { stroke-dasharray: 100; animation: painDrawRoute 2s ease-in-out infinite alternate; }
.icon-juggling .tangle-line:nth-child(2) { animation-delay: 0.3s; }
.icon-juggling .tangle-line:nth-child(3) { animation-delay: 0.6s; }
.icon-juggling .x-mark { animation: painTangleMove 2s ease-in-out infinite; }
.icon-juggling .x-mark:nth-child(5) { animation-delay: 0.2s; }
.icon-juggling .x-mark:nth-child(6) { animation-delay: 0.4s; }
.icon-juggling .x-mark:nth-child(7) { animation-delay: 0.6s; }
.icon-juggling .x-mark:nth-child(8) { animation-delay: 0.8s; }

/* Icon 2: Score */
.icon-score .question-left { animation: painBounce 1s ease-in-out infinite; }
.icon-score .question-right { animation: painBounce 1s ease-in-out infinite 0.5s; }
.icon-score .scoreboard { animation: painGlitch 4s ease-in-out infinite; }

/* Icon 3: Blind */
.icon-blind .eye { animation: painFloat 3s ease-in-out infinite; }
.icon-blind .slash { stroke-dasharray: 80; animation: painSlash 1.5s ease-out infinite; }
.icon-blind .slash-2 { animation-delay: 0.2s; }

/* Icon 4: Time */
.icon-time .minute-hand { transform-origin: 32px 32px; animation: painTick 8s linear infinite; }
.icon-time .hour-hand { transform-origin: 32px 32px; animation: painTick 60s linear infinite; }
.icon-time .player-dot { animation: painFloat 2s ease-in-out infinite; }
.icon-time .player-dot:nth-child(2) { animation-delay: 0.25s; }
.icon-time .player-dot:nth-child(3) { animation-delay: 0.5s; }
.icon-time .player-dot:nth-child(4) { animation-delay: 0.75s; }
.icon-time .player-dot:nth-child(5) { animation-delay: 1s; }
.icon-time .player-dot:nth-child(6) { animation-delay: 1.25s; }
.icon-time .player-dot:nth-child(7) { animation-delay: 1.5s; }
.icon-time .player-dot:nth-child(8) { animation-delay: 1.75s; }

/* Icon 5: Positions */
.icon-positions .confused-player { animation: painPositionSwap 3s ease-in-out infinite; }
.icon-positions .confused-player:nth-child(2) { animation-direction: reverse; animation-delay: 0.5s; }
.icon-positions .question-pos { animation: painBounce 1.2s ease-in-out infinite; }
.icon-positions .question-pos:nth-child(2) { animation-delay: 0.3s; }

/* Icon 6: Roster */
.icon-roster .missing { animation: painFadeInOut 2s ease-in-out infinite; }
.icon-roster .missing:nth-child(2) { animation-delay: 0.3s; }
.icon-roster .missing:nth-child(3) { animation-delay: 0.6s; }
.icon-roster .missing:nth-child(4) { animation-delay: 0.9s; }
.icon-roster .x-gone { animation: painXPulse 1.5s ease-in-out infinite; }
.icon-roster .x-gone:nth-child(2) { animation-delay: 0.2s; }
.icon-roster .x-gone:nth-child(3) { animation-delay: 0.4s; }
.icon-roster .x-gone:nth-child(4) { animation-delay: 0.6s; }

.problem-card h3 {
    margin-bottom: 12px;
    color: var(--text-primary);
}

.problem-card p {
    color: var(--text-secondary);
    font-size: 0.95rem;
    line-height: 1.6;
}

/* =========================================
   SOLUTION SECTION
   ========================================= */
.solution-section {
    padding: var(--section-padding);
    background: var(--bg-card);
    position: relative;
    overflow: hidden;
}

.solution-hero-image {
    max-width: 900px;
    margin: 0 auto 40px;
    padding: 0 24px;
    perspective: 800px;
    perspective-origin: center center;
}

/* iPad frame video container */
.ipad-video-container {
    position: relative;
    max-width: 800px;
    margin: 0 auto;

    /* Initial state - hidden */
    opacity: 0;
    transform-style: preserve-3d;
    transition: opacity 0.6s ease-out;
    will-change: transform, opacity;
}

/* Revealed state - JS controls transform via inline style */
.ipad-video-container.revealed {
    opacity: 1;
}

/* Scroll-driven 3D effect - transforms applied via JS */
.ipad-video-container.revealed {
    filter: drop-shadow(0 40px 80px rgba(0, 0, 0, 0.5))
            drop-shadow(0 0 30px rgba(34, 197, 94, 0.2));
    transition: filter 0.3s ease-out;
}

/* Enhanced glow when iPad is centered */
.ipad-video-container.revealed.glow-intense {
    filter: drop-shadow(0 50px 100px rgba(0, 0, 0, 0.4))
            drop-shadow(0 0 60px rgba(34, 197, 94, 0.4));
}

/* No glowing backdrop - removed to prevent bleed through iPad bevel */

.ipad-frame {
    width: 100%;
    height: auto;
    display: block;
    position: relative;
    z-index: 2;
    pointer-events: none;
}

/* Black background layer - covers inner bevel to prevent glow bleed-through */
.ipad-video-container::before {
    content: '';
    position: absolute;
    /* Slightly larger than video area to cover the inner bevel */
    left: 7%;
    top: 12.5%;
    width: 86%;
    height: 79%;
    background: #000;
    z-index: 0;
    border-radius: 8px;
    /* Inherits 3D transforms from parent container */
}

.ipad-video {
    position: absolute;
    /* Precise positioning for the iPad Pro screen area */
    left: 8.9%;
    top: 14.4%;
    width: 82.1%;
    height: 75.5%;
    z-index: 1;
    border: 0;
    border-radius: 4px;
    background: #000;
}

/* Fallback for non-iframe video */
.solution-hero-image > img:only-child {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 16px;
    box-shadow: 0 40px 80px rgba(0, 0, 0, 0.4);
    border: 1px solid var(--border-subtle);
    image-rendering: -webkit-optimize-contrast;
    image-rendering: crisp-edges;
}

/* iPad + Network callout strip */
.ipad-callout-strip {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 32px;
    margin-bottom: 64px;
    max-width: 1100px;
    margin-left: auto;
    margin-right: auto;
}

.ipad-callout {
    display: flex;
    gap: 20px;
    padding: 28px 32px;
    background: linear-gradient(135deg, rgba(34, 197, 94, 0.06) 0%, rgba(10, 14, 24, 0.8) 60%, rgba(34, 197, 94, 0.04) 100%);
    border: 1px solid rgba(34, 197, 94, 0.15);
    border-radius: 16px;
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
}

.ipad-callout-icon {
    flex-shrink: 0;
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(34, 197, 94, 0.12);
    border-radius: 12px;
    color: #22c55e;
}

.ipad-callout-icon svg {
    width: 24px;
    height: 24px;
}

.ipad-callout h3 {
    font-family: var(--font-display);
    font-size: 1.15rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 8px;
}

.ipad-callout p {
    font-size: 0.95rem;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.6);
    margin: 0;
}

@media (max-width: 768px) {
    .ipad-callout-strip {
        grid-template-columns: 1fr;
        gap: 20px;
        margin-bottom: 48px;
    }

    .ipad-callout {
        padding: 20px 24px;
    }
}

@media (max-width: 480px) {
    .ipad-callout {
        gap: 12px;
        padding: 16px;
    }

    .ipad-callout-icon {
        width: 40px;
        height: 40px;
    }

    .ipad-callout h3 {
        font-size: 1rem;
    }

    .ipad-callout p {
        font-size: 0.85rem;
    }
}

.solution-header {
    text-align: center;
    margin-bottom: 60px;
}

.solution-subhead {
    font-size: 1.25rem;
    color: var(--text-secondary);
    margin-top: 16px;
}

.interface-showcase {
    background: var(--bg-elevated);
    border: 1px solid var(--border-subtle);
    border-radius: 20px;
    overflow: hidden;
}

.showcase-tabs {
    display: flex;
    background: var(--bg-dark);
    border-bottom: 1px solid var(--border-subtle);
}

.showcase-tab {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 20px;
    background: transparent;
    border: none;
    color: var(--text-muted);
    font-family: var(--font-body);
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s;
    border-bottom: 3px solid transparent;
}

.showcase-tab:hover {
    color: var(--text-secondary);
    background: rgba(255, 255, 255, 0.02);
}

.showcase-tab.active {
    color: var(--primary);
    border-bottom-color: var(--primary);
    background: rgba(34, 197, 94, 0.05);
}

.showcase-panel {
    display: none;
    padding: 40px;
}

.showcase-panel.active {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: center;
}

.panel-description h3 {
    margin-bottom: 20px;
    font-size: 1.5rem;
}

.feature-list {
    list-style: none;
}

.feature-list li {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 0;
    color: var(--text-secondary);
    font-size: 1rem;
}

.feature-list li i {
    color: var(--primary);
    width: 20px;
    height: 20px;
}

.panel-preview {
    background: var(--bg-dark);
    border-radius: 12px;
    padding: 24px;
    border: 1px solid var(--border-subtle);
}

/* Playbook Preview */
.plays-grid-preview {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
}

.mini-play-card {
    background: var(--bg-card);
    border-radius: 8px;
    padding: 12px;
    text-align: center;
    border: 1px solid var(--border-subtle);
}

.mini-play-card img {
    width: 100%;
    height: 60px;
    object-fit: contain;
    margin-bottom: 8px;
}

.mini-play-card span {
    font-size: 0.75rem;
    color: var(--text-secondary);
    font-weight: 600;
}

/* Game Day Preview */
.gameday-preview {
    text-align: center;
}

.score-preview {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    margin-bottom: 16px;
}

.team-score-box {
    background: var(--bg-card);
    padding: 16px 24px;
    border-radius: 8px;
    text-align: center;
}

.team-score-box.home {
    border-left: 4px solid var(--primary);
}

.team-score-box.away {
    border-left: 4px solid var(--secondary);
}

.team-name {
    display: block;
    font-size: 0.7rem;
    color: var(--text-muted);
    letter-spacing: 1px;
    margin-bottom: 4px;
}

.score {
    display: block;
    font-size: 2rem;
    font-weight: 800;
    font-family: var(--font-display);
}

.game-clock {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text-primary);
    font-family: monospace;
}

.down-preview {
    background: var(--bg-card);
    padding: 12px;
    border-radius: 6px;
    font-weight: 700;
    color: var(--primary);
    letter-spacing: 1px;
}

.quarter-preview {
    margin-top: 8px;
    font-size: 0.8rem;
    color: var(--text-muted);
    letter-spacing: 1px;
}

/* Roster Preview */
.roster-preview {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
}

.roster-player-card {
    background: var(--bg-card);
    border-radius: 8px;
    padding: 12px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.player-num {
    font-weight: 800;
    font-size: 1rem;
    color: var(--primary);
}

.player-name-prev {
    flex: 1;
    font-weight: 600;
    font-size: 0.9rem;
}

.player-role {
    padding: 4px 8px;
    border-radius: 4px;
    font-size: 0.65rem;
    font-weight: 800;
    letter-spacing: 0.5px;
}

.player-role.off {
    background: rgba(34, 197, 94, 0.2);
    color: #4ade80;
}

.player-role.def {
    background: rgba(59, 130, 246, 0.2);
    color: #60a5fa;
}

.player-role.both {
    background: rgba(168, 85, 247, 0.2);
    color: #c084fc;
}

/* Analytics Preview */
.analytics-preview {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
}

.stat-card-prev {
    background: var(--bg-card);
    border-radius: 8px;
    padding: 16px;
    text-align: center;
}

.stat-card-prev .stat-val {
    display: block;
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--primary);
    font-family: var(--font-display);
}

.stat-card-prev .stat-name {
    display: block;
    font-size: 0.7rem;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-top: 4px;
}

.stat-card-prev.highlight-stat {
    background: linear-gradient(135deg, rgba(34, 197, 94, 0.2), rgba(59, 130, 246, 0.2));
    border: 1px solid var(--primary);
}

/* Designer Preview */
.designer-preview {
    text-align: center;
}

.canvas-preview {
    background: linear-gradient(180deg, #1a4d1a 0%, #0d260d 100%);
    border-radius: 8px;
    height: 150px;
    position: relative;
    margin-bottom: 16px;
    border: 2px solid #2d5a2d;
}

.player-token {
    position: absolute;
    width: 32px;
    height: 32px;
    background: var(--primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.7rem;
    font-weight: 800;
    color: var(--bg-dark);
}

.player-token.qb {
    bottom: 30%;
    left: 50%;
    transform: translateX(-50%);
    background: #f97316;
}

.player-token.wr1 {
    bottom: 50%;
    left: 20%;
}

.player-token.wr2 {
    bottom: 50%;
    right: 20%;
}

.route-line {
    position: absolute;
    width: 2px;
    height: 40px;
    background: white;
    bottom: 55%;
    left: calc(20% + 16px);
    transform-origin: bottom;
    transform: rotate(-30deg);
}

.tool-icons {
    display: flex;
    justify-content: center;
    gap: 16px;
    font-size: 1.25rem;
}

/* =========================================
   FEATURES SECTION
   ========================================= */
.features-section {
    padding: var(--section-padding);
    background: var(--bg-dark);
}

.features-header {
    text-align: center;
    margin-bottom: 60px;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

.feature-card {
    background: var(--bg-card);
    border: 1px solid var(--border-subtle);
    border-radius: 16px;
    padding: 32px 24px;
    transition: all 0.3s;
}

.feature-card:hover {
    transform: translateY(-8px);
    border-color: var(--primary);
    box-shadow: 0 20px 40px var(--primary-glow);
}

.feature-icon {
    width: 56px;
    height: 56px;
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
}

.feature-icon i {
    width: 28px;
    height: 28px;
    color: white;
}

.feature-card h3 {
    margin-bottom: 12px;
}

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

/* =========================================
   SOCIAL PROOF SECTION
   ========================================= */
.social-proof-section {
    padding: var(--section-padding);
    background: linear-gradient(180deg, var(--bg-dark) 0%, var(--bg-card) 100%);
    position: relative;
    overflow: hidden;
}

.social-proof-bg {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 0;
    opacity: 0.06;
}

.social-proof-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: blur(3px);
}

.social-proof-section .container {
    position: relative;
    z-index: 1;
}

.proof-header {
    text-align: center;
    margin-bottom: 60px;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr;
    gap: 24px;
}

.testimonial-card {
    background: var(--bg-elevated);
    border: 1px solid var(--border-subtle);
    border-radius: 16px;
    padding: 32px;
    transition: all 0.3s;
}

.testimonial-card:hover {
    transform: translateY(-4px);
    border-color: rgba(255, 255, 255, 0.15);
}

.testimonial-card.featured {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    background: linear-gradient(135deg, rgba(34, 197, 94, 0.1), rgba(59, 130, 246, 0.1));
    border-color: var(--primary);
}

.quote-icon {
    font-size: 4rem;
    font-family: Georgia, serif;
    color: var(--primary);
    line-height: 0.5;
    margin-bottom: 16px;
}

.testimonial-text {
    font-size: 1.1rem;
    line-height: 1.7;
    color: var(--text-secondary);
    margin-bottom: 24px;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 12px;
}

.author-avatar {
    width: 48px;
    height: 48px;
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 0.875rem;
}

.author-info {
    display: flex;
    flex-direction: column;
}

.author-name {
    font-weight: 700;
    color: var(--text-primary);
}

.author-title {
    font-size: 0.875rem;
    color: var(--text-muted);
}

.testimonial-stat {
    margin-top: 24px;
    padding-top: 24px;
    border-top: 1px solid var(--border-subtle);
    text-align: center;
}

.stat-big {
    display: block;
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--primary);
    font-family: var(--font-display);
}

.stat-desc {
    font-size: 0.875rem;
    color: var(--text-muted);
}

/* =========================================
   BETA BANNER SECTION
   ========================================= */
.beta-banner-section {
    padding: 80px 0;
    background: linear-gradient(135deg, rgba(34, 197, 94, 0.15) 0%, rgba(59, 130, 246, 0.15) 100%);
}

.beta-banner {
    text-align: center;
    max-width: 700px;
    margin: 0 auto;
}

.beta-badge-large {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: rgba(34, 197, 94, 0.2);
    border: 1px solid var(--primary);
    border-radius: 30px;
    padding: 10px 24px;
    font-size: 0.875rem;
    font-weight: 700;
    color: var(--primary);
    letter-spacing: 0.1em;
    margin-bottom: 24px;
}

.beta-banner h2 {
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 16px;
    background: linear-gradient(135deg, var(--text-primary), var(--primary));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.beta-banner p {
    font-size: 1.1rem;
    color: var(--text-secondary);
    line-height: 1.7;
    margin-bottom: 32px;
}

/* =========================================
   PRICING SECTION
   ========================================= */
/* =========================================
   PRICING SECTION — COACH vs GRIDIRON
   ========================================= */
.pricing-section {
    padding: var(--section-padding);
    background: var(--bg-card);
}

.pricing-header {
    text-align: center;
    margin-bottom: 40px;
}

.pricing-subhead {
    font-size: 1.1rem;
    color: var(--text-secondary);
    margin-top: 16px;
}

/* Trial Banner */
.pricing-trial-banner {
    display: flex;
    align-items: center;
    gap: 20px;
    max-width: 640px;
    margin: 0 auto 48px;
    padding: 18px 28px;
    background: linear-gradient(135deg, rgba(34, 197, 94, 0.08), rgba(34, 197, 94, 0.03));
    border: 1px solid rgba(34, 197, 94, 0.2);
    border-radius: 14px;
}

.pricing-trial-icon {
    flex-shrink: 0;
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 12px;
    background: var(--primary);
    color: #000;
    font-family: var(--font-display);
    font-size: 1.3rem;
    font-weight: 800;
}

.pricing-trial-text {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.pricing-trial-text strong {
    font-size: 0.95rem;
    color: var(--text-primary);
}

.pricing-trial-text span {
    font-size: 0.85rem;
    color: var(--text-secondary);
}

/* Pricing Grid — 2 columns */
.pricing-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 28px;
    max-width: 920px;
    margin: 0 auto 48px;
}

/* Card base */
.pricing-card {
    background: var(--bg-elevated);
    border: 1px solid var(--border-subtle);
    border-radius: 20px;
    padding: 40px 36px;
    position: relative;
    transition: all 0.3s;
    display: flex;
    flex-direction: column;
}

.pricing-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
}

/* Featured card (Gridiron) */
.pricing-card.featured {
    border-color: var(--primary);
    box-shadow: 0 0 40px rgba(34, 197, 94, 0.08);
    background: linear-gradient(180deg, rgba(34, 197, 94, 0.04) 0%, var(--bg-elevated) 40%);
}

.pricing-card.featured:hover {
    transform: translateY(-6px);
    box-shadow: 0 20px 60px rgba(34, 197, 94, 0.15);
}

.popular-badge {
    position: absolute;
    top: -13px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--primary);
    color: #000;
    padding: 6px 22px;
    border-radius: 50px;
    font-family: var(--font-display);
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 1.5px;
}

/* Tier header */
.pricing-tier {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 20px;
}

.tier-name {
    font-family: var(--font-display);
    font-size: 1.6rem;
    font-weight: 700;
    letter-spacing: 0.5px;
}

.tier-badge {
    font-family: var(--font-display);
    font-size: 0.6rem;
    font-weight: 600;
    letter-spacing: 1.2px;
    color: var(--text-muted);
    background: rgba(255, 255, 255, 0.05);
    padding: 5px 10px;
    border-radius: 6px;
}

/* Price display */
.pricing-price {
    margin-bottom: 6px;
    display: flex;
    align-items: baseline;
    gap: 8px;
}

.price-original {
    font-size: 1.4rem;
    font-weight: 600;
    color: var(--text-muted);
    text-decoration: line-through;
    opacity: 0.5;
}

.price-amount {
    font-size: 3.2rem;
    font-weight: 800;
    font-family: var(--font-display);
    color: var(--primary);
    line-height: 1;
}

.price-period {
    font-size: 1rem;
    color: var(--text-muted);
    font-weight: 400;
}

/* Launch badge */
.pricing-launch-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 6px 14px;
    background: rgba(249, 115, 22, 0.1);
    border: 1px solid rgba(249, 115, 22, 0.25);
    border-radius: 8px;
    font-size: 0.75rem;
    color: #fb923c;
    font-weight: 600;
    margin-bottom: 20px;
    width: fit-content;
}

.pricing-launch-badge i {
    width: 14px;
    height: 14px;
    color: #f97316;
}

/* Description */
.pricing-desc {
    font-size: 0.95rem;
    color: var(--text-secondary);
    margin-bottom: 24px;
    padding-bottom: 24px;
    border-bottom: 1px solid var(--border-subtle);
    line-height: 1.5;
}

/* Feature list */
.pricing-features {
    list-style: none;
    margin-bottom: 24px;
    flex: 1;
}

.pricing-features li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    padding: 8px 0;
    font-size: 0.9rem;
    color: var(--text-secondary);
    line-height: 1.4;
}

.pricing-features li i {
    width: 18px;
    height: 18px;
    color: var(--primary);
    flex-shrink: 0;
    margin-top: 2px;
}

.pricing-features li strong {
    color: var(--text-primary);
}

.pricing-features li.pricing-includes {
    color: var(--primary);
    font-weight: 600;
    font-size: 0.85rem;
    padding-bottom: 12px;
    margin-bottom: 4px;
    border-bottom: 1px solid rgba(34, 197, 94, 0.1);
}

.pricing-features li.pricing-includes i {
    color: var(--primary);
}

/* Platform indicator */
.pricing-platform {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 10px 16px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid var(--border-subtle);
    border-radius: 10px;
    font-size: 0.8rem;
    color: var(--text-muted);
    margin-bottom: 20px;
}

.pricing-platform i {
    width: 16px;
    height: 16px;
    opacity: 0.6;
}

.pricing-platform--ios {
    border-color: rgba(34, 197, 94, 0.2);
    background: rgba(34, 197, 94, 0.04);
    color: var(--text-secondary);
}

.pricing-platform--ios strong {
    color: var(--primary);
}

/* CTA Buttons */
.btn-pricing {
    display: block;
    width: 100%;
    text-align: center;
    padding: 16px;
    border-radius: 12px;
    font-weight: 700;
    font-size: 1rem;
    text-decoration: none;
    background: rgba(255, 255, 255, 0.06);
    color: var(--text-primary);
    border: 1px solid var(--border-subtle);
    transition: all 0.2s;
    cursor: pointer;
}

.btn-pricing:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: var(--primary);
    transform: translateY(-1px);
}

.btn-pricing.btn-primary {
    background: var(--primary);
    color: #000;
    border-color: var(--primary);
    font-weight: 800;
}

.btn-pricing.btn-primary:hover {
    background: var(--primary-dark);
    box-shadow: 0 8px 30px var(--primary-glow);
}

.pricing-note {
    display: block;
    text-align: center;
    font-size: 0.78rem;
    color: var(--text-muted);
    margin-top: 12px;
}

/* Bottom note */
.pricing-bottom {
    text-align: center;
    max-width: 600px;
    margin: 0 auto;
}

.pricing-bottom-note {
    font-size: 0.85rem;
    color: var(--text-muted);
    line-height: 1.6;
}

/* =========================================
   FAQ SECTION
   ========================================= */
.faq-section {
    padding: var(--section-padding);
    background: var(--bg-dark);
}

.faq-header {
    text-align: center;
    margin-bottom: 60px;
}

.faq-grid {
    max-width: 800px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.faq-item {
    background: var(--bg-card);
    border: 1px solid var(--border-subtle);
    border-radius: 12px;
    overflow: hidden;
    transition: all 0.3s;
}

.faq-item:hover {
    border-color: rgba(255, 255, 255, 0.15);
}

.faq-item.open {
    border-color: var(--primary);
}

.faq-question {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 20px 24px;
    cursor: pointer;
    font-weight: 600;
    font-size: 1.05rem;
}

.faq-question i {
    width: 20px;
    height: 20px;
    color: var(--text-muted);
    transition: transform 0.3s;
}

.faq-item.open .faq-question i {
    transform: rotate(180deg);
    color: var(--primary);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
}

.faq-item.open .faq-answer {
    max-height: 300px;
}

.faq-answer p {
    padding: 0 24px 24px;
    color: var(--text-secondary);
    line-height: 1.7;
}

/* =========================================
   FINAL CTA SECTION
   ========================================= */
.final-cta-section {
    padding: 120px 24px;
    background: linear-gradient(180deg, var(--bg-card) 0%, var(--bg-dark) 100%);
    position: relative;
    overflow: hidden;
}

.final-cta-section .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 60px;
    max-width: 1500px;
}

.cta-content {
    max-width: 600px;
}

.cta-content h2 {
    margin-bottom: 16px;
}

.cta-content p {
    font-size: 1.25rem;
    color: var(--text-secondary);
    margin-bottom: 32px;
}

.cta-buttons {
    margin-bottom: 24px;
}

.cta-trust {
    display: flex;
    gap: 24px;
    flex-wrap: wrap;
}

.cta-trust span {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.9rem;
    color: var(--text-muted);
}

.cta-trust i {
    width: 16px;
    height: 16px;
    color: var(--primary);
}

.cta-mockup {
    flex: 1;
    min-width: 0;
}

.cta-mockup .ipad-video-container {
    max-width: 1125px;
    opacity: 1;
    transform: none;
}

/* =========================================
   TEAM LOGOS SECTION
   ========================================= */
.logos-section {
    padding: 80px 0;
    background: linear-gradient(180deg, var(--bg-card) 0%, var(--bg-dark) 100%);
    overflow: hidden;
}

.logos-header {
    text-align: center;
    margin-bottom: 48px;
}

.logos-subhead {
    font-size: 1.1rem;
    color: var(--text-secondary);
    margin-top: 16px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.team-selection-preview {
    margin: 40px auto;
    max-width: 800px;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.4);
    border: 1px solid var(--border-subtle);
}

.team-selection-preview img {
    width: 100%;
    height: auto;
    display: block;
}

.logos-showcase {
    display: flex;
    flex-direction: column;
    gap: 32px;
    margin-bottom: 48px;
    width: 100%;
}

.logos-track {
    overflow: hidden;
    width: 100%;
}

.logos-row {
    display: flex;
    width: max-content;
    animation: scroll-logos 40s linear infinite;
}

.logos-track-reverse .logos-row {
    animation: scroll-logos-reverse 40s linear infinite;
}

@keyframes scroll-logos {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

@keyframes scroll-logos-reverse {
    0% { transform: translateX(-50%); }
    100% { transform: translateX(0); }
}

.logos-row img {
    width: 100px;
    height: 100px;
    object-fit: contain;
    filter: grayscale(20%);
    opacity: 0.85;
    transition: all 0.3s;
    flex-shrink: 0;
    margin: 0 24px;
}

.logos-row img:hover {
    filter: grayscale(0%);
    opacity: 1;
    transform: scale(1.15);
}

.logos-cta {
    text-align: center;
    padding-top: 16px;
}

.logos-cta-text {
    font-size: 1rem;
    color: var(--text-muted);
}

.logos-cta-text strong {
    color: var(--primary);
}

/* Elite Custom Teams */
.elite-teams {
    margin-top: 40px;
    padding: 48px 24px;
    border-radius: 16px;
    position: relative;
    overflow: hidden;
    /* Electric grid background */
    background:
        linear-gradient(90deg, rgba(34, 197, 94, 0.03) 1px, transparent 1px),
        linear-gradient(rgba(34, 197, 94, 0.03) 1px, transparent 1px),
        radial-gradient(ellipse at center, rgba(34, 197, 94, 0.08) 0%, transparent 70%);
    background-size: 40px 40px, 40px 40px, 100% 100%;
    border: 1px solid rgba(34, 197, 94, 0.15);
}

/* Animated glow pulse on the grid */
.elite-teams::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 80%;
    height: 80%;
    transform: translate(-50%, -50%);
    background: radial-gradient(ellipse at center, rgba(34, 197, 94, 0.15) 0%, transparent 60%);
    animation: elite-glow-pulse 4s ease-in-out infinite;
    pointer-events: none;
}

@keyframes elite-glow-pulse {
    0%, 100% { opacity: 0.3; transform: translate(-50%, -50%) scale(1); }
    50% { opacity: 0.6; transform: translate(-50%, -50%) scale(1.1); }
}

/* Electric line accents */
.elite-teams::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background:
        linear-gradient(90deg, transparent 0%, rgba(34, 197, 94, 0.1) 50%, transparent 100%);
    background-size: 200% 100%;
    animation: elite-scan 3s linear infinite;
    pointer-events: none;
}

@keyframes elite-scan {
    0% { background-position: -200% 0; }
    100% { background-position: 200% 0; }
}

.elite-teams-label {
    text-align: center;
    font-size: 0.9rem;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--primary);
    margin-bottom: 24px;
    position: relative;
    z-index: 1;
}

.elite-teams-row {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    gap: 32px;
    position: relative;
    z-index: 1;
}

.elite-team {
    flex-shrink: 0;
    transition: transform 0.3s ease;
}

.elite-team img {
    height: 110px;
    width: auto;
    filter: drop-shadow(0 4px 16px rgba(0, 0, 0, 0.5)) drop-shadow(0 0 20px rgba(34, 197, 94, 0.2));
    transition: transform 0.4s ease, filter 0.4s ease;
}

/* Staggered floating animation */
.elite-team:nth-child(1) img { animation: elite-float 3s ease-in-out infinite; }
.elite-team:nth-child(2) img { animation: elite-float 3s ease-in-out infinite 0.5s; }
.elite-team:nth-child(3) img { animation: elite-float 3s ease-in-out infinite 1s; }
.elite-team:nth-child(4) img { animation: elite-float 3s ease-in-out infinite 1.5s; }
.elite-team:nth-child(5) img { animation: elite-float 3s ease-in-out infinite 2s; }
.elite-team:nth-child(6) img { animation: elite-float 3s ease-in-out infinite 2.5s; }

@keyframes elite-float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-8px); }
}

.elite-team:hover img {
    transform: scale(1.15) translateY(-5px);
    filter: drop-shadow(0 8px 24px rgba(0, 0, 0, 0.4)) drop-shadow(0 0 30px rgba(34, 197, 94, 0.5));
    animation-play-state: paused;
}

@media (max-width: 768px) {
    .elite-teams {
        padding: 32px 16px;
    }

    .elite-teams-row {
        gap: 20px;
    }

    .elite-team img {
        height: 80px;
    }
}

/* =========================================
   WHY DIFFERENT / COMPARISON SECTION
   ========================================= */
.different-section {
    padding: var(--section-padding);
    background: var(--bg-dark);
    position: relative;
    overflow: hidden;
}

.different-bg-image {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 0;
    opacity: 0.15;
}

.different-bg-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    image-rendering: -webkit-optimize-contrast;
    image-rendering: high-quality;
    -ms-interpolation-mode: bicubic;
}

.different-section .container {
    position: relative;
    z-index: 1;
}

.different-header {
    text-align: center;
    margin-bottom: 60px;
}

.comparison-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 32px;
    max-width: 900px;
    margin: 0 auto 48px;
}

.comparison-card {
    background: var(--bg-card);
    border-radius: 16px;
    padding: 32px;
    border: 2px solid var(--border-subtle);
}

.comparison-card.theirs {
    border-color: var(--accent-red);
    opacity: 0.7;
}

.comparison-card.ours {
    border-color: var(--primary);
    background: linear-gradient(135deg, rgba(34, 197, 94, 0.1), rgba(59, 130, 246, 0.05));
}

.comparison-header-box {
    margin-bottom: 28px;
    padding-bottom: 20px;
    border-bottom: 1px solid var(--border-subtle);
    min-height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.comparison-label-text {
    font-size: 1.1rem;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--accent-red);
    opacity: 0.7;
}

.comparison-logo {
    height: 80px;
    width: auto;
    object-fit: contain;
}

.comparison-list {
    list-style: none;
}

.comparison-list li {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 10px 0;
    font-size: 0.95rem;
    color: var(--text-secondary);
}

.comparison-card.theirs .comparison-list li i {
    color: var(--accent-red);
    width: 20px;
    height: 20px;
}

.comparison-card.ours .comparison-list li i {
    color: var(--primary);
    width: 20px;
    height: 20px;
}

.comparison-list li strong {
    color: var(--text-primary);
}

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

.different-statement {
    font-size: 1.25rem;
    color: var(--text-secondary);
    max-width: 700px;
    margin: 0 auto;
}

.different-statement strong {
    color: var(--primary);
}

/* =========================================
   TEAM COMMUNICATION SECTION
   ========================================= */
.communication-section {
    padding: var(--section-padding);
    background: linear-gradient(180deg, var(--bg-card) 0%, #0a0d14 50%, var(--bg-card) 100%);
    position: relative;
}

.communication-header {
    text-align: center;
    margin-bottom: 60px;
}

.communication-subhead {
    font-size: 1.25rem;
    color: var(--text-secondary);
    margin-top: 16px;
}

.communication-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
    max-width: 1000px;
    margin: 0 auto;
}

.comm-feature-card {
    background: var(--bg-card);
    border: 1px solid var(--border-subtle);
    border-radius: 16px;
    padding: 32px;
    transition: all 0.3s ease;
}

.comm-feature-card:hover {
    border-color: var(--primary);
    box-shadow: 0 0 30px rgba(34, 197, 94, 0.1);
    transform: translateY(-4px);
}

.comm-feature-icon {
    width: 56px;
    height: 56px;
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
}

.comm-feature-icon i {
    width: 28px;
    height: 28px;
    color: white;
}

.comm-feature-card h3 {
    font-family: var(--font-display);
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 12px;
}

.comm-feature-card p {
    color: var(--text-secondary);
    line-height: 1.6;
    margin-bottom: 20px;
}

/* Chat Preview */
.chat-preview {
    background: rgba(0, 0, 0, 0.3);
    border-radius: 12px;
    padding: 16px;
}

.chat-bubble {
    padding: 10px 14px;
    border-radius: 12px;
    margin-bottom: 8px;
    font-size: 0.9rem;
    max-width: 85%;
}

.chat-bubble.coach {
    background: var(--primary);
    color: white;
    margin-left: auto;
    border-bottom-right-radius: 4px;
}

.chat-bubble.parent {
    background: var(--bg-elevated);
    color: var(--text-primary);
    border-bottom-left-radius: 4px;
}

.chat-reactions {
    display: flex;
    gap: 8px;
    margin-top: 8px;
}

.chat-reactions .reaction {
    background: var(--bg-elevated);
    padding: 4px 10px;
    border-radius: 20px;
    font-size: 0.8rem;
}

/* DM Preview */
.dm-preview {
    background: rgba(0, 0, 0, 0.3);
    border-radius: 12px;
    overflow: hidden;
}

.dm-thread {
    padding: 12px 16px;
    border-bottom: 1px solid var(--border-subtle);
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.dm-thread:last-child {
    border-bottom: none;
}

.dm-thread.unread {
    background: rgba(34, 197, 94, 0.1);
}

.dm-name {
    font-weight: 600;
    font-size: 0.9rem;
}

.dm-preview-text {
    color: var(--text-muted);
    font-size: 0.85rem;
}

/* Reactions Preview */
.reactions-preview {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.reaction-pill {
    background: var(--bg-elevated);
    padding: 8px 14px;
    border-radius: 20px;
    font-size: 0.85rem;
    border: 1px solid var(--border-subtle);
    transition: all 0.2s ease;
}

.reaction-pill:hover {
    border-color: var(--primary);
    transform: scale(1.05);
}

/* Notification Preview */
.notification-preview {
    background: rgba(0, 0, 0, 0.3);
    border-radius: 12px;
    padding: 16px;
}

.notif-mock {
    display: flex;
    align-items: center;
    gap: 12px;
    background: var(--bg-elevated);
    padding: 12px 16px;
    border-radius: 12px;
    border-left: 3px solid var(--primary);
}

.notif-mock i {
    width: 24px;
    height: 24px;
    color: var(--text-muted);
}

.notif-content {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.notif-app {
    font-size: 0.75rem;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.notif-msg {
    font-size: 0.9rem;
    font-weight: 500;
}

@media (max-width: 768px) {
    .communication-grid {
        grid-template-columns: 1fr;
    }
}

/* =========================================
   AI GAME CAMERA SECTION
   ========================================= */
.gamecam-section {
    padding: var(--section-padding);
    background: linear-gradient(180deg, #0d1117 0%, #0f1520 50%, #0d1117 100%);
    position: relative;
    overflow: hidden;
}

.gamecam-header {
    text-align: center;
    margin-bottom: 60px;
}

.gamecam-badge {
    margin-bottom: 16px;
}

.gamecam-subhead {
    font-size: 1.15rem;
    color: var(--text-secondary);
    max-width: 750px;
    margin: 20px auto 0;
    line-height: 1.7;
}

/* --- Device Showcase Layout --- */
.gamecam-showcase {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0;
    margin-bottom: 80px;
    position: relative;
}

.gamecam-device {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 16px;
    flex-shrink: 0;
    opacity: 1;
    transform: translateX(0);
    transition: opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1), transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.gamecam-device-label {
    display: flex;
    align-items: center;
    gap: 8px;
    font-family: var(--font-display);
    font-size: 0.85rem;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--text-secondary);
}

.gamecam-device-label i {
    width: 16px;
    height: 16px;
    color: var(--primary);
}

.gamecam-device--camera .gamecam-device-label {
    color: var(--primary);
}

.gamecam-device--spectator .gamecam-device-label {
    color: var(--secondary);
}

.gamecam-device-caption {
    font-size: 0.9rem;
    color: var(--text-muted);
    text-align: center;
    max-width: 220px;
}

/* Placeholder containers for future video/images */
.gamecam-placeholder {
    border-radius: 20px;
    border: 2px solid var(--border-subtle);
    background: rgba(255, 255, 255, 0.03);
    position: relative;
    overflow: hidden;
}

.gamecam-placeholder--phone {
    width: 260px;
    aspect-ratio: 9 / 16;
}

.gamecam-placeholder--spectator {
    width: 320px;
    aspect-ratio: 16 / 10;
}

.placeholder-inner {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    height: 100%;
    gap: 12px;
    padding: 24px;
}

.placeholder-icon {
    width: 48px;
    height: 48px;
    color: var(--primary);
    opacity: 0.4;
}

.placeholder-icon--lg {
    width: 64px;
    height: 64px;
}

.placeholder-text {
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: var(--text-muted);
    opacity: 0.5;
}

.placeholder-inner--wide {
    gap: 16px;
}

/* Center signal */
.gamecam-center {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 28px;
    padding: 0 32px;
    flex-shrink: 0;
    min-width: 260px;
    max-width: 300px;
}

.gamecam-signal {
    position: relative;
    width: 64px;
    height: 64px;
    display: flex;
    align-items: center;
    justify-content: center;
}

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

.gamecam-center-text h3 {
    font-family: var(--font-display);
    font-size: 1.4rem;
    font-weight: 800;
    line-height: 1.3;
    margin-bottom: 16px;
}

.gamecam-center-text p {
    font-size: 0.95rem;
    color: var(--text-secondary);
    line-height: 1.7;
}

/* Feature Cards */
.gamecam-features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    max-width: 1100px;
    margin: 0 auto;
}

.gamecam-feature-card {
    background: var(--bg-card);
    border: 1px solid var(--border-subtle);
    border-radius: 16px;
    padding: 28px 24px;
    text-align: center;
    transition: all 0.3s ease;
}

.gamecam-feature-card:hover {
    border-color: var(--primary);
    box-shadow: 0 0 30px rgba(34, 197, 94, 0.1);
    transform: translateY(-4px);
}

.gamecam-feature-icon {
    width: 52px;
    height: 52px;
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 16px;
}

.gamecam-feature-icon i {
    width: 24px;
    height: 24px;
    color: white;
}

.gamecam-feature-card h3 {
    font-family: var(--font-display);
    font-size: 1.05rem;
    font-weight: 700;
    margin-bottom: 8px;
}

.gamecam-feature-card p {
    font-size: 0.9rem;
    color: var(--text-secondary);
    line-height: 1.6;
}

/* Responsive */
@media (max-width: 1024px) {
    .gamecam-features-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .gamecam-center {
        min-width: 200px;
        padding: 0 16px;
    }
}

@media (max-width: 900px) {
    .gamecam-showcase {
        flex-direction: column;
        gap: 40px;
    }

    .gamecam-center {
        flex-direction: row;
        max-width: 100%;
        min-width: 0;
        gap: 24px;
        padding: 0;
    }

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

    .gamecam-center-text h3 br {
        display: none;
    }

    .gamecam-placeholder--phone {
        width: 220px;
    }

    .gamecam-placeholder--spectator {
        width: 280px;
    }
}

@media (max-width: 640px) {
    .gamecam-features-grid {
        grid-template-columns: 1fr;
    }

    .gamecam-center {
        flex-direction: column;
    }

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

    .gamecam-placeholder--phone {
        width: 200px;
        max-width: 100%;
    }

    .gamecam-placeholder--spectator {
        width: 260px;
        max-width: 100%;
    }
}

/* =========================================
   AI ANNOUNCER SECTION
   ========================================= */
.announcer-section {
    padding: var(--section-padding);
    background: linear-gradient(180deg, #0d1117 0%, #111827 50%, #0d1117 100%);
    position: relative;
    overflow: hidden;
}

.announcer-header {
    text-align: center;
    margin-bottom: 60px;
}

.announcer-badge {
    margin-bottom: 16px;
}

.announcer-subhead {
    font-size: 1.15rem;
    color: var(--text-secondary);
    max-width: 750px;
    margin: 20px auto 0;
    line-height: 1.7;
}

/* Showcase layout */
.announcer-showcase {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 60px;
    margin-bottom: 80px;
    max-width: 1100px;
    margin-left: auto;
    margin-right: auto;
}

.announcer-visual {
    flex: 1;
    max-width: 520px;
}

.announcer-placeholder {
    border-radius: 20px;
    border: 2px solid var(--border-subtle);
    background: rgba(255, 255, 255, 0.03);
    aspect-ratio: 16 / 10;
    position: relative;
    overflow: hidden;
}

/* Audio waveform animation */
.announcer-waveform {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 4px;
    margin-top: 8px;
    height: 40px;
}

.wave-bar {
    width: 4px;
    background: var(--primary);
    border-radius: 2px;
    animation: waveAnim 1.2s ease-in-out infinite;
}

.wave-bar:nth-child(1) { height: 12px; animation-delay: 0s; }
.wave-bar:nth-child(2) { height: 24px; animation-delay: 0.1s; }
.wave-bar:nth-child(3) { height: 36px; animation-delay: 0.2s; }
.wave-bar:nth-child(4) { height: 20px; animation-delay: 0.3s; }
.wave-bar:nth-child(5) { height: 32px; animation-delay: 0.15s; }
.wave-bar:nth-child(6) { height: 16px; animation-delay: 0.25s; }
.wave-bar:nth-child(7) { height: 28px; animation-delay: 0.05s; }
.wave-bar:nth-child(8) { height: 20px; animation-delay: 0.35s; }
.wave-bar:nth-child(9) { height: 14px; animation-delay: 0.2s; }

@keyframes waveAnim {
    0%, 100% { transform: scaleY(0.4); opacity: 0.4; }
    50% { transform: scaleY(1); opacity: 1; }
}

/* Quote / example callout */
.announcer-quote {
    flex: 1;
    max-width: 480px;
    position: relative;
    padding: 32px;
    background: var(--bg-card);
    border: 1px solid var(--border-subtle);
    border-radius: 20px;
}

.announcer-quote-icon {
    width: 48px;
    height: 48px;
    background: linear-gradient(135deg, #f59e0b, #d97706);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
}

.announcer-quote-icon i {
    width: 24px;
    height: 24px;
    color: #0a0d14;
}

.announcer-quote blockquote {
    font-size: 1.1rem;
    line-height: 1.7;
    font-style: italic;
    color: var(--text-primary);
    margin: 0 0 16px 0;
    padding: 0;
    border: none;
}

.announcer-quote-label {
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: var(--text-muted);
}

/* Highlight Production Callout */
.announcer-highlight-callout {
    display: flex;
    align-items: flex-start;
    gap: 24px;
    max-width: 900px;
    margin: 0 auto 60px;
    padding: 32px 36px;
    background: linear-gradient(135deg, rgba(245, 158, 11, 0.08), rgba(245, 158, 11, 0.02));
    border: 1px solid rgba(245, 158, 11, 0.2);
    border-radius: 20px;
}

.announcer-highlight-icon {
    width: 56px;
    height: 56px;
    background: linear-gradient(135deg, #f59e0b, #d97706);
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.announcer-highlight-icon i {
    width: 28px;
    height: 28px;
    color: #0a0d14;
}

.announcer-highlight-text h3 {
    font-family: var(--font-display);
    font-size: 1.15rem;
    font-weight: 700;
    margin-bottom: 8px;
}

.announcer-highlight-text p {
    font-size: 0.95rem;
    color: var(--text-secondary);
    line-height: 1.7;
}

@media (max-width: 640px) {
    .announcer-highlight-callout {
        flex-direction: column;
        align-items: center;
        text-align: center;
        padding: 24px 20px;
    }
}

/* Feature Cards */
.announcer-features-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    max-width: 1100px;
    margin: 0 auto;
}

.announcer-feature-card {
    background: var(--bg-card);
    border: 1px solid var(--border-subtle);
    border-radius: 16px;
    padding: 28px 24px;
    text-align: center;
    transition: all 0.3s ease;
}

.announcer-feature-card:hover {
    border-color: #f59e0b;
    box-shadow: 0 0 30px rgba(245, 158, 11, 0.1);
    transform: translateY(-4px);
}

.announcer-feature-icon {
    width: 52px;
    height: 52px;
    background: linear-gradient(135deg, #f59e0b, #d97706);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 16px;
}

.announcer-feature-icon i {
    width: 24px;
    height: 24px;
    color: #0a0d14;
}

.announcer-feature-card h3 {
    font-family: var(--font-display);
    font-size: 1.05rem;
    font-weight: 700;
    margin-bottom: 8px;
}

.announcer-feature-card p {
    font-size: 0.9rem;
    color: var(--text-secondary);
    line-height: 1.6;
}

/* Responsive */
@media (max-width: 1024px) {
    .announcer-features-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .announcer-showcase {
        gap: 40px;
    }
}

@media (max-width: 900px) {
    .announcer-showcase {
        flex-direction: column;
        gap: 32px;
    }

    .announcer-visual {
        max-width: 100%;
        width: 100%;
    }

    .announcer-quote {
        max-width: 100%;
    }
}

@media (max-width: 640px) {
    .announcer-features-grid {
        grid-template-columns: 1fr;
    }
}

/* =========================================
   SIDELINE COMMS SECTION
   ========================================= */
.sideline-section {
    padding: var(--section-padding);
    background: linear-gradient(180deg, #0a0d14 0%, #0d1117 40%, #0a0d14 100%);
    position: relative;
    overflow-x: clip;
    overflow-y: visible;
}

.sideline-header {
    text-align: center;
    margin-bottom: 60px;
}

.sideline-badge {
    margin-bottom: 16px;
}

.sideline-subhead {
    font-size: 1.15rem;
    color: var(--text-secondary);
    max-width: 700px;
    margin: 20px auto 0;
    line-height: 1.7;
}

/* --- Device Showcase Layout --- */
.sideline-showcase {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0;
    margin-bottom: 80px;
    position: relative;
    overflow: visible;
    margin-left: -60px;
    margin-right: -60px;
}

.sideline-device {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 16px;
    flex-shrink: 0;
    transition: opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1), transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

/* --- Scroll Entrance Animations (progressive enhancement) --- */
/* Start visible by default — JS adds .sideline-animate to enable entrance */
.sideline-device--phone {
    opacity: 1;
    transform: translateX(0);
}

.sideline-device--tablet {
    opacity: 1;
    transform: translateX(0);
}

.sideline-center {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 28px;
    padding: 0 32px;
    flex-shrink: 0;
    min-width: 260px;
    max-width: 300px;
    opacity: 1;
    transform: scale(1);
    transition: opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1) 0.2s, transform 0.8s cubic-bezier(0.16, 1, 0.3, 1) 0.2s;
}

/* JS adds .sideline-animate early — hides elements for entrance animation */
.sideline-section.sideline-animate .sideline-device--phone {
    opacity: 0;
    transform: translateX(-80px);
}

.sideline-section.sideline-animate .sideline-device--tablet {
    opacity: 0;
    transform: translateX(80px);
}

.sideline-section.sideline-animate .sideline-center {
    opacity: 0;
    transform: scale(0.85);
}

/* .revealed triggers the entrance animation */
.sideline-section.revealed .sideline-device--phone {
    opacity: 1;
    transform: translateX(0);
}

.sideline-section.revealed .sideline-device--tablet {
    opacity: 1;
    transform: translateX(0);
}

.sideline-section.revealed .sideline-center {
    opacity: 1;
    transform: scale(1);
}

.sideline-device-label {
    display: flex;
    align-items: center;
    gap: 8px;
    font-family: var(--font-display);
    font-size: 0.85rem;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
}

.sideline-device-label i {
    width: 18px;
    height: 18px;
}

.sideline-device--phone .sideline-device-label {
    color: var(--secondary);
}

.sideline-device--tablet .sideline-device-label {
    color: var(--primary);
}

.sideline-device-caption {
    font-size: 0.85rem;
    color: var(--text-muted);
    text-align: center;
    max-width: 200px;
}

/* --- iPhone Frame + Video --- */
.iphone-video-container {
    position: relative;
    width: 340px;
    filter: drop-shadow(0 20px 40px rgba(0, 0, 0, 0.5))
            drop-shadow(0 0 20px rgba(59, 130, 246, 0.15));
}

.iphone-frame {
    width: 100%;
    height: auto;
    display: block;
    position: relative;
    z-index: 2;
    pointer-events: none;
}

/* Black background behind video to prevent bleed */
.iphone-video-container::before {
    content: '';
    position: absolute;
    left: 6.5%;
    top: 2.5%;
    width: 87%;
    height: 95%;
    background: #000;
    z-index: 0;
    border-radius: 42px;
}

.iphone-video {
    position: absolute;
    left: 6.8%;
    top: 2.6%;
    width: 86.4%;
    height: 94.8%;
    z-index: 1;
    border: 0;
    border-radius: 28px;
    background: #000;
}

/* --- iPad Frame + Video (sideline-specific) --- */
.sideline-ipad-container {
    position: relative;
    width: 700px;
    filter: drop-shadow(0 20px 40px rgba(0, 0, 0, 0.5))
            drop-shadow(0 0 20px rgba(34, 197, 94, 0.15));
}

.sideline-ipad-container .ipad-frame {
    width: 100%;
    height: auto;
    display: block;
    position: relative;
    z-index: 2;
    pointer-events: none;
}

.sideline-ipad-container::before {
    content: '';
    position: absolute;
    left: 7%;
    top: 12.5%;
    width: 86%;
    height: 79%;
    background: #000;
    z-index: 0;
    border-radius: 8px;
}

.sideline-ipad-container .ipad-video {
    position: absolute;
    left: 8.9%;
    top: 14.4%;
    width: 82.1%;
    height: 75.5%;
    z-index: 1;
    border: 0;
    border-radius: 4px;
    background: #000;
}

/* --- Center Signal Animation --- */
/* Note: opacity, transform, transition set in scroll animation block above */

.sideline-signal {
    position: relative;
    width: 72px;
    height: 72px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.signal-icon {
    width: 56px;
    height: 56px;
    background: linear-gradient(135deg, var(--primary), #16a34a);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    z-index: 2;
    box-shadow: 0 0 20px rgba(34, 197, 94, 0.4);
}

.signal-icon i {
    width: 26px;
    height: 26px;
    color: white;
}

.signal-ring {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 56px;
    height: 56px;
    border: 2px solid var(--primary);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    z-index: 1;
}

.signal-ring--1 {
    animation: sidelineRing 2.4s ease-out infinite;
}

.signal-ring--2 {
    animation: sidelineRing 2.4s ease-out infinite 0.6s;
}

.signal-ring--3 {
    animation: sidelineRing 2.4s ease-out infinite 1.2s;
}

@keyframes sidelineRing {
    0% {
        width: 56px;
        height: 56px;
        opacity: 0.7;
        border-color: rgba(34, 197, 94, 0.7);
    }
    100% {
        width: 140px;
        height: 140px;
        opacity: 0;
        border-color: rgba(34, 197, 94, 0);
    }
}

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

.sideline-center-text h3 {
    font-family: var(--font-display);
    font-size: 1.35rem;
    font-weight: 700;
    line-height: 1.3;
    margin-bottom: 14px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.sideline-center-text p {
    font-size: 0.95rem;
    color: var(--text-secondary);
    line-height: 1.7;
}

/* --- Feature Cards Grid --- */
.sideline-features-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    max-width: 1100px;
    margin: 0 auto;
}

.sideline-feature-card {
    background: var(--bg-card);
    border: 1px solid var(--border-subtle);
    border-radius: 16px;
    padding: 28px 24px;
    text-align: center;
    transition: all 0.3s ease;
}

.sideline-feature-card:hover {
    border-color: var(--primary);
    box-shadow: 0 0 30px rgba(34, 197, 94, 0.1);
    transform: translateY(-4px);
}

.sideline-feature-icon {
    width: 52px;
    height: 52px;
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 18px;
}

.sideline-feature-icon i {
    width: 26px;
    height: 26px;
    color: white;
}

.sideline-feature-card h3 {
    font-family: var(--font-display);
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 10px;
}

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

/* --- Sideline Responsive --- */
@media (max-width: 1200px) {
    .sideline-showcase {
        margin-left: -40px;
        margin-right: -40px;
    }

    .sideline-ipad-container {
        width: 560px;
    }

    .iphone-video-container {
        width: 280px;
    }

    .sideline-center {
        min-width: 220px;
        padding: 0 20px;
    }
}

@media (max-width: 1024px) {
    .sideline-showcase {
        margin-left: -20px;
        margin-right: -20px;
    }

    .sideline-ipad-container {
        width: 460px;
    }

    .iphone-video-container {
        width: 240px;
    }

    .sideline-center {
        min-width: 200px;
        padding: 0 16px;
    }

    .sideline-features-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 900px) {
    .sideline-showcase {
        flex-direction: column;
        gap: 40px;
        margin-left: 0;
        margin-right: 0;
    }

    .sideline-center {
        flex-direction: row;
        max-width: 100%;
        min-width: 0;
        gap: 24px;
        padding: 0;
    }

    .sideline-signal {
        flex-shrink: 0;
    }

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

    .sideline-center-text h3 br {
        display: none;
    }

    .iphone-video-container {
        width: 240px;
    }

    .sideline-ipad-container {
        width: 440px;
    }

    /* On mobile stacked layout, show devices immediately (no scroll reveal) */
    .sideline-device--phone,
    .sideline-device--tablet {
        opacity: 1;
        transform: none;
    }

    .sideline-center {
        opacity: 1;
        transform: none;
    }
}

@media (max-width: 640px) {
    .sideline-features-grid {
        grid-template-columns: 1fr;
    }

    .sideline-center {
        flex-direction: column;
    }

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

    .iphone-video-container {
        width: 200px;
    }

    .sideline-ipad-container {
        width: 340px;
        max-width: 100%;
    }

    .iphone-video-container {
        max-width: 100%;
    }

    .sideline-showcase {
        gap: 32px;
    }
}

/* =========================================
   QB INTERCOM SECTION — Fixed Parallax Hero
   ========================================= */

/* Outer wrapper defines the scroll height */
.intercom-parallax-wrapper {
    position: relative;
    min-height: 100vh;
    overflow: visible;
}

/* Fixed background image — stays pinned while content scrolls over */
.intercom-fixed-bg {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    z-index: 0;
    pointer-events: none;
    /* iOS Safari GPU layer fix */
    -webkit-transform: translateZ(0);
    transform: translateZ(0);
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
    will-change: transform;
}

.intercom-fixed-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center center;
}

.intercom-fixed-overlay {
    position: absolute;
    inset: 0;
    background:
        linear-gradient(90deg, rgba(10, 13, 20, 0.92) 0%, rgba(10, 13, 20, 0.78) 30%, rgba(10, 13, 20, 0.45) 55%, rgba(10, 13, 20, 0.15) 75%, rgba(10, 13, 20, 0.05) 100%),
        linear-gradient(180deg, rgba(10, 13, 20, 0.6) 0%, transparent 20%, transparent 80%, rgba(10, 13, 20, 0.7) 100%);
}

/* Scrolling content layer sits on top */
.intercom-section {
    position: relative;
    z-index: 1;
    min-height: 100vh;
    display: flex;
    align-items: center;
}

/* --- Content Layout --- */
.intercom-container {
    position: relative;
    display: flex;
    align-items: center;
    gap: 60px;
    padding-top: 100px;
    padding-bottom: 100px;
}

/* --- Left: Text Content --- */
.intercom-content {
    flex: 1;
    min-width: 0;
    max-width: 520px;
    opacity: 0;
    transform: translateX(-60px);
    transition: opacity 0.9s cubic-bezier(0.16, 1, 0.3, 1), transform 0.9s cubic-bezier(0.16, 1, 0.3, 1);
}

.intercom-section.revealed .intercom-content {
    opacity: 1;
    transform: translateX(0);
}

.intercom-badge {
    margin-bottom: 16px;
}

.intercom-content .section-eyebrow {
    display: block;
    margin-bottom: 12px;
}

.intercom-content h2 {
    font-family: var(--font-display);
    font-size: clamp(2.2rem, 4.5vw, 3.4rem);
    font-weight: 800;
    line-height: 1.05;
    text-transform: uppercase;
    letter-spacing: -0.5px;
    margin-bottom: 24px;
}

.intercom-desc {
    font-size: 1.15rem;
    color: var(--text-secondary);
    line-height: 1.7;
    margin-bottom: 36px;
}

/* --- Spec List --- */
.intercom-specs {
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.intercom-spec {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 0.95rem;
    color: var(--text-secondary);
}

.intercom-spec i {
    width: 20px;
    height: 20px;
    color: var(--primary);
    flex-shrink: 0;
}

/* --- Right: iPad with 3D entrance (scroll-driven) --- */
.intercom-device {
    flex-shrink: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 16px;
    /* Initial 3D state — JS overrides via inline style */
    opacity: 0;
    will-change: transform, opacity;
}

.intercom-device-label {
    display: flex;
    align-items: center;
    gap: 8px;
    font-family: var(--font-display);
    font-size: 0.85rem;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--primary);
}

.intercom-device-label i {
    width: 18px;
    height: 18px;
}

.intercom-device-caption {
    font-size: 0.85rem;
    color: var(--text-muted);
    text-align: center;
    max-width: 260px;
}

.intercom-ipad-container {
    position: relative;
    width: 620px;
    transition: transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
    transform-origin: center center;
}

/* Zoomed state — iPad scales up when video is playing */
.intercom-ipad-container.intercom-zoomed {
    transform: scale(1.35);
}

.intercom-ipad-container .ipad-frame {
    width: 100%;
    height: auto;
    display: block;
    position: relative;
    z-index: 3;
    pointer-events: none;
}

/* Black rectangle behind video — prevents hero bleedthrough */
.intercom-screen-bg {
    position: absolute;
    left: 7.5%;
    top: 13%;
    width: 85%;
    height: 78%;
    background: #000;
    z-index: 1;
    border-radius: 6px;
}

.intercom-ipad-container .ipad-video {
    position: absolute;
    left: 8%;
    top: 13.5%;
    width: 84%;
    height: 77%;
    z-index: 2;
    border: 0;
    border-radius: 4px;
    background: #000;
}

/* --- Play Button Overlay (covers screen area, above everything) --- */
.intercom-play-btn {
    position: absolute;
    left: 8%;
    top: 13.5%;
    width: 84%;
    height: 77%;
    z-index: 10;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 14px;
    background: rgba(0, 0, 0, 0.45);
    border: none;
    border-radius: 4px;
    cursor: pointer;
    pointer-events: auto;
    -webkit-tap-highlight-color: transparent;
    transition: all 0.4s ease;
}

.intercom-play-btn:hover {
    background: rgba(0, 0, 0, 0.25);
}

.intercom-play-btn.hidden {
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.5s ease;
}

.intercom-play-icon {
    width: 84px;
    height: 84px;
    border-radius: 50%;
    background: rgba(34, 197, 94, 0.9);
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 0 40px rgba(34, 197, 94, 0.5), 0 0 80px rgba(34, 197, 94, 0.2);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.intercom-play-btn:hover .intercom-play-icon {
    transform: scale(1.1);
    box-shadow: 0 0 50px rgba(34, 197, 94, 0.6), 0 0 100px rgba(34, 197, 94, 0.3);
}

.intercom-play-icon i {
    width: 38px;
    height: 38px;
    color: white;
    margin-left: 4px;
}

.intercom-play-label {
    font-family: var(--font-display);
    font-size: 0.9rem;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: white;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.6);
}

/* --- Intercom Responsive --- */
@media (max-width: 1200px) {
    .intercom-ipad-container {
        width: 500px;
    }

    .intercom-container {
        gap: 40px;
    }
}

@media (max-width: 1024px) {
    .intercom-ipad-container {
        width: 420px;
    }

    .intercom-content {
        max-width: 440px;
    }
}

@media (max-width: 900px) {
    .intercom-parallax-wrapper {
        min-height: auto;
    }

    .intercom-section {
        min-height: auto;
    }

    .intercom-container {
        flex-direction: column;
        text-align: center;
        gap: 40px;
        padding-top: 60px;
        padding-bottom: 60px;
    }

    .intercom-content {
        max-width: 600px;
    }

    .intercom-specs {
        align-items: center;
    }

    .intercom-fixed-overlay {
        background:
            linear-gradient(180deg, rgba(10, 13, 20, 0.65) 0%, rgba(10, 13, 20, 0.8) 30%, rgba(10, 13, 20, 0.92) 60%, rgba(10, 13, 20, 1) 100%);
    }

    .intercom-fixed-img {
        object-position: center 30%;
    }

    .intercom-ipad-container {
        width: 460px;
    }

    /* Fallback: simpler entrance on mobile (no 3D scroll) */
    .intercom-content {
        opacity: 0;
        transform: translateY(40px);
    }
    .intercom-device {
        transform: none !important;
        opacity: 0 !important;
        transform: translateY(60px) !important;
        transition: opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1) 0.2s, transform 0.8s cubic-bezier(0.16, 1, 0.3, 1) 0.2s !important;
    }
    .intercom-section.revealed .intercom-content {
        opacity: 1;
        transform: translateY(0);
    }
    .intercom-section.revealed .intercom-device {
        opacity: 1 !important;
        transform: translateY(0) !important;
    }
}

@media (max-width: 640px) {
    .intercom-ipad-container {
        width: 340px;
    }

    .intercom-play-icon {
        width: 64px;
        height: 64px;
    }

    .intercom-play-icon i {
        width: 28px;
        height: 28px;
    }

    .intercom-play-label {
        font-size: 0.75rem;
    }
}

/* =========================================
   AI TOOLS SECTION
   ========================================= */
.ai-section {
    padding: var(--section-padding);
    background: linear-gradient(180deg, var(--bg-card) 0%, #0f1318 50%, var(--bg-card) 100%);
    position: relative;
}

.ai-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background:
        radial-gradient(circle at 20% 50%, rgba(34, 197, 94, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 50%, rgba(59, 130, 246, 0.1) 0%, transparent 50%);
    pointer-events: none;
}

.ai-header {
    text-align: center;
    margin-bottom: 60px;
    position: relative;
    z-index: 1;
}

.ai-badge {
    margin-bottom: 16px;
}

.badge-new {
    display: inline-block;
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    color: white;
    padding: 8px 20px;
    border-radius: 50px;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 2px;
    animation: pulse-glow 2s ease-in-out infinite;
}

@keyframes pulse-glow {
    0%, 100% { box-shadow: 0 0 20px var(--primary-glow); }
    50% { box-shadow: 0 0 40px var(--primary-glow), 0 0 60px rgba(59, 130, 246, 0.3); }
}

.coming-soon-badge {
    display: inline-block;
    background: var(--accent-gold);
    color: #000;
    padding: 2px 8px;
    border-radius: 4px;
    font-size: 0.65rem;
    font-weight: 700;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    margin-left: 8px;
    vertical-align: middle;
}

.ai-subhead {
    font-size: 1.25rem;
    color: var(--text-secondary);
    margin-top: 16px;
}

.ai-showcase-image {
    max-width: 800px;
    margin: 40px auto;
    border-radius: 20px;
    overflow: hidden;
    position: relative;
    z-index: 1;
}

.ai-showcase-image img {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 16px;
    box-shadow: 0 40px 80px rgba(34, 197, 94, 0.15), 0 20px 40px rgba(59, 130, 246, 0.1);
    border: 1px solid var(--border-glow);
    image-rendering: -webkit-optimize-contrast;
    image-rendering: crisp-edges;
}

.ai-tools-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 32px;
    max-width: 1000px;
    margin: 0 auto 48px;
    position: relative;
    z-index: 1;
}

.ai-tool-card {
    background: var(--bg-elevated);
    border: 1px solid var(--border-subtle);
    border-radius: 20px;
    padding: 40px 32px;
    position: relative;
    transition: all 0.3s;
}

.ai-tool-card:hover {
    transform: translateY(-8px);
    border-color: var(--primary);
}

.ai-tool-card.featured-ai {
    border-color: var(--secondary);
    background: linear-gradient(135deg, rgba(59, 130, 246, 0.1), rgba(34, 197, 94, 0.05));
}

.ai-tool-card.featured-ai:hover {
    border-color: var(--secondary);
    box-shadow: 0 20px 60px rgba(59, 130, 246, 0.2);
}

.ai-tool-badge {
    position: absolute;
    top: -12px;
    left: 32px;
    background: var(--primary);
    color: var(--bg-dark);
    padding: 6px 16px;
    border-radius: 50px;
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 1px;
}

.ai-tool-card.featured-ai .ai-tool-badge {
    background: var(--secondary);
}

.ai-tool-icon {
    width: 72px;
    height: 72px;
    background: linear-gradient(135deg, var(--primary), rgba(34, 197, 94, 0.5));
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 24px;
}

.ai-tool-icon i {
    width: 36px;
    height: 36px;
    color: white;
}

.ai-tool-card.featured-ai .ai-tool-icon {
    background: linear-gradient(135deg, var(--secondary), rgba(59, 130, 246, 0.5));
}

.ai-tool-card h3 {
    font-size: 1.5rem;
    margin-bottom: 12px;
}

.ai-tool-desc {
    color: var(--text-secondary);
    margin-bottom: 24px;
    line-height: 1.6;
}

.ai-how-it-works {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-bottom: 24px;
}

.ai-step {
    display: flex;
    align-items: center;
    gap: 12px;
}

.step-num {
    width: 28px;
    height: 28px;
    background: var(--primary);
    color: var(--bg-dark);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.8rem;
    font-weight: 700;
    flex-shrink: 0;
}

.ai-tool-card.featured-ai .step-num {
    background: var(--secondary);
}

.step-text {
    font-size: 0.9rem;
    color: var(--text-secondary);
}

.ai-example {
    background: var(--bg-dark);
    border-radius: 12px;
    padding: 16px;
    margin-bottom: 20px;
}

.ai-question {
    font-style: italic;
    color: var(--text-muted);
    font-size: 0.85rem;
    margin-bottom: 12px;
    padding-left: 12px;
    border-left: 2px solid var(--secondary);
}

.ai-answer {
    font-size: 0.85rem;
    color: var(--text-secondary);
    line-height: 1.6;
    padding-left: 12px;
    border-left: 2px solid var(--primary);
}

.ai-tool-bottom {
    font-size: 0.95rem;
    color: var(--text-muted);
    margin: 0;
}

.ai-tool-bottom strong {
    color: var(--primary);
}

.ai-tool-card.featured-ai .ai-tool-bottom strong {
    color: var(--secondary);
}

.ai-cta {
    text-align: center;
    position: relative;
    z-index: 1;
}

.ai-cta-text {
    font-size: 1.1rem;
    color: var(--text-secondary);
    margin-bottom: 24px;
}

.ai-cta-text strong {
    color: var(--primary);
}

/* Hero trust checks update */
.hero-trust {
    display: flex;
    gap: 24px;
    flex-wrap: wrap;
}

.trust-check {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.9rem;
    color: var(--text-muted);
}

.trust-check i {
    width: 18px;
    height: 18px;
    color: var(--primary);
}

/* PWA Badges */
.pwa-badges {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
    margin-top: 16px;
}

.pwa-badge {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 8px 16px;
    background: rgba(34, 197, 94, 0.1);
    border: 1px solid rgba(34, 197, 94, 0.3);
    border-radius: 24px;
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--primary);
}

.pwa-badge i {
    width: 16px;
    height: 16px;
}

@media (max-width: 768px) {
    .pwa-badges {
        justify-content: center;
    }

    .pwa-badge {
        font-size: 0.75rem;
        padding: 6px 12px;
    }
}

/* Floating stat icon */
.stat-icon {
    font-size: 1.25rem;
    margin-bottom: 4px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.stat-icon svg {
    width: 20px;
    height: 20px;
    color: var(--primary);
}

/* Panel intro text */
.panel-intro {
    color: var(--text-muted);
    font-size: 0.95rem;
    margin-bottom: 16px;
}

/* =========================================
   PLAYMAKER SECTION
   ========================================= */
.playmaker-section {
    padding: var(--section-padding);
    background: var(--bg-dark);
    position: relative;
    overflow: hidden;
}

.playmaker-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(ellipse at 50% 0%, rgba(34, 197, 94, 0.08) 0%, transparent 50%);
    pointer-events: none;
}

.playmaker-header {
    text-align: center;
    margin-bottom: 48px;
    position: relative;
    z-index: 1;
}

.playmaker-logo {
    height: 135px;
    width: auto;
    margin-bottom: 8px;
}

.playmaker-badge {
    margin-bottom: 16px;
}

.playmaker-subhead {
    font-size: 1.25rem;
    color: var(--text-secondary);
    margin-top: 16px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

/* Canvas Preview */
.playmaker-visual {
    max-width: 1000px;
    margin: 0 auto 48px;
    position: relative;
    z-index: 1;
}

.playmaker-canvas-preview {
    background: var(--bg-card);
    border-radius: 16px;
    overflow: hidden;
    border: 1px solid var(--border-subtle);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
}

.canvas-frame {
    position: relative;
}

.canvas-toolbar {
    display: flex;
    gap: 8px;
    padding: 12px 16px;
    background: var(--bg-elevated);
    border-bottom: 1px solid var(--border-subtle);
}

.toolbar-item {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 0.75rem;
    color: var(--text-muted);
    padding: 6px 12px;
    border-radius: 6px;
    background: transparent;
}

.toolbar-item i {
    width: 14px;
    height: 14px;
}

.toolbar-item.active {
    background: var(--primary);
    color: var(--bg-dark);
}

.canvas-field {
    position: relative;
    height: 220px;
    background: linear-gradient(180deg, #1a472a 0%, #0d2614 100%);
    overflow: hidden;
}

.field-lines {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    display: flex;
    justify-content: space-evenly;
}

.yard-line {
    width: 1px;
    height: 100%;
    background: rgba(255, 255, 255, 0.1);
}

.player-token {
    position: absolute;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.7rem;
    font-weight: 700;
    color: white;
    background: var(--bg-elevated);
    border: 2px solid var(--primary);
    z-index: 2;
}

.player-token.qb {
    left: 50%;
    bottom: 50px;
    transform: translateX(-50%);
    background: var(--primary);
    color: var(--bg-dark);
}

.player-token.receiver.r1 {
    left: 20%;
    bottom: 70px;
    border-color: #ef4444;
}

.player-token.receiver.r2 {
    left: 50%;
    bottom: 85px;
    transform: translateX(-50%);
    border-color: #3b82f6;
}

.player-token.receiver.r3 {
    right: 20%;
    bottom: 70px;
    border-color: #22c55e;
}

.player-token.hback {
    left: 35%;
    bottom: 40px;
}

.player-token.center {
    left: 50%;
    bottom: 25px;
    transform: translateX(-50%);
}

.route-lines {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

/* Playmaker Features Grid */
.playmaker-features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    max-width: 1000px;
    margin: 0 auto 48px;
    position: relative;
    z-index: 1;
}

.playmaker-feature {
    text-align: center;
    padding: 24px 16px;
}

.playmaker-feature-icon {
    width: 56px;
    height: 56px;
    background: linear-gradient(135deg, var(--primary), rgba(34, 197, 94, 0.5));
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 16px;
}

.playmaker-feature-icon i {
    width: 28px;
    height: 28px;
    color: white;
}

.playmaker-feature h3 {
    font-size: 1.1rem;
    margin-bottom: 8px;
}

.playmaker-feature p {
    font-size: 0.9rem;
    color: var(--text-secondary);
    line-height: 1.5;
}

.playmaker-cta {
    text-align: center;
    position: relative;
    z-index: 1;
}

/* Responsive for Playmaker */
@media (max-width: 768px) {
    .playmaker-features-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 480px) {
    .playmaker-features-grid {
        grid-template-columns: 1fr;
    }
}

/* =========================================
   LIVE SYNC SECTION
   ========================================= */
.livesync-section {
    padding: var(--section-padding);
    background: var(--bg-card);
    position: relative;
}

.livesync-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(ellipse at 50% 100%, rgba(59, 130, 246, 0.08) 0%, transparent 50%);
    pointer-events: none;
}

.livesync-header {
    text-align: center;
    margin-bottom: 48px;
    position: relative;
    z-index: 1;
}

.livesync-badge {
    margin-bottom: 16px;
}

.livesync-subhead {
    font-size: 1.25rem;
    color: var(--text-secondary);
    margin-top: 16px;
    max-width: 650px;
    margin-left: auto;
    margin-right: auto;
}

/* Live Sync Showcase - Device Mockups */
.livesync-showcase {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 40px;
    margin-bottom: 60px;
    position: relative;
    z-index: 1;
}

.showcase-device {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 16px;
}

.device-label {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 2px;
    color: var(--text-secondary);
    text-transform: uppercase;
}

.device-label i {
    width: 16px;
    height: 16px;
}

.showcase-coach .device-label {
    color: var(--primary);
}

.showcase-spectator .device-label {
    color: var(--secondary);
}

.device-frame {
    background: #0a0d14;
    border: 3px solid #2a2f3a;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.5), 0 0 0 1px rgba(255,255,255,0.05);
}

.device-frame.device-tablet {
    width: 380px;
    height: 280px;
}

.device-frame.device-phone {
    width: 200px;
    height: 400px;
    border-radius: 28px;
}

.device-frame img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.device-caption {
    font-size: 0.9rem;
    color: var(--text-muted);
    text-align: center;
    max-width: 250px;
}

/* Screenshot Placeholders */
.screenshot-placeholder {
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #1a1f2e 0%, #12161f 100%);
    border: 2px dashed rgba(255, 255, 255, 0.15);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 8px;
    color: var(--text-muted);
    padding: 20px;
    text-align: center;
}

.screenshot-placeholder i {
    width: 40px;
    height: 40px;
    opacity: 0.4;
}

.screenshot-placeholder span {
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 1px;
    color: var(--accent-gold);
}

.screenshot-placeholder small {
    font-size: 0.7rem;
    opacity: 0.7;
}

.screenshot-placeholder .screenshot-path {
    font-family: monospace;
    font-size: 0.6rem;
    background: rgba(0,0,0,0.3);
    padding: 4px 8px;
    border-radius: 4px;
    margin-top: 8px;
    opacity: 0.5;
}

.screenshot-placeholder.small {
    min-height: 120px;
}

.screenshot-placeholder.small i {
    width: 28px;
    height: 28px;
}

/* Connection Visual */
.showcase-connection {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
}

.connection-line {
    width: 3px;
    height: 40px;
    background: linear-gradient(180deg, transparent, var(--secondary), transparent);
    opacity: 0.5;
}

.connection-icon {
    width: 56px;
    height: 56px;
    background: linear-gradient(135deg, var(--secondary), #3b82f6);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.connection-icon i {
    width: 24px;
    height: 24px;
    color: white;
}

.pulse-ring {
    position: absolute;
    width: 100%;
    height: 100%;
    border: 2px solid var(--secondary);
    border-radius: 50%;
    animation: pulseRing 2s infinite;
}

@keyframes pulseRing {
    0% { transform: scale(1); opacity: 1; }
    100% { transform: scale(1.8); opacity: 0; }
}

/* Live Sync Feature Cards Grid */
.livesync-features-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    position: relative;
    z-index: 1;
}

.livesync-feature-card {
    background: var(--bg-elevated);
    border: 1px solid var(--border-subtle);
    border-radius: 16px;
    padding: 20px;
    text-align: center;
    transition: all 0.3s;
}

.livesync-feature-card:hover {
    border-color: var(--secondary);
    transform: translateY(-4px);
    box-shadow: 0 16px 40px rgba(59, 130, 246, 0.15);
}

.feature-screenshot-container {
    margin-bottom: 16px;
    border-radius: 12px;
    overflow: hidden;
    background: var(--bg-card);
}

.livesync-feature-card h3 {
    font-size: 1rem;
    margin-bottom: 8px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.livesync-feature-card p {
    font-size: 0.85rem;
    color: var(--text-secondary);
    line-height: 1.5;
    margin: 0;
}

/* Responsive for Live Sync */
@media (max-width: 1024px) {
    .livesync-showcase {
        flex-direction: column;
        gap: 24px;
    }

    .showcase-connection {
        flex-direction: row;
    }

    .connection-line {
        width: 40px;
        height: 3px;
        background: linear-gradient(90deg, transparent, var(--secondary), transparent);
    }

    .device-frame.device-tablet {
        width: 320px;
        height: 240px;
    }

    .livesync-features-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .device-frame.device-tablet {
        width: 280px;
        height: 200px;
    }

    .device-frame.device-phone {
        width: 160px;
        height: 320px;
    }

    .livesync-features-grid {
        grid-template-columns: 1fr;
    }
}

/* =========================================
   LANDING PAGE V2 — New layout overrides
   ========================================= */

/* Communication: 4-column single row */
.communication-grid--4col {
    grid-template-columns: repeat(4, 1fr);
    max-width: 1200px;
}

/* Communication: cards left, phone right */
.communication-layout {
    display: flex;
    align-items: center;
    gap: 48px;
    max-width: 1200px;
    margin: 0 auto;
}

.communication-grid--2col {
    flex: 1;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
}

.communication-layout .comm-phone {
    flex: 0 0 auto;
}

.communication-grid--stack {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.communication-grid--stack .comm-feature-card--compact {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    padding: 20px;
}

.communication-grid--stack .comm-feature-card--compact .comm-feature-icon {
    flex-shrink: 0;
    margin-bottom: 0;
}

.communication-grid--stack .comm-feature-card--compact h3 {
    margin-bottom: 4px;
}

.communication-grid--stack .comm-feature-card--compact p {
    margin-bottom: 0;
}

.comm-feature-card--compact {
    padding: 24px 20px;
}

.comm-feature-card--compact p {
    font-size: 0.9rem;
    margin-bottom: 0;
}

/* Communication phones: two iPhones side by side */
.communication-phones {
    display: flex;
    justify-content: center;
    align-items: flex-start;
    gap: 60px;
    margin-top: 48px;
}

.comm-phone {
    text-align: center;
    flex: 0 0 auto;
}

.comm-phone .device-label {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    font-family: var(--font-display);
    font-size: 0.8rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--text-secondary);
    margin-bottom: 16px;
}

.comm-phone .device-label i {
    width: 16px;
    height: 16px;
}

.comm-phone .device-caption {
    font-size: 0.85rem;
    color: var(--text-secondary);
    margin-top: 12px;
    max-width: 220px;
    margin-left: auto;
    margin-right: auto;
}

.comm-phone .iphone-video-container {
    width: 408px;
    max-width: 408px;
}

/* iPhone/iPad screen placeholders (reusable) */
.iphone-screen-placeholder,
.ipad-screen-placeholder {
    position: absolute;
    inset: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background: linear-gradient(180deg, #0a0d14 0%, #111827 100%);
    border-radius: 20px;
    z-index: 0;
}

.ipad-screen-placeholder {
    border-radius: 16px;
}

/* Comms panel placeholder */
.panel-comms-placeholder {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-height: 300px;
    background: linear-gradient(180deg, #0a0d14 0%, #111827 100%);
    border-radius: 12px;
}

/* AI Tools: iPad centered above, two feature cards below */
.ai-ipad-centered {
    max-width: 900px;
    margin: 0 auto 32px;
}

.ai-ipad-centered .ipad-video-container {
    max-width: 900px;
    margin: 0 auto;
}

.ai-features-2col {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
    max-width: 1100px;
    margin: 0 auto 20px;
}

.ai-features-2col .ai-tool-card {
    padding: 28px;
}

/* Override hidden-by-default for iPads outside the hero section */
.ai-ipad-centered .ipad-video-container,
.playmaker-visual .ipad-video-container,
.gameday-visual .ipad-video-container,
.livesync-showcase .ipad-video-container,
.livesync-showcase--v2 .ipad-video-container,
.gc-preview .ipad-video-container,
.chalkboard-visual .ipad-video-container {
    opacity: 1;
}

.ai-split-features {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.ai-split-features .ai-tool-card {
    padding: 28px;
}

/* Playmaker: big iPad */
.playmaker-visual .ipad-video-container.playmaker-ipad {
    max-width: 1400px;
    margin: 0 auto;
}

/* Live Sync: v2 layout with iPad + signal + iPhone */
.livesync-showcase--v2 {
    align-items: center;
}

.showcase-device--ipad {
    flex: 2;
}

.showcase-device--ipad .ipad-video-container {
    max-width: 840px;
}

.showcase-device--phone-lg {
    flex: 0.8;
}

.iphone-video-container--lg {
    max-width: 280px;
}

/* Live Sync: 5-column feature grid */
.livesync-features-grid--5col {
    grid-template-columns: repeat(5, 1fr);
    gap: 16px;
    margin-top: 48px;
}

.livesync-feature-card--compact {
    padding: 20px 16px;
}

.livesync-feature-card--compact .feature-screenshot-container {
    display: none;
}

.livesync-feature-icon-inline {
    width: 32px;
    height: 32px;
    color: var(--secondary);
    margin-bottom: 12px;
}

.livesync-feature-card--compact h3 {
    font-size: 0.9rem;
}

.livesync-feature-card--compact p {
    font-size: 0.8rem;
}

/* TD Confetti trigger button */
.livesync-confetti-trigger {
    cursor: pointer;
    border: 1px solid rgba(34, 197, 94, 0.4);
    transition: transform 0.2s, border-color 0.2s, box-shadow 0.2s;
}

.livesync-confetti-trigger:hover {
    transform: translateY(-3px);
    border-color: var(--primary);
    box-shadow: 0 0 20px rgba(34, 197, 94, 0.3);
}

.livesync-confetti-trigger .livesync-feature-icon-inline {
    color: var(--primary);
}

.livesync-confetti-trigger.confetti-fired {
    cursor: default;
    pointer-events: none;
    border-color: var(--primary);
    background: rgba(34, 197, 94, 0.15);
}

.livesync-confetti-trigger.confetti-fired h3 {
    color: var(--primary);
    font-size: 1.4rem;
}

.livesync-confetti-trigger.confetti-fired p {
    font-size: 1.1rem;
}

/* ---- Responsive overrides for new layouts ---- */
@media (max-width: 1200px) {
    .communication-grid--4col {
        grid-template-columns: repeat(2, 1fr);
    }

    .livesync-features-grid--5col {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 1024px) {
    .ai-features-2col {
        grid-template-columns: 1fr;
    }

    .livesync-showcase--v2 {
        flex-direction: column;
        gap: 24px;
    }

    .showcase-device--ipad .ipad-video-container {
        max-width: 360px;
        margin: 0 auto;
    }

    .iphone-video-container--lg {
        max-width: 240px;
        margin: 0 auto;
    }
}

@media (max-width: 768px) {
    .communication-grid--4col {
        grid-template-columns: 1fr;
    }

    .communication-phones {
        flex-direction: column;
        align-items: center;
        gap: 40px;
    }

    .communication-layout {
        flex-direction: column;
        gap: 32px;
    }

    .comm-phone .iphone-video-container {
        width: 100%;
        max-width: 320px;
        margin: 0 auto;
    }

    .communication-grid--2col {
        grid-template-columns: 1fr;
    }

    .livesync-features-grid--5col {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 480px) {
    .livesync-features-grid--5col {
        grid-template-columns: 1fr;
    }
}

/* =========================================
   FOOTER
   ========================================= */
.footer {
    background: var(--bg-dark);
    border-top: 1px solid var(--border-subtle);
    padding: 60px 24px 30px;
    /* Stack above fixed hero background image */
    position: relative;
    z-index: 1;
    /* Extend dark bg below footer to cover fixed hero image */
    box-shadow: 0 50vh 0 50vh var(--bg-dark);
}

.footer-content {
    display: flex;
    justify-content: space-between;
    gap: 60px;
    margin-bottom: 40px;
}

.footer-brand {
    max-width: 300px;
}

.footer-logo {
    height: 40px;
    width: auto;
    margin-bottom: 16px;
}

.footer-brand p {
    color: var(--text-muted);
    font-size: 0.9rem;
    line-height: 1.6;
}

.footer-links {
    display: flex;
    gap: 60px;
}

.footer-column h4 {
    font-size: 0.9rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 16px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.footer-column a {
    display: block;
    color: var(--text-muted);
    text-decoration: none;
    font-size: 0.9rem;
    padding: 6px 0;
    transition: color 0.2s;
}

.footer-column a:hover {
    color: var(--primary);
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    padding-top: 30px;
    border-top: 1px solid var(--border-subtle);
    font-size: 0.85rem;
    color: var(--text-muted);
}

.footer-disclaimer {
    margin-top: 24px;
    padding-top: 16px;
    border-top: 1px solid var(--border-subtle);
    font-size: 0.7rem;
    color: var(--text-muted);
    opacity: 0.7;
    line-height: 1.5;
    text-align: center;
}

/* =========================================
   SMART ROSTERING SECTION
   ========================================= */
.rostering-section {
    padding: var(--section-padding);
    background: linear-gradient(180deg, var(--bg-dark) 0%, #0d1018 50%, var(--bg-card) 100%);
    position: relative;
}

.rostering-header {
    text-align: center;
    margin-bottom: 60px;
}

.rostering-header--compact {
    margin-bottom: 36px;
}

.rostering-header-top {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    margin-bottom: 12px;
}

.rostering-header-top .section-eyebrow {
    margin-bottom: 0;
}

.rostering-header--compact h2 {
    margin-bottom: 8px;
}

.rostering-badge {
    margin-bottom: 16px;
}

.badge-exclusive {
    display: inline-block;
    background: linear-gradient(135deg, #f59e0b, #d97706);
    color: #0a0d14;
    padding: 8px 20px;
    border-radius: 50px;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 2px;
    animation: pulse-gold 2s ease-in-out infinite;
}

@keyframes pulse-gold {
    0%, 100% { box-shadow: 0 0 20px rgba(245, 158, 11, 0.3); }
    50% { box-shadow: 0 0 40px rgba(245, 158, 11, 0.5), 0 0 60px rgba(217, 119, 6, 0.3); }
}

/* Patent Pending Badge — inline, premium "Intel Inside" energy */
.patent-badge {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    font-family: 'Rajdhani', sans-serif;
    font-size: 9px;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: #f59e0b;
    background: rgba(245, 158, 11, 0.1);
    border: 1px solid rgba(245, 158, 11, 0.25);
    border-radius: 4px;
    padding: 2px 6px;
    vertical-align: middle;
    white-space: nowrap;
    margin-left: 8px;
    position: relative;
    top: -1px;
}
.patent-badge::before {
    content: '\1F6E1';
    font-size: 8px;
}

.rostering-subhead {
    font-size: 1.25rem;
    color: var(--text-secondary);
    margin-top: 16px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.rostering-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    max-width: 1100px;
    margin: 0 auto 20px;
}

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

.rostering-grid--full {
    grid-template-columns: 1fr;
}

.roster-feature-card {
    background: var(--bg-elevated);
    border: 1px solid var(--border-subtle);
    border-radius: 16px;
    padding: 24px;
    transition: all 0.3s;
}

.roster-feature-card:hover {
    transform: translateY(-4px);
    border-color: var(--accent-gold);
    box-shadow: 0 12px 24px rgba(245, 158, 11, 0.1);
}

.roster-feature-card.featured-roster {
    background: linear-gradient(135deg, rgba(245, 158, 11, 0.1), rgba(34, 197, 94, 0.05));
    border-color: var(--accent-gold);
    display: flex;
    gap: 24px;
    align-items: center;
}

.roster-feature-card.featured-roster .roster-feature-text {
    flex: 0 0 320px;
}

.roster-feature-card.featured-roster .lineup-crossfade {
    flex: 1;
    margin-top: 0;
    max-height: none;
}

.roster-feature-card.featured-roster h3 {
    font-size: 1.6rem;
}

.roster-feature-card.featured-roster p {
    font-size: 1.05rem;
    line-height: 1.6;
}

.roster-feature-icon {
    width: 44px;
    height: 44px;
    background: linear-gradient(135deg, var(--accent-gold), #d97706);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 14px;
}

.roster-feature-icon i {
    width: 22px;
    height: 22px;
    color: #0a0d14;
}

.roster-feature-card h3 {
    font-size: 1.6rem;
    margin-bottom: 8px;
    color: var(--text-primary);
}

.roster-feature-card p {
    color: var(--text-secondary);
    font-size: 1.05rem;
    line-height: 1.6;
    margin-bottom: 12px;
}

/* Skill Pills Preview */
.skill-pills-preview {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.skill-pill {
    padding: 6px 14px;
    border-radius: 50px;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.5px;
}

.skill-pill.speed {
    background: rgba(34, 197, 94, 0.2);
    color: #4ade80;
    border: 1px solid rgba(34, 197, 94, 0.4);
}

.skill-pill.hands {
    background: rgba(59, 130, 246, 0.2);
    color: #60a5fa;
    border: 1px solid rgba(59, 130, 246, 0.4);
}

.skill-pill.route {
    background: rgba(168, 85, 247, 0.2);
    color: #c084fc;
    border: 1px solid rgba(168, 85, 247, 0.4);
}

.skill-pill.clutch {
    background: rgba(245, 158, 11, 0.2);
    color: #fbbf24;
    border: 1px solid rgba(245, 158, 11, 0.4);
}

/* Check-in Preview */
.checkin-preview {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.checkin-player {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px 14px;
    background: var(--bg-dark);
    border-radius: 8px;
    font-size: 0.9rem;
    font-weight: 600;
}

.checkin-player.checked {
    color: #4ade80;
}

.checkin-player.checked i {
    width: 16px;
    height: 16px;
    color: #4ade80;
}

.checkin-player.absent {
    color: var(--text-muted);
    opacity: 0.5;
    text-decoration: line-through;
}

.checkin-player.absent i {
    width: 16px;
    height: 16px;
    color: var(--accent-red);
}

/* Lineup Preview */
.roster-feature-img {
    width: 100%;
    height: auto;
    border-radius: 10px;
    margin-top: 8px;
    max-height: 200px;
    object-fit: cover;
    object-position: top;
}

.lineup-preview {
    background: var(--bg-dark);
    border-radius: 12px;
    padding: 16px;
}

/* Crossfade between offense/defense lineup screenshots */
.lineup-crossfade {
    position: relative;
    border-radius: 10px;
    overflow: hidden;
    margin-top: 8px;
    max-height: 200px;
}

.lineup-crossfade-img {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 12px;
}

.lineup-crossfade-b {
    position: absolute;
    top: 0;
    left: 0;
    animation: lineupCrossfade 8s ease-in-out infinite;
}

@keyframes lineupCrossfade {
    0%, 42%   { opacity: 0; }
    50%, 92%  { opacity: 1; }
    100%      { opacity: 0; }
}

.quarter-tabs {
    display: flex;
    gap: 8px;
    margin-bottom: 16px;
}

.q-tab {
    padding: 6px 16px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 6px;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.5px;
    color: var(--text-muted);
}

.q-tab.active {
    background: var(--primary);
    color: var(--bg-dark);
}

.lineup-grid-mini {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 8px;
}

.pos-slot {
    background: var(--bg-card);
    border: 1px solid var(--border-subtle);
    border-radius: 8px;
    padding: 10px 6px;
    text-align: center;
    font-size: 0.7rem;
    font-weight: 700;
    color: var(--text-secondary);
}

.pos-slot span {
    display: block;
    color: var(--primary);
    font-size: 0.8rem;
    margin-top: 4px;
}

.pos-slot.qb {
    background: rgba(245, 158, 11, 0.1);
    border-color: var(--accent-gold);
    color: var(--accent-gold);
}

/* Playtime Preview */
.playtime-preview {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.playtime-bar {
    display: flex;
    align-items: center;
    gap: 12px;
}

.player-label {
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--text-secondary);
    width: 70px;
}

.time-bar {
    flex: 1;
    height: 24px;
    background: var(--bg-dark);
    border-radius: 6px;
    display: flex;
    align-items: center;
    justify-content: flex-end;
    padding: 0 10px;
    font-size: 0.75rem;
    font-weight: 700;
    position: relative;
    overflow: hidden;
}

.time-bar::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    border-radius: 6px;
}

.time-bar.full::before {
    width: 100%;
    background: linear-gradient(90deg, var(--primary), rgba(34, 197, 94, 0.5));
}

.time-bar.full span {
    color: #0a0d14;
    position: relative;
    z-index: 1;
}

.time-bar.warning::before {
    width: 50%;
    background: linear-gradient(90deg, var(--accent-gold), rgba(245, 158, 11, 0.5));
}

.time-bar.warning span {
    color: var(--accent-gold);
    position: relative;
    z-index: 1;
}

/* AI Roster Teaser */
.ai-roster-teaser {
    display: flex;
    align-items: center;
    gap: 18px;
    background: linear-gradient(135deg, rgba(168, 85, 247, 0.15), rgba(59, 130, 246, 0.1));
    border: 1px solid rgba(168, 85, 247, 0.3);
    border-radius: 12px;
    padding: 20px 24px;
    max-width: 800px;
    margin: 0 auto;
}

.teaser-icon {
    width: 64px;
    height: 64px;
    background: linear-gradient(135deg, #a855f7, #6366f1);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.teaser-icon i {
    width: 32px;
    height: 32px;
    color: white;
}

.teaser-content {
    flex: 1;
}

.teaser-badge {
    display: inline-block;
    background: rgba(168, 85, 247, 0.3);
    color: #c084fc;
    padding: 4px 12px;
    border-radius: 50px;
    font-size: 0.65rem;
    font-weight: 700;
    letter-spacing: 1px;
    margin-bottom: 8px;
}

.teaser-content h4 {
    font-size: 1.25rem;
    margin-bottom: 8px;
    color: var(--text-primary);
}

.teaser-content p {
    font-size: 0.9rem;
    color: var(--text-secondary);
    line-height: 1.5;
    margin: 0;
}

/* Enhanced Roster Preview (in showcase panel) */
.roster-preview.enhanced .roster-player-card {
    display: grid;
    grid-template-columns: auto 1fr auto auto;
    align-items: center;
    gap: 12px;
}

.roster-preview.enhanced .roster-player-card.warning {
    background: rgba(245, 158, 11, 0.1);
    border: 1px solid rgba(245, 158, 11, 0.3);
}

.roster-preview.enhanced .roster-player-card.absent {
    opacity: 0.4;
    background: rgba(239, 68, 68, 0.05);
}

.player-skills-mini {
    display: flex;
    gap: 4px;
}

.skill-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
}

.skill-dot.speed { background: #4ade80; }
.skill-dot.hands { background: #60a5fa; }
.skill-dot.qb { background: #ef4444; }
.skill-dot.leader { background: #fbbf24; }
.skill-dot.route { background: #c084fc; }

.player-playtime {
    font-size: 0.75rem;
    font-weight: 700;
    padding: 4px 8px;
    background: rgba(34, 197, 94, 0.2);
    color: #4ade80;
    border-radius: 4px;
}

.player-playtime.low {
    background: rgba(245, 158, 11, 0.2);
    color: #fbbf24;
}

.player-status {
    font-size: 0.65rem;
    font-weight: 700;
    letter-spacing: 0.5px;
    color: var(--accent-red);
}

/* =========================================
   RESPONSIVE DESIGN
   ========================================= */
@media (max-width: 1024px) {
    .hero {
        grid-template-columns: 1fr;
        text-align: center;
        padding: 100px 6% 60px;
    }

    .hero-content {
        order: 1;
    }

    .hero-visual {
        order: 2;
    }

    .hero-subheadline {
        margin: 0 auto 32px;
    }

    .hero-cta-group {
        justify-content: center;
    }

    .hero-trust {
        justify-content: center;
    }

    .floating-stat {
        display: none;
    }

    .problem-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .features-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .rostering-grid,
    .rostering-grid--3col {
        grid-template-columns: 1fr;
    }

    .roster-feature-card.featured-roster {
        grid-column: span 1;
        flex-direction: column;
    }

    .roster-feature-card.featured-roster .roster-feature-text {
        flex: none;
    }

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

    .ai-roster-teaser {
        flex-direction: column;
        text-align: center;
    }

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

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

    .ai-tools-grid {
        grid-template-columns: 1fr;
    }

    .pricing-grid {
        grid-template-columns: 1fr;
        max-width: 480px;
        margin: 0 auto 48px;
    }

    .pricing-card {
        padding: 32px 24px;
    }

    .pricing-card.featured {
        transform: none;
    }

    .pricing-card.featured:hover {
        transform: translateY(-6px);
    }

    .pricing-trial-banner {
        flex-direction: column;
        text-align: center;
        gap: 12px;
        padding: 16px 20px;
    }

    .tier-name {
        font-size: 1.3rem;
    }

    .price-amount {
        font-size: 2.8rem;
    }

    .showcase-panel.active {
        grid-template-columns: 1fr;
    }

    .final-cta-section .container {
        flex-direction: column;
        text-align: center;
    }

    .cta-mockup .ipad-video-container {
        max-width: 500px;
        margin: 0 auto;
    }

    .cta-content {
        max-width: 100%;
    }

    .cta-trust {
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .final-cta-section {
        padding: 60px 16px;
    }

    .cta-content p {
        font-size: 1rem;
    }

    .cta-mockup .ipad-video-container {
        max-width: 100%;
    }

    .cta-trust {
        gap: 12px;
    }
}

@media (max-width: 768px) {
    :root {
        --section-padding: 60px 0;
    }

    .nav-links,
    .nav-products {
        display: none;
    }

    .hero {
        padding: 80px 16px 40px;
    }

    /* Mobile: Darker gradient overlay - top-to-bottom for text readability */
    .hero-bg-image::after {
        background: linear-gradient(
            to bottom,
            rgba(10, 13, 20, 0.92) 0%,
            rgba(10, 13, 20, 0.85) 25%,
            rgba(10, 13, 20, 0.70) 50%,
            rgba(10, 13, 20, 0.50) 75%,
            rgba(10, 13, 20, 0.40) 100%
        );
    }

    .problem-grid,
    .features-grid {
        grid-template-columns: 1fr;
    }

    .showcase-tabs {
        flex-wrap: nowrap;
    }

    .showcase-tab {
        flex: 1;
        padding: 12px 6px;
        font-size: 0.75rem;
        gap: 4px;
    }

    .showcase-panel {
        padding: 24px;
    }

    .footer-content {
        flex-direction: column;
        gap: 40px;
    }

    .footer-links {
        flex-wrap: wrap;
        gap: 30px;
    }

    .footer-bottom {
        flex-direction: column;
        gap: 8px;
        text-align: center;
    }

    .guarantee-box {
        flex-direction: column;
        text-align: center;
    }
}

@media (max-width: 480px) {
    .hero-headline { font-size: 4rem; }
    h2 { font-size: 1.75rem; }

    .hero-cta-group {
        flex-direction: column;
    }

    .btn-large {
        width: 100%;
        justify-content: center;
    }

    .plays-grid-preview {
        grid-template-columns: 1fr;
    }
}

/* =========================================
   MOBILE MENU
   ========================================= */

/* Hamburger Button - hidden on desktop */
.nav-hamburger {
    display: none;
    flex-direction: column;
    justify-content: center;
    gap: 5px;
    width: 32px;
    height: 32px;
    padding: 4px;
    background: none;
    border: none;
    cursor: pointer;
    z-index: 1001;
}

.nav-hamburger span {
    display: block;
    width: 100%;
    height: 2px;
    background: var(--text-primary);
    border-radius: 2px;
    transition: all 0.3s ease;
}

.nav-hamburger.active span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
}

.nav-hamburger.active span:nth-child(2) {
    opacity: 0;
}

.nav-hamburger.active span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
}

/* Mobile Menu Overlay */
.mobile-menu {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(10, 13, 20, 0.98);
    backdrop-filter: blur(20px);
    z-index: 999;
    flex-direction: column;
    padding: 20px;
    opacity: 0;
    transform: translateY(-20px);
    transition: opacity 0.3s ease, transform 0.3s ease;
}

.mobile-menu.active {
    display: flex;
    opacity: 1;
    transform: translateY(0);
}

.mobile-menu-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-bottom: 24px;
    border-bottom: 1px solid var(--border-subtle);
    margin-bottom: 24px;
}

.mobile-menu-logo {
    height: 36px;
    width: auto;
}

.mobile-menu-close {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid var(--border-subtle);
    border-radius: 10px;
    color: var(--text-primary);
    font-size: 24px;
    cursor: pointer;
    transition: all 0.2s ease;
}

.mobile-menu-close:hover {
    background: rgba(255, 255, 255, 0.1);
}

/* Products Section */
.mobile-menu-products {
    display: flex;
    flex-direction: column;
    gap: 8px;
    margin-bottom: 32px;
}

.mobile-menu-label {
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: var(--text-muted);
    margin-bottom: 8px;
}

.mobile-product {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 14px 16px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid var(--border-subtle);
    border-radius: 12px;
    color: var(--text-primary);
    text-decoration: none;
    font-size: 1.1rem;
    font-weight: 600;
    transition: all 0.2s ease;
}

.mobile-product:hover {
    background: rgba(255, 255, 255, 0.06);
    border-color: rgba(255, 255, 255, 0.15);
}

.mobile-product-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: var(--text-muted);
}

.mobile-product[data-product="coach"] .mobile-product-dot { background: #22c55e; }
.mobile-product[data-product="referee"] .mobile-product-dot { background: #f59e0b; }
.mobile-product[data-product="platform"] .mobile-product-dot { background: #a855f7; }
.mobile-product[data-product="parent"] .mobile-product-dot { background: #3b82f6; }

/* Page Links */
.mobile-menu-links {
    display: flex;
    flex-direction: column;
    gap: 4px;
    margin-bottom: 32px;
}

.mobile-menu-links a {
    padding: 12px 16px;
    color: var(--text-secondary);
    text-decoration: none;
    font-size: 1rem;
    font-weight: 500;
    border-radius: 8px;
    transition: all 0.2s ease;
}

.mobile-menu-links a:hover {
    background: rgba(255, 255, 255, 0.05);
    color: var(--text-primary);
}

/* CTA Button */
.mobile-menu-cta {
    display: block;
    width: 100%;
    padding: 16px;
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    color: var(--bg-dark);
    text-align: center;
    text-decoration: none;
    font-size: 1rem;
    font-weight: 700;
    letter-spacing: 0.5px;
    border-radius: 12px;
    margin-top: auto;
    transition: all 0.2s ease;
}

.mobile-menu-cta:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(34, 197, 94, 0.3);
}

/* Show hamburger on mobile */
@media (max-width: 768px) {
    .nav-hamburger {
        display: flex;
    }

    .btn-nav-cta {
        display: none;
    }
}

/* =========================================
   ECOSYSTEM PREVIEW (Hero) - Lightswind Inspired
   ========================================= */
.ecosystem-preview {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    padding: 48px 40px;
    background: linear-gradient(135deg, rgba(18, 22, 31, 0.9) 0%, rgba(30, 36, 51, 0.8) 100%);
    border-radius: 24px;
    border: 1px solid var(--border-subtle);
    position: relative;
    overflow: hidden;
}

/* Animated gradient border effect */
.ecosystem-preview::before {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: 24px;
    padding: 1px;
    background: linear-gradient(135deg, #22c55e, #3b82f6, #a855f7, #f59e0b, #22c55e);
    background-size: 400% 400%;
    -webkit-mask:
        linear-gradient(#fff 0 0) content-box,
        linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    animation: gradientFlow 8s ease infinite;
    opacity: 0.5;
}

@keyframes gradientFlow {
    0%, 100% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
}

/* Floating orbs behind ecosystem */
.ecosystem-preview::after {
    content: '';
    position: absolute;
    width: 200px;
    height: 200px;
    background: radial-gradient(circle, rgba(34, 197, 94, 0.15) 0%, transparent 70%);
    border-radius: 50%;
    top: -50px;
    left: -50px;
    animation: orbitFloat 6s ease-in-out infinite;
    pointer-events: none;
}

@keyframes orbitFloat {
    0%, 100% { transform: translate(0, 0) scale(1); opacity: 0.3; }
    50% { transform: translate(30px, 20px) scale(1.2); opacity: 0.6; }
}

.eco-app {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
    padding: 24px;
    background: rgba(30, 36, 51, 0.8);
    border-radius: 20px;
    border: 1px solid var(--border-subtle);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
    z-index: 1;
}

.eco-app:hover {
    transform: translateY(-8px) scale(1.05);
    border-color: rgba(255, 255, 255, 0.2);
}

.eco-app img {
    width: 72px;
    height: 72px;
    border-radius: 18px;
    transition: all 0.4s ease;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.3);
}

.eco-app:hover img {
    transform: scale(1.1);
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.4);
}

.eco-app span {
    font-size: 0.9rem;
    font-weight: 700;
    color: var(--text-secondary);
    letter-spacing: 0.5px;
    text-transform: uppercase;
    transition: color 0.3s;
}

.eco-app.eco-coach:hover {
    border-color: #22c55e;
    box-shadow: 0 0 40px rgba(34, 197, 94, 0.2), inset 0 0 20px rgba(34, 197, 94, 0.05);
}
.eco-app.eco-coach:hover span { color: #22c55e; }

.eco-app.eco-referee:hover {
    border-color: #f59e0b;
    box-shadow: 0 0 40px rgba(245, 158, 11, 0.2), inset 0 0 20px rgba(245, 158, 11, 0.05);
}
.eco-app.eco-referee:hover span { color: #f59e0b; }

.eco-app.eco-platform:hover {
    border-color: #a855f7;
    box-shadow: 0 0 40px rgba(168, 85, 247, 0.2), inset 0 0 20px rgba(168, 85, 247, 0.05);
}
.eco-app.eco-platform:hover span { color: #a855f7; }

.eco-app.eco-parent:hover {
    border-color: #3b82f6;
    box-shadow: 0 0 40px rgba(59, 130, 246, 0.2), inset 0 0 20px rgba(59, 130, 246, 0.05);
}
.eco-app.eco-parent:hover span { color: #3b82f6; }

.eco-connector {
    width: 48px;
    height: 3px;
    background: linear-gradient(90deg, var(--primary), var(--secondary));
    opacity: 0.6;
    border-radius: 2px;
    position: relative;
    z-index: 1;
}

/* Animated data pulse along connectors */
.eco-connector::after {
    content: '';
    position: absolute;
    width: 8px;
    height: 8px;
    background: white;
    border-radius: 50%;
    top: -2.5px;
    left: 0;
    animation: dataPulse 2s ease-in-out infinite;
    box-shadow: 0 0 10px rgba(255, 255, 255, 0.8);
}

@keyframes dataPulse {
    0%, 100% { left: 0; opacity: 0; }
    10% { opacity: 1; }
    90% { opacity: 1; }
    100% { left: calc(100% - 8px); opacity: 0; }
}

/* =========================================
   ECOSYSTEM SECTION (How It Works)
   ========================================= */
.ecosystem-section {
    padding: var(--section-padding);
    background: linear-gradient(180deg, var(--bg-dark) 0%, var(--bg-card) 100%);
}

.ecosystem-header {
    text-align: center;
    margin-bottom: 60px;
}

.ecosystem-subhead {
    font-size: 1.25rem;
    color: var(--text-secondary);
    margin-top: 16px;
}

.ecosystem-flow {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 16px;
    max-width: 600px;
    margin: 0 auto 60px;
}

.flow-step {
    display: flex;
    align-items: center;
    gap: 20px;
    width: 100%;
    padding: 24px 28px;
    background: var(--bg-elevated);
    border-radius: 16px;
    border: 1px solid var(--border-subtle);
    transition: all 0.3s;
}

.flow-step:hover {
    transform: translateX(8px);
    border-color: rgba(255, 255, 255, 0.15);
}

.flow-icon {
    width: 56px;
    height: 56px;
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.flow-icon i {
    width: 28px;
    height: 28px;
    color: white;
}

.flow-icon.coach-color {
    background: linear-gradient(135deg, #22c55e, #16a34a);
}

.flow-icon.referee-color {
    background: linear-gradient(135deg, #f59e0b, #d97706);
}

.flow-icon.platform-color {
    background: linear-gradient(135deg, #a855f7, #7c3aed);
}

.flow-icon.parent-color {
    background: linear-gradient(135deg, #3b82f6, #2563eb);
}

.flow-content h3 {
    font-size: 1.1rem;
    margin-bottom: 4px;
    text-transform: none;
    letter-spacing: 0;
}

.flow-content p {
    font-size: 0.9rem;
    color: var(--text-secondary);
    margin: 0;
}

.flow-arrow {
    color: var(--text-muted);
    opacity: 0.5;
}

.flow-arrow i {
    width: 20px;
    height: 20px;
}

.ecosystem-comparison {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
    max-width: 900px;
    margin: 0 auto;
}

.comparison-block {
    padding: 28px;
    background: var(--bg-elevated);
    border-radius: 16px;
    border: 1px solid var(--border-subtle);
}

.comparison-block h4 {
    font-size: 1rem;
    margin-bottom: 12px;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.comparison-block p {
    font-size: 0.95rem;
    color: var(--text-secondary);
    line-height: 1.6;
    margin: 0;
}

.comparison-block.highlight {
    background: linear-gradient(135deg, rgba(34, 197, 94, 0.1), rgba(59, 130, 246, 0.05));
    border-color: var(--primary);
}

.comparison-block.highlight h4 {
    color: var(--primary);
}

.comparison-block.highlight p {
    color: var(--text-primary);
}

/* =========================================
   PRODUCTS SECTION
   ========================================= */
.products-section {
    padding: var(--section-padding);
    background: var(--bg-card);
}

.products-header {
    text-align: center;
    margin-bottom: 60px;
}

.products-subhead {
    font-size: 1.25rem;
    color: var(--text-secondary);
    margin-top: 16px;
}

.product-showcase {
    display: grid;
    grid-template-columns: 200px 1fr;
    gap: 48px;
    align-items: center;
    padding: 48px;
    margin-bottom: 32px;
    background: var(--bg-elevated);
    border-radius: 24px;
    border: 1px solid var(--border-subtle);
    position: relative;
    overflow: hidden;
}

.product-showcase::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    opacity: 0.03;
    pointer-events: none;
}

.product-showcase.coach-theme::before {
    background: radial-gradient(ellipse at top left, #22c55e 0%, transparent 60%);
}

.product-showcase.referee-theme::before {
    background: radial-gradient(ellipse at top right, #f59e0b 0%, transparent 60%);
}

.product-showcase.platform-theme::before {
    background: radial-gradient(ellipse at top left, #a855f7 0%, transparent 60%);
}

.product-visual {
    display: flex;
    justify-content: center;
}

.product-icon {
    width: 160px;
    height: 160px;
    border-radius: 32px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.4);
}

.product-content {
    position: relative;
    z-index: 1;
}

.product-badge {
    display: inline-block;
    padding: 6px 16px;
    border-radius: 50px;
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 1.5px;
    margin-bottom: 16px;
}

.coach-badge {
    background: rgba(34, 197, 94, 0.15);
    color: #22c55e;
    border: 1px solid rgba(34, 197, 94, 0.3);
}

.referee-badge {
    background: rgba(245, 158, 11, 0.15);
    color: #f59e0b;
    border: 1px solid rgba(245, 158, 11, 0.3);
}

.platform-badge {
    background: rgba(168, 85, 247, 0.15);
    color: #a855f7;
    border: 1px solid rgba(168, 85, 247, 0.3);
}

.product-content h3 {
    font-size: 2rem;
    margin-bottom: 8px;
}

.product-tagline {
    font-size: 1.1rem;
    color: var(--text-secondary);
    margin-bottom: 16px;
    font-weight: 600;
}

.product-desc {
    font-size: 1rem;
    color: var(--text-secondary);
    line-height: 1.7;
    margin-bottom: 24px;
}

.product-features {
    list-style: none;
    margin-bottom: 28px;
}

.product-features li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    padding: 8px 0;
    font-size: 0.95rem;
    color: var(--text-secondary);
}

.product-features li i {
    width: 18px;
    height: 18px;
    flex-shrink: 0;
    margin-top: 2px;
}

.coach-theme .product-features li i { color: #22c55e; }
.referee-theme .product-features li i { color: #f59e0b; }
.platform-theme .product-features li i { color: #a855f7; }

.product-features li strong {
    color: var(--text-primary);
}

.btn-product {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 14px 28px;
    border-radius: 10px;
    font-weight: 700;
    font-size: 1rem;
    text-decoration: none;
    transition: all 0.2s;
    border: 2px solid transparent;
}

.btn-coach {
    background: #22c55e;
    color: #0a0d14;
}

.btn-coach:hover {
    background: #16a34a;
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(34, 197, 94, 0.3);
}

.btn-referee {
    background: #f59e0b;
    color: #0a0d14;
}

.btn-referee:hover {
    background: #d97706;
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(245, 158, 11, 0.3);
}

.btn-platform {
    background: #a855f7;
    color: #0a0d14;
}

.btn-platform:hover {
    background: #7c3aed;
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(168, 85, 247, 0.3);
}

/* =========================================
   BETA SECTION
   ========================================= */
.beta-section {
    padding: 80px 24px;
    background: linear-gradient(135deg, rgba(34, 197, 94, 0.05), rgba(59, 130, 246, 0.05));
    border-top: 1px solid var(--border-subtle);
    border-bottom: 1px solid var(--border-subtle);
}

.beta-content {
    text-align: center;
    max-width: 600px;
    margin: 0 auto;
}

.beta-badge {
    display: inline-block;
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    color: white;
    padding: 8px 20px;
    border-radius: 50px;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 2px;
    margin-bottom: 20px;
}

.beta-content h2 {
    margin-bottom: 16px;
}

.beta-content p {
    font-size: 1.1rem;
    color: var(--text-secondary);
    line-height: 1.7;
    margin-bottom: 28px;
}

/* =========================================
   PRODUCTS SECTION RESPONSIVE
   ========================================= */
@media (max-width: 1024px) {
    .ecosystem-preview {
        flex-wrap: wrap;
        gap: 12px;
        padding: 24px;
    }

    .eco-connector {
        display: none;
    }

    .ecosystem-comparison {
        grid-template-columns: 1fr;
    }

    .product-showcase {
        grid-template-columns: 1fr;
        text-align: center;
        padding: 32px;
    }

    .product-icon {
        width: 120px;
        height: 120px;
    }

    .product-features li {
        justify-content: center;
    }
}

@media (max-width: 768px) {
    .ecosystem-flow {
        padding: 0 16px;
    }

    .flow-step {
        padding: 16px 20px;
    }

    .flow-icon {
        width: 48px;
        height: 48px;
    }

    .flow-icon i {
        width: 24px;
        height: 24px;
    }

    .product-showcase {
        padding: 24px;
        margin-bottom: 20px;
    }

    .product-content h3 {
        font-size: 1.5rem;
    }
}

/* =========================================
   VIDEO PLACEHOLDERS
   Spots for screen-recorded demo videos
   ========================================= */

.video-placeholder {
    position: relative;
    width: 100%;
    aspect-ratio: 16 / 9;
    background: linear-gradient(135deg, var(--bg-card) 0%, var(--bg-elevated) 100%);
    border: 2px dashed var(--primary);
    border-radius: 16px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 16px;
    overflow: hidden;
    cursor: pointer;
    transition: all 0.3s ease;
}

.video-placeholder:hover {
    border-color: var(--primary-dark);
    background: linear-gradient(135deg, var(--bg-elevated) 0%, #252b3a 100%);
    transform: scale(1.01);
}

.video-placeholder::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
        linear-gradient(90deg, transparent 0%, rgba(34, 197, 94, 0.03) 50%, transparent 100%),
        repeating-linear-gradient(0deg, transparent 0px, transparent 20px, rgba(255,255,255,0.02) 20px, rgba(255,255,255,0.02) 21px);
    pointer-events: none;
}

.video-placeholder-play {
    width: 80px;
    height: 80px;
    background: var(--primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 0 40px var(--primary-glow);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.video-placeholder:hover .video-placeholder-play {
    transform: scale(1.1);
    box-shadow: 0 0 60px var(--primary-glow);
}

.video-placeholder-play i {
    width: 36px;
    height: 36px;
    color: white;
    margin-left: 4px; /* Optical centering for play icon */
}

.video-placeholder-label {
    font-family: var(--font-display);
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--text-secondary);
    text-transform: uppercase;
    letter-spacing: 1px;
    text-align: center;
    padding: 0 20px;
}

.video-placeholder-tag {
    position: absolute;
    top: 16px;
    left: 16px;
    background: var(--primary);
    color: white;
    font-family: var(--font-display);
    font-size: 0.7rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    padding: 6px 12px;
    border-radius: 4px;
}

.video-placeholder-duration {
    position: absolute;
    bottom: 16px;
    right: 16px;
    background: rgba(0, 0, 0, 0.7);
    color: white;
    font-family: var(--font-body);
    font-size: 0.85rem;
    font-weight: 600;
    padding: 4px 10px;
    border-radius: 4px;
}

/* Smaller variant for panels */
.video-placeholder.video-placeholder--small {
    aspect-ratio: 4 / 3;
}

.video-placeholder.video-placeholder--small .video-placeholder-play {
    width: 60px;
    height: 60px;
}

.video-placeholder.video-placeholder--small .video-placeholder-play i {
    width: 28px;
    height: 28px;
}

.video-placeholder.video-placeholder--small .video-placeholder-label {
    font-size: 0.8rem;
}

/* Hero demo video specific */
.hero-demo-video {
    margin-top: 40px;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

/* Demo Section */
/* All sections after hero wrapper need solid bg so hero image doesn't bleed */
.hero-wrapper ~ section,
.hero-wrapper ~ div,
.hero-wrapper ~ footer {
    position: relative;
    z-index: 1;
    background-color: var(--bg-dark);
}

.demo-section {
    padding: 60px 0;
    background: linear-gradient(180deg, var(--bg-dark) 0%, rgba(34, 197, 94, 0.03) 50%, var(--bg-dark) 100%);
}

/* ============================================
   FIXED VIDEO PARALLAX WINDOW
   clip-path: inset(0) clips the fixed video
   to the section bounds — no z-index issues.
   As you scroll, the 400px window slides over
   the fixed video, revealing bottom → top.
   ============================================ */
.demo-video-fixed {
    position: relative;
    height: 400px;
    clip-path: inset(0);
}

.demo-video-fixed-inner {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
}

/* Cover the full viewport regardless of aspect ratio */
.demo-video-fixed-inner iframe {
    position: absolute;
    top: 50%;
    left: 50%;
    min-width: 100vw;
    min-height: 100vh;
    /* Ensure 16:9 video always covers — whichever dimension is larger */
    width: 177.78vh;  /* 100vh * 16/9 */
    height: 56.25vw;  /* 100vw * 9/16 */
    transform: translate(-50%, -50%);
    border: none;
}

/* Mobile: same fixed parallax, slightly shorter window */
@media (max-width: 768px) {
    .demo-video-fixed {
        height: 300px;
    }
}

/* Panel video placeholder */
.panel-video-placeholder {
    margin-top: 20px;
}

/* Panel with video only (no static preview) */
.panel-preview--video-only {
    display: flex;
    align-items: center;
    justify-content: center;
    /* Remove the black background from panel-preview */
    background: transparent;
    border: none;
    padding: 0;
}

.panel-video-container {
    position: relative;
    width: 312px;
    /* Cropped aspect ratio to trim black bars from video */
    aspect-ratio: 9 / 13;
    border-radius: 12px;
    overflow: hidden;
    /* Thin glowing green border */
    border: 2px solid rgba(34, 197, 94, 0.6);
    box-shadow:
        0 0 15px rgba(34, 197, 94, 0.4),
        0 0 30px rgba(34, 197, 94, 0.2),
        inset 0 0 10px rgba(34, 197, 94, 0.1);
}

/* Scale video to fill cropped container */
.panel-video {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100%;
    height: auto;
    min-height: 125%;
    border: 0;
}

@media (max-width: 1024px) {
    .panel-video-container {
        width: 264px;
    }
}

@media (max-width: 768px) {
    .panel-video-container {
        width: 216px;
    }
}

/* iPad video inside showcase panel */
.panel-ipad-container {
    position: relative;
    width: 100%;
    max-width: 500px;
    margin: 20px auto 0;
}

.panel-ipad-container .ipad-frame {
    width: 100%;
    height: auto;
    display: block;
    position: relative;
    z-index: 2;
    pointer-events: none;
}

.panel-ipad-container .ipad-video {
    position: absolute;
    left: 8.9%;
    top: 14.4%;
    width: 82.1%;
    height: 75.5%;
    z-index: 1;
    border: 0;
    border-radius: 4px;
    background: #000;
}

.panel-ipad-container::before {
    content: '';
    position: absolute;
    left: 7%;
    top: 12.5%;
    width: 86%;
    height: 79%;
    background: #000;
    z-index: 0;
    border-radius: 8px;
}

/* iPhone video inside showcase panel */
.panel-iphone-container {
    position: relative;
    width: 100%;
    max-width: 300px;
    margin: 20px auto 0;
}

.panel-iphone-container .iphone-frame {
    width: 100%;
    height: auto;
    display: block;
    position: relative;
    z-index: 2;
    pointer-events: none;
}

.panel-iphone-container .iphone-video {
    position: absolute;
    left: 6.8%;
    top: 2.6%;
    width: 86.4%;
    height: 94.8%;
    z-index: 1;
    border: 0;
    border-radius: 28px;
    background: #000;
}

.panel-iphone-container::before {
    content: '';
    position: absolute;
    left: 6.5%;
    top: 2.5%;
    width: 87%;
    height: 95%;
    background: #000;
    z-index: 0;
    border-radius: 42px;
}

@media (max-width: 768px) {
    .video-placeholder-play {
        width: 60px;
        height: 60px;
    }

    .video-placeholder-play i {
        width: 28px;
        height: 28px;
    }

    .video-placeholder-label {
        font-size: 0.75rem;
    }

    .video-placeholder-tag {
        font-size: 0.6rem;
        padding: 4px 8px;
    }
}

/* =========================================
   GAME CENTER MODES SECTION
   ========================================= */
.modes-section {
    padding: var(--section-padding);
    background: linear-gradient(180deg, var(--bg-dark) 0%, rgba(34, 197, 94, 0.02) 50%, var(--bg-dark) 100%);
}

.modes-header {
    text-align: center;
    margin-bottom: 60px;
}

.modes-subhead {
    font-size: 1.15rem;
    color: var(--text-secondary);
    margin-top: 16px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

/* Game Center Showcase (card + iPad) */
.gc-showcase {
    display: flex;
    align-items: center;
    gap: 60px;
    max-width: 1200px;
    margin: 0 auto 48px;
}

.gc-modal-card {
    flex: 0 0 520px;
    background: #141822;
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 20px;
    padding: 40px 36px 32px;
    position: relative;
}

.gc-preview {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 16px;
}

.gc-preview .ipad-video-container {
    opacity: 1;
    max-width: 100%;
}

.gc-preview-screenshot {
    position: absolute;
    top: calc(5.5% + 35px);
    left: calc(6% + 17px);
    width: calc(88% - 30px);
    height: calc(84% - 20px);
    object-fit: contain;
    border-radius: 4px;
    z-index: 1;
    transition: opacity 0.3s ease;
}

.gc-preview-label {
    font-size: 0.9rem;
    color: var(--text-secondary);
    text-align: center;
    font-weight: 600;
    letter-spacing: 0.5px;
}

.gc-modal-card-title {
    font-family: 'Oswald', sans-serif;
    font-size: 1.4rem;
    font-weight: 700;
    letter-spacing: 2px;
    text-align: center;
    color: var(--text-primary);
    margin-bottom: 28px;
}

.gc-modal-cols {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
    margin-bottom: 12px;
}

.gc-modal-col-label {
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--text-muted);
    text-align: center;
}

.gc-modal-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
    margin-bottom: 16px;
}

.gc-mode-tile {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 14px;
    padding: 20px;
    transition: all 0.2s ease;
    cursor: pointer;
}

.gc-mode-tile:hover {
    background: rgba(255, 255, 255, 0.06);
    border-color: rgba(255, 255, 255, 0.15);
    transform: translateY(-2px);
}

.gc-mode-tile--active {
    border-color: rgba(34, 197, 94, 0.4);
    background: rgba(34, 197, 94, 0.08);
}

.gc-mode-icon {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 10px;
}

.gc-mode-icon i {
    width: 28px;
    height: 28px;
}

.gc-mode-cat {
    display: block;
    font-size: 0.65rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: var(--text-muted);
    margin-bottom: 2px;
}

.gc-mode-name {
    font-family: 'Oswald', sans-serif;
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 4px;
}

.gc-mode-desc {
    font-size: 0.8rem;
    color: var(--text-secondary);
    margin: 0;
    line-height: 1.4;
}

.gc-modal-current {
    text-align: center;
    font-size: 0.85rem;
    color: var(--text-muted);
    margin-top: 8px;
}

.gc-modal-current strong {
    color: var(--primary);
}

@media (max-width: 1024px) {
    .gc-showcase {
        flex-direction: column;
        gap: 40px;
    }
    .gc-modal-card {
        flex: none;
        width: 100%;
        max-width: 520px;
    }
}

@media (max-width: 600px) {
    .gc-modal-card {
        padding: 28px 20px 24px;
    }
    .gc-mode-name {
        font-size: 1.05rem;
    }
}

/* Chalkboard Highlight Section */
.chalkboard-highlight {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: center;
    background: linear-gradient(135deg, rgba(245, 158, 11, 0.1), rgba(34, 197, 94, 0.05));
    border: 1px solid rgba(245, 158, 11, 0.3);
    border-radius: 20px;
    padding: 40px;
    max-width: 900px;
    margin: 0 auto;
}

.chalkboard-content {
    display: flex;
    flex-direction: column;
}

.chalkboard-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(245, 158, 11, 0.2);
    color: var(--accent-gold);
    padding: 6px 14px;
    border-radius: 50px;
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 1px;
    margin-bottom: 16px;
    width: fit-content;
}

.chalkboard-badge i {
    width: 14px;
    height: 14px;
}

.chalkboard-content h3 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 12px;
}

.chalkboard-content > p {
    font-size: 1rem;
    color: var(--text-secondary);
    line-height: 1.7;
    margin-bottom: 20px;
}

.chalkboard-features {
    list-style: none;
    padding: 0;
    margin: 0 0 20px 0;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.chalkboard-features li {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.9rem;
    color: var(--text-secondary);
}

.chalkboard-features li i {
    width: 18px;
    height: 18px;
    color: var(--accent-gold);
    flex-shrink: 0;
}

.chalkboard-bottom {
    font-size: 0.9rem;
    color: var(--text-muted);
    margin: 0;
}

.chalkboard-bottom strong {
    color: var(--accent-gold);
}

.chalkboard-visual {
    border-radius: 12px;
    overflow: hidden;
}

/* Modes Section Responsive */
@media (max-width: 900px) {
    .chalkboard-highlight {
        grid-template-columns: 1fr;
        gap: 24px;
    }
}

@media (max-width: 768px) {
    .modes-grid {
        grid-template-columns: 1fr;
        gap: 24px;
    }

    .chalkboard-highlight {
        padding: 24px;
    }
}

/* =========================================
   GAME DAY SETUP SECTION
   ========================================= */
.gameday-section {
    padding: var(--section-padding);
    background: linear-gradient(180deg, var(--bg-card) 0%, var(--bg-dark) 100%);
}

.gameday-header {
    text-align: center;
    margin-bottom: 60px;
}

.gameday-subhead {
    font-size: 1.15rem;
    color: var(--text-secondary);
    margin-top: 16px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.gameday-showcase {
    display: grid;
    grid-template-columns: 3fr 2fr;
    gap: 60px;
    align-items: center;
    max-width: 1300px;
    margin: 0 auto;
}

.gameday-visual {
    position: relative;
}

.gameday-visual .ipad-video-container {
    max-width: 1200px;
}

.gameday-screenshot {
    width: 100%;
    max-width: 420px;
    border-radius: 20px;
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.4), 0 0 40px rgba(34, 197, 94, 0.1);
    border: 1px solid var(--border-subtle);
}

.gameday-features {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.gameday-feature {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    padding: 24px;
    background: var(--bg-elevated);
    border: 1px solid var(--border-subtle);
    border-radius: 16px;
    transition: all 0.3s ease;
}

.gameday-feature:hover {
    border-color: var(--primary);
    transform: translateX(8px);
    box-shadow: 0 10px 30px rgba(34, 197, 94, 0.1);
}

.gameday-feature-icon {
    width: 48px;
    height: 48px;
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.gameday-feature-icon i {
    width: 24px;
    height: 24px;
    color: white;
}

.gameday-feature-content h3 {
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 6px;
    color: var(--text-primary);
}

.gameday-feature-content p {
    font-size: 0.9rem;
    color: var(--text-secondary);
    line-height: 1.6;
    margin: 0;
}

/* Device Screenshot Styling */
.device-screenshot {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 8px;
}

/* Game Day Section Responsive */
@media (max-width: 900px) {
    .gameday-showcase {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .gameday-visual {
        order: 2;
        text-align: center;
    }

    .gameday-features {
        order: 1;
    }

    .gameday-screenshot {
        max-width: 350px;
    }
}

@media (max-width: 768px) {
    .gameday-feature {
        padding: 20px;
    }

    .gameday-feature-icon {
        width: 44px;
        height: 44px;
    }

    .gameday-feature-icon i {
        width: 22px;
        height: 22px;
    }
}

/* =========================================
   FEATURE TICKER SECTION
   ========================================= */
.feature-ticker-section {
    position: relative;
    isolation: isolate;
    padding: 80px 0;
    overflow: hidden;
}

#tickerFieldCanvas {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: -1;
    opacity: 0;
    transition: opacity 0.4s ease;
    -webkit-transform: translateZ(0);
    transform: translateZ(0);
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
}

#tickerFieldCanvas.visible {
    opacity: 1;
}

.feature-ticker-section .container,
.feature-ticker-rows {
    position: relative;
    z-index: 1;
}

.feature-ticker-header {
    text-align: center;
    margin-bottom: 48px;
}

.ticker-logo {
    display: block;
    margin: 0 auto 20px;
    height: 96px;
    width: auto;
}

.feature-ticker-rows {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.ticker-track {
    position: relative;
    z-index: 2;
    overflow: hidden;
    width: 100%;
    mask-image: linear-gradient(to right, transparent 0%, black 8%, black 92%, transparent 100%);
    -webkit-mask-image: linear-gradient(to right, transparent 0%, black 8%, black 92%, transparent 100%);
}

.ticker-row {
    display: flex;
    width: max-content;
    animation: ticker-scroll 50s linear infinite;
}

.ticker-track--reverse .ticker-row {
    animation: ticker-scroll-reverse 45s linear infinite;
}

@keyframes ticker-scroll {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

@keyframes ticker-scroll-reverse {
    0% { transform: translateX(-50%); }
    100% { transform: translateX(0); }
}

.ticker-pill {
    position: relative;
    z-index: 2;
    flex-shrink: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 6px;
    padding: 20px 36px;
    margin: 0 10px;
    background: linear-gradient(135deg, rgba(34, 197, 94, 0.08) 0%, rgba(10, 14, 24, 0.9) 50%, rgba(34, 197, 94, 0.05) 100%);
    border: 1px solid rgba(34, 197, 94, 0.15);
    border-radius: 20px;
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    white-space: nowrap;
    transition: all 0.3s;
}

.ticker-pill:hover {
    border-color: rgba(34, 197, 94, 0.5);
    background: linear-gradient(135deg, rgba(34, 197, 94, 0.2) 0%, rgba(10, 14, 24, 0.95) 50%, rgba(34, 197, 94, 0.15) 100%);
    transform: scale(1.08);
    box-shadow: 0 0 20px rgba(34, 197, 94, 0.15);
}

.ticker-pill strong {
    font-family: var(--font-display);
    font-size: 1.4rem;
    font-weight: 700;
    letter-spacing: 1px;
    color: #ffffff;
    text-transform: uppercase;
}

.ticker-pill span {
    font-family: var(--font-body);
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.4);
    letter-spacing: 0.3px;
}

/* Pause on hover (desktop) */
.ticker-track:hover .ticker-row {
    animation-play-state: paused;
}

/* Touch devices: active state instead of hover */
@media (hover: none) and (pointer: coarse) {
    .ticker-pill:hover {
        transform: none;
        box-shadow: none;
    }

    .ticker-pill:active {
        transform: scale(1.05);
        border-color: rgba(34, 197, 94, 0.5);
        background: linear-gradient(135deg, rgba(34, 197, 94, 0.15) 0%, rgba(10, 14, 24, 0.95) 50%, rgba(34, 197, 94, 0.1) 100%);
    }
}

@media (max-width: 768px) {
    .feature-ticker-section {
        padding: 60px 0;
    }

    .ticker-track {
        mask-image: linear-gradient(to right, transparent 0%, black 4%, black 96%, transparent 100%);
        -webkit-mask-image: linear-gradient(to right, transparent 0%, black 4%, black 96%, transparent 100%);
    }

    .ticker-row {
        animation-duration: 35s;
    }

    .ticker-track--reverse .ticker-row {
        animation-duration: 30s;
    }

    .ticker-pill {
        padding: 12px 20px;
        margin: 0 6px;
        gap: 4px;
        border-radius: 14px;
    }

    .ticker-pill strong {
        font-size: 0.9rem;
    }

    .ticker-pill span {
        font-size: 0.75rem;
    }

    .feature-ticker-rows {
        gap: 12px;
    }
}

@media (max-width: 768px) {
    #tickerFieldCanvas {
        display: none;
    }
}

@media (max-width: 480px) {
    .feature-ticker-section {
        padding: 40px 0;
    }

    .ticker-pill {
        padding: 10px 16px;
        margin: 0 5px;
        border-radius: 12px;
    }

    .ticker-pill strong {
        font-size: 0.8rem;
    }

    .ticker-pill span {
        font-size: 0.7rem;
    }

    .feature-ticker-header h2 {
        font-size: 1.5rem;
    }
}
