/* Next Wave Hoops — shared site styles */

* { box-sizing: border-box; }
html, body { margin: 0; padding: 0; background: var(--nw-paper); color: var(--nw-ink-900); }
body { font-family: var(--font-body); font-size: 16px; line-height: 1.5; }
img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }

.wrap { width: 100%; max-width: 1240px; margin: 0 auto; padding: 0 32px; }
@media (max-width: 720px) { .wrap { padding: 0 20px; } }

/* Nav */
.nav { position: sticky; top: 0; z-index: 50; background: rgba(250, 252, 254, 0.85);
       backdrop-filter: saturate(140%) blur(12px); border-bottom: 1px solid var(--nw-line-100); }
.nav-inner { display: flex; align-items: center; gap: 32px; height: 72px; }
.brand { display: flex; align-items: center; gap: 10px; }
.brand img { width: 36px; height: 36px; object-fit: contain; }
.brand-name { font-family: var(--font-display); font-weight: 700; font-size: 18px;
              text-transform: uppercase; letter-spacing: 0.08em; color: var(--nw-navy-800); }
.nav-links { display: flex; gap: 28px; flex: 1; }
.nav-links a { font-weight: 600; font-size: 14px; color: var(--nw-ink-700); position: relative; padding: 6px 0; }
.nav-links a:hover { color: var(--nw-navy-800); }
.nav-links a.active { color: var(--nw-navy-800); }
.nav-links a.active::after { content: ""; position: absolute; left: 0; right: 0; bottom: -2px;
  height: 2px; border-radius: 0; background: var(--nw-court-500); }
.nav-cta { display: flex; gap: 10px; align-items: center; }
@media (max-width: 860px) { .nav-links { display: none; } }
/* ── Mobile nav: hamburger + dropdown ───────────────────────────── */
.nav-toggle { display: none; width: 44px; height: 44px; flex-shrink: 0;
  align-items: center; justify-content: center; background: transparent;
  border: 0; cursor: pointer; padding: 0; margin-left: auto; }
.nav-toggle span { display: block; width: 22px; height: 2px; background: var(--nw-navy-800);
  transition: transform 240ms ease, opacity 180ms ease; }
.nav-toggle span + span { margin-top: 5px; }
.nav-inner.open .nav-toggle span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-inner.open .nav-toggle span:nth-child(2) { opacity: 0; }
.nav-inner.open .nav-toggle span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }
@media (max-width: 860px) {
  .nav-inner { flex-wrap: wrap; gap: 0; height: auto; min-height: 64px; }
  .brand { height: 64px; }
  .nav-toggle { display: inline-flex; }
  .nav-links, .nav-cta { flex-basis: 100%; display: none; }
  .nav-inner.open .nav-links { display: flex; flex-direction: column; gap: 0;
    flex-basis: 100%; padding: 6px 0 4px; border-top: 1px solid var(--nw-line-100); }
  .nav-inner.open .nav-links a { padding: 14px 2px; font-size: 16px; }
  .nav-inner.open .nav-links a.active::after { display: none; }
  .nav-inner.open .nav-cta { display: flex; flex-direction: column; align-items: stretch;
    gap: 10px; flex-basis: 100%; padding: 4px 0 18px; }
  .nav-inner.open .nav-cta .btn { width: 100%; }
}
@media (max-width: 560px) {
  .cta-row { width: 100%; }
  .cta-row .btn { width: 100%; justify-content: center; }
}

/* Buttons */
.btn { display: inline-flex; align-items: center; justify-content: center; gap: 8px;
       text-align: center;
       padding: 12px 20px; border-radius: 0; border: 1px solid transparent;
       font-family: var(--font-body); font-weight: 600; font-size: 14px; cursor: pointer;
       transition: background 200ms, transform 120ms; white-space: nowrap; }
button { text-align: center; }
.btn:active { transform: scale(0.97); }
.btn-primary { background: var(--nw-navy-800); color: #fff; box-shadow: var(--shadow-brand); }
.btn-primary:hover { background: var(--nw-navy-700); }
.btn-court { background: var(--nw-court-500); color: #fff; }
.btn-court:hover { background: var(--nw-court-400); }
.btn-outline { background: #fff; color: var(--nw-navy-800); border-color: var(--border-default); }
.btn-outline:hover { background: var(--nw-blue-050); }
.btn-ghost-light { background: rgba(255,255,255,0.10); color: #fff; border: 1px solid rgba(255,255,255,0.18); }
.btn-ghost-light:hover { background: rgba(255,255,255,0.18); }
.btn-lg { padding: 16px 24px; font-size: 15px; }

.eyebrow { font-family: var(--font-display); font-weight: 600; font-size: 12px;
           letter-spacing: 0.18em; text-transform: uppercase; color: var(--nw-blue-500);
           display: inline-flex; align-items: center; gap: 8px; }
.eyebrow.on-dark { color: var(--nw-blue-300); }
.eyebrow::before { content: ""; display: inline-block; width: 24px; height: 2px;
                   background: currentColor; border-radius: 0; }

.display-xl { font-family: var(--font-display); font-weight: 700;
              font-size: clamp(48px, 8vw, 104px); line-height: 0.95;
              text-transform: uppercase; letter-spacing: 0.01em; color: var(--nw-navy-800); }
.display-l { font-family: var(--font-display); font-weight: 700;
             font-size: clamp(36px, 5vw, 64px); line-height: 1;
             text-transform: uppercase; letter-spacing: 0.04em; color: var(--nw-navy-800); }
.h2 { font-family: var(--font-body); font-weight: 800;
      font-size: clamp(28px, 3.4vw, 42px); line-height: 1.1;
      letter-spacing: -0.01em; color: var(--nw-ink-900); }
.lead { font-size: clamp(16px, 1.4vw, 19px); line-height: 1.55;
        color: var(--nw-ink-500); max-width: 56ch; }
.lead.on-dark { color: var(--nw-blue-200); }

/* Hero */
.hero { position: relative; overflow: hidden;
        background: linear-gradient(135deg, #061029 0%, #0d2347 38%, #234a8c 75%, #3674c4 100%);
        color: #fff; padding: 96px 0 120px; }
.hero::before { content: ""; position: absolute; inset: 0;
  background-image: radial-gradient(circle at 18% 110%, rgba(139, 182, 220, 0.45), transparent 55%),
                    radial-gradient(circle at 92% -10%, rgba(214, 88, 47, 0.18), transparent 55%);
  pointer-events: none; }
.hero-wave { position: absolute; left: -8%; bottom: -10%; width: 70%; opacity: 0.18; pointer-events: none; }
.hero-wave-2 { position: absolute; right: -10%; top: 12%; width: 50%; opacity: 0.1;
               pointer-events: none; transform: rotate(180deg); }
.hero-inner { position: relative; z-index: 1; }
.hero-grid { display: grid; grid-template-columns: 1.2fr 1fr; gap: 64px; align-items: center; }
@media (max-width: 980px) { .hero-grid { grid-template-columns: 1fr; gap: 48px; } }

.hero h1 { color: #fff; margin: 16px 0 24px; }
.hero h1 .ink { color: var(--nw-court-400); }
.hero .cta-row { display: flex; gap: 12px; flex-wrap: wrap; margin-top: 32px; }
.hero .ribbon { display: inline-flex; align-items: center; gap: 12px; margin-top: 28px;
                padding: 10px 16px; border-radius: 0;
                background: rgba(255, 255, 255, 0.08); border: 1px solid rgba(255, 255, 255, 0.14);
                font-size: 13px; }
.ribbon .avatars { display: flex; }
.ribbon .av { width: 24px; height: 24px; border-radius: 0;
              background: var(--nw-blue-300); color: var(--nw-navy-800);
              display: inline-flex; align-items: center; justify-content: center;
              font-weight: 700; font-size: 10px; border: 2px solid var(--nw-navy-800); }
.ribbon .av + .av { margin-left: -8px; }

.hero-card-stack { position: relative; height: 460px; }
.hcard { position: absolute; background: #fff; color: var(--nw-ink-900);
         border-radius: 0; box-shadow: var(--shadow-xl); padding: 18px; }
.hcard.main { left: 0; top: 40px; width: 78%; padding: 0; overflow: hidden; }
.hcard.main .photo { height: 240px;
  background-image: url("assets/photos/practice-dribble.jpg");
  background-size: cover; background-position: 50% 25%;
  position: relative; }
.hcard.main .photo::after { content: ""; position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(13,35,71,0.0) 35%, rgba(13,35,71,0.78) 100%); }
.hcard.main .photo .badge { position: absolute; top: 14px; left: 14px;
  display: inline-flex; gap: 6px; align-items: center; padding: 5px 11px; border-radius: 0;
  background: var(--nw-court-500); color: #fff; font-weight: 700;
  font-size: 11px; letter-spacing: 0.06em; text-transform: uppercase; }
.hcard.main .photo .badge::before { content: ""; width: 6px; height: 6px; border-radius: 0;
  background: #fff; animation: pulse 1.2s infinite; }
@keyframes pulse { 50% { opacity: 0.4; } }
.hcard.main .photo .place { position: absolute; bottom: 14px; left: 14px; right: 14px; color: #fff; z-index: 1; }
.hcard.main .photo .place .ttl { font-family: var(--font-display); font-weight: 700; font-size: 22px;
  text-transform: uppercase; letter-spacing: 0.06em; }
.hcard.main .photo .place .meta { font-size: 12px; color: #bcd4e8; margin-top: 2px; }
.hcard.main .body { padding: 16px; }
.hcard.main .body .row { display: flex; justify-content: space-between; align-items: baseline; }
.hcard.main .body .stat-num { font-family: var(--font-display); font-weight: 700; font-size: 30px;
  color: var(--nw-navy-800); line-height: 1; }
.hcard.main .body .stat-lbl { font-size: 11px; font-weight: 600; letter-spacing: 0.06em;
  color: var(--nw-ink-500); text-transform: uppercase; }

.hcard.float { right: 0; bottom: 0; width: 56%; display: flex; gap: 12px; align-items: center; }
.hcard.float .ring { width: 56px; height: 56px; flex-shrink: 0; position: relative; }
.hcard.float .ring .v { position: absolute; inset: 0; display: flex; align-items: center;
  justify-content: center; font-family: var(--font-display); font-weight: 700; font-size: 20px;
  color: var(--nw-navy-800); }
.hcard.float .lbl { font-size: 10px; letter-spacing: 0.08em; color: var(--nw-ink-500);
  text-transform: uppercase; font-weight: 600; }
.hcard.float .ttl { font-family: var(--font-display); font-weight: 700; font-size: 16px;
  letter-spacing: 0.04em; text-transform: uppercase; color: var(--nw-navy-800); }

.hcard.score { right: 8%; top: 0; width: 42%; background: var(--nw-navy-800); color: #fff;
               border: 1px solid rgba(255, 255, 255, 0.06); }
.hcard.score .lbl { font-size: 10px; letter-spacing: 0.08em; color: var(--nw-blue-300);
  text-transform: uppercase; font-weight: 600; }
.hcard.score .score-row { display: flex; gap: 12px; align-items: baseline; margin-top: 6px; }
.hcard.score .score-row .num { font-family: var(--font-display); font-weight: 700; font-size: 34px;
  line-height: 1; font-variant-numeric: tabular-nums; }
.hcard.score .vs { color: var(--nw-blue-300); font-size: 14px; font-weight: 600; }
.hcard.score .team { font-size: 11px; color: var(--nw-blue-200); margin-top: 4px; }

/* Subpage header */
.page-head { background: linear-gradient(135deg, #061029 0%, #0d2347 38%, #234a8c 100%);
  color: #fff; padding: 80px 0 96px; position: relative; overflow: hidden; }
.page-head::before { content: ""; position: absolute; inset: 0; pointer-events: none;
  background-image: radial-gradient(circle at 12% 110%, rgba(139, 182, 220, 0.35), transparent 55%),
                    radial-gradient(circle at 88% -10%, rgba(214, 88, 47, 0.16), transparent 55%); }
.page-head .wrap { position: relative; z-index: 1; }
.page-head .display-l { color: #fff; margin: 14px 0 18px; max-width: 18ch; }
.page-head .lead.on-dark { max-width: 60ch; }
.page-head::after { content: ""; position: absolute; inset: 0; pointer-events: none;
  background-image: url("data:image/svg+xml,%3Csvg%20xmlns%3D%27http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%27%20viewBox%3D%270%200%20700%20260%27%20fill%3D%27none%27%3E%3Cpath%20d%3D%27M-20%20150%20Q160%2060%20350%20130%20T720%20110%27%20stroke%3D%27%238bb6dc%27%20stroke-width%3D%272%27%2F%3E%3Cpath%20d%3D%27M-20%20182%20Q160%2092%20350%20162%20T720%20142%27%20stroke%3D%27%238bb6dc%27%20stroke-width%3D%272%27%2F%3E%3Cpath%20d%3D%27M-20%20214%20Q160%20124%20350%20194%20T720%20174%27%20stroke%3D%27%238bb6dc%27%20stroke-width%3D%271.5%27%2F%3E%3C%2Fsvg%3E");
  background-repeat: no-repeat; background-position: 112% 22%; background-size: 62% auto; opacity: 0.55; }

/* Stat band */
.band { background: #fff; border-top: 1px solid var(--nw-line-100);
        border-bottom: 1px solid var(--nw-line-100); }
.band-inner { display: grid; grid-template-columns: repeat(4, 1fr); padding: 48px 0; }
@media (max-width: 720px) { .band-inner { grid-template-columns: repeat(2, 1fr); gap: 32px 0; } }
.stat { text-align: center; border-right: 1px solid var(--nw-line-100); padding: 0 24px; }
.stat:last-child { border-right: none; }
@media (max-width: 720px) { .stat:nth-child(2n) { border-right: none; } }
.stat .num { font-family: var(--font-display); font-weight: 700; font-size: 56px; line-height: 1;
  color: var(--nw-navy-800); letter-spacing: -0.01em; font-variant-numeric: tabular-nums; }
.stat .num .plus { color: var(--nw-court-500); }
.stat .lbl { margin-top: 8px; font-size: 12px; font-weight: 600; letter-spacing: 0.08em;
  text-transform: uppercase; color: var(--nw-ink-500); }

section { padding: 96px 0; }
@media (max-width: 720px) { section { padding: 72px 0; } }
.section-head { text-align: center; max-width: 720px; margin: 0 auto 56px; }
.section-head .h2 { margin-top: 14px; }
.section-head .lead { margin: 18px auto 0; }

/* Values cards */
.values { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
@media (max-width: 860px) { .values { grid-template-columns: 1fr; } }
.value { background: #fff; border: 1px solid var(--nw-line-100); border-radius: 0;
  padding: 32px 28px; display: flex; flex-direction: column; gap: 12px; }
.value .v-num { font-family: var(--font-display); font-weight: 700; font-size: 13px;
  letter-spacing: 0.16em; color: var(--nw-court-500); }
.value h3 { font-family: var(--font-body); font-weight: 800; font-size: 22px;
  color: var(--nw-ink-900); margin: 0; line-height: 1.15; }
.value p { font-size: 14px; line-height: 1.6; color: var(--nw-ink-500); margin: 0; }

/* Programs */
.programs { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
@media (max-width: 860px) { .programs { grid-template-columns: 1fr; } }
.program { background: #fff; border: 1px solid var(--nw-line-100); border-radius: 0;
  overflow: hidden; box-shadow: var(--shadow-sm); transition: transform 320ms, box-shadow 320ms; }
.program:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.program .head { height: 200px; position: relative; overflow: hidden;
  display: flex; align-items: flex-end; padding: 20px;
  background-size: cover; background-position: center; }
.program.p-starters .head { background-image: url("assets/photos/practice-dribble.jpg"); background-position: 50% 30%; }
.program.p-squad .head { background-image: url("assets/photos/outdoor-court.jpg"); background-position: 50% 35%; }
.program.p-prep .head { background-image: url("assets/photos/team-photo.png"); background-position: 50% 60%; }
.program .head::after { content: ""; position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(13,35,71,0.15) 0%, rgba(13,35,71,0.75) 100%); }
.program .head .pill { position: relative; z-index: 1; display: inline-flex; gap: 6px;
  align-items: center; padding: 4px 10px; border-radius: 0;
  background: rgba(255, 255, 255, 0.16); color: #fff; font-size: 11px; font-weight: 600;
  letter-spacing: 0.04em; border: 1px solid rgba(255, 255, 255, 0.16); }
.program .body { padding: 24px; }
.program .body .age { display: inline-block; font-family: var(--font-display); font-weight: 600;
  font-size: 12px; letter-spacing: 0.14em; text-transform: uppercase; color: var(--nw-blue-500); }
.program .body h3 { font-family: var(--font-body); font-weight: 800; font-size: 22px;
  margin: 8px 0; color: var(--nw-ink-900); }
.program .body p { font-size: 14px; color: var(--nw-ink-500); line-height: 1.55; margin: 0; }
.program .body .meta { margin-top: 18px; padding-top: 16px; border-top: 1px solid var(--nw-line-100);
  display: flex; gap: 16px; font-size: 12px; color: var(--nw-ink-500); font-weight: 600; }
.program .body .meta span { display: inline-flex; align-items: center; gap: 6px; }
.program .body .meta svg { width: 14px; height: 14px; stroke-width: 1.75; }

/* Single track */
.track { border-radius: 0; padding: 48px; position: relative; overflow: hidden;
  min-height: 380px; display: flex; flex-direction: column; justify-content: space-between; }
.track.players { background: linear-gradient(160deg, var(--nw-navy-800) 0%, var(--nw-blue-500) 100%); color: #fff; }
.track.coaches { background: var(--nw-blue-050); color: var(--nw-ink-900); border: 1px solid var(--nw-line-100); }
.track .eyebrow.on-dark { color: var(--nw-blue-300); }
.track .display-l { margin: 12px 0 18px; }
.track.players .display-l { color: #fff; }
.track.coaches .display-l { color: var(--nw-navy-800); }
.track .lead { max-width: 38ch; margin-bottom: 28px; }
.track ul { list-style: none; padding: 0; margin: 0 0 28px;
  display: flex; flex-direction: column; gap: 12px; }
.track ul li { display: flex; align-items: flex-start; gap: 12px;
  font-size: 15px; line-height: 1.5; }
.track ul li::before { content: ""; width: 18px; height: 18px; border-radius: 0; flex-shrink: 0; margin-top: 1px;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 18 18'%3E%3Cpath d='M5 9.5l2.5 2.5L13 6.5' stroke='white' stroke-width='2' fill='none' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-size: contain; }
.track.players ul li::before { background-color: var(--nw-court-500); }
.track.coaches ul li::before { background-color: var(--nw-success-500); }
.track .cta-row { display: flex; gap: 10px; flex-wrap: wrap; }
.track .deco { position: absolute; right: -60px; bottom: -60px; width: 240px; height: 240px;
  border-radius: 0; border: 32px solid rgba(255, 255, 255, 0.04); pointer-events: none; }
.track.coaches .deco { border-color: rgba(13, 35, 71, 0.04); }

/* Stories */
.stories-bg { background: radial-gradient(ellipse at 80% 20%, rgba(54, 116, 196, 0.05), transparent 50%), var(--nw-paper); }
.story-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
@media (max-width: 860px) { .story-grid { grid-template-columns: 1fr; } }
.story { background: #fff; border: 1px solid var(--nw-line-100); border-radius: 0;
  padding: 28px; display: flex; flex-direction: column; gap: 16px; }
.story .quote-mark { font-family: var(--font-display); font-size: 64px; line-height: 0.5;
  color: var(--nw-blue-300); margin-bottom: -8px; }
.story p { font-size: 16px; line-height: 1.6; color: var(--nw-ink-700); margin: 0; flex: 1; }
.story .author { display: flex; align-items: center; gap: 12px; }
.story .av { width: 40px; height: 40px; border-radius: 0; background: var(--nw-blue-100);
  color: var(--nw-navy-800); display: inline-flex; align-items: center; justify-content: center;
  font-weight: 700; font-size: 13px; }
.story .av-img { width: 40px; height: 40px; border-radius: 0; object-fit: cover;
  flex-shrink: 0; background: var(--nw-blue-100); }
.story .author .name { font-weight: 700; font-size: 14px; color: var(--nw-ink-900); }
.story .author .role { font-size: 12px; color: var(--nw-ink-500); }

/* Gallery */
.gallery { display: grid; grid-template-columns: 1.4fr 1fr 1fr; grid-template-rows: 280px 280px;
  gap: 16px; }
.gallery .g { position: relative; overflow: hidden; border-radius: 0;
  background: var(--nw-blue-100); }
.gallery .g img { width: 100%; height: 100%; object-fit: cover; display: block; }
.gallery .g::after { content: ""; position: absolute; inset: 0; pointer-events: none;
  background: linear-gradient(180deg, rgba(10,19,34,0.25) 0%, rgba(10,19,34,0.35) 45%, rgba(10,19,34,0.72) 100%); }
.gallery .g .cap { position: absolute; left: 18px; bottom: 16px; right: 18px; color: #fff;
  font-size: 13px; font-weight: 700; letter-spacing: 0.08em; text-transform: uppercase;
  z-index: 1; display: flex; gap: 10px; align-items: center; }
.gallery .g .cap::before { content: ""; width: 6px; height: 6px; border-radius: 0;
  background: var(--nw-court-500); flex-shrink: 0; }
.gallery .g.tall { grid-row: span 2; }
.gallery .g.wide { grid-column: span 2; }
@media (max-width: 860px) {
  .gallery { grid-template-columns: 1fr 1fr; grid-template-rows: 220px 220px 220px; }
  .gallery .g.tall { grid-row: span 2; }
  .gallery .g.wide { grid-column: span 2; grid-row: auto; }
}

/* Steps */
.steps { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; }
@media (max-width: 860px) { .steps { grid-template-columns: 1fr 1fr; } }
@media (max-width: 540px) { .steps { grid-template-columns: 1fr; } }
.step { background: #fff; border: 1px solid var(--nw-line-100); border-radius: 0;
  padding: 24px; position: relative; }
.step .n { font-family: var(--font-display); font-weight: 700; font-size: 14px;
  color: var(--nw-court-500); letter-spacing: 0.14em; }
.step h3 { font-size: 17px; margin: 10px 0 8px; }
.step p { font-size: 13px; color: var(--nw-ink-500); line-height: 1.55; margin: 0; }

/* App preview */
.app-section { background: linear-gradient(180deg, var(--nw-blue-050) 0%, var(--nw-paper) 100%); overflow: hidden; }
.app-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 56px; align-items: center; }
@media (max-width: 860px) { .app-grid { grid-template-columns: 1fr; } }
.app-copy ul { list-style: none; padding: 0; margin: 28px 0 32px;
  display: flex; flex-direction: column; gap: 14px; }
.app-copy ul li { display: flex; gap: 12px; align-items: flex-start; font-size: 15px; color: var(--nw-ink-700); }
.app-copy ul li svg { width: 20px; height: 20px; color: var(--nw-blue-500); flex-shrink: 0; margin-top: 2px; }
.phone-stack { position: relative; height: 580px; }
.phone-stack .phone { position: absolute; width: 270px; height: 540px;
  border-radius: 0; padding: 10px; background: var(--nw-navy-800); box-shadow: var(--shadow-xl); }
.phone-stack .phone .screen { width: 100%; height: 100%; border-radius: 0; overflow: hidden;
  background: #f8fafd; position: relative; }
.phone-stack .phone.front { left: 50%; transform: translateX(-50%) rotate(-3deg); z-index: 2; }
.phone-stack .phone.back { left: 50%; transform: translateX(-100%) rotate(-8deg); z-index: 1; opacity: 0.6; }

.miniscreen { padding: 18px 14px; height: 100%; display: flex; flex-direction: column; }
.ms-top { display: flex; align-items: center; gap: 10px; }
.ms-top img { width: 28px; height: 28px; object-fit: contain; }
.ms-top .name { font-family: var(--font-display); font-weight: 700; font-size: 13px;
  color: var(--nw-navy-800); text-transform: uppercase; letter-spacing: 0.06em; }
.ms-greet { margin: 16px 0 12px; }
.ms-greet .day { font-size: 11px; color: var(--nw-ink-500); }
.ms-greet .h { font-weight: 800; font-size: 18px; color: var(--nw-ink-900); }
.ms-card { background: linear-gradient(135deg, #0d2347, #3674c4 80%);
  color: #fff; border-radius: 0; padding: 14px; margin-bottom: 10px; }
.ms-card .lbl { font-size: 9px; color: var(--nw-blue-300); letter-spacing: 0.08em;
  text-transform: uppercase; font-weight: 600; }
.ms-card .ttl { font-family: var(--font-display); font-weight: 700; font-size: 17px;
  text-transform: uppercase; letter-spacing: 0.05em; margin: 4px 0 2px; }
.ms-card .meta { font-size: 11px; color: var(--nw-blue-200); }
.ms-stats { display: grid; grid-template-columns: 1fr 1fr; gap: 8px; }
.ms-stat { background: #fff; border: 1px solid var(--nw-line-100); border-radius: 0; padding: 10px; }
.ms-stat .lbl { font-size: 9px; color: var(--nw-ink-500); letter-spacing: 0.06em;
  text-transform: uppercase; font-weight: 600; }
.ms-stat .num { font-family: var(--font-display); font-weight: 700; font-size: 24px;
  color: var(--nw-navy-800); line-height: 1; margin-top: 4px; }
.ms-stat .num.accent { color: var(--nw-court-500); }

/* CTA band */
.cta-band { background: linear-gradient(135deg, #0d2347 0%, #234a8c 50%, #3674c4 100%);
  color: #fff; padding: 80px 0; position: relative; overflow: hidden; }
.cta-band::before { content: ""; position: absolute; inset: 0;
  background-image: radial-gradient(circle at 80% 50%, rgba(214, 88, 47, 0.2), transparent 40%);
  pointer-events: none; }
.cta-inner { display: flex; align-items: center; justify-content: space-between;
  gap: 32px; flex-wrap: wrap; position: relative; z-index: 2; }
.cta-inner .display-l { color: #fff; max-width: 18ch; }
.cta-inner .lead.on-dark { margin-top: 16px; }
.cta-band.has-photo::after { content: ""; position: absolute; inset: 0;
  background-image: url("assets/photos/team-photo.png");
  background-size: cover; background-position: center 35%;
  opacity: 0.22; mix-blend-mode: luminosity; pointer-events: none; }

/* Team page */
.team-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; }
@media (max-width: 960px) { .team-grid { grid-template-columns: repeat(2, 1fr); gap: 20px; } }
@media (max-width: 600px) { .team-grid { grid-template-columns: 1fr; } }

.team-card { background: #fff; border: 1px solid var(--nw-line-100); border-radius: 0;
  overflow: hidden; display: flex; flex-direction: column;
  transition: transform 320ms, box-shadow 320ms; }
.team-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }

.team-card .portrait { aspect-ratio: 3 / 4; position: relative; overflow: hidden;
  background: linear-gradient(160deg, var(--nw-navy-800) 0%, var(--nw-blue-500) 60%, var(--nw-blue-300) 100%); }
.team-card .portrait::after { content: ""; position: absolute; inset: 0;
  background-image: radial-gradient(circle at 30% 110%, rgba(214, 88, 47, 0.25), transparent 55%);
  pointer-events: none; }
.team-card .portrait img { width: 100%; height: 100%; object-fit: cover; display: block;
  position: relative; z-index: 1; }
.team-card .monogram { position: absolute; inset: 0; display: flex; align-items: center;
  justify-content: center; font-family: var(--font-display); font-weight: 700; font-size: 88px;
  letter-spacing: 0.06em; color: rgba(255, 255, 255, 0.95);
  text-shadow: 0 4px 24px rgba(13, 35, 71, 0.4); z-index: 0; }
.team-card .badge { position: absolute; top: 14px; left: 14px; z-index: 2;
  display: inline-flex; align-items: center; padding: 5px 10px; border-radius: 0;
  background: rgba(13, 35, 71, 0.6); backdrop-filter: blur(8px); color: #fff;
  font-size: 10px; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; }
.team-card .badge.founder { background: var(--nw-court-500); }

.team-card .body { padding: 24px 24px 26px; display: flex; flex-direction: column; gap: 14px;
  flex: 1; }
.team-card .role { font-family: var(--font-display); font-weight: 600; font-size: 12px;
  letter-spacing: 0.14em; text-transform: uppercase; color: var(--nw-blue-500); }
.team-card .name { font-family: var(--font-body); font-weight: 800; font-size: 24px;
  line-height: 1.05; color: var(--nw-ink-900); margin: -8px 0 0; }
.team-card .creds { list-style: none; padding: 0; margin: 6px 0 0;
  display: flex; flex-direction: column; gap: 8px; }
.team-card .creds li { display: flex; gap: 10px; align-items: flex-start;
  font-size: 13px; line-height: 1.5; color: var(--nw-ink-700); }
.team-card .creds li::before { content: ""; width: 4px; height: 4px; border-radius: 0;
  background: var(--nw-court-500); flex-shrink: 0; margin-top: 8px; }

.team-card.retired .portrait { filter: grayscale(0.3); }
.team-card.retired .monogram { color: rgba(255, 255, 255, 0.7); }

.team-divider { display: flex; align-items: center; gap: 24px; margin: 0 0 56px; }
.team-divider .line { flex: 1; height: 1px; background: var(--nw-line-100); }
.team-divider .lbl { font-family: var(--font-display); font-weight: 700; font-size: 13px;
  letter-spacing: 0.18em; text-transform: uppercase; color: var(--nw-ink-500); }

/* Footer */
footer { background: var(--nw-navy-900); color: var(--nw-blue-200); padding: 64px 0 32px; }
.foot-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 40px; }
@media (max-width: 720px) { .foot-grid { grid-template-columns: 1fr 1fr; gap: 32px; } }
.foot-brand { display: flex; flex-direction: column; gap: 16px; max-width: 320px; }
.foot-brand img { width: 44px; height: 44px; object-fit: contain; }
.foot-brand .name { font-family: var(--font-display); font-weight: 700; font-size: 20px;
  letter-spacing: 0.08em; text-transform: uppercase; color: #fff; }
.foot-brand p { font-size: 13px; line-height: 1.5; color: var(--nw-blue-200); margin: 0; }
.foot-col h4 { font-family: var(--font-display); font-weight: 600; font-size: 12px;
  letter-spacing: 0.14em; text-transform: uppercase; color: var(--nw-blue-300); margin: 0 0 16px; }
.foot-col a { display: block; font-size: 13px; color: var(--nw-blue-100); padding: 4px 0; }
.foot-col a:hover { color: #fff; }
.foot-bot { margin-top: 48px; padding-top: 24px; border-top: 1px solid rgba(255, 255, 255, 0.08);
  display: flex; justify-content: space-between; gap: 16px; flex-wrap: wrap;
  font-size: 12px; color: var(--nw-blue-300); }
