:root {
  --navy-950: #071427;
  --navy-900: #0b1f3d;
  --navy-800: #123462;
  --navy-700: #1d4f93;
  --navy-100: #eaf2ff;
  --navy-050: #f4f8ff;
  --ink-900: #0f1726;
  --ink-700: #334155;
  --ink-500: #64748b;
  --line: #dbe6f6;
  --line-strong: #c8d8f0;
  --orange-500: #c8102e;
  --orange-400: #ef233c;
  --white: #ffffff;
  --success: #1b8a5a;
  --danger: #b91c1c;
  --radius-sm: 12px;
  --radius-md: 18px;
  --radius-lg: 28px;
  --shadow-sm: 0 8px 18px rgba(14, 31, 56, 0.08);
  --shadow-md: 0 18px 40px rgba(10, 28, 56, 0.1);
  --shadow-lg: 0 32px 80px rgba(8, 19, 40, 0.14);
  --max-width: 1160px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink-900);
  background:
    radial-gradient(circle at 8% 4%, rgba(18, 52, 98, 0.06), transparent 34%),
    radial-gradient(circle at 88% 10%, rgba(200, 16, 46, 0.12), transparent 36%),
    linear-gradient(180deg, #fbfdff 0%, #f5f9ff 45%, #f8fbff 100%);
  font-family: "Plus Jakarta Sans", sans-serif;
  line-height: 1.45;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  opacity: 0.22;
  background-image:
    linear-gradient(rgba(10, 31, 61, 0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(10, 31, 61, 0.03) 1px, transparent 1px);
  background-size: 28px 28px;
  mask-image: radial-gradient(circle at center, black 28%, transparent 100%);
}

a {
  color: inherit;
}

img {
  max-width: 100%;
  display: block;
}

.container {
  width: min(var(--max-width), 92vw);
  margin: 0 auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 40;
  backdrop-filter: blur(10px);
  background: rgba(248, 251, 255, 0.82);
  border-bottom: 1px solid rgba(200, 216, 240, 0.65);
}

.nav-shell {
  min-height: 74px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 10px 0;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  min-width: 0;
}

.brand-mark {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  display: grid;
  place-items: center;
  background: linear-gradient(160deg, var(--navy-800), var(--navy-900));
  color: var(--white);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.12);
  font-family: "Bebas Neue", sans-serif;
  letter-spacing: 1px;
  font-size: 1.35rem;
}

.brand-copy {
  display: grid;
  gap: 1px;
}

.brand-copy strong {
  color: var(--navy-900);
  font-size: 0.98rem;
  line-height: 1.1;
}

.brand-copy span {
  color: var(--ink-500);
  font-size: 0.78rem;
  line-height: 1.15;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 6px;
  flex-wrap: wrap;
  justify-content: center;
}

.nav-link {
  text-decoration: none;
  color: var(--ink-700);
  font-weight: 600;
  font-size: 0.93rem;
  padding: 9px 12px;
  border-radius: 999px;
  transition: background-color 120ms ease, color 120ms ease, transform 120ms ease;
}

.nav-link:hover {
  background: var(--white);
  color: var(--navy-900);
}

.nav-link.is-active {
  color: var(--navy-900);
  background: rgba(18, 52, 98, 0.08);
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 10px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  border: 1px solid transparent;
  border-radius: 999px;
  text-decoration: none;
  font-weight: 700;
  line-height: 1;
  cursor: pointer;
  transition: transform 120ms ease, box-shadow 120ms ease, background-color 120ms ease, border-color 120ms ease;
}

.btn:hover {
  transform: translateY(-1px);
}

.btn:focus-visible {
  outline: 3px solid rgba(29, 79, 147, 0.28);
  outline-offset: 2px;
}

.btn-sm {
  padding: 11px 14px;
  font-size: 0.9rem;
}

.btn-md {
  padding: 13px 18px;
  font-size: 0.95rem;
}

.btn-lg {
  padding: 14px 20px;
  font-size: 0.98rem;
}

.btn-primary {
  color: #081a34;
  background: linear-gradient(180deg, var(--orange-400), var(--orange-500));
  box-shadow: 0 10px 24px rgba(200, 16, 46, 0.24);
}

.btn-secondary {
  color: var(--navy-900);
  background: var(--white);
  border-color: var(--line);
  box-shadow: var(--shadow-sm);
}

.btn-ghost {
  color: var(--navy-900);
  background: rgba(18, 52, 98, 0.05);
  border-color: rgba(18, 52, 98, 0.1);
}

.pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 7px 12px;
  border-radius: 999px;
  border: 1px solid rgba(18, 52, 98, 0.12);
  color: var(--navy-800);
  background: rgba(18, 52, 98, 0.04);
  font-weight: 700;
  font-size: 0.82rem;
  letter-spacing: 0.02em;
}

.pill::before {
  content: "";
  width: 8px;
  height: 8px;
  border-radius: 999px;
  background: var(--orange-500);
  box-shadow: 0 0 0 5px rgba(200, 16, 46, 0.16);
}

.page-shell {
  position: relative;
  z-index: 1;
  padding: 22px 0 44px;
}

.home-page-shell > * {
  position: relative;
  z-index: 1;
}

.home-page-bg {
  position: absolute;
  inset: 84px -56px 8px -56px;
  z-index: 0;
  pointer-events: none;
  border-radius: 20px;
  background:
    radial-gradient(circle at 18% 20%, rgba(255, 255, 255, 0.68), rgba(255, 255, 255, 0.32) 46%, rgba(255,255,255,0.08) 72%),
    url("assets/Kids.png") center center / cover no-repeat;
  filter: blur(8px) saturate(0.95);
  transform: scale(1.03);
  opacity: 0.34;
}

.hero {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius-lg);
  border: 1px solid rgba(200, 216, 240, 0.9);
  background:
    radial-gradient(circle at 85% 16%, rgba(200, 16, 46, 0.16), transparent 44%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.95), rgba(244, 248, 255, 0.92));
  box-shadow: var(--shadow-lg);
}

.hero::before {
  content: "";
  position: absolute;
  right: -120px;
  top: -120px;
  width: 340px;
  height: 340px;
  border-radius: 999px;
  background: radial-gradient(circle, rgba(18, 52, 98, 0.12), rgba(18, 52, 98, 0));
}

.hero::after {
  content: "";
  position: absolute;
  left: 50%;
  right: -24px;
  bottom: -70px;
  height: 120px;
  background: linear-gradient(90deg, rgba(200, 16, 46, 0.9), rgba(239, 75, 97, 0.9));
  transform: rotate(-5deg);
  opacity: 0.85;
}

.hero-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1.18fr 0.82fr;
  gap: 24px;
  padding: 26px;
}

.hero h1 {
  margin: 10px 0 10px;
  color: var(--navy-900);
  font-family: "Bebas Neue", sans-serif;
  letter-spacing: 0.02em;
  line-height: 0.92;
  font-size: clamp(2.4rem, 6vw, 4.9rem);
}

.hero-copy {
  margin: 0;
  max-width: 52ch;
  color: var(--ink-700);
  font-size: 1rem;
}

.hero-copy strong {
  color: var(--navy-900);
}

.hero-meta {
  margin-top: 16px;
  display: grid;
  gap: 10px;
}

.meta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.meta-chip {
  border-radius: 999px;
  padding: 8px 11px;
  background: var(--white);
  border: 1px solid var(--line);
  color: var(--ink-700);
  font-weight: 600;
  font-size: 0.86rem;
  box-shadow: var(--shadow-sm);
}

.hero-actions {
  margin-top: 18px;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.hero-side-card {
  align-self: stretch;
  background: linear-gradient(180deg, #0f2b53 0%, #091d3a 100%);
  color: var(--white);
  border-radius: 22px;
  padding: 18px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.08);
  display: grid;
  gap: 12px;
}

.hero-side-card h2 {
  margin: 0;
  font-family: "Bebas Neue", sans-serif;
  letter-spacing: 0.04em;
  line-height: 1;
  font-size: 2rem;
}

.hero-side-card p {
  margin: 0;
  color: rgba(234, 242, 255, 0.92);
  font-size: 0.95rem;
}

.stack-list {
  display: grid;
  gap: 10px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.stack-list li {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 10px;
  align-items: start;
  padding: 10px 12px;
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.stack-list .label {
  color: rgba(234, 242, 255, 0.78);
  font-size: 0.82rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.stack-list .value {
  color: var(--white);
  font-weight: 700;
  font-size: 0.94rem;
}

.section {
  margin-top: 18px;
  border-radius: 24px;
  border: 1px solid rgba(200, 216, 240, 0.9);
  background: rgba(255, 255, 255, 0.88);
  box-shadow: var(--shadow-md);
  padding: 22px;
}

.section-head {
  display: flex;
  justify-content: space-between;
  align-items: end;
  gap: 12px;
  margin-bottom: 16px;
}

.section-kicker {
  margin: 0;
  color: var(--navy-700);
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-size: 0.78rem;
}

.section-title {
  margin: 4px 0 0;
  color: var(--navy-900);
  font-family: "Bebas Neue", sans-serif;
  line-height: 0.95;
  letter-spacing: 0.03em;
  font-size: clamp(1.7rem, 4vw, 2.5rem);
}

.section-note {
  margin: 0;
  color: var(--ink-500);
  font-size: 0.92rem;
  max-width: 42ch;
  text-align: right;
}

.grid-3 {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}

.grid-2 {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

.card {
  border-radius: 18px;
  border: 1px solid var(--line);
  background: linear-gradient(180deg, var(--white), #fbfdff);
  padding: 16px;
  box-shadow: var(--shadow-sm);
}

.card h3 {
  margin: 0;
  color: var(--navy-900);
  font-size: 1.05rem;
}

.card p {
  margin: 8px 0 0;
  color: var(--ink-700);
  font-size: 0.94rem;
}

.card-link {
  display: block;
  text-decoration: none;
}

.card-link .card {
  height: 100%;
  transition: transform 140ms ease, box-shadow 140ms ease, border-color 140ms ease;
}

.card-link:hover .card {
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
  border-color: var(--line-strong);
}

.card-link h3 {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 8px;
}

.card-link h3::after {
  content: "See more";
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--navy-700);
  letter-spacing: 0.03em;
}

.stat-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
}

.stat {
  border-radius: 16px;
  border: 1px solid var(--line);
  background: var(--white);
  padding: 14px;
  box-shadow: var(--shadow-sm);
}

.stat .label {
  color: var(--ink-500);
  font-size: 0.78rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-weight: 700;
}

.stat .value {
  margin-top: 6px;
  color: var(--navy-900);
  font-family: "Bebas Neue", sans-serif;
  font-size: 1.8rem;
  line-height: 0.95;
  letter-spacing: 0.03em;
}

.stat .sub {
  margin-top: 4px;
  color: var(--ink-700);
  font-size: 0.86rem;
}

.path-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
}

.path-card {
  border-radius: 18px;
  border: 1px solid var(--line);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(247, 250, 255, 0.98));
  padding: 16px;
  box-shadow: var(--shadow-sm);
}

.path-label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  border-radius: 999px;
  padding: 6px 10px;
  border: 1px solid var(--line);
  background: rgba(18, 52, 98, 0.03);
  font-size: 0.78rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--navy-700);
}

.path-card h3 {
  margin: 10px 0 0;
  color: var(--navy-900);
  font-size: 1.05rem;
}

.path-card p {
  margin: 7px 0 0;
  color: var(--ink-700);
  font-size: 0.92rem;
}

.path-card .time {
  margin-top: 10px;
  padding-top: 10px;
  border-top: 1px dashed var(--line);
  color: var(--navy-900);
  font-weight: 700;
  font-size: 0.9rem;
}

.timeline {
  display: grid;
  gap: 10px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.timeline li {
  display: grid;
  grid-template-columns: 120px 1fr;
  gap: 12px;
  align-items: start;
  border-radius: 14px;
  padding: 12px;
  border: 1px solid var(--line);
  background: var(--white);
}

.timeline .date {
  color: var(--navy-900);
  font-weight: 800;
  font-size: 0.86rem;
}

.timeline .desc {
  color: var(--ink-700);
  font-size: 0.92rem;
}

.cta-band {
  margin-top: 18px;
  border-radius: 20px;
  padding: 18px;
  border: 1px solid rgba(18, 52, 98, 0.1);
  background:
    radial-gradient(circle at 100% 0%, rgba(200, 16, 46, 0.12), transparent 40%),
    linear-gradient(180deg, rgba(18, 52, 98, 0.03), rgba(18, 52, 98, 0.01));
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
}

.cta-band h3 {
  margin: 0;
  color: var(--navy-900);
  font-size: 1.15rem;
}

.cta-band p {
  margin: 4px 0 0;
  color: var(--ink-700);
  font-size: 0.92rem;
}

.cta-band .hero-actions {
  margin-top: 0;
}

.page-hero {
  border-radius: 24px;
  border: 1px solid rgba(200, 216, 240, 0.9);
  background:
    radial-gradient(circle at 85% 12%, rgba(200, 16, 46, 0.14), transparent 40%),
    linear-gradient(180deg, rgba(255,255,255,0.98), rgba(246,250,255,0.94));
  box-shadow: var(--shadow-md);
  padding: 22px;
}

.page-hero h1 {
  margin: 10px 0 8px;
  color: var(--navy-900);
  font-family: "Bebas Neue", sans-serif;
  font-size: clamp(2rem, 4.8vw, 3.6rem);
  line-height: 0.95;
  letter-spacing: 0.03em;
}

.page-hero p {
  margin: 0;
  max-width: 68ch;
  color: var(--ink-700);
}

.subnav {
  margin-top: 14px;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.subnav a {
  text-decoration: none;
  padding: 9px 12px;
  border-radius: 999px;
  border: 1px solid var(--line);
  background: var(--white);
  color: var(--navy-900);
  font-weight: 700;
  font-size: 0.85rem;
  box-shadow: var(--shadow-sm);
}

.schedule-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

.schedule-card {
  border-radius: 18px;
  border: 1px solid var(--line);
  background: linear-gradient(180deg, #ffffff, #f8fbff);
  padding: 16px;
  box-shadow: var(--shadow-sm);
  position: relative;
  overflow: hidden;
}

.schedule-card::before {
  content: "";
  position: absolute;
  inset: 0 auto 0 0;
  width: 4px;
  background: var(--orange-500);
}

.schedule-card h3 {
  margin: 0;
  color: var(--navy-900);
  font-size: 1.08rem;
}

.schedule-card .age {
  margin-top: 4px;
  color: var(--navy-700);
  font-weight: 700;
  font-size: 0.9rem;
}

.schedule-card .time {
  margin-top: 10px;
  color: var(--ink-900);
  font-weight: 800;
  font-size: 0.96rem;
}

.schedule-card .track {
  margin-top: 6px;
  color: var(--ink-700);
  font-size: 0.9rem;
}

.level-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
}

.level-card {
  border-radius: 16px;
  border: 1px solid var(--line);
  background: var(--white);
  box-shadow: var(--shadow-sm);
  padding: 14px;
}

.level-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-weight: 800;
  color: var(--navy-900);
  font-size: 0.9rem;
}

.level-dot {
  width: 10px;
  height: 10px;
  border-radius: 999px;
}

.level-dot.red { background: #ef4444; }
.level-dot.white { background: #ffffff; border: 1px solid #94a3b8; }
.level-dot.blue { background: #3b82f6; }

.level-card p {
  margin: 8px 0 0;
  color: var(--ink-700);
  font-size: 0.9rem;
}

.level-details {
  margin-top: 8px;
}

.level-details summary {
  list-style: none;
}

.level-details summary::-webkit-details-marker {
  display: none;
}

.level-details-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  cursor: pointer;
  color: var(--navy-700);
  font-weight: 700;
  font-size: 0.85rem;
  text-decoration: underline;
  text-underline-offset: 2px;
}

.level-details-link::after {
  content: "+";
  display: inline-block;
  font-family: "Teko", sans-serif;
  font-size: 0.95rem;
  line-height: 1;
  text-decoration: none;
}

.level-details[open] .level-details-link::after {
  content: "-";
}

.level-details-copy {
  margin-top: 10px;
  padding-top: 10px;
  border-top: 1px solid var(--line);
}

.level-details-copy p {
  margin: 0 0 10px;
  color: var(--ink-700);
  font-size: 0.86rem;
  line-height: 1.35;
}

.level-details-copy p:last-child {
  margin-bottom: 0;
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
}

.price-tile {
  border-radius: 16px;
  border: 1px solid var(--line);
  background: linear-gradient(180deg, #ffffff, #f8fbff);
  padding: 14px;
  box-shadow: var(--shadow-sm);
}

.price-tile.highlight {
  border-color: rgba(200, 16, 46, 0.3);
  background:
    radial-gradient(circle at 100% 0%, rgba(200, 16, 46, 0.08), transparent 40%),
    linear-gradient(180deg, #fff8fa, #fff2f6);
}

.price-tile .label {
  color: var(--ink-500);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-size: 0.76rem;
  font-weight: 700;
}

.price-tile .amount {
  margin-top: 8px;
  color: var(--navy-900);
  font-family: "Bebas Neue", sans-serif;
  letter-spacing: 0.03em;
  line-height: 0.95;
  font-size: 2rem;
}

.price-tile .note {
  margin-top: 6px;
  color: var(--ink-700);
  font-size: 0.88rem;
}

.callout {
  border-radius: 16px;
  border: 1px solid rgba(18, 52, 98, 0.1);
  background:
    radial-gradient(circle at 100% 0%, rgba(18, 52, 98, 0.06), transparent 40%),
    linear-gradient(180deg, rgba(18, 52, 98, 0.03), rgba(18, 52, 98, 0.01));
  padding: 14px;
  color: var(--ink-700);
}

.coach-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
}

.coach-featured-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  margin-bottom: 12px;
}

.coach-grid-label {
  margin: 2px 0 10px;
  color: var(--ink-500);
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.14em;
}

.coach-hint {
  margin: 0 0 12px;
  color: var(--ink-500);
  font-size: 0.9rem;
}

.coach-card {
  border-radius: 16px;
  border: 1px solid var(--line);
  background: var(--white);
  box-shadow: var(--shadow-sm);
  padding: 14px;
}

.coach-card-featured {
  padding: 14px;
}

.coach-details {
  margin: 0;
}

.coach-summary {
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: 10px;
  cursor: pointer;
  list-style: none;
}

.coach-summary::-webkit-details-marker {
  display: none;
}

.coach-summary::marker {
  content: "";
}

.coach-summary-text {
  display: block;
  min-width: 0;
}

.coach-photo {
  display: block;
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  object-position: center top;
  border-radius: 10px;
  border: 1px solid var(--line);
  margin-bottom: 10px;
  background: #eef2f7;
}

.coach-photo-jane {
  /* Shift visual crop left so Jane's face (right side of source image) stays fully visible. */
  object-position: 73% center;
}

.coach-role {
  margin: 0 0 4px;
  font-family: "Teko", sans-serif;
  color: var(--navy-700);
  font-size: 0.86rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.coach-name {
  display: block;
  margin: 0;
  color: var(--navy-900);
  font-size: 1rem;
  font-weight: 800;
  letter-spacing: -0.02em;
  line-height: 1.1;
}

.coach-toggle {
  width: 24px;
  height: 24px;
  border-radius: 999px;
  border: 1px solid var(--line);
  color: var(--navy-700);
  background: #fff;
  display: grid;
  place-items: center;
  flex: 0 0 auto;
}

.coach-toggle::before {
  content: "+";
  font-family: "Teko", sans-serif;
  font-size: 1rem;
  line-height: 1;
}

.coach-details[open] .coach-toggle::before {
  content: "-";
}

.coach-summary:hover .coach-name {
  color: var(--orange-500);
}

.coach-summary:focus-visible {
  outline: 2px solid rgba(8, 26, 52, 0.25);
  outline-offset: 3px;
  border-radius: 8px;
}

.coach-panel {
  margin-top: 10px;
  padding-top: 10px;
  border-top: 1px solid var(--line);
}

.coach-card p {
  color: var(--ink-500);
  font-size: 0.85rem;
}

.coach-bio {
  margin: 8px 0 0;
  color: var(--ink-700);
  font-size: 0.88rem;
  line-height: 1.35;
}

.coach-results {
  margin: 10px 0 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 6px;
}

.coach-results li {
  position: relative;
  padding-left: 12px;
  color: var(--ink-700);
  font-size: 0.84rem;
  line-height: 1.3;
}

.coach-results li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.45rem;
  width: 4px;
  height: 4px;
  border-radius: 999px;
  background: var(--orange-500);
}

.location-panel {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 14px;
}

.location-box {
  border-radius: 18px;
  border: 1px solid var(--line);
  background: var(--white);
  box-shadow: var(--shadow-sm);
  padding: 16px;
}

.location-box h3 {
  margin: 0;
  color: var(--navy-900);
  font-size: 1.08rem;
}

.location-box p {
  margin: 8px 0 0;
  color: var(--ink-700);
  font-size: 0.93rem;
}

.check-list {
  margin: 10px 0 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 8px;
}

.check-list li {
  display: grid;
  grid-template-columns: 18px 1fr;
  gap: 8px;
  color: var(--ink-700);
  font-size: 0.9rem;
}

.check-list li::before {
  content: ">";
  color: var(--orange-500);
  font-weight: 800;
}

.form-shell {
  display: grid;
  grid-template-columns: 1.08fr 0.92fr;
  gap: 14px;
}

.form-card,
.info-card {
  border-radius: 18px;
  border: 1px solid var(--line);
  background: var(--white);
  box-shadow: var(--shadow-sm);
  padding: 16px;
}

.form-card h3,
.info-card h3 {
  margin: 0;
  color: var(--navy-900);
  font-size: 1.06rem;
}

.form-card p,
.info-card p {
  margin: 8px 0 0;
  color: var(--ink-700);
  font-size: 0.9rem;
}

.form-grid {
  margin-top: 14px;
  display: grid;
  gap: 10px;
}

.field-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
}

label {
  display: grid;
  gap: 6px;
  color: var(--ink-700);
  font-size: 0.85rem;
  font-weight: 600;
}

input,
select,
textarea {
  width: 100%;
  border-radius: 12px;
  border: 1px solid var(--line-strong);
  background: #fbfdff;
  padding: 11px 12px;
  color: var(--ink-900);
  font: inherit;
}

textarea {
  min-height: 110px;
  resize: vertical;
}

input:focus-visible,
select:focus-visible,
textarea:focus-visible {
  outline: 3px solid rgba(29, 79, 147, 0.16);
  outline-offset: 1px;
  border-color: rgba(29, 79, 147, 0.38);
}

.form-actions {
  margin-top: 6px;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.micro {
  margin-top: 10px;
  color: var(--ink-500);
  font-size: 0.8rem;
}

.badge-line {
  margin-top: 10px;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.badge-soft {
  display: inline-flex;
  align-items: center;
  padding: 7px 10px;
  border-radius: 999px;
  border: 1px solid var(--line);
  background: #f8fbff;
  color: var(--navy-900);
  font-weight: 700;
  font-size: 0.8rem;
}

.faq-list {
  margin: 12px 0 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 10px;
}

.faq-list li {
  border-radius: 12px;
  border: 1px solid var(--line);
  background: #fbfdff;
  padding: 12px;
}

.faq-list strong {
  display: block;
  color: var(--navy-900);
  font-size: 0.88rem;
}

.faq-list span {
  display: block;
  margin-top: 5px;
  color: var(--ink-700);
  font-size: 0.86rem;
}

.site-footer {
  margin-top: 20px;
  border-radius: 20px;
  border: 1px solid rgba(200, 216, 240, 0.9);
  background: rgba(255, 255, 255, 0.9);
  box-shadow: var(--shadow-sm);
  padding: 16px;
}

.footer-grid {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  flex-wrap: wrap;
}

.footer-copy {
  color: var(--ink-700);
  font-size: 0.86rem;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.footer-links a {
  text-decoration: none;
  color: var(--navy-900);
  font-weight: 700;
  font-size: 0.84rem;
  padding: 8px 10px;
  border-radius: 999px;
  border: 1px solid var(--line);
  background: var(--white);
}

.muted {
  color: var(--ink-500);
}

.divider {
  height: 1px;
  margin: 14px 0;
  background: linear-gradient(90deg, transparent, var(--line), transparent);
}

@media (max-width: 1040px) {
  .hero-grid,
  .form-shell,
  .location-panel {
    grid-template-columns: 1fr;
  }

  .hero::after {
    left: 30%;
  }

  .coach-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .coach-featured-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 860px) {
  .nav-shell {
    align-items: flex-start;
    flex-wrap: wrap;
  }

  .site-nav {
    order: 3;
    width: 100%;
    justify-content: flex-start;
  }

  .header-actions {
    margin-left: auto;
  }

  .grid-3,
  .path-grid,
  .level-grid,
  .pricing-grid,
  .stat-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .schedule-grid {
    grid-template-columns: 1fr;
  }

  .section-head {
    align-items: flex-start;
    flex-direction: column;
  }

  .section-note {
    text-align: left;
  }
}

@media (max-width: 620px) {
  .page-shell {
    padding-top: 14px;
  }

  .hero-grid,
  .section,
  .page-hero,
  .site-footer {
    padding: 16px;
  }

  .hero {
    border-radius: 20px;
  }

  .hero::after {
    left: 12%;
    right: -40px;
    bottom: -78px;
    height: 110px;
  }

  .hero-actions,
  .cta-band,
  .form-actions,
  .footer-grid {
    flex-direction: column;
    align-items: stretch;
  }

  .btn,
  .header-actions .btn {
    width: 100%;
  }

  .field-row,
  .grid-2,
  .grid-3,
  .path-grid,
  .level-grid,
  .pricing-grid,
  .coach-featured-grid,
  .coach-grid,
  .stat-grid {
    grid-template-columns: 1fr;
  }

  .timeline li {
    grid-template-columns: 1fr;
    gap: 6px;
  }

  .brand-copy span {
    display: none;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    animation: none !important;
    transition: none !important;
  }
}

/* Sports-brand editorial override (inspired by high-level patterns from Nike, adidas, and On) */
:root {
  --navy-950: #050a14;
  --navy-900: #081a34;
  --navy-800: #0f2f5c;
  --navy-700: #1d4f93;
  --navy-100: #e8f0ff;
  --navy-050: #f7f9fd;
  --ink-900: #0a0e14;
  --ink-700: #2d3748;
  --ink-500: #6b7280;
  --line: #d7dfeb;
  --line-strong: #c5d0e1;
  --orange-500: #c8102e;
  --orange-400: #ef233c;
  --radius-sm: 6px;
  --radius-md: 10px;
  --radius-lg: 14px;
  --shadow-sm: 0 6px 16px rgba(5, 10, 20, 0.06);
  --shadow-md: 0 18px 40px rgba(5, 10, 20, 0.08);
  --shadow-lg: 0 28px 70px rgba(5, 10, 20, 0.12);
}

body {
  background:
    radial-gradient(circle at 85% 7%, rgba(200, 16, 46, 0.06), transparent 35%),
    linear-gradient(180deg, #f5f7fb 0%, #f2f5fa 100%);
  color: var(--ink-900);
  font-family: "Inter Tight", sans-serif;
  line-height: 1.4;
  letter-spacing: -0.01em;
}

body::before {
  opacity: 0.12;
  background-image:
    linear-gradient(rgba(8, 26, 52, 0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(8, 26, 52, 0.035) 1px, transparent 1px);
  background-size: 18px 18px;
  mask-image: none;
}

.site-header {
  background: rgba(245, 247, 251, 0.92);
  border-bottom: 1px solid rgba(8, 26, 52, 0.08);
  backdrop-filter: blur(12px);
}

.site-header::after {
  content: "";
  display: block;
  height: 2px;
  background: linear-gradient(90deg, var(--orange-500), rgba(200, 16, 46, 0));
  opacity: 0.85;
}

.nav-shell {
  min-height: 70px;
  padding: 8px 0;
}

.brand {
  gap: 10px;
}

.brand-mark {
  width: 46px;
  height: 46px;
  border-radius: 4px;
  background: #ffffff;
  box-shadow: none;
  border: 1px solid rgba(8, 26, 52, 0.12);
  padding: 4px;
  overflow: hidden;
}

.brand-mark img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.brand-copy strong {
  font-family: "Teko", sans-serif;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-size: 1.08rem;
  line-height: 0.95;
}

.brand-copy span {
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-size: 0.62rem;
  color: #6b7380;
}

.site-nav {
  gap: 2px;
}

.nav-link {
  position: relative;
  border-radius: 0;
  padding: 12px 10px 10px;
  background: transparent;
  color: #344256;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.nav-link::after {
  content: "";
  position: absolute;
  left: 10px;
  right: 10px;
  bottom: 4px;
  height: 2px;
  background: transparent;
  transition: background-color 120ms ease;
}

.nav-link:hover {
  background: transparent;
  color: var(--navy-900);
}

.nav-link:hover::after {
  background: rgba(8, 26, 52, 0.2);
}

.nav-link.is-active {
  background: transparent;
  color: var(--navy-900);
}

.nav-link.is-active::after {
  background: var(--orange-500);
}

.btn {
  border-radius: 5px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  box-shadow: none;
}

.btn-sm {
  padding: 11px 13px;
  font-size: 0.73rem;
}

.btn-md {
  padding: 13px 16px;
  font-size: 0.76rem;
}

.btn-lg {
  padding: 14px 18px;
  font-size: 0.8rem;
}

.btn-primary {
  color: #ffffff;
  background: linear-gradient(180deg, #ff5468, var(--orange-500));
  border-color: rgba(200, 16, 46, 0.35);
  box-shadow: 0 10px 18px rgba(200, 16, 46, 0.18);
}

.btn-secondary {
  background: #fff;
  border-color: var(--line);
  color: var(--navy-900);
  box-shadow: none;
}

.btn-ghost {
  background: rgba(255, 255, 255, 0.02);
  border-color: rgba(255, 255, 255, 0.24);
  color: var(--white);
}

.pill {
  border-radius: 4px;
  border: 1px solid rgba(255, 255, 255, 0.22);
  background: linear-gradient(180deg, #e11d48, var(--orange-500));
  color: var(--white);
  font-family: "Teko", sans-serif;
  font-size: 0.98rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 6px 10px 4px;
}

.pill::before {
  width: 6px;
  height: 6px;
  border-radius: 2px;
  background: #ffffff;
  box-shadow: none;
}

.page-shell {
  padding: 20px 0 34px;
}

.hero {
  border-radius: 10px;
  border: 1px solid rgba(8, 26, 52, 0.18);
  background:
    linear-gradient(180deg, rgba(255,255,255,0.02), rgba(255,255,255,0)),
    linear-gradient(140deg, #071225 0%, #081a34 58%, #0c2751 100%);
  box-shadow: var(--shadow-lg);
}

.hero-photo-bg {
  position: absolute;
  inset: -14px;
  z-index: 0;
  pointer-events: none;
  background:
    linear-gradient(180deg, rgba(3, 9, 21, 0.34), rgba(3, 12, 28, 0.58)),
    url("assets/unnamed.jpg") center 45% / cover no-repeat;
  filter: blur(5px) saturate(0.95);
  transform: scale(1.08);
  opacity: 0.74;
}

.hero::before {
  inset: 0;
  width: auto;
  height: auto;
  border-radius: 0;
  background:
    linear-gradient(rgba(255,255,255,0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.03) 1px, transparent 1px);
  background-size: 22px 22px;
  opacity: 0.45;
  z-index: 1;
  pointer-events: none;
}

.hero::after {
  left: 56%;
  right: -90px;
  bottom: -58px;
  height: 96px;
  background: linear-gradient(90deg, rgba(200, 16, 46, 0.98), rgba(239, 75, 97, 0.95));
  transform: rotate(-7deg);
  opacity: 1;
  z-index: 1;
  pointer-events: none;
}

.hero-grid {
  gap: 18px;
  padding: 22px;
  z-index: 2;
}

.hero-grid-single {
  grid-template-columns: 1fr;
}

.hero h1 {
  color: var(--white);
  font-family: "Teko", sans-serif;
  font-size: clamp(3rem, 7vw, 6rem);
  line-height: 0.8;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  margin: 8px 0 10px;
}

.hero h1 .hero-title-main,
.hero h1 .hero-year,
.hero h1 .hero-date {
  display: block;
}

.hero h1 .hero-title-main {
  font-size: 0.84em;
}

.hero h1 .hero-year {
  font-size: 1.3em;
  line-height: 0.74;
  letter-spacing: 0.05em;
}

.hero h1 .hero-date {
  margin-top: 10px;
  color: rgba(234, 242, 255, 0.92);
  font-family: "Inter Tight", sans-serif;
  font-size: clamp(0.9rem, 1.8vw, 1.05rem);
  font-weight: 700;
  letter-spacing: 0.14em;
  line-height: 1;
}

.hero-copy {
  color: rgba(232, 240, 255, 0.88);
  font-size: 0.98rem;
  max-width: 54ch;
}

.hero-copy strong {
  color: var(--white);
}

.hero-actions {
  gap: 8px;
  margin-top: 16px;
}

.hero-meta {
  margin-top: 14px;
}

.meta-chip {
  border-radius: 4px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.1);
  color: rgba(234, 242, 255, 0.9);
  box-shadow: none;
  font-size: 0.8rem;
  letter-spacing: 0.03em;
  padding: 8px 10px;
}

.hero-side-card {
  background: #f7fafc;
  color: var(--ink-900);
  border-radius: 8px;
  border: 1px solid rgba(8, 26, 52, 0.15);
  box-shadow: none;
  align-self: end;
  padding: 14px;
  gap: 10px;
  position: relative;
}

.hero-side-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--orange-500), rgba(200, 16, 46, 0.2));
}

.hero-side-card h2 {
  color: var(--navy-900);
  font-family: "Teko", sans-serif;
  font-size: 2rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  margin-top: 2px;
}

.hero-side-card p {
  color: var(--ink-700);
  font-size: 0.9rem;
}

.hero-side-card .btn-ghost {
  background: #fff;
  border-color: var(--line);
  color: var(--navy-900);
}

.hero-lower-card {
  margin: 0 22px 22px;
  z-index: 1;
}

.uwc-lockup {
  width: min(420px, 100%);
  height: auto;
  display: block;
  margin: 2px 0 8px;
}

.hero-lower-card .stack-list {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.hero-lower-card .btn {
  justify-self: start;
}

.stack-list li {
  padding: 10px;
  border-radius: 6px;
  background: var(--white);
  border: 1px solid var(--line);
}

.stack-list .label {
  color: var(--ink-500);
  font-family: "Teko", sans-serif;
  font-size: 0.85rem;
  letter-spacing: 0.08em;
}

.stack-list .value {
  color: var(--navy-900);
  font-size: 0.88rem;
}

.section,
.page-hero,
.site-footer {
  border-radius: 10px;
  border: 1px solid rgba(8, 26, 52, 0.12);
  background: rgba(255, 255, 255, 0.96);
  box-shadow: var(--shadow-md);
}

.page-hero {
  background:
    linear-gradient(120deg, #081a34 0%, #0c2751 65%, #123866 100%);
  border-color: rgba(8, 26, 52, 0.22);
  color: var(--white);
  position: relative;
  overflow: hidden;
}

.page-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(rgba(255,255,255,0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.03) 1px, transparent 1px);
  background-size: 20px 20px;
  pointer-events: none;
}

.page-hero > * {
  position: relative;
  z-index: 1;
}

.page-hero h1 {
  color: var(--white);
  font-family: "Teko", sans-serif;
  font-size: clamp(2.8rem, 6vw, 4.6rem);
  line-height: 0.82;
  text-transform: uppercase;
  letter-spacing: 0.03em;
}

.page-hero p {
  color: rgba(234, 242, 255, 0.9);
}

.subnav a {
  border-radius: 4px;
  border-color: rgba(255, 255, 255, 0.16);
  background: rgba(255, 255, 255, 0.04);
  color: var(--white);
  font-family: "Teko", sans-serif;
  font-size: 0.96rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  box-shadow: none;
  padding: 8px 10px 6px;
}

.section {
  padding: 18px;
}

.section-head {
  margin-bottom: 14px;
}

.section-kicker {
  font-family: "Teko", sans-serif;
  color: var(--navy-700);
  font-size: 0.95rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  margin: 0;
}

.section-title {
  color: var(--navy-900);
  font-family: "Teko", sans-serif;
  font-size: clamp(2rem, 4vw, 3rem);
  line-height: 0.85;
  text-transform: uppercase;
  letter-spacing: 0.03em;
}

.section-note {
  color: #4b5563;
  font-size: 0.86rem;
  max-width: 46ch;
}

.card,
.stat,
.path-card,
.schedule-card,
.level-card,
.price-tile,
.coach-card,
.location-box,
.form-card,
.info-card {
  border-radius: 8px;
  border: 1px solid var(--line);
  background: #fff;
  box-shadow: none;
}

.card,
.stat,
.path-card,
.schedule-card,
.level-card,
.price-tile,
.coach-card,
.location-box,
.form-card,
.info-card {
  position: relative;
}

.card::before,
.stat::before,
.path-card::before,
.level-card::before,
.price-tile::before,
.coach-card::before,
.location-box::before,
.form-card::before,
.info-card::before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  height: 2px;
  background: linear-gradient(90deg, rgba(8, 26, 52, 0.85), rgba(8, 26, 52, 0));
  opacity: 0.16;
}

.card-link .card {
  transition: transform 140ms ease, border-color 140ms ease, box-shadow 140ms ease;
}

.card-link:hover .card {
  transform: translateY(-3px);
  border-color: rgba(8, 26, 52, 0.22);
  box-shadow: var(--shadow-sm);
}

.card h3,
.path-card h3,
.schedule-card h3,
.coach-card h3,
.location-box h3,
.form-card h3,
.info-card h3,
.cta-band h3 {
  color: var(--navy-900);
  font-weight: 800;
  letter-spacing: -0.02em;
}

.card p,
.path-card p,
.schedule-card .track,
.coach-card p,
.location-box p,
.form-card p,
.info-card p {
  color: var(--ink-700);
}

.card-link h3::after {
  content: "Open";
  font-family: "Teko", sans-serif;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  font-size: 0.9rem;
  color: var(--navy-700);
}

.stat {
  padding-top: 12px;
}

.stat .label {
  font-family: "Teko", sans-serif;
  font-size: 0.86rem;
  letter-spacing: 0.14em;
  color: #677285;
}

.stat .value {
  font-family: "Teko", sans-serif;
  font-size: 2.4rem;
  line-height: 0.8;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  margin-top: 8px;
}

.stat .sub {
  font-size: 0.8rem;
  color: var(--ink-700);
}

.path-label {
  border-radius: 4px;
  border-color: rgba(8, 26, 52, 0.12);
  background: #f4f7fb;
  font-family: "Teko", sans-serif;
  letter-spacing: 0.1em;
  font-size: 0.9rem;
  padding: 5px 9px 4px;
}

.path-card .time {
  border-top-color: var(--line);
  color: var(--navy-900);
  font-size: 0.82rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.timeline li {
  border-radius: 8px;
  border-color: var(--line);
  background: #fff;
  box-shadow: none;
}

.timeline .date {
  font-family: "Teko", sans-serif;
  font-size: 1rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.timeline .desc {
  font-size: 0.88rem;
  color: var(--ink-700);
}

.badge-soft {
  border-radius: 4px;
  background: #f3f6fb;
  color: var(--navy-900);
  border-color: var(--line);
  font-family: "Teko", sans-serif;
  font-size: 0.9rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 5px 9px 4px;
}

.cta-band {
  border-radius: 8px;
  border: 1px solid rgba(8, 26, 52, 0.18);
  background:
    linear-gradient(130deg, #081a34 0%, #0b2347 70%, #12335f 100%);
  box-shadow: none;
}

.cta-band h3 {
  color: var(--white);
  font-family: "Teko", sans-serif;
  font-size: 1.7rem;
  line-height: 0.9;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.cta-band p {
  color: rgba(234, 242, 255, 0.88);
  font-size: 0.88rem;
}

.schedule-card {
  border-radius: 8px;
  padding: 14px;
}

.schedule-card::before {
  width: 3px;
  background: linear-gradient(180deg, var(--orange-500), rgba(200, 16, 46, 0.35));
}

.schedule-card .age {
  margin-top: 6px;
  color: var(--navy-700);
  font-family: "Teko", sans-serif;
  font-size: 1rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.schedule-card .time {
  font-size: 0.88rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.level-card,
.price-tile {
  padding: 12px;
}

.level-badge {
  font-family: "Teko", sans-serif;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-size: 1rem;
}

.price-tile .label {
  font-family: "Teko", sans-serif;
  font-size: 0.86rem;
  letter-spacing: 0.14em;
}

.price-tile .amount {
  font-family: "Teko", sans-serif;
  font-size: 2.2rem;
  line-height: 0.82;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.price-tile .note {
  font-size: 0.82rem;
}

.price-tile.highlight {
  border-color: rgba(200, 16, 46, 0.28);
  background: linear-gradient(180deg, #fff8fa, #fff1f4);
}

.callout {
  border-radius: 6px;
  border: 1px dashed rgba(8, 26, 52, 0.18);
  background: #f7f9fc;
  color: var(--ink-700);
  font-size: 0.88rem;
}

.location-box,
.form-card,
.info-card {
  padding: 14px;
}

.check-list li {
  grid-template-columns: 14px 1fr;
  font-size: 0.86rem;
}

.check-list li::before {
  content: "/";
  color: var(--orange-500);
}

label {
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--ink-700);
}

input,
select,
textarea {
  border-radius: 6px;
  border: 1px solid var(--line-strong);
  background: #fbfcfe;
  padding: 11px 11px;
}

input:focus-visible,
select:focus-visible,
textarea:focus-visible {
  outline: 2px solid rgba(8, 26, 52, 0.12);
  border-color: rgba(8, 26, 52, 0.28);
}

.faq-list li {
  border-radius: 6px;
  border: 1px solid var(--line);
  background: #fff;
}

.faq-list strong {
  color: var(--navy-900);
}

.faq-list span {
  color: var(--ink-700);
}

.site-footer {
  background: linear-gradient(180deg, #081a34, #07172e);
  border-color: rgba(8, 26, 52, 0.26);
  box-shadow: none;
}

.footer-copy {
  color: rgba(234, 242, 255, 0.82);
  font-size: 0.82rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.footer-links a {
  border-radius: 4px;
  border-color: rgba(255, 255, 255, 0.12);
  background: rgba(255, 255, 255, 0.03);
  color: var(--white);
  font-family: "Teko", sans-serif;
  font-size: 0.9rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.divider {
  background: linear-gradient(90deg, transparent, rgba(8, 26, 52, 0.1), transparent);
}

@media (max-width: 1040px) {
  .hero::after {
    left: 30%;
    right: -60px;
  }
}

@media (max-width: 860px) {
  .nav-link {
    padding: 10px 8px 8px;
  }

  .hero h1 {
    font-size: clamp(2.6rem, 12vw, 4.4rem);
  }

  .hero h1 .hero-date {
    letter-spacing: 0.1em;
  }

  .page-hero h1 {
    font-size: clamp(2.3rem, 10vw, 3.8rem);
  }
}

@media (max-width: 620px) {
  .site-header::after {
    height: 1px;
  }

  .brand-mark {
    width: 42px;
    height: 42px;
    padding: 3px;
  }

  .hero::after {
    left: 8%;
    right: -70px;
    bottom: -72px;
    height: 88px;
  }

  .hero-grid,
  .section,
  .page-hero,
  .site-footer {
    padding: 14px;
  }

  .hero-lower-card {
    margin: 0 14px 14px;
  }

  .hero-lower-card .stack-list {
    grid-template-columns: 1fr;
  }

  .btn,
  .header-actions .btn {
    width: 100%;
  }

  .subnav a {
    width: 100%;
    justify-content: center;
  }
}
