:root {
    --red: #e8000d;
    --red-dark: #9a0009;
    --red-glow: rgba(232,0,13,0.35);
    --black: #050505;
    --surface: #0e0e0e;
    --surface2: #161616;
    --border: #222;
    --text: #f0ede8;
    --muted: #888;
    --gold: #c9a84c;
}

*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }

body {
    font-family: 'Barlow', sans-serif;
    background: var(--black);
    color: var(--text);
    overflow-x: hidden;
    cursor: none;
}

/* CURSOR */
.cursor {
    position: fixed;
    width: 10px; height: 10px;
    background: var(--red);
    border-radius: 50%;
    pointer-events: none;
    z-index: 9999;
    transform: translate(-50%,-50%);
    transition: width .15s, height .15s;
}
.cursor-ring {
    position: fixed;
    width: 36px; height: 36px;
    border: 1.5px solid var(--red);
    border-radius: 50%;
    pointer-events: none;
    z-index: 9998;
    transform: translate(-50%,-50%);
    transition: width .2s, height .2s;
    opacity: 0.6;
}

/* NOISE OVERLAY */
body::before {
    content: '';
    position: fixed; inset: 0;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
    opacity: 0.025;
    pointer-events: none;
    z-index: 1000;
}

/* NAV */
nav {
    position: fixed; top: 0; left: 0; right: 0;
    z-index: 500;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 60px;
    height: 72px;
    background: rgba(5,5,5,0.85);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(232,0,13,0.15);
    transition: background .3s;
}

.nav-brand {
    display: flex; align-items: center; gap: 14px;
    text-decoration: none;
}
.nav-logo {
    width: 44px; height: 44px;
    border-radius: 50%;
    border: 2px solid var(--red);
    object-fit: cover;
}
.nav-name {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 26px; letter-spacing: 4px;
    color: #fff; line-height: 1;
}
.nav-name span { color: var(--red); }

.nav-links { display: flex; gap: 36px; list-style: none; }
.nav-links a {
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 13px; font-weight: 600;
    letter-spacing: 2.5px; text-transform: uppercase;
    color: var(--muted); text-decoration: none;
    position: relative; transition: color .2s;
}
.nav-links a::after {
    content: ''; position: absolute;
    bottom: -4px; left: 0;
    width: 0; height: 1.5px;
    background: var(--red);
    transition: width .25s ease;
}
.nav-links a:hover { color: #fff; }
.nav-links a:hover::after { width: 100%; }
.nav-cta {
    color: #fff !important;
    background: var(--red);
    padding: 10px 22px;
}
.nav-cta::after { display: none !important; }
.nav-cta:hover { background: #ff1a24 !important; }

/* HERO */
.hero {
    position: relative;
    height: 100vh; min-height: 700px;
    display: flex; align-items: flex-end;
    overflow: hidden;
}
.hero-bg {
    position: absolute; inset: 0;
    background: url('images/ko.png') center/cover no-repeat;
    transform: scale(1.06);
    transition: transform 10s ease;
}
.hero-bg.loaded { transform: scale(1); }
.hero-gradient {
    position: absolute; inset: 0;
    background:
        linear-gradient(to top, rgba(5,5,5,1) 0%, rgba(5,5,5,0.55) 45%, rgba(5,5,5,0.1) 100%),
        linear-gradient(to right, rgba(5,5,5,0.75) 0%, transparent 65%);
}
.hero-accent {
    position: absolute; top: 0; right: 0;
    width: 4px; height: 100%;
    background: linear-gradient(to bottom, transparent, var(--red), transparent);
}
.hero-content {
    position: relative; z-index: 2;
    padding: 0 60px 90px;
    max-width: 880px;
}
.hero-eyebrow {
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 13px; font-weight: 600;
    letter-spacing: 5px; text-transform: uppercase;
    color: var(--red); margin-bottom: 20px;
    opacity: 0; transform: translateY(20px);
    animation: fadeUp .7s .3s forwards;
}
.hero-title {
    font-family: 'Bebas Neue', sans-serif;
    font-size: clamp(72px, 10vw, 140px);
    line-height: 0.92; letter-spacing: 2px; color: #fff;
    opacity: 0; transform: translateY(30px);
    animation: fadeUp .8s .5s forwards;
}
.hero-title .outline {
    -webkit-text-stroke: 2px rgba(255,255,255,0.7);
    color: transparent;
}
.hero-title .red { color: var(--red); }
.hero-sub {
    font-size: 18px; font-weight: 300;
    color: rgba(240,237,232,0.6);
    margin-top: 24px; max-width: 460px; line-height: 1.65;
    opacity: 0; transform: translateY(20px);
    animation: fadeUp .7s .8s forwards;
}
.hero-actions {
    display: flex; gap: 16px; margin-top: 36px;
    opacity: 0; transform: translateY(20px);
    animation: fadeUp .7s 1s forwards;
}

.btn-primary {
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 14px; font-weight: 700;
    letter-spacing: 2.5px; text-transform: uppercase;
    color: #fff; background: var(--red);
    padding: 16px 36px; text-decoration: none;
    position: relative; overflow: hidden;
    transition: transform .2s;
}
.btn-primary::before {
    content: ''; position: absolute; inset: 0;
    background: rgba(255,255,255,0.12);
    transform: translateX(-100%);
    transition: transform .3s ease;
}
.btn-primary:hover::before { transform: translateX(0); }
.btn-primary:hover { transform: translateY(-2px); }

.btn-ghost {
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 14px; font-weight: 600;
    letter-spacing: 2.5px; text-transform: uppercase;
    color: rgba(240,237,232,0.65); background: transparent;
    padding: 16px 36px; text-decoration: none;
    border: 1px solid rgba(240,237,232,0.2);
    transition: color .2s, border-color .2s;
}
.btn-ghost:hover { color: #fff; border-color: rgba(240,237,232,0.5); }

.hero-stats {
    position: absolute; right: 60px; bottom: 90px;
    display: flex; flex-direction: column; gap: 28px;
    text-align: right; z-index: 2;
    opacity: 0; animation: fadeIn 1s 1.2s forwards;
}
.stat-num {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 44px; line-height: 1; color: #fff;
}
.stat-num span { color: var(--red); }
.stat-label {
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 11px; letter-spacing: 2px;
    text-transform: uppercase; color: var(--muted);
}

.scroll-hint {
    position: absolute; bottom: 36px; left: 50%;
    transform: translateX(-50%);
    display: flex; flex-direction: column; align-items: center; gap: 8px;
    z-index: 2; opacity: 0; animation: fadeIn 1s 1.5s forwards;
}
.scroll-hint span {
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 10px; letter-spacing: 3px;
    text-transform: uppercase; color: var(--muted);
}
.scroll-line {
    width: 1px; height: 50px;
    background: linear-gradient(to bottom, var(--red), transparent);
    animation: scrollPulse 1.8s infinite;
}

/* SECTION BASE */
.section-label {
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 11px; font-weight: 600;
    letter-spacing: 4px; text-transform: uppercase;
    color: var(--red); margin-bottom: 16px;
}
.section-title {
    font-family: 'Bebas Neue', sans-serif;
    font-size: clamp(48px, 6vw, 80px);
    line-height: 1; color: #fff; letter-spacing: 1px;
}
.divider {
    width: 48px; height: 3px;
    background: var(--red); margin: 24px 0;
}

/* ABOUT */
.about-wrap {
    padding: 140px 60px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 100px; align-items: center;
    max-width: 1300px; margin: 0 auto;
}
.about-text p {
    font-size: 17px; font-weight: 300;
    color: rgba(240,237,232,0.65);
    line-height: 1.85; margin-bottom: 18px;
}
.about-text p strong { color: var(--text); font-weight: 600; }
.about-img-wrap { position: relative; }
.about-img-wrap img {
    width: 100%; aspect-ratio: 4/5;
    object-fit: cover; display: block;
    filter: grayscale(25%);
}
.about-img-wrap::before {
    content: ''; position: absolute;
    top: -16px; right: -16px;
    width: 55%; height: 55%;
    border-top: 2px solid var(--red);
    border-right: 2px solid var(--red);
    pointer-events: none; z-index: 1;
}
.about-img-wrap::after {
    content: ''; position: absolute;
    bottom: -16px; left: -16px;
    width: 55%; height: 55%;
    border-bottom: 2px solid var(--red);
    border-left: 2px solid var(--red);
    pointer-events: none; z-index: 1;
}
.about-badge {
    position: absolute; top: 24px; right: -24px;
    background: var(--red); padding: 20px 28px; z-index: 2;
}
.about-badge .num {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 48px; line-height: 1; color: #fff;
}
.about-badge .txt {
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 11px; letter-spacing: 2px;
    text-transform: uppercase; color: rgba(255,255,255,0.75);
}

@media (max-width: 900px) {
    .about-badge { top: 16px; right: 0; padding: 14px 20px; }
    .about-badge .num { font-size: 36px; }
}

/* TEAM / COACHING STAFF */
.team-section {
    background: var(--surface);
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
    padding: 140px 60px;
}
.team-inner { max-width: 1300px; margin: 0 auto; }

.team-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2px;
    background: var(--border);
    margin-top: 64px;
}

.team-card {
    background: var(--surface);
    position: relative; overflow: hidden;
    transition: background .3s;
}
.team-card:hover { background: #131313; }

/* Founder card spans wider feel with red accent */
.team-card.founder-card::after {
    content: '';
    position: absolute;
    top: 0; left: 0;
    width: 3px; height: 100%;
    background: var(--red);
}

.team-card-img {
    position: relative;
    overflow: hidden;
}
.team-card-img img {
    width: 100%;
    aspect-ratio: 1 / 1;
    object-fit: cover;
    object-position: top;
    display: block;
    filter: grayscale(30%);
    transition: filter .4s ease, transform .5s ease;
}
.team-card:hover .team-card-img img {
    filter: grayscale(0%);
    transform: scale(1.04);
}

.team-card-img-overlay {
    position: absolute; inset: 0;
    background: linear-gradient(to top, rgba(14,14,14,1) 0%, transparent 60%);
}

.team-ring-wrap {
    position: absolute; inset: 0;
    display: flex; align-items: center; justify-content: center;
    pointer-events: none;
}

/* Spinning ring only on founder */
.team-ring {
    position: absolute;
    width: calc(100% - 24px);
    aspect-ratio: 1;
    border-radius: 0;
    border: 1px solid rgba(232,0,13,0.18);
    animation: spin 18s linear infinite;
}
.team-ring::before {
    content: ''; position: absolute;
    top: -3px; left: 50%;
    width: 6px; height: 6px;
    background: var(--red); border-radius: 50%;
    transform: translateX(-50%);
}

.team-card-body { padding: 28px 32px 36px; }

.team-card-badge {
    display: inline-block;
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 10px; font-weight: 700;
    letter-spacing: 2.5px; text-transform: uppercase;
    color: var(--red);
    border: 1px solid rgba(232,0,13,0.35);
    padding: 4px 12px;
    margin-bottom: 14px;
}

.team-card-name {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 32px; letter-spacing: 1.5px;
    color: #fff; line-height: 1;
    margin-bottom: 6px;
}

.team-card-role {
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 12px; letter-spacing: 2.5px;
    text-transform: uppercase;
    color: var(--muted);
    margin-bottom: 18px;
}

.team-card-divider {
    width: 32px; height: 2px;
    background: var(--red);
    margin-bottom: 16px;
}

.team-card-bio {
    font-size: 14px; font-weight: 300;
    color: rgba(240,237,232,0.55); line-height: 1.75;
}

/* ATHLETES SLIDER */
.athletes-outer {
    padding: 140px 0 140px 60px;
    overflow: hidden;
}
.athletes-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    margin-bottom: 64px;
    padding-right: 60px;
}
.athletes-controls {
    display: flex;
    align-items: center;
    gap: 16px;
}
.slider-btn {
    width: 48px; height: 48px;
    border: 1px solid var(--border);
    background: transparent;
    color: var(--text);
    font-size: 20px;
    cursor: none;
    display: flex; align-items: center; justify-content: center;
    transition: background .2s, border-color .2s;
}
.slider-btn:hover { background: var(--red); border-color: var(--red); }
.slider-counter {
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 13px; letter-spacing: 2px;
    color: var(--muted);
    min-width: 48px; text-align: center;
}
.slider-counter span { color: var(--text); }

.athletes-track-wrap {
    overflow: hidden;
    cursor: grab;
    user-select: none;
}
.athletes-track-wrap:active { cursor: grabbing; }

.athletes-grid {
    display: flex;
    gap: 2px;
    transition: transform .5s cubic-bezier(.4,0,.2,1);
    will-change: transform;
}

.athlete-card {
    position: relative; overflow: hidden;
    background: var(--surface2);
    flex: 0 0 320px;
    height: 480px;
}

.athlete-card img {
    width: 100%; height: 100%;
    object-fit: cover; display: block;
    filter: grayscale(55%) contrast(1.1);
    transition: filter .5s ease, transform .6s ease;
    pointer-events: none;
}
.athlete-card:hover img {
    filter: grayscale(0%) contrast(1.05);
    transform: scale(1.06);
}
.athlete-overlay {
    position: absolute; inset: 0;
    background: linear-gradient(to top, rgba(5,5,5,0.96) 0%, rgba(5,5,5,0.35) 50%, transparent 100%);
    display: flex; flex-direction: column;
    justify-content: flex-end;
    padding: 28px 22px;
}
.athlete-num {
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 11px; letter-spacing: 3px; color: var(--red);
    margin-bottom: 4px;
}
.athlete-name {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 26px; letter-spacing: 1px;
    color: #fff; line-height: 1.1;
}
.athlete-achievements {
    max-height: 0; overflow: hidden;
    transition: max-height .4s ease;
}
.athlete-card:hover .athlete-achievements { max-height: 160px; }
.achievement-item {
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 12px; letter-spacing: 0.5px;
    color: rgba(240,237,232,0.6);
    padding: 4px 0;
    border-top: 1px solid rgba(255,255,255,0.07);
}
.achievement-item:first-child { border-top: none; margin-top: 10px; }
.gold { color: var(--gold); }

/* Slider dots */
.slider-dots {
    display: flex; gap: 8px;
    margin-top: 32px; padding-right: 60px;
    justify-content: flex-end;
}
.dot {
    width: 24px; height: 2px;
    background: var(--border);
    transition: background .3s, width .3s;
    cursor: pointer;
}
.dot.active { background: var(--red); width: 40px; }

/* PROGRAMS */
.programs-outer {
    background: var(--surface);
    padding: 140px 60px;
    border-top: 1px solid var(--border);
}
.programs-inner { max-width: 1300px; margin: 0 auto; }
.programs-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1px; background: var(--border);
    margin-top: 64px;
}
.program-card {
    background: var(--surface);
    padding: 52px 44px;
    position: relative; overflow: hidden;
    transition: background .3s;
}
.program-card::before {
    content: ''; position: absolute;
    bottom: 0; left: 0;
    width: 100%; height: 3px;
    background: var(--red);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform .4s ease;
}
.program-card:hover { background: #131313; }
.program-card:hover::before { transform: scaleX(1); }
.program-num {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 72px; line-height: 1;
    color: rgba(232,0,13,0.07);
    position: absolute; top: 24px; right: 28px;
    transition: color .3s; user-select: none;
}
.program-card:hover .program-num { color: rgba(232,0,13,0.14); }
.program-level {
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 11px; letter-spacing: 3px;
    text-transform: uppercase; color: var(--red);
    margin-bottom: 16px;
}
.program-title {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 44px; letter-spacing: 1px;
    color: #fff; margin-bottom: 20px;
}
.program-desc {
    font-size: 15px; font-weight: 300;
    color: rgba(240,237,232,0.5); line-height: 1.75;
}
.program-tags {
    display: flex; flex-wrap: wrap; gap: 8px;
    margin-top: 28px;
}
.program-tag {
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 11px; letter-spacing: 1.5px;
    text-transform: uppercase; color: var(--muted);
    border: 1px solid var(--border); padding: 5px 12px;
}

/* SOCIAL */
.social-outer {
    padding: 140px 60px;
    max-width: 1300px; margin: 0 auto;
}
.social-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1px; background: var(--border);
    margin-top: 64px;
}
.social-card {
    background: var(--surface);
    display: flex; flex-direction: column;
    align-items: center; justify-content: center;
    padding: 52px 24px;
    text-decoration: none; color: var(--text);
    position: relative; overflow: hidden;
    transition: background .3s;
}
.social-card::after {
    content: ''; position: absolute; inset: 0;
    opacity: 0; transition: opacity .3s;
}
.social-card.ig::after { background: linear-gradient(135deg,#833ab422,#fd1d1d22,#fcb04522); }
.social-card.yt::after { background: rgba(255,0,0,0.08); }
.social-card.tt::after { background: linear-gradient(135deg,#25f4ee22,#fe2c5522); }
.social-card.fb::after { background: rgba(24,119,242,0.08); }
.social-card:hover { background: #111; }
.social-card:hover::after { opacity: 1; }
.social-icon { font-size: 34px; margin-bottom: 14px; position: relative; z-index: 1; }
.social-name {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 22px; letter-spacing: 3px;
    color: #fff; position: relative; z-index: 1;
}
.social-handle {
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 12px; letter-spacing: 1px;
    color: var(--muted); margin-top: 6px;
    position: relative; z-index: 1;
    transition: color .3s;
}
.social-card:hover .social-handle { color: rgba(240,237,232,0.8); }

/* CONTACT */
.contact-outer {
    background: var(--surface);
    border-top: 1px solid var(--border);
    padding: 140px 60px;
}
.contact-inner {
    max-width: 1100px; margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 100px; align-items: start;
}
.contact-info { margin-top: 40px; display: flex; flex-direction: column; gap: 28px; }
.contact-row {
    display: flex; align-items: flex-start; gap: 20px;
    padding-bottom: 28px;
    border-bottom: 1px solid var(--border);
}
.contact-row:last-child { border-bottom: none; }
.contact-icon { font-size: 22px; flex-shrink: 0; margin-top: 2px; }
.contact-row-label {
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 11px; letter-spacing: 2.5px;
    text-transform: uppercase; color: var(--red);
    margin-bottom: 4px;
}
.contact-row-value { font-size: 18px; font-weight: 300; color: var(--text); }
.contact-cta {
    background: var(--red);
    padding: 52px 44px;
    display: flex; flex-direction: column;
    justify-content: center; min-height: 320px;
}
.contact-cta h3 {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 52px; line-height: 1; color: #fff; margin-bottom: 16px;
}
.contact-cta p {
    font-size: 15px; font-weight: 300;
    color: rgba(255,255,255,0.75);
    line-height: 1.7; margin-bottom: 32px;
}
.btn-white {
    display: inline-block;
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 13px; font-weight: 700;
    letter-spacing: 2.5px; text-transform: uppercase;
    color: var(--red); background: #fff;
    padding: 16px 32px; text-decoration: none;
    width: fit-content;
    transition: background .2s;
}
.btn-white:hover { background: #f0ede8; }

/* FOOTER */
footer {
    background: var(--black);
    border-top: 1px solid var(--border);
    padding: 36px 60px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.footer-brand {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 20px; letter-spacing: 4px; color: var(--muted);
}
.footer-brand span { color: var(--red); }
footer p {
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 12px; letter-spacing: 1.5px; color: var(--muted);
}

/* REVEAL */
.reveal {
    opacity: 0; transform: translateY(40px);
    transition: opacity .8s ease, transform .8s ease;
}
.reveal.visible { opacity: 1; transform: translateY(0); }
.reveal-delay-1 { transition-delay: .12s; }
.reveal-delay-2 { transition-delay: .22s; }
.reveal-delay-3 { transition-delay: .34s; }

/* KEYFRAMES */
@keyframes fadeUp { to { opacity: 1; transform: translateY(0); } }
@keyframes fadeIn { to { opacity: 1; } }
@keyframes scrollPulse {
    0%,100% { opacity: 1; }
    50% { opacity: 0.3; }
}
@keyframes spin {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

/* HAMBURGER BUTTON */
.hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    background: none;
    border: none;
    padding: 8px;
    z-index: 600;
}
.hamburger span {
    display: block;
    width: 24px;
    height: 2px;
    background: #fff;
    transition: all 0.3s ease;
}
.hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* MOBILE DROPDOWN MENU */
.mobile-menu {
    position: fixed;
    top: 72px;
    left: 0; right: 0;
    background: rgba(5,5,5,0.98);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(232,0,13,0.2);
    z-index: 490;
    padding: 24px 24px 32px;
    flex-direction: column;
    gap: 4px;
    display: none;
}
.mobile-menu.open { display: flex; }
.mobile-menu a {
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 22px;
    font-weight: 600;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: rgba(240,237,232,0.7);
    text-decoration: none;
    padding: 16px 0;
    border-bottom: 1px solid rgba(255,255,255,0.06);
    transition: color 0.2s;
}
.mobile-menu a:hover { color: #fff; }
.mobile-menu a.mob-cta {
    color: var(--red);
    border-bottom: none;
    margin-top: 8px;
}

/* MOBILE BREAKPOINT */
@media (max-width: 900px) {
    body { cursor: auto; }
    .cursor, .cursor-ring { display: none; }

    nav { padding: 0 24px; }
    .nav-links { display: none; }
    .hamburger { display: flex; }

    .hero-content { padding: 0 24px 70px; }
    .hero-stats { display: none; }
    .hero-title { font-size: 56px; }
    .hero-sub { font-size: 16px; }
    .hero-actions { flex-direction: column; }
    .btn-primary, .btn-ghost { text-align: center; width: 100%; max-width: 320px; }

    .about-wrap { grid-template-columns: 1fr; padding: 80px 24px 60px; gap: 32px; }
    .about-img-wrap { display: block; max-width: 480px; margin: 0 auto; }

    .team-section { padding: 80px 24px; }
    .team-grid { grid-template-columns: 1fr; }

    .athletes-outer { padding: 80px 0 80px 24px; }
    .athletes-header { flex-direction: column; align-items: flex-start; gap: 12px; padding-right: 24px; }
    .athletes-hint { display: none; }
    .athlete-card { flex: 0 0 260px; height: 380px; }
    .slider-dots { padding-right: 24px; }

    .programs-outer { padding: 80px 24px; }
    .programs-grid { grid-template-columns: 1fr; }
    .program-card { padding: 36px 28px; }

    .social-outer { padding: 80px 24px; }
    .social-grid { grid-template-columns: repeat(2, 1fr); }

    .contact-outer { padding: 80px 24px; }
    .contact-inner { grid-template-columns: 1fr; gap: 40px; }
    .contact-cta { min-height: auto; padding: 36px 28px; }

    footer { flex-direction: column; gap: 12px; padding: 28px 24px; text-align: center; }
}

@media (max-width: 480px) {
    .hero-title { font-size: 44px; }
    .section-title { font-size: 36px; }
    .athlete-card { flex: 0 0 220px; height: 320px; }
    .social-grid { grid-template-columns: 1fr; }
    .slider-btn { width: 40px; height: 40px; font-size: 16px; }
}