:root {
  --navy: #061f3f;
  --navy-2: #0a315d;
  --teal: #0799aa;
  --cyan: #21b8c9;
  --orange: #ff5a1f;
  --ink: #12233a;
  --muted: #637487;
  --line: #dce8f0;
  --pale: #f5f9fc;
  --pale-2: #eef6fa;
  --white: #fff;
  --shadow: 0 22px 60px rgba(6, 31, 63, .11);
  --soft: 0 12px 30px rgba(6, 31, 63, .08);
  --radius: 18px;
  --display: "Barlow Condensed", "Arial Narrow", sans-serif;
  --body: "Inter", system-ui, sans-serif;
}
* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body { margin: 0; font-family: var(--body); color: var(--ink); background: var(--white); -webkit-font-smoothing: antialiased; overflow-x: hidden; }
body.no-scroll { overflow: hidden; }
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button, input, select, textarea { font: inherit; }
.skip-link { position: fixed; top: 10px; left: 10px; transform: translateY(-150%); z-index: 10000; background: var(--navy); color: #fff; padding: 12px 16px; border-radius: 8px; }
.skip-link:focus { transform: none; }

.site-header { position: sticky; top: 0; z-index: 1000; height: 66px; display: flex; align-items: center; justify-content: space-between; gap: 24px; padding: 0 clamp(18px, 4vw, 58px); background: rgba(255,255,255,.98); border-bottom: 1px solid rgba(6,31,63,.06); backdrop-filter: blur(8px); }
.brand { display: inline-flex; align-items: center; gap: 10px; color: var(--navy); }
.brand-mark { font-family: var(--display); font-size: 40px; font-weight: 900; font-style: italic; letter-spacing: -3px; line-height: .75; }
.brand-text { font-size: 11px; line-height: 1; font-weight: 900; letter-spacing: 2px; text-transform: uppercase; }
.desktop-nav { display: flex; align-items: center; gap: clamp(18px, 2.1vw, 34px); font-size: 11px; font-weight: 900; text-transform: uppercase; letter-spacing: .35px; color: var(--navy); }
.desktop-nav a { position: relative; padding: 24px 0; }
.desktop-nav a::after { content: ""; position: absolute; left: 0; right: 0; bottom: 17px; height: 2px; background: var(--teal); transform: scaleX(0); transform-origin: left; transition: transform .24s ease; }
.desktop-nav a:hover::after { transform: scaleX(1); }
.header-actions { display: flex; align-items: center; gap: 12px; }
.lang-toggle { border: 0; background: transparent; color: var(--navy); font-size: 12px; font-weight: 900; cursor: pointer; display: flex; gap: 6px; align-items: center; padding: 10px; }
.lang-toggle.is-es span:last-child, .lang-toggle:not(.is-es) span:first-child { color: var(--teal); }
.btn { border: 0; border-radius: 7px; min-height: 46px; display: inline-flex; align-items: center; justify-content: center; gap: 10px; padding: 0 22px; cursor: pointer; font-size: 12px; font-weight: 900; text-transform: uppercase; letter-spacing: .25px; transition: transform .2s ease, box-shadow .2s ease, background .2s ease; }
.btn:hover { transform: translateY(-2px); box-shadow: var(--soft); }
.btn-primary { background: var(--orange); color: #fff; }
.btn-ghost { background: #fff; color: var(--navy); border: 1px solid var(--line); }
.btn-small { min-height: 42px; padding: 0 16px; }
.menu-toggle { display: none; border: 0; background: transparent; width: 42px; height: 42px; flex-direction: column; justify-content: center; gap: 5px; }
.menu-toggle span { height: 2px; width: 22px; background: var(--navy); display: block; }
.mobile-panel { display: none; }

.hero { min-height: 500px; display: grid; grid-template-columns: minmax(410px, 40.5%) minmax(0, 59.5%); align-items: center; gap: 0; padding: 0 0 0 clamp(20px, 5vw, 76px); background: radial-gradient(circle at 83% 16%, rgba(33,184,201,.1), transparent 30%), linear-gradient(110deg, #fff 0%, #fff 39%, #f3f9fc 100%); overflow: hidden; }
.hero-copy { position: relative; z-index: 3; max-width: 560px; }
.hero-copy h1 { font-family: var(--display); color: var(--navy); font-size: clamp(56px, 4.9vw, 78px); line-height: .92; letter-spacing: 0; margin: 0 0 22px; text-transform: none; }
.hero-copy h1 span { color: var(--teal); display: block; }
.hero-copy p { max-width: 500px; color: #344960; font-size: clamp(15px, 1vw, 17px); line-height: 1.62; margin: 0 0 24px; }
.hero-tags { display: flex; flex-wrap: wrap; gap: 13px; margin-top: 26px; color: var(--navy); font-size: 10px; font-weight: 900; text-transform: uppercase; letter-spacing: 2px; }
.hero-tags span:not(:last-child)::after { content: "•"; color: var(--teal); margin-left: 13px; }
.hero-stage { position: relative; min-height: 500px; height: 500px; isolation: isolate; overflow: hidden; }
.hero-image { position: absolute; top: 0; bottom: 0; overflow: hidden; }
.hero-image img { width: 100%; height: 100%; object-fit: cover; display: block; }
.hero-image-main { left: 0; right: 0; width: 100%; z-index: 0; }
.hero-image-main img { object-position: 50% 50%; filter: saturate(1.04) contrast(1.04); image-rendering: auto; }
.hero-image-side { display: none; }
.hero-stage::before { content: ""; position: absolute; inset: 0; background: linear-gradient(90deg, #fff 0%, rgba(255,255,255,.88) 7%, rgba(255,255,255,.42) 20%, rgba(255,255,255,0) 34%); pointer-events: none; z-index: 1; }
.hero-stage::after { display: none; }
.metric-stack { position: absolute; right: clamp(22px, 4vw, 66px); top: 36px; z-index: 2; display: grid; gap: 10px; width: 222px; }
.metric-card { background: rgba(255,255,255,.96); border: 1px solid rgba(203,220,230,.95); border-radius: 17px; display: grid; grid-template-columns: 29px 1fr auto; gap: 10px; align-items: center; min-height: 62px; padding: 11px 15px; box-shadow: 0 15px 34px rgba(6, 31, 63, .14); backdrop-filter: blur(12px); }
.metric-card svg, .card-icon svg { width: 24px; height: 24px; stroke: var(--teal); fill: none; stroke-width: 1.8; stroke-linecap: round; stroke-linejoin: round; }
.metric-card small { display: block; color: #6e7f91; font-size: 10px; text-transform: uppercase; font-weight: 900; line-height: 1; }
.metric-card b { font-family: var(--display); color: var(--navy); font-size: 29px; line-height: .86; }
.metric-card span, .metric-card em { color: var(--teal); font-size: 11px; font-style: normal; font-weight: 900; }
.tablet-card { position: absolute; right: clamp(30px, 4.3vw, 70px); bottom: 34px; z-index: 2; width: 292px; min-height: 128px; padding: 22px 24px; border-radius: 18px; color: #fff; background: rgba(6,31,63,.92); box-shadow: var(--shadow); }
.tablet-card strong, .tablet-card span { display: block; }
.tablet-card strong { font-size: 21px; }
.tablet-card span { color: #b7d7e1; font-size: 14px; margin-top: 7px; }
.spark, .mini-chart i, .line-chart { height: 44px; margin-top: 14px; border-radius: 10px; background: linear-gradient(135deg, transparent 48%, var(--cyan) 49% 55%, transparent 56%), repeating-linear-gradient(90deg, rgba(255,255,255,.1) 0 1px, transparent 1px 32px); }

.lab-section { display: grid; grid-template-columns: minmax(220px, 260px) minmax(0, 1fr); gap: clamp(22px, 2.6vw, 34px); padding: clamp(44px, 5vw, 72px) clamp(20px, 5vw, 76px); border-bottom: 1px solid var(--line); align-items: center; }
.section-side h2, .page-hero h1, .content-rail h2, .site-cta h2, .footerCta h2 { font-family: var(--display); color: var(--navy); font-size: clamp(34px, 3.8vw, 52px); line-height: .9; letter-spacing: 0; margin: 0 0 16px; text-transform: uppercase; }
.section-side p { color: var(--muted); font-size: 14px; line-height: 1.55; margin: 0 0 20px; }
.section-side a { color: var(--teal); font-size: 11px; font-weight: 900; text-transform: uppercase; letter-spacing: .5px; }
.pillar-grid { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 16px; }
.pillar-card { position: relative; background: #fff; border: 1px solid #dbe9f1; border-radius: 14px; padding: 18px 18px 18px 64px; min-height: 244px; box-shadow: 0 18px 36px rgba(6,31,63,.09); overflow: hidden; transition: transform .24s ease, box-shadow .24s ease, border-color .24s ease; }
.pillar-card:hover { transform: translateY(-7px); border-color: rgba(33,184,201,.48); box-shadow: 0 26px 54px rgba(6,31,63,.16); }
.pillar-card:hover .card-icon { background: var(--teal); }
.pillar-card:hover .card-icon svg { stroke: #fff; }
.pillar-card h3 { margin: 3px 0 3px; color: var(--navy); font-size: 17px; line-height: 1.02; text-transform: uppercase; }
.pillar-card > span { color: #314960; font-size: 11px; font-weight: 900; }
.pillar-card p { display: none; }
.card-icon { position: absolute; left: 18px; top: 18px; width: 36px; height: 36px; border-radius: 50%; display: grid; place-items: center; background: #ecf9fb; transition: background .24s ease, transform .24s ease; }
.mini-chart { grid-column: 1 / -1; height: 88px; margin: 28px 0 14px -46px; background: linear-gradient(180deg, rgba(255,255,255,0), rgba(245,250,253,.9)); border-radius: 0; border: 0; padding: 0; }
.mini-chart svg { width: 100%; height: 100%; overflow: visible; }
.mini-chart .chart-grid { fill: none; stroke: rgba(198,218,228,.6); stroke-width: 1; }
.mini-chart polyline { fill: none; stroke: var(--teal); stroke-width: 3.2; stroke-linecap: round; stroke-linejoin: round; stroke-dasharray: 360; stroke-dashoffset: 360; animation: miniLineDraw 1.05s ease forwards; transition: stroke-width .2s ease, filter .2s ease; }
.mini-chart circle { fill: var(--teal); stroke: #fff; stroke-width: 1.5; cursor: pointer; opacity: 0; transform-box: fill-box; transform-origin: center; animation: miniDotPop .28s ease forwards; transition: r .2s ease, transform .2s ease, filter .2s ease, fill .2s ease; }
.pillar-card:nth-child(1) .mini-chart polyline { animation-delay: .08s; }
.pillar-card:nth-child(2) .mini-chart polyline { animation-delay: .18s; }
.pillar-card:nth-child(3) .mini-chart polyline { animation-delay: .28s; }
.pillar-card:nth-child(4) .mini-chart polyline { animation-delay: .38s; }
.pillar-card:nth-child(1) .mini-chart circle { animation-delay: calc(.16s + var(--dot-delay, 0s)); }
.pillar-card:nth-child(2) .mini-chart circle { animation-delay: calc(.26s + var(--dot-delay, 0s)); }
.pillar-card:nth-child(3) .mini-chart circle { animation-delay: calc(.36s + var(--dot-delay, 0s)); }
.pillar-card:nth-child(4) .mini-chart circle { animation-delay: calc(.46s + var(--dot-delay, 0s)); }
.mini-chart circle:nth-of-type(1) { --dot-delay: .02s; }
.mini-chart circle:nth-of-type(2) { --dot-delay: .08s; }
.mini-chart circle:nth-of-type(3) { --dot-delay: .14s; }
.mini-chart circle:nth-of-type(4) { --dot-delay: .2s; }
.mini-chart circle:nth-of-type(5) { --dot-delay: .26s; }
.mini-chart circle:nth-of-type(6) { --dot-delay: .32s; }
.mini-chart circle:nth-of-type(7) { --dot-delay: .38s; }
.mini-chart circle:nth-of-type(8) { --dot-delay: .44s; }
.mini-chart circle:nth-of-type(9) { --dot-delay: .5s; }
.pillar-card:hover .mini-chart polyline { stroke-width: 4; filter: drop-shadow(0 3px 6px rgba(7,153,170,.24)); }
.mini-chart circle:hover { transform: scale(1.65); fill: var(--orange); filter: drop-shadow(0 5px 8px rgba(255,90,31,.34)); }
.before-after { display: grid; grid-template-columns: 1fr 1fr; gap: 1px 16px; margin-left: -46px; }
.before-after b { font-family: var(--display); color: var(--navy); font-size: 29px; line-height: .9; }
.before-after b:nth-child(2) { color: var(--teal); }
.before-after small { color: #7b8c9d; text-transform: uppercase; font-size: 9px; font-weight: 900; }

.pillars-section { background: linear-gradient(180deg, #fff 0%, #f7fbfd 100%); }
.services-section { background: #fff; padding-top: clamp(52px, 6vw, 82px); padding-bottom: clamp(52px, 6vw, 82px); }
.service-row { display: grid; grid-template-columns: repeat(5, minmax(0, 1fr)); gap: 14px; }
.service-card { min-height: 244px; position: relative; overflow: hidden; border-radius: 10px; background: var(--navy); border: 1px solid rgba(6,31,63,.14); box-shadow: 0 16px 30px rgba(6,31,63,.14); transition: transform .25s ease, box-shadow .25s ease; }
.service-card:hover { transform: translateY(-6px); box-shadow: var(--shadow); }
.service-card img { position: absolute; inset: 0; height: 100%; width: 100%; object-fit: cover; object-position: center; filter: saturate(1.04) contrast(1.05); }
.service-card::after { content: ""; position: absolute; inset: 0; background: linear-gradient(180deg, rgba(6,31,63,0) 34%, rgba(6,31,63,.34) 58%, rgba(6,31,63,.98) 100%); }
.service-card div { position: absolute; left: 18px; right: 86px; bottom: 22px; z-index: 1; padding: 0; min-width: 0; }
.service-card strong { display: block; color: #fff; font-size: clamp(13px, .95vw, 17px); line-height: 1; text-transform: uppercase; text-shadow: 0 2px 10px rgba(0,0,0,.35); overflow-wrap: normal; word-break: normal; hyphens: none; }
.service-card span { display: none; }
.service-card em { position: absolute; right: 12px; bottom: 20px; top: auto; z-index: 1; width: 72px; min-height: 58px; display: flex; flex-direction: column; align-items: center; justify-content: center; padding: 8px 7px; color: #fff; background: rgba(4, 34, 62, .92); border: 1px solid rgba(33,184,201,.7); border-radius: 9px; font-style: normal; font-weight: 900; text-align: center; box-shadow: 0 10px 24px rgba(0,0,0,.24); }
.service-card em small { display: block; color: #9debf2; font-size: 7px; line-height: 1.05; text-transform: uppercase; margin-top: 4px; }

.system-section { background: #fff; color: var(--ink); align-items: center; padding-top: clamp(48px, 5vw, 76px); padding-bottom: clamp(48px, 5vw, 76px); }
.system-section .section-side h2 { color: var(--navy); }
.system-section .section-side p { color: var(--muted); }
.system-section .section-side a { color: var(--teal); }
.system-dashboard { background: #fff; color: var(--ink); border-radius: 8px; overflow: hidden; border: 1px solid var(--line); box-shadow: 0 16px 32px rgba(6,31,63,.08); }
.system-tabs { display: grid; grid-template-columns: repeat(5, 1fr); background: linear-gradient(90deg, #062447, #083a63); color: #fff; }
.system-tabs div { position: relative; display: grid; grid-template-columns: auto 1fr; grid-template-rows: auto auto; gap: 3px 12px; align-items: start; padding: 18px 24px 17px; border-right: 1px solid rgba(255,255,255,.14); overflow: hidden; }
.system-tabs div:not(:last-child)::after { content: ""; position: absolute; top: 0; right: -24px; width: 48px; height: 100%; border-right: 1px solid rgba(33,184,201,.22); background: linear-gradient(135deg, transparent 0 49%, rgba(33,184,201,.12) 50% 51%, transparent 52%); transform: skewX(-23deg); pointer-events: none; }
.system-tabs b { grid-row: 1 / 3; color: var(--cyan); font-family: var(--display); font-size: 42px; line-height: .82; min-width: 32px; text-align: left; }
.system-tabs strong { text-transform: uppercase; font-size: 15px; line-height: 1; padding-top: 2px; }
.system-tabs small { display: block; color: #d4e6ee; font-size: 13px; line-height: 1.18; margin-top: 0; }
.dashboard-body { display: grid; grid-template-columns: .82fr 1.18fr 2.45fr 1.05fr; gap: 10px; padding: 12px; }
.athlete-profile, .performance-index, .trend, .coach-notes { background: var(--pale); border: 1px solid var(--line); border-radius: 6px; padding: 14px; min-height: 210px; }
.athlete-profile { text-align: center; display: grid; justify-items: center; align-content: start; }
.athlete-profile img { height: 82px; width: 82px; border-radius: 50%; object-fit: cover; object-position: 52% 26%; margin: 12px auto 10px; border: 4px solid rgba(33,184,201,.52); }
.athlete-profile strong, .performance-index span, .trend span, .coach-notes b { display: block; color: var(--navy); font-size: 12px; font-weight: 900; text-transform: uppercase; }
.athlete-profile > span, .performance-index > span, .trend > span, .coach-notes b { width: 100%; text-align: left; letter-spacing: .7px; }
.athlete-profile strong { width: auto; text-align: center; font-size: 14px; margin-top: 2px; }
.athlete-profile em { color: var(--navy); font-style: normal; font-size: 12px; font-weight: 800; margin-top: 4px; }
.athlete-profile small { color: var(--muted); font-size: 10px; font-weight: 900; text-transform: uppercase; margin-top: 8px; }
.coach-notes p { color: var(--muted); font-size: 12px; line-height: 1.42; margin: 10px 0 0; }
.performance-index { text-align: center; display: grid; justify-items: center; }
.performance-index > span, .trend > span { letter-spacing: .7px; }
.radial-index { position: relative; display: grid; justify-items: center; width: 100%; }
.radial-index svg { width: min(162px, 100%); height: 162px; margin: 4px auto -2px; transform: rotate(136deg); }
.radial-track { fill: none; stroke: #e5f0f5; stroke-width: 14; stroke-linecap: round; stroke-dasharray: 74 26; }
.radial-progress { fill: none; stroke-width: 14; stroke-linecap: round; stroke-dasharray: 65.86 100; stroke-dashoffset: 65.86; animation: radialDraw 1.35s cubic-bezier(.2,.78,.2,1) .15s forwards; }
.radial-shadow { stroke: #0a315d; opacity: .92; stroke-dasharray: 9 100; stroke-dashoffset: 15; animation: radialAccent 1.35s cubic-bezier(.2,.78,.2,1) .3s forwards; }
.radial-main { stroke: var(--teal); }
.radial-center { position: absolute; top: 55px; left: 50%; transform: translateX(-50%); color: var(--navy); }
.radial-center b { font-family: var(--display); display: block; color: var(--navy); font-size: 58px; line-height: .85; }
.radial-center small { display: block; color: var(--muted); font-size: 10px; font-weight: 900; text-transform: uppercase; margin-top: 8px; }
.radial-index em { color: var(--teal); font-family: var(--display); font-size: 32px; line-height: 1; font-style: normal; font-weight: 900; text-transform: uppercase; margin-top: -2px; }
.radial-index p { color: var(--muted); font-size: 12px; font-weight: 800; margin: 5px 0 0; }
.line-chart { width: 100%; height: 184px; margin-top: 8px; background: transparent; overflow: visible; }
.line-chart .chart-grid { fill: none; stroke: #dce8f0; stroke-width: 1; }
.line-chart text { fill: #5f7185; font-size: 12px; font-weight: 900; font-family: var(--body); }
.trend-area { fill: url("#trendFill"); clip-path: inset(0 100% 0 0); animation: trendReveal 1.15s ease .35s forwards; }
.line-chart polyline { fill: none; stroke: var(--teal); stroke-width: 4; stroke-linecap: round; stroke-linejoin: round; stroke-dasharray: 520; stroke-dashoffset: 520; animation: lineDraw 1.25s ease .25s forwards; }
.line-chart circle { fill: #fff; stroke: var(--teal); stroke-width: 4; opacity: 0; transform-box: fill-box; transform-origin: center; animation: dotPop .32s ease forwards; }
.line-chart circle:nth-child(1) { animation-delay: .35s; }
.line-chart circle:nth-child(2) { animation-delay: .48s; }
.line-chart circle:nth-child(3) { animation-delay: .61s; }
.line-chart circle:nth-child(4) { animation-delay: .74s; }
.line-chart circle:nth-child(5) { animation-delay: .87s; }
.line-chart circle:nth-child(6) { animation-delay: 1s; }
.line-chart circle:nth-child(7) { animation-delay: 1.13s; }
.trend { padding: 14px 22px; display: grid; justify-items: center; align-content: start; }
.trend > span { justify-self: start; }
.trend .line-chart { max-width: 430px; justify-self: center; }
.coach-mini { display: grid; grid-template-columns: 42px 1fr; align-items: center; gap: 10px; margin-top: 22px; }
.coach-mini img { width: 42px; height: 42px; border-radius: 50%; object-fit: cover; object-position: 35% 35%; border: 3px solid rgba(33,184,201,.3); }
.coach-mini strong { color: var(--navy); font-size: 11px; font-weight: 900; text-transform: uppercase; }
.coach-notes a { display: inline-block; color: var(--teal); font-size: 11px; font-weight: 900; text-transform: uppercase; margin-top: 10px; }

.mission-band { display: grid; grid-template-columns: 220px 1fr 1fr 1fr 1.2fr; min-height: 188px; border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); overflow: hidden; }
.mission-title { background: var(--navy); color: var(--cyan); font-family: var(--display); font-size: 36px; line-height: 1.08; text-transform: uppercase; padding: 36px 36px; clip-path: polygon(0 0, 100% 0, 84% 100%, 0 100%); }
.mission-card { padding: 34px 26px; border-right: 1px solid var(--line); }
.mission-card h3 { color: var(--teal); text-transform: uppercase; font-size: 14px; margin: 0 0 14px; }
.mission-card p, .mission-card li { color: var(--muted); font-size: 12px; line-height: 1.5; }
.mission-card ul { margin: 0; padding-left: 18px; }
.mission-band img { width: 100%; height: 100%; object-fit: cover; }

.who-sports { display: grid; grid-template-columns: .72fr 1.28fr; gap: 30px; padding: clamp(76px, 8vw, 112px) clamp(20px, 5vw, 76px); background: var(--pale); }
.why-card, .serve-card, .sports-card { background: #fff; border: 1px solid var(--line); border-radius: var(--radius); padding: 26px; box-shadow: var(--soft); }
.why-card h2, .serve-card h2, .sports-card h2 { font-family: var(--display); color: var(--navy); font-size: 36px; line-height: .95; text-transform: uppercase; margin: 0 0 22px; }
.stat-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.stat-grid b { color: var(--teal); font-family: var(--display); font-size: 38px; }
.stat-grid span { display: block; color: var(--muted); font-family: var(--body); font-size: 11px; text-transform: uppercase; }
.serve-card { grid-column: 2; }
.group-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; }
.group-grid article { border: 1px solid var(--line); border-radius: 14px; overflow: hidden; background: #fff; }
.group-grid img { height: 132px; width: 100%; object-fit: cover; object-position: 50% 34%; display: block; }
.group-grid img.focus-youth { object-position: 52% 26%; }
.group-grid img.focus-high { object-position: 48% 24%; }
.group-grid img.focus-college { object-position: 50% 22%; }
.group-grid img.focus-pro { object-position: 52% 20%; }
.group-grid h3 { margin: 13px 14px 2px; color: var(--navy); font-size: 14px; text-transform: uppercase; }
.group-grid span, .group-grid p { display: block; margin: 0 14px 12px; color: var(--muted); font-size: 12px; }
.sports-card { grid-column: 1 / -1; }
.sports-grid { display: grid; grid-template-columns: repeat(8, 1fr); gap: 14px; }
.sports-grid a { position: relative; height: 132px; border-radius: 12px; overflow: hidden; background: var(--navy); box-shadow: 0 12px 24px rgba(6,31,63,.1); }
.sports-grid img { width: 100%; height: 100%; object-fit: cover; object-position: 50% 32%; opacity: .76; transition: transform .25s ease; display: block; }
.sports-grid .focus-baseball img { object-position: 42% 26%; }
.sports-grid .focus-softball img { object-position: 48% 24%; }
.sports-grid .focus-basketball img { object-position: 51% 22%; }
.sports-grid .focus-football img { object-position: 46% 18%; }
.sports-grid .focus-soccer img { object-position: 50% 20%; }
.sports-grid .focus-volleyball img { object-position: 50% 18%; }
.sports-grid .focus-track img { object-position: 46% 18%; }
.sports-grid .focus-golf img { object-position: 54% 18%; }
.sports-grid a:hover img { transform: scale(1.06); }
.sports-grid strong { position: absolute; left: 12px; bottom: 12px; color: #fff; text-transform: uppercase; font-size: 12px; }

.programs-section { display: grid; grid-template-columns: 255px 1fr; gap: 42px; padding: clamp(76px, 8vw, 112px) clamp(20px, 5vw, 76px); border-bottom: 1px solid var(--line); }
.toggle-pill { display: inline-flex; background: #e9f6fa; border-radius: 999px; padding: 5px; gap: 5px; }
.toggle-pill span { padding: 8px 14px; border-radius: 999px; color: var(--teal); font-size: 11px; font-weight: 900; text-transform: uppercase; }
.toggle-pill span:first-child { background: var(--teal); color: #fff; }
.plans { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 20px; align-items: stretch; }
.plans.all { grid-template-columns: repeat(4, minmax(0, 1fr)); }
.plan-card { background: #fff; border: 1px solid var(--line); border-radius: 12px; padding: 28px; box-shadow: 0 18px 40px rgba(6,31,63,.08); }
.plan-card.featured { border: 2px solid var(--teal); transform: translateY(-12px); box-shadow: 0 24px 54px rgba(7,153,170,.15); }
.plan-card > span { display: inline-flex; color: var(--teal); background: #eaf8fb; border-radius: 999px; padding: 7px 11px; font-size: 10px; text-transform: uppercase; font-weight: 900; }
.plan-card h3 { color: var(--navy); margin: 18px 0 4px; font-size: 18px; text-transform: uppercase; }
.plan-card strong { font-family: var(--display); color: var(--navy); font-size: 42px; }
.plan-card strong small { font-family: var(--body); color: var(--muted); font-size: 12px; }
.plan-card ul { padding: 0; margin: 18px 0 22px; list-style: none; }
.plan-card li { color: var(--muted); font-size: 13px; padding: 7px 0; border-bottom: 1px solid #edf3f6; }
.plan-card li::before { content: "✓"; color: var(--teal); font-weight: 900; margin-right: 8px; }

.private-section { display: grid; grid-template-columns: .85fr 1.15fr; gap: 42px; padding: clamp(76px, 8vw, 112px) clamp(20px, 5vw, 76px); background: linear-gradient(180deg, #fff, var(--pale)); border-bottom: 1px solid var(--line); }
.lesson-copy h2 { font-family: var(--display); color: var(--navy); font-size: 44px; line-height: .92; text-transform: uppercase; margin: 0 0 18px; }
.lesson-tabs { display: inline-flex; padding: 4px; background: #edf7fa; border-radius: 10px; margin-bottom: 18px; }
.lesson-tabs button { border: 0; border-radius: 8px; background: transparent; color: var(--navy); padding: 10px 18px; font-size: 12px; font-weight: 900; text-transform: uppercase; cursor: pointer; }
.lesson-tabs button.active { background: var(--teal); color: #fff; }
.lesson-copy p, .lesson-copy li { color: var(--muted); line-height: 1.58; }
.lesson-media { position: relative; border-radius: var(--radius); overflow: hidden; min-height: 420px; box-shadow: 0 24px 54px rgba(6,31,63,.12); }
.lesson-media img { width: 100%; height: 100%; object-fit: cover; }
.video-overlay { position: absolute; right: 18px; top: 18px; width: 190px; color: #fff; background: rgba(6,31,63,.9); border-radius: 14px; padding: 16px; }
.video-overlay b, .video-overlay span { display: block; font-size: 12px; text-transform: uppercase; color: #acdce4; }
.video-overlay strong { display: block; font-family: var(--display); font-size: 42px; }

.results-team { display: grid; grid-template-columns: 206px minmax(0, 1fr); gap: 20px; padding: clamp(86px, 8vw, 118px) clamp(20px, 5vw, 76px); background: #fff; border-bottom: 1px solid var(--line); }
.results-team > .section-side { align-self: start; padding-top: 8px; }
.results-team > .section-side h2 { font-size: clamp(30px, 2.65vw, 40px); line-height: .92; }
.results-team > .section-side p { max-width: 172px; font-size: 13px; line-height: 1.65; }
.result-grid { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 14px; align-items: stretch; }
.result-card { background: #fff; border: 1px solid #e5edf2; border-radius: 8px; padding: 18px 18px 16px; box-shadow: 0 14px 30px rgba(6,31,63,.06); min-height: 252px; display: flex; flex-direction: column; }
.result-card p { min-height: 72px; color: var(--ink); font-size: 13px; line-height: 1.48; margin: 0 0 14px; font-weight: 800; }
.result-card > small { color: var(--teal); text-transform: uppercase; font-weight: 900; font-size: 10px; }
.metric-change { display: grid; grid-template-columns: auto 1fr auto; gap: 6px 14px; align-items: center; margin: 10px 0 15px; }
.metric-change b { color: var(--teal); font-family: var(--display); font-size: 31px; line-height: 1; }
.metric-change i { display: block; height: 2px; min-width: 28px; background: var(--teal); position: relative; }
.metric-change i::after { content: ""; position: absolute; right: 0; top: 50%; width: 8px; height: 8px; border-top: 2px solid var(--teal); border-right: 2px solid var(--teal); transform: translateY(-50%) rotate(45deg); }
.metric-change span { color: var(--muted); font-size: 9px; font-weight: 900; text-transform: uppercase; }
.result-athlete { display: grid; grid-template-columns: 54px 1fr; gap: 12px; align-items: end; margin-top: auto; }
.result-athlete img { width: 54px; height: 66px; border-radius: 0; object-fit: cover; object-position: top center; align-self: end; }
.result-athlete b, .result-athlete em { display: block; }
.result-athlete b { color: var(--navy); font-size: 12px; text-transform: uppercase; }
.result-athlete em { color: var(--muted); font-size: 10px; line-height: 1.35; font-style: normal; }
.team-strip { grid-column: 1 / -1; display: grid; grid-template-columns: 206px repeat(5, minmax(0, 1fr)); gap: 14px; margin-top: 24px; }
.team-strip > div { padding-top: 8px; }
.team-strip h2 { font-family: var(--display); color: var(--navy); font-size: clamp(30px, 2.65vw, 40px); line-height: .92; text-transform: uppercase; margin: 0 0 8px; }
.team-strip > div p { max-width: 150px; color: var(--muted); font-size: 13px; line-height: 1.55; }
.team-strip > div a { color: var(--teal); font-size: 12px; font-weight: 900; text-transform: uppercase; }
.team-strip article, .team-full article { background: #fff; border: 1px solid #e5edf2; border-radius: 8px; padding: 0 0 16px; box-shadow: 0 14px 30px rgba(6,31,63,.06); overflow: hidden; }
.team-photo { width: 100%; height: 132px; object-fit: cover; object-position: 50% 38%; margin-bottom: 14px; display: block; }
.coach-avatar { height: 100px; border-radius: 14px; background: linear-gradient(135deg, #d9e7ef, #8197a5); margin-bottom: 16px; position: relative; overflow: hidden; }
.coach-avatar::after { content: ""; position: absolute; width: 68px; height: 68px; border-radius: 50%; background: #1c314a; left: 50%; top: 28px; transform: translateX(-50%); box-shadow: 0 78px 0 28px #152a44; }
.team-strip h3, .team-full h2 { color: var(--navy); text-transform: uppercase; font-size: 12px; margin: 0 14px 5px; }
.team-strip span, .team-strip p, .team-full strong, .team-full p { color: var(--muted); font-size: 10px; line-height: 1.45; margin-left: 14px; margin-right: 14px; }

.site-cta { margin: 0 clamp(20px, 5vw, 76px); padding: 44px clamp(24px, 5vw, 70px); border-radius: 0; display: flex; justify-content: space-between; align-items: center; color: #fff; background: linear-gradient(90deg, rgba(6,31,63,.96), rgba(6,31,63,.86)), url("./assets/images/hero-sprint.jpg") center / cover; }
.site-cta h2 { color: #fff; font-family: var(--display); font-size: 44px; line-height: .95; text-transform: uppercase; margin: 0 0 8px; }
.site-cta p { margin: 0; color: #c6d8e2; }

.footer { display: grid; grid-template-columns: 1.3fr repeat(5, 1fr); gap: 36px; padding: 54px clamp(20px, 5vw, 76px) 28px; background: #fff; border-top: 1px solid var(--line); }
.footer h4 { margin: 0 0 15px; color: var(--navy); font-size: 12px; text-transform: uppercase; }
.footer p, .footer a { display: block; color: var(--muted); font-size: 13px; line-height: 1.65; margin-bottom: 8px; }
.socials { display: flex; gap: 8px; margin-top: 18px; }
.socials span { width: 30px; height: 30px; border-radius: 50%; display: grid; place-items: center; background: var(--navy); color: #fff; font-size: 10px; font-weight: 900; }
.newsletter { display: grid; grid-template-columns: 1fr auto; border: 1px solid var(--line); border-radius: 10px; overflow: hidden; }
.newsletter input { min-width: 0; border: 0; padding: 10px; }
.newsletter button { border: 0; background: var(--teal); color: #fff; font-size: 11px; font-weight: 900; padding: 0 12px; text-transform: uppercase; }
.footer-bottom { grid-column: 1 / -1; display: flex; gap: 26px; justify-content: flex-end; border-top: 1px solid var(--line); padding-top: 18px; color: var(--muted); font-size: 12px; }
.footer-bottom span:first-child { margin-right: auto; }

.page-hero { min-height: 520px; display: grid; grid-template-columns: 1fr 1fr; gap: 50px; align-items: center; padding: clamp(54px, 7vw, 100px) clamp(20px, 5vw, 76px); background: linear-gradient(110deg, #fff, var(--pale)); }
.page-hero h1 { max-width: 720px; font-family: var(--display); font-size: clamp(48px, 6vw, 86px); line-height: .9; color: var(--navy); margin: 0 0 22px; text-transform: uppercase; }
.page-hero p { color: var(--muted); font-size: 20px; line-height: 1.6; max-width: 640px; }
.page-hero img { width: 100%; height: 380px; object-fit: cover; border-radius: 26px; box-shadow: var(--shadow); }
.deep-content, .deep-grid, .programs-full, .team-full, .contact-grid { padding: clamp(54px, 7vw, 90px) clamp(20px, 5vw, 76px); }
.content-rail { max-width: 940px; margin: auto; }
.content-rail h2, .program-note h2, .contact-card h2 { font-family: var(--display); color: var(--navy); font-size: 48px; line-height: .95; text-transform: uppercase; margin: 0 0 16px; }
.content-rail p, .program-note p, .contact-card p { color: var(--muted); font-size: 18px; line-height: 1.65; }
.deep-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; background: var(--pale); }
.deep-grid article, .contact-card, .program-note { background: #fff; border: 1px solid var(--line); border-radius: var(--radius); padding: 28px; box-shadow: var(--soft); }
.deep-grid img { height: 190px; width: 100%; object-fit: cover; border-radius: 14px; margin-bottom: 18px; }
.deep-grid h3 { color: var(--navy); margin: 0 0 8px; text-transform: uppercase; }
.deep-grid p { color: var(--muted); line-height: 1.55; }
.deep-grid strong { color: var(--teal); }
.programs-full .plans { margin-bottom: 30px; }
.team-full { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }
.team-full .coach-avatar { height: 180px; }
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; background: var(--pale); }
.map-card { background: linear-gradient(135deg, #fff, #eaf6fa); min-height: 280px; }

.modal-backdrop { position: fixed; inset: 0; z-index: 2000; display: none; place-items: center; padding: 20px; background: rgba(5, 19, 36, .72); backdrop-filter: blur(10px); }
.modal-backdrop.open { display: grid; }
.modal-card { width: min(1040px, 100%); max-height: 92vh; overflow: auto; background: #fff; border-radius: 24px; box-shadow: 0 30px 90px rgba(0,0,0,.35); position: relative; }
.modal-close { position: absolute; right: 18px; top: 18px; width: 42px; height: 42px; border: 0; border-radius: 50%; background: var(--pale); color: var(--navy); font-size: 28px; cursor: pointer; z-index: 2; }
.modal-grid { display: grid; grid-template-columns: .8fr 1.2fr; }
.modal-intro { padding: 58px; color: #fff; background: linear-gradient(135deg, var(--navy), var(--navy-2)); }
.mini-kicker { color: var(--cyan); font-size: 12px; font-weight: 900; text-transform: uppercase; letter-spacing: 2px; }
.modal-intro h2 { font-family: var(--display); font-size: 52px; line-height: .95; margin: 22px 0; text-transform: uppercase; }
.modal-intro p { color: #c6dce5; line-height: 1.65; }
.modal-proof { display: grid; gap: 12px; margin-top: 30px; }
.modal-proof span { padding: 12px 14px; border-radius: 10px; background: rgba(255,255,255,.1); }
.booking-form { padding: 58px; display: grid; gap: 16px; }
.booking-form label span { display: block; color: var(--navy); font-size: 12px; font-weight: 900; text-transform: uppercase; margin-bottom: 7px; }
.booking-form input, .booking-form select, .booking-form textarea { width: 100%; border: 1px solid var(--line); border-radius: 10px; padding: 13px 14px; outline: none; }
.booking-form input:focus, .booking-form select:focus, .booking-form textarea:focus { border-color: var(--teal); box-shadow: 0 0 0 4px rgba(7,153,170,.11); }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.form-status { margin: 0; color: var(--teal); font-weight: 800; }

.reveal { opacity: 1; transform: none; transition: opacity .55s ease, transform .55s ease; }
.reveal.in { opacity: 1; transform: none; }

@keyframes radialDraw {
  from { stroke-dashoffset: 65.86; }
  to { stroke-dashoffset: 0; }
}
@keyframes radialAccent {
  from { stroke-dashoffset: 15; }
  to { stroke-dashoffset: -66; }
}
@keyframes lineDraw {
  to { stroke-dashoffset: 0; }
}
@keyframes trendReveal {
  to { clip-path: inset(0 0 0 0); }
}
@keyframes dotPop {
  from { opacity: 0; transform: scale(.55); }
  to { opacity: 1; transform: scale(1); }
}
@keyframes miniLineDraw {
  to { stroke-dashoffset: 0; }
}
@keyframes miniDotPop {
  from { opacity: 0; transform: scale(.45); }
  70% { opacity: 1; transform: scale(1.22); }
  to { opacity: 1; transform: scale(1); }
}

@media (max-width: 1100px) {
  .desktop-nav { display: none; }
  .menu-toggle { display: flex; }
  .mobile-panel { position: fixed; z-index: 999; top: 74px; right: 0; bottom: 0; width: min(380px, 90vw); display: block; background: #fff; border-left: 1px solid var(--line); box-shadow: var(--shadow); padding: 26px; transform: translateX(110%); transition: transform .25s ease; }
  .mobile-panel.open { transform: none; }
  .mobile-panel nav { display: grid; gap: 6px; margin-bottom: 24px; }
  .mobile-panel a { padding: 14px 0; color: var(--navy); font-weight: 900; border-bottom: 1px solid var(--line); }
  .hero, .page-hero, .private-section, .modal-grid, .contact-grid { grid-template-columns: 1fr; }
  .lab-section, .programs-section { grid-template-columns: 1fr; }
  .pillar-grid, .service-row, .group-grid, .result-grid, .plans, .plans.all, .team-full { grid-template-columns: repeat(2, 1fr); }
  .services-section { overflow: hidden; }
  .service-row { grid-template-columns: repeat(5, minmax(180px, 1fr)); gap: 14px; overflow-x: auto; padding-bottom: 8px; scroll-snap-type: x proximity; }
  .service-card { min-height: 250px; scroll-snap-align: start; }
  .service-card div { left: 18px; right: 90px; bottom: 23px; }
  .service-card strong { font-size: 17px; }
  .service-card em { right: 14px; bottom: 22px; width: 78px; min-height: 60px; }
  .system-dashboard { overflow-x: auto; }
  .system-tabs { grid-template-columns: repeat(5, minmax(180px, 1fr)); min-width: 900px; }
  .system-tabs div { padding: 17px 18px 16px; gap: 3px 10px; }
  .system-tabs b { font-size: 38px; min-width: 28px; }
  .system-tabs strong { font-size: 14px; }
  .system-tabs small { font-size: 12px; }
  .dashboard-body, .mission-band, .who-sports, .footer, .results-team { grid-template-columns: 1fr 1fr; }
  .serve-card, .sports-card { grid-column: auto; }
  .sports-grid { grid-template-columns: repeat(4, 1fr); }
  .team-strip { grid-template-columns: repeat(2, 1fr); }
  .team-strip > div { grid-column: 1 / -1; }
}

@media (max-width: 700px) {
  .site-header { height: 68px; padding: 0 16px; }
  .brand-mark { font-size: 38px; }
  .brand-text { font-size: 10px; }
  .btn-small, .lang-toggle { display: none; }
  .hero { grid-template-columns: 1fr; min-height: auto; padding: 48px 18px; }
  .hero-copy h1 { font-size: 58px; }
  .hero-stage > img { min-height: 330px; height: 330px; border-radius: 24px; }
  .metric-stack { position: static; width: 100%; margin-top: 14px; }
  .tablet-card { display: none; }
  .hero-stage::before { display: none; }
  .lab-section, .programs-section, .private-section, .results-team, .deep-grid, .programs-full, .team-full, .contact-grid, .page-hero { padding-left: 18px; padding-right: 18px; }
  .pillar-grid, .service-row, .dashboard-body, .mission-band, .who-sports, .group-grid, .sports-grid, .plans, .plans.all, .result-grid, .team-strip, .footer, .form-row, .results-team { grid-template-columns: 1fr; }
  .result-card { min-height: auto; }
  .system-tabs { grid-template-columns: repeat(5, minmax(170px, 1fr)); min-width: 850px; }
  .mission-title { padding: 34px 28px; }
  .site-cta { margin: 0; border-radius: 0; flex-direction: column; align-items: flex-start; gap: 22px; }
  .footer-bottom { flex-wrap: wrap; justify-content: flex-start; }
  .modal-intro, .booking-form { padding: 34px 24px; }
  .page-hero img { height: 260px; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { scroll-behavior: auto !important; transition: none !important; animation: none !important; }
  .mini-chart polyline, .line-chart polyline { stroke-dashoffset: 0 !important; }
  .mini-chart circle, .line-chart circle { opacity: 1 !important; }
}
