/* ─────────── Tokens ─────────── */
:root {
  --navy: #0A1628;
  --navy-2: #0d1a30;
  --surface: #1A3050;
  --surface-2: #20395d;
  --green: #7EC845;
  --green-soft: rgba(126, 200, 69, 0.12);
  --green-line: rgba(126, 200, 69, 0.35);
  --white: #FFFFFF;
  --muted: rgba(255, 255, 255, 0.78);
  --muted-2: rgba(255, 255, 255, 0.58);
  --hairline: rgba(255, 255, 255, 0.08);
  --hairline-strong: rgba(255, 255, 255, 0.16);
  --maxw: 1320px;
  --pad: clamp(20px, 4vw, 56px);
  --radius: 4px;
  --t: cubic-bezier(.2,.7,.2,1);
}

[data-accent="restrained"] {
  --green-soft: rgba(126, 200, 69, 0.06);
  --green-line: rgba(126, 200, 69, 0.22);
}
[data-accent="bold"] {
  --green-soft: rgba(126, 200, 69, 0.18);
  --green-line: rgba(126, 200, 69, 0.5);
}

/* ─────────── Reset / Base ─────────── */
* { box-sizing: border-box; margin: 0; padding: 0; }
html, body {
  background: var(--navy);
  color: var(--white);
  font-family: 'Montserrat', system-ui, sans-serif;
  font-weight: 400;
  font-size: 16px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  scroll-behavior: smooth;
  overflow-x: hidden;
}
img { display: block; max-width: 100%; }
button { font: inherit; color: inherit; background: none; border: 0; cursor: pointer; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }

::selection { background: var(--green); color: var(--navy); }

/* ─────────── Type ─────────── */
.display {
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: -0.015em;
  line-height: 0.96;
  font-size: clamp(48px, 7vw, 96px);
  color: var(--white);
  text-wrap: balance;
}
.display-xl { font-size: clamp(40px, 5vw, 72px); }
.display-lg { font-size: clamp(52px, 8vw, 110px); }
.display-md { font-size: clamp(40px, 5.4vw, 72px); }
.display-min { font-size: clamp(40px, 5vw, 64px); letter-spacing: -0.01em; line-height: 1.04; }

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 28px;
}
.eyebrow-bar {
  width: 28px;
  height: 1px;
  background: var(--green);
}

.lede {
  color: var(--muted);
  font-size: 19px;
  line-height: 1.65;
  max-width: 46ch;
  margin-top: 28px;
}
.lede-cine { color: rgba(255,255,255,0.92); max-width: 52ch; }

/* Underbar — thin green underline */
.under {
  position: relative;
  display: inline-block;
  white-space: nowrap;
}
.under::after {
  content: "";
  position: absolute;
  left: 0; right: 0;
  bottom: calc(-1 * var(--ub-o, 4px));
  height: var(--ub-t, 3px);
  background: var(--green);
}

/* ─────────── Buttons ─────────── */
.cta {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 16px 22px;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  border-radius: var(--radius);
  transition: all .22s var(--t);
  white-space: nowrap;
}
.cta-solid {
  background: var(--green);
  color: var(--navy);
}
.cta-solid:hover {
  background: #92dc56;
  transform: translateY(-1px);
  box-shadow: 0 12px 30px -10px rgba(126,200,69,.45);
}
.cta-ghost {
  color: var(--white);
  border: 1px solid var(--hairline-strong);
  background: transparent;
}
.cta-ghost:hover {
  border-color: var(--green-line);
  color: var(--green);
}
.cta-lg {
  padding: 18px 32px;
  font-size: 16px;
  letter-spacing: .14em;
}
.cta-full { width: 100%; justify-content: space-between; }

/* ─────────── Nav ─────────── */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 50;
  padding: 18px var(--pad);
  transition: background .25s var(--t), backdrop-filter .25s var(--t), border-color .25s var(--t);
  border-bottom: 1px solid transparent;
}
.nav-scrolled {
  background: rgba(10, 22, 40, 0.78);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom-color: var(--hairline);
  padding: 14px var(--pad);
}
.nav-inner {
  max-width: var(--maxw);
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
}
.nav-inner > a { flex-shrink: 0; }
.nav-links {
  display: flex;
  gap: 22px;
}
.nav-links a {
  font-size: 11.5px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--muted);
  white-space: nowrap;
  transition: color .2s var(--t);
}
.nav-links a:hover { color: var(--white); }
.nav-cta { display: flex; align-items: center; gap: 24px; }
.nav-link-quiet {
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--green);
  white-space: nowrap;
}
.nav-link-quiet:hover { opacity: .8; }

/* Desktop: hide hamburger and mobile-only items */
.nav-hamburger { display: none; }
.nav-mobile-cta { display: none; }

/* Mobile nav */
@media (max-width: 880px) {
  .logo-img { height: 72px !important; }
  .nav-links { display: none; }
  .nav-cta { display: none; }
  .nav-link-quiet { display: none; }
  .nav-hamburger {
    display: flex;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
    z-index: 200;
    flex-shrink: 0;
    margin-left: auto;
  }
  .nav-hamburger span {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--white);
    border-radius: 2px;
    transition: all 0.3s;
  }
  .nav { position: fixed !important; }
  .nav-open .nav-links {
    display: flex;
    flex-direction: column;
    position: fixed;
    top: 64px;
    left: 0;
    right: 0;
    background: var(--navy);
    padding: 24px var(--pad);
    gap: 20px;
    border-bottom: 1px solid var(--hairline-strong);
    z-index: 199;
    box-shadow: 0 8px 24px rgba(0,0,0,0.4);
  }
  .nav-open .nav-links a {
    font-size: 14px;
    color: var(--white);
  }
  .nav-mobile-cta { display: list-item; }
  .nav-mobile-cta a {
    color: var(--green);
    font-weight: 700;
    font-size: 14px;
    letter-spacing: 0.08em;
    text-transform: uppercase;
  }
  .nav-mobile-cta-solid {
    display: inline-block;
    background: var(--green);
    color: var(--navy) !important;
    padding: 10px 20px;
    border-radius: 4px;
    font-weight: 700;
  }
}

/* ─────────── Logo ─────────── */
.logo-img {
  user-select: none;
  -webkit-user-drag: none;
}

/* ─────────── Hero shared ─────────── */
.hero {
  position: relative;
  padding: 140px var(--pad) 100px;
  overflow: hidden;
  min-height: 92vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.court-lines {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 1;
}
html.no-court-lines .court-lines { display: none; }

.hero-pills {
  list-style: none;
  margin: 32px 0 0;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}
.hero-pill {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--white);
  padding: 9px 16px;
  border: 1px solid var(--hairline-strong);
  border-radius: 100px;
  background: rgba(255, 255, 255, 0.04);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
}
.hero-pills + .hero-pills { margin-top: 14px; }
.hero-pill-audience {
  background: var(--brand);
  color: var(--ink);
  border-color: transparent;
  font-size: 13px;
  padding: 10px 18px;
}
.hero-ctas {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 36px;
}
.scroll-hint {
  position: absolute;
  bottom: 28px;
  left: var(--pad);
  display: flex; align-items: center; gap: 12px;
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--muted-2);
  z-index: 5;
}
.scroll-line {
  width: 36px; height: 1px;
  background: var(--muted-2);
  position: relative;
  overflow: hidden;
}
.scroll-line::after {
  content: "";
  position: absolute;
  top: 0; left: -36px;
  width: 36px; height: 1px;
  background: var(--green);
  animation: scroll-pulse 2.4s var(--t) infinite;
}
@keyframes scroll-pulse {
  0%   { left: -36px; }
  60%  { left: 36px; }
  100% { left: 36px; }
}

/* ─────────── Hero · Split ─────────── */
.hero-split .hero-grid {
  position: relative;
  z-index: 2;
  max-width: var(--maxw);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  gap: 72px;
  align-items: center;
}
.hero-copy { max-width: 580px; }
.hero-meta {
  margin-top: 56px;
  display: flex;
  gap: 44px;
  border-top: 1px solid var(--hairline);
  padding-top: 28px;
  flex-wrap: wrap;
}
.hero-meta > div { display: flex; flex-direction: column; gap: 4px; }
.meta-num {
  font-weight: 700;
  font-size: 22px;
  letter-spacing: -0.01em;
  color: var(--white);
}
.meta-lbl {
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  color: var(--muted);
}
.hero-figure {
  position: relative;
  aspect-ratio: 4/5;
  width: 100%;
}
.hero-frame {
  position: relative;
  width: 100%;
  height: 100%;
  overflow: hidden;
  background: var(--surface);
  border: 1px solid var(--hairline);
}
.hero-frame img {
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center 30%;
  filter: saturate(0.92) contrast(1.05);
}
.hero-frame-vignette {
  position: absolute; inset: 0;
  background:
    linear-gradient(180deg, transparent 60%, rgba(10,22,40,0.55) 100%),
    linear-gradient(90deg, rgba(10,22,40,0.35) 0%, transparent 30%);
  pointer-events: none;
}
.hero-tag {
  position: absolute;
  bottom: 18px; left: 18px;
  display: flex; align-items: center; gap: 10px;
  background: rgba(10,22,40,0.78);
  backdrop-filter: blur(8px);
  padding: 9px 14px;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--white);
  border: 1px solid var(--hairline);
}
.hero-tag-dot {
  width: 7px; height: 7px;
  border-radius: 50%;
  background: var(--green);
  box-shadow: 0 0 0 3px var(--green-soft);
  animation: pulse 1.8s var(--t) infinite;
}
@keyframes pulse {
  0%, 100% { transform: scale(1); opacity: 1; }
  50%      { transform: scale(1.15); opacity: 0.6; }
}
@media (max-width: 960px) {
  .hero-split .hero-grid { grid-template-columns: 1fr; gap: 48px; }
  .hero-figure { aspect-ratio: 4/3; max-height: 560px; }
}

/* ─────────── Hero · Cinematic ─────────── */
.hero-cinematic { padding: 0 0 40px; min-height: 88vh; }
.hero-bg {
  position: absolute; inset: 0;
  z-index: 1;
}
.hero-bg img {
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center 25%;
  filter: saturate(0.85) contrast(1.08) brightness(0.78);
}
.hero-cine-grad {
  position: absolute; inset: 0;
  background:
    linear-gradient(90deg, rgba(10,22,40,0.92) 0%, rgba(10,22,40,0.55) 45%, transparent 75%),
    linear-gradient(180deg, rgba(10,22,40,0.4) 0%, transparent 30%, rgba(10,22,40,0.85) 100%);
}
.hero-cine-content {
  position: relative;
  z-index: 3;
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 180px var(--pad) 80px;
  width: 100%;
}
.hero-cine-content .display { max-width: 22ch; }
.hero-cine-credits {
  position: absolute;
  bottom: 28px; right: var(--pad);
  z-index: 5;
  display: flex; gap: 24px;
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--muted-2);
}

/* ─────────── Hero · Minimal ─────────── */
.hero-minimal { padding: 180px var(--pad) 80px; }
.hero-min-grid {
  position: relative;
  z-index: 2;
  max-width: var(--maxw);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 80px;
  align-items: end;
}
.hero-min-side {
  display: flex; flex-direction: column;
  gap: 24px;
  align-items: flex-start;
}
.hero-min-portrait {
  width: 100%;
  aspect-ratio: 1/1;
  overflow: hidden;
  border: 1px solid var(--hairline);
  background: var(--surface);
}
.hero-min-portrait img {
  width: 100%; height: 100%;
  object-fit: cover;
  filter: saturate(0.9) contrast(1.05);
}
.hero-min-bio {
  color: var(--muted);
  font-size: 15px;
  max-width: 38ch;
}
@media (max-width: 880px) {
  .hero-min-grid { grid-template-columns: 1fr; gap: 40px; }
}

/* ─────────── Marquee ─────────── */
.marquee {
  border-top: 1px solid var(--hairline);
  border-bottom: 1px solid var(--hairline);
  background: var(--navy-2);
  overflow: hidden;
  padding: 22px 0;
}
.marquee-track {
  display: flex;
  gap: 56px;
  animation: marquee 38s linear infinite;
  white-space: nowrap;
  width: max-content;
}
.marquee-item {
  display: inline-flex; align-items: center; gap: 18px;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--muted);
}
.marquee-dot {
  width: 5px; height: 5px;
  border-radius: 50%;
  background: var(--green);
}
@keyframes marquee {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

/* ─────────── Section base ─────────── */
.section {
  padding: 80px var(--pad);
  max-width: var(--maxw);
  margin: 0 auto;
  position: relative;
}
.section-head { margin-bottom: 64px; max-width: 920px; }
.section-head-row {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 32px;
  flex-wrap: wrap;
  max-width: var(--maxw);
}
.section-sub {
  margin-top: 24px;
  color: var(--muted);
  font-size: 16px;
  max-width: 60ch;
}

/* ─────────── Programs ─────────── */
.programs {
  display: grid;
  grid-template-columns: 320px 1fr;
  gap: 0;
  border: 1px solid var(--hairline);
  background: var(--surface);
  background: linear-gradient(180deg, var(--surface) 0%, var(--navy-2) 100%);
}
.program-tabs {
  display: flex;
  flex-direction: column;
  border-right: 1px solid var(--hairline);
}
.program-tab {
  text-align: left;
  padding: 28px 28px;
  border-bottom: 1px solid var(--hairline);
  display: grid;
  grid-template-columns: auto 1fr;
  grid-template-rows: auto auto;
  column-gap: 16px;
  position: relative;
  transition: background .22s var(--t);
}
.program-tab:last-child { border-bottom: 0; }
.program-tab:hover { background: rgba(255,255,255,0.02); }
.program-tab.is-active { background: rgba(126,200,69,0.05); }
.program-tab.is-active::before {
  content: "";
  position: absolute;
  left: 0; top: 0; bottom: 0;
  width: 3px;
  background: var(--green);
}
.program-tier {
  grid-row: 1 / 3;
  font-weight: 700;
  font-size: 11px;
  letter-spacing: 0.18em;
  color: var(--muted-2);
  align-self: start;
  padding-top: 2px;
}
.program-tab.is-active .program-tier { color: var(--green); }
.program-name {
  font-weight: 700;
  font-size: 18px;
  text-transform: uppercase;
  letter-spacing: 0.02em;
}
.program-rating {
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--muted);
  margin-top: 4px;
}
.program-flag {
  position: absolute;
  top: 22px; right: 18px;
  font-size: 9px;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--green);
  border: 1px solid var(--green-line);
  padding: 4px 8px;
  border-radius: 2px;
}
.program-detail {
  padding: 48px;
  animation: fade-up .35s var(--t);
}
@keyframes fade-up {
  from { opacity: 0; transform: translateY(8px); }
  to   { opacity: 1; transform: translateY(0); }
}
.program-detail-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 48px;
}
.program-quote {
  font-size: 24px;
  font-weight: 500;
  line-height: 1.35;
  color: var(--white);
  text-wrap: pretty;
  max-width: 32ch;
}
.program-points {
  margin-top: 32px;
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.program-points li {
  display: flex; align-items: center; gap: 14px;
  color: rgba(255,255,255,0.78);
  font-size: 15px;
}
.bullet {
  width: 6px; height: 6px;
  background: var(--green);
  flex-shrink: 0;
}
.program-side {
  background: var(--navy-2);
  border: 1px solid var(--hairline);
  padding: 28px;
  display: flex;
  flex-direction: column;
  gap: 22px;
  align-self: start;
}
.program-side-row {
  display: flex;
  flex-direction: column;
  gap: 6px;
  padding-bottom: 18px;
  border-bottom: 1px solid var(--hairline);
}
.program-side-lbl {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--muted);
}
.program-side-val {
  font-size: 15px;
  color: var(--white);
}
@media (max-width: 960px) {
  .programs { grid-template-columns: 1fr; }
  .program-tabs { flex-direction: row; overflow-x: auto; border-right: 0; border-bottom: 1px solid var(--hairline); }
  .program-tab { min-width: 220px; border-bottom: 0; border-right: 1px solid var(--hairline); }
  .program-detail { padding: 32px 24px; }
  .program-detail-grid { grid-template-columns: 1fr; gap: 28px; }
}

/* ─────────── Method ─────────── */
.section-method { background: linear-gradient(180deg, var(--navy) 0%, var(--navy-2) 100%); }
.method-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-top: 1px solid var(--hairline-strong);
}
.method-card {
  padding: 36px 28px 32px;
  border-right: 1px solid var(--hairline);
  position: relative;
  transition: background .22s var(--t);
  cursor: default;
  min-height: 280px;
  display: flex;
  flex-direction: column;
}
.method-card:last-child { border-right: 0; }
.method-card.is-hover { background: rgba(126,200,69,0.04); }
.method-num {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.22em;
  color: var(--muted-2);
  margin-bottom: 28px;
}
.method-card.is-hover .method-num { color: var(--green); }
.method-title {
  font-weight: 700;
  font-size: 24px;
  line-height: 1.18;
  text-transform: uppercase;
  letter-spacing: -0.01em;
  margin-bottom: 16px;
  min-height: calc(1.18em * 3);
  text-wrap: balance;
}
.method-desc {
  color: var(--muted);
  font-size: 15px;
  text-wrap: pretty;
}
.method-line {
  position: absolute;
  top: -1px; left: 0;
  width: 0;
  height: 2px;
  background: var(--green);
  transition: width .35s var(--t);
}
.method-card.is-hover .method-line { width: 100%; }
@media (max-width: 880px) {
  .method-grid { grid-template-columns: 1fr 1fr; }
  .method-card { border-bottom: 1px solid var(--hairline); }
  .method-card:nth-child(2) { border-right: 0; }
}

/* ─────────── Quote ─────────── */
.section-quote {
  padding: 100px var(--pad);
  border-top: 1px solid var(--hairline);
  border-bottom: 1px solid var(--hairline);
  background: var(--navy-2);
  max-width: none;
}
.quote-inner {
  max-width: 1080px;
  margin: 0 auto;
  position: relative;
}
.quote-mark {
  font-family: 'Montserrat', serif;
  font-size: 180px;
  line-height: 0.6;
  color: var(--green);
  font-weight: 700;
  position: absolute;
  top: -10px; left: -20px;
  opacity: 0.4;
}
.quote-text {
  font-weight: 500;
  font-size: clamp(28px, 3.4vw, 44px);
  line-height: 1.25;
  letter-spacing: -0.01em;
  color: var(--white);
  text-wrap: balance;
  position: relative;
  padding-left: 60px;
}
.quote-by {
  display: flex; gap: 16px;
  margin-top: 36px;
  padding-left: 60px;
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.16em;
}
.quote-name { font-weight: 700; }
.quote-meta { color: var(--muted); }

/* ─────────── Library ─────────── */
.library-filters {
  display: flex; gap: 8px; flex-wrap: wrap;
}
.chip {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  padding: 9px 16px;
  border: 1px solid var(--hairline-strong);
  border-radius: 100px;
  color: var(--muted);
  transition: all .22s var(--t);
}
.chip:hover { border-color: var(--white); color: var(--white); }
.chip.is-active {
  background: var(--green);
  color: var(--navy);
  border-color: var(--green);
}
.library-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 32px;
}
.lib-card {
  display: flex;
  flex-direction: column;
  gap: 18px;
}
.lib-img {
  position: relative;
  overflow: hidden;
  background: var(--surface);
  border: 1px solid var(--hairline);
  aspect-ratio: 16/10;
}
.lib-featured .lib-img { aspect-ratio: 4/5; }
.lib-img img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform .6s var(--t), filter .3s var(--t);
  filter: saturate(0.9) contrast(1.05);
}
.lib-card:hover .lib-img img {
  transform: scale(1.04);
}
.play-btn {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: 64px; height: 64px;
  border-radius: 50%;
  background: var(--green);
  color: var(--navy);
  display: grid;
  place-items: center;
  transition: transform .22s var(--t), box-shadow .22s var(--t);
  box-shadow: 0 12px 30px -8px rgba(0,0,0,.4);
}
.play-btn-sm { width: 44px; height: 44px; }
.lib-card:hover .play-btn {
  transform: translate(-50%, -50%) scale(1.08);
  box-shadow: 0 16px 38px -8px rgba(126,200,69,.5);
}
.lib-time {
  position: absolute;
  bottom: 12px; right: 12px;
  background: rgba(10,22,40,0.85);
  backdrop-filter: blur(6px);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.06em;
  padding: 4px 8px;
  border: 1px solid var(--hairline);
}
.lib-meta { padding: 0 4px; }
.lib-tag {
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--green);
}
.lib-title {
  font-weight: 700;
  font-size: 26px;
  text-transform: uppercase;
  letter-spacing: -0.01em;
  line-height: 1.1;
  margin-top: 10px;
}
.lib-title-sm {
  font-size: 18px;
  font-weight: 600;
}
.lib-desc {
  margin-top: 14px;
  color: var(--muted);
  max-width: 44ch;
}
.lib-rest {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
}
.lib-rest .lib-card { gap: 12px; }
@media (max-width: 880px) {
  .library-grid { grid-template-columns: 1fr; }
  .lib-rest { grid-template-columns: 1fr 1fr; gap: 16px; }
  .lib-title { font-size: 20px; }
  .lib-title-sm { font-size: 14px; }
}

/* ─────────── YouTube uniform grid ─────────── */
.yt-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 18px;
  margin-top: 8px;
}
.yt-card {
  display: flex;
  flex-direction: column;
  gap: 14px;
  text-decoration: none;
  color: inherit;
}
.yt-thumb {
  position: relative;
  border-radius: 8px;
  overflow: hidden;
  aspect-ratio: 16/9;
  background: var(--hairline);
  border: 1px solid var(--hairline);
  transition: border-color .25s var(--t), transform .35s var(--t);
}
.yt-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform .5s var(--t);
}
.yt-thumb .play-btn {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: 50px; height: 50px;
  border-radius: 50%;
  background: var(--green);
  color: var(--navy);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform .25s var(--t), box-shadow .25s var(--t);
  box-shadow: 0 8px 24px -6px rgba(0,0,0,0.4);
}
.yt-card:hover .yt-thumb { border-color: var(--green); }
.yt-card:hover .yt-thumb img { transform: scale(1.05); }
.yt-card:hover .play-btn {
  transform: translate(-50%, -50%) scale(1.08);
  background: var(--green);
  color: var(--ink);
}
.yt-meta { display: flex; flex-direction: column; gap: 6px; }
.yt-tag {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--muted);
}
.yt-title {
  font-size: 15px;
  font-weight: 600;
  line-height: 1.35;
  color: var(--white);
  margin: 0;
}
@media (max-width: 1100px) {
  .yt-grid { grid-template-columns: repeat(3, 1fr); }
}
@media (max-width: 720px) {
  .yt-grid { grid-template-columns: repeat(2, 1fr); gap: 14px; }
  .yt-title { font-size: 14px; }
}
@media (max-width: 480px) {
  .yt-grid { grid-template-columns: 1fr; }
}

/* ─────────── About ─────────── */
.section-about { border-top: 1px solid var(--hairline); }
.about-head { margin-bottom: 56px; max-width: 900px; }
.coaches {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
  margin-bottom: 56px;
}
.coach {
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.coach-portrait {
  position: relative;
  aspect-ratio: 4/5;
  background: var(--surface);
  border: 1px solid var(--hairline);
  overflow: hidden;
}
.coach-portrait img {
  width: 100%; height: 100%;
  object-fit: cover;
  filter: saturate(0.9) contrast(1.05);
}
.coach-tag {
  position: absolute;
  bottom: 18px; left: 18px; right: 18px;
  display: flex; flex-direction: column; gap: 2px;
  background: rgba(10,22,40,0.85);
  backdrop-filter: blur(8px);
  border: 1px solid var(--hairline);
  padding: 12px 16px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}
.coach-tag .muted { color: var(--muted); font-weight: 500; font-size: 10px; }
.coach-copy {
  display: flex; flex-direction: column; gap: 14px;
  font-size: 15px;
  line-height: 1.6;
  color: rgba(255,255,255,0.82);
}
.coach-copy .muted { color: var(--muted); font-size: 14px; }
.coach-creds {
  list-style: none;
  margin: 0 0 4px;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
.coach-creds li {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--white);
  padding: 6px 12px;
  border: 1px solid var(--hairline-strong);
  border-radius: 100px;
  background: rgba(126,200,69,0.06);
}
.about-credits {
  margin-top: 0;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  border-top: 1px solid var(--hairline-strong);
  padding-top: 28px;
}
.about-credit {
  display: flex; flex-direction: column; gap: 6px;
  padding: 8px 24px 8px 0;
  border-right: 1px solid var(--hairline);
}
.about-credit:last-child { border-right: 0; }
.about-credit-num {
  font-weight: 700;
  font-size: 16px;
  letter-spacing: -0.005em;
  color: var(--green);
  text-transform: uppercase;
}
.about-credit-lbl {
  font-size: 12px;
  color: var(--muted);
  letter-spacing: 0.06em;
}
@media (max-width: 880px) {
  .coaches { grid-template-columns: 1fr; }
  .about-credits { grid-template-columns: 1fr 1fr; gap: 16px; }
  .about-credit { border-right: 0; border-bottom: 1px solid var(--hairline); padding-bottom: 16px; }
}

/* ─────────── CTA section ─────────── */
.section-cta {
  background: var(--navy-2);
  border-top: 1px solid var(--hairline);
  position: relative;
  overflow: hidden;
  text-align: left;
}
.cta-inner {
  position: relative;
  z-index: 2;
  max-width: 920px;
}
.cta-sub {
  margin-top: 28px;
  color: var(--muted);
  font-size: 17px;
  max-width: 50ch;
}

/* ─────────── Footer ─────────── */
.footer {
  border-top: 1px solid var(--hairline);
  padding: 80px var(--pad) 40px;
  background: var(--navy);
}
.footer-inner {
  max-width: var(--maxw);
  margin: 0 auto;
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 80px;
  align-items: start;
}
.footer-cols {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
}
.footer-cols > div {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.footer-h {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--green);
  margin-bottom: 8px;
}
.footer-cols a {
  color: var(--muted);
  font-size: 14px;
  transition: color .2s var(--t);
}
.footer-cols a:hover { color: var(--white); }
.footer-newsletter {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.footer-news-sub {
  font-size: 14px;
  color: var(--muted);
  max-width: 36ch;
}
.footer-news-cta {
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--green);
}
.footer-news-cta:hover { opacity: 0.8; }
.footer-fine {
  grid-column: 1 / -1;
  margin-top: 60px;
  padding-top: 28px;
  border-top: 1px solid var(--hairline);
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 16px;
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--muted-2);
}
@media (max-width: 880px) {
  .footer-inner { grid-template-columns: 1fr; gap: 40px; }
  .footer-cols { grid-template-columns: 1fr 1fr; gap: 28px; }
}

/* ─────────── Access points ─────────── */
.access-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.access-card {
  position: relative;
  background: var(--surface);
  background: linear-gradient(180deg, var(--surface) 0%, var(--navy-2) 100%);
  border: 1px solid var(--hairline);
  display: flex;
  flex-direction: column;
  overflow: hidden;
  transition: transform .35s var(--t), border-color .35s var(--t);
}
.access-card:hover { transform: translateY(-4px); border-color: var(--green-line); }
.access-card.is-open { border-color: var(--green-line); }
.access-img {
  position: relative;
  aspect-ratio: 16/10;
  overflow: hidden;
}
.access-img img {
  width: 100%; height: 100%;
  object-fit: cover;
  filter: saturate(0.85) contrast(1.05);
  transition: transform .6s var(--t);
}
.access-card:hover .access-img img { transform: scale(1.04); }
.access-img-grad {
  position: absolute; inset: 0;
  background: linear-gradient(180deg, transparent 50%, rgba(10,22,40,0.7) 100%);
}
.access-body {
  padding: 28px 28px 32px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  flex: 1;
}
.access-tag {
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--green);
}
.access-name {
  font-weight: 700;
  font-size: 26px;
  text-transform: uppercase;
  letter-spacing: -0.01em;
  line-height: 1.05;
}
.access-sub {
  font-size: 16px;
  font-weight: 500;
  color: var(--white);
  margin-top: -4px;
}
.access-desc {
  color: var(--muted);
  font-size: 14px;
  line-height: 1.6;
  flex: 1;
}
.access-foot {
  margin-top: 8px;
  padding-top: 18px;
  border-top: 1px solid var(--hairline);
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.access-cta {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--green);
}
.access-cta:hover { gap: 12px; }
.access-note {
  font-size: 11px;
  color: var(--muted-2);
  letter-spacing: 0.06em;
}
@media (max-width: 960px) {
  .access-grid { grid-template-columns: 1fr; }
}

/* ─────────── Ace section ─────────── */
.section-ace {
  position: relative;
  border-top: 1px solid var(--hairline);
  border-bottom: 1px solid var(--hairline);
  background: var(--navy-2);
  max-width: none;
  padding: 120px var(--pad);
}
.section-ace .court-lines { z-index: 0; }
.ace-head, .ace-supademo, .ace-modes, .ace-out {
  position: relative;
  z-index: 2;
  max-width: var(--maxw);
  margin: 0 auto;
}
.ace-head { margin-bottom: 56px; max-width: 900px; }
.ace-lede {
  margin-top: 28px;
  color: var(--muted);
  font-size: 17px;
  max-width: 60ch;
}
.ace-modes {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  margin-bottom: 80px;
}
.ace-mode {
  border: 1px solid var(--hairline);
  padding: 24px;
  background: rgba(255,255,255,0.02);
}
.ace-mode-head { display: flex; align-items: baseline; gap: 12px; margin-bottom: 12px; }
.ace-mode-num {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.18em;
  color: var(--green);
}
.ace-mode-title {
  font-weight: 700;
  font-size: 18px;
  text-transform: uppercase;
  letter-spacing: -0.005em;
}
.ace-mode-desc { color: var(--muted); font-size: 14px; line-height: 1.6; }
@media (max-width: 960px) {
  .ace-modes { grid-template-columns: 1fr 1fr; }
}

/* ─────────── Ace · Supademo embed ─────────── */
.ace-supademo {
  margin: 0 auto 80px;
  max-width: 1200px;
  width: 100%;
  aspect-ratio: 2.21;
  max-height: 80vh;
  max-height: 80svh;
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid var(--hairline-strong);
  background: var(--surface);
  box-shadow: 0 30px 80px -30px rgba(0,0,0,0.6);
}
.ace-supademo iframe {
  width: 100%;
  height: 100%;
  display: block;
}
@media (max-width: 720px) {
  .ace-supademo { aspect-ratio: 4/5; }
}

/* ─────────── Ace · Outbound CTA ─────────── */
.ace-out {
  margin-top: 64px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 18px;
  text-align: center;
}
.ace-out-note {
  font-size: 13px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--muted);
}

/* ─────────── YouTube stats + foot ─────────── */
.yt-stats {
  display: flex;
  gap: 32px;
}
.yt-stats > div { display: flex; flex-direction: column; gap: 4px; }
.yt-num {
  font-weight: 700;
  font-size: 22px;
  letter-spacing: -0.01em;
  color: var(--white);
}
.yt-lbl {
  font-size: 10px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: var(--muted);
}
.yt-foot {
  margin-top: 48px;
  display: flex;
  justify-content: center;
}
