@font-face {
  font-family: "Red Hat Display";
  font-style: normal;
  font-weight: 300 900;
  font-display: swap;
  src: url("fonts/RedHatDisplay-Variable.ttf") format("truetype");
}

@font-face {
  font-family: "Red Hat Text";
  font-style: normal;
  font-weight: 300 900;
  font-display: swap;
  src: url("fonts/RedHatText-Variable.ttf") format("truetype");
}

:root {
  --font-display: "Red Hat Display", "Helvetica Neue", Arial, sans-serif;
  --font-body: "Red Hat Text", "Helvetica Neue", Arial, sans-serif;
  --ink: #081427;
  --ink-2: #102746;
  --blue: #146cdd;
  --blue-deep: #0b4a9f;
  --cyan: #4adedd;
  --surface: #ffffff;
  --surface-soft: #f5f8fd;
  --surface-blue: #e9f3ff;
  --text: #1f3047;
  --muted: #5b6b82;
  --line: #d8e3f2;
  --line-dark: rgba(255, 255, 255, 0.19);
  --white: #ffffff;
  --page: min(1240px, calc(100% - 64px));
  --ease: cubic-bezier(0.16, 1, 0.3, 1);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 5.5rem;
}

body {
  margin: 0;
  color: var(--text);
  background: var(--surface);
  font-family: Inter, ui-sans-serif, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 16px;
  line-height: 1.58;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}

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

a {
  color: inherit;
}

button,
input,
textarea {
  font: inherit;
}

button {
  cursor: pointer;
}

::selection {
  color: var(--ink);
  background: var(--cyan);
}

.page-shell,
.section-shell {
  width: var(--page);
  margin-inline: auto;
}

.skip-link {
  position: fixed;
  z-index: 50;
  top: 0.75rem;
  left: 0.75rem;
  padding: 0.7rem 0.95rem;
  color: var(--ink);
  background: var(--cyan);
  border-radius: 999px;
  font-weight: 800;
  text-decoration: none;
  transform: translateY(-180%);
  transition: transform 160ms var(--ease);
}

.skip-link:focus {
  transform: translateY(0);
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1,
h2,
h3 {
  color: var(--ink);
  font-family: "Titillium Web", "Arial Narrow", "Helvetica Neue", Arial, sans-serif;
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 0.94;
  text-wrap: balance;
}

h1 {
  margin-bottom: 1.6rem;
  font-size: clamp(3.7rem, 7vw, 5.85rem);
}

h2 {
  margin-bottom: 1.25rem;
  font-size: clamp(2.5rem, 5.1vw, 4.7rem);
}

h3 {
  margin-bottom: 0.55rem;
  font-size: clamp(1.55rem, 2.5vw, 2.25rem);
}

:focus-visible {
  outline: 3px solid var(--cyan);
  outline-offset: 4px;
}

/* Shared navigation */
.site-header {
  position: sticky;
  z-index: 20;
  top: 0;
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  align-items: center;
  gap: 1.25rem;
  min-height: 5.25rem;
  padding: 0.8rem max(2rem, calc((100vw - 1240px) / 2));
  color: var(--ink);
  background: rgba(255, 255, 255, 0.96);
  border-bottom: 1px solid var(--line);
  transition: background 260ms var(--ease), border-color 260ms var(--ease);
}

.home-page .site-header {
  color: var(--white);
  background: rgba(8, 20, 39, 0.93);
  border-bottom-color: rgba(255, 255, 255, 0.12);
}

.home-page .site-header.is-scrolled {
  background: rgba(8, 20, 39, 0.99);
}

.wordmark {
  display: inline-flex;
  align-items: baseline;
  width: max-content;
  font-family: "Titillium Web", "Arial Narrow", "Helvetica Neue", Arial, sans-serif;
  font-size: 1.52rem;
  font-weight: 800;
  letter-spacing: -0.045em;
  line-height: 1;
  text-decoration: none;
}

.wordmark b {
  color: var(--cyan);
  font: inherit;
}

.header-context {
  margin: 0;
  color: var(--muted);
  font-size: 0.8rem;
  font-weight: 650;
}

.home-page .header-context {
  color: #bdd3ef;
}

.primary-nav {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 1.3rem;
  font-size: 0.88rem;
  font-weight: 720;
}

.primary-nav > a:not(.nav-cta) {
  color: inherit;
  text-decoration: none;
  opacity: 0.8;
  transition: opacity 160ms ease, color 160ms ease;
}

.primary-nav > a:not(.nav-cta):hover {
  color: var(--cyan);
  opacity: 1;
}

.nav-cta,
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.56rem;
  min-height: 3.1rem;
  padding: 0.75rem 1.1rem;
  border: 1px solid transparent;
  border-radius: 999px;
  font-size: 0.88rem;
  font-weight: 780;
  line-height: 1.15;
  text-align: center;
  text-decoration: none;
  transition: transform 180ms var(--ease), background 180ms ease, color 180ms ease, border-color 180ms ease;
}

.nav-cta {
  min-height: 2.7rem;
  color: var(--white);
  background: var(--ink);
}

.home-page .nav-cta {
  color: var(--ink);
  background: var(--cyan);
}

.nav-cta:hover,
.button:hover {
  transform: translateY(-2px);
}

.home-page .nav-cta:hover {
  background: var(--white);
}

.button-primary {
  color: var(--ink);
  background: var(--cyan);
}

.button-primary:hover {
  color: var(--white);
  background: var(--blue);
}

.text-link {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 0.46rem;
  width: max-content;
  padding-bottom: 0.24rem;
  color: var(--ink);
  font-size: 0.9rem;
  font-weight: 790;
  text-decoration: none;
}

.text-link::after {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  height: 1px;
  content: "";
  background: currentColor;
  transform: scaleX(0.34);
  transform-origin: left;
  transition: transform 190ms var(--ease);
}

.text-link:hover::after {
  transform: scaleX(1);
}

.text-link--light {
  color: var(--white);
}

/* Home: a live coaching environment */
.home-page {
  background: var(--surface-soft);
}

.training-hero {
  position: relative;
  min-height: calc(100svh - 5.25rem);
  overflow: hidden;
  color: var(--white);
  background: var(--ink);
  isolation: isolate;
}

.hero-field,
.hero-field::before,
.hero-field::after {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.hero-field {
  z-index: -1;
  overflow: hidden;
  background:
    radial-gradient(circle at 79% 40%, rgba(20, 108, 221, 0.72), transparent 30%),
    radial-gradient(circle at 28% 110%, rgba(74, 222, 221, 0.16), transparent 31%),
    var(--ink);
}

.hero-field::before {
  content: "";
  background: linear-gradient(109deg, rgba(255, 255, 255, 0.07) 0 1px, transparent 1px 100%);
  opacity: 0.55;
  transform: translateX(-40%);
}

.hero-field::after {
  content: "";
  background: radial-gradient(circle at center, transparent 0 45%, rgba(255, 255, 255, 0.05) 45.2% 45.5%, transparent 45.7%);
  transform: translate(24%, -15%) scale(1.2);
}

.hero-field__arc,
.hero-field__point {
  position: absolute;
  display: block;
}

.hero-field__arc {
  border: 1px solid rgba(74, 222, 221, 0.28);
  border-radius: 50%;
}

.hero-field__arc--one {
  top: 11%;
  right: -12rem;
  width: min(62vw, 52rem);
  aspect-ratio: 1;
}

.hero-field__arc--two {
  bottom: -19rem;
  left: -16rem;
  width: min(52vw, 41rem);
  aspect-ratio: 1;
  border-color: rgba(255, 255, 255, 0.15);
}

.hero-field__point {
  width: 0.6rem;
  aspect-ratio: 1;
  background: var(--cyan);
  border-radius: 50%;
}

.hero-field__point--one {
  top: 26%;
  left: 12%;
}

.hero-field__point--two {
  right: 46%;
  bottom: 20%;
  width: 0.38rem;
  background: var(--white);
}

.training-hero__layout {
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(23rem, 0.85fr);
  gap: clamp(2rem, 7vw, 8rem);
  align-items: center;
  min-height: calc(100svh - 10.25rem);
  padding: clamp(4rem, 7vw, 6.7rem) 0 clamp(3rem, 6vw, 5rem);
}

.training-hero__copy {
  position: relative;
  max-width: 44rem;
}

.hero-identity,
.section-signal,
.protocol-lab__caption {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  margin: 0 0 1.25rem;
  color: var(--blue-deep);
  font-size: 0.86rem;
  font-weight: 770;
  letter-spacing: 0.01em;
}

.hero-identity {
  color: var(--cyan);
}

.hero-identity span {
  color: rgba(255, 255, 255, 0.48);
}

.training-hero h1 {
  max-width: 10.4ch;
  margin-bottom: clamp(2.2rem, 4vw, 3.25rem);
  color: var(--white);
  font-size: clamp(3.9rem, 7.6vw, 6rem);
  letter-spacing: -0.04em;
}

.training-hero h1 span,
.training-hero h1 strong {
  display: block;
}

.training-hero h1 strong {
  color: var(--cyan);
  font: inherit;
}

.training-hero__bottom {
  max-width: 36rem;
}

.hero-lead {
  margin-bottom: 0.72rem;
  color: var(--white);
  font-family: "Titillium Web", "Arial Narrow", "Helvetica Neue", Arial, sans-serif;
  font-size: clamp(1.55rem, 2.25vw, 2.05rem);
  font-weight: 750;
  letter-spacing: -0.025em;
  line-height: 1.05;
}

.hero-intro {
  max-width: 34rem;
  margin-bottom: 1.9rem;
  color: #d3e4fb;
  font-size: clamp(1rem, 1.5vw, 1.14rem);
  line-height: 1.65;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 1rem 1.5rem;
}

.focus-portrait {
  position: relative;
  width: min(100%, 31rem);
  margin: 0;
  justify-self: end;
  transform: translate3d(var(--portrait-x, 0), var(--portrait-y, 0), 0);
  transition: transform 360ms var(--ease);
}

.focus-portrait__lens {
  position: relative;
  z-index: 1;
  width: 100%;
  aspect-ratio: 1;
  overflow: hidden;
  background: var(--blue);
  border-radius: 50%;
}

.focus-portrait__lens::after {
  position: absolute;
  inset: 0;
  content: "";
  background: linear-gradient(145deg, rgba(8, 20, 39, 0.06), rgba(8, 20, 39, 0.48));
  mix-blend-mode: multiply;
  pointer-events: none;
}

.focus-portrait__lens img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 51% 50%;
  filter: saturate(0.83) contrast(1.05);
  transform: scale(1.08);
}

.focus-portrait__orbit {
  position: absolute;
  z-index: 2;
  inset: -1.35rem;
  border: 1px solid rgba(74, 222, 221, 0.54);
  border-radius: 50%;
  pointer-events: none;
}

.focus-portrait__orbit::before,
.focus-portrait__orbit::after {
  position: absolute;
  width: 0.65rem;
  aspect-ratio: 1;
  content: "";
  background: var(--cyan);
  border-radius: 50%;
}

.focus-portrait__orbit::before {
  top: 13%;
  right: 7%;
}

.focus-portrait__orbit::after {
  bottom: 11%;
  left: 4%;
  width: 0.4rem;
  background: var(--white);
}

.focus-portrait__orbit span {
  position: absolute;
  color: var(--cyan);
  font-size: 0.68rem;
  font-weight: 760;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.focus-portrait__orbit span:nth-child(1) {
  top: 2%;
  left: 12%;
}

.focus-portrait__orbit span:nth-child(2) {
  right: -0.8rem;
  bottom: 23%;
}

.focus-portrait__orbit span:nth-child(3) {
  bottom: 7%;
  left: 18%;
}

.focus-portrait figcaption {
  position: relative;
  z-index: 3;
  display: grid;
  gap: 0.08rem;
  width: max-content;
  max-width: 82%;
  margin: -2.15rem 0 0 -1.2rem;
  padding: 0.9rem 1rem;
  color: var(--ink);
  background: var(--white);
  border-radius: 12px;
  font-size: 0.78rem;
}

.focus-portrait figcaption strong {
  font-size: 0.94rem;
}

.focus-portrait figcaption span {
  color: var(--muted);
}

.hero-footnote {
  position: relative;
  z-index: 1;
  display: flex;
  flex-wrap: wrap;
  gap: 0.7rem 1rem;
  align-items: center;
  padding-bottom: 1.45rem;
  color: #bdd3ef;
  font-size: 0.78rem;
  font-weight: 650;
}

.hero-footnote i {
  width: 0.36rem;
  aspect-ratio: 1;
  background: var(--cyan);
  border-radius: 50%;
}

.opening-statement {
  padding: clamp(5rem, 11vw, 9rem) 0 clamp(5.2rem, 10vw, 8rem);
  background: var(--surface);
}

.opening-statement__layout {
  display: grid;
  grid-template-columns: minmax(12rem, 0.52fr) minmax(0, 1fr);
  gap: clamp(2rem, 8vw, 10rem);
  align-items: start;
}

.opening-statement h2 {
  max-width: 13ch;
}

.opening-statement__layout > div > p {
  max-width: 42rem;
  margin-bottom: 0;
  color: var(--muted);
  font-size: clamp(1.04rem, 1.6vw, 1.22rem);
  line-height: 1.68;
}

.coaching-loop {
  position: relative;
  overflow: hidden;
  padding: clamp(5rem, 10vw, 8.6rem) 0;
  color: var(--white);
  background: var(--ink);
}

.coaching-loop::after {
  position: absolute;
  top: 15%;
  right: -11rem;
  width: min(54vw, 46rem);
  aspect-ratio: 1;
  content: "";
  border: 1px solid rgba(74, 222, 221, 0.18);
  border-radius: 50%;
  pointer-events: none;
}

.coaching-loop__header {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(13rem, 0.46fr) minmax(0, 1fr);
  column-gap: clamp(2rem, 7vw, 9rem);
  row-gap: 0;
  max-width: 68rem;
  margin-bottom: clamp(2.8rem, 6vw, 5rem);
}

.coaching-loop__header .section-signal {
  grid-row: 1 / span 2;
}

.section-signal--on-dark,
.coaching-loop .section-signal {
  color: var(--cyan);
}

.coaching-loop h2 {
  max-width: 12ch;
  color: var(--white);
}

.coaching-loop__header > p:last-child {
  max-width: 35rem;
  margin: 0;
  color: #c7d9f0;
}

.protocol-lab {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(18rem, 0.9fr);
  min-height: 31rem;
  overflow: hidden;
  background: #0e2341;
  border: 1px solid rgba(148, 185, 230, 0.27);
  border-radius: 16px;
}

.protocol-lab__display {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  min-height: 100%;
  padding: clamp(2rem, 4.8vw, 4.5rem);
  overflow: hidden;
  background: var(--blue);
}

.protocol-lab__display::before {
  position: absolute;
  top: -22%;
  right: -16%;
  width: 75%;
  aspect-ratio: 1;
  content: "";
  border: 1px solid rgba(255, 255, 255, 0.38);
  border-radius: 50%;
  transform: scale(var(--protocol-scale, 1));
  transition: transform 600ms var(--ease);
}

.protocol-lab__display > *:not(.protocol-lab__halo) {
  position: relative;
  z-index: 1;
}

.protocol-lab__halo {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  width: 48%;
  pointer-events: none;
}

.protocol-lab__halo span {
  position: absolute;
  display: block;
  aspect-ratio: 1;
  border: 1px solid rgba(74, 222, 221, 0.62);
  border-radius: 50%;
  transition: transform 600ms var(--ease), opacity 600ms var(--ease);
}

.protocol-lab__halo span:nth-child(1) {
  top: 22%;
  right: 12%;
  width: 2rem;
}

.protocol-lab__halo span:nth-child(2) {
  top: 36%;
  right: 25%;
  width: 6.5rem;
}

.protocol-lab__halo span:nth-child(3) {
  top: 16%;
  right: 41%;
  width: 1rem;
  background: var(--cyan);
  border: 0;
}

.protocol-lab[data-active-step="2"] .protocol-lab__halo span:nth-child(1) {
  transform: translate(-3rem, 6rem) scale(1.5);
}

.protocol-lab[data-active-step="2"] .protocol-lab__halo span:nth-child(2) {
  transform: translate(-5rem, -3rem) scale(0.65);
}

.protocol-lab[data-active-step="3"] .protocol-lab__halo span:nth-child(1) {
  transform: translate(-6rem, 10rem) scale(2.1);
  opacity: 0.48;
}

.protocol-lab[data-active-step="3"] .protocol-lab__halo span:nth-child(2) {
  transform: translate(-8rem, 6rem) scale(1.3);
}

.protocol-lab__caption {
  color: var(--cyan);
}

.protocol-lab__display h3 {
  max-width: 11ch;
  margin-bottom: 1rem;
  color: var(--white);
  font-size: clamp(2.3rem, 4vw, 4.2rem);
}

.protocol-lab__display > p:not(.protocol-lab__caption) {
  max-width: 33rem;
  margin-bottom: 2rem;
  color: #e7f2ff;
  font-size: clamp(1rem, 1.45vw, 1.16rem);
  line-height: 1.62;
}

.protocol-lab__readout {
  display: flex;
  flex-wrap: wrap;
  gap: 0.7rem 0.9rem;
  align-items: center;
  color: #d9ecff;
  font-size: 0.77rem;
  font-weight: 700;
}

.protocol-lab__readout i {
  width: 0.36rem;
  aspect-ratio: 1;
  background: var(--cyan);
  border-radius: 50%;
}

.protocol-lab__steps {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: clamp(1.1rem, 3vw, 2.4rem);
  margin: 0;
  list-style: none;
}

.protocol-lab__steps li + li {
  border-top: 1px solid rgba(148, 185, 230, 0.26);
}

.protocol-step {
  display: grid;
  grid-template-columns: 2.6rem minmax(0, 1fr) auto;
  gap: 0.75rem;
  align-items: center;
  width: 100%;
  padding: 1.32rem 1rem;
  color: #bdd3ef;
  background: transparent;
  border: 0;
  border-radius: 12px;
  text-align: left;
  transition: color 220ms ease, background 220ms ease, transform 220ms var(--ease);
}

.protocol-step:hover,
.protocol-step.is-active {
  color: var(--white);
  background: rgba(255, 255, 255, 0.1);
}

.protocol-step:hover {
  transform: translateX(4px);
}

.protocol-step > span {
  color: var(--cyan);
  font-size: 0.75rem;
  font-weight: 780;
}

.protocol-step strong {
  font-family: "Titillium Web", "Arial Narrow", "Helvetica Neue", Arial, sans-serif;
  font-size: clamp(1.25rem, 2vw, 1.7rem);
  letter-spacing: -0.025em;
  line-height: 1.02;
}

.protocol-step i {
  color: var(--cyan);
  font-size: 1.25rem;
  font-style: normal;
  opacity: 0;
  transform: translateX(-0.3rem);
  transition: opacity 190ms ease, transform 190ms var(--ease);
}

.protocol-step.is-active i {
  opacity: 1;
  transform: translateX(0);
}

.protocol-note {
  position: relative;
  z-index: 1;
  max-width: 45rem;
  margin: 1.15rem 0 0 auto;
  color: #9db8d8;
  font-size: 0.78rem;
  text-align: right;
}

.outcomes-section {
  position: relative;
  overflow: hidden;
  padding: clamp(5.4rem, 10vw, 8.8rem) 0;
  color: var(--white);
  background: var(--blue);
}

.outcomes-section__light {
  position: absolute;
  top: -21rem;
  right: -7rem;
  width: min(61vw, 55rem);
  aspect-ratio: 1;
  border: 1px solid rgba(255, 255, 255, 0.42);
  border-radius: 50%;
}

.outcomes-section__light::after {
  position: absolute;
  top: 24%;
  left: 24%;
  width: 0.75rem;
  aspect-ratio: 1;
  content: "";
  background: var(--cyan);
  border-radius: 50%;
}

.outcomes-layout {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(18rem, 0.85fr);
  gap: clamp(3rem, 10vw, 11rem);
  align-items: end;
}

.outcomes-section .section-signal {
  color: var(--cyan);
}

.outcomes-section h2 {
  max-width: 11ch;
  margin-bottom: 0;
  color: var(--white);
}

.outcomes-section ul {
  padding: 0;
  margin: 0;
  list-style: none;
  border-top: 1px solid var(--line-dark);
}

.outcomes-section li {
  position: relative;
  padding: 1.15rem 0 1.15rem 1.35rem;
  border-bottom: 1px solid var(--line-dark);
  color: #eff8ff;
  font-size: clamp(1rem, 1.45vw, 1.15rem);
  line-height: 1.4;
}

.outcomes-section li::before {
  position: absolute;
  top: 1.72rem;
  left: 0;
  width: 0.44rem;
  aspect-ratio: 1;
  content: "";
  background: var(--cyan);
  border-radius: 50%;
}

.coach-section {
  padding: clamp(5.5rem, 11vw, 9.3rem) 0;
  background: var(--surface);
}

.coach-layout {
  display: grid;
  grid-template-columns: minmax(15rem, 0.72fr) minmax(0, 1fr);
  gap: clamp(3rem, 10vw, 12rem);
  align-items: start;
}

.coach-mark {
  position: relative;
}

.coach-mark::after {
  position: absolute;
  top: -3rem;
  left: -3.7rem;
  z-index: 0;
  width: min(20vw, 14rem);
  aspect-ratio: 1;
  content: "";
  background: var(--surface-blue);
  border-radius: 50%;
}

.coach-mark > * {
  position: relative;
  z-index: 1;
}

.coach-mark h2 {
  max-width: 5ch;
  margin-bottom: 0;
  font-size: clamp(3.8rem, 6.6vw, 6rem);
}

.coach-copy {
  padding-top: 1.55rem;
}

.coach-lead {
  max-width: 44rem;
  margin-bottom: 2.5rem;
  color: #354963;
  font-size: clamp(1.17rem, 1.8vw, 1.45rem);
  line-height: 1.56;
}

.credentials {
  display: grid;
  gap: 0;
  max-width: 40rem;
  padding: 0;
  margin: 0 0 2rem;
  list-style: none;
  border-top: 1px solid var(--line);
}

.credentials li {
  padding: 0.83rem 0;
  border-bottom: 1px solid var(--line);
  color: var(--ink-2);
  font-size: 0.94rem;
  font-weight: 690;
}

.offer-section {
  padding: clamp(5.5rem, 10vw, 8.6rem) 0;
  background: var(--surface-soft);
}

.offer-heading {
  display: grid;
  grid-template-columns: minmax(13rem, 0.5fr) minmax(0, 1fr);
  gap: clamp(2rem, 8vw, 10rem);
  align-items: start;
  margin-bottom: clamp(2.5rem, 5vw, 4rem);
}

.offer-heading h2 {
  max-width: 13ch;
  margin-bottom: 0;
}

.offer-sheet {
  display: grid;
  grid-template-columns: minmax(15rem, 0.64fr) minmax(0, 1fr);
  overflow: hidden;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 16px;
}

.offer-price {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  min-height: 25rem;
  padding: clamp(2rem, 4.4vw, 4rem);
  overflow: hidden;
  color: var(--white);
  background: var(--ink);
}

.offer-price::after {
  position: absolute;
  right: -8rem;
  bottom: -12rem;
  width: 25rem;
  aspect-ratio: 1;
  content: "";
  border: 1px solid rgba(74, 222, 221, 0.44);
  border-radius: 50%;
}

.offer-price > * {
  position: relative;
  z-index: 1;
}

.offer-price p {
  margin-bottom: 0;
  color: #c6daf4;
  font-size: 0.85rem;
  font-weight: 730;
}

.offer-price strong {
  display: block;
  margin-top: auto;
  color: var(--cyan);
  font-family: "Titillium Web", "Arial Narrow", "Helvetica Neue", Arial, sans-serif;
  font-size: clamp(4.5rem, 8vw, 7.6rem);
  font-weight: 800;
  letter-spacing: -0.04em;
  line-height: 0.8;
}

.offer-price small {
  font: inherit;
  font-size: 0.46em;
}

.offer-price > span {
  margin-top: 0.6rem;
  color: #c6daf4;
  font-size: 0.88rem;
}

.offer-details {
  padding: clamp(2rem, 4.6vw, 4rem);
}

.offer-details h3 {
  max-width: 18ch;
  margin-bottom: 1.4rem;
  font-size: clamp(1.7rem, 2.8vw, 2.65rem);
}

.offer-details ul {
  display: grid;
  gap: 0.78rem;
  padding: 0;
  margin: 0 0 2rem;
  list-style: none;
}

.offer-details li {
  position: relative;
  padding-left: 1.25rem;
  color: #40546f;
  font-size: 0.95rem;
}

.offer-details li::before {
  position: absolute;
  top: 0.59rem;
  left: 0;
  width: 0.42rem;
  aspect-ratio: 1;
  content: "";
  background: var(--blue);
  border-radius: 50%;
}

.offer-fineprint {
  max-width: 53rem;
  margin: 1.2rem 0 0 auto;
  color: var(--muted);
  font-size: 0.77rem;
  line-height: 1.58;
}

.faq-section {
  padding: clamp(5.5rem, 10vw, 8.8rem) 0;
  background: var(--surface);
}

.faq-layout {
  display: grid;
  grid-template-columns: minmax(14rem, 0.72fr) minmax(0, 1fr);
  gap: clamp(3rem, 10vw, 12rem);
}

.faq-layout h2 {
  max-width: 10ch;
}

.faq-list {
  border-top: 1px solid var(--line);
}

.faq-list details {
  border-bottom: 1px solid var(--line);
}

.faq-list summary {
  position: relative;
  padding: 1.35rem 2.8rem 1.35rem 0;
  color: var(--ink);
  cursor: pointer;
  font-family: "Titillium Web", "Arial Narrow", "Helvetica Neue", Arial, sans-serif;
  font-size: clamp(1.32rem, 2vw, 1.72rem);
  font-weight: 790;
  letter-spacing: -0.025em;
  line-height: 1.15;
  list-style: none;
}

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

.faq-list summary::after {
  position: absolute;
  top: 1.2rem;
  right: 0;
  width: 1.55rem;
  aspect-ratio: 1;
  color: var(--blue);
  content: "+";
  font-family: Arial, sans-serif;
  font-size: 1.65rem;
  font-weight: 400;
  line-height: 1;
  text-align: center;
  transition: transform 180ms var(--ease), color 180ms ease;
}

.faq-list details[open] summary::after {
  color: var(--cyan);
  transform: rotate(45deg);
}

.faq-list details p {
  max-width: 42rem;
  padding: 0 0 1.45rem;
  margin: -0.1rem 0 0;
  color: var(--muted);
  font-size: 0.96rem;
}

.guides-section {
  padding: clamp(5.4rem, 10vw, 8.5rem) 0;
  color: var(--white);
  background: var(--ink);
}

.guides-layout {
  display: grid;
  grid-template-columns: minmax(14rem, 0.7fr) minmax(0, 1fr);
  gap: clamp(3rem, 10vw, 11rem);
}

.guides-section h2 {
  max-width: 9ch;
  margin-bottom: 0;
  color: var(--white);
}

.guides-list {
  padding: 0;
  margin: 0;
  list-style: none;
  border-top: 1px solid var(--line-dark);
}

.guides-list li {
  border-bottom: 1px solid var(--line-dark);
}

.guides-list a {
  display: grid;
  grid-template-columns: minmax(8rem, 0.46fr) minmax(0, 1fr) auto;
  gap: 1rem;
  align-items: center;
  padding: 1.38rem 0;
  color: var(--white);
  text-decoration: none;
}

.guides-list span {
  color: var(--cyan);
  font-size: 0.77rem;
  font-weight: 730;
}

.guides-list strong {
  font-family: "Titillium Web", "Arial Narrow", "Helvetica Neue", Arial, sans-serif;
  font-size: clamp(1.2rem, 1.8vw, 1.55rem);
  letter-spacing: -0.02em;
  line-height: 1.15;
}

.guides-list i {
  color: var(--cyan);
  font-size: 1.3rem;
  font-style: normal;
  transition: transform 180ms var(--ease);
}

.guides-list a:hover i {
  transform: translateX(4px);
}

.contact-section {
  position: relative;
  overflow: hidden;
  padding: clamp(5.5rem, 10vw, 8.7rem) 0;
  color: var(--white);
  background: var(--blue);
}

.contact-section__orb {
  position: absolute;
  right: -10rem;
  bottom: -12rem;
  width: min(58vw, 49rem);
  aspect-ratio: 1;
  border: 1px solid rgba(255, 255, 255, 0.42);
  border-radius: 50%;
}

.contact-section__orb::before {
  position: absolute;
  top: 13%;
  left: 8%;
  width: 1rem;
  aspect-ratio: 1;
  content: "";
  background: var(--cyan);
  border-radius: 50%;
}

.contact-layout {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(13rem, 0.76fr) minmax(20rem, 0.9fr);
  gap: clamp(3rem, 10vw, 11rem);
  align-items: start;
}

.contact-copy h2 {
  max-width: 10ch;
  color: var(--white);
}

.contact-copy > p:not(.section-signal):not(.contact-fineprint) {
  max-width: 30rem;
  color: #e8f3ff;
  font-size: 1.05rem;
}

.contact-copy .contact-fineprint {
  max-width: 29rem;
  margin: 2.5rem 0 0;
  color: #cfe5ff;
  font-size: 0.79rem;
  line-height: 1.55;
}

.application-form {
  padding: clamp(1.5rem, 3.2vw, 2.7rem);
  color: var(--text);
  background: var(--white);
  border-radius: 16px;
}

.form-trap {
  position: absolute;
  left: -10000px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

.form-field {
  display: grid;
  gap: 0.46rem;
  margin-bottom: 1.13rem;
}

.form-field label,
.consent-field {
  color: var(--ink-2);
  font-size: 0.82rem;
  font-weight: 750;
}

.form-field input,
.form-field textarea {
  width: 100%;
  padding: 0.78rem 0.9rem;
  color: var(--text);
  background: #fbfcff;
  border: 1px solid #b9cce3;
  border-radius: 10px;
  outline: none;
  transition: border-color 160ms ease, box-shadow 160ms ease;
}

.form-field textarea {
  min-height: 8.5rem;
  resize: vertical;
}

.form-field input:focus,
.form-field textarea:focus {
  border-color: var(--blue);
  box-shadow: 0 0 0 3px rgba(20, 108, 221, 0.18);
}

.form-field input[aria-invalid="true"],
.form-field textarea[aria-invalid="true"],
.consent-field input[aria-invalid="true"] {
  border-color: #b22142;
}

.consent-field {
  display: flex;
  gap: 0.65rem;
  align-items: flex-start;
  margin: 0.15rem 0 1.35rem;
  color: var(--muted);
  font-weight: 500;
  line-height: 1.45;
}

.consent-field input {
  flex: 0 0 auto;
  width: 1rem;
  height: 1rem;
  margin: 0.15rem 0 0;
  accent-color: var(--blue);
}

.consent-field a,
.noscript-note a {
  color: var(--blue-deep);
}

.application-form .button {
  width: 100%;
}

.form-status {
  min-height: 1.5rem;
  margin: 0.85rem 0 0;
  color: var(--muted);
  font-size: 0.82rem;
}

.form-status.is-error {
  color: #a82441;
}

.form-status.is-success {
  color: #057354;
}

.form-status.is-pending {
  color: var(--blue-deep);
}

.noscript-note {
  margin: 1rem 0 0;
  color: var(--muted);
  font-size: 0.82rem;
}

.site-footer {
  padding: 1.9rem 0 2.3rem;
  color: #d7e7fb;
  background: #050d1a;
}

.footer-layout {
  display: grid;
  grid-template-columns: minmax(12rem, 1fr) auto auto;
  gap: 2rem;
  align-items: end;
}

.footer-mark {
  color: var(--white);
  font-size: 1.32rem;
}

.footer-layout > div > p,
.footer-note {
  margin: 0.6rem 0 0;
  color: #91aaca;
  font-size: 0.76rem;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 1rem;
}

.footer-links a {
  color: #d7e7fb;
  font-size: 0.78rem;
  text-decoration: none;
}

.footer-links a:hover {
  color: var(--cyan);
  text-decoration: underline;
  text-underline-offset: 0.18rem;
}

/* Legal pages */
.legal-page {
  background: var(--surface-soft);
}

.legal-page .site-header,
.article-page .site-header {
  position: static;
}

.site-header > .nav-cta {
  grid-column: 3;
}

.legal-content {
  width: min(780px, calc(100% - 48px));
  padding: clamp(3.5rem, 8vw, 7rem) 0;
  margin: 0 auto;
}

.legal-content h1 {
  margin-bottom: 2rem;
}

.legal-content h2 {
  margin: 2.2rem 0 0.75rem;
  font-size: clamp(1.55rem, 2.4vw, 2.1rem);
}

.legal-content p,
.legal-content li {
  color: #43546b;
}

.legal-content a,
.article-body a,
.article-footer a {
  color: var(--blue-deep);
}

.legal-alert {
  padding: 1.25rem 1.35rem;
  margin-top: 2.4rem;
  color: #23425e;
  background: var(--surface-blue);
  border: 1px solid #a9c8ee;
  border-radius: 12px;
  font-size: 0.9rem;
}

.legal-footnote {
  color: var(--muted);
  font-size: 0.83rem;
}

/* Search guides */
.article-page {
  background: var(--surface);
}

.article-shell {
  width: min(1120px, calc(100% - 64px));
  padding: clamp(3rem, 7vw, 6.5rem) 0;
  margin: 0 auto;
}

.article-hero {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 3rem;
  padding-bottom: clamp(3rem, 6vw, 5rem);
  border-bottom: 1px solid var(--line);
}

.section-label {
  margin-bottom: 1rem;
  color: var(--blue-deep);
  font-size: 0.8rem;
  font-weight: 730;
}

.article-hero h1 {
  max-width: 13ch;
  margin-bottom: 1.25rem;
  font-size: clamp(3rem, 6.2vw, 5.5rem);
}

.article-hero h1 em {
  color: var(--blue);
  font-style: italic;
}

.article-hero .article-lead {
  max-width: 40rem;
  margin: 0;
  color: var(--muted);
  font-size: 1.08rem;
}

.article-meta {
  display: grid;
  gap: 0.8rem;
  min-width: 12rem;
  padding: 0;
  margin: 0;
}

.article-meta div {
  padding-bottom: 0.75rem;
  border-bottom: 1px solid var(--line);
}

.article-meta dt {
  margin-bottom: 0.2rem;
  color: var(--muted);
  font-size: 0.72rem;
  font-weight: 700;
}

.article-meta dd {
  margin: 0;
  color: var(--ink);
  font-size: 0.88rem;
  font-weight: 670;
}

.article-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(13rem, 0.32fr);
  gap: clamp(3rem, 8vw, 8rem);
  padding-top: clamp(3rem, 6vw, 5rem);
}

.article-body {
  max-width: 44rem;
}

.article-body > * + * {
  margin-top: 1.4rem;
}

.article-body h2 {
  margin-top: 3rem;
  font-size: clamp(1.9rem, 3.25vw, 2.85rem);
}

.article-body h3 {
  margin-top: 2.1rem;
  font-size: 1.55rem;
}

.article-body p,
.article-body li {
  color: #46576c;
}

.article-body ul,
.article-body ol {
  padding-left: 1.25rem;
}

.article-body li + li {
  margin-top: 0.55rem;
}

.article-callout {
  padding: 1.5rem 1.6rem;
  margin-top: 2rem;
  background: var(--surface-blue);
  border-radius: 12px;
}

.article-callout strong {
  color: var(--ink);
}

.article-callout p {
  margin: 0.45rem 0 0;
}

.article-side {
  align-self: start;
}

.article-side > div {
  padding: 1.3rem;
  background: var(--surface-soft);
  border-radius: 12px;
}

.article-side > div + div {
  margin-top: 1rem;
}

.article-side p {
  color: var(--muted);
  font-size: 0.87rem;
}

.article-side .text-link {
  font-size: 0.84rem;
}

.article-footer {
  width: min(1120px, calc(100% - 64px));
  padding: 1.5rem 0 2.3rem;
  margin: 0 auto;
  border-top: 1px solid var(--line);
  color: var(--muted);
  font-size: 0.82rem;
}

@media (prefers-reduced-motion: no-preference) {
  .home-page.is-ready .training-hero__copy {
    animation: hero-copy-in 740ms var(--ease) both;
  }

  .home-page.is-ready .focus-portrait {
    animation: portrait-in 980ms 90ms var(--ease) both;
  }

  .home-page.is-ready .focus-portrait__orbit {
    animation: orbit-turn 26s linear infinite;
  }

  .home-page.is-ready .focus-portrait__orbit span {
    animation: orbit-counterturn 26s linear infinite;
  }

  .home-page.is-ready .hero-field__point--one {
    animation: point-breathe 3.2s ease-in-out infinite;
  }

  .home-page.is-ready .hero-field__point--two {
    animation: point-breathe 3.2s 1.2s ease-in-out infinite;
  }
}

@keyframes hero-copy-in {
  from {
    opacity: 0;
    transform: translateY(1.4rem);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes portrait-in {
  from {
    opacity: 0;
    transform: translate(2rem, 1.2rem) scale(0.96);
  }
  to {
    opacity: 1;
    transform: translate3d(var(--portrait-x, 0), var(--portrait-y, 0), 0);
  }
}

@keyframes orbit-turn {
  to { transform: rotate(360deg); }
}

@keyframes orbit-counterturn {
  to { transform: rotate(-360deg); }
}

@keyframes point-breathe {
  50% { transform: scale(1.8); }
}

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

  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
  }
}

@media (max-width: 960px) {
  :root {
    --page: min(100% - 44px, 760px);
  }

  .site-header {
    padding-inline: 1.35rem;
  }

  .header-context,
  .primary-nav > a:not(.nav-cta) {
    display: none;
  }

  .primary-nav {
    gap: 0;
  }

  .training-hero__layout,
  .opening-statement__layout,
  .outcomes-layout,
  .coach-layout,
  .faq-layout,
  .guides-layout,
  .contact-layout {
    grid-template-columns: 1fr;
  }

  .training-hero__layout {
    gap: 4.5rem;
    min-height: auto;
  }

  .focus-portrait {
    width: min(34rem, 84%);
    justify-self: end;
  }

  .opening-statement__layout,
  .coach-layout,
  .faq-layout,
  .guides-layout,
  .contact-layout {
    gap: 2.8rem;
  }

  .opening-statement h2,
  .faq-layout h2,
  .guides-section h2,
  .contact-copy h2 {
    max-width: 12ch;
  }

  .coaching-loop__header {
    grid-template-columns: 1fr;
    gap: 0;
  }

  .coaching-loop__header .section-signal {
    grid-row: auto;
  }

  .coaching-loop__header > p:last-child {
    margin-top: 0.35rem;
  }

  .protocol-lab {
    grid-template-columns: 1fr;
    min-height: 0;
  }

  .protocol-lab__display {
    min-height: 25rem;
  }

  .protocol-lab__steps {
    padding-block: 0.6rem;
  }

  .outcomes-layout {
    gap: 3rem;
  }

  .outcomes-section h2 {
    max-width: 13ch;
  }

  .coach-copy {
    padding-top: 0;
  }

  .offer-heading {
    grid-template-columns: 1fr;
    gap: 0.2rem;
  }

  .offer-sheet {
    grid-template-columns: 1fr;
  }

  .offer-price {
    min-height: 16rem;
  }

  .offer-price strong {
    margin-top: 1.8rem;
  }

  .offer-fineprint {
    margin-left: 0;
  }

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

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

  .article-side {
    max-width: 28rem;
  }
}

@media (max-width: 580px) {
  :root {
    --page: calc(100% - 32px);
  }

  body {
    font-size: 15px;
  }

  .site-header {
    min-height: 4.7rem;
    padding: 0.74rem 1rem;
  }

  .wordmark {
    font-size: 1.34rem;
  }

  .nav-cta {
    min-height: 2.52rem;
    padding: 0.57rem 0.74rem;
    font-size: 0.72rem;
  }

  .training-hero {
    min-height: auto;
  }

  .training-hero__layout {
    gap: 3.8rem;
    padding: 3.6rem 0 3.2rem;
  }

  .training-hero h1 {
    max-width: 9.7ch;
    font-size: clamp(3.45rem, 14vw, 4.8rem);
  }

  .hero-identity,
  .section-signal,
  .protocol-lab__caption {
    font-size: 0.78rem;
  }

  .hero-actions {
    align-items: stretch;
  }

  .hero-actions .button {
    width: 100%;
  }

  .focus-portrait {
    width: min(100%, 28rem);
    margin-right: -0.3rem;
  }

  .focus-portrait__orbit {
    inset: -0.85rem;
  }

  .focus-portrait__orbit span {
    font-size: 0.57rem;
  }

  .focus-portrait figcaption {
    margin: -1.7rem 0 0 -0.4rem;
    padding: 0.75rem 0.85rem;
  }

  .hero-footnote {
    display: grid;
    grid-template-columns: 1fr;
    gap: 0.25rem;
    padding-bottom: 1.2rem;
  }

  .hero-footnote i {
    display: none;
  }

  .opening-statement,
  .coaching-loop,
  .outcomes-section,
  .coach-section,
  .offer-section,
  .faq-section,
  .guides-section,
  .contact-section {
    padding-block: 4.6rem;
  }

  h2 {
    font-size: clamp(2.45rem, 11.5vw, 3.5rem);
  }

  .protocol-lab {
    width: calc(100% + 2px);
    margin-left: -1px;
    border-radius: 14px;
  }

  .protocol-lab__display {
    min-height: 24rem;
    padding: 1.65rem;
  }

  .protocol-lab__display h3 {
    font-size: clamp(2.2rem, 11vw, 3.3rem);
  }

  .protocol-lab__halo {
    right: -5%;
    width: 55%;
  }

  .protocol-step {
    grid-template-columns: 2rem minmax(0, 1fr) auto;
    gap: 0.55rem;
    padding: 1.15rem 0.65rem;
  }

  .protocol-step strong {
    font-size: 1.25rem;
  }

  .protocol-note {
    margin-top: 1rem;
    text-align: left;
  }

  .coach-mark::after {
    top: -1.8rem;
    left: -1.6rem;
    width: 9rem;
  }

  .coach-mark h2 {
    font-size: clamp(3.9rem, 17vw, 5rem);
  }

  .offer-sheet {
    border-radius: 14px;
  }

  .offer-price {
    min-height: 14rem;
    padding: 1.65rem;
  }

  .offer-price strong {
    font-size: 4.7rem;
  }

  .offer-details {
    padding: 1.65rem;
  }

  .guides-list a {
    grid-template-columns: 1fr auto;
    gap: 0.38rem 0.9rem;
  }

  .guides-list span {
    grid-column: 1 / -1;
  }

  .guides-list strong {
    font-size: 1.18rem;
  }

  .application-form {
    padding: 1.3rem;
    border-radius: 14px;
  }

  .footer-layout {
    grid-template-columns: 1fr;
    gap: 1.35rem;
    align-items: start;
  }

  .footer-links {
    justify-content: flex-start;
  }

  .footer-note {
    margin-top: 0;
  }

  .legal-content,
  .article-shell,
  .article-footer {
    width: calc(100% - 32px);
  }

  .article-meta {
    grid-template-columns: 1fr;
    max-width: 14rem;
  }
}

/* Quiet studio direction: calm, human, and intentionally low-noise. */
:root {
  --ink: #10233b;
  --ink-2: #29415d;
  --blue: #245f9d;
  --blue-deep: #1c4d80;
  --cyan: #75c8cc;
  --surface-soft: #f4f7fa;
  --surface-blue: #e7eef6;
  --text: #263c55;
  --muted: #5d6d7e;
  --line: #d9e2eb;
}

body,
.home-page {
  background: var(--surface);
}

.home-page .site-header,
.home-page .site-header.is-scrolled {
  color: var(--ink);
  background: rgba(255, 255, 255, 0.97);
  border-bottom-color: var(--line);
}

.home-page .header-context {
  color: var(--muted);
}

.wordmark b,
.home-page .primary-nav > a:not(.nav-cta):hover {
  color: var(--blue);
}

.home-page .nav-cta,
.home-page .nav-cta:hover {
  color: var(--white);
  background: var(--ink);
}

.home-page .nav-cta:hover,
.button-primary:hover {
  background: var(--blue-deep);
}

.button-primary {
  color: var(--white);
  background: var(--blue);
}

.nav-cta:hover,
.button:hover {
  transform: none;
}

.training-hero {
  min-height: auto;
  color: var(--ink);
  background: var(--surface-soft);
}

.hero-field,
.focus-portrait__orbit {
  display: none;
}

.training-hero__layout {
  grid-template-columns: minmax(0, 1.16fr) minmax(19rem, 0.72fr);
  gap: clamp(3rem, 7vw, 7rem);
  min-height: 0;
  padding: clamp(5rem, 9vw, 8.2rem) 0 clamp(3.5rem, 6vw, 5.4rem);
}

.training-hero__copy {
  max-width: 42rem;
}

.hero-identity {
  margin-bottom: 1.05rem;
  color: var(--blue-deep);
  font-size: 0.79rem;
  font-weight: 720;
}

.hero-identity span {
  color: #9aacbd;
}

.training-hero h1 {
  max-width: 10.8ch;
  margin-bottom: clamp(1.8rem, 3.5vw, 2.7rem);
  color: var(--ink);
  font-size: clamp(3.65rem, 6.7vw, 5.45rem);
  letter-spacing: -0.035em;
  line-height: 0.98;
}

.training-hero h1 strong {
  color: var(--blue);
}

.hero-lead {
  color: var(--ink);
  font-size: clamp(1.4rem, 2vw, 1.8rem);
  font-weight: 700;
  line-height: 1.1;
}

.hero-intro {
  color: var(--muted);
}

.text-link--light {
  color: var(--ink);
}

.focus-portrait {
  width: min(100%, 27rem);
  justify-self: end;
  transform: none !important;
  transition: none;
}

.focus-portrait__lens {
  aspect-ratio: 4 / 5;
  background: #dce6f1;
  border-radius: 14px;
}

.focus-portrait__lens::after {
  display: none;
}

.focus-portrait__lens img {
  filter: saturate(0.92) contrast(1.01);
  transform: none;
}

.focus-portrait figcaption {
  display: flex;
  flex-wrap: wrap;
  gap: 0.35rem 0.7rem;
  width: auto;
  max-width: none;
  margin: 0.85rem 0 0;
  padding: 0;
  color: var(--ink);
  background: transparent;
  border-radius: 0;
  font-size: 0.78rem;
}

.focus-portrait figcaption strong {
  font-size: inherit;
}

.focus-portrait figcaption span {
  color: var(--muted);
}

.hero-footnote {
  gap: 0.75rem 1rem;
  padding: 1.2rem 0 1.55rem;
  color: var(--muted);
  border-top: 1px solid var(--line);
  font-size: 0.78rem;
}

.hero-footnote i {
  background: var(--blue);
}

.opening-statement {
  padding-block: clamp(5.8rem, 10vw, 8.4rem);
}

.opening-statement h2,
.coaching-loop h2,
.outcomes-section h2,
.coach-mark h2,
.offer-heading h2,
.faq-layout h2,
.contact-copy h2 {
  letter-spacing: -0.028em;
}

.opening-statement__layout > div > p {
  color: var(--muted);
}

.section-signal,
.hero-identity,
.protocol-lab__caption {
  letter-spacing: 0;
}

.coaching-loop {
  padding-block: clamp(5.8rem, 9vw, 8rem);
  color: var(--ink);
  background: #edf2f7;
}

.coaching-loop::after,
.outcomes-section__light,
.coach-mark::after,
.offer-price::after,
.contact-section__orb {
  display: none;
}

.coaching-loop__header {
  grid-template-columns: minmax(13rem, 0.38fr) minmax(0, 1fr);
  column-gap: clamp(2rem, 7vw, 7.5rem);
  max-width: 72rem;
  margin-bottom: clamp(2.5rem, 5vw, 4rem);
}

.coaching-loop .section-signal,
.section-signal--on-dark,
.outcomes-section .section-signal {
  color: var(--blue-deep);
}

.coaching-loop h2 {
  color: var(--ink);
}

.coaching-loop__header > p:last-child {
  color: var(--muted);
}

.protocol-lab {
  min-height: 0;
  background: var(--white);
  border-color: var(--line);
  border-radius: 14px;
}

.protocol-lab__display {
  min-height: 25rem;
  background: #e5edf6;
}

.protocol-lab__display::before,
.protocol-lab__halo {
  display: none;
}

.protocol-lab__caption {
  color: var(--blue-deep);
}

.protocol-lab__display h3 {
  color: var(--ink);
  font-size: clamp(2.2rem, 3.6vw, 3.8rem);
}

.protocol-lab__display > p:not(.protocol-lab__caption) {
  color: var(--muted);
}

.protocol-lab__readout {
  color: var(--blue-deep);
}

.protocol-lab__readout i {
  background: var(--blue);
}

.protocol-step > span {
  color: var(--blue);
}

.protocol-lab__steps li + li {
  border-top-color: var(--line);
}

.protocol-step {
  color: var(--text);
  border-radius: 8px;
  transition: color 160ms ease, background 160ms ease;
}

.protocol-step:hover,
.protocol-step.is-active {
  color: var(--ink);
  background: #f1f5f9;
  transform: none;
}

.protocol-step strong {
  font-size: clamp(1.2rem, 1.8vw, 1.5rem);
}

.protocol-step.is-active strong,
.protocol-step i {
  color: var(--blue-deep);
}

.protocol-step i {
  opacity: 1;
  transform: none;
}

.protocol-note {
  margin: 1rem 0 0;
  color: var(--muted);
  text-align: left;
}

.outcomes-section {
  padding-block: clamp(5.8rem, 9vw, 8rem);
  color: var(--ink);
  background: #dfe9f3;
}

.outcomes-section h2 {
  color: var(--ink);
}

.outcomes-section ul {
  border-top-color: rgba(38, 60, 85, 0.18);
}

.outcomes-section li {
  color: var(--text);
  border-bottom-color: rgba(38, 60, 85, 0.18);
}

.outcomes-section li::before,
.offer-details li::before {
  background: var(--blue);
}

.coach-section {
  padding-block: clamp(5.8rem, 10vw, 8.8rem);
}

.coach-mark h2 {
  font-size: clamp(3.5rem, 5.9vw, 5.45rem);
}

.coach-lead {
  color: var(--text);
}

.offer-section {
  background: #f4f7fa;
}

.offer-sheet {
  border-color: var(--line);
  border-radius: 14px;
}

.offer-price {
  min-height: 22rem;
  color: var(--white);
  background: #183553;
}

.offer-price p,
.offer-price > span {
  color: #d3dfeb;
}

.offer-price strong {
  color: var(--white);
  font-size: clamp(4.1rem, 7vw, 6.3rem);
}

.offer-details li {
  color: var(--text);
}

.faq-list summary::after {
  color: var(--blue-deep);
}

.faq-list details[open] summary::after {
  color: var(--blue);
}

.guides-section {
  background: #183553;
}

.guides-list span,
.guides-list i,
.footer-links a:hover {
  color: var(--cyan);
}

.contact-section {
  padding-block: clamp(5.8rem, 9vw, 8rem);
  color: var(--ink);
  background: #e8f0f7;
}

.contact-copy h2 {
  color: var(--ink);
}

.contact-copy > p:not(.section-signal):not(.contact-fineprint),
.contact-copy .contact-fineprint {
  color: var(--muted);
}

.application-form {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 14px;
}

.site-footer {
  background: #10233b;
}

@media (prefers-reduced-motion: no-preference) {
  .home-page.is-ready .training-hero__copy,
  .home-page.is-ready .focus-portrait,
  .home-page.is-ready .focus-portrait__orbit,
  .home-page.is-ready .focus-portrait__orbit span,
  .home-page.is-ready .hero-field__point--one,
  .home-page.is-ready .hero-field__point--two {
    animation: none;
  }
}

@media (max-width: 960px) {
  .training-hero__layout {
    grid-template-columns: 1fr;
    gap: 3rem;
    padding-block: 4.8rem 3rem;
  }

  .focus-portrait {
    width: min(100%, 31rem);
    justify-self: start;
  }

  .coaching-loop__header {
    grid-template-columns: 1fr;
    gap: 0;
  }

  .protocol-lab__display {
    min-height: 21rem;
  }
}

@media (max-width: 580px) {
  .training-hero__layout {
    gap: 2.6rem;
    padding-block: 3.8rem 2.7rem;
  }

  .training-hero h1 {
    max-width: 10ch;
    font-size: clamp(3.15rem, 13vw, 4.3rem);
  }

  .focus-portrait {
    width: 100%;
  }

  .focus-portrait__lens {
    aspect-ratio: 4 / 5;
  }

  .hero-footnote {
    padding-bottom: 1.2rem;
  }

  .protocol-lab,
  .offer-sheet,
  .application-form {
    border-radius: 12px;
  }

  .protocol-lab__display {
    min-height: 19rem;
  }
}

/* Offer clarity: a self-hosted type system with a calmer, more human cadence. */
body {
  font-family: var(--font-body);
}

h1,
h2,
h3,
.wordmark,
.hero-lead,
.protocol-step strong,
.offer-price strong,
.faq-list summary,
.guides-list strong {
  font-family: var(--font-display);
}

h1,
h2,
h3 {
  font-weight: 700;
  letter-spacing: -0.028em;
}

.wordmark {
  font-weight: 760;
  letter-spacing: -0.052em;
}

.training-hero h1 {
  max-width: 11.5ch;
  font-weight: 700;
}

.hero-lead {
  font-weight: 650;
}

.hero-credentials {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem 1.35rem;
  padding: 0;
  margin: 0 0 1.85rem;
  color: var(--text);
  list-style: none;
}

.hero-credentials li {
  display: grid;
  gap: 0.12rem;
  padding-left: 0.78rem;
  border-left: 1px solid #b8c8da;
  font-size: 0.78rem;
  line-height: 1.32;
}

.hero-credentials strong {
  color: var(--ink);
  font-size: 0.83rem;
  font-weight: 700;
}

.hero-credentials span {
  color: var(--muted);
}

@media (max-width: 580px) {
  .training-hero h1 {
    max-width: 9.2ch;
  }

  .hero-credentials {
    display: grid;
    gap: 0.65rem;
  }
}
