: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; }
.footer-brand .brand { display: inline-flex; gap: 11px; }
.desktop-nav { flex: 1 1 760px; max-width: 860px; display: flex; align-items: center; justify-content: space-between; gap: clamp(12px, 1vw, 18px); margin: 0 auto; font-size: 10px; font-weight: 900; text-transform: uppercase; letter-spacing: .2px; color: var(--navy); white-space: nowrap; }
.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); }
.nav-dropdown { position: relative; }
.desktop-nav .nav-dropdown > a { display: flex; align-items: center; gap: 7px; }
.desktop-nav .nav-dropdown > a::before { content: ""; order: 2; width: 6px; height: 6px; margin-top: -3px; border-right: 2px solid currentColor; border-bottom: 2px solid currentColor; transform: rotate(45deg); transition: transform .2s ease; }
.desktop-nav .nav-dropdown:hover > a::before, .desktop-nav .nav-dropdown:focus-within > a::before { margin-top: 3px; transform: rotate(225deg); }
.nav-submenu { position: absolute; z-index: 20; top: calc(100% - 5px); left: 50%; width: 190px; padding: 8px; opacity: 0; visibility: hidden; transform: translate(-50%, 8px); background: #fff; border: 1px solid var(--line); border-radius: 8px; box-shadow: var(--shadow); transition: opacity .2s ease, transform .2s ease, visibility .2s ease; }
.nav-dropdown:hover .nav-submenu, .nav-dropdown:focus-within .nav-submenu { opacity: 1; visibility: visible; transform: translate(-50%, 0); }
.desktop-nav .nav-submenu a { display: block; padding: 12px 14px; border-radius: 5px; line-height: 1.25; }
.desktop-nav .nav-submenu a:hover { color: var(--teal); background: var(--pale); }
.desktop-nav .nav-submenu a::after { display: none; }
.header-actions { display: flex; align-items: center; gap: 12px; }
.lang-toggle { border: 1px solid transparent; border-radius: 6px; background: transparent; color: #718093; font-size: 11px; font-weight: 800; cursor: pointer; display: flex; gap: 7px; align-items: center; padding: 9px 10px; white-space: nowrap; transition: border-color .2s ease, background .2s ease; }
.lang-toggle:hover, .lang-toggle:focus-visible { border-color: var(--line); background: var(--pale); outline: none; }
.lang-toggle b { color: #a4b0bc; font-weight: 500; }
.lang-toggle.is-es span:last-child, .lang-toggle:not(.is-es) span:first-child { color: var(--teal); font-weight: 900; }
.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: 48% 42%; 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; animation-play-state: paused; 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; animation-play-state: paused; transition: r .2s ease, transform .2s ease, filter .2s ease, fill .2s ease; }
.reveal.in .mini-chart polyline, .reveal.in .mini-chart circle { animation-play-state: running; }
.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%); }
.method-quote { position: relative; isolation: isolate; overflow: hidden; padding: clamp(74px, 8vw, 118px) clamp(20px, 5vw, 76px); background: linear-gradient(90deg, rgba(3,18,36,.88) 0%, rgba(5,31,60,.74) 48%, rgba(7,54,88,.72) 100%), url("./assets/images/service-main-client.jpeg") center 42% / cover no-repeat; border: 0; text-align: center; box-shadow: inset 0 1px 0 rgba(255,255,255,.12), inset 0 -1px 0 rgba(255,255,255,.1); }
.method-quote::before { content: ""; position: absolute; inset: 0; z-index: 0; background: radial-gradient(ellipse at 18% 50%, rgba(255,255,255,.26), transparent 24%), radial-gradient(ellipse at 78% 34%, rgba(33,184,201,.22), transparent 30%), linear-gradient(110deg, transparent 0 27%, rgba(255,255,255,.18) 35%, transparent 47%); filter: blur(26px); opacity: .78; mix-blend-mode: screen; pointer-events: none; }
.method-quote::after { content: ""; position: absolute; inset: 0; z-index: 1; background: linear-gradient(180deg, rgba(255,255,255,.14) 0, transparent 15%, rgba(1,13,28,.08) 50%, rgba(1,13,28,.58) 100%), repeating-linear-gradient(90deg, rgba(255,255,255,.035) 0 1px, transparent 1px 96px); box-shadow: inset 0 18px 42px rgba(255,255,255,.08), inset 0 -24px 46px rgba(1,13,28,.38); pointer-events: none; }
.method-quote p { position: relative; z-index: 2; max-width: 1040px; margin: 0 auto; color: #fff; font-family: var(--display); font-size: clamp(34px, 4vw, 58px); line-height: 1.02; text-transform: uppercase; letter-spacing: 0; text-shadow: 0 16px 38px rgba(0,0,0,.42); }
.method-quote p::before, .method-quote p::after { content: none; }
.services-section { background: #fff; padding-top: clamp(52px, 6vw, 82px); padding-bottom: clamp(52px, 6vw, 82px); }
.bootcamp-service-card { grid-column: 2; position: relative; min-height: 220px; overflow: hidden; display: grid; grid-template-columns: minmax(240px, .65fr) minmax(0, 1.35fr); color: #fff; background: var(--navy); border-radius: 10px; box-shadow: var(--shadow); }
.bootcamp-service-card img { width: 100%; height: 100%; min-height: 220px; object-fit: cover; object-position: center 35%; }
.bootcamp-service-card > div { padding: clamp(28px, 3vw, 44px); align-self: center; }
.bootcamp-service-card span, .bootcamp-service-card b { display: block; color: var(--cyan); font-size: 11px; font-weight: 900; text-transform: uppercase; }
.bootcamp-service-card h3 { margin: 10px 0 12px; color: #fff; font-family: var(--display); font-size: clamp(34px, 3.5vw, 52px); line-height: .9; text-transform: uppercase; }
.bootcamp-service-card p { max-width: 680px; margin: 0 0 18px; color: #c6dce5; font-size: 14px; line-height: 1.6; }
.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:nth-child(1) img { object-position: 50% 38%; }
.service-card:nth-child(2) img { object-position: 48% 36%; }
.service-card:nth-child(3) img { object-position: 54% 44%; }
.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 { max-width: 100%; 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(4, 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; min-width: 0; }
.dashboard-body > * { min-width: 0; }
.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; animation-play-state: paused; }
.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; animation-play-state: paused; }
.reveal.in .radial-progress, .reveal.in .radial-shadow { animation-play-state: running; }
.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; animation-play-state: paused; }
.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; animation-play-state: paused; }
.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; animation-play-state: paused; }
.reveal.in .trend-area, .reveal.in .line-chart polyline, .reveal.in .line-chart circle { animation-play-state: running; }
.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; object-position: 48% 42%; }

.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: 1 / -1; }
.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: 50% 42%; }
.group-grid img.focus-high { object-position: 48% 24%; }
.group-grid img.focus-college { object-position: 56% 45%; }
.group-grid img.focus-pro { object-position: 52% 38%; }
.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: 2; }
.sports-grid { display: grid; grid-template-columns: repeat(6, 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: 43% 34%; }
.sports-grid .focus-basketball img { object-position: 62% 38%; }
.sports-grid .focus-football img { object-position: 46% 18%; }
.sports-grid .focus-soccer img { object-position: 58% 42%; }
.sports-grid .focus-volleyball img { object-position: 42% 42%; }
.sports-grid .focus-track img { object-position: 46% 18%; }
.sports-grid .focus-tennis img { object-position: 43% 36%; }
.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-points { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 12px; padding: 0; margin: 24px 0 24px; list-style: none; }
.lesson-points li { display: grid; grid-template-columns: 48px 1fr; align-items: start; gap: 12px; min-height: 112px; padding: 14px; border: 1px solid var(--line); border-radius: 12px; background: rgba(255,255,255,.82); box-shadow: 0 12px 28px rgba(6,31,63,.05); }
.lesson-points span { width: 48px; height: 40px; display: grid; place-items: center; border-radius: 10px; background: #e8f8fb; color: var(--teal); font-size: 10px; font-weight: 900; text-transform: uppercase; }
.lesson-points b, .lesson-points em { display: block; }
.lesson-points b { color: var(--navy); font-size: 13px; line-height: 1.25; }
.lesson-points em { margin-top: 7px; color: var(--muted); font-size: 11px; line-height: 1.45; font-style: normal; }
.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: transparent; position: relative; overflow: visible; }
.metric-change i::before { content: ""; position: absolute; left: 0; top: 0; width: 100%; height: 2px; background: var(--teal); transform: scaleX(0); transform-origin: left center; animation: arrowLine 1.05s ease .25s forwards; animation-play-state: paused; }
.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); opacity: 0; transform: translateY(-50%) rotate(45deg) translateX(-8px); animation: arrowHead .35s ease 1.05s forwards; animation-play-state: paused; }
.reveal.in .metric-change i::before, .reveal.in .metric-change i::after { animation-play-state: running; }
.result-card:nth-child(2) .metric-change i::before { animation-delay: .38s; }
.result-card:nth-child(2) .metric-change i::after { animation-delay: 1.18s; }
.result-card:nth-child(3) .metric-change i::before { animation-delay: .51s; }
.result-card:nth-child(3) .metric-change i::after { animation-delay: 1.31s; }
.result-card:nth-child(4) .metric-change i::before { animation-delay: .64s; }
.result-card:nth-child(4) .metric-change i::after { animation-delay: 1.44s; }
.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; align-items: center; gap: 15px; margin-top: 18px; }
.socials a { display: grid; place-items: center; width: auto; height: auto; padding: 0; border: 0; border-radius: 0; background: transparent; line-height: 0; box-shadow: none; transition: transform .2s ease, opacity .2s ease; }
.socials img { width: 21px; height: 21px; display: block; object-fit: contain; }
.socials a:hover { transform: translateY(-2px) scale(1.08); opacity: .78; }
.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); }
.about-hero { min-height: 640px; display: grid; grid-template-columns: minmax(0, .88fr) minmax(520px, 1.12fr); gap: clamp(34px, 5vw, 74px); align-items: center; padding: clamp(70px, 8vw, 118px) clamp(20px, 5vw, 76px); background: radial-gradient(circle at 78% 22%, rgba(33,184,201,.16), transparent 34%), linear-gradient(115deg, #fff 0%, #fff 46%, var(--pale) 100%); overflow: hidden; }
.about-hero-copy h1 { font-family: var(--display); color: var(--navy); font-size: clamp(54px, 5.6vw, 78px); line-height: .88; text-transform: uppercase; margin: 14px 0 24px; max-width: 720px; }
.about-hero-copy p { color: var(--muted); font-size: 19px; line-height: 1.72; max-width: 650px; }
.about-hero-actions { display: flex; flex-wrap: wrap; align-items: center; gap: 18px; margin-top: 30px; }
.about-hero-actions a { color: var(--teal); font-size: 12px; font-weight: 900; text-transform: uppercase; }
.about-hero-visual { position: relative; min-height: 480px; }
.about-hero-visual img { position: absolute; inset: 20px 0 0 54px; width: calc(100% - 54px); height: 420px; object-fit: cover; object-position: center; border-radius: 28px; box-shadow: var(--shadow); }
.about-hero-visual::before { display: none; }
.about-hero-panel { position: absolute; left: 0; bottom: 46px; width: min(390px, 70%); padding: 24px; border-radius: 18px; color: #fff; background: linear-gradient(135deg, rgba(6,31,63,.96), rgba(8,58,99,.92)); box-shadow: 0 24px 48px rgba(6,31,63,.24); }
.about-hero-panel b { display: block; font-family: var(--display); font-size: 34px; line-height: .95; text-transform: uppercase; }
.about-hero-panel span { display: block; margin-top: 10px; color: #c6dce5; font-size: 12px; font-weight: 800; text-transform: uppercase; letter-spacing: .7px; }
.about-hero-stats { position: absolute; right: 24px; bottom: 0; display: grid; grid-template-columns: repeat(2, 1fr); gap: 10px; }
.about-hero-stats strong { min-width: 142px; padding: 18px 16px; border: 1px solid var(--line); border-radius: 14px; background: rgba(255,255,255,.94); color: var(--teal); font-family: var(--display); font-size: 36px; line-height: .86; box-shadow: 0 16px 32px rgba(6,31,63,.12); }
.about-hero-stats span { display: block; margin-top: 7px; color: var(--muted); font-family: Inter, sans-serif; font-size: 10px; text-transform: uppercase; }
.about-story, .about-values, .about-athletes, .about-proof-team { padding: clamp(76px, 8vw, 116px) clamp(20px, 5vw, 76px); }
.about-story { display: grid; grid-template-columns: minmax(0, 1.08fr) minmax(360px, .92fr); gap: clamp(34px, 5vw, 72px); align-items: center; background: #fff; }
.about-story-media { position: relative; min-height: 520px; border-radius: 18px; overflow: hidden; box-shadow: var(--shadow); background: var(--navy); }
.about-story-media img { width: 100%; height: 100%; min-height: 520px; object-fit: cover; object-position: center; filter: saturate(.95) contrast(1.04); }
.about-story-media::after { content: ""; position: absolute; inset: 0; background: linear-gradient(180deg, transparent 38%, rgba(3,18,36,.82)); }
.about-story-media div { position: absolute; left: 24px; right: 24px; bottom: 24px; z-index: 1; display: grid; grid-template-columns: repeat(4, 1fr); gap: 10px; }
.about-story-media b { padding: 14px 10px; border: 1px solid rgba(255,255,255,.28); border-radius: 10px; color: #fff; background: rgba(6,31,63,.72); text-align: center; text-transform: uppercase; font-size: 11px; letter-spacing: .6px; backdrop-filter: blur(10px); }
.about-story-copy h2, .about-values-title h2, .about-athletes-head h2, .about-proof-team h2 { font-family: var(--display); color: var(--navy); font-size: clamp(38px, 4.6vw, 66px); line-height: .9; text-transform: uppercase; margin: 10px 0 18px; }
.about-story-copy p, .about-athletes-head p, .about-proof-team p { color: var(--muted); font-size: 18px; line-height: 1.65; max-width: 600px; }
.about-proof-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 12px; margin-top: 30px; }
.about-proof-grid b { display: block; padding: 22px 18px; border: 1px solid var(--line); border-radius: 12px; background: linear-gradient(180deg, #fff, var(--pale)); color: var(--teal); font-family: var(--display); font-size: 38px; line-height: .9; box-shadow: 0 16px 30px rgba(6,31,63,.06); }
.about-proof-grid span { display: block; margin-top: 8px; color: var(--muted); font-family: Inter, sans-serif; font-size: 10px; text-transform: uppercase; }
.about-values { display: grid; grid-template-columns: 280px minmax(0, 1fr) 360px; gap: 22px; align-items: stretch; background: linear-gradient(180deg, var(--pale), #fff); border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.about-values-title { padding: 30px; background: var(--navy); color: #fff; border-radius: 16px; }
.about-values-title span { color: var(--cyan); font-family: var(--display); font-size: 30px; line-height: .98; text-transform: uppercase; }
.about-values-title h2 { color: #fff; font-size: 38px; margin-top: 44px; }
.about-values-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 14px; }
.about-values-grid article { padding: 28px; border: 1px solid var(--line); border-radius: 16px; background: rgba(255,255,255,.86); box-shadow: 0 16px 32px rgba(6,31,63,.06); }
.about-values-grid span { color: var(--teal); font-family: var(--display); font-size: 42px; }
.about-values-grid h3 { color: var(--navy); text-transform: uppercase; margin: 18px 0 10px; }
.about-values-grid p { color: var(--muted); line-height: 1.6; font-size: 14px; }
.about-values img { width: 100%; height: 100%; min-height: 320px; object-fit: cover; border-radius: 16px; box-shadow: var(--shadow); }
.about-athletes { background: #fff; }
.about-athletes-head { display: flex; align-items: end; justify-content: space-between; gap: 30px; margin-bottom: 28px; }
.about-athletes-head h2 { margin: 0; }
.about-audience-row { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; }
.about-audience-row article { position: relative; min-height: 268px; overflow: hidden; border-radius: 14px; background: var(--navy); box-shadow: 0 18px 34px rgba(6,31,63,.12); }
.about-audience-row img { width: 100%; height: 100%; object-fit: cover; object-position: center 35%; transition: transform .35s ease; }
.about-audience-row article:hover img { transform: scale(1.05); }
.about-audience-row article::after { content: ""; position: absolute; inset: 0; background: linear-gradient(180deg, transparent 42%, rgba(3,18,36,.86)); }
.about-audience-row div { position: absolute; left: 18px; right: 18px; bottom: 18px; z-index: 1; color: #fff; }
.about-audience-row h3 { margin: 0 0 4px; text-transform: uppercase; }
.about-audience-row span { color: rgba(255,255,255,.78); font-size: 12px; }
.about-sports-line { margin-top: 18px; display: flex; flex-wrap: wrap; align-items: center; gap: 10px; padding: 18px; border: 1px solid var(--line); border-radius: 14px; background: var(--pale); }
.about-sports-line span { color: var(--teal); font-weight: 900; text-transform: uppercase; font-size: 12px; margin-right: 8px; }
.about-sports-line b { display: inline-flex; align-items: center; min-height: 46px; padding: 13px 19px; border-radius: 999px; background: #fff; color: var(--navy); font-size: 14px; text-transform: uppercase; box-shadow: 0 8px 18px rgba(6,31,63,.06); }
.about-sports-graphic { margin-top: 28px; padding: 24px; background: var(--pale); border: 1px solid var(--line); border-radius: 14px; }
.about-sports-graphic > span { display: block; margin-bottom: 16px; color: var(--teal); font-size: 12px; font-weight: 900; text-transform: uppercase; letter-spacing: 1px; }
.about-proof-team { display: grid; grid-template-columns: 360px minmax(0, 1fr); gap: 28px; align-items: center; background: linear-gradient(135deg, #fff 0%, #fff 40%, var(--pale) 100%); border-top: 1px solid var(--line); }
.about-proof-team a { color: var(--teal); font-weight: 900; text-transform: uppercase; font-size: 12px; }
.about-team-cards { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 12px; }
.about-team-cards article { min-height: 158px; padding: 18px; overflow: hidden; border: 1px solid var(--line); border-radius: 10px; background: #fff; box-shadow: var(--soft); }
.about-team-cards img { display: block; width: calc(100% + 36px); height: 170px; margin: -18px -18px 0; object-fit: cover; object-position: center 18%; }
.about-team-placeholder { display: grid; width: calc(100% + 36px); height: 170px; margin: -18px -18px 0; place-items: center; background: linear-gradient(135deg, var(--navy), #0a5572); }
.about-team-placeholder span { color: rgba(255,255,255,.94); font-family: var(--display); font-size: 58px; line-height: 1; }
.team-initials { display: grid; width: 42px; height: 42px; place-items: center; color: #fff; background: var(--navy); border-radius: 6px; font-family: var(--display); font-size: 20px; }
.about-team-cards h3 { margin: 16px 0 4px; color: var(--navy); text-transform: uppercase; font-size: 13px; }
.about-team-cards p { margin: 0; font-size: 11px; line-height: 1.45; }
.about-final-cta { position: relative; isolation: isolate; overflow: hidden; margin: clamp(50px, 6vw, 80px) clamp(20px, 5vw, 76px); padding: clamp(40px, 5vw, 64px); display: flex; align-items: center; justify-content: space-between; gap: 28px; border: 1px solid rgba(85,216,228,.38); border-radius: 18px; color: #fff; background: linear-gradient(105deg, rgba(4,24,49,.98) 0%, rgba(5,43,78,.94) 56%, rgba(5,83,108,.88) 100%), url("./assets/images/hero-home-client.jpeg") center 42% / cover no-repeat; box-shadow: 0 30px 70px rgba(6,31,63,.22), inset 0 1px 0 rgba(255,255,255,.12); }
.about-final-cta::before { content: "K2"; position: absolute; z-index: -1; right: 15%; bottom: -42px; color: rgba(255,255,255,.055); font-family: var(--display); font-size: clamp(150px, 18vw, 260px); line-height: .75; pointer-events: none; }
.about-final-cta::after { content: ""; position: absolute; z-index: -1; inset: 0; background: linear-gradient(90deg, transparent 0 62%, rgba(85,216,228,.08) 62% 62.15%, transparent 62.15%), radial-gradient(circle at 84% 20%, rgba(33,184,201,.23), transparent 25%); pointer-events: none; }
.about-final-cta > * { position: relative; z-index: 1; }
.about-final-cta span { display: inline-flex; align-items: center; gap: 10px; color: var(--cyan); font-weight: 900; text-transform: uppercase; letter-spacing: 1.5px; font-size: 11px; }
.about-final-cta span::before { content: ""; width: 28px; height: 2px; background: currentColor; }
.about-final-cta h2 { max-width: 720px; margin: 13px 0 15px; color: #fff; font-family: var(--display); font-size: clamp(38px, 4.4vw, 64px); line-height: .9; text-transform: uppercase; text-shadow: 0 12px 28px rgba(0,0,0,.24); }
.about-final-cta p { max-width: 660px; color: #c6dce5; line-height: 1.65; margin: 0; }
.about-final-cta .btn { min-width: 190px; min-height: 58px; border: 1px solid rgba(255,255,255,.22); box-shadow: 0 16px 34px rgba(0,0,0,.24); }
.method-hero { min-height: 640px; display: grid; grid-template-columns: minmax(0, .95fr) minmax(520px, 1.05fr); gap: clamp(34px, 5vw, 74px); align-items: center; padding: clamp(70px, 8vw, 118px) clamp(20px, 5vw, 76px); background: radial-gradient(circle at 82% 16%, rgba(33,184,201,.14), transparent 30%), linear-gradient(115deg, #fff 0%, #fff 50%, var(--pale) 100%); overflow: hidden; }
.method-hero-copy h1 { max-width: 760px; margin: 14px 0 24px; color: var(--navy); font-family: var(--display); font-size: clamp(60px, 5.6vw, 78px); line-height: .86; text-transform: uppercase; }
.inner-method-hero .method-hero-copy h1 { font-size: clamp(48px, 5.6vw, 78px); }
.contact-page-hero h1 { font-size: clamp(48px, 5.6vw, 78px); }
.method-hero-copy p { max-width: 640px; color: var(--muted); font-size: 20px; line-height: 1.65; margin: 0 0 30px; }
.method-hero-visual { position: relative; min-height: 480px; }
.method-hero-visual img { position: absolute; inset: 0; width: 100%; height: 440px; object-fit: cover; object-position: center; border-radius: 28px; box-shadow: var(--shadow); }
.method-hero-visual::before { content: ""; position: absolute; inset: 0; width: 56%; height: 440px; z-index: 1; border-radius: 28px 0 0 28px; background: linear-gradient(90deg, rgba(255,255,255,.86), rgba(255,255,255,.38), transparent); pointer-events: none; }
.method-hero-metrics { position: absolute; z-index: 2; right: 24px; top: 50%; transform: translateY(-50%); display: grid; gap: 12px; width: min(250px, 42%); }
.method-hero-metrics article { padding: 17px 18px; border-radius: 16px; background: rgba(255,255,255,.94); border: 1px solid var(--line); box-shadow: 0 16px 32px rgba(6,31,63,.14); }
.method-hero-metrics span { display: block; color: var(--muted); font-size: 10px; font-weight: 900; text-transform: uppercase; }
.method-hero-metrics b { display: inline-block; margin-top: 5px; color: var(--navy); font-family: var(--display); font-size: 38px; line-height: .86; }
.method-hero-metrics small { color: var(--teal); font-size: 11px; font-weight: 900; text-transform: uppercase; margin-left: 5px; }
.method-foundation, .method-pathway, .method-outcomes { padding: clamp(76px, 8vw, 116px) clamp(20px, 5vw, 76px); }
.method-foundation { display: grid; grid-template-columns: minmax(310px, .78fr) minmax(560px, 1.22fr); gap: clamp(34px, 5vw, 72px); align-items: center; background: linear-gradient(120deg, #fff 0%, #fff 48%, #f4fafc 100%); border-top: 1px solid var(--line); }
.method-foundation-copy h2, .method-pathway-head h2, .method-final-cta h2 { color: var(--navy); font-family: var(--display); font-size: clamp(42px, 5vw, 72px); line-height: .9; text-transform: uppercase; margin: 12px 0 18px; }
.method-foundation-copy p { max-width: 620px; color: var(--muted); font-size: 18px; line-height: 1.7; }
.method-foundation-cta { margin-top: 26px; }
.method-foundation-visual { position: relative; min-height: 600px; padding: 0 0 38px 64px; }
.method-foundation-visual > img { width: 100%; height: 430px; object-fit: cover; object-position: center 32%; border-radius: 22px; box-shadow: 0 26px 58px rgba(6,31,63,.16); }
.method-foundation-focus { position: absolute; left: 0; right: 34px; bottom: 0; display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); background: #fff; border: 1px solid var(--line); border-radius: 16px; box-shadow: 0 24px 54px rgba(6,31,63,.14); overflow: hidden; }
.method-foundation-focus article { display: grid; grid-template-columns: 38px minmax(0, 1fr); gap: 13px; min-height: 142px; padding: 22px 20px; border-right: 1px solid var(--line); border-bottom: 1px solid var(--line); transition: background .22s ease; }
.method-foundation-focus article:nth-child(2n) { border-right: 0; }
.method-foundation-focus article:nth-last-child(-n+2) { border-bottom: 0; }
.method-foundation-focus article:hover { background: #f3fafc; }
.method-focus-icon { width: 38px; height: 38px; display: grid; place-items: center; border-radius: 50%; background: #eaf8fb; }
.method-focus-icon svg { width: 20px; height: 20px; fill: none; stroke: var(--teal); stroke-width: 1.8; stroke-linecap: round; stroke-linejoin: round; }
.method-foundation-focus b { color: var(--cyan); font-family: var(--display); font-size: 20px; line-height: .9; }
.method-foundation-focus h3 { margin: 5px 0 6px; color: var(--navy); font-size: 13px; line-height: 1.1; text-transform: uppercase; }
.method-foundation-focus p { margin: 0; color: var(--muted); font-size: 11px; line-height: 1.5; }
.method-pathway { background: linear-gradient(180deg, var(--pale), #fff); border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.method-pathway-head { display: block; max-width: 820px; margin: 0 auto 34px; text-align: center; }
.method-pathway-head h2 { max-width: 820px; margin: 12px auto 0; }
.method-pathway-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 14px; }
.method-pathway-grid article { display: grid; grid-template-columns: 64px 1fr; gap: 16px; padding: 24px; border-radius: 12px; border: 1px solid var(--line); background: #fff; box-shadow: 0 16px 32px rgba(6,31,63,.06); }
.method-pathway-grid b { color: var(--cyan); font-family: var(--display); font-size: 54px; line-height: .88; }
.method-pathway-grid h3 { margin: 0 0 8px; color: var(--navy); text-transform: uppercase; }
.method-pathway-grid p { margin: 0; color: var(--muted); font-size: 13px; line-height: 1.55; }
.method-outcomes { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; background: linear-gradient(180deg, #fff, var(--pale)); border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.method-outcome-card { position: relative; min-height: 300px; overflow: hidden; padding: 28px; border: 1px solid rgba(6,31,63,.14); border-radius: 12px; background: var(--navy); box-shadow: 0 18px 34px rgba(6,31,63,.12); }
.method-outcome-card::before { content: ""; position: absolute; inset: 0; background: linear-gradient(180deg, rgba(6,31,63,.08), rgba(6,31,63,.92)), url("./assets/images/service-speed-agility-client.jpeg") center / cover no-repeat; opacity: .9; transition: transform .35s ease, opacity .35s ease; }
.method-outcome-card:nth-child(2)::before { background-image: linear-gradient(180deg, rgba(6,31,63,.08), rgba(6,31,63,.92)), url("./assets/images/service-explosive-power-client.jpeg"); }
.method-outcome-card:nth-child(3)::before { background-image: linear-gradient(180deg, rgba(6,31,63,.08), rgba(6,31,63,.92)), url("./assets/images/hero-home-client.jpeg"); }
.method-outcome-card:hover::before { transform: scale(1.05); opacity: 1; }
.method-outcome-card span, .method-outcome-card b, .method-outcome-card p { position: relative; z-index: 1; }
.method-outcome-card span { display: inline-block; padding: 8px 10px; border-radius: 8px; background: rgba(33,184,201,.14); color: var(--cyan); font-size: 11px; font-weight: 900; text-transform: uppercase; letter-spacing: .8px; }
.method-outcome-card b { display: block; margin: 94px 0 10px; color: #fff; font-family: var(--display); font-size: 82px; line-height: .82; text-shadow: 0 14px 26px rgba(0,0,0,.28); }
.method-outcome-card p { max-width: 320px; color: #d8e9ef; line-height: 1.5; margin: 0; font-weight: 600; }
.method-final-cta { margin: clamp(50px, 6vw, 80px) clamp(20px, 5vw, 76px); padding: clamp(34px, 5vw, 58px); display: flex; align-items: center; justify-content: space-between; gap: 28px; border-radius: 18px; color: #fff; background: linear-gradient(115deg, rgba(6,31,63,.98), rgba(8,58,99,.94)), url("./assets/images/hero-home-client.jpeg") center / cover no-repeat; box-shadow: var(--shadow); }
.method-final-cta h2 { color: #fff; }
.method-final-cta p { max-width: 650px; margin: 0; color: #c6dce5; line-height: 1.65; }
.method-intro { display: grid; grid-template-columns: minmax(0, .95fr) minmax(420px, 1.05fr); gap: clamp(28px, 5vw, 62px); align-items: center; padding: clamp(64px, 7vw, 96px) clamp(20px, 5vw, 76px); background: #fff; border-bottom: 1px solid var(--line); }
.method-intro-copy h2 { margin: 12px 0 16px; color: var(--navy); font-family: var(--display); font-size: clamp(38px, 4.4vw, 64px); line-height: .9; text-transform: uppercase; }
.method-intro-copy p { max-width: 660px; color: var(--muted); font-size: 17px; line-height: 1.7; }
.method-intro-copy a { display: inline-block; margin-top: 12px; color: var(--teal); font-size: 12px; font-weight: 900; text-transform: uppercase; }
.method-intro-steps { display: grid; grid-template-columns: repeat(4, 1fr); gap: 12px; }
.method-intro-steps article { min-height: 158px; padding: 22px; border: 1px solid var(--line); border-radius: 14px; background: linear-gradient(180deg, #fff, var(--pale)); box-shadow: 0 14px 28px rgba(6,31,63,.06); }
.method-intro-steps b { display: block; color: var(--cyan); font-family: var(--display); font-size: 48px; line-height: .85; }
.method-intro-steps span { display: block; margin-top: 40px; color: var(--navy); font-size: 13px; font-weight: 900; text-transform: uppercase; }
.programs-method-intro { display: block; background: linear-gradient(180deg, #fff 0%, #f5fafc 100%); }
.programs-method-intro .method-intro-copy { max-width: 900px; margin-bottom: 42px; }
.programs-method-intro .method-intro-copy h2 { max-width: none; }
.programs-method-intro .method-intro-copy p { max-width: 820px; }
.programs-pillar-grid { width: 100%; }
.programs-pillar-grid .pillar-card { min-height: 276px; }
.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; }
.bundle-heading-secondary { margin-top: 48px; }
.bundle-plans { padding: 28px; border-radius: 16px; background: var(--pale); border: 1px solid var(--line); }
.program-offering-divider { position: relative; display: flex; align-items: center; justify-content: center; margin: clamp(58px, 7vw, 92px) 0 0; color: var(--teal); font-size: 11px; font-weight: 900; text-transform: uppercase; }
.program-offering-divider::before, .program-offering-divider::after { content: ""; height: 1px; flex: 1; background: var(--line); }
.program-offering-divider span { padding: 0 22px; text-align: center; }
.bundle-heading { max-width: 920px; margin: 0 auto 48px; text-align: center; }
.bundle-heading h2, .private-package-head h2, .clinic-intro h2, .rental-overview h2 { margin: 12px 0 18px; color: var(--navy); font-family: var(--display); font-size: clamp(42px, 5vw, 68px); line-height: .9; text-transform: uppercase; }
.bundle-heading p, .private-package-head p, .clinic-intro p, .rental-overview p { margin: 0 auto; max-width: 780px; color: var(--muted); font-size: 17px; line-height: 1.7; }
.baseball-training-page { padding: clamp(72px, 8vw, 112px) clamp(20px, 5vw, 76px); background: #fff; }
.hitting-groups { margin-top: clamp(72px, 8vw, 112px); padding: clamp(42px, 5vw, 72px); color: #fff; background: linear-gradient(125deg, var(--navy), #0a456b); border-radius: 16px; box-shadow: var(--shadow); }
.hitting-groups-intro { max-width: 840px; margin-bottom: 38px; }
.hitting-groups-intro .mini-kicker { color: var(--cyan); }
.hitting-groups-intro h2 { margin: 12px 0 18px; font-family: var(--display); font-size: clamp(46px, 5vw, 72px); line-height: .9; text-transform: uppercase; }
.hitting-groups-intro p { margin: 0; color: #c6dce5; font-size: 17px; line-height: 1.7; }
.hitting-group-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 16px; }
.hitting-group-grid article { display: flex; flex-direction: column; min-height: 320px; padding: 28px; background: #fff; color: var(--ink); border: 1px solid rgba(255,255,255,.35); border-radius: 10px; }
.hitting-group-grid article.featured { border: 3px solid var(--cyan); transform: translateY(-7px); }
.hitting-group-grid article > span { color: var(--teal); font-size: 12px; font-weight: 900; text-transform: uppercase; }
.hitting-group-grid strong { margin: 18px 0; color: var(--navy); font-family: var(--display); font-size: 54px; line-height: .85; }
.hitting-group-grid strong small { font-family: var(--body); font-size: 11px; text-transform: uppercase; }
.hitting-group-grid p { flex: 1; color: var(--muted); line-height: 1.6; }
.training-mantra { display: block; margin-top: 34px; color: var(--cyan); font-family: var(--display); font-size: clamp(28px, 3vw, 42px); text-align: center; text-transform: uppercase; }
.program-path-links { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 20px; margin-top: 46px; }
.program-path-links > a { display: grid; grid-template-columns: 74px minmax(0, 1fr); gap: 20px; align-items: start; padding: 28px; border: 1px solid var(--line); border-radius: 12px; background: var(--pale); transition: transform .22s ease, box-shadow .22s ease, border-color .22s ease; }
.program-path-links > a:hover { transform: translateY(-4px); border-color: var(--teal); box-shadow: var(--soft); }
.program-path-links > a > span { color: var(--cyan); font-family: var(--display); font-size: 54px; line-height: .8; }
.program-path-links h3 { margin: 0 0 8px; color: var(--navy); text-transform: uppercase; }
.program-path-links p { margin: 0 0 15px; color: var(--muted); line-height: 1.55; }
.program-path-links b { color: var(--teal); font-size: 12px; text-transform: uppercase; }
.program-promise { position: relative; isolation: isolate; overflow: hidden; display: grid; grid-template-columns: minmax(320px, .82fr) minmax(0, 1.18fr); gap: clamp(36px, 5vw, 76px); align-items: center; margin-top: clamp(54px, 6vw, 82px); padding: clamp(48px, 5vw, 72px); color: #fff; background: linear-gradient(125deg, #061f3f 0%, #082f56 58%, #075c75 100%); border-radius: 18px; box-shadow: 0 30px 70px rgba(6,31,63,.2); }
.program-promise::before { content: "K2"; position: absolute; z-index: -1; right: -28px; bottom: -82px; color: rgba(255,255,255,.045); font-family: var(--display); font-size: 330px; line-height: .8; pointer-events: none; }
.program-promise::after { display: none; }
.program-promise .mini-kicker { color: #55d8e4; }
.program-promise h2 { margin: 14px 0 20px; color: #fff; font-family: var(--display); font-size: clamp(48px, 5vw, 72px); line-height: .88; text-transform: uppercase; }
.program-promise-lead > p { max-width: 560px; margin: 0 0 28px; color: #c6dce5; font-size: 17px; line-height: 1.7; }
.program-promise-list { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); border-top: 1px solid rgba(255,255,255,.16); border-left: 1px solid rgba(255,255,255,.16); }
.program-promise-list article { display: grid; grid-template-columns: 42px minmax(0, 1fr); gap: 15px; align-items: start; min-height: 128px; padding: 24px 22px; border-right: 1px solid rgba(255,255,255,.16); border-bottom: 1px solid rgba(255,255,255,.16); transition: background .22s ease, transform .22s ease; }
.program-promise-list article:last-child { grid-column: 1 / -1; min-height: 112px; }
.program-promise-list article:hover { background: rgba(255,255,255,.07); }
.program-promise-icon { width: 42px; height: 42px; display: grid; place-items: center; border-radius: 50%; color: #fff; background: rgba(33,184,201,.16); border: 1px solid rgba(85,216,228,.42); }
.program-promise-icon svg { width: 22px; height: 22px; fill: none; stroke: #55d8e4; stroke-width: 1.8; stroke-linecap: round; stroke-linejoin: round; }
.program-promise-list h3 { margin: 1px 0 7px; color: #fff; font-size: 14px; line-height: 1.1; text-transform: uppercase; }
.program-promise-list p { margin: 0; color: #bcd3df; font-size: 12px; line-height: 1.55; }
.private-package-section { padding: clamp(76px, 8vw, 116px) clamp(20px, 5vw, 76px); background: #fff; }
.private-package-head { max-width: 920px; margin-bottom: 48px; }
.private-package-head p { margin-left: 0; }
.private-package-layout { display: grid; grid-template-columns: minmax(0, 1.55fr) minmax(290px, .45fr); gap: 28px; align-items: start; }
.private-package-layout > div > h3, .private-included h3 { margin: 0 0 20px; color: var(--navy); font-family: var(--display); font-size: 32px; text-transform: uppercase; }
.lesson-package-grid { display: grid; grid-template-columns: repeat(5, minmax(0, 1fr)); gap: 12px; }
.lesson-package-grid article { display: flex; flex-direction: column; min-height: 290px; padding: 22px 18px; border: 1px solid var(--line); border-radius: 10px; background: #fff; box-shadow: 0 14px 30px rgba(6,31,63,.06); }
.lesson-package-grid article.featured { border: 2px solid var(--teal); transform: translateY(-8px); }
.lesson-package-grid span { color: var(--teal); font-size: 11px; font-weight: 900; text-transform: uppercase; }
.lesson-package-grid strong { margin: 18px 0 10px; color: var(--navy); font-family: var(--display); font-size: 42px; line-height: .9; }
.lesson-package-grid p { flex: 1; color: var(--muted); font-size: 12px; line-height: 1.55; }
.lesson-package-grid .btn { width: 100%; padding: 0 12px; font-size: 10px; }
.private-included { padding: 30px; color: #fff; background: var(--navy); border-radius: 12px; box-shadow: var(--shadow); }
.private-included h3 { color: #fff; }
.private-included ul { margin: 0; padding: 0; list-style: none; }
.private-included li { position: relative; padding: 12px 0 12px 25px; color: #c6dce5; border-bottom: 1px solid rgba(255,255,255,.12); font-size: 13px; line-height: 1.45; }
.private-included li::before { content: "✓"; position: absolute; left: 0; color: var(--cyan); font-weight: 900; }
.private-difference { margin-top: 34px; padding: clamp(34px, 4vw, 54px); color: #fff; background: linear-gradient(120deg, var(--navy), #0a4770); border-radius: 14px; }
.private-difference span { color: var(--cyan); font-weight: 900; text-transform: uppercase; }
.private-difference h3 { margin: 12px 0; font-family: var(--display); font-size: clamp(38px, 4vw, 58px); line-height: .9; text-transform: uppercase; }
.private-difference p { max-width: 780px; margin: 0; color: #c6dce5; font-size: 16px; line-height: 1.65; }
.clinic-intro { padding: clamp(72px, 8vw, 108px) clamp(20px, 8vw, 150px); text-align: center; background: var(--pale); }
.clinic-programs { display: grid; gap: 1px; background: var(--line); }
.clinic-program { display: grid; grid-template-columns: minmax(360px, .82fr) minmax(0, 1.18fr); min-height: 680px; background: #fff; }
.clinic-program:nth-child(even) .clinic-program-media { order: 2; }
.clinic-program-media { position: relative; min-height: 600px; overflow: hidden; background: var(--navy); }
.clinic-program-media img { width: 100%; height: 100%; object-fit: cover; object-position: center; }
.clinic-program-media span { position: absolute; left: 24px; bottom: 24px; padding: 10px 14px; color: #fff; background: rgba(6,31,63,.9); border: 1px solid rgba(255,255,255,.22); border-radius: 5px; font-weight: 900; text-transform: uppercase; }
.clinic-program-copy { padding: clamp(46px, 6vw, 88px); align-self: center; }
.clinic-program-copy h2 { margin: 12px 0 18px; color: var(--navy); font-family: var(--display); font-size: clamp(48px, 5vw, 72px); line-height: .9; text-transform: uppercase; }
.clinic-program-copy > p { max-width: 680px; color: var(--muted); font-size: 17px; line-height: 1.7; }
.clinic-details { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1px; margin: 28px 0; background: var(--line); border: 1px solid var(--line); }
.clinic-details div { padding: 16px; background: var(--pale); }
.clinic-details span { display: block; color: var(--muted); font-size: 10px; font-weight: 800; text-transform: uppercase; }
.clinic-details b { display: block; margin-top: 5px; color: var(--navy); font-size: 13px; }
.clinic-program-copy ul { columns: 2; gap: 34px; margin: 0 0 30px; padding: 0; list-style: none; }
.clinic-program-copy li { break-inside: avoid; padding: 8px 0; color: var(--muted); font-size: 13px; }
.clinic-program-copy li::before { content: "✓"; margin-right: 9px; color: var(--teal); font-weight: 900; }
.clinic-pathway { padding: clamp(70px, 8vw, 108px) clamp(20px, 8vw, 150px); color: #fff; text-align: center; background: var(--navy); }
.clinic-pathway h2 { margin: 0 0 36px; font-family: var(--display); font-size: clamp(44px, 5vw, 68px); line-height: .9; text-transform: uppercase; }
.clinic-pathway > div { display: flex; justify-content: center; align-items: center; gap: 24px; }
.clinic-pathway article { min-width: 210px; padding: 24px; border: 1px solid rgba(255,255,255,.2); }
.clinic-pathway b { display: block; color: var(--cyan); font-family: var(--display); font-size: 42px; }
.clinic-pathway span { font-weight: 900; text-transform: uppercase; }
.clinic-pathway i { width: 90px; height: 2px; background: var(--cyan); }
.bootcamp-intro { display: grid; grid-template-columns: minmax(0, 1.25fr) minmax(300px, .75fr); gap: clamp(42px, 7vw, 100px); align-items: center; padding: clamp(76px, 8vw, 112px) clamp(20px, 5vw, 76px); background: #fff; }
.bootcamp-intro h2, .bootcamp-expect h2, .bootcamp-plans h2, .bootcamp-final h2 { margin: 12px 0 18px; color: var(--navy); font-family: var(--display); font-size: clamp(44px, 5vw, 70px); line-height: .9; text-transform: uppercase; }
.bootcamp-intro p { max-width: 760px; margin: 0; color: var(--muted); font-size: 17px; line-height: 1.72; }
.bootcamp-intro blockquote { margin: 0; padding: 34px; color: #fff; background: linear-gradient(130deg, var(--navy), #0a5572); border-radius: 12px; box-shadow: var(--shadow); font-family: var(--display); font-size: clamp(30px, 3vw, 44px); line-height: 1; text-transform: uppercase; }
.bootcamp-expect { padding: clamp(76px, 8vw, 112px) clamp(20px, 5vw, 76px); background: var(--pale); }
.bootcamp-expect > header, .bootcamp-plans > header { max-width: 880px; margin: 0 auto 44px; text-align: center; }
.bootcamp-expect > div { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 16px; }
.bootcamp-expect article { min-height: 250px; padding: 28px; background: #fff; border: 1px solid var(--line); border-radius: 10px; box-shadow: 0 16px 34px rgba(6,31,63,.07); }
.bootcamp-expect article > span { width: 48px; height: 48px; display: grid; place-items: center; color: var(--teal); background: #eaf8fb; border-radius: 8px; }
.bootcamp-expect svg { width: 26px; height: 26px; fill: none; stroke: currentColor; stroke-width: 1.8; }
.bootcamp-expect h3 { margin: 34px 0 10px; color: var(--navy); font-size: 16px; text-transform: uppercase; }
.bootcamp-expect p { margin: 0; color: var(--muted); font-size: 13px; line-height: 1.6; }
.bootcamp-plans { padding: clamp(76px, 8vw, 112px) clamp(20px, 10vw, 190px); background: #fff; }
.bootcamp-plan-grid { max-width: 940px; margin: 0 auto; display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 24px; }
.bootcamp-plan-grid .plan-card { min-height: 410px; display: flex; flex-direction: column; }
.bootcamp-plan-grid .plan-card ul { flex: 1; }
.bootcamp-final { margin: 0 clamp(20px, 5vw, 76px) clamp(60px, 7vw, 96px); padding: clamp(42px, 5vw, 68px); display: flex; align-items: center; justify-content: space-between; gap: 32px; color: #fff; background: linear-gradient(110deg, rgba(6,31,63,.98), rgba(7,84,110,.94)), url("./assets/images/serve-professional-client.jpeg") center 38% / cover no-repeat; border-radius: 16px; box-shadow: var(--shadow); }
.bootcamp-final h2 { max-width: 780px; color: #fff; }
.bootcamp-final p { max-width: 680px; margin: 0; color: #c6dce5; line-height: 1.65; }
.bootcamp-final .mini-kicker { color: var(--cyan); }
.rental-overview { display: grid; grid-template-columns: minmax(300px, .72fr) minmax(0, 1.28fr); gap: clamp(42px, 7vw, 100px); align-items: center; padding: clamp(76px, 8vw, 112px) clamp(20px, 5vw, 76px); background: var(--pale); }
.rental-overview p { margin-left: 0; }
.rental-table { overflow: hidden; border: 1px solid var(--line); border-radius: 12px; background: #fff; box-shadow: var(--soft); }
.rental-row { display: grid; grid-template-columns: 1.2fr repeat(2, 1fr); }
.rental-row > * { display: flex; align-items: center; min-height: 68px; padding: 0 22px; border-right: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.rental-row > *:last-child { border-right: 0; }
.rental-row:last-child > * { border-bottom: 0; }
.rental-head { color: #fff; background: var(--navy); }
.rental-head b { border-color: rgba(255,255,255,.14); font-size: 12px; text-transform: uppercase; }
.rental-row strong { color: var(--navy); }
.rental-row span { color: var(--teal); font-family: var(--display); font-size: 30px; }
.rental-details { display: grid; grid-template-columns: 1.35fr .65fr; gap: 28px; padding: clamp(76px, 8vw, 112px) clamp(20px, 5vw, 76px); }
.rental-uses > div { display: grid; grid-template-columns: repeat(2, 1fr); gap: 12px; margin-top: 24px; }
.rental-uses article { display: flex; align-items: center; gap: 13px; padding: 18px; border: 1px solid var(--line); border-radius: 8px; color: var(--navy); font-weight: 800; }
.rental-uses svg { width: 24px; flex: 0 0 24px; fill: none; stroke: var(--teal); stroke-width: 1.8; }
.rental-info { padding: 34px; color: #fff; background: var(--navy); border-radius: 12px; box-shadow: var(--shadow); }
.rental-info p { color: #c6dce5; line-height: 1.65; }
.rental-info .btn { margin-top: 16px; }
.rental-info small { display: block; margin-top: 14px; color: #91aabd; line-height: 1.45; }
.team-full { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }
.team-full .coach-avatar { height: 180px; display: grid; place-items: center; background: linear-gradient(135deg, var(--navy), #0a5572); }
.team-full .coach-avatar::after { display: none; }
.team-full .coach-avatar.has-photo { background: var(--pale); }
.team-full .coach-avatar.has-photo img { width: 100%; height: 100%; object-fit: cover; object-position: center 18%; }
.team-full .coach-avatar span { color: rgba(255,255,255,.92); font-family: var(--display); font-size: 62px; }
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; background: var(--pale); }
.map-card { display: flex; flex-direction: column; background: linear-gradient(135deg, #fff, #eaf6fa); min-height: 560px; }
.map-card iframe { flex: 1 1 auto; width: 100%; min-height: 420px; margin-top: 18px; border: 0; border-radius: 10px; box-shadow: inset 0 0 0 1px var(--line); }
.contact-form-card { padding: clamp(28px, 4vw, 48px); }
.contact-booking-form { padding: 18px 0 0; }
.contact-booking-form .btn { justify-self: start; }

.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; }
.form-honeypot { position: absolute !important; left: -10000px !important; width: 1px !important; height: 1px !important; overflow: hidden !important; }
.booking-form button:disabled { cursor: wait; opacity: .7; }

.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); }
}
@keyframes arrowLine {
  to { transform: scaleX(1); }
}
@keyframes arrowHead {
  to { opacity: 1; transform: translateY(-50%) rotate(45deg) translateX(0); }
}

@media (min-width: 1101px) {
  .about-hero-copy h1,
  .method-hero:not(.inner-method-hero) .method-hero-copy h1,
  .contact-page-hero h1 { font-size: 78px; }
}

@media (min-width: 1101px) and (max-width: 1370px) {
  .desktop-nav { display: none; }
  .menu-toggle { display: flex; }
  .header-actions > .lang-toggle { position: absolute; left: 50%; transform: translateX(-50%); }
  .mobile-panel { position: fixed; z-index: 999; top: 66px; 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); }
}

@media (max-width: 1100px) {
  .desktop-nav { display: none; }
  .menu-toggle { display: flex; }
  .header-actions > .lang-toggle { position: absolute; left: 50%; transform: translateX(-50%); }
  .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); }
  .mobile-nav-group { border-bottom: 1px solid var(--line); }
  .mobile-nav-parent { width: 100%; min-height: 49px; display: flex; align-items: center; justify-content: space-between; gap: 16px; padding: 0; color: var(--navy); background: transparent; border: 0; cursor: pointer; font: inherit; font-weight: 900; text-align: left; }
  .mobile-nav-parent:focus-visible { outline: 2px solid var(--teal); outline-offset: 3px; border-radius: 3px; }
  .mobile-nav-parent i { width: 8px; height: 8px; margin: -4px 4px 0 0; border-right: 2px solid currentColor; border-bottom: 2px solid currentColor; transform: rotate(45deg); transition: transform .2s ease, margin .2s ease; }
  .mobile-nav-parent[aria-expanded="true"] i { margin-top: 4px; transform: rotate(225deg); }
  .mobile-nav-submenu { display: grid; overflow: hidden; }
  .mobile-nav-group.open .mobile-nav-submenu { padding-bottom: 8px; }
  .mobile-nav-submenu[hidden] { display: none; }
  .mobile-nav-submenu a { margin-left: 14px; padding: 11px 12px; color: var(--muted); border-bottom: 0; border-left: 2px solid var(--line); font-size: 13px; }
  .mobile-nav-submenu a:hover { color: var(--teal); border-left-color: var(--teal); background: var(--pale); }
  .hero, .page-hero, .about-hero, .method-hero, .method-foundation, .method-intro, .private-section, .modal-grid, .contact-grid { grid-template-columns: 1fr; }
  .about-hero-visual { min-height: 500px; }
  .method-pathway-grid, .method-outcomes, .method-intro-steps { grid-template-columns: repeat(2, 1fr); }
  .method-hero-visual { min-height: 470px; }
  .method-foundation-visual { min-height: 660px; padding-left: 0; }
  .method-foundation-focus { right: 24px; left: 24px; }
  .about-story, .about-values, .about-proof-team { grid-template-columns: 1fr; }
  .about-values-grid, .about-audience-row, .about-team-cards { grid-template-columns: repeat(2, 1fr); }
  .about-values-title h2 { margin-top: 24px; }
  .about-values img { max-height: 420px; }
  .program-promise { grid-template-columns: 1fr; }
  .hitting-group-grid { grid-template-columns: 1fr; }
  .hitting-group-grid article.featured { transform: none; }
  .bootcamp-expect > div { grid-template-columns: repeat(2, 1fr); }
  .bootcamp-service-card { grid-column: 1; }
  .private-package-layout, .rental-overview, .rental-details { grid-template-columns: 1fr; }
  .lesson-package-grid { grid-template-columns: repeat(3, 1fr); }
  .clinic-program { grid-template-columns: 1fr; }
  .clinic-program:nth-child(even) .clinic-program-media { order: 0; }
  .clinic-program-media { min-height: 460px; }
  .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: hidden; }
  .system-tabs { grid-template-columns: repeat(4, minmax(0, 1fr)); min-width: 0; }
  .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(3, 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; display: grid; grid-template-columns: minmax(112px, 1fr) auto minmax(42px, 1fr); gap: 8px; }
  .site-header > .brand { grid-column: 1; justify-self: start; }
  .header-actions { display: contents; }
  .brand-mark { font-size: 38px; }
  .brand-text { font-size: 10px; }
  .btn-small { display: none; }
  .header-actions > .lang-toggle { grid-column: 2; display: flex; position: static; transform: none; justify-self: center; padding: 8px 6px; gap: 5px; font-size: 10px; }
  .header-actions > .menu-toggle { grid-column: 3; justify-self: end; }
  .hero { grid-template-columns: 1fr; min-height: auto; padding: 56px 22px 66px; gap: 24px; }
  .hero-copy h1 { font-size: 58px; }
  .hero-copy p { margin-bottom: 24px; }
  .hero-tags { margin-top: 30px; gap: 10px 12px; }
  .hero-stage { min-height: 0; height: auto; overflow: visible; }
  .hero-image { position: relative; inset: auto; height: 300px; border-radius: 20px; }
  .hero-image-main { width: 100%; }
  .hero-stage > img { min-height: 330px; height: 330px; border-radius: 24px; }
  .metric-stack { position: static; width: 100%; margin-top: 18px; gap: 12px; }
  .metric-card { min-height: 72px; padding: 13px 16px; border-radius: 18px; }
  .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, .about-hero, .about-story, .about-values, .about-athletes, .about-proof-team, .method-hero, .method-foundation, .method-pathway, .method-outcomes, .method-intro { padding-left: 18px; padding-right: 18px; }
  .deep-grid { grid-template-columns: 1fr; }
  .about-hero { min-height: auto; padding-top: 48px; padding-bottom: 72px; }
  .about-hero-copy h1 { max-width: 100%; font-size: 46px; overflow-wrap: anywhere; }
  .about-hero-visual { min-height: auto; display: grid; gap: 12px; }
  .about-hero-visual::before { display: none; }
  .about-hero-visual img, .about-hero-panel, .about-hero-stats { position: relative; inset: auto; width: 100%; }
  .about-hero-visual img { height: 320px; border-radius: 20px; }
  .about-hero-panel { bottom: auto; padding: 20px; }
  .about-hero-stats { right: auto; bottom: auto; grid-template-columns: 1fr 1fr; }
  .about-final-cta { margin-left: 0; margin-right: 0; border-radius: 0; flex-direction: column; align-items: flex-start; }
  .method-hero { min-height: auto; padding-top: 48px; padding-bottom: 64px; }
  .method-hero-copy h1 { max-width: 100%; font-size: 50px; overflow-wrap: anywhere; }
  .method-checks, .method-pathway-grid, .method-outcomes, .method-intro-steps { grid-template-columns: 1fr; }
  .method-intro-steps article { min-height: 130px; }
  .method-intro-steps span { margin-top: 28px; }
  .method-hero-visual { min-height: auto; display: grid; gap: 12px; }
  .method-hero-visual::before { display: none; }
  .method-hero-visual img, .method-hero-metrics { position: relative; inset: auto; width: 100%; transform: none; }
  .method-hero-visual img { height: 300px; border-radius: 20px; }
  .method-hero-metrics { grid-template-columns: 1fr; }
  .method-foundation-visual { min-height: auto; padding: 0; }
  .method-foundation-visual > img { height: 300px; border-radius: 18px 18px 0 0; }
  .method-foundation-focus { position: relative; inset: auto; grid-template-columns: 1fr; border-radius: 0 0 18px 18px; box-shadow: 0 20px 42px rgba(6,31,63,.12); }
  .method-foundation-focus article, .method-foundation-focus article:nth-child(2n), .method-foundation-focus article:nth-last-child(-n+2) { min-height: auto; border-right: 0; border-bottom: 1px solid var(--line); }
  .method-foundation-focus article:last-child { border-bottom: 0; }
  .method-pathway-head { display: block; }
  .method-pathway-grid article { grid-template-columns: 48px 1fr; }
  .method-final-cta { margin-left: 0; margin-right: 0; border-radius: 0; flex-direction: column; align-items: flex-start; }
  .method-quote { padding-left: 18px; padding-right: 18px; }
  .method-quote p { font-size: 34px; }
  .program-promise { margin-left: -18px; margin-right: -18px; padding: 44px 22px; border-radius: 0; }
  .program-promise::before { right: -16px; bottom: -38px; font-size: 190px; }
  .program-promise::after { display: none; }
  .program-promise-list { grid-template-columns: 1fr; }
  .program-promise-list article, .program-promise-list article:last-child { grid-column: auto; min-height: auto; padding: 21px 18px; }
  .bundle-heading { text-align: left; }
  .bundle-plans { padding: 14px; }
  .program-offering-divider span { max-width: 210px; padding: 0 14px; }
  .bootcamp-service-card { grid-template-columns: 1fr; }
  .bootcamp-service-card img { height: 260px; min-height: 0; }
  .bootcamp-intro, .bootcamp-expect, .bootcamp-plans { padding-left: 18px; padding-right: 18px; }
  .bootcamp-intro { grid-template-columns: 1fr; }
  .bootcamp-expect > header, .bootcamp-plans > header { text-align: left; }
  .bootcamp-expect > div, .bootcamp-plan-grid { grid-template-columns: 1fr; }
  .bootcamp-plan-grid .plan-card { min-height: auto; }
  .bootcamp-plan-grid .plan-card.featured { transform: none; }
  .bootcamp-final { margin: 0; border-radius: 0; flex-direction: column; align-items: flex-start; }
  .program-path-links, .lesson-package-grid, .rental-uses > div { grid-template-columns: 1fr; }
  .program-path-links > a { grid-template-columns: 54px 1fr; padding: 22px 18px; }
  .program-path-links > a > span { font-size: 42px; }
  .private-package-section, .clinic-intro, .rental-overview, .rental-details, .baseball-training-page { padding-left: 18px; padding-right: 18px; }
  .hitting-groups { margin-left: -18px; margin-right: -18px; padding: 42px 18px; border-radius: 0; }
  .lesson-package-grid article.featured { transform: none; }
  .clinic-program { min-height: auto; }
  .clinic-program-media { min-height: 350px; }
  .clinic-program-copy { padding: 42px 20px 52px; }
  .clinic-details { grid-template-columns: repeat(2, 1fr); }
  .clinic-program-copy ul { columns: 1; }
  .clinic-pathway > div { flex-direction: column; }
  .clinic-pathway i { width: 2px; height: 44px; }
  .rental-row > * { min-height: 60px; padding: 0 12px; }
  .rental-head b { font-size: 10px; }
  .rental-row span { font-size: 25px; }
  .pillar-grid, .service-row, .dashboard-body, .mission-band, .who-sports, .group-grid, .sports-grid, .plans, .plans.all, .result-grid, .team-strip, .team-full, .footer, .form-row, .results-team { grid-template-columns: 1fr; }
  .about-story, .about-values, .about-values-grid, .about-audience-row, .about-proof-team, .about-team-cards, .about-proof-grid { grid-template-columns: 1fr; }
  .about-story-media, .about-story-media img { min-height: 360px; }
  .about-story-media div { grid-template-columns: repeat(2, 1fr); left: 14px; right: 14px; bottom: 14px; }
  .about-values-title, .about-values-grid article { padding: 24px; }
  .about-athletes-head { display: block; }
  .about-audience-row article { min-height: 240px; }
  .about-team-cards img, .about-team-placeholder { height: 230px; }
  .result-card { min-height: auto; }
  .system-tabs { grid-template-columns: 1fr; min-width: 0; }
  .system-tabs div { padding: 15px 16px; border-right: 0; border-bottom: 1px solid rgba(255,255,255,.12); }
  .system-tabs div:not(:last-child)::after { display: none; }
  .system-tabs b { font-size: 36px; min-width: 30px; }
  .dashboard-body { gap: 12px; padding: 10px; }
  .athlete-profile, .performance-index, .trend, .coach-notes { min-height: auto; }
  .trend { padding: 14px; }
  .trend .line-chart { max-width: 100%; height: 170px; }
  .line-chart text { font-size: 10px; }
  .lesson-points { grid-template-columns: 1fr; }
  .lesson-points li { min-height: 58px; }
  .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; }
  .metric-change i::before { transform: scaleX(1) !important; }
  .metric-change i::after { opacity: 1 !important; transform: translateY(-50%) rotate(45deg) translateX(0) !important; }
}
