:root {
    --navy: #0B1320;
    --accent: #22C55E;
    --accent-dark: #16A34A;
    --lime: #A3E635;
    --light: #F1F5F9;
    --accent-darker: #0d1b12;
}

body {
    margin: 0;
    font-family: 'Inter', sans-serif;
    scroll-behavior: smooth;
    overflow-x: hidden;
}

#preloader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: #0d1b12;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 9999;
    transition: opacity 0.5s ease, visibility 0.5s;
}

.loader {
    width: 50px;
    height: 50px;
    border: 5px solid rgba(34, 197, 94, 0.15);
    border-top: 5px solid #22C55E;
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

.loader-hidden {
    opacity: 0;
    visibility: hidden;
}

.navbar {
    position: fixed; top: 0; width: 100%; z-index: 1000;
    background: rgba(13, 27, 18, 0.9); backdrop-filter: blur(10px);
    padding: 1.2rem 0; border-bottom: 1px solid rgba(255,255,255,0.05);
}

.sidebar {
    position: fixed;
    top: 0;
    right: -300px;
    width: 280px;
    height: 100vh;
    background: var(--navy);
    z-index: 2000;
    display: flex;
    flex-direction: column;
    padding: 80px 40px;
    gap: 2rem;
    transition: 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    box-shadow: -10px 0 30px rgba(0,0,0,0.5);
}
.sidebar.active { right: 0; }
.sidebar a {
    color: white;
    text-decoration: none;
    font-size: 1.2rem;
    font-weight: 700;
    text-transform: uppercase;
}
.btn-sidebar-join {
    background: var(--accent);
    color: white !important;
    padding: 1rem;
    text-align: center;
    border-radius: 10px;
}
.close-btn {
    position: absolute;
    top: 20px;
    right: 50px;
    font-size: 2.5rem;
    color: white;
    background: none;
    border: none;
    cursor: pointer;
}

.hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    z-index: 1100;
    padding: 10px;
}

.hamburger span {
    display: block;
    width: 25px;
    height: 3px;
    background-color: var(--accent);
    border-radius: 3px;
    transition: 0.3s;
}

.sidebar-overlay {
    position: fixed;
    inset: 0;
    display: none;
    z-index: 1999;
    backdrop-filter: blur(4px);
}
.sidebar-overlay.active { display: block; }

.nav-container { max-width: 1200px; margin: 0 auto; display: flex; justify-content: space-between; align-items: center; padding: 0 2rem; }
.logo-group { display: flex; align-items: center; gap: 12px; text-decoration: none; color: white; font-weight: 900; font-size: 1.5rem; letter-spacing: -1px; }
.logo-group img { height: 42px; }
.nav-links { display: flex; align-items: center; gap: 2.5rem; }
.nav-links a { color: #cbd5e1; text-decoration: none; font-size: 0.85rem; font-weight: 700; text-transform: uppercase; position: relative; padding-bottom: 4px; transition: color 0.25s ease; }
.nav-links a.hover\:text-accent:hover { color: var(--accent); }
.nav-links a:not(.btn-join)::after {
    content: "";
    position: absolute;
    left: 0; bottom: 0;
    width: 0; height: 2px;
    background: var(--accent);
    transition: width 0.25s ease;
}
.nav-links a:not(.btn-join):hover::after { width: 100%; }
.btn-join { background: var(--accent); color: white !important; padding: 0.7rem 1.5rem; border-radius: 50px; }

.hero-full {
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    background:
        radial-gradient(circle at 78% 55%, rgba(34, 197, 94, 0.14) 0%, transparent 45%),
        radial-gradient(circle at 8% 15%, rgba(163, 230, 53, 0.08) 0%, transparent 40%),
        linear-gradient(180deg, #0B1320 0%, #0d1b12 100%);
    color: white;
    text-align: left;
    padding: 140px 20px 80px;
    overflow: hidden;
}
.hero-full::after {
    content: "";
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(255,255,255,0.035) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255,255,255,0.035) 1px, transparent 1px);
    background-size: 56px 56px;
    -webkit-mask-image: radial-gradient(ellipse at 60% 45%, black 0%, transparent 70%);
    mask-image: radial-gradient(ellipse at 60% 45%, black 0%, transparent 70%);
    pointer-events: none;
}

.hero-content { position: relative; z-index: 2; width: 100%; }

.hero-grid {
    display: grid;
    grid-template-columns: 1fr 1.15fr;
    align-items: center;
    gap: 50px;
}

.hero-phone-wrapper { display: flex; justify-content: center; perspective: 1400px; }

/* Subtle mouse-follow tilt, driven by JS setting --rx/--ry custom properties. */
.tilt-card {
    transform: rotateX(var(--rx, 0deg)) rotateY(var(--ry, 0deg));
    transition: transform 0.15s ease-out;
    transform-style: preserve-3d;
}

.hero-text-container h1 { font-size: 4.6rem; font-weight: 900; line-height: 1.05; margin-bottom: 2rem; text-align: left; }
.hero-text-container p { font-size: 1.3rem; color: #cbd5e1; margin-bottom: 3rem; max-width: 520px; text-align: left; }
.btn-hero { background: var(--accent); color: white; padding: 1.2rem 2.8rem; border-radius: 50px; font-weight: 900; text-decoration: none; display: inline-block; transition: 0.3s; border: none; cursor: pointer; font-size: 1rem; }
.btn-hero:hover { transform: scale(1.05); background: var(--accent-dark); }
.shadow-accent { box-shadow: 0 10px 30px rgba(34, 197, 94, 0.3); }

.phone-mockup {
    background: var(--navy);
    border: 3px solid rgba(255,255,255,0.15);
    border-radius: 36px;
    padding: 10px;
    box-shadow: 0 30px 60px rgba(0,0,0,0.5);
    max-width: 300px;
}
.phone-mockup img { width: 100%; display: block; border-radius: 24px; }
.phone-mockup-sm { max-width: 240px; }

.browser-mockup {
    background: #1b2836;
    border-radius: 18px;
    overflow: hidden;
    box-shadow: 0 40px 80px rgba(0,0,0,0.55), 0 0 0 1px rgba(163,230,53,0.08), 0 0 60px rgba(34,197,94,0.08);
    width: 100%;
    max-width: 720px;
    border: 1px solid rgba(255,255,255,0.1);
    position: relative;
}
.browser-mockup-bar {
    display: flex;
    align-items: center;
    gap: 7px;
    padding: 14px 16px;
    background: rgba(255,255,255,0.02);
    border-bottom: 1px solid rgba(255,255,255,0.06);
}
.browser-mockup .dot { width: 10px; height: 10px; border-radius: 50%; display: inline-block; }
.dot-red { background: #ef4444; }
.dot-yellow { background: #f59e0b; }
.dot-green { background: #22c55e; }
.browser-mockup-url {
    margin-left: 14px;
    font-size: 0.72rem;
    font-weight: 600;
    color: #64748b;
    background: rgba(255,255,255,0.04);
    padding: 4px 14px;
    border-radius: 6px;
    letter-spacing: 0.02em;
}
.browser-mockup img { width: 100%; display: block; }
.browser-mockup-badge {
    position: absolute;
    bottom: 18px;
    right: 18px;
    display: flex;
    align-items: center;
    gap: 8px;
    background: rgba(11, 19, 32, 0.85);
    backdrop-filter: blur(8px);
    border: 1px solid rgba(163,230,53,0.25);
    color: #cbd5e1;
    font-size: 0.72rem;
    font-weight: 700;
    padding: 8px 14px;
    border-radius: 50px;
    box-shadow: 0 10px 25px rgba(0,0,0,0.3);
}

.float-anim { animation: float 5s ease-in-out infinite; }

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

.diagonal-top {
    position: relative;
    clip-path: polygon(0 6vh, 100% 0, 100% 100%, 0 100%);
    margin-top: -6vh;
    padding-top: 18vh !important;
    padding-bottom: 150px;
}

section { padding: 120px 20px; text-align: left; }
.section-light { background: var(--light); color: var(--navy); position: relative; z-index: 1; }
.section-navy { background: var(--accent-darker); color: white; position: relative; z-index: 2; }
.section-accent { background: var(--accent-darker); color: white; position: relative; z-index: 2; }
.section-white { background: white; color: var(--navy); }

.container { max-width: 1200px; margin: 0 auto; }
.container-narrow { max-width: 1000px; margin: 0 auto; }

.label { text-transform: uppercase; font-weight: 900; letter-spacing: 3px; font-size: 0.85rem; color: var(--accent-dark); margin-bottom: 25px; display: block; text-align: center; }
.text-accent { color: var(--accent); }
.text-accentDark { color: var(--accent-dark); }
.section-title { font-size: 3.8rem; font-weight: 900; margin-bottom: 35px; line-height: 1.1; text-align: center; }
.section-text { font-size: 1.3rem; color: #64748b; line-height: 1.6; text-align: left; }
.text-slate-400 { text-align: center; }

.p-highlight {
    background: #ffffff;
    padding: 25px;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
    font-size: 1.1rem;
    line-height: 1.5;
    border-left: 5px solid #ef4444;
}

.features-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(320px, 1fr)); gap: 30px; margin-top: 60px; }
.feature-card { padding: 50px 40px; background: rgba(255,255,255,0.03); border: 1px solid rgba(255,255,255,0.1); border-radius: 35px; text-align: left; transition: transform 0.4s cubic-bezier(0.175,0.885,0.32,1.275), border-color 0.4s ease, background 0.4s ease; }
.feature-card:hover { transform: translateY(-8px); border-color: rgba(34,197,94,0.35); background: rgba(255,255,255,0.05); }
.feature-card h4 { font-size: 1.5rem; font-weight: 900; margin-bottom: 15px; }
.feature-icon { font-size: 2.2rem; margin-bottom: 10px; }

.feature-list-check {
    list-style: none;
    padding: 0;
    margin-top: 20px;
    border-top: 1px solid rgba(255,255,255,0.1);
    padding-top: 20px;
}
.feature-list-check li { margin-bottom: 10px; display: flex; align-items: center; gap: 10px; font-weight: 600; }

.steps-v2 {
    display: flex;
    flex-direction: column;
    margin-top: 80px;
}

.step-row {
    display: grid;
    grid-template-columns: auto 1fr;
    align-items: center;
    gap: 80px;
    max-width: 1100px;
    margin: 0 auto;
}

.step-image-wrapper { display: flex; justify-content: flex-start; }

.step-row.reverse {
    display: grid;
    grid-template-columns: 1fr auto;
    align-items: center;
    gap: 80px;
    max-width: 1100px;
    margin: 0 auto;
}
.step-row.reverse .step-info {
    order: 1;
    text-align: right;
    display: flex;
    flex-direction: column;
    align-items: flex-end;
}
.step-row.reverse .step-image-wrapper {
    order: 2;
    justify-content: flex-end;
}

.step-row:hover .phone-mockup { transform: translateY(-15px); }
.phone-mockup { transition: 0.5s ease; }
.step-num-v2 { font-size: 6rem; font-weight: 900; line-height: 1; display: block; margin-bottom: 20px; }
.step-info h4 { font-size: 2.2rem; font-weight: 900; margin-bottom: 20px; }
.step-info p { font-size: 1.25rem; color: #64748b; line-height: 1.6; max-width: 500px; }

.billing-cycle {
    font-size: 0.9rem;
    color: #64748b;
    margin-top: -15px;
    margin-bottom: 25px;
    font-weight: 600;
}

.price-card ul {
    list-style: none;
    padding: 0;
    margin-bottom: 30px;
}

.price-card ul li {
    margin-bottom: 12px;
    color: #475569;
    font-weight: 500;
}

.pricing-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(320px, 1fr)); gap: 30px; margin-top: 30px; align-items: center; }
.price-card {
    padding: 60px 40px;
    background: var(--light);
    border-radius: 40px;
    border: 2px solid #e2e8f0;
    text-align: left;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}
.price-card:hover { transform: translateY(-10px) scale(1.02); border-color: var(--navy); box-shadow: 0 25px 50px rgba(0,0,0,0.1); }

.badge {
    position: absolute; top: -20px; left: 50%; transform: translateX(-50%);
    background: var(--navy); color: var(--lime); padding: 8px 25px;
    border-radius: 50px; font-weight: 900; font-size: 0.75rem; text-transform: uppercase;
}

.btn-card { width: 100%; padding: 1.3rem; border-radius: 20px; border: 2px solid var(--navy); background: transparent; color: var(--navy); font-weight: 900; cursor: pointer; transition: 0.3s; }
.btn-card:hover { background: var(--navy); color: white; }
.btn-card-filled { width: 100%; padding: 1.3rem; border-radius: 20px; border: none; background: var(--navy); color: white; font-weight: 900; cursor: pointer; transition: 0.3s; text-align: center; }
.btn-card-filled:hover { background: var(--accent); color: white; box-shadow: 0 10px 20px rgba(34, 197, 94, 0.3); }

.single-price-card {
    max-width: 460px;
    margin: 0 auto;
    padding: 60px 50px;
    background: var(--light);
    border: 4px solid var(--navy);
    border-radius: 40px;
    text-align: center;
}

.billing-toggle {
    display: inline-flex;
    background: white;
    border: 2px solid #e2e8f0;
    border-radius: 50px;
    padding: 5px;
    margin-bottom: 35px;
}
.toggle-btn {
    border: none;
    background: transparent;
    padding: 0.7rem 1.4rem;
    border-radius: 50px;
    font-weight: 800;
    font-size: 0.9rem;
    color: #64748b;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: 0.25s;
    font-family: inherit;
}
.toggle-btn.active { background: var(--navy); color: white; }
.save-pill {
    background: var(--accent);
    color: white;
    font-size: 0.65rem;
    font-weight: 900;
    padding: 3px 8px;
    border-radius: 20px;
}

.single-price { display: flex; align-items: baseline; justify-content: center; gap: 6px; }
.price-amount { font-size: 4.5rem; font-weight: 900; color: var(--navy); }
.price-suffix { font-size: 1.3rem; color: #94a3b8; font-weight: 700; }
.price-note { color: #64748b; font-weight: 600; margin-top: 8px; margin-bottom: 35px; font-size: 0.95rem; }

.single-plan-list { list-style: none; padding: 0; margin: 0 0 35px; text-align: left; }
.single-plan-list li { padding: 10px 0; border-bottom: 1px solid #e2e8f0; font-weight: 600; color: #334155; }
.single-plan-list li:last-child { border-bottom: none; }

.contact-form { display: flex; flex-direction: column; gap: 20px; margin-top: 40px; }
.contact-form input { padding: 1.5rem; border-radius: 20px; border: 1px solid rgba(255,255,255,0.1); background: rgba(255,255,255,0.05); color: white; outline: none; font-family: inherit; }
.contact-form input::placeholder { color: #94a3b8; }
footer { padding: 80px 0; background: #0d1b12 ; color: #475569; text-align: center; }
.footer-logo { font-size: 1.8rem; font-weight: 900; color: white; }
.footer-tagline { color: var(--accent); font-weight: 700; letter-spacing: 2px; text-transform: uppercase; font-size: 0.8rem; margin: 10px 0 20px; }

#bundle-pricing .price-card {
    color: var(--accent);
}

#bundle-pricing .price-card h4,
#bundle-pricing .price-card .price {
    color: var(--navy);
}

#bundle-pricing .price-card ul li {
    color: #475569;
}

#bundle-pricing .billing-cycle {
    color: #64748b;
}

#bundle-pricing .price-card.featured {
    background: white;
    border: 4px solid var(--navy);
}
#bundle-pricing .price-card.featured:hover {
    border-color: var(--accent);
}
.price { 
    font-size: 4.5rem; 
    font-weight: 900; 
    margin: 25px 0; 
    color: var(--navy) !important;
}
.price span { 
    font-size: 1.2rem; 
    color: #94a3b8; 
}

.price-card.featured { 
    position: relative; 
    transform: scale(1.05); 
    z-index: 5; 
    border: 4px solid var(--navy);
    background: white;
}
.price-card.featured:hover { 
    transform: scale(1.08) translateY(-10px); 
    border-color: var(--accent); 
}

.badge {
    color: var(--navy);
    background: var(--accent);
    box-shadow: 0 4px 10px rgba(34, 197, 94, 0.3);
}

#bundle-pricing .price {
    color: var(--navy);
}

@media (max-width: 1024px) {
    .hero-grid { grid-template-columns: 1fr; }
    .hero-text-container { text-align: left; }
    .hero-text-container h1 { font-size: 3.2rem; text-align: left; }
    .hero-phone-wrapper { margin-top: 40px; }
    .hero-full { padding: 150px 20px 80px; }

    .step-row, .step-row.reverse {
        grid-template-columns: 1fr;
        text-align: left;
        gap: 40px;
    }
    .step-row.reverse .step-info { order: 2; align-items: flex-start; text-align: left; }
    .step-row.reverse .step-image-wrapper { order: 1; justify-content: flex-start; }
    .step-image-wrapper { justify-content: flex-start; }

    .hamburger { display: flex !important; }
    .desktop-menu { display: none !important; }
}

/* ============================================
   MOTION SYSTEM — subtle scroll reveals
   ============================================ */
.reveal {
    opacity: 0;
    transform: translateY(28px);
    transition: opacity 0.8s cubic-bezier(0.16,1,0.3,1), transform 0.8s cubic-bezier(0.16,1,0.3,1);
    will-change: opacity, transform;
}
.reveal.is-visible { opacity: 1; transform: translateY(0); }

.reveal-stagger > * {
    opacity: 0;
    transform: translateY(24px);
    transition: opacity 0.7s cubic-bezier(0.16,1,0.3,1), transform 0.7s cubic-bezier(0.16,1,0.3,1);
}
.reveal-stagger.is-visible > * { opacity: 1; transform: translateY(0); }
.reveal-stagger.is-visible > *:nth-child(1) { transition-delay: 0.05s; }
.reveal-stagger.is-visible > *:nth-child(2) { transition-delay: 0.15s; }
.reveal-stagger.is-visible > *:nth-child(3) { transition-delay: 0.25s; }
.reveal-stagger.is-visible > *:nth-child(4) { transition-delay: 0.35s; }
.reveal-stagger.is-visible > *:nth-child(5) { transition-delay: 0.45s; }

@media (prefers-reduced-motion: reduce) {
    .reveal, .reveal-stagger > * {
        opacity: 1 !important; transform: none !important; transition: none !important;
    }
}

/* ============================================
   HERO — pulse glow + live badge
   ============================================ */
.hero-full::before {
    content: "";
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 72% 62%, rgba(163, 230, 53, 0.1) 0%, transparent 45%);
    animation: pulseGlow 6s ease-in-out infinite;
    pointer-events: none;
}
@keyframes pulseGlow {
    0%, 100% { opacity: 0.5; }
    50% { opacity: 1; }
}

.live-pill {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 8px 18px;
    border-radius: 50px;
    border: 1px solid rgba(163, 230, 53, 0.35);
    background: rgba(163, 230, 53, 0.08);
    color: var(--lime);
    font-weight: 800;
    font-size: 0.78rem;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    margin-bottom: 28px;
}
.live-dot {
    width: 8px; height: 8px; border-radius: 50%;
    background: var(--lime);
    box-shadow: 0 0 0 0 rgba(163, 230, 53, 0.6);
    animation: livePulse 2s ease-in-out infinite;
}
@keyframes livePulse {
    0% { box-shadow: 0 0 0 0 rgba(163, 230, 53, 0.55); }
    70% { box-shadow: 0 0 0 8px rgba(163, 230, 53, 0); }
    100% { box-shadow: 0 0 0 0 rgba(163, 230, 53, 0); }
}

.hero-stats-row {
    display: flex;
    gap: 40px;
    margin-top: 50px;
    flex-wrap: wrap;
}
.hero-stat { text-align: left; transition: transform 0.3s ease; }
.hero-stat:hover { transform: translateY(-4px); }
.hero-stat-num { font-size: 2.2rem; font-weight: 900; color: var(--lime); line-height: 1; display: block; }
.hero-stat-label { font-size: 0.85rem; color: #94a3b8; font-weight: 600; margin-top: 6px; }

/* ============================================
   TECHNOLOGY / SPECS SECTION
   ============================================ */
.tech-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 24px;
    margin-top: 60px;
}
.tech-card {
    padding: 40px 34px;
    background: rgba(255,255,255,0.03);
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: 28px;
    text-align: left;
    transition: 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
    overflow: hidden;
}
.tech-card::before {
    content: "";
    position: absolute;
    top: -40%; right: -40%;
    width: 60%; height: 60%;
    background: radial-gradient(circle, rgba(163,230,53,0.15) 0%, transparent 70%);
    opacity: 0;
    transition: opacity 0.4s ease;
}
.tech-card:hover { transform: translateY(-8px); border-color: rgba(163,230,53,0.3); }
.tech-card:hover::before { opacity: 1; }
.tech-card-tag {
    display: inline-block;
    font-size: 0.7rem;
    font-weight: 900;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--lime);
    background: rgba(163,230,53,0.1);
    padding: 5px 12px;
    border-radius: 50px;
    margin-bottom: 18px;
}
.tech-card h4 { font-size: 1.3rem; font-weight: 900; margin-bottom: 12px; color: white; }
.tech-card p { font-size: 1rem; color: #94a3b8; line-height: 1.6; margin: 0; }

/* ============================================
   WEB VS APP COMPARISON
   ============================================ */
.compare-wrap {
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    gap: 40px;
    align-items: stretch;
    margin-top: 60px;
}
.compare-panel {
    background: white;
    border: 2px solid #e2e8f0;
    border-radius: 32px;
    padding: 48px 40px;
    transition: 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}
.compare-panel:hover { transform: translateY(-6px); box-shadow: 0 25px 50px rgba(0,0,0,0.08); }
.compare-panel-tag {
    display: inline-block;
    font-size: 0.72rem;
    font-weight: 900;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    padding: 6px 14px;
    border-radius: 50px;
    margin-bottom: 20px;
}
.compare-panel.for-staff .compare-panel-tag { background: var(--navy); color: var(--lime); }
.compare-panel.for-athlete .compare-panel-tag { background: rgba(34,197,94,0.12); color: var(--accent-dark); }
.compare-panel h4 { font-size: 1.7rem; font-weight: 900; margin-bottom: 10px; color: var(--navy); }
.compare-panel > p.compare-sub { color: #64748b; font-size: 1rem; margin-bottom: 26px; }
.compare-list { list-style: none; padding: 0; margin: 0; }
.compare-list li {
    padding: 12px 0;
    border-bottom: 1px solid #f1f5f9;
    font-weight: 600;
    color: #334155;
    display: flex;
    align-items: flex-start;
    gap: 10px;
}
.compare-list li:last-child { border-bottom: none; }
.compare-list li::before {
    content: "";
    flex-shrink: 0;
    margin-top: 7px;
    width: 7px; height: 7px;
    border-radius: 50%;
    background: var(--accent);
}

.compare-sync {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 14px;
    padding: 0 6px;
}
.compare-sync-line {
    width: 2px;
    flex: 1;
    min-height: 60px;
    background: repeating-linear-gradient(to bottom, var(--accent) 0, var(--accent) 6px, transparent 6px, transparent 12px);
}
.compare-sync-icon {
    width: 54px; height: 54px;
    border-radius: 50%;
    background: var(--navy);
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 0 0 6px rgba(34,197,94,0.08);
    flex-shrink: 0;
    animation: syncPulse 2.4s ease-in-out infinite;
}
@keyframes syncPulse {
    0%, 100% { box-shadow: 0 0 0 6px rgba(34,197,94,0.08); }
    50% { box-shadow: 0 0 0 12px rgba(34,197,94,0.14); }
}
.compare-sync-label {
    text-align: center;
    font-size: 0.75rem;
    font-weight: 800;
    color: #94a3b8;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    max-width: 90px;
}

/* ============================================
   ATHLETIC TRAINER SECTION
   ============================================ */
.at-wrap {
    display: grid;
    grid-template-columns: 0.85fr 1.15fr;
    gap: 70px;
    align-items: center;
    margin-top: 60px;
}
.at-bodymap {
    position: relative;
    max-width: 320px;
    margin: 0 auto;
}
.at-body-img {
    width: 100%;
    display: block;
    filter: drop-shadow(0 20px 40px rgba(0,0,0,0.4));
}
.at-dot {
    position: absolute;
    width: 16px; height: 16px;
    border-radius: 50%;
    border: none;
    padding: 0;
    background: #ef4444;
    box-shadow: 0 0 0 6px rgba(239, 68, 68, 0.2);
    animation: atPing 2.2s ease-in-out infinite;
    cursor: pointer;
}
.at-dot-recovering {
    background: #f59e0b;
    box-shadow: 0 0 0 6px rgba(245, 158, 11, 0.2);
    animation: atPingAmber 2.2s ease-in-out infinite;
}
@keyframes atPingAmber {
    0%, 100% { box-shadow: 0 0 0 6px rgba(245, 158, 11, 0.2); }
    50% { box-shadow: 0 0 0 11px rgba(245, 158, 11, 0.05); }
}

.at-tooltip {
    position: absolute;
    bottom: calc(100% + 14px);
    left: 50%;
    transform: translate(-50%, 8px);
    width: 220px;
    background: #101c2e;
    border: 1px solid rgba(255,255,255,0.12);
    border-radius: 14px;
    padding: 16px 18px;
    text-align: left;
    box-shadow: 0 20px 40px rgba(0,0,0,0.5);
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: opacity 0.25s ease, transform 0.25s ease;
    z-index: 10;
}
.at-tooltip::after {
    content: "";
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%);
    border: 7px solid transparent;
    border-top-color: #101c2e;
}
.at-dot:hover .at-tooltip,
.at-dot:focus-visible .at-tooltip {
    opacity: 1;
    visibility: visible;
    transform: translate(-50%, 0);
}
.at-tooltip strong { display: block; color: white; font-size: 0.95rem; margin-bottom: 8px; }
.at-tooltip-row { display: flex; align-items: center; gap: 8px; font-size: 0.85rem; color: #cbd5e1; font-weight: 600; }
.at-tooltip-sub { display: block; margin-top: 8px; font-size: 0.78rem; color: #64748b; line-height: 1.4; }
.at-tooltip-tag {
    display: inline-block;
    font-size: 0.65rem;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 0.04em;
    padding: 3px 9px;
    border-radius: 50px;
}
.at-tooltip-tag.active { background: rgba(239,68,68,0.15); color: #fca5a5; }
.at-tooltip-tag.recovering { background: rgba(245,158,11,0.15); color: #fcd34d; }
@keyframes atPing {
    0%, 100% { box-shadow: 0 0 0 6px rgba(239, 68, 68, 0.2); }
    50% { box-shadow: 0 0 0 11px rgba(239, 68, 68, 0.05); }
}

.at-status-track {
    display: flex;
    align-items: center;
    gap: 8px;
    margin: 30px 0 34px;
    flex-wrap: wrap;
}
.at-status-step {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 8px 16px;
    border-radius: 50px;
    font-size: 0.78rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    background: rgba(255,255,255,0.05);
    color: #94a3b8;
    border: 1px solid rgba(255,255,255,0.1);
}
.at-status-step.active { background: rgba(239,68,68,0.12); color: #fca5a5; border-color: rgba(239,68,68,0.3); }
.at-status-step.recovering { background: rgba(245,158,11,0.12); color: #fcd34d; border-color: rgba(245,158,11,0.3); }
.at-status-step.resolved { background: rgba(34,197,94,0.12); color: var(--accent); border-color: rgba(34,197,94,0.3); }
.at-status-arrow { color: #475569; font-weight: 900; }

.at-list { list-style: none; padding: 0; margin: 0; display: grid; gap: 16px; }
.at-list li {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    color: #cbd5e1;
    font-size: 1.05rem;
    line-height: 1.5;
}
.at-list li strong { color: white; }
.at-check {
    flex-shrink: 0;
    width: 26px; height: 26px;
    border-radius: 8px;
    background: rgba(163,230,53,0.12);
    color: var(--lime);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 900;
    font-size: 0.85rem;
    margin-top: 2px;
}

@media (max-width: 1024px) {
    .compare-wrap { grid-template-columns: 1fr; }
    .compare-sync { flex-direction: row; padding: 20px 0; }
    .compare-sync-line { width: auto; flex: 1; height: 2px; min-height: 0; background: repeating-linear-gradient(to right, var(--accent) 0, var(--accent) 6px, transparent 6px, transparent 12px); }
    .at-wrap { grid-template-columns: 1fr; }
    .hero-stats-row { gap: 28px; }
}

@media (max-width: 640px) {
    .section-title { font-size: 2.4rem; }
    .hero-text-container h1 { font-size: 2.4rem; }
    .tech-grid { grid-template-columns: 1fr; }
}
