:root {
  color-scheme: dark;
  --bg: #05080d;
  --surface: #0a111b;
  --surface-raised: #0e1724;
  --line: rgba(225, 232, 241, 0.12);
  --line-soft: rgba(225, 232, 241, 0.07);
  --text: #f3f5f8;
  --muted: #98a5b6;
  --gold: #dfb64e;
  --gold-bright: #f0ca6a;
  --red: #ff6274;
  --green: #43d892;
  --cyan: #62cfee;
  --shell: 1180px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  background: var(--bg);
}

body {
  margin: 0;
  min-width: 320px;
  overflow-x: hidden;
  background: var(--bg);
  color: var(--text);
  font-family: Inter, ui-sans-serif, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 16px;
  line-height: 1.5;
  letter-spacing: 0;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}

button,
a {
  font: inherit;
}

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

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

button {
  border: 0;
}

.shell {
  width: min(var(--shell), calc(100% - 48px));
  margin-inline: auto;
}

.site-header {
  position: fixed;
  z-index: 100;
  top: 16px;
  left: 50%;
  display: grid;
  width: min(var(--shell), calc(100% - 48px));
  min-height: 70px;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 24px;
  padding: 10px 12px 10px 18px;
  transform: translateX(-50%);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 8px;
  background: rgba(5, 8, 13, 0.78);
  box-shadow: 0 20px 54px rgba(0, 0, 0, 0.34);
  -webkit-backdrop-filter: blur(20px);
  backdrop-filter: blur(20px);
}

.brand {
  display: inline-flex;
  width: max-content;
  align-items: center;
}

.brand img {
  width: 132px;
  height: auto;
}

.desktop-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 30px;
}

.desktop-nav a,
.text-link {
  color: #b8c1ce;
  font-size: 14px;
  transition: color 180ms ease;
}

.desktop-nav a:hover,
.desktop-nav a:focus-visible,
.text-link:hover,
.text-link:focus-visible {
  color: var(--text);
}

.header-actions {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 12px;
}

.text-link {
  padding: 11px 14px;
}

.button {
  display: inline-flex;
  min-height: 52px;
  align-items: center;
  justify-content: center;
  gap: 12px;
  padding: 0 24px;
  border-radius: 6px;
  background: var(--gold);
  box-shadow: 0 14px 34px rgba(223, 182, 78, 0.2);
  color: #080a0d;
  font-size: 14px;
  font-weight: 650;
  transition: background 180ms ease, box-shadow 180ms ease, transform 180ms ease;
}

.button:hover,
.button:focus-visible {
  background: var(--gold-bright);
  box-shadow: 0 18px 44px rgba(223, 182, 78, 0.26);
  transform: translateY(-2px);
}

.button-small {
  min-height: 46px;
  padding-inline: 19px;
}

.menu-toggle {
  display: none;
  width: 44px;
  height: 44px;
  place-items: center;
  border: 1px solid var(--line);
  border-radius: 6px;
  background: var(--surface);
  color: var(--text);
  cursor: pointer;
}

.menu-toggle svg {
  width: 21px;
}

.mobile-nav {
  display: none;
}

.hero {
  position: relative;
  min-height: 900px;
  overflow: hidden;
  padding: 150px 0 44px;
  border-bottom: 1px solid var(--line-soft);
  background-image: url("assets/ryxer-coach-hero-v2.png");
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}

.hero-shade {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(5, 8, 13, 0.64) 0%, rgba(5, 8, 13, 0.78) 44%, rgba(5, 8, 13, 0.98) 100%),
    linear-gradient(90deg, rgba(5, 8, 13, 0.78), rgba(5, 8, 13, 0.18) 50%, rgba(5, 8, 13, 0.78));
}

.hero-content {
  position: relative;
}

.hero-copy {
  max-width: 820px;
  margin: 0 auto;
  text-align: center;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin: 0 0 20px;
  color: var(--gold-bright);
  font-size: 12px;
  font-weight: 650;
  text-transform: uppercase;
}

.eyebrow::before {
  width: 28px;
  height: 1px;
  background: currentColor;
  content: "";
}

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

h1 {
  margin-bottom: 20px;
  font-size: 64px;
  font-weight: 500;
  line-height: 1.04;
  letter-spacing: 0;
}

.heading-accent {
  color: var(--gold-bright);
}

.hero h1 .heading-accent,
.difference-section .heading-accent,
.final-cta .heading-accent {
  display: block;
}

.hero-lead {
  max-width: 660px;
  margin: 0 auto 30px;
  color: #bcc5d1;
  font-size: 20px;
  line-height: 1.5;
}

.hero-actions {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 22px;
}

.quiet-link {
  display: inline-flex;
  min-height: 48px;
  align-items: center;
  color: #d5dbe4;
  font-size: 14px;
  font-weight: 550;
}

.quiet-link::after {
  margin-left: 9px;
  color: var(--gold);
  content: "↓";
}

.coach-flow {
  display: grid;
  max-width: 1080px;
  min-height: 314px;
  grid-template-columns: minmax(0, 1fr) 74px 190px 74px minmax(0, 1fr);
  align-items: center;
  margin: 54px auto 0;
  padding: 28px;
  border: 1px solid rgba(220, 229, 240, 0.14);
  border-radius: 8px;
  background: rgba(5, 10, 17, 0.82);
  box-shadow: 0 40px 90px rgba(0, 0, 0, 0.48);
  -webkit-backdrop-filter: blur(18px);
  backdrop-filter: blur(18px);
}

.flow-input,
.flow-output {
  min-width: 0;
  height: 256px;
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: 7px;
  background: rgba(12, 20, 31, 0.92);
}

.flow-topline {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  margin-bottom: 18px;
  color: var(--muted);
  font-size: 12px;
  text-transform: uppercase;
}

.trade-result {
  color: var(--red);
  font-weight: 650;
}

.flow-input > strong {
  display: block;
  margin-bottom: 4px;
  font-size: 17px;
  font-weight: 520;
}

.mini-chart {
  width: 100%;
  height: 126px;
  margin-top: 8px;
}

.grid-line {
  fill: none;
  stroke: rgba(255, 255, 255, 0.08);
  stroke-width: 1;
}

.market-line {
  fill: none;
  stroke: var(--cyan);
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 2.4;
}

.entry-point {
  fill: var(--gold-bright);
  stroke: rgba(255, 255, 255, 0.8);
  stroke-width: 2;
}

.loss-line {
  fill: none;
  stroke: var(--red);
  stroke-dasharray: 5 5;
  stroke-width: 2;
}

.flow-note {
  color: var(--red);
  font-size: 12px;
}

.flow-connector {
  display: flex;
  align-items: center;
  color: var(--gold);
}

.flow-connector span {
  width: 100%;
  height: 1px;
  background: linear-gradient(90deg, rgba(223, 182, 78, 0.1), rgba(223, 182, 78, 0.72));
}

.flow-connector i {
  font-style: normal;
}

.coach-core {
  position: relative;
  display: grid;
  height: 190px;
  place-items: center;
}

.coach-orbit {
  position: relative;
  z-index: 2;
  display: grid;
  width: 164px;
  height: 164px;
  place-items: center;
  border-radius: 50%;
  background:
    linear-gradient(var(--surface), var(--surface)) padding-box,
    conic-gradient(var(--gold), var(--cyan), var(--green), var(--gold)) border-box;
  border: 1px solid transparent;
  box-shadow:
    0 0 0 12px rgba(223, 182, 78, 0.04),
    0 24px 48px rgba(0, 0, 0, 0.4);
  text-align: center;
}

.coach-orbit span,
.coach-orbit strong {
  display: block;
}

.coach-orbit span {
  margin-bottom: 6px;
  color: var(--gold-bright);
  font-size: 13px;
}

.coach-orbit strong {
  max-width: 110px;
  font-size: 20px;
  font-weight: 480;
  line-height: 1.2;
}

.signal {
  position: absolute;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--green);
  box-shadow: 0 0 16px currentColor;
}

.signal-one {
  top: 10px;
  left: 54px;
  color: var(--gold);
  background: var(--gold);
}

.signal-two {
  right: 34px;
  bottom: 38px;
  color: var(--green);
}

.signal-three {
  bottom: 18px;
  left: 42px;
  color: var(--cyan);
  background: var(--cyan);
}

.ready-status {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: var(--green);
  text-transform: none;
}

.ready-status::before {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: currentColor;
  content: "";
}

.coach-action {
  display: grid;
  grid-template-columns: 34px 1fr;
  gap: 12px;
  padding: 15px 0;
  border-top: 1px solid var(--line-soft);
}

.action-icon {
  display: grid;
  width: 32px;
  height: 32px;
  place-items: center;
  border-radius: 50%;
  background: rgba(67, 216, 146, 0.1);
  color: var(--green);
  font-size: 11px;
}

.coach-action small,
.coach-action strong {
  display: block;
}

.coach-action small {
  margin-bottom: 3px;
  color: var(--muted);
  font-size: 11px;
}

.coach-action strong {
  font-size: 14px;
  font-weight: 520;
  line-height: 1.35;
}

.hero-summary {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 42px;
  margin-top: 28px;
  color: #aab5c3;
  font-size: 13px;
}

.hero-summary span {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.hero-summary i {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--gold);
}

.coach-section,
.difference-section {
  padding: 116px 0;
}

.coach-section {
  background:
    linear-gradient(180deg, rgba(13, 23, 36, 0.36), transparent 36%),
    var(--bg);
}

.section-heading {
  max-width: 760px;
  margin: 0 auto 50px;
  text-align: center;
}

.section-heading .eyebrow {
  justify-content: center;
  margin-bottom: 16px;
}

.section-heading h2 {
  margin-bottom: 12px;
  font-size: 48px;
  font-weight: 470;
  line-height: 1.08;
  letter-spacing: 0;
}

.section-heading > p:last-child {
  margin-bottom: 0;
  color: var(--muted);
  font-size: 17px;
}

.diagnostic-board {
  display: grid;
  grid-template-columns: minmax(0, 1.35fr) minmax(300px, 0.65fr);
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--surface);
  box-shadow: 0 34px 80px rgba(0, 0, 0, 0.32);
}

.diagnostic-main {
  grid-row: 1 / 4;
  min-height: 460px;
  padding: 34px;
  border-right: 1px solid var(--line);
  background:
    repeating-linear-gradient(90deg, transparent 0, transparent 86px, rgba(255,255,255,0.022) 87px),
    repeating-linear-gradient(0deg, transparent 0, transparent 86px, rgba(255,255,255,0.022) 87px);
}

.board-header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 20px;
}

.board-header span,
.board-header strong {
  display: block;
}

.board-header span {
  margin-bottom: 4px;
  color: var(--muted);
  font-size: 12px;
  text-transform: uppercase;
}

.board-header strong {
  font-size: 16px;
  font-weight: 520;
}

.complete-status {
  display: inline-flex !important;
  align-items: center;
  gap: 7px;
  color: var(--green) !important;
  text-transform: none !important;
}

.complete-status i {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: currentColor;
}

.discipline-visual {
  position: relative;
  display: grid;
  min-height: 320px;
  grid-template-columns: 112px 1fr;
  align-items: center;
  gap: 20px;
  margin-top: 48px;
  padding: 28px;
  overflow: hidden;
  border: 1px solid var(--line-soft);
  border-radius: 7px;
  background: rgba(5, 10, 17, 0.54);
}

.discipline-score {
  position: relative;
  z-index: 2;
  display: grid;
  width: 108px;
  height: 108px;
  place-content: center;
  border-radius: 50%;
  background:
    radial-gradient(circle at center, var(--surface) 62%, transparent 63%),
    conic-gradient(var(--green) 0 66%, var(--gold) 66% 82%, rgba(255,255,255,0.1) 82%);
  text-align: center;
}

.discipline-score span {
  font-size: 30px;
  font-weight: 480;
  line-height: 1;
}

.discipline-score small {
  color: var(--muted);
  font-size: 11px;
}

.discipline-copy {
  position: relative;
  z-index: 2;
  align-self: start;
  padding-top: 35px;
}

.discipline-copy span,
.discipline-copy strong {
  display: block;
}

.discipline-copy span {
  margin-bottom: 5px;
  color: var(--gold-bright);
  font-size: 12px;
  text-transform: uppercase;
}

.discipline-copy strong {
  font-size: 20px;
  font-weight: 480;
}

.discipline-visual svg {
  position: absolute;
  right: 28px;
  bottom: 28px;
  left: 28px;
  width: calc(100% - 56px);
  height: 132px;
}

.discipline-base {
  fill: none;
  stroke: rgba(255, 255, 255, 0.08);
  stroke-width: 1;
}

.discipline-line {
  fill: none;
  stroke: var(--green);
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 2.5;
}

.diagnostic-answer {
  display: grid;
  min-height: 153px;
  grid-template-columns: 38px 1fr;
  align-items: center;
  gap: 14px;
  padding: 24px 28px;
}

.diagnostic-answer + .diagnostic-answer {
  border-top: 1px solid var(--line);
}

.answer-number {
  display: grid;
  width: 36px;
  height: 36px;
  place-items: center;
  border-radius: 50%;
  background: rgba(255, 98, 116, 0.1);
  color: var(--red);
  font-size: 11px;
}

.pattern-answer .answer-number {
  background: rgba(67, 216, 146, 0.1);
  color: var(--green);
}

.next-answer .answer-number {
  background: rgba(98, 207, 238, 0.1);
  color: var(--cyan);
}

.diagnostic-answer small,
.diagnostic-answer strong {
  display: block;
}

.diagnostic-answer small {
  margin-bottom: 7px;
  color: var(--muted);
  font-size: 12px;
}

.diagnostic-answer strong {
  color: #e5eaf0;
  font-size: 15px;
  font-weight: 480;
  line-height: 1.45;
}

.difference-section {
  border-block: 1px solid var(--line-soft);
  background: #070b11;
}

.compact-heading {
  max-width: 840px;
}

.comparison {
  position: relative;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--line);
  box-shadow: 0 34px 80px rgba(0, 0, 0, 0.26);
}

.comparison-side {
  min-width: 0;
  padding: 36px;
  background: var(--surface);
}

.comparison-title {
  display: flex;
  align-items: center;
  gap: 13px;
}

.status-symbol {
  display: grid;
  width: 36px;
  height: 36px;
  flex: 0 0 auto;
  place-items: center;
  border-radius: 50%;
  background: rgba(255, 98, 116, 0.1);
  color: var(--red);
}

.with-side .status-symbol {
  background: rgba(67, 216, 146, 0.1);
  color: var(--green);
}

.comparison-title small,
.comparison-title strong {
  display: block;
}

.comparison-title small {
  margin-bottom: 2px;
  color: var(--red);
  font-size: 11px;
  text-transform: uppercase;
}

.with-side .comparison-title small {
  color: var(--green);
}

.comparison-title strong {
  font-size: 18px;
  font-weight: 500;
}

.trade-case {
  display: grid;
  gap: 4px;
  margin: 30px 0 14px;
  padding: 18px 20px;
  border: 1px solid var(--line);
  border-radius: 6px;
  background:
    linear-gradient(90deg, rgba(255, 98, 116, 0.055), transparent 58%),
    rgba(5, 10, 17, 0.6);
}

.with-side .trade-case {
  background:
    linear-gradient(90deg, rgba(67, 216, 146, 0.055), transparent 58%),
    rgba(5, 10, 17, 0.6);
}

.trade-case span {
  color: var(--muted);
  font-size: 11px;
  text-transform: uppercase;
}

.trade-case strong {
  font-size: 15px;
  font-weight: 500;
}

.trade-case small {
  color: var(--red);
  font-size: 12px;
}

.with-side .trade-case small {
  color: var(--gold-bright);
}

.review-answers {
  overflow: hidden;
  border: 1px solid var(--line-soft);
  border-radius: 6px;
}

.review-answers > div {
  display: grid;
  min-height: 64px;
  grid-template-columns: minmax(132px, 0.8fr) minmax(0, 1.2fr);
  align-items: center;
  gap: 16px;
  padding: 13px 18px;
  background: rgba(5, 10, 17, 0.34);
}

.review-answers > div + div {
  border-top: 1px solid var(--line-soft);
}

.review-answers span {
  color: var(--muted);
  font-size: 12px;
}

.review-answers strong {
  font-size: 13px;
  font-weight: 520;
  text-align: right;
}

.muted-answers strong {
  color: #737f8f;
}

.clear-answers strong {
  color: #dce3eb;
}

.comparison-outcome {
  display: grid;
  grid-template-columns: 34px 1fr;
  align-items: center;
  gap: 12px;
  margin-top: 18px;
}

.comparison-outcome > span {
  display: grid;
  width: 34px;
  height: 34px;
  place-items: center;
  border-radius: 50%;
  background: rgba(255, 98, 116, 0.1);
  color: var(--red);
}

.with-side .comparison-outcome > span {
  background: rgba(67, 216, 146, 0.1);
  color: var(--green);
}

.comparison-outcome p {
  margin: 0;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.5;
}

.comparison-outcome strong {
  color: #d9e0e8;
  font-weight: 540;
}

.versus {
  position: absolute;
  z-index: 3;
  top: 50%;
  left: 50%;
  display: grid;
  width: 54px;
  height: 54px;
  place-items: center;
  transform: translate(-50%, -50%);
  border: 1px solid rgba(223, 182, 78, 0.28);
  border-radius: 50%;
  background: var(--bg);
  color: var(--gold-bright);
  font-size: 12px;
  font-weight: 700;
}

.how-section {
  padding: 104px 0;
}

.how-heading {
  margin-bottom: 42px;
}

.coaching-pipeline {
  display: grid;
  grid-template-columns: 1fr 52px 1fr 52px 1fr;
  align-items: center;
  gap: 12px;
}

.pipeline-step {
  min-width: 0;
  min-height: 292px;
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: 7px;
  background: var(--surface);
}

.pipeline-topline {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 24px;
}

.pipeline-topline > span {
  display: inline-flex;
  min-height: 30px;
  align-items: center;
  justify-content: center;
  padding: 0 10px;
  border: 1px solid var(--line);
  border-radius: 999px;
  color: var(--gold-bright);
  font-size: 10px;
  font-weight: 600;
}

.pipeline-topline small {
  color: var(--gold-bright);
  font-size: 10px;
  font-weight: 650;
}

.pipeline-step > strong,
.pipeline-step > p {
  display: block;
}

.pipeline-step > strong {
  margin-top: 20px;
  margin-bottom: 3px;
  font-size: 16px;
  font-weight: 520;
}

.pipeline-step > p {
  margin-bottom: 0;
  color: var(--muted);
  font-size: 13px;
}

.pipeline-arrow {
  color: rgba(223, 182, 78, 0.5);
  text-align: center;
}

.capture-visual,
.review-visual,
.tomorrow-visual {
  height: 116px;
  border: 1px solid var(--line-soft);
  border-radius: 6px;
  background: rgba(5, 10, 17, 0.56);
}

.capture-visual {
  position: relative;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  gap: 18px;
  overflow: hidden;
  padding: 22px 24px;
}

.capture-line {
  position: absolute;
  right: 20px;
  bottom: 45px;
  left: 20px;
  height: 2px;
  transform: rotate(-9deg);
  background: linear-gradient(90deg, var(--cyan), var(--green));
}

.capture-visual i {
  position: relative;
  z-index: 1;
  width: 8px;
  height: 38px;
  border: 1px solid var(--gold);
  background: rgba(223, 182, 78, 0.12);
}

.capture-visual i:nth-of-type(2) {
  height: 62px;
}

.capture-visual i:nth-of-type(3) {
  height: 48px;
}

.review-visual {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  align-items: center;
  gap: 6px;
  padding: 14px;
}

.review-visual span {
  display: grid;
  min-width: 0;
  min-height: 54px;
  place-items: center;
  border: 1px solid rgba(98, 207, 238, 0.16);
  border-radius: 5px;
  background: rgba(98, 207, 238, 0.055);
  color: #bdd7e1;
  font-size: 10px;
}

.review-visual span:first-child {
  border-color: rgba(255, 98, 116, 0.18);
  background: rgba(255, 98, 116, 0.055);
  color: #dcb1b7;
}

.review-visual span:last-child {
  border-color: rgba(67, 216, 146, 0.18);
  background: rgba(67, 216, 146, 0.055);
  color: #b0dcc8;
}

.tomorrow-visual {
  display: grid;
  align-content: center;
  padding: 18px;
  border-color: rgba(67, 216, 146, 0.16);
  background:
    linear-gradient(100deg, rgba(67, 216, 146, 0.07), transparent),
    rgba(5, 10, 17, 0.56);
}

.tomorrow-visual small,
.tomorrow-visual strong,
.tomorrow-visual span {
  display: block;
}

.tomorrow-visual small {
  margin-bottom: 5px;
  color: var(--green);
  font-size: 10px;
  text-transform: uppercase;
}

.tomorrow-visual strong {
  margin-bottom: 3px;
  font-size: 15px;
  font-weight: 520;
}

.tomorrow-visual span {
  color: var(--muted);
  font-size: 11px;
}

.final-cta {
  position: relative;
  overflow: hidden;
  padding: 112px 0;
  border-top: 1px solid var(--line-soft);
  background:
    linear-gradient(115deg, rgba(223, 182, 78, 0.08), transparent 32%),
    linear-gradient(245deg, rgba(67, 216, 146, 0.06), transparent 28%),
    #070b11;
  text-align: center;
}

.final-cta .eyebrow {
  justify-content: center;
}

.final-cta h2 {
  margin-bottom: 30px;
  font-size: 58px;
  font-weight: 470;
  line-height: 1.05;
}

.site-footer {
  padding: 28px 0 38px;
  border-top: 1px solid var(--line-soft);
}

.footer-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  color: var(--muted);
  font-size: 12px;
}

.footer-inner nav {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
}

.footer-inner a:hover,
.footer-inner a:focus-visible {
  color: var(--text);
}

.reveal-on-scroll {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 560ms ease, transform 560ms ease;
}

.reveal-on-scroll.is-visible {
  opacity: 1;
  transform: translateY(0);
}

:focus-visible {
  outline: 2px solid var(--gold-bright);
  outline-offset: 3px;
}

@media (max-width: 1040px) {
  .desktop-nav {
    gap: 20px;
  }

  h1 {
    font-size: 56px;
  }

  .coach-flow {
    grid-template-columns: minmax(0, 1fr) 40px 154px 40px minmax(0, 1fr);
  }

  .coach-orbit {
    width: 144px;
    height: 144px;
  }
}

@media (max-width: 860px) {
  .site-header {
    grid-template-columns: 1fr auto;
  }

  .desktop-nav,
  .header-actions {
    display: none;
  }

  .menu-toggle {
    display: grid;
  }

  .site-header.menu-open .mobile-nav {
    display: grid;
  }

  .mobile-nav {
    grid-column: 1 / -1;
    gap: 4px;
    padding-top: 8px;
    border-top: 1px solid var(--line);
  }

  .mobile-nav a {
    display: flex;
    min-height: 44px;
    align-items: center;
    padding: 0 12px;
    border-radius: 5px;
    color: #c5cdd8;
    font-size: 14px;
  }

  .mobile-nav a:last-child {
    justify-content: center;
    background: var(--gold);
    color: #080a0d;
    font-weight: 650;
  }

  .hero {
    min-height: auto;
    padding-bottom: 38px;
  }

  .coach-flow {
    grid-template-columns: 1fr;
    gap: 18px;
    padding: 20px;
  }

  .flow-input,
  .flow-output {
    width: 100%;
  }

  .flow-connector {
    justify-content: center;
    height: 30px;
  }

  .flow-connector span {
    display: none;
  }

  .flow-connector i {
    transform: rotate(90deg);
  }

  .coach-core {
    height: 166px;
  }

  .coach-orbit {
    width: 150px;
    height: 150px;
  }

  .diagnostic-board {
    grid-template-columns: 1fr;
  }

  .diagnostic-main {
    grid-row: auto;
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .comparison-side {
    padding: 30px;
  }
}

@media (max-width: 680px) {
  .shell,
  .site-header {
    width: min(var(--shell), calc(100% - 28px));
  }

  .site-header {
    top: 10px;
    min-height: 62px;
    padding-left: 14px;
  }

  .brand img {
    width: 112px;
  }

  .hero {
    padding-top: 126px;
    background-position: 62% top;
  }

  .hero-shade {
    background:
      linear-gradient(180deg, rgba(5, 8, 13, 0.7), rgba(5, 8, 13, 0.92) 45%, var(--bg) 100%);
  }

  h1 {
    font-size: 44px;
  }

  .hero-lead {
    font-size: 17px;
  }

  .hero-actions {
    align-items: stretch;
    flex-direction: column;
    gap: 8px;
  }

  .hero-actions .button,
  .quiet-link {
    width: 100%;
    justify-content: center;
  }

  .coach-flow {
    margin-top: 38px;
  }

  .hero-summary {
    align-items: flex-start;
    flex-direction: column;
    gap: 10px;
    padding-left: 8px;
  }

  .coach-section,
  .difference-section,
  .how-section {
    padding: 84px 0;
  }

  .section-heading {
    margin-bottom: 34px;
    text-align: left;
  }

  .section-heading .eyebrow {
    justify-content: flex-start;
  }

  .section-heading h2 {
    font-size: 38px;
  }

  .diagnostic-main {
    min-height: 410px;
    padding: 24px;
  }

  .discipline-visual {
    grid-template-columns: 84px 1fr;
    gap: 14px;
    padding: 18px;
  }

  .discipline-score {
    width: 82px;
    height: 82px;
  }

  .discipline-score span {
    font-size: 24px;
  }

  .discipline-copy {
    padding-top: 20px;
  }

  .discipline-copy strong {
    font-size: 17px;
  }

  .diagnostic-answer {
    min-height: 128px;
    padding: 20px 22px;
  }

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

  .versus {
    top: 50%;
  }

  .coaching-pipeline {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .pipeline-arrow {
    transform: rotate(90deg);
    text-align: center;
  }

  .final-cta {
    padding: 84px 0;
  }

  .final-cta h2 {
    font-size: 44px;
  }

  .footer-inner {
    align-items: flex-start;
    flex-direction: column;
  }
}

@media (max-width: 420px) {
  h1 {
    font-size: 38px;
  }

  .section-heading h2 {
    font-size: 33px;
  }

  .flow-input,
  .flow-output {
    padding: 18px;
  }

  .comparison-side {
    padding: 26px 20px;
  }

  .review-answers > div {
    grid-template-columns: 1fr;
    gap: 3px;
  }

  .review-answers strong {
    text-align: left;
  }

  .final-cta h2 {
    font-size: 38px;
  }
}

@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;
  }

  .reveal-on-scroll {
    opacity: 1;
    transform: none;
  }
}

@supports not ((backdrop-filter: blur(1px)) or (-webkit-backdrop-filter: blur(1px))) {
  .site-header,
  .coach-flow {
    background: rgba(5, 8, 13, 0.97);
  }
}
