/* =========================================
   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;
}

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

.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;
}

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

.nav-links {
    display: flex;
    gap: 32px;
}

.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);
}

.nav-links a.nav-leagues {
    color: #eab308;
    border: 1px solid rgba(234, 179, 8, 0.3);
    padding: 6px 14px;
    border-radius: 6px;
    transition: all 0.2s;
}

.nav-links a.nav-leagues:hover {
    background: rgba(234, 179, 8, 0.1);
    border-color: rgba(234, 179, 8, 0.5);
}

.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 {
    min-height: 100vh; /* fallback */
    min-height: 100dvh;
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: center;
    gap: 60px;
    padding: 120px 24px 80px;
    max-width: var(--container-width);
    margin: 0 auto;
    position: relative;
}

.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 {
    width: 64px;
    height: 64px;
    background: linear-gradient(135deg, rgba(239, 68, 68, 0.15), rgba(239, 68, 68, 0.05));
    border: 1px solid rgba(239, 68, 68, 0.3);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
}

.problem-icon i {
    width: 32px;
    height: 32px;
    color: var(--accent-red);
}

.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;
    border-radius: 20px;
    overflow: hidden;
}

.solution-hero-image img {
    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;
}

.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 {
    padding: var(--section-padding);
    background: var(--bg-card);
}

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

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

/* Billing Toggle */
.billing-toggle {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    margin-top: 32px;
}

.billing-option {
    font-size: 1rem;
    color: var(--text-secondary);
    transition: color 0.3s;
    display: flex;
    align-items: center;
    gap: 8px;
}

.billing-option[data-period="monthly"].active,
.billing-option[data-period="annual"].active {
    color: var(--text-primary);
    font-weight: 600;
}

.billing-save {
    background: var(--primary);
    color: var(--bg-dark);
    padding: 4px 10px;
    border-radius: 50px;
    font-size: 0.7rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.billing-switch {
    position: relative;
    width: 56px;
    height: 30px;
    cursor: pointer;
}

.billing-switch input {
    opacity: 0;
    width: 0;
    height: 0;
}

.billing-slider {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--bg-elevated);
    border: 2px solid var(--border-subtle);
    border-radius: 30px;
    transition: all 0.3s;
}

.billing-slider::before {
    content: '';
    position: absolute;
    width: 22px;
    height: 22px;
    left: 2px;
    top: 2px;
    background: var(--primary);
    border-radius: 50%;
    transition: transform 0.3s;
}

.billing-switch input:checked + .billing-slider {
    border-color: var(--primary);
}

.billing-switch input:checked + .billing-slider::before {
    transform: translateX(26px);
}

.billing-hint {
    font-size: 0.85rem;
    color: var(--text-muted);
    margin-top: 12px;
    opacity: 0;
    transition: opacity 0.3s;
}

.billing-hint.show {
    opacity: 1;
}

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

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

.pricing-card:hover {
    transform: translateY(-8px);
}

.pricing-card.featured {
    border-color: var(--primary);
    box-shadow: 0 20px 60px var(--primary-glow);
    transform: scale(1.05);
}

.pricing-card.featured:hover {
    transform: scale(1.05) translateY(-8px);
}

.popular-badge {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--primary);
    color: var(--bg-dark);
    padding: 6px 20px;
    border-radius: 50px;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 1px;
}

.savings-badge {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--accent-gold);
    color: var(--bg-dark);
    padding: 6px 20px;
    border-radius: 50px;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 1px;
}

.pricing-tier {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 16px;
}

.tier-name {
    font-size: 1.25rem;
    font-weight: 700;
}

.tier-badge {
    font-size: 0.65rem;
    font-weight: 700;
    letter-spacing: 1px;
    color: var(--text-muted);
    background: rgba(255, 255, 255, 0.05);
    padding: 4px 8px;
    border-radius: 4px;
}

.pricing-price {
    margin-bottom: 8px;
}

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

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

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

.pricing-features {
    list-style: none;
    margin-bottom: 32px;
}

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

.pricing-features li i {
    width: 18px;
    height: 18px;
    color: var(--primary);
}

.pricing-features li.disabled {
    color: var(--text-muted);
    opacity: 0.5;
}

.pricing-features li.disabled i {
    color: var(--text-muted);
}

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

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

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

.btn-pricing.btn-primary {
    background: var(--primary);
    color: var(--bg-dark);
    border-color: var(--primary);
}

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

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

.guarantee-box {
    display: flex;
    align-items: center;
    gap: 24px;
    background: linear-gradient(135deg, rgba(34, 197, 94, 0.1), rgba(59, 130, 246, 0.05));
    border: 1px solid var(--primary);
    border-radius: 16px;
    padding: 32px;
    max-width: 700px;
    margin: 0 auto;
}

.guarantee-icon {
    font-size: 3rem;
}

.guarantee-content h3 {
    margin-bottom: 8px;
    color: var(--primary);
}

.guarantee-content p {
    color: var(--text-secondary);
    font-size: 0.95rem;
}

/* =========================================
   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;
}

.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-shrink: 0;
}

.cta-mockup img {
    width: 550px;
    height: auto;
}

/* =========================================
   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);
}

/* =========================================
   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 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: 500px;
    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;
    }
}

/* =========================================
   FOOTER
   ========================================= */
.footer {
    background: var(--bg-dark);
    border-top: 1px solid var(--border-subtle);
    padding: 60px 24px 30px;
}

.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-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); }
}

.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: 24px;
    max-width: 1000px;
    margin: 0 auto 48px;
}

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

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

.roster-feature-card.featured-roster {
    grid-column: span 2;
    background: linear-gradient(135deg, rgba(245, 158, 11, 0.1), rgba(34, 197, 94, 0.05));
    border-color: var(--accent-gold);
}

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

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

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

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

/* 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 */
.lineup-preview {
    background: var(--bg-dark);
    border-radius: 12px;
    padding: 16px;
}

.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: 24px;
    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: 16px;
    padding: 28px 32px;
    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-top: 100px;
    }

    .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 {
        grid-template-columns: 1fr;
    }

    .roster-feature-card.featured-roster {
        grid-column: span 1;
    }

    .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: 450px;
        margin: 0 auto 48px;
    }

    .pricing-card.featured {
        transform: none;
    }

    .pricing-card.featured:hover {
        transform: translateY(-8px);
    }

    .showcase-panel.active {
        grid-template-columns: 1fr;
    }

    .final-cta-section .container {
        flex-direction: column;
        text-align: center;
    }

    .cta-mockup img {
        width: 400px;
        max-width: 100%;
    }

    .cta-trust {
        justify-content: center;
    }
}

@media (max-width: 768px) {
    :root {
        --section-padding: 60px 0;
    }

    .nav-links,
    .nav-products {
        display: none;
    }

    .hero {
        padding: 80px 16px 40px;
    }

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

    .showcase-tabs {
        flex-wrap: wrap;
    }

    .showcase-tab {
        flex: 1 1 33%;
        padding: 12px;
        font-size: 0.85rem;
    }

    .showcase-tab span {
        display: none;
    }

    .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 */
.demo-section {
    padding: 60px 0;
    background: linear-gradient(180deg, var(--bg-dark) 0%, rgba(34, 197, 94, 0.03) 50%, var(--bg-dark) 100%);
}

/* Panel video placeholder */
.panel-video-placeholder {
    margin-top: 20px;
}

@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;
}

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

.modes-column {
    background: var(--bg-elevated);
    border: 1px solid var(--border-subtle);
    border-radius: 20px;
    padding: 32px;
}

.modes-column-title {
    font-size: 0.85rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: var(--text-muted);
    margin-bottom: 20px;
    padding-bottom: 12px;
    border-bottom: 1px solid var(--border-subtle);
}

.mode-card {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    padding: 16px;
    background: rgba(255, 255, 255, 0.03);
    border-radius: 12px;
    margin-bottom: 12px;
    transition: all 0.2s ease;
    border: 1px solid transparent;
}

.mode-card:last-child {
    margin-bottom: 0;
}

.mode-card:hover {
    background: rgba(34, 197, 94, 0.05);
    transform: translateX(4px);
}

.mode-card--featured {
    background: rgba(34, 197, 94, 0.08);
    border-color: rgba(34, 197, 94, 0.2);
}

.mode-card--highlight {
    background: rgba(59, 130, 246, 0.08);
    border-color: rgba(59, 130, 246, 0.2);
}

.mode-icon {
    width: 44px;
    height: 44px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.mode-icon i {
    width: 22px;
    height: 22px;
}

.mode-info {
    flex: 1;
}

.mode-label {
    display: inline-block;
    font-size: 0.65rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--text-muted);
    margin-bottom: 4px;
}

.mode-info h4 {
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 6px;
    color: var(--text-primary);
}

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

/* 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: 1fr 1fr;
    gap: 60px;
    align-items: center;
    max-width: 1100px;
    margin: 0 auto;
}

.gameday-visual {
    position: relative;
}

.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;
    }
}
