:root {
  color-scheme: dark;
  --ink: #0a0a09;
  --ink-soft: #151512;
  --paper: #f0ede4;
  --paper-bright: #faf7ef;
  --muted: #aaa69d;
  --line: rgba(240, 237, 228, 0.18);
  --orange: #ff5a1f;
  --orange-deep: #d9410e;
  --display: "Arial Narrow", "Helvetica Neue", Arial, sans-serif;
  --body: "Helvetica Neue", Helvetica, Arial, sans-serif;
  --page: min(100% - 40px, 1240px);
  --safe-bottom: env(safe-area-inset-bottom, 0px);
}

* {
  box-sizing: border-box;
}

[hidden] {
  display: none !important;
}

html {
  scroll-behavior: smooth;
  background: var(--ink);
  overflow-x: hidden;
}

body {
  margin: 0;
  background: var(--ink);
  color: var(--paper);
  font-family: var(--body);
  font-size: 16px;
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

button,
a {
  -webkit-tap-highlight-color: transparent;
}

button {
  font: inherit;
}

a {
  color: inherit;
}

.skip-link {
  position: fixed;
  z-index: 1000;
  top: 8px;
  left: 8px;
  padding: 10px 14px;
  background: var(--paper-bright);
  color: var(--ink);
  transform: translateY(-150%);
}

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

.site-header {
  position: absolute;
  z-index: 20;
  top: 0;
  left: 50%;
  display: flex;
  width: var(--page);
  height: 82px;
  align-items: center;
  justify-content: space-between;
  transform: translateX(-50%);
  border-bottom: 1px solid var(--line);
}

.wordmark {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--paper);
  font-size: 0.76rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-decoration: none;
  text-transform: uppercase;
}

.wordmark-mark {
  display: grid;
  width: 34px;
  aspect-ratio: 1;
  place-items: center;
  border: 1px solid rgba(240, 237, 228, 0.5);
  font-size: 0.68rem;
}

.header-action {
  border: 0;
  background: transparent;
  color: var(--paper);
  cursor: pointer;
  font-size: 0.75rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.header-action strong {
  color: var(--orange);
}

.hero {
  --hero-shift: 0px;
  position: relative;
  display: grid;
  min-height: 100svh;
  align-items: center;
  overflow: hidden;
  isolation: isolate;
  background:
    radial-gradient(circle at 78% 40%, rgba(255, 90, 31, 0.17), transparent 26%),
    linear-gradient(118deg, #11110f 0%, #090908 52%, #15110f 100%);
}

.hero::before {
  position: absolute;
  z-index: -1;
  inset: 0;
  background-image: linear-gradient(90deg, transparent 49.85%, rgba(255, 255, 255, 0.05) 50%, transparent 50.15%);
  background-size: 25% 100%;
  content: "";
  mask-image: linear-gradient(to bottom, transparent 4%, black 28%, black 76%, transparent 100%);
}

.hero-grain {
  position: absolute;
  z-index: 5;
  inset: 0;
  opacity: 0.2;
  pointer-events: none;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 180 180' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.9' numOctaves='2' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='.32'/%3E%3C/svg%3E");
  mix-blend-mode: soft-light;
}

.hero-visual {
  position: absolute;
  z-index: -1;
  top: 6%;
  right: -4%;
  width: min(56vw, 830px);
  height: 94%;
  transform: translate3d(0, var(--hero-shift), 0);
  transition: transform 100ms linear;
}

.hero-visual::before,
.hero-visual::after {
  position: absolute;
  content: "";
}

.hero-visual::before {
  top: 10%;
  right: 18%;
  width: 44%;
  height: 82%;
  border: 1px solid rgba(255, 90, 31, 0.35);
  transform: skew(-10deg);
}

.hero-visual::after {
  right: 7%;
  bottom: 1%;
  width: 75%;
  height: 2px;
  background: var(--orange);
  box-shadow: 0 -12px 40px rgba(255, 90, 31, 0.38);
}

.hero-visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 20%;
  filter: saturate(0.78) contrast(1.12);
  mask-image: linear-gradient(to bottom, transparent 0%, black 8%, black 78%, transparent 100%);
}

.portrait-placeholder {
  position: absolute;
  inset: 0;
  display: grid;
  align-content: center;
  justify-items: center;
  color: rgba(240, 237, 228, 0.12);
  text-transform: uppercase;
}

.portrait-placeholder span {
  font-family: var(--display);
  font-size: clamp(15rem, 35vw, 38rem);
  font-weight: 900;
  letter-spacing: -0.14em;
  line-height: 0.7;
  transform: translateX(-0.05em) skew(-4deg);
}

.portrait-placeholder small {
  margin-top: 5rem;
  color: rgba(240, 237, 228, 0.36);
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 0.24em;
}

.hero-shade {
  position: absolute;
  z-index: 0;
  inset: 0;
  background: linear-gradient(90deg, rgba(10, 10, 9, 0.97) 0%, rgba(10, 10, 9, 0.8) 42%, rgba(10, 10, 9, 0.06) 76%);
}

.hero-content {
  position: relative;
  z-index: 6;
  width: var(--page);
  margin: 88px auto 40px;
}

.eyebrow {
  margin: 0 0 20px;
  color: var(--orange);
  font-size: 0.69rem;
  font-weight: 800;
  letter-spacing: 0.19em;
  text-transform: uppercase;
}

.eyebrow.dark {
  color: var(--orange-deep);
}

.hero-title {
  display: flex;
  margin: 0;
  flex-direction: column;
  font-family: var(--display);
  font-size: clamp(5.4rem, 12.7vw, 11rem);
  font-stretch: condensed;
  font-weight: 900;
  letter-spacing: -0.095em;
  line-height: 0.7;
  text-transform: uppercase;
}

.hero-title span {
  display: block;
}

.hero-title .accent-word {
  color: var(--orange);
  margin-left: 0.48em;
  -webkit-text-stroke: 1px var(--orange);
}

.hero-promise {
  margin: 42px 0 0;
  color: var(--paper-bright);
  font-family: "Iowan Old Style", Baskerville, Georgia, serif;
  font-size: clamp(1.55rem, 3vw, 2.55rem);
  letter-spacing: -0.03em;
  line-height: 1.08;
}

.hero-rating {
  display: flex;
  margin-top: 26px;
  align-items: center;
  gap: 14px;
  color: #d8d4ca;
  font-size: 0.83rem;
}

.hero-rating .stars {
  color: var(--orange);
  font-size: 0.74rem;
  letter-spacing: 0.11em;
}

.hero-rating strong {
  color: var(--paper-bright);
}

.hero-actions {
  display: flex;
  margin-top: 34px;
  align-items: center;
  gap: 20px;
}

.hero-actions p {
  max-width: 200px;
  margin: 0;
  color: var(--muted);
  font-size: 0.76rem;
  line-height: 1.45;
}

.hero-actions p strong {
  color: var(--paper);
}

.button {
  display: inline-flex;
  min-height: 58px;
  align-items: center;
  justify-content: center;
  gap: 38px;
  border: 0;
  padding: 0 24px;
  cursor: pointer;
  font-size: 0.73rem;
  font-weight: 800;
  letter-spacing: 0.09em;
  text-transform: uppercase;
  transition: background 180ms ease, color 180ms ease, transform 180ms ease;
}

.button svg {
  width: 20px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.7;
  transition: transform 180ms ease;
}

.button:hover svg,
.button:focus-visible svg {
  transform: translateX(5px);
}

.button:active {
  transform: scale(0.985);
}

.button-primary {
  background: var(--orange);
  color: #130b07;
}

.button-primary:hover,
.button-primary:focus-visible {
  background: #ff713f;
}

.button-dark {
  background: var(--ink);
  color: var(--paper-bright);
}

.button-dark:hover,
.button-dark:focus-visible {
  background: #24241f;
}

.scroll-cue {
  position: absolute;
  z-index: 6;
  right: max(20px, calc((100vw - 1240px) / 2));
  bottom: 38px;
  display: flex;
  align-items: center;
  gap: 14px;
  color: var(--muted);
  font-size: 0.61rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-decoration: none;
  text-transform: uppercase;
  transform: rotate(90deg) translateX(-100%);
  transform-origin: right bottom;
}

.scroll-cue i {
  width: 48px;
  height: 1px;
  overflow: hidden;
  background: var(--line);
}

.scroll-cue i::after {
  display: block;
  width: 45%;
  height: 100%;
  background: var(--orange);
  content: "";
  animation: scroll-line 2.2s ease-in-out infinite;
}

.proof {
  display: grid;
  min-height: 820px;
  padding: clamp(70px, 9vw, 130px) max(24px, calc((100vw - 1240px) / 2));
  align-items: stretch;
  grid-template-columns: minmax(0, 0.82fr) minmax(0, 1.18fr);
  gap: clamp(48px, 6vw, 96px);
  background: var(--paper);
  color: var(--ink);
}

.proof-left {
  display: flex;
  min-width: 0;
  flex-direction: column;
  justify-content: center;
}

.proof-copy,
.proof-metric {
  min-width: 0;
}

.proof-metric {
  margin-top: clamp(72px, 8vw, 112px);
}

.proof-reviews {
  display: flex;
  min-width: 0;
  padding-left: clamp(48px, 6vw, 92px);
  flex-direction: column;
  justify-content: center;
  border-left: 1px solid rgba(10, 10, 9, 0.18);
}

.proof h2,
.section-heading h2,
.final-cta h2,
.reply-dialog h2 {
  margin: 0;
  font-family: var(--display);
  font-size: clamp(3.2rem, 6.6vw, 6.9rem);
  font-weight: 900;
  letter-spacing: -0.075em;
  line-height: 0.85;
  text-transform: uppercase;
}

.proof-number {
  margin: 0;
  font-family: var(--display);
  font-size: clamp(8rem, 15vw, 13rem);
  font-weight: 900;
  letter-spacing: -0.105em;
  line-height: 0.72;
}

.proof-number span {
  color: var(--orange-deep);
  font-size: 0.48em;
  vertical-align: top;
}

.proof-caption {
  display: flex;
  max-width: 520px;
  margin-top: 42px;
  align-items: center;
  gap: 22px;
}

.proof-stars {
  flex: none;
  color: var(--orange-deep);
  font-size: 0.78rem;
  letter-spacing: 0.12em;
}

.proof-caption p {
  margin: 0;
  font-size: 0.95rem;
  line-height: 1.45;
}

.section-shell {
  position: relative;
  display: grid;
  width: var(--page);
  margin: 0 auto;
  padding: clamp(100px, 13vw, 190px) 0;
  grid-template-columns: 0.22fr 0.8fr 1fr;
  column-gap: clamp(30px, 6vw, 100px);
}

.section-heading,
.kickoff-body,
.credential-list,
.faq-list,
.review-stage,
.review-controls {
  min-width: 0;
}

.section-index {
  color: var(--orange);
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.18em;
}

.section-heading h2 {
  font-size: clamp(3.6rem, 6.5vw, 6.8rem);
}

.section-lede {
  max-width: 620px;
  margin: 0 0 70px;
  color: #d0ccc2;
  font-family: "Iowan Old Style", Baskerville, Georgia, serif;
  font-size: clamp(1.35rem, 2.4vw, 2.25rem);
  letter-spacing: -0.025em;
  line-height: 1.18;
}

.experience-list {
  margin: 0;
  padding: 0;
  list-style: none;
}

.experience-list li {
  display: grid;
  padding: 28px 0;
  grid-template-columns: 58px 1fr;
  border-top: 1px solid var(--line);
}

.experience-list li:last-child {
  border-bottom: 1px solid var(--line);
}

.experience-list li > span {
  padding-top: 5px;
  color: var(--orange);
  font-size: 0.65rem;
  font-weight: 800;
  letter-spacing: 0.16em;
}

.experience-list h3,
.credential h3 {
  margin: 0;
  font-family: var(--display);
  font-size: clamp(1.55rem, 2.8vw, 2.55rem);
  font-weight: 800;
  letter-spacing: -0.04em;
  line-height: 1;
  text-transform: uppercase;
}

.experience-list p,
.credential p {
  max-width: 470px;
  margin: 10px 0 0;
  color: var(--muted);
  font-size: 0.86rem;
  line-height: 1.55;
}

.kickoff-offer {
  display: flex;
  margin-top: 46px;
  align-items: flex-end;
  justify-content: space-between;
  color: var(--orange);
}

.kickoff-offer span {
  padding-bottom: 10px;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.kickoff-offer strong {
  font-family: var(--display);
  font-size: clamp(5rem, 9vw, 8rem);
  letter-spacing: -0.08em;
  line-height: 0.8;
}

.coaching-story {
  display: grid;
  min-height: 880px;
  grid-template-columns: 1.08fr 0.92fr;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: #0e0e0c;
}

.story-photo {
  position: relative;
  min-height: 760px;
  margin: 0;
  overflow: hidden;
}

.story-photo::after {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(to right, transparent 64%, rgba(14, 14, 12, 0.7) 100%),
    linear-gradient(to top, rgba(10, 10, 9, 0.55), transparent 32%);
  content: "";
}

.story-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 30%;
  filter: saturate(0.82) contrast(1.06);
  transition: transform 900ms cubic-bezier(0.2, 0.75, 0.25, 1);
}

.coaching-story:hover .story-photo img {
  transform: scale(1.018);
}

.story-copy {
  display: flex;
  padding: clamp(70px, 8vw, 126px);
  flex-direction: column;
  justify-content: center;
}

.story-copy h2,
.fit-heading h2 {
  margin: 0;
  font-family: var(--display);
  font-size: clamp(3.7rem, 6.8vw, 7.2rem);
  font-weight: 900;
  letter-spacing: -0.075em;
  line-height: 0.85;
  text-transform: uppercase;
}

.story-lede {
  max-width: 570px;
  margin: 46px 0 0;
  color: #d5d1c7;
  font-family: "Iowan Old Style", Baskerville, Georgia, serif;
  font-size: clamp(1.35rem, 2.4vw, 2.15rem);
  letter-spacing: -0.025em;
  line-height: 1.2;
}

.story-values {
  display: flex;
  margin-top: 54px;
  flex-wrap: wrap;
  border-top: 1px solid var(--line);
}

.story-values span {
  padding: 18px 22px 18px 0;
  color: var(--orange);
  font-size: 0.64rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.story-values span + span {
  padding-left: 22px;
  border-left: 1px solid var(--line);
}

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

.credential-list {
  display: grid;
  gap: 0;
}

.credential {
  display: grid;
  padding: 34px 0;
  grid-template-columns: minmax(80px, 0.6fr) 1.2fr;
  border-top: 1px solid var(--line);
}

.credential:last-child {
  border-bottom: 1px solid var(--line);
}

.credential-year {
  color: var(--orange);
  font-size: 0.65rem;
  font-weight: 800;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.credential h3 {
  font-size: clamp(1.75rem, 3vw, 2.8rem);
}

.credential p {
  grid-column: 2;
}

.fit-check {
  display: grid;
  min-height: 780px;
  grid-template-columns: 0.9fr 1.1fr;
  background: var(--paper-bright);
  color: var(--ink);
}

.fit-heading {
  display: flex;
  padding: clamp(70px, 9vw, 130px);
  flex-direction: column;
  justify-content: center;
  background:
    linear-gradient(150deg, transparent 53%, rgba(255, 90, 31, 0.15) 53.2%, transparent 54%),
    var(--paper-bright);
}

.fit-heading > p:last-child {
  max-width: 440px;
  margin: 36px 0 0;
  color: #5d5b55;
  font-family: "Iowan Old Style", Baskerville, Georgia, serif;
  font-size: clamp(1.15rem, 1.8vw, 1.55rem);
  line-height: 1.3;
}

.fit-list {
  display: flex;
  flex-direction: column;
  justify-content: center;
  border-left: 1px solid rgba(10, 10, 9, 0.17);
}

.fit-list article {
  display: grid;
  padding: 34px clamp(42px, 7vw, 100px);
  grid-template-columns: 54px 1fr;
  border-bottom: 1px solid rgba(10, 10, 9, 0.17);
}

.fit-list article:first-child {
  border-top: 1px solid rgba(10, 10, 9, 0.17);
}

.fit-list article > span {
  padding-top: 3px;
  color: var(--orange-deep);
  font-size: 0.65rem;
  font-weight: 800;
}

.fit-list h3 {
  margin: 0;
  font-family: var(--display);
  font-size: clamp(1.7rem, 3vw, 2.8rem);
  font-weight: 900;
  letter-spacing: -0.045em;
  line-height: 1;
  text-transform: uppercase;
}

.fit-list p {
  max-width: 500px;
  margin: 10px 0 0;
  color: #5d5b55;
  font-size: 0.85rem;
  line-height: 1.5;
}

.review-stage {
  min-height: 390px;
  outline: none;
  touch-action: pan-y;
}

.review-card {
  animation: review-in 360ms cubic-bezier(0.2, 0.75, 0.25, 1) both;
}

.review-meta {
  display: flex;
  margin-bottom: 28px;
  align-items: center;
  gap: 16px;
  color: #6f6c64;
  font-size: 0.61rem;
  font-weight: 800;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.review-meta .review-stars {
  color: var(--orange);
  letter-spacing: 0.1em;
}

.review-card blockquote {
  margin: 0;
  font-family: "Iowan Old Style", Baskerville, Georgia, serif;
  font-size: clamp(1.7rem, 3.5vw, 3.45rem);
  letter-spacing: -0.035em;
  line-height: 1.12;
}

.review-card footer {
  margin-top: 36px;
  color: var(--orange-deep);
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.review-controls {
  display: flex;
  grid-column: 3;
  align-items: center;
  justify-content: space-between;
}

.proof-reviews .review-controls {
  grid-column: auto;
  margin-top: 28px;
}

.review-status {
  display: grid;
  min-width: 180px;
  justify-items: center;
}

.review-progress {
  display: grid;
  width: 100%;
  margin-bottom: 12px;
  grid-auto-flow: column;
  gap: 4px;
}

.review-progress i {
  height: 2px;
  background: rgba(10, 10, 9, 0.18);
  transition: background 180ms ease, transform 180ms ease;
}

.review-progress i.is-active {
  background: var(--orange);
  transform: scaleY(1.5);
}

.review-control {
  width: 48px;
  height: 48px;
  border: 1px solid rgba(10, 10, 9, 0.2);
  border-radius: 50%;
  background: transparent;
  color: var(--ink);
  cursor: pointer;
}

.review-controls p {
  margin: 0;
  color: #6f6c64;
  font-size: 0.68rem;
  letter-spacing: 0.13em;
}

.review-status small {
  display: none;
  margin-top: 6px;
  color: #6f6c64;
  font-size: 0.58rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

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

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

.faq-item:last-child {
  border-bottom: 1px solid var(--line);
}

.faq-item summary {
  position: relative;
  padding: 26px 48px 26px 0;
  cursor: pointer;
  font-family: var(--display);
  font-size: clamp(1.45rem, 2.5vw, 2.25rem);
  font-weight: 800;
  letter-spacing: -0.035em;
  line-height: 1.05;
  list-style: none;
  text-transform: uppercase;
}

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

.faq-item summary::after {
  position: absolute;
  top: 50%;
  right: 4px;
  color: var(--orange);
  content: "+";
  font-size: 1.6rem;
  font-weight: 300;
  transform: translateY(-50%);
}

.faq-item[open] summary::after {
  content: "−";
}

.faq-item p {
  max-width: 650px;
  margin: -2px 0 28px;
  color: var(--muted);
  font-size: 0.9rem;
  line-height: 1.65;
}

.final-cta {
  display: flex;
  min-height: 820px;
  padding: clamp(90px, 13vw, 180px) max(20px, calc((100vw - 1240px) / 2));
  align-items: flex-start;
  flex-direction: column;
  justify-content: center;
  background: var(--orange);
  color: var(--ink);
}

.final-cta .eyebrow {
  color: rgba(10, 10, 9, 0.62);
}

.final-cta h2 {
  font-size: clamp(5.2rem, 12vw, 11.5rem);
}

.final-copy {
  max-width: 600px;
  margin: 46px 0 28px;
  font-family: "Iowan Old Style", Baskerville, Georgia, serif;
  font-size: clamp(1.4rem, 2.5vw, 2.25rem);
  letter-spacing: -0.025em;
  line-height: 1.2;
}

.site-footer {
  display: flex;
  width: var(--page);
  min-height: 150px;
  margin: 0 auto;
  align-items: center;
  justify-content: space-between;
  color: var(--muted);
  font-size: 0.68rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.site-footer p:first-child {
  color: var(--paper);
  font-weight: 800;
}

.mobile-reply {
  position: fixed;
  z-index: 25;
  right: 10px;
  bottom: calc(10px + var(--safe-bottom));
  left: 10px;
  display: none;
  opacity: 1;
  transform: translateY(0);
  transition: opacity 180ms ease, transform 180ms ease;
}

.mobile-reply.is-hidden {
  opacity: 0;
  pointer-events: none;
  transform: translateY(calc(100% + 24px));
}

.mobile-reply button {
  display: flex;
  width: 100%;
  min-height: 64px;
  padding: 0 20px;
  align-items: center;
  justify-content: space-between;
  border: 1px solid rgba(255, 255, 255, 0.14);
  background: rgba(10, 10, 9, 0.93);
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.34);
  color: var(--paper);
  backdrop-filter: blur(16px);
}

.mobile-reply span {
  color: var(--muted);
  font-size: 0.66rem;
}

.mobile-reply strong {
  color: var(--orange);
  font-size: 0.7rem;
  letter-spacing: 0.08em;
}

.reply-dialog {
  width: min(100% - 32px, 560px);
  padding: clamp(30px, 5vw, 54px);
  border: 0;
  background: var(--paper-bright);
  color: var(--ink);
  opacity: 0;
  transform: translateY(22px) scale(0.98);
  transition: opacity 180ms ease, transform 180ms ease, overlay 180ms allow-discrete, display 180ms allow-discrete;
}

.reply-dialog[open] {
  opacity: 1;
  transform: translateY(0) scale(1);
}

.reply-dialog::backdrop {
  background: rgba(0, 0, 0, 0.78);
  backdrop-filter: blur(6px);
}

.dialog-close {
  position: absolute;
  top: 16px;
  right: 18px;
  border: 0;
  background: transparent;
  color: var(--ink);
  cursor: pointer;
  font-size: 2rem;
  font-weight: 200;
}

.reply-dialog h2 {
  font-size: clamp(3.5rem, 9vw, 5.5rem);
}

.reply-dialog > p:not(.eyebrow) {
  max-width: 430px;
  margin: 26px 0;
  color: #5d5b55;
  font-size: 0.92rem;
}

.keyword {
  display: flex;
  width: 100%;
  min-height: 92px;
  padding: 0 22px;
  align-items: center;
  justify-content: space-between;
  border: 1px solid rgba(10, 10, 9, 0.2);
  background: transparent;
  color: var(--ink);
  cursor: pointer;
}

.keyword span {
  font-family: var(--display);
  font-size: clamp(2.1rem, 7vw, 3.5rem);
  font-weight: 900;
  letter-spacing: -0.04em;
}

.keyword small {
  color: var(--orange-deep);
  font-size: 0.64rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.dialog-done {
  width: 100%;
  min-height: 48px;
  margin-top: 10px;
  border: 0;
  background: var(--ink);
  color: var(--paper);
  cursor: pointer;
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.toast {
  position: fixed;
  z-index: 100;
  bottom: calc(24px + var(--safe-bottom));
  left: 50%;
  padding: 12px 16px;
  background: var(--paper-bright);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.28);
  color: var(--ink);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  opacity: 0;
  pointer-events: none;
  text-transform: uppercase;
  transform: translate(-50%, 16px);
  transition: opacity 180ms ease, transform 180ms ease;
}

.toast.is-visible {
  opacity: 1;
  transform: translate(-50%, 0);
}

.hero-enter {
  opacity: 0;
  transform: translateY(24px);
  animation: hero-in 650ms cubic-bezier(0.2, 0.75, 0.25, 1) forwards;
}

.hero-enter-1 { animation-delay: 120ms; }
.hero-enter-2 { animation-delay: 200ms; }
.hero-enter-3 { animation-delay: 310ms; }
.hero-enter-4 { animation-delay: 400ms; }
.hero-enter-5 { animation-delay: 490ms; }

.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 700ms cubic-bezier(0.2, 0.75, 0.25, 1), transform 700ms cubic-bezier(0.2, 0.75, 0.25, 1);
}

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

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

@keyframes scroll-line {
  0% { transform: translateX(-110%); }
  55%, 100% { transform: translateX(230%); }
}

@keyframes review-in {
  from {
    opacity: 0;
    transform: translateX(18px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

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

  .hero-visual {
    right: -21%;
    width: 82vw;
    opacity: 0.7;
  }

  .hero-shade {
    background: linear-gradient(90deg, rgba(10, 10, 9, 0.98) 0%, rgba(10, 10, 9, 0.78) 58%, rgba(10, 10, 9, 0.2) 100%);
  }

  .proof {
    grid-template-columns: 1fr;
    gap: 76px;
  }

  .proof-reviews {
    padding: 76px 0 0;
    border-top: 1px solid rgba(10, 10, 9, 0.18);
    border-left: 0;
  }

  .section-shell {
    grid-template-columns: 50px 1fr;
  }

  .kickoff-body,
  .credential-list,
  .faq-list {
    grid-column: 2;
    margin-top: 70px;
  }

  .coaching-story {
    min-height: 0;
    grid-template-columns: 1fr;
  }

  .story-photo {
    min-height: 720px;
  }

  .story-copy {
    min-height: 680px;
  }

  .fit-check {
    min-height: 0;
    grid-template-columns: 1fr;
  }

  .fit-heading {
    min-height: 560px;
  }

  .fit-list {
    border-top: 1px solid rgba(10, 10, 9, 0.17);
    border-left: 0;
  }

}

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

  body {
    padding-bottom: calc(82px + var(--safe-bottom));
  }

  .site-header {
    height: 64px;
  }

  .wordmark-copy,
  .header-action {
    font-size: 0.62rem;
  }

  .wordmark-mark {
    width: 29px;
  }

  .hero {
    min-height: 780px;
    align-items: start;
  }

  .hero::before {
    background-size: 50% 100%;
  }

  .hero-content {
    margin-top: 115px;
  }

  .hero-visual {
    top: 27%;
    right: -42%;
    width: 130vw;
    height: 75%;
    opacity: 0.63;
  }

  .hero-visual::before {
    right: 24%;
  }

  .portrait-placeholder span {
    font-size: 18rem;
  }

  .portrait-placeholder small {
    margin-top: 3rem;
  }

  .hero-shade {
    background:
      linear-gradient(to bottom, rgba(10, 10, 9, 0.97) 0%, rgba(10, 10, 9, 0.86) 39%, rgba(10, 10, 9, 0.16) 68%, rgba(10, 10, 9, 0.86) 100%),
      linear-gradient(90deg, rgba(10, 10, 9, 0.84), transparent);
  }

  .hero .eyebrow {
    max-width: 240px;
    margin-bottom: 18px;
    line-height: 1.5;
  }

  .hero-title {
    font-size: clamp(5.1rem, 26vw, 7.1rem);
  }

  .hero-title .accent-word {
    margin-left: 0.24em;
  }

  .hero-promise {
    margin-top: 32px;
    font-size: 1.45rem;
  }

  .hero-rating {
    display: grid;
    margin-top: 20px;
    gap: 7px;
    font-size: 0.76rem;
  }

  .hero-actions {
    display: block;
    margin-top: 28px;
  }

  .hero-actions .button {
    width: 100%;
    gap: 16px;
    padding-right: 16px;
    padding-left: 16px;
    white-space: nowrap;
  }

  .hero-actions p {
    max-width: none;
    margin-top: 11px;
    text-align: center;
  }

  .scroll-cue {
    display: none;
  }

  .proof {
    min-height: 0;
    padding: 76px 24px 84px;
    gap: 70px;
  }

  .proof h2 {
    font-size: 3.9rem;
  }

  .proof-number {
    font-size: 8.5rem;
  }

  .proof-caption {
    margin-top: 34px;
    align-items: flex-start;
    gap: 12px;
  }

  .proof-stars {
    padding-top: 4px;
    font-size: 0.68rem;
  }

  .proof-caption p {
    font-size: 0.87rem;
  }

  .proof-reviews {
    padding-top: 70px;
  }

  .section-shell {
    width: calc(100% - 36px);
    padding: 96px 0;
    grid-template-columns: 28px 1fr;
    column-gap: 12px;
  }

  .section-heading h2 {
    font-size: clamp(2.85rem, 13.2vw, 4.1rem);
  }

  .kickoff-body,
  .credential-list,
  .faq-list {
    margin-top: 54px;
  }

  .section-lede {
    margin-bottom: 42px;
    font-size: 1.3rem;
  }

  .experience-list li {
    padding: 24px 0;
    grid-template-columns: 40px 1fr;
  }

  .experience-list h3 {
    font-size: 1.52rem;
  }

  .kickoff-offer {
    align-items: center;
  }

  .kickoff-offer span {
    max-width: 90px;
  }

  .kickoff-offer strong {
    font-size: 6rem;
  }

  .credential {
    display: block;
    padding: 28px 0;
  }

  .credential h3 {
    margin-top: 13px;
    font-size: 2rem;
  }

  .credential p {
    margin-top: 12px;
  }

  .story-photo {
    min-height: 560px;
  }

  .story-photo::after {
    background: linear-gradient(to top, rgba(14, 14, 12, 0.65), transparent 44%);
  }

  .story-copy {
    min-height: 640px;
    padding: 76px 22px;
  }

  .story-copy h2,
  .fit-heading h2 {
    font-size: clamp(3.45rem, 17vw, 4.5rem);
  }

  .story-lede {
    margin-top: 34px;
    font-size: 1.35rem;
  }

  .story-values {
    display: grid;
    margin-top: 42px;
  }

  .story-values span,
  .story-values span + span {
    padding: 14px 0;
    border-left: 0;
    border-bottom: 1px solid var(--line);
  }

  .fit-heading {
    min-height: 510px;
    padding: 70px 22px;
  }

  .fit-list article {
    padding: 28px 22px;
    grid-template-columns: 38px 1fr;
  }

  .fit-list h3 {
    font-size: 1.7rem;
  }

  .review-stage {
    min-height: 470px;
  }

  .review-meta {
    display: grid;
    gap: 6px;
  }

  .review-status {
    min-width: 130px;
  }

  .review-status small {
    display: block;
  }

  .faq-item summary {
    font-size: 1.5rem;
  }

  .final-cta {
    min-height: 740px;
    padding: 90px 20px;
  }

  .final-cta h2 {
    font-size: clamp(5rem, 24vw, 7rem);
  }

  .final-copy {
    margin-top: 38px;
    font-size: 1.35rem;
  }

  .final-cta .button {
    width: 100%;
  }

  .site-footer {
    min-height: 190px;
    padding: 44px 0 100px;
    align-items: flex-start;
    flex-direction: column;
    justify-content: flex-start;
    gap: 10px;
  }

  .site-footer p {
    margin: 0;
  }

  .mobile-reply {
    display: block;
  }

  .reply-dialog {
    width: 100%;
    max-width: none;
    margin: auto 0 0;
    padding: 40px 22px calc(24px + var(--safe-bottom));
  }

  .reply-dialog h2 {
    font-size: 3.8rem;
  }

  .keyword {
    display: grid;
    min-height: 108px;
    align-content: center;
    justify-items: start;
    gap: 4px;
  }

  .keyword span,
  .keyword small {
    grid-column: 1;
  }

  .toast {
    bottom: calc(94px + var(--safe-bottom));
  }
}

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

  .hero-enter,
  .reveal {
    opacity: 1;
    transform: none;
  }
}
