:root {
  --bg: #f3f6f8;
  --paper: #ffffff;
  --paper-strong: #f8fbfd;
  --ink: #0f1d2a;
  --ink-soft: #425162;
  --muted: #6a7889;
  --line: rgba(15, 29, 42, 0.1);
  --line-strong: rgba(15, 29, 42, 0.16);
  --line-on-dark: rgba(255, 255, 255, 0.15);
  --navy-950: #06111c;
  --navy-900: #0b1826;
  --navy-850: #102335;
  --navy-800: #14314a;
  --accent: #2cb4ff;
  --accent-strong: #178bce;
  --accent-soft: rgba(44, 180, 255, 0.16);
  --teal: #7af0d1;
  --warm: #f2c57c;
  --danger: #b64040;
  --success: #0d7a57;
  --shadow-sm: 0 12px 30px rgba(9, 21, 34, 0.08);
  --shadow-md: 0 24px 70px rgba(9, 21, 34, 0.14);
  --shadow-lg: 0 36px 100px rgba(6, 17, 28, 0.22);
  --radius-sm: 14px;
  --radius-md: 22px;
  --radius-lg: 32px;
  --max: 1180px;
  --header-height: 84px;
  --header-top-offset: 1rem;
  --header-clearance: 2.6rem;
  --page-top-spacing: calc(var(--header-top-offset) + var(--header-height) + var(--header-clearance));
  --sans: "Inter", "Segoe UI", "Helvetica Neue", Arial, sans-serif;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background:
    radial-gradient(circle at top left, rgba(44, 180, 255, 0.08), transparent 28%),
    radial-gradient(circle at top right, rgba(122, 240, 209, 0.07), transparent 20%),
    linear-gradient(180deg, #eef3f6 0%, var(--bg) 22%, #f4f7f9 100%);
  font-family: var(--sans);
  line-height: 1.6;
  letter-spacing: -0.01em;
  text-rendering: optimizeLegibility;
}

body.nav-locked {
  overflow: hidden;
}

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

a {
  color: inherit;
  text-decoration: none;
}

p {
  margin: 0;
  color: var(--ink-soft);
}

ul {
  margin: 0;
  padding: 0;
}

li {
  list-style: none;
}

button,
input,
select,
textarea {
  font: inherit;
}

input,
select,
textarea,
button {
  appearance: none;
}

:focus-visible {
  outline: 3px solid rgba(44, 180, 255, 0.36);
  outline-offset: 3px;
}

.skip-link {
  position: absolute;
  top: -4rem;
  left: 1rem;
  z-index: 2000;
  padding: 0.85rem 1rem;
  color: var(--navy-950);
  background: var(--paper);
  border-radius: 999px;
  box-shadow: var(--shadow-md);
}

.skip-link:focus {
  top: 1rem;
}

.site-header {
  position: fixed;
  top: var(--header-top-offset);
  right: 0;
  left: 0;
  z-index: 1000;
  pointer-events: auto;
  opacity: 1;
  transform: translateY(0);
  transition: transform 280ms ease, opacity 280ms ease;
}

.site-header.header-visible {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}

.site-header.header-hidden {
  opacity: 0;
  transform: translateY(-120%);
  pointer-events: none;
}

.nav-shell,
.hero-inner,
.container,
.trust-inner,
.footer-inner {
  width: min(100% - 48px, var(--max));
  margin: 0 auto;
}

.nav-shell {
  position: relative;
  min-height: var(--header-height);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.25rem;
  padding: 0 1.1rem;
  background: rgba(11, 24, 38, 0.52);
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 999px;
  box-shadow:
    0 18px 40px rgba(6, 17, 28, 0.18),
    inset 0 1px 0 rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(26px) saturate(150%);
  pointer-events: auto;
  transition: background 220ms ease, border-color 220ms ease, box-shadow 220ms ease;
}

.site-header.is-scrolled .nav-shell,
.site-header.nav-is-open .nav-shell {
  background: rgba(8, 20, 32, 0.72);
  border-color: rgba(255, 255, 255, 0.18);
  box-shadow:
    0 24px 54px rgba(6, 17, 28, 0.22),
    inset 0 1px 0 rgba(255, 255, 255, 0.16);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.85rem;
  color: var(--paper);
}

.brand-mark {
  width: 44px;
  height: 44px;
  padding: 0.45rem;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.12), rgba(255, 255, 255, 0.04));
  border: 1px solid var(--line-on-dark);
  border-radius: 14px;
}

.brand-copy {
  display: grid;
  gap: 0.12rem;
}

.brand-name {
  font-size: 1rem;
  font-weight: 800;
  letter-spacing: 0.02em;
  text-transform: uppercase;
}

.brand-domain {
  color: rgba(255, 255, 255, 0.68);
  font-size: 0.78rem;
  font-weight: 600;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.38rem;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 999px;
}

.nav-link {
  position: relative;
  padding: 0.8rem 1rem;
  color: rgba(255, 255, 255, 0.78);
  border-radius: 999px;
  font-size: 0.93rem;
  font-weight: 700;
  letter-spacing: -0.01em;
  transition: color 180ms ease, background 180ms ease, transform 180ms ease;
}

.nav-link:hover,
.nav-link:focus-visible,
.nav-link[aria-current="page"] {
  color: var(--paper);
  background: rgba(255, 255, 255, 0.08);
}

.nav-link[aria-current="page"]::after {
  content: "";
  position: absolute;
  left: 1rem;
  right: 1rem;
  bottom: 0.5rem;
  height: 2px;
  background: linear-gradient(90deg, var(--teal), var(--accent));
  border-radius: 999px;
}

.nav-cta {
  color: var(--navy-950);
  background: linear-gradient(135deg, var(--paper) 0%, #dbf5ff 100%);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.9);
}

.nav-cta:hover,
.nav-cta:focus-visible {
  color: var(--navy-950);
  background: linear-gradient(135deg, #f6fdff 0%, #c5efff 100%);
}

.nav-toggle {
  display: none;
  width: 48px;
  height: 48px;
  padding: 0;
  color: var(--paper);
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 14px;
  cursor: pointer;
}

.nav-toggle span {
  display: block;
  width: 18px;
  height: 2px;
  margin: 4px auto;
  background: currentColor;
  transition: transform 180ms ease, opacity 180ms ease;
}

.site-header.nav-is-open .nav-toggle span:nth-child(1) {
  transform: translateY(6px) rotate(45deg);
}

.site-header.nav-is-open .nav-toggle span:nth-child(2) {
  opacity: 0;
}

.site-header.nav-is-open .nav-toggle span:nth-child(3) {
  transform: translateY(-6px) rotate(-45deg);
}

.hero {
  position: relative;
  min-height: 78svh;
  display: grid;
  align-items: start;
  overflow: clip;
  color: var(--paper);
  background-color: var(--navy-900);
  background-position: center;
  background-size: cover;
}

/* .hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(110deg, rgba(6, 17, 28, 0.9) 0%, rgba(11, 24, 38, 0.82) 30%, rgba(13, 34, 53, 0.46) 62%, rgba(6, 17, 28, 0.74) 100%),
    linear-gradient(180deg, rgba(6, 17, 28, 0.08) 0%, rgba(6, 17, 28, 0.74) 100%);
} */

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(110deg, rgba(6, 17, 28, 0.8) 0%, rgba(11, 24, 38, 0.7) 30%, rgba(13, 34, 53, 0.36) 62%, rgba(6, 17, 28, 0.6) 100%),
    linear-gradient(180deg, rgba(6, 17, 28, 0.05) 0%, rgba(6, 17, 28, 0.6) 100%);
}

.hero::after {
  content: "";
  position: absolute;
  inset: auto -10% -18% 48%;
  height: 52%;
  background: radial-gradient(circle, rgba(44, 180, 255, 0.22), transparent 65%);
  filter: blur(10px);
  pointer-events: none;
}

.hero-home {
  min-height: calc(100svh - var(--header-height));
  background-image: url("../images/blair-challange.jpg");
  background-position: center 28%;
  background-size: cover;
  background-repeat: no-repeat;
  align-items: end;
}

.hero-about {
  background-image: url("../images/blair-challange.jpg");
  background-position: center 28%;
  background-size: cover;
  background-repeat: no-repeat;
}

.hero-coaching {
  background-image: url("../images/blair-challange.jpg");
  background-position: center 28%;
  background-size: cover;
  background-repeat: no-repeat;
}

.hero-results {
  background-image: url("../images/blair-challange.jpg");
  background-position: center 28%;
  background-size: cover;
  background-repeat: no-repeat;
}

.hero-apply {
  background-image: url("../images/blair-challange.jpg");
  background-position: center 28%;
  background-size: cover;
  background-repeat: no-repeat;
}

.hero-inner {
  position: relative;
  z-index: 1;
  padding: var(--page-top-spacing) 0 5.2rem;
}

.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 360px);
  gap: 2rem;
  align-items: end;
}

.hero-kicker,
.section-kicker {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  margin-bottom: 1.15rem;
  color: #9ddfff;
  font-size: 0.77rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.hero-kicker::before,
.section-kicker::before {
  content: "";
  width: 34px;
  height: 2px;
  background: linear-gradient(90deg, var(--teal), var(--accent));
}

h1,
h2,
h3 {
  margin: 0;
  color: inherit;
  line-height: 1.04;
}

h1,
h2 {
  font-family: var(--sans);
  letter-spacing: -0.045em;
}

h1 {
  max-width: 760px;
  font-size: clamp(3.4rem, 7vw, 5.8rem);
  font-weight: 800;
}

.page-title {
  max-width: 820px;
  font-size: clamp(3rem, 6vw, 5rem);
}

h2 {
  font-size: clamp(2.2rem, 4vw, 3.5rem);
  font-weight: 800;
}

h3 {
  font-size: 1.25rem;
  font-weight: 800;
  letter-spacing: -0.03em;
}

.hero-copy {
  max-width: 680px;
  margin-top: 1.35rem;
  color: rgba(255, 255, 255, 0.82);
  font-size: clamp(1.04rem, 1.8vw, 1.22rem);
  line-height: 1.7;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.9rem;
  margin-top: 2rem;
}

.hero-panel {
  display: grid;
  gap: 1.1rem;
  align-self: end;
  padding: 1.2rem;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 24px;
  box-shadow: var(--shadow-lg);
  backdrop-filter: blur(12px);
}

.hero-panel-row {
  display: grid;
  gap: 0.45rem;
}

.hero-panel-row strong {
  font-size: 1rem;
  font-weight: 800;
}

.hero-panel-row span,
.hero-panel-stats span {
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.92rem;
}

.hero-panel-stats {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.85rem;
}

.hero-panel-stats div {
  padding-top: 1rem;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
}

.hero-panel-stats b {
  display: block;
  margin-bottom: 0.4rem;
  font-family: var(--serif);
  font-size: 2rem;
  line-height: 1;
}

.button {
  display: inline-flex;
  min-height: 52px;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.95rem 1.25rem;
  border: 1px solid transparent;
  border-radius: 999px;
  font-size: 0.94rem;
  font-weight: 800;
  letter-spacing: 0.02em;
  transition: transform 180ms ease, box-shadow 180ms ease, background 180ms ease, border-color 180ms ease;
  cursor: pointer;
}

.button:hover,
.button:focus-visible {
  transform: translateY(-2px);
}

.button[disabled] {
  opacity: 0.7;
  cursor: wait;
  transform: none;
}

.button-primary {
  color: var(--paper);
  background: linear-gradient(135deg, var(--accent-strong), var(--accent));
  box-shadow: 0 14px 34px rgba(23, 139, 206, 0.28);
}

.button-primary:hover,
.button-primary:focus-visible {
  box-shadow: 0 18px 42px rgba(23, 139, 206, 0.34);
}

.button-secondary {
  color: var(--paper);
  background: rgba(255, 255, 255, 0.06);
  border-color: rgba(255, 255, 255, 0.14);
}

.button-secondary:hover,
.button-secondary:focus-visible {
  background: rgba(255, 255, 255, 0.12);
}

.button-dark {
  color: var(--paper);
  background: linear-gradient(135deg, var(--navy-900), var(--navy-800));
  box-shadow: 0 14px 30px rgba(16, 35, 53, 0.18);
}

.button-dark:hover,
.button-dark:focus-visible {
  box-shadow: 0 18px 36px rgba(16, 35, 53, 0.22);
}

.trust-strip {
  position: relative;
  z-index: 2;
  background:
    linear-gradient(135deg, rgba(6, 17, 28, 0.98), rgba(16, 35, 53, 0.98));
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  overflow: hidden;
}

.trust-inner {
  position: relative;
  padding: 1rem 0;
  overflow: hidden;
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.88rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.trust-inner::before,
.trust-inner::after {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  width: 72px;
  z-index: 1;
  pointer-events: none;
}

.trust-inner::before {
  left: 0;
  background: linear-gradient(90deg, rgba(6, 17, 28, 1), rgba(6, 17, 28, 0));
}

.trust-inner::after {
  right: 0;
  background: linear-gradient(270deg, rgba(16, 35, 53, 1), rgba(16, 35, 53, 0));
}

.keyword-marquee {
  position: relative;
  width: 100%;
  overflow: hidden;
}

.keyword-marquee__track {
  display: flex;
  align-items: center;
  min-width: max-content;
  width: max-content;
  animation: keyword-marquee 42s linear infinite;
}

.keyword-marquee__group {
  display: flex;
  align-items: center;
  flex: 0 0 auto;
  gap: 1.15rem;
  min-width: max-content;
  padding-right: 1.15rem;
}

.keyword-marquee__group + .keyword-marquee__group::before {
  content: "";
  width: 5px;
  height: 5px;
  margin-right: 1.15rem;
  background: var(--teal);
  border-radius: 50%;
  flex: 0 0 auto;
}

.trust-strip:hover .keyword-marquee__track,
.trust-strip:focus-within .keyword-marquee__track {
  animation-play-state: paused;
}

.keyword-marquee__group span {
  display: inline-flex;
  align-items: center;
  gap: 1.15rem;
}

.keyword-marquee__group span + span::before {
  content: "";
  width: 5px;
  height: 5px;
  background: var(--teal);
  border-radius: 50%;
}

@keyframes keyword-marquee {
  from {
    transform: translate3d(0, 0, 0);
  }

  to {
    transform: translate3d(-33.3333%, 0, 0);
  }
}

.image-feature,
.section-dark {
  position: relative;
  color: var(--paper);
  background:
    radial-gradient(circle at top right, rgba(44, 180, 255, 0.12), transparent 24%),
    linear-gradient(180deg, var(--navy-900) 0%, var(--navy-850) 100%);
}

.image-feature {
  border-bottom: 1px solid var(--line-on-dark);
}

.image-feature-inner {
  width: min(100% - 48px, var(--max));
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(0, 0.85fr) minmax(360px, 1fr);
  align-items: center;
  gap: 3.6rem;
  padding: 5.2rem 0;
}

.image-feature-copy h2 {
  max-width: 580px;
}

.image-feature-copy p {
  max-width: 540px;
  margin-top: 1rem;
  color: rgba(255, 255, 255, 0.74);
}

.image-feature-media,
.image-panel,
.apply-form,
.card,
.package,
.metric,
.result-item {
  position: relative;
  overflow: hidden;
}

.image-feature-media {
  margin: 0;
  border: 1px solid var(--line-on-dark);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
}

.image-feature-media::after,
.image-panel::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 38%;
  background: linear-gradient(180deg, transparent, rgba(6, 17, 28, 0.16));
  pointer-events: none;
}

.image-feature-media img {
  width: 100%;
  height: auto;
  aspect-ratio: 3 / 2;
  object-fit: cover;
}

.section {
  position: relative;
  padding: 6.5rem 0;
}

.section-white {
  background: transparent;
}

.container {
  position: relative;
}

.section-head {
  max-width: 780px;
  margin-bottom: 3rem;
}

.section-head.center {
  margin-right: auto;
  margin-left: auto;
  text-align: center;
}

.section-head.center .section-kicker {
  justify-content: center;
}

.section-head.center .section-kicker::before {
  display: none;
}

.section-lede {
  margin-top: 1rem;
  font-size: 1.06rem;
  line-height: 1.72;
}

.section-dark p,
.section-dark .section-lede,
.image-feature p,
.band p {
  color: rgba(255, 255, 255, 0.74);
}

.split {
  display: grid;
  grid-template-columns: minmax(0, 1.02fr) minmax(320px, 0.82fr);
  align-items: center;
  gap: 3.5rem;
}

.split.reverse {
  grid-template-columns: minmax(320px, 0.84fr) minmax(0, 1fr);
}

.copy-stack {
  display: grid;
  gap: 1.25rem;
}

.copy-stack strong {
  color: var(--ink);
}

.section-dark .copy-stack strong {
  color: var(--paper);
}

.image-panel {
  border: 1px solid rgba(255, 255, 255, 0.35);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
}

.section-white .image-panel {
  border-color: rgba(15, 29, 42, 0.08);
}

.image-panel img {
  width: 100%;
  height: 100%;
  min-height: 460px;
  object-fit: cover;
}

.image-panel.tall img {
  min-height: 600px;
}

.portrait-panel,
.finish-panel {
  max-width: 540px;
  justify-self: center;
}

.portrait-panel img,
.finish-panel img {
  min-height: 640px;
  object-position: center top;
}

.image-caption {
  position: absolute;
  right: 1rem;
  bottom: 1rem;
  left: 1rem;
  z-index: 1;
  padding: 1rem 1.05rem;
  color: var(--paper);
  background: rgba(6, 17, 28, 0.7);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 18px;
  backdrop-filter: blur(12px);
}

.image-caption p {
  color: rgba(255, 255, 255, 0.74);
  font-size: 0.92rem;
}

.metrics,
.grid,
.field-grid {
  display: grid;
  gap: 1rem;
}

.metrics {
  grid-template-columns: repeat(3, 1fr);
  margin-top: 1.45rem;
}

.metric,
.card,
.package,
.apply-form,
.result-item {
  background: rgba(255, 255, 255, 0.88);
  border: 1px solid rgba(15, 29, 42, 0.08);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-sm);
}

.section-dark .metric,
.section-dark .card {
  background: rgba(255, 255, 255, 0.06);
  border-color: rgba(255, 255, 255, 0.12);
}

.metric {
  padding: 1.3rem;
}

.metric b {
  display: block;
  color: var(--ink);
  font-size: 2rem;
  line-height: 1;
}

.section-dark .metric b {
  color: var(--paper);
}

.metric span {
  display: block;
  margin-top: 0.6rem;
  color: var(--muted);
  font-size: 0.9rem;
  font-weight: 700;
}

.section-dark .metric span {
  color: rgba(255, 255, 255, 0.7);
}

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

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

.card,
.package {
  height: 100%;
  padding: 1.5rem;
  transition: transform 220ms ease, box-shadow 220ms ease, border-color 220ms ease;
}

.card:hover,
.card:focus-within,
.package:hover,
.package:focus-within,
.result-item:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
  border-color: rgba(44, 180, 255, 0.24);
}

.card h3 {
  margin-bottom: 0.72rem;
}

.card p {
  font-size: 0.98rem;
}

.card-index {
  display: inline-flex;
  width: 38px;
  height: 38px;
  align-items: center;
  justify-content: center;
  margin-bottom: 1rem;
  color: #e6f7ff;
  background: linear-gradient(135deg, var(--navy-800), var(--navy-900));
  border: 1px solid rgba(157, 223, 255, 0.24);
  border-radius: 14px;
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.08),
    0 10px 20px rgba(7, 24, 40, 0.28),
    0 0 0 1px rgba(44, 180, 255, 0.05);
  font-size: 0.88rem;
  font-weight: 900;
}

.package {
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
}

.package.featured {
  border-color: rgba(44, 180, 255, 0.3);
  box-shadow: var(--shadow-md);
}

.package-label {
  width: fit-content;
  padding: 0.32rem 0.6rem;
  color: var(--navy-950);
  background: rgba(122, 240, 209, 0.3);
  border-radius: 999px;
  font-size: 0.75rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.package ul,
.check-list {
  display: grid;
  gap: 0.78rem;
}

.package li,
.check-list li {
  position: relative;
  padding-left: 1.5rem;
  color: var(--ink-soft);
}

.section-dark .check-list li {
  color: rgba(255, 255, 255, 0.8);
}

.package li::before,
.check-list li::before {
  content: "";
  position: absolute;
  top: 0.62rem;
  left: 0;
  width: 8px;
  height: 8px;
  background: linear-gradient(135deg, var(--teal), var(--accent));
  border-radius: 50%;
}

.package .button {
  margin-top: auto;
}

.band {
  position: relative;
  padding: 4.3rem 0;
  color: var(--paper);
  background:
    linear-gradient(115deg, rgba(6, 17, 28, 0.78), rgba(16, 35, 53, 0.5)),
    url("../images/blair-bike-course.jpg") center / cover;
  overflow: clip;
}

.band::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 78% 28%, rgba(122, 240, 209, 0.16), transparent 28%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.04), rgba(255, 255, 255, 0));
  mix-blend-mode: screen;
  pointer-events: none;
}

.band::after {
  content: "";
  position: absolute;
  inset: 0;
  background: inherit;
  filter: saturate(1.08) contrast(1.04);
  opacity: 0.22;
  pointer-events: none;
  z-index: 0;
}

.band-inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: center;
  gap: 2rem;
}

.band p {
  max-width: 680px;
  margin-top: 0.7rem;
}

.process {
  counter-reset: process;
}

.process .card {
  counter-increment: process;
}

.process .card::before {
  content: counter(process, decimal-leading-zero);
  display: block;
  margin-bottom: 1.1rem;
  color: #9ddfff;
  font-size: 0.84rem;
  font-weight: 900;
  letter-spacing: 0.12em;
}

.section-results {
  background:
    radial-gradient(circle at top right, rgba(44, 180, 255, 0.12), transparent 24%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.2), rgba(233, 240, 245, 0.9));
}

.results-head {
  max-width: 860px;
}

.results-story {
  display: grid;
  gap: 1.5rem;
  margin-bottom: 1.5rem;
}

.results-story-intro {
  max-width: 900px;
}

.results-story-intro p {
  color: var(--ink-soft);
  font-size: 1rem;
  line-height: 1.74;
}

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

.result-spotlight {
  padding: 1.5rem;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(245, 250, 253, 0.92));
}

.result-spotlight-featured {
  background:
    linear-gradient(180deg, rgba(224, 246, 255, 0.98), rgba(244, 250, 255, 0.94));
  border-color: rgba(44, 180, 255, 0.24);
  box-shadow: var(--shadow-md);
}

.result-spotlight-label {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  color: var(--accent-strong);
  font-size: 0.74rem;
  font-weight: 900;
  letter-spacing: 0.11em;
  text-transform: uppercase;
}

.result-spotlight-label::before {
  content: "";
  width: 26px;
  height: 2px;
  background: linear-gradient(90deg, var(--teal), var(--accent));
}

.result-spotlight h3 {
  margin-top: 1rem;
  color: var(--navy-950);
  font-size: 1.55rem;
}

.result-spotlight-mark {
  margin-top: 0.8rem;
  color: var(--navy-950);
  font-size: 1.06rem;
  font-weight: 800;
  line-height: 1.5;
}

.results-milestones {
  position: relative;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
}

.result-milestone {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 1rem;
  align-items: start;
  padding: 1.2rem 1.25rem;
  background: rgba(255, 255, 255, 0.72);
  border: 1px solid rgba(15, 29, 42, 0.08);
  border-radius: 24px;
  box-shadow: var(--shadow-sm);
}

.result-milestone-step {
  display: inline-flex;
  width: 42px;
  height: 42px;
  align-items: center;
  justify-content: center;
  color: #e6f7ff;
  background: linear-gradient(135deg, var(--navy-800), var(--navy-900));
  border: 1px solid rgba(157, 223, 255, 0.24);
  border-radius: 14px;
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.08),
    0 10px 20px rgba(7, 24, 40, 0.28),
    0 0 0 1px rgba(44, 180, 255, 0.05);
  font-size: 0.84rem;
  font-weight: 900;
}

.result-milestone h3 {
  color: var(--navy-950);
  font-size: 1.1rem;
}

.result-milestone p {
  margin-top: 0.45rem;
  color: var(--ink-soft);
  font-size: 0.95rem;
  line-height: 1.66;
}

.results-table-wrap {
  overflow: hidden;
  margin-top: 2rem;
  background:
    linear-gradient(180deg, rgba(11, 24, 38, 0.98), rgba(16, 35, 53, 0.95));
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 30px;
  box-shadow: var(--shadow-lg);
}

.results-table {
  width: 100%;
  border-collapse: collapse;
  color: var(--paper);
}

.results-table thead th {
  padding: 1.1rem 1rem;
  color: #9ddfff;
  font-size: 0.74rem;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-align: left;
  text-transform: uppercase;
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
}

.results-table tbody th,
.results-table tbody td {
  padding: 1.15rem 1rem;
  font-size: 0.95rem;
  text-align: left;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.results-table tbody th {
  color: var(--paper);
  font-size: 1rem;
  font-weight: 800;
  letter-spacing: -0.02em;
}

.results-table tbody td {
  color: rgba(255, 255, 255, 0.76);
}

.results-table tbody tr:last-child th,
.results-table tbody tr:last-child td {
  border-bottom: none;
}

.results-table tbody tr:nth-child(even) {
  background: rgba(255, 255, 255, 0.03);
}

.result-total {
  color: var(--paper) !important;
  font-weight: 800;
}

.place-badge {
  display: inline-flex;
  min-width: 52px;
  align-items: center;
  justify-content: center;
  padding: 0.5rem 0.7rem;
  border-radius: 999px;
  font-size: 0.8rem;
  font-weight: 900;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.place-1 {
  color: #362100;
  background: linear-gradient(135deg, #ffd76a, #ffeab1);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.7);
}

.place-2 {
  color: #1f2d3a;
  background: linear-gradient(135deg, #d8e3ef, #f3f7fb);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.78);
}

.place-3 {
  color: #412519;
  background: linear-gradient(135deg, #e4ab7b, #f4d1b4);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.58);
}

.place-top {
  color: rgba(255, 255, 255, 0.84);
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.16);
}

.results-cards {
  display: none;
  gap: 1rem;
  margin-top: 2rem;
}

.result-card {
  padding: 1.25rem;
  background:
    linear-gradient(180deg, rgba(11, 24, 38, 0.97), rgba(16, 35, 53, 0.94));
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 24px;
  box-shadow: var(--shadow-md);
}

.result-card-top {
  display: flex;
  align-items: start;
  justify-content: space-between;
  gap: 1rem;
}

.result-card-series {
  display: inline-flex;
  margin-bottom: 0.35rem;
  color: #9ddfff;
  font-size: 0.72rem;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.result-card h3 {
  color: var(--paper);
  font-size: 1.2rem;
}

.result-card-date {
  margin-top: 0.8rem;
  color: rgba(255, 255, 255, 0.68);
  font-size: 0.92rem;
}

.result-card-splits {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.85rem;
  margin-top: 1rem;
}

.result-card-splits div {
  padding: 0.9rem;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 16px;
}

.result-card-splits dt {
  color: rgba(255, 255, 255, 0.62);
  font-size: 0.74rem;
  font-weight: 800;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

.result-card-splits dd {
  margin: 0.35rem 0 0;
  color: var(--paper);
  font-size: 1rem;
  font-weight: 800;
  letter-spacing: -0.02em;
}

.text-link {
  color: var(--accent-strong);
  font-weight: 800;
  text-decoration: underline;
  text-decoration-thickness: 2px;
  text-underline-offset: 4px;
}

.apply-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.86fr) minmax(380px, 1fr);
  gap: 3rem;
  align-items: start;
}

.apply-form {
  --form-row-gap: 1.45rem;
  --form-control-gap: 0.78rem;
  display: grid;
  row-gap: var(--form-row-gap);
  padding: 2.3rem;
  border-radius: 24px;
  border-color: rgba(15, 29, 42, 0.1);
  box-shadow:
    0 24px 56px rgba(9, 21, 34, 0.12),
    inset 0 1px 0 rgba(255, 255, 255, 0.85);
}

.field-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1.25rem;
}

.field {
  display: flex;
  flex-direction: column;
  gap: var(--form-control-gap);
}

.field label {
  color: var(--ink);
  font-size: 0.9rem;
  font-weight: 800;
  letter-spacing: -0.01em;
  line-height: 1.3;
}

.field input,
.field select,
.field textarea {
  width: 100%;
  min-height: 52px;
  padding: 1rem 1.05rem;
  color: var(--ink);
  background: #fbfdff;
  border: 1px solid rgba(15, 29, 42, 0.12);
  border-radius: 16px;
  font-size: 1rem;
  line-height: 1.5;
  transition: border-color 180ms ease, box-shadow 180ms ease, background 180ms ease;
}

.field input::placeholder,
.field textarea::placeholder {
  color: #7f8b99;
}

.field input:focus,
.field select:focus,
.field textarea:focus {
  border-color: rgba(44, 180, 255, 0.4);
  box-shadow: 0 0 0 4px rgba(44, 180, 255, 0.12);
  outline: none;
}

.field textarea {
  min-height: 196px;
  padding-top: 1.05rem;
  resize: vertical;
}

.field input[aria-invalid="true"],
.field select[aria-invalid="true"],
.field textarea[aria-invalid="true"] {
  border-color: rgba(182, 64, 64, 0.5);
  box-shadow: 0 0 0 4px rgba(182, 64, 64, 0.08);
}

.form-note {
  min-height: 0;
  margin: 0;
  color: var(--muted);
  font-size: 0.92rem;
  line-height: 1.6;
}

.form-note:empty {
  display: none;
}

.apply-form .button {
  width: 100%;
  margin-top: 0;
}

.form-note.is-error {
  color: var(--danger);
}

.form-note.is-success {
  color: var(--success);
}

.contact-list {
  display: grid;
  gap: 0.45rem;
}

.contact-list p {
  margin: 0;
}

.site-footer {
  position: relative;
  color: rgba(255, 255, 255, 0.8);
  background:
    linear-gradient(180deg, rgba(4, 12, 20, 0.98), rgba(8, 23, 37, 1) 46%, rgba(12, 34, 53, 1));
  overflow: clip;
}

.site-footer::before,
.site-footer::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.site-footer::before {
  background:
    radial-gradient(circle at 18% 0%, rgba(44, 180, 255, 0.18), transparent 30%),
    radial-gradient(circle at 84% 12%, rgba(157, 223, 255, 0.12), transparent 24%);
}

.site-footer::after {
  inset: 0 0 auto;
  height: 1px;
  background: linear-gradient(90deg, rgba(157, 223, 255, 0), rgba(157, 223, 255, 0.7), rgba(157, 223, 255, 0));
  box-shadow: 0 0 22px rgba(44, 180, 255, 0.2);
}

.footer-inner {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 1.6rem;
  padding: 1.4rem 0 1.5rem;
  align-items: center;
  border-top: 1px solid rgba(157, 223, 255, 0.1);
}

.footer-meta {
  display: grid;
  gap: 0.45rem;
  justify-items: start;
}

.footer-note {
  margin: 0;
  color: rgba(255, 255, 255, 0.56);
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.01em;
}

.footer-contact {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 0.5rem 0.75rem;
  font-size: 0.88rem;
  font-weight: 700;
}

.footer-contact a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 0;
  padding: 0;
  color: rgba(255, 255, 255, 0.88);
  transition:
    color 180ms ease,
    opacity 180ms ease,
    text-decoration-color 180ms ease;
}

.footer-contact a:hover,
.footer-contact a:focus-visible {
  color: #dff5ff;
  opacity: 1;
  text-decoration: underline;
  text-decoration-thickness: 2px;
  text-underline-offset: 0.24rem;
}

.page-main {
  opacity: 0;
  transform: translateY(18px);
}

body.is-ready .page-main {
  opacity: 1;
  transform: translateY(0);
  transition: opacity 420ms ease, transform 420ms ease;
}

body.is-leaving .page-main {
  opacity: 0;
  transform: translateY(10px);
  transition: opacity 160ms ease, transform 160ms ease;
}

[data-reveal] {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 700ms ease, transform 700ms ease;
  transition-delay: var(--reveal-delay, 0ms);
}

[data-reveal].is-visible {
  opacity: 1;
  transform: translateY(0);
}

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

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

  [data-reveal] {
    opacity: 1;
    transform: none;
  }

  .trust-inner {
    flex-wrap: wrap;
    justify-content: center;
    gap: 0.8rem 1.15rem;
  }

  .trust-inner::before,
  .trust-inner::after {
    display: none;
  }

  .keyword-marquee {
    overflow: visible;
  }

  .keyword-marquee__track {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 0.8rem 1.15rem;
    min-width: 0;
    width: 100%;
    animation: none;
  }

  .keyword-marquee__group {
    display: contents;
    min-width: 0;
    padding-right: 0;
  }

  .page-main,
  body.is-ready .page-main,
  body.is-leaving .page-main,
  .site-header,
  .site-header.header-visible,
  .site-header.header-hidden,
  .footer-contact a {
    opacity: 1;
    transform: none;
    transition: none;
  }
}

@media (max-width: 1040px) {
  .grid-4 {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

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

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

  .split,
  .split.reverse,
  .apply-layout,
  .image-feature-inner {
    grid-template-columns: 1fr;
  }

  .split.reverse .copy-stack {
    order: 1;
  }

  .split.reverse .image-panel {
    order: 2;
  }
}

@media (max-width: 920px) {
  .nav-toggle {
    display: block;
  }

  .nav-links {
    position: absolute;
    top: calc(100% + 12px);
    right: 0;
    left: 0;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 0.25rem;
    padding: 0.8rem;
    background: rgba(6, 17, 28, 0.98);
    border: 1px solid var(--line-on-dark);
    border-radius: 28px;
    box-shadow: var(--shadow-lg);
    backdrop-filter: blur(22px);
  }

  .site-header.nav-is-open .nav-links {
    display: flex;
  }

  .nav-link,
  .nav-cta {
    padding: 0.95rem 1rem;
    text-align: left;
  }

  .nav-link[aria-current="page"]::after {
    right: auto;
    bottom: 0.62rem;
    width: 42px;
  }

  .nav-cta {
    text-align: center;
  }

  .grid-3,
  .band-inner,
  .footer-inner {
    grid-template-columns: 1fr;
  }

  .band-inner {
    gap: 1.5rem;
  }

  .footer-inner {
    gap: 1.6rem;
  }

  .footer-meta,
  .footer-contact {
    justify-items: center;
    justify-content: center;
  }

  .results-table-wrap {
    display: none;
  }

  .results-cards {
    display: grid;
  }
}

@media (max-width: 680px) {
  :root {
    --header-height: 76px;
    --header-top-offset: 0.7rem;
    --header-clearance: 1.7rem;
  }

  .nav-shell,
  .hero-inner,
  .container,
  .trust-inner,
  .footer-inner,
  .image-feature-inner {
    width: min(100% - 28px, var(--max));
  }

  .brand-domain {
    display: none;
  }

  .trust-inner::before,
  .trust-inner::after {
    width: 42px;
  }

  .hero {
    min-height: 72svh;
  }

  .hero-home {
    min-height: calc(94svh - (var(--header-height) + var(--header-top-offset)));
  }

  .hero-home,
  .hero-about,
  .hero-coaching,
  .hero-results,
  .hero-apply {
    background-position: 56% 24%;
  }

  .hero-inner {
    padding: var(--page-top-spacing) 0 3.8rem;
  }

  .hero-actions {
    display: grid;
  }

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

  .image-feature-inner,
  .section {
    padding-top: 4.4rem;
    padding-bottom: 4.4rem;
  }

  .section-head {
    margin-bottom: 2rem;
  }

  .section-head.center {
    margin-left: 0;
    margin-right: 0;
    text-align: left;
  }

  .section-head.center .section-kicker {
    justify-content: flex-start;
  }

  .section-head.center .section-kicker::before {
    display: block;
  }

  .section-head.center .section-lede {
    margin-left: 0;
    margin-right: 0;
  }

  .metrics,
  .grid-4,
  .results-spotlights,
  .results-milestones,
  .field-grid {
    grid-template-columns: 1fr;
  }

  .image-panel img,
  .image-panel.tall img {
    min-height: 360px;
  }

  .portrait-panel,
  .finish-panel {
    max-width: 100%;
  }

  .portrait-panel img,
  .finish-panel img {
    min-height: 0;
    height: auto;
    object-fit: cover;
  }

  .apply-form {
    --form-row-gap: 1.2rem;
    --form-control-gap: 0.6rem;
    padding: 1.45rem;
  }

  .result-spotlight,
  .result-card {
    padding: 1.1rem;
  }

  .result-milestone {
    grid-template-columns: 1fr;
    gap: 0.8rem;
    padding: 1rem;
  }

  .result-card-top {
    align-items: stretch;
    flex-direction: column;
  }

  .result-card-splits {
    gap: 0.7rem;
  }

  .site-header {
    top: var(--header-top-offset);
  }

  .nav-shell {
    min-height: 76px;
    padding: 0 0.8rem;
  }

  .field {
    gap: var(--form-control-gap);
  }

  .field input,
  .field select,
  .field textarea,
  .apply-form .button {
    font-size: 16px;
  }

  .footer-inner {
    gap: 1.4rem;
    padding: 1.25rem 0 1.5rem;
    text-align: center;
  }

  .band {
    background-position: 58% center;
  }

  .band-inner {
    gap: 1.25rem;
  }

  .band-inner > div {
    padding: 1rem;
    background: rgba(6, 17, 28, 0.26);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 22px;
    backdrop-filter: blur(10px);
  }

  .footer-meta {
    justify-items: center;
    gap: 0.5rem;
  }

  .footer-contact {
    display: grid;
    width: 100%;
    gap: 0.5rem;
    justify-content: center;
  }

  .footer-contact a {
    width: auto;
  }

  .result-item {
    grid-template-columns: 1fr;
    gap: 0.4rem;
  }
}

@media (max-width: 680px) {
  .hero-about,
  .hero-coaching,
  .hero-results,
  .hero-apply {
    height: 90svh;
    min-height: 90svh;
    display: grid;
    align-items: start;
    background-size: cover;
    background-position: 56% 24%;
  }

  .hero-about .hero-inner,
  .hero-coaching .hero-inner,
  .hero-results .hero-inner,
  .hero-apply .hero-inner {
    height: 100%;
    min-height: 0;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    padding: var(--page-top-spacing) 0 3.8rem;
  }
}
