/* ==============================
   RESET & BASE
============================== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
    --bg: #0f1520;
    --bg-deep: #0a0e14;
    --bg-card: #151c2a;
    --bg-card-hover: #1a2336;
    --bg-surface: #111820;
    --accent: #ff6b35;
    --accent-hover: #ff8c5a;
    --accent-glow: rgba(255, 107, 53, 0.25);
    --text: #f0f3f6;
    --text-muted: #9ba4b0;
    --text-dim: #5a6372;
    --border: #1e2738;
    --border-light: #2a3548;
    --success: #3fb950;
    --info: #4da6ff;
    --warning: #f0b429;
    --purple: #bc8ff3;
    --radius: 10px;
    --radius-lg: 16px;
    --radius-sm: 6px;
    --shadow: 0 2px 12px rgba(0,0,0,0.3);
    --shadow-lg: 0 8px 32px rgba(0,0,0,0.4);
    --transition: 0.25s ease;
}

html { scroll-behavior: smooth; }

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    background: var(--bg);
    color: var(--text);
    line-height: 1.6;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4 {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    font-weight: 800;
    line-height: 1.15;
    letter-spacing: -0.03em;
}

a { color: inherit; text-decoration: none; }
img { max-width: 100%; height: auto; display: block; }
button { font-family: inherit; cursor: pointer; border: none; }
input { font-family: inherit; }

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

/* ==============================
   NAVBAR
============================== */
.navbar {
    position: fixed;
    top: 0; left: 0; right: 0;
    z-index: 1000;
    padding: 16px 0;
    transition: background var(--transition), padding var(--transition), box-shadow var(--transition);
}

.navbar.scrolled {
    background: rgba(15, 21, 32, 0.92);
    padding: 10px 0;
    box-shadow: 0 1px 24px rgba(0,0,0,0.4);
}

.navbar .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.nav-brand {
    display: flex;
    align-items: center;
    gap: 10px;
}

.nav-brand img {
    width: 36px;
    height: 36px;
}

.nav-brand span {
    font-family: 'Inter', sans-serif;
    font-weight: 900;
    font-size: 1.15rem;
    color: var(--text);
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

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

.nav-links a {
    font-size: 0.875rem;
    font-weight: 500;
    color: #ffffff;
    transition: color var(--transition);
    letter-spacing: 0.02em;
}

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

.nav-actions {
    display: flex;
    align-items: center;
    gap: 12px;
}

.btn-ghost {
    padding: 8px 20px;
    border-radius: var(--radius-sm);
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--text);
    background: transparent;
    border: 1px solid var(--border-light);
    transition: all var(--transition);
    display: inline-block;
}

.btn-ghost:hover {
    border-color: var(--text-muted);
    background: rgba(255,255,255,0.04);
}

.btn-primary {
    padding: 8px 22px;
    border-radius: var(--radius-sm);
    font-size: 0.875rem;
    font-weight: 600;
    color: #fff;
    background: var(--accent);
    border: none;
    transition: all var(--transition);
    display: inline-block;
}

.btn-primary:hover {
    background: var(--accent-hover);
    box-shadow: 0 4px 20px var(--accent-glow);
}

/* Install-app pill — orange-outlined to sit between ghost (Sign In) and
   filled primary (Start Free Trial). Always visible in the navbar so a
   coach has a one-click path to install at every step of their journey. */
.btn-install-app {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 7px 16px;
    border-radius: var(--radius-sm);
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--accent);
    background: rgba(255,107,53,0.08);
    border: 1px solid rgba(255,107,53,0.45);
    cursor: pointer;
    transition: all var(--transition);
    font-family: inherit;
    line-height: 1.2;
}

.btn-install-app:hover {
    background: rgba(255,107,53,0.16);
    border-color: var(--accent);
    box-shadow: 0 0 0 3px rgba(255,107,53,0.12);
}

.btn-install-app:disabled {
    opacity: 0.6;
    cursor: not-allowed;
}

.btn-install-app svg {
    flex-shrink: 0;
}

.btn-large {
    padding: 14px 32px;
    font-size: 1rem;
    border-radius: var(--radius);
}

/* Hamburger */
.nav-hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 4px;
}

.nav-hamburger span {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--text);
    border-radius: 2px;
    transition: all 0.3s ease;
}

.mobile-menu {
    display: none;
    position: fixed;
    top: 0; left: 0; right: 0; bottom: 0;
    background: rgba(10, 14, 20, 0.97);
    z-index: 999;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 24px;
}

.mobile-menu.open { display: flex; }

.mobile-menu a {
    font-family: 'Inter', sans-serif;
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--text-muted);
    transition: color var(--transition);
}

.mobile-menu a:hover { color: var(--accent); }

.mobile-menu-close {
    position: absolute;
    top: 20px;
    right: 24px;
    background: none;
    border: none;
    color: var(--text);
    font-size: 2rem;
    cursor: pointer;
    line-height: 1;
}

/* ==============================
   HERO
============================== */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    inset: 0;
    background-image: var(--bg-img-hero);
    background-size: cover;
    background-position: center;
    z-index: 0;
}

.hero-bg::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom, rgba(15,21,32,0.35), rgba(15,21,32,0.92));
}

/* Floating orbs */
.hero-orb {
    position: absolute;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(255,107,53,0.25), transparent 70%);
    pointer-events: none;
    z-index: 0;
}

.hero-orb-1 {
    width: 300px; height: 300px;
    top: 15%; left: 10%;
    animation: orbFloat1 8s ease-in-out infinite;
}

.hero-orb-2 {
    width: 200px; height: 200px;
    top: 60%; right: 12%;
    animation: orbFloat2 10s ease-in-out infinite;
}

.hero-orb-3 {
    width: 150px; height: 150px;
    bottom: 20%; left: 25%;
    animation: orbFloat3 12s ease-in-out infinite;
    background: radial-gradient(circle, rgba(255,107,53,0.15), transparent 70%);
}

@keyframes orbFloat1 {
    0%, 100% { transform: translate(0, 0); }
    50% { transform: translate(30px, -20px); }
}

@keyframes orbFloat2 {
    0%, 100% { transform: translate(0, 0); }
    50% { transform: translate(-20px, 15px); }
}

@keyframes orbFloat3 {
    0%, 100% { transform: translate(0, 0); }
    50% { transform: translate(15px, -25px); }
}

.hero-content {
    position: relative;
    z-index: 1;
    max-width: 780px;
    padding: 0 24px;
}

.hero-logo-icon {
    width: 140px;
    height: 140px;
    margin: 0 auto 28px;
    opacity: 0;
    transform: translateY(20px) scale(0.9);
    animation: fadeInScale 0.8s ease 0.2s forwards;
    filter: drop-shadow(0 0 40px rgba(255,107,53,0.35));
}

@keyframes fadeInScale {
    to { opacity: 1; transform: translateY(0) scale(1); }
}

.hero h1 {
    font-size: clamp(2.5rem, 6vw, 3.75rem);
    font-weight: 900;
    margin-bottom: 18px;
    opacity: 0;
    transform: translateY(20px);
    animation: fadeInUp 0.8s ease 0.45s forwards;
    letter-spacing: -0.035em;
    line-height: 1.08;
}

.hero h1 .accent-word {
    color: var(--accent);
}

.hero-sub {
    font-size: clamp(1.05rem, 2.5vw, 1.25rem);
    color: var(--text-muted);
    margin-bottom: 44px;
    opacity: 0;
    transform: translateY(20px);
    animation: fadeInUp 0.8s ease 0.65s forwards;
    line-height: 1.6;
}

.hero-sub strong {
    color: var(--accent);
    font-weight: 600;
}

.hero-ctas {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
    opacity: 0;
    transform: translateY(20px);
    animation: fadeInUp 0.8s ease 0.85s forwards;
}

@keyframes fadeInUp {
    to { opacity: 1; transform: translateY(0); }
}

/* ==============================
   STATS STRIP
============================== */
.stats-strip {
    background: var(--bg-surface);
    padding: 40px 0;
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
}

.stats-strip .container {
    display: flex;
    justify-content: center;
    gap: 48px;
    flex-wrap: wrap;
}

.stat-item {
    display: flex;
    align-items: center;
    gap: 14px;
}

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

.stat-icon svg {
    width: 22px;
    height: 22px;
    stroke: var(--accent);
    fill: none;
    stroke-width: 2;
    stroke-linecap: round;
    stroke-linejoin: round;
}

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

.stat-text small {
    display: block;
    font-weight: 400;
    font-size: 0.8rem;
    color: var(--text-muted);
}

/* ==============================
   SECTION COMMON
============================== */
.section {
    padding: 100px 0;
}

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

.section-label {
    display: inline-block;
    font-size: 0.72rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    color: var(--accent);
    margin-bottom: 12px;
    padding: 4px 14px;
    border-radius: 20px;
    background: rgba(255, 107, 53, 0.1);
}

.section-header h2 {
    font-size: clamp(1.6rem, 3.5vw, 2.4rem);
    margin-bottom: 14px;
    text-transform: uppercase;
    letter-spacing: -0.03em;
}

.section-header p {
    color: var(--text-muted);
    font-size: 1.05rem;
    max-width: 560px;
    margin: 0 auto;
}

/* Section dividers */
.section-divider {
    height: 2px;
    background: linear-gradient(90deg, transparent, rgba(255,107,53,0.2), transparent);
}

/* ==============================
   COACHES SECTION
============================== */
.coaches-section {
    background: linear-gradient(180deg, var(--bg) 0%, #111820 100%);
}

.agents-diagram-wrap {
    text-align: center;
    margin-bottom: 48px;
    display: flex;
    justify-content: center;
}

/* ===== AGENTS DIAGRAM INTERACTIVE ===== */
.ad-canvas { position: relative; width: 800px; height: 800px; max-width: 100%; }
.ad-hub { position: absolute; top: 50%; left: 50%; transform: translate(-50%, -50%); z-index: 10; }
.ad-hub-logo { width: 130px; height: 130px; border-radius: 50%; overflow: hidden; position: relative; z-index: 3; }
.ad-hub-logo img { width: 100%; height: 100%; object-fit: cover; }
.ad-ring { position: absolute; top: 50%; left: 50%; transform: translate(-50%, -50%); border-radius: 50%; }
.ad-ring-1 { width: 155px; height: 155px; border: 2px solid rgba(244,140,37,0.35); box-shadow: 0 0 30px rgba(244,140,37,0.2), 0 0 60px rgba(244,140,37,0.08), inset 0 0 30px rgba(244,140,37,0.08); animation: adPulse1 4s ease-in-out infinite; z-index: 2; }
.ad-ring-2 { width: 180px; height: 180px; border: 1px solid rgba(77,166,255,0.15); box-shadow: 0 0 40px rgba(77,166,255,0.06); animation: adPulse2 4s ease-in-out infinite 2s; z-index: 1; }
.ad-ring-3 { width: 210px; height: 210px; border: 1px solid rgba(244,140,37,0.08); animation: adPulse1 5s ease-in-out infinite 1s; z-index: 0; }
@keyframes adPulse1 { 0%,100% { opacity: 0.4; transform: translate(-50%,-50%) scale(1); } 50% { opacity: 1; transform: translate(-50%,-50%) scale(1.04); } }
@keyframes adPulse2 { 0%,100% { opacity: 0.3; transform: translate(-50%,-50%) scale(1); } 50% { opacity: 0.8; transform: translate(-50%,-50%) scale(1.06); } }

.ad-station { position: absolute; width: 210px; z-index: 5; transition: transform 0.4s cubic-bezier(0.25,0.46,0.45,0.94); }
.ad-station:hover { transform: scale(1.06); z-index: 6; }
.ad-card { background: rgba(23,32,43,0.85); backdrop-filter: blur(20px); -webkit-backdrop-filter: blur(20px); border-radius: 10px; overflow: hidden; box-shadow: 0 8px 32px rgba(0,0,0,0.4), inset 0 1px 0 rgba(255,255,255,0.04); border: 1px solid rgba(85,67,54,0.2); transition: all 0.4s ease; }
.ad-station:hover .ad-card { box-shadow: 0 12px 48px rgba(244,140,37,0.15), 0 0 0 1px rgba(244,140,37,0.2); }
.ad-hdr { padding: 8px 12px; display: flex; align-items: center; gap: 7px; background: rgba(33,43,53,0.6); }
.ad-dot { width: 5px; height: 5px; border-radius: 50%; background: #f48c25; box-shadow: 0 0 8px rgba(244,140,37,0.5); animation: adDotPulse 2s ease-in-out infinite; }
@keyframes adDotPulse { 0%,100% { opacity: 0.5; } 50% { opacity: 1; box-shadow: 0 0 12px rgba(244,140,37,0.7); } }
.ad-lbl { color: #ffb77d; font-size: 10px; font-weight: 700; text-transform: uppercase; letter-spacing: 2.5px; font-family: 'Space Grotesk', sans-serif; }
.ad-scr { height: 125px; position: relative; overflow: hidden; background: #0a141e; }
.ad-scr img { width: 100%; height: 100%; object-fit: cover; opacity: 0.88; transition: opacity 0.3s ease; }
.ad-station:hover .ad-scr img { opacity: 1; }
.ad-scr::after { content: ''; position: absolute; top: 0; left: 0; right: 0; bottom: 0; background: repeating-linear-gradient(0deg, transparent, transparent 2px, rgba(0,0,0,0.03) 2px, rgba(0,0,0,0.03) 4px); pointer-events: none; }
.ad-ftr { padding: 6px 12px; display: flex; align-items: center; gap: 6px; background: rgba(33,43,53,0.4); }
.ad-bar { flex: 1; height: 2px; background: rgba(77,166,255,0.15); border-radius: 1px; overflow: hidden; position: relative; }
.ad-bar::after { content: ''; position: absolute; top: 0; left: 0; height: 100%; background: linear-gradient(90deg, #f48c25, #4da6ff); border-radius: 1px; animation: adBarFlow 3s ease-in-out infinite; }
.ad-station:nth-child(1) .ad-bar::after { width: 72%; } .ad-station:nth-child(2) .ad-bar::after { width: 85%; animation-delay: 0.5s; }
.ad-station:nth-child(3) .ad-bar::after { width: 63%; animation-delay: 1s; } .ad-station:nth-child(4) .ad-bar::after { width: 91%; animation-delay: 1.5s; }
.ad-station:nth-child(5) .ad-bar::after { width: 78%; animation-delay: 2s; }
@keyframes adBarFlow { 0%,100% { opacity: 0.6; } 50% { opacity: 1; } }
.ad-stxt { color: rgba(217,227,242,0.35); font-size: 7px; text-transform: uppercase; letter-spacing: 1px; white-space: nowrap; font-family: 'Space Grotesk', sans-serif; }

.ad-pos-gm       { top: 8px;  left: 50%; transform: translateX(-50%); }
.ad-pos-scout     { top: 40px; left: 12px; }
.ad-pos-analyst   { top: 40px; right: 12px; }
.ad-pos-tactician { bottom: 30px; left: 30px; }
.ad-pos-trainer   { bottom: 30px; right: 30px; }
.ad-pos-scout:hover, .ad-pos-tactician:hover { transform: scale(1.06); }
.ad-pos-gm:hover { transform: translateX(-50%) scale(1.06); }
.ad-pos-analyst:hover, .ad-pos-trainer:hover { transform: scale(1.06); }

.ad-svg { position: absolute; top: 0; left: 0; width: 100%; height: 100%; pointer-events: none; }
.ad-circuits { z-index: 1; opacity: 0.06; }
.ad-conns { z-index: 3; }
.ad-conn { fill: none; stroke-width: 2; stroke-dasharray: 8 4; opacity: 0.7; }
.ad-conn-s { fill: none; stroke-width: 1.2; opacity: 0.4; }
.ad-conn-g { fill: none; stroke: rgba(77,166,255,0.08); stroke-width: 0.8; }
.ad-conn-t { fill: none; stroke-width: 0.5; opacity: 0.15; }
.ad-jn { fill: #4da6ff; }
.ad-jn.active { animation: adJBlink 2.5s ease-in-out infinite; }
.ad-jn.bright { animation: adJBright 2s ease-in-out infinite; }
.adj0{animation-delay:0s}.adj1{animation-delay:.3s}.adj2{animation-delay:.6s}.adj3{animation-delay:.9s}
.adj4{animation-delay:1.2s}.adj5{animation-delay:1.5s}.adj6{animation-delay:1.8s}.adj7{animation-delay:2.1s}
@keyframes adJBlink { 0%,100% { opacity: 0.15; r: 2; } 50% { opacity: 0.85; r: 3.5; } }
@keyframes adJBright { 0%,100% { opacity: 0.3; r: 2.5; } 50% { opacity: 1; r: 4; filter: drop-shadow(0 0 4px rgba(77,166,255,0.8)); } }
.ad-sp { fill: #fff; animation: adSparkle 3s ease-in-out infinite; }
.asd0{animation-delay:.2s}.asd1{animation-delay:.7s}.asd2{animation-delay:1.3s}.asd3{animation-delay:1.9s}
.asd4{animation-delay:2.5s}.asd5{animation-delay:.5s}.asd6{animation-delay:1.1s}.asd7{animation-delay:1.6s}
@keyframes adSparkle { 0%,100%{opacity:0;r:0.5} 40%{opacity:0} 50%{opacity:1;r:2;filter:drop-shadow(0 0 6px #fff)} 60%{opacity:0} }
.ad-pi { fill: #4da6ff; filter: url(#adPG); }
.ad-po { fill: #f48c25; filter: url(#adPGO); }
.ad-pw { fill: #fff; filter: url(#adPGW); }

@keyframes adFgi{0%{cx:400;cy:145;opacity:1}100%{cx:400;cy:390;opacity:0}}
@keyframes adFsi{0%{cx:120;cy:170;opacity:1}100%{cx:392;cy:392;opacity:0}}
@keyframes adFai{0%{cx:680;cy:170;opacity:1}100%{cx:408;cy:392;opacity:0}}
@keyframes adFti{0%{cx:140;cy:625;opacity:1}100%{cx:392;cy:408;opacity:0}}
@keyframes adFri{0%{cx:660;cy:625;opacity:1}100%{cx:408;cy:408;opacity:0}}
@keyframes adFgo{0%{cx:400;cy:390;opacity:0}35%{opacity:1}100%{cx:400;cy:145;opacity:0}}
@keyframes adFso{0%{cx:392;cy:392;opacity:0}35%{opacity:1}100%{cx:120;cy:170;opacity:0}}
@keyframes adFao{0%{cx:408;cy:392;opacity:0}35%{opacity:1}100%{cx:680;cy:170;opacity:0}}
@keyframes adFto{0%{cx:392;cy:408;opacity:0}35%{opacity:1}100%{cx:140;cy:625;opacity:0}}
@keyframes adFro{0%{cx:408;cy:408;opacity:0}35%{opacity:1}100%{cx:660;cy:625;opacity:0}}
@keyframes adFsg{0%{cx:120;cy:170;opacity:0}30%{opacity:.6}100%{cx:400;cy:145;opacity:0}}
@keyframes adFag{0%{cx:680;cy:170;opacity:0}30%{opacity:.6}100%{cx:400;cy:145;opacity:0}}
@keyframes adFtt{0%{cx:140;cy:625;opacity:0}30%{opacity:.6}100%{cx:660;cy:625;opacity:0}}

.adfi-gm{animation:adFgi 2.8s linear infinite}.adfi-sc{animation:adFsi 2.8s linear infinite .56s}
.adfi-an{animation:adFai 2.8s linear infinite 1.12s}.adfi-ta{animation:adFti 2.8s linear infinite 1.68s}
.adfi-tr{animation:adFri 2.8s linear infinite 2.24s}
.adfo-gm{animation:adFgo 3.2s linear infinite 1.4s}.adfo-sc{animation:adFso 3.2s linear infinite 2s}
.adfo-an{animation:adFao 3.2s linear infinite .3s}.adfo-ta{animation:adFto 3.2s linear infinite .8s}
.adfo-tr{animation:adFro 3.2s linear infinite 2.5s}
.adfi-gm2{animation:adFgi 3.5s linear infinite 1.2s}.adfi-sc2{animation:adFsi 3.5s linear infinite 1.8s}
.adfi-an2{animation:adFai 3.5s linear infinite .4s}.adfi-ta2{animation:adFti 3.5s linear infinite 2.6s}
.adfi-tr2{animation:adFri 3.5s linear infinite .9s}
.adfx-sg{animation:adFsg 4s linear infinite .5s}.adfx-ag{animation:adFag 4s linear infinite 2s}
.adfx-tt{animation:adFtt 4.5s linear infinite 1s}

.coaches-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 14px;
}

.coach-card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 22px 18px;
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease;
}

.coach-card::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 4px;
    background: var(--card-accent);
}

.coach-card:hover {
    transform: translateY(-4px);
    border-color: var(--card-accent);
    box-shadow: 0 8px 32px rgba(0,0,0,0.3), 0 0 40px color-mix(in srgb, var(--card-accent) 15%, transparent);
}

.coach-card-icon {
    margin-bottom: 16px;
}
.coach-card-photo {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    object-fit: cover;
    margin-bottom: 16px;
    border: 2px solid rgba(255,255,255,0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.coach-card:hover .coach-card-photo {
    transform: scale(1.08);
    box-shadow: 0 0 20px color-mix(in srgb, var(--card-accent) 30%, transparent);
}

.coach-role-badge {
    display: inline-block;
    padding: 3px 10px;
    border-radius: 20px;
    font-size: 0.7rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    margin-bottom: 8px;
    background: color-mix(in srgb, var(--card-accent) 15%, transparent);
    color: var(--card-accent);
}

.coach-card h3 {
    font-family: 'Inter', sans-serif;
    font-size: 1.05rem;
    font-weight: 700;
    margin-bottom: 8px;
}

.coach-card p {
    font-size: 0.85rem;
    color: var(--text-muted);
    line-height: 1.55;
}

/* ==============================
   FEATURES SHOWCASE
============================== */
.features-section {
    background: linear-gradient(180deg, #0f1520 0%, #111820 100%);
}

.feature-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    margin-bottom: 80px;
}

.feature-row:last-child { margin-bottom: 0; }

.feature-row.reversed .feature-text { order: 2; }
.feature-row.reversed .feature-mockup { order: 1; }

.feature-text h3 {
    font-family: 'Inter', sans-serif;
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 12px;
    letter-spacing: -0.02em;
}

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

.feature-label {
    display: inline-block;
    font-size: 0.72rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--accent);
    margin-bottom: 8px;
}

/* Mockup Base */
.mockup {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 24px;
    position: relative;
    overflow: hidden;
}

.mockup-dots {
    display: flex;
    gap: 6px;
    margin-bottom: 16px;
}

.mockup-dots span {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--border-light);
}

.mockup-dots span:first-child { background: #ff5f57; }
.mockup-dots span:nth-child(2) { background: #ffbd2e; }
.mockup-dots span:nth-child(3) { background: #28c840; }

/* Chat Mockup */
.chat-bubble {
    padding: 10px 14px;
    border-radius: 10px;
    font-size: 0.8rem;
    margin-bottom: 10px;
    max-width: 85%;
    line-height: 1.5;
}

.chat-bubble.user {
    background: rgba(255, 107, 53, 0.12);
    color: var(--text);
    margin-left: auto;
    border-bottom-right-radius: 3px;
}

.chat-bubble.ai {
    background: var(--bg-surface);
    color: var(--text-muted);
    border-bottom-left-radius: 3px;
}

.chat-bubble .badge-inline {
    display: inline-block;
    padding: 1px 7px;
    border-radius: 4px;
    font-size: 0.65rem;
    font-weight: 700;
    margin-right: 6px;
    vertical-align: middle;
}

/* ==============================
   VIDEO ROOM MOCKUP (Detailed)
============================== */
.video-room-mockup {
    display: grid;
    grid-template-columns: 44px 1fr 180px;
    gap: 0;
    background: #0a0e14;
    border-radius: var(--radius-sm);
    overflow: hidden;
    height: 280px;
}

/* Left toolbar */
.vr-toolbar {
    background: #111620;
    border-right: 1px solid var(--border);
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 10px 0;
    gap: 4px;
}

.vr-tool {
    width: 32px;
    height: 32px;
    border-radius: 6px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-dim);
    transition: all 0.2s ease;
    cursor: pointer;
}

.vr-tool:hover { color: var(--text-muted); background: rgba(255,255,255,0.05); }

.vr-tool.active {
    color: var(--accent);
    background: rgba(255,107,53,0.12);
}

.vr-tool svg {
    width: 16px;
    height: 16px;
    stroke: currentColor;
    fill: none;
    stroke-width: 2;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.vr-tool-divider {
    width: 24px;
    height: 1px;
    background: var(--border);
    margin: 4px 0;
}

/* Center video area */
.vr-center {
    display: flex;
    flex-direction: column;
}

.vr-screen {
    flex: 1;
    background: #080c12;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.vr-screen-court {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(30,40,56,0.3), rgba(15,21,32,0.5));
}

.vr-annotations {
    position: absolute;
    inset: 0;
}

.vr-annotations line {
    stroke-width: 2.5;
    stroke-linecap: round;
}

.vr-annotations .arrow-dash {
    stroke-dasharray: 8 4;
}

.vr-annotations circle {
    opacity: 0.8;
}

.vr-play-btn {
    position: relative;
    z-index: 2;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: rgba(255,107,53,0.85);
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 20px rgba(255,107,53,0.4);
}

.vr-play-btn svg { fill: #fff; width: 20px; height: 20px; margin-left: 3px; }

/* Video controls bar */
.vr-controls {
    height: 36px;
    background: #111620;
    border-top: 1px solid var(--border);
    display: flex;
    align-items: center;
    padding: 0 10px;
    gap: 8px;
}

.vr-ctrl-btn {
    width: 24px; height: 24px;
    color: var(--text-muted);
    display: flex; align-items: center; justify-content: center;
}

.vr-ctrl-btn svg { width: 14px; height: 14px; stroke: currentColor; fill: none; stroke-width: 2; }

.vr-time {
    font-size: 0.65rem;
    color: var(--text-dim);
    font-variant-numeric: tabular-nums;
}

.vr-progress-bar {
    flex: 1;
    height: 4px;
    background: var(--border);
    border-radius: 2px;
    position: relative;
    overflow: hidden;
}

.vr-progress-fill {
    height: 100%;
    width: 38%;
    background: var(--accent);
    border-radius: 2px;
}

.vr-progress-bar .vr-clip-marker {
    position: absolute;
    top: -2px;
    height: 8px;
    width: 3px;
    background: var(--info);
    border-radius: 1px;
}

/* Timeline */
.vr-timeline {
    height: 28px;
    background: #0d1118;
    border-top: 1px solid var(--border);
    display: flex;
    align-items: center;
    padding: 0 10px;
    gap: 2px;
}

.vr-timeline-block {
    height: 14px;
    border-radius: 2px;
    flex-shrink: 0;
}

/* Right clips sidebar */
.vr-clips {
    background: #111620;
    border-left: 1px solid var(--border);
    padding: 10px;
    display: flex;
    flex-direction: column;
    gap: 6px;
    overflow: hidden;
}

.vr-clips-title {
    font-size: 0.65rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: var(--text-dim);
    margin-bottom: 4px;
}

.vr-clip-card {
    background: rgba(255,255,255,0.03);
    border: 1px solid var(--border);
    border-radius: 6px;
    padding: 8px;
    display: flex;
    gap: 8px;
    align-items: center;
}

.vr-clip-thumb {
    width: 48px;
    height: 30px;
    border-radius: 3px;
    flex-shrink: 0;
}

.vr-clip-info {
    flex: 1;
    min-width: 0;
}

.vr-clip-name {
    font-size: 0.65rem;
    font-weight: 600;
    color: var(--text);
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.vr-clip-dur {
    font-size: 0.55rem;
    color: var(--text-dim);
}

/* ==============================
   PLAY DESIGNER MOCKUP
============================== */
.court-mockup-enhanced {
    position: relative;
    border-radius: var(--radius-sm);
    overflow: hidden;
    background: #1a2332;
}

.court-mockup-enhanced img {
    width: 100%;
    opacity: 0.85;
}

.court-player-e {
    position: absolute;
    width: 28px;
    height: 28px;
    border-radius: 50%;
    border: 2.5px solid;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.65rem;
    font-weight: 800;
    color: #fff;
    z-index: 2;
    box-shadow: 0 2px 8px rgba(0,0,0,0.3);
}

.court-screen-indicator {
    position: absolute;
    width: 20px;
    height: 4px;
    border-radius: 2px;
    z-index: 2;
}

.court-mockup-enhanced svg.court-arrows {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.court-play-label {
    position: absolute;
    top: 8px;
    left: 10px;
    background: rgba(255,107,53,0.9);
    color: #fff;
    font-size: 0.6rem;
    font-weight: 700;
    padding: 3px 10px;
    border-radius: 4px;
    letter-spacing: 0.04em;
    z-index: 3;
}

/* Notebook Mockup */
.notebook-tabs {
    display: flex;
    gap: 4px;
    margin-bottom: 14px;
}

.notebook-tab {
    padding: 6px 14px;
    border-radius: var(--radius-sm);
    font-size: 0.75rem;
    font-weight: 600;
    background: var(--bg-surface);
    color: var(--text-muted);
}

.notebook-tab.active {
    background: rgba(255, 107, 53, 0.15);
    color: var(--accent);
}

.notebook-item {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 8px 0;
    border-bottom: 1px solid var(--border);
    font-size: 0.8rem;
    color: var(--text-muted);
}

.notebook-item-dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    flex-shrink: 0;
}

/* Roster Mockup */
.roster-player-card {
    display: flex;
    align-items: center;
    gap: 14px;
    background: var(--bg-surface);
    padding: 14px;
    border-radius: var(--radius);
    margin-bottom: 10px;
}

.roster-avatar {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--accent), #ff8c5a);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 0.85rem;
    color: #fff;
    flex-shrink: 0;
}

.roster-info { flex: 1; }
.roster-info .name { font-weight: 600; font-size: 0.85rem; margin-bottom: 6px; }

.roster-stat-bar {
    height: 4px;
    background: var(--border);
    border-radius: 2px;
    margin-bottom: 4px;
    overflow: hidden;
}

.roster-stat-bar .fill {
    height: 100%;
    border-radius: 2px;
}

/* Upload Mockup */
.upload-zone {
    border: 2px dashed var(--border-light);
    border-radius: var(--radius);
    padding: 28px;
    text-align: center;
    transition: border-color var(--transition);
}

.upload-zone svg {
    margin: 0 auto 12px;
}

.upload-zone p {
    font-size: 0.85rem;
    color: var(--text-muted);
    margin-bottom: 14px;
}

.file-badges {
    display: flex;
    gap: 8px;
    justify-content: center;
}

.file-badge {
    padding: 4px 10px;
    border-radius: 4px;
    font-size: 0.7rem;
    font-weight: 700;
    background: var(--bg-surface);
    color: var(--text-muted);
    border: 1px solid var(--border);
}

/* ==============================
   HOW IT WORKS
============================== */
.how-section {
    position: relative;
    overflow: hidden;
}

.how-section-bg {
    position: absolute;
    inset: 0;
    background-image: var(--bg-img-how);
    background-size: cover;
    background-position: center;
    z-index: 0;
}

.how-section-bg::after {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(15, 21, 32, 0.93);
}

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

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

/* Connecting line between steps */
.steps-grid::before {
    content: '';
    position: absolute;
    top: 80px;
    left: calc(16.66% + 12px);
    right: calc(16.66% + 12px);
    height: 2px;
    background: linear-gradient(90deg, var(--accent), rgba(255,107,53,0.3), var(--accent));
    z-index: 0;
}

/* Connector arrows */
.step-connector {
    position: absolute;
    top: 72px;
    width: 20px;
    height: 20px;
    z-index: 1;
}

.step-connector-1 {
    left: calc(33.33% - 10px);
}

.step-connector-2 {
    left: calc(66.66% - 10px);
}

.step-connector svg {
    width: 20px;
    height: 20px;
    fill: var(--accent);
}

.step-card {
    position: relative;
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-top: 3px solid var(--accent);
    border-radius: var(--radius-lg);
    padding: 28px 28px 32px;
    text-align: center;
    z-index: 1;
}

.step-number {
    font-family: 'Inter', sans-serif;
    font-size: 3.5rem;
    font-weight: 900;
    color: rgba(255, 107, 53, 0.12);
    line-height: 1;
    margin-bottom: 8px;
    pointer-events: none;
}

.step-card h3 {
    font-family: 'Inter', sans-serif;
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 8px;
}

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

.step-icon {
    width: 64px;
    height: 64px;
    border-radius: 16px;
    background: linear-gradient(135deg, rgba(255,107,53,0.2), rgba(255,107,53,0.08));
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    position: relative;
}

.step-icon svg {
    width: 28px;
    height: 28px;
    stroke: var(--accent);
    fill: none;
    stroke-width: 2;
    stroke-linecap: round;
    stroke-linejoin: round;
}

/* ==============================
   REGISTER
============================== */
.register-section {
    position: relative;
    padding: 100px 0;
    overflow: hidden;
}

.register-bg {
    position: absolute;
    inset: 0;
    background-image: var(--bg-img-register);
    background-size: cover;
    background-position: center;
    z-index: 0;
}

.register-bg::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom, rgba(15,21,32,0.85), rgba(15,21,32,0.97));
}

.register-content {
    position: relative;
    z-index: 1;
    text-align: center;
}

.register-content h2 {
    font-size: clamp(1.6rem, 3.5vw, 2.4rem);
    margin-bottom: 8px;
    text-transform: uppercase;
}

.register-content > p {
    color: var(--text-muted);
    margin-bottom: 40px;
    font-size: 1.05rem;
}

.register-card {
    max-width: 480px;
    margin: 0 auto;
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 36px 32px;
}

.form-group {
    margin-bottom: 18px;
    text-align: left;
}

.form-group label {
    display: block;
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--text);
    margin-bottom: 6px;
}

.form-input-wrap {
    position: relative;
}

.form-input {
    width: 100%;
    padding: 12px 16px;
    background: var(--bg-surface);
    border: 1px solid var(--border);
    border-radius: var(--radius-sm);
    color: var(--text);
    font-size: 0.95rem;
    transition: border-color var(--transition), box-shadow var(--transition);
    outline: none;
}

.form-input:focus {
    border-color: var(--accent);
    box-shadow: 0 0 0 3px var(--accent-glow);
}

.form-input::placeholder { color: var(--text-dim); }

.password-toggle {
    position: absolute;
    right: 12px;
    top: 50%;
    transform: translateY(-50%);
    background: none;
    border: none;
    color: var(--text-muted);
    cursor: pointer;
    padding: 4px;
    display: flex;
    align-items: center;
}

.password-toggle svg {
    width: 18px;
    height: 18px;
    stroke: currentColor;
    fill: none;
    stroke-width: 2;
}

.form-error {
    color: #f85149;
    font-size: 0.8rem;
    margin-top: 6px;
    display: none;
}

.form-error.visible { display: block; }

.register-btn {
    width: 100%;
    padding: 14px;
    font-size: 1rem;
    font-weight: 700;
    color: #fff;
    background: var(--accent);
    border: none;
    border-radius: var(--radius-sm);
    cursor: pointer;
    transition: all var(--transition);
    margin-top: 8px;
}

.register-btn:hover {
    background: var(--accent-hover);
    box-shadow: 0 4px 20px var(--accent-glow);
}

.register-btn:disabled {
    opacity: 0.6;
    cursor: not-allowed;
}

.register-links {
    margin-top: 18px;
    font-size: 0.85rem;
    color: var(--text-muted);
}

.register-links a {
    color: var(--accent);
    font-weight: 600;
    transition: color var(--transition);
}

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

.register-terms {
    margin-top: 14px;
    font-size: 0.75rem;
    color: var(--text-dim);
}

.register-terms a {
    color: var(--text-muted);
    text-decoration: underline;
}

/* ==============================
   PRICING (matches upgrade.html)
============================== */
.pricing-section {
    position: relative;
    overflow: hidden;
}

.pricing-section-bg {
    position: absolute;
    inset: 0;
    background-image: var(--bg-img-pricing);
    background-size: cover;
    background-position: center;
    z-index: 0;
}

.pricing-section-bg::after {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(15, 21, 32, 0.95);
}

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

/* Billing toggle (from upgrade.html) */
.billing-toggle {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 48px;
    background: var(--bg-surface);
    border: 1px solid var(--border);
    border-radius: 40px;
    padding: 6px 8px;
}

.billing-toggle label {
    font-size: 14px;
    font-weight: 500;
    color: var(--text-muted);
    cursor: pointer;
    padding: 6px 16px;
    border-radius: 30px;
    transition: all 0.25s ease;
    user-select: none;
}

.billing-toggle label.active {
    color: #fff;
    background: rgba(255,255,255,0.08);
}

.billing-toggle .save-pill {
    font-size: 11px;
    font-weight: 600;
    color: #22c55e;
    background: rgba(34, 197, 94, 0.12);
    padding: 3px 10px;
    border-radius: 20px;
    letter-spacing: 0.02em;
}

.billing-toggle input[type="checkbox"] {
    display: none;
}

.toggle-track {
    position: relative;
    width: 40px;
    height: 22px;
    background: rgba(255,255,255,0.1);
    border-radius: 11px;
    cursor: pointer;
    transition: background 0.25s ease;
    flex-shrink: 0;
}

.toggle-track::after {
    content: '';
    position: absolute;
    top: 3px;
    left: 3px;
    width: 16px;
    height: 16px;
    background: #fff;
    border-radius: 50%;
    transition: transform 0.25s ease;
}

.toggle-track.yearly::after {
    transform: translateX(18px);
}

.toggle-track.yearly {
    background: var(--accent);
}

/* Plan cards */
.plan-cards {
    display: flex;
    gap: 16px;
    justify-content: center;
    align-items: stretch;
    flex-wrap: nowrap;
}

.plan-card {
    background: var(--bg-surface);
    border: 1px solid var(--border);
    border-radius: 16px;
    padding: 28px 22px 24px;
    flex: 1 1 0;
    min-width: 0;
    max-width: 280px;
    text-align: left;
    position: relative;
    transition: border-color 0.3s ease, box-shadow 0.3s ease, transform 0.3s ease;
    display: flex;
    flex-direction: column;
}

.plan-card:hover {
    border-color: rgba(255,255,255,0.12);
    transform: translateY(-2px);
    box-shadow: 0 8px 32px rgba(0,0,0,0.3);
}

.plan-card.recommended {
    border: 2px solid var(--accent);
    box-shadow: 0 0 40px rgba(255, 107, 53, 0.08);
}

.plan-card.recommended:hover {
    border-color: var(--accent);
    box-shadow: 0 8px 40px rgba(255, 107, 53, 0.15);
}

/* Most Popular plan — visually lifted, orange border, soft constant breathing glow.
   Note: no scale() — keeping equal heights across all plan cards is a visual priority.
   Distinction comes from the orange border, glow, badge, and translateY lift. */
.plan-card.most-popular {
    border: 2px solid #ff8c00;
    background: var(--bg-surface);
    transform: translateY(-16px);
    z-index: 2;
    box-shadow:
        0 0 28px rgba(255, 107, 53, 0.38),
        0 0 60px rgba(255, 140, 0, 0.20),
        0 12px 40px rgba(255, 69, 0, 0.18);
    animation: planPopularGlow 2.6s ease-in-out infinite;
    position: relative;
}

.plan-card.most-popular:hover {
    transform: translateY(-22px);
    border-color: #ffb347;
    box-shadow:
        0 0 42px rgba(255, 69, 0, 0.5),
        0 0 80px rgba(255, 140, 0, 0.32),
        0 18px 50px rgba(255, 69, 0, 0.25);
}

@keyframes planPopularGlow {
    0%, 100% {
        box-shadow:
            0 0 24px rgba(255, 107, 53, 0.30),
            0 0 50px rgba(255, 140, 0, 0.16),
            0 12px 40px rgba(255, 69, 0, 0.15);
    }
    50% {
        box-shadow:
            0 0 42px rgba(255, 107, 53, 0.55),
            0 0 90px rgba(255, 140, 0, 0.30),
            0 12px 50px rgba(255, 69, 0, 0.24);
    }
}

.plan-card.most-popular .recommended-badge {
    background: linear-gradient(135deg, #ff4500, #ff8c00, #ffd700, #ff6347, #ff4500);
    background-size: 300% 300%;
    animation: badgeFlameShift 4s ease infinite;
    box-shadow: 0 4px 18px rgba(255, 107, 53, 0.65);
    font-size: 12px;
    padding: 5px 18px;
    top: -14px;
}

@keyframes badgeFlameShift {
    0%   { background-position: 0% 50%; }
    50%  { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}

.recommended-badge {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--accent);
    color: #fff;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    padding: 4px 16px;
    border-radius: 20px;
    white-space: nowrap;
}

.plan-card .plan-name {
    font-size: 20px;
    font-weight: 700;
    color: #fff;
    margin-bottom: 4px;
}

.plan-card .plan-tagline {
    font-size: 13px;
    color: var(--text-muted);
    margin-bottom: 20px;
}

.plan-pricing {
    margin-bottom: 24px;
}

.plan-pricing .price {
    font-size: 40px;
    font-weight: 700;
    color: #fff;
    line-height: 1;
    letter-spacing: -0.03em;
}

.plan-pricing .period {
    font-size: 15px;
    font-weight: 400;
    color: var(--text-dim);
}

.plan-pricing .yearly-note {
    display: block;
    font-size: 13px;
    color: #22c55e;
    margin-top: 6px;
    font-weight: 500;
}

.plan-features {
    list-style: none;
    padding: 0;
    margin: 0 0 28px 0;
    flex: 1;
}

.plan-features li {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    font-size: 14px;
    color: #c8cdd4;
    padding: 6px 0;
    line-height: 1.5;
}

.plan-features li .icon {
    flex-shrink: 0;
    width: 18px;
    height: 18px;
    margin-top: 2px;
}

.plan-features li .icon-check {
    color: #22c55e;
}

.plan-features li .icon-x {
    color: var(--text-dim);
}

.plan-features li.disabled-feature {
    color: var(--text-dim);
}

.plan-card .plan-btn {
    display: block;
    width: 100%;
    padding: 12px 0;
    border-radius: 10px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    border: none;
    transition: all 0.2s ease;
    text-align: center;
    letter-spacing: 0.01em;
    margin-top: auto;
}

.plan-btn.primary {
    background: var(--accent);
    color: #fff;
}

.plan-btn.primary:hover:not(:disabled) {
    filter: brightness(1.1);
    box-shadow: 0 4px 16px rgba(255,107,53,0.3);
}

.plan-btn.secondary {
    background: rgba(255,255,255,0.06);
    color: #fff;
    border: 1px solid rgba(255,255,255,0.1);
}

.plan-btn.secondary:hover:not(:disabled) {
    background: rgba(255,255,255,0.1);
}

.plan-btn:disabled {
    opacity: 0.5;
    cursor: not-allowed;
}

/* ==============================
   FAQ
============================== */
.faq-list {
    max-width: 720px;
    margin: 0 auto;
}

.faq-item {
    border-bottom: 1px solid var(--border);
}

.faq-question {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    padding: 20px 0;
    background: none;
    border: none;
    color: var(--text);
    font-size: 1rem;
    font-weight: 600;
    text-align: left;
    cursor: pointer;
    transition: color var(--transition);
}

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

.faq-chevron {
    width: 20px;
    height: 20px;
    flex-shrink: 0;
    transition: transform 0.3s ease;
}

.faq-item.open .faq-chevron { transform: rotate(180deg); }

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

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

.faq-answer p {
    padding-bottom: 20px;
    color: var(--text-muted);
    font-size: 0.95rem;
    line-height: 1.7;
}

/* ==============================
   FINAL CTA
============================== */
.final-cta {
    padding: 80px 0;
    text-align: center;
    background: linear-gradient(to bottom, var(--bg), var(--bg-surface));
}

.final-cta h2 {
    font-size: clamp(1.6rem, 3.5vw, 2.4rem);
    margin-bottom: 12px;
    text-transform: uppercase;
}

.final-cta p {
    color: var(--text-muted);
    font-size: 1.05rem;
    margin-bottom: 32px;
}

.final-cta-btns {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
}

/* ==============================
   FOOTER
============================== */
.footer {
    background: var(--bg-deep);
    padding: 60px 0 32px;
    border-top: 1px solid var(--border);
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 40px;
    margin-bottom: 40px;
}

.footer-brand {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 12px;
}

.footer-brand img { width: 28px; height: 28px; }

.footer-brand span {
    font-family: 'Inter', sans-serif;
    font-weight: 900;
    font-size: 1rem;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.footer-desc {
    color: var(--text-muted);
    font-size: 0.85rem;
    line-height: 1.6;
    margin-bottom: 16px;
}

.footer-copy {
    color: var(--text-dim);
    font-size: 0.8rem;
}

.footer-col h4 {
    font-family: 'Inter', sans-serif;
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: var(--text-muted);
    margin-bottom: 16px;
}

.footer-col ul {
    list-style: none;
}

.footer-col li { margin-bottom: 10px; }

.footer-col a {
    font-size: 0.9rem;
    color: var(--text-dim);
    transition: color var(--transition);
}

.footer-col a:hover { color: var(--text); }

.footer-bottom {
    border-top: 1px solid var(--border);
    padding-top: 24px;
    text-align: center;
    color: var(--text-dim);
    font-size: 0.8rem;
}

/* ==============================
   FOUNDER STORY
============================== */
.founder-section {
    background: linear-gradient(180deg, var(--bg) 0%, var(--bg-deep) 100%);
}

.founder-card {
    display: grid;
    grid-template-columns: 320px 1fr;
    gap: 56px;
    align-items: center;
    max-width: 1080px;
    margin: 0 auto;
    padding: 40px 44px;
    background: linear-gradient(180deg, var(--bg-card) 0%, rgba(21, 28, 42, 0.6) 100%);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    box-shadow: 0 24px 60px -20px rgba(0, 0, 0, 0.5),
                0 0 0 1px rgba(255, 107, 53, 0.04) inset;
}

.founder-photo-wrap {
    position: relative;
    border-radius: 14px;
    overflow: hidden;
    aspect-ratio: 2 / 3;
    background: var(--bg-deep);
    box-shadow: 0 16px 36px -14px rgba(0, 0, 0, 0.6);
}

.founder-photo-wrap::after {
    content: "";
    position: absolute;
    inset: 0;
    border-radius: 14px;
    box-shadow: 0 0 0 1px rgba(255, 107, 53, 0.18) inset;
    pointer-events: none;
}

.founder-photo {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.founder-text {
    color: var(--text);
    font-size: 1rem;
    line-height: 1.7;
}

.founder-text p {
    margin: 0 0 16px 0;
    color: var(--text-muted);
}

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

.founder-text strong {
    color: var(--text);
    font-weight: 600;
}

.founder-greeting {
    font-size: 1.35rem;
    font-weight: 700;
    color: var(--text) !important;
    margin-bottom: 18px !important;
    letter-spacing: -0.01em;
}

.founder-closer {
    margin-top: 22px !important;
    padding-top: 18px;
    border-top: 1px solid var(--border);
    color: var(--accent) !important;
    font-weight: 600;
    font-size: 1.05rem;
    font-style: italic;
}

/* ==============================
   SCROLL ANIMATIONS
============================== */
.animate-on-scroll {
    opacity: 0;
    transform: translateY(24px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.animate-on-scroll.visible {
    opacity: 1;
    transform: translateY(0);
}

/* ==============================
   RESPONSIVE
============================== */
@media (max-width: 1024px) {
    .coaches-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    /* Neural agents diagram relies on a fixed 800x800 canvas with absolutely
       positioned 210px cards — it cannot reflow. Hide below desktop; the five
       coach cards above already represent the same info. */
    .agents-diagram-wrap { display: none; }

    .plan-cards {
        flex-wrap: wrap;
    }
    .plan-card {
        flex: 1 1 calc(50% - 16px);
        max-width: none;
    }

    .feature-row {
        grid-template-columns: 1fr;
        gap: 32px;
    }

    .feature-row.reversed .feature-text { order: 1; }
    .feature-row.reversed .feature-mockup { order: 2; }

    .video-room-mockup {
        grid-template-columns: 44px 1fr;
        height: 240px;
    }

    .vr-clips { display: none; }
}

@media (max-width: 768px) {
    .nav-links { display: none; }
    .nav-actions { display: none; }
    .nav-hamburger { display: flex; }

    .stats-strip .container {
        flex-direction: column;
        gap: 20px;
        align-items: flex-start;
    }

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

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

    .steps-grid::before { display: none; }
    .step-connector { display: none; }

    .founder-card {
        grid-template-columns: 1fr;
        gap: 28px;
        padding: 28px 22px;
        max-width: 520px;
    }

    .founder-photo-wrap {
        max-width: 280px;
        margin: 0 auto;
    }

    .founder-text {
        font-size: 0.95rem;
    }

    .founder-greeting {
        font-size: 1.2rem;
    }

    .plan-cards {
        flex-direction: column;
        align-items: center;
    }

    .plan-card {
        flex: none;
        width: 100%;
        max-width: 360px;
    }

    .footer-grid {
        grid-template-columns: 1fr;
        gap: 28px;
    }

    .section { padding: 64px 0; }

    .register-card { padding: 28px 20px; }

    .hero-logo-icon {
        width: 100px;
        height: 100px;
    }

    .video-room-mockup {
        grid-template-columns: 1fr;
        height: auto;
    }

    .vr-toolbar {
        flex-direction: row;
        border-right: none;
        border-bottom: 1px solid var(--border);
        padding: 6px 10px;
        overflow-x: auto;
    }

    .vr-tool-divider {
        width: 1px;
        height: 20px;
        margin: 0 4px;
    }

    .vr-screen { min-height: 160px; }
}

@media (max-width: 480px) {
    .billing-toggle {
        gap: 6px;
        padding: 4px 6px;
    }

    .billing-toggle label {
        padding: 6px 10px;
        font-size: 13px;
    }

    .plan-card {
        max-width: 100%;
        padding: 24px 20px 22px;
    }

    .plan-pricing .price {
        font-size: 32px;
    }

    .plan-features li {
        font-size: 13px;
    }

    .plan-btn {
        min-height: 48px;
        font-size: 15px;
    }
}
