@font-face {
  font-family: "Inter Tight";
  src: url("fonts/inter-tight-400.ttf") format("truetype");
  font-style: normal;
  font-weight: 400;
  font-display: swap;
}

@font-face {
  font-family: "Inter Tight";
  src: url("fonts/inter-tight-500.ttf") format("truetype");
  font-style: normal;
  font-weight: 500;
  font-display: swap;
}

@font-face {
  font-family: "Inter Tight";
  src: url("fonts/inter-tight-600.ttf") format("truetype");
  font-style: normal;
  font-weight: 600;
  font-display: swap;
}

@font-face {
  font-family: "Inter Tight";
  src: url("fonts/inter-tight-700.ttf") format("truetype");
  font-style: normal;
  font-weight: 700;
  font-display: swap;
}

@font-face {
  font-family: "Inter Tight";
  src: url("fonts/inter-tight-800.ttf") format("truetype");
  font-style: normal;
  font-weight: 800;
  font-display: swap;
}

@font-face {
  font-family: "Inter Tight";
  src: url("fonts/inter-tight-900.ttf") format("truetype");
  font-style: normal;
  font-weight: 900;
  font-display: swap;
}

@font-face {
  font-family: "IBM Plex Mono";
  src: url("fonts/ibm-plex-mono-400.ttf") format("truetype");
  font-style: normal;
  font-weight: 400;
  font-display: swap;
}

@font-face {
  font-family: "IBM Plex Mono";
  src: url("fonts/ibm-plex-mono-500.ttf") format("truetype");
  font-style: normal;
  font-weight: 500;
  font-display: swap;
}

@font-face {
  font-family: "IBM Plex Mono";
  src: url("fonts/ibm-plex-mono-600.ttf") format("truetype");
  font-style: normal;
  font-weight: 600;
  font-display: swap;
}

:root {
  --paper: #f4f4ef;
  --white: #ffffff;
  --ink: #0b0c0e;
  --muted: #62635e;
  --line: #d7d8d1;
  --accent: #1746ff;
  --accent-deep: #0d35dd;
  --font-sans: "Inter Tight", "Arial Narrow", Arial, sans-serif;
  --font-mono: "IBM Plex Mono", ui-monospace, monospace;
  --ease-out: cubic-bezier(0.22, 1, 0.36, 1);
  --header-height: 84px;
}

* {
  box-sizing: border-box;
}

html {
  background: var(--paper);
  color: var(--ink);
  scroll-behavior: smooth;
  scroll-padding-top: 88px;
}

body {
  margin: 0;
  min-width: 320px;
  overflow-x: hidden;
  background: var(--paper);
  color: var(--ink);
  font-family: var(--font-sans);
  font-size: 18px;
  font-weight: 400;
  line-height: 1.52;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}

body.menu-is-open,
body.lightbox-is-open {
  overflow: hidden;
}

::selection {
  background: var(--accent);
  color: var(--white);
}

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

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

button {
  color: inherit;
  font: inherit;
}

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

p,
h1,
h2,
h3,
figure,
blockquote {
  margin: 0;
}

strong {
  font-weight: 700;
}

.shell {
  width: min(100% - 128px, 1360px);
  margin-inline: auto;
}

.section-shell {
  position: relative;
  padding-block: 156px;
}

.site-header {
  position: sticky;
  z-index: 100;
  top: 0;
  width: 100%;
  height: var(--header-height);
  border-bottom: 1px solid transparent;
  background: color-mix(in srgb, var(--paper) 91%, transparent);
  backdrop-filter: blur(18px);
  transition:
    height 280ms var(--ease-out),
    border-color 280ms ease,
    background 280ms ease;
}

.site-header--compact {
  height: 68px;
  border-bottom-color: var(--line);
  background: color-mix(in srgb, var(--paper) 97%, transparent);
}

.site-header__inner {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  height: 100%;
}

.wordmark {
  justify-self: start;
  font-size: 19px;
  font-weight: 800;
  letter-spacing: -0.035em;
  line-height: 1;
}

.wordmark span {
  color: var(--accent);
}

.main-nav {
  display: flex;
  align-items: center;
  gap: 36px;
  font-size: 15px;
  font-weight: 600;
  letter-spacing: -0.01em;
}

.main-nav a {
  position: relative;
  padding-block: 8px;
}

.main-nav a::after {
  position: absolute;
  right: 0;
  bottom: 3px;
  left: 0;
  height: 1px;
  content: "";
  background: currentColor;
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 220ms var(--ease-out);
}

.main-nav a:hover::after,
.main-nav a:focus-visible::after {
  transform: scaleX(1);
  transform-origin: left;
}

.header-cta {
  display: inline-flex;
  align-items: center;
  justify-self: end;
  gap: 10px;
  min-height: 44px;
  padding: 0 18px;
  border: 1px solid var(--ink);
  border-radius: 8px;
  background: var(--ink);
  color: var(--white);
  font-size: 14px;
  font-weight: 650;
  transition:
    color 220ms ease,
    background 220ms ease,
    border-color 220ms ease;
}

.header-cta span {
  transition: transform 220ms var(--ease-out);
}

.header-cta:hover,
.header-cta:focus-visible {
  border-color: var(--accent);
  background: var(--accent);
}

.header-cta:hover span,
.header-cta:focus-visible span {
  transform: translate(3px, -3px);
}

.menu-button,
.mobile-panel {
  display: none;
}

.button-link {
  position: relative;
  isolation: isolate;
  display: inline-flex;
  min-height: 58px;
  align-items: center;
  overflow: hidden;
  gap: 28px;
  padding: 0 23px;
  border: 1px solid var(--ink);
  border-radius: 9px;
  background: var(--ink);
  color: var(--white);
  font-size: 15px;
  font-weight: 650;
  letter-spacing: -0.015em;
  transition: transform 220ms var(--ease-out);
}

.button-link__wash {
  position: absolute;
  z-index: -1;
  inset: 0;
  background: var(--accent);
  transform: translateX(-102%);
  transition: transform 260ms var(--ease-out);
}

.button-link__label,
.button-link__arrow {
  position: relative;
  z-index: 1;
}

.button-link__label {
  transition: transform 240ms var(--ease-out);
}

.button-link__arrow {
  font-family: var(--font-mono);
  font-size: 20px;
  line-height: 1;
  transition: transform 240ms var(--ease-out);
}

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

.button-link:hover .button-link__wash,
.button-link:focus-visible .button-link__wash {
  transform: translateX(0);
}

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

.button-link:hover .button-link__arrow,
.button-link:focus-visible .button-link__arrow {
  transform: translate(5px, -5px);
}

.button-link--inverse {
  border-color: var(--white);
  background: var(--white);
  color: var(--ink);
}

.button-link--inverse .button-link__wash {
  background: var(--ink);
}

.button-link--inverse:hover,
.button-link--inverse:focus-visible {
  color: var(--white);
}

.button-link:focus-visible,
.header-cta:focus-visible,
.main-nav a:focus-visible,
.menu-button:focus-visible,
.image-zoom:focus-visible,
.faq-item button:focus-visible,
.site-footer a:focus-visible {
  outline: 3px solid color-mix(in srgb, var(--accent) 75%, white);
  outline-offset: 3px;
}

.eyebrow {
  display: flex;
  align-items: center;
  gap: 18px;
  color: var(--muted);
  font-family: var(--font-mono);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.14em;
  line-height: 1.25;
  text-transform: uppercase;
}

.eyebrow span {
  display: grid;
  width: 27px;
  height: 27px;
  place-items: center;
  border: 1px solid currentColor;
  border-radius: 50%;
  color: var(--accent);
  font-size: 9px;
}

.eyebrow p {
  white-space: nowrap;
}

.hero {
  min-height: calc(100vh - var(--header-height));
  padding-top: 50px;
  padding-bottom: 110px;
}

.hero__grid {
  display: grid;
  align-items: center;
  margin-top: 32px;
  grid-template-columns: minmax(0, 7fr) minmax(340px, 4.25fr);
  gap: clamp(48px, 7vw, 112px);
}

.hero h1 {
  max-width: 950px;
  font-size: clamp(64px, 6.35vw, 94px);
  font-weight: 850;
  letter-spacing: -0.064em;
  line-height: 0.88;
  text-wrap: balance;
}

.hero h1 span {
  display: block;
  margin-top: 14px;
  color: var(--accent);
}

.hero__intro {
  max-width: 650px;
  margin-top: 32px;
  color: var(--muted);
  font-size: clamp(18px, 1.5vw, 21px);
  line-height: 1.5;
}

.hero__action {
  display: flex;
  max-width: 660px;
  align-items: center;
  gap: 24px;
  margin-top: 32px;
}

.microcopy {
  max-width: 260px;
  color: var(--muted);
  font-family: var(--font-mono);
  font-size: 10px;
  line-height: 1.55;
}

.hero__visual {
  align-self: start;
}

.hero__visual figure {
  width: 100%;
}

.hero__portrait {
  position: relative;
  overflow: hidden;
  border: 1px solid color-mix(in srgb, var(--ink) 15%, transparent);
  border-radius: 10px;
  background: #111411;
  aspect-ratio: 4 / 5;
}

.hero__portrait::before {
  position: absolute;
  z-index: 1;
  top: 12px;
  right: 12px;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  content: "";
  background: var(--accent);
}

.hero__portrait img,
.mentor__portrait img {
  width: 100%;
  height: auto;
  object-fit: contain;
}

.portrait-index {
  position: absolute;
  z-index: 2;
  right: 14px;
  bottom: 14px;
  padding: 7px 9px;
  border-radius: 4px;
  background: color-mix(in srgb, var(--ink) 68%, transparent);
  color: var(--white);
  font-family: var(--font-mono);
  font-size: 9px;
  letter-spacing: 0.1em;
}

.hero__visual figcaption {
  display: flex;
  align-items: end;
  justify-content: space-between;
  padding: 17px 2px 0;
  border-bottom: 1px solid var(--ink);
  padding-bottom: 17px;
}

.hero__visual figcaption strong {
  color: var(--accent);
  font-size: clamp(28px, 3vw, 46px);
  font-weight: 800;
  letter-spacing: -0.045em;
  line-height: 1;
}

.hero__visual figcaption span {
  max-width: 118px;
  color: var(--muted);
  font-family: var(--font-mono);
  font-size: 9px;
  line-height: 1.45;
  text-align: right;
  text-transform: uppercase;
}

.benefit-strip {
  display: grid;
  margin-top: 88px;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  grid-template-columns: repeat(4, 1fr);
}

.benefit {
  min-height: 188px;
  padding: 28px 27px 30px;
  border-right: 1px solid var(--line);
}

.benefit:last-child {
  border-right: 0;
}

.benefit__marker {
  color: var(--accent);
  font-family: var(--font-mono);
  font-size: 13px;
  font-weight: 600;
}

.benefit h2 {
  margin-top: 28px;
  font-size: 19px;
  font-weight: 700;
  letter-spacing: -0.025em;
  line-height: 1.15;
}

.benefit p {
  margin-top: 10px;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.45;
}

.narrative {
  background: var(--white);
}

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

.narrative__grid > .reveal:first-child {
  grid-column: 1 / span 3;
}

.narrative__copy {
  grid-column: 4 / span 8;
}

.narrative__copy > .reveal + .reveal {
  margin-top: 32px;
}

.narrative__copy p {
  max-width: 880px;
  color: var(--muted);
  font-size: clamp(21px, 2vw, 28px);
  letter-spacing: -0.025em;
  line-height: 1.42;
}

.narrative__copy .lead-copy {
  color: var(--ink);
  font-size: clamp(31px, 3.3vw, 52px);
  font-weight: 600;
  letter-spacing: -0.045em;
  line-height: 1.14;
}

.pull-quote {
  margin-top: 58px !important;
  padding-left: 32px;
  border-left: 3px solid var(--accent);
}

.pull-quote p {
  color: var(--ink);
  font-size: clamp(26px, 2.8vw, 42px);
  font-weight: 700;
  letter-spacing: -0.04em;
  line-height: 1.16;
}

.proof-section {
  overflow: hidden;
  background: var(--ink);
  color: var(--white);
}

.proof-section::before {
  position: absolute;
  top: 7%;
  right: -12%;
  width: min(52vw, 780px);
  height: min(52vw, 780px);
  border-radius: 50%;
  content: "";
  background: color-mix(in srgb, var(--accent) 34%, transparent);
  filter: blur(150px);
  opacity: 0.36;
  pointer-events: none;
}

.proof-section::after {
  position: absolute;
  top: 0;
  right: 0;
  width: 34vw;
  height: 1px;
  content: "";
  background: var(--accent);
}

.proof-section .eyebrow {
  color: #a4a59f;
}

.section-heading {
  display: grid;
  align-items: end;
  margin-top: 52px;
  grid-template-columns: minmax(0, 2fr) minmax(280px, 0.8fr);
  gap: 64px;
}

.section-heading h2,
.meaning h2,
.mentor h2,
.faq h2,
.final-cta h2 {
  font-size: clamp(48px, 5.2vw, 78px);
  font-weight: 820;
  letter-spacing: -0.058em;
  line-height: 0.98;
}

.section-heading h2 span,
.meaning h2 span,
.mentor h2 span,
.faq h2 span {
  color: var(--accent);
}

.section-heading > .reveal:last-child > p {
  max-width: 400px;
  color: var(--muted);
  font-size: 17px;
  line-height: 1.55;
}

.section-heading--light h2 span {
  color: var(--accent);
}

.section-heading--light > .reveal:last-child > p {
  color: #aaa;
}

.section-heading--wide {
  grid-template-columns: 1fr;
}

.proof-overview {
  position: relative;
  z-index: 1;
  display: grid;
  overflow: hidden;
  margin-top: 72px;
  border: 1px solid rgba(110, 140, 255, 0.28);
  border-radius: 12px;
  background: rgba(40, 61, 132, 0.16);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.11),
    0 20px 70px rgba(0, 0, 0, 0.16);
  backdrop-filter: blur(22px) saturate(120%);
  grid-template-columns: repeat(4, 1fr);
}

.proof-overview::before {
  position: absolute;
  top: -80%;
  left: -5%;
  width: 42%;
  height: 200%;
  content: "";
  background: color-mix(in srgb, var(--accent) 25%, transparent);
  filter: blur(50px);
  pointer-events: none;
  transform: rotate(18deg);
}

.proof-overview__item {
  position: relative;
  z-index: 1;
  display: flex;
  min-height: 128px;
  justify-content: space-between;
  padding: 25px 26px 23px;
  border-right: 1px solid rgba(255, 255, 255, 0.12);
  flex-direction: column;
}

.proof-overview__item:last-child {
  border-right: 0;
}

.proof-overview__item strong {
  font-size: clamp(28px, 2.8vw, 42px);
  font-weight: 760;
  letter-spacing: -0.045em;
  line-height: 1;
}

.proof-overview__item:first-child strong,
.proof-overview__item:last-child strong {
  color: #7f9aff;
}

.proof-overview__item span {
  color: #a8aaa7;
  font-family: var(--font-mono);
  font-size: 9px;
  letter-spacing: 0.06em;
  line-height: 1.4;
  text-transform: uppercase;
}

.proof-group {
  position: relative;
  z-index: 1;
  margin-top: 96px;
}

.proof-group--secondary {
  margin-top: 112px;
}

.proof-group__heading {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-bottom: 15px;
  border-bottom: 1px solid #424346;
}

.proof-group__heading p {
  font-size: 19px;
  font-weight: 650;
  letter-spacing: -0.02em;
}

.proof-group__heading span {
  color: #83847f;
  font-family: var(--font-mono);
  font-size: 9px;
  letter-spacing: 0.08em;
}

.proof-grid {
  display: grid;
  margin-top: 25px;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 66px 22px;
}

.proof-rail__track {
  display: grid;
  margin-top: 25px;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 22px;
}

.proof-rail__progress {
  display: none;
}

.proof-card {
  position: relative;
  min-width: 0;
}

.proof-card--wide {
  grid-column: span 2;
}

.proof-card__index {
  position: absolute;
  z-index: 3;
  top: 10px;
  left: 10px;
  display: grid;
  width: 34px;
  height: 34px;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.17);
  border-radius: 50%;
  background: rgba(8, 10, 17, 0.68);
  color: #d8deff;
  font-family: var(--font-mono);
  font-size: 9px;
  backdrop-filter: blur(12px);
}

.image-zoom {
  position: relative;
  display: block;
  overflow: hidden;
  width: 100%;
  margin: 0;
  padding: 0;
  border: 1px solid #2c2d2f;
  border-radius: 8px;
  background: #e9ebe9;
  cursor: zoom-in;
  text-align: left;
}

.image-zoom img {
  width: 100%;
  height: auto;
  transition: transform 380ms var(--ease-out);
}

.image-zoom__icon {
  position: absolute;
  top: 11px;
  right: 11px;
  display: grid;
  width: 34px;
  height: 34px;
  place-items: center;
  border-radius: 50%;
  background: var(--accent);
  color: var(--white);
  font-family: var(--font-mono);
  font-size: 13px;
  opacity: 0;
  transform: translateY(5px);
  transition:
    opacity 220ms ease,
    transform 220ms var(--ease-out);
}

.image-zoom:hover img {
  transform: scale(1.012);
}

.image-zoom:hover .image-zoom__icon,
.image-zoom:focus-visible .image-zoom__icon {
  opacity: 1;
  transform: translateY(0);
}

.proof-card__caption {
  display: grid;
  align-items: end;
  margin-top: 18px;
  padding: 16px 14px 14px;
  border: 1px solid rgba(110, 140, 255, 0.14);
  border-radius: 8px;
  background: rgba(40, 61, 132, 0.08);
  backdrop-filter: blur(12px);
  grid-template-columns: auto 1fr;
  gap: 4px 14px;
}

.proof-card__caption strong {
  color: var(--accent);
  font-size: clamp(25px, 2.25vw, 35px);
  font-weight: 750;
  letter-spacing: -0.035em;
  line-height: 1;
  grid-row: 1 / span 2;
}

.proof-card__caption p {
  font-size: 14px;
  font-weight: 650;
  line-height: 1.2;
}

.proof-card__caption span {
  color: #92938f;
  font-size: 11px;
  line-height: 1.35;
}

.meaning {
  background: var(--white);
}

.meaning__grid {
  display: grid;
  margin-top: 56px;
  grid-template-columns: minmax(0, 5fr) minmax(0, 6fr);
  gap: clamp(64px, 8vw, 130px);
}

.meaning h2 {
  position: sticky;
  top: 118px;
  align-self: start;
}

.meaning__copy > .reveal {
  padding-block: 27px;
  border-top: 1px solid var(--line);
}

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

.meaning__copy p {
  color: var(--muted);
  font-size: clamp(20px, 1.75vw, 25px);
  letter-spacing: -0.02em;
  line-height: 1.48;
}

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

.process {
  scroll-margin-top: 68px;
}

.process-list {
  margin-top: 82px;
  border-top: 1px solid var(--ink);
}

.process-row {
  display: grid;
  position: relative;
  min-height: 142px;
  align-items: center;
  border-bottom: 1px solid var(--line);
  grid-template-columns: 80px minmax(260px, 0.9fr) minmax(0, 1.25fr) 34px;
  gap: 28px;
  transition: background 260ms ease;
}

.process-row::before {
  position: absolute;
  z-index: -1;
  inset: 0 calc(50% - 50vw);
  content: "";
  background: var(--white);
  opacity: 0;
  transition: opacity 220ms ease;
}

.process-row:hover::before {
  opacity: 1;
}

.process-row__number {
  color: var(--accent);
  font-family: var(--font-mono);
  font-size: 12px;
  font-weight: 600;
}

.process-row h3 {
  font-size: clamp(23px, 2.2vw, 34px);
  font-weight: 700;
  letter-spacing: -0.035em;
  line-height: 1.08;
}

.process-row p {
  max-width: 610px;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.5;
}

.process-row__arrow {
  color: var(--muted);
  font-family: var(--font-mono);
  transition:
    color 220ms ease,
    transform 220ms var(--ease-out);
}

.process-row:hover .process-row__arrow {
  color: var(--accent);
  transform: translate(4px, 4px);
}

.obstacles {
  border-top: 1px solid var(--line);
  background: var(--white);
}

.obstacle-grid {
  display: grid;
  margin-top: 88px;
  border-top: 1px solid var(--ink);
  border-bottom: 1px solid var(--ink);
  grid-template-columns: repeat(3, 1fr);
}

.obstacle {
  min-height: 330px;
  padding: 30px 36px 40px;
  border-right: 1px solid var(--line);
}

.obstacle:last-child {
  border-right: 0;
}

.obstacle > span {
  color: var(--accent);
  font-family: var(--font-mono);
  font-size: 13px;
  font-weight: 600;
}

.obstacle p {
  margin-top: 104px;
  font-size: clamp(21px, 2vw, 28px);
  font-weight: 600;
  letter-spacing: -0.03em;
  line-height: 1.25;
}

.mentor {
  scroll-margin-top: 68px;
}

.mentor__grid {
  display: grid;
  align-items: start;
  grid-template-columns: minmax(320px, 5fr) minmax(0, 6fr);
  gap: clamp(64px, 9vw, 145px);
}

.mentor__visual figure {
  position: sticky;
  top: 104px;
}

.mentor__portrait {
  overflow: hidden;
  border-radius: 10px;
  background: var(--ink);
  aspect-ratio: 4 / 5;
}

.mentor__visual figcaption {
  padding-top: 13px;
  color: var(--muted);
  font-family: var(--font-mono);
  font-size: 9px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.mentor__copy .eyebrow {
  margin-bottom: 48px;
}

.mentor h2 {
  font-size: clamp(60px, 7vw, 108px);
}

.mentor__copy > .reveal > p {
  max-width: 700px;
  margin-top: 34px;
  color: var(--muted);
  font-size: clamp(19px, 1.65vw, 24px);
  letter-spacing: -0.02em;
  line-height: 1.5;
}

.mentor__copy > .reveal > p strong {
  color: var(--ink);
}

.mentor-stats {
  display: grid;
  margin-top: 56px;
  border-top: 1px solid var(--ink);
  border-bottom: 1px solid var(--ink);
  grid-template-columns: repeat(3, 1fr);
}

.mentor-stats .reveal {
  display: flex;
  min-height: 108px;
  align-items: end;
  padding: 20px 18px;
  border-right: 1px solid var(--line);
}

.mentor-stats .reveal:first-child {
  padding-left: 0;
}

.mentor-stats .reveal:last-child {
  border-right: 0;
}

.mentor-stats span {
  max-width: 130px;
  font-size: 14px;
  font-weight: 650;
  line-height: 1.3;
}

.testimonials {
  background: var(--white);
}

.testimonial-grid {
  display: grid;
  align-items: start;
  margin-top: 82px;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 26px;
}

.testimonial:nth-child(2) {
  margin-top: 76px;
}

.testimonial .image-zoom {
  border-color: var(--line);
  background: #f1f1ed;
}

.testimonial blockquote {
  margin-top: 24px;
  font-size: clamp(20px, 1.9vw, 28px);
  font-weight: 650;
  letter-spacing: -0.03em;
  line-height: 1.25;
}

.testimonial > p {
  margin-top: 12px;
  color: var(--muted);
  font-family: var(--font-mono);
  font-size: 10px;
  line-height: 1.5;
}

.disclosure {
  padding-block: 112px;
}

.disclosure__grid {
  display: grid;
  padding-block: 42px;
  border-top: 2px solid var(--accent);
  border-bottom: 1px solid var(--line);
  grid-template-columns: minmax(220px, 3fr) minmax(0, 8fr);
  gap: 60px;
}

.disclosure__copy p {
  max-width: 940px;
  color: var(--muted);
  font-size: clamp(22px, 2.15vw, 31px);
  letter-spacing: -0.025em;
  line-height: 1.4;
}

.disclosure__copy p + p {
  margin-top: 24px;
  font-size: clamp(18px, 1.7vw, 24px);
}

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

.faq {
  scroll-margin-top: 68px;
  background: var(--white);
}

.faq__grid {
  display: grid;
  grid-template-columns: minmax(280px, 4fr) minmax(0, 7fr);
  gap: clamp(64px, 10vw, 160px);
}

.faq__heading {
  align-self: start;
  position: sticky;
  top: 116px;
}

.faq__heading .eyebrow {
  margin-bottom: 48px;
}

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

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

.faq-item h3 {
  margin: 0;
}

.faq-item button {
  display: flex;
  width: 100%;
  min-height: 94px;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
  padding: 20px 0;
  border: 0;
  background: none;
  cursor: pointer;
  font-size: clamp(19px, 1.8vw, 25px);
  font-weight: 650;
  letter-spacing: -0.025em;
  text-align: left;
}

.faq-item__plus {
  flex: 0 0 auto;
  color: var(--accent);
  font-family: var(--font-mono);
  font-size: 27px;
  font-weight: 400;
  transition: transform 260ms var(--ease-out);
}

.faq-item--open .faq-item__plus {
  transform: rotate(45deg);
}

.faq-item__answer {
  display: grid;
  grid-template-rows: 0fr;
  transition: grid-template-rows 300ms var(--ease-out);
}

.faq-item--open .faq-item__answer {
  grid-template-rows: 1fr;
}

.faq-item__answer > div {
  overflow: hidden;
}

.faq-item__answer p {
  max-width: 680px;
  padding: 0 64px 30px 0;
  color: var(--muted);
  font-size: 16px;
  line-height: 1.6;
}

.final-cta {
  overflow: hidden;
  background: var(--accent);
  color: var(--white);
}

.final-cta::before {
  position: absolute;
  right: -10vw;
  bottom: -26vw;
  width: 64vw;
  height: 64vw;
  border: 1px solid color-mix(in srgb, white 26%, transparent);
  border-radius: 50%;
  content: "";
}

.final-cta__inner {
  position: relative;
  z-index: 1;
}

.final-cta__index {
  margin-bottom: 48px;
  font-family: var(--font-mono);
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.final-cta h2 {
  max-width: 1220px;
  font-size: clamp(54px, 6.5vw, 103px);
}

.final-cta h2 span {
  color: var(--ink);
}

.final-cta .button-link {
  margin-top: 54px;
}

.site-footer {
  padding-block: 64px 34px;
  background: var(--ink);
  color: var(--white);
}

.site-footer__top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-bottom: 45px;
  border-bottom: 1px solid #333437;
}

.wordmark--light span {
  color: var(--accent);
}

.site-footer nav {
  display: flex;
  gap: 28px;
  color: #b2b3ae;
  font-size: 14px;
}

.site-footer nav a:hover {
  color: var(--white);
}

.site-footer__disclaimer {
  max-width: 1040px;
  padding-block: 36px 44px;
  color: #858680;
  font-size: 12px;
  line-height: 1.65;
}

.site-footer__bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 24px;
  border-top: 1px solid #333437;
  color: #858680;
  font-family: var(--font-mono);
  font-size: 9px;
  letter-spacing: 0.02em;
}

.site-footer__bottom a {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--white);
  font-family: var(--font-sans);
  font-size: 13px;
  font-weight: 600;
}

.site-footer__bottom a span {
  color: var(--accent);
  transition: transform 220ms var(--ease-out);
}

.site-footer__bottom a:hover span {
  transform: translateY(-3px);
}

.reveal {
  --reveal-delay: 0ms;
}

@media (prefers-reduced-motion: no-preference) {
  html.js .reveal {
    opacity: 0;
    transform: translateY(16px);
    transition:
      opacity 500ms var(--ease-out) var(--reveal-delay),
      transform 500ms var(--ease-out) var(--reveal-delay);
  }

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

  html.js .reveal > :is(h1, h2) {
    clip-path: inset(0 0 100% 0);
    filter: blur(3px);
    transform: translateY(18px);
    transition:
      clip-path 720ms var(--ease-out) var(--reveal-delay),
      filter 680ms var(--ease-out) var(--reveal-delay),
      transform 720ms var(--ease-out) var(--reveal-delay);
  }

  html.js .reveal.is-visible > :is(h1, h2) {
    clip-path: inset(-8% -4% -8% -4%);
    filter: blur(0);
    transform: translateY(0);
  }
}

.lightbox {
  position: fixed;
  z-index: 1000;
  display: grid;
  inset: 0;
  place-items: center;
  padding: 50px;
  background: color-mix(in srgb, var(--ink) 95%, transparent);
  cursor: zoom-out;
}

.lightbox img {
  width: auto;
  max-width: min(1100px, 92vw);
  height: auto;
  max-height: 90vh;
  border-radius: 6px;
  object-fit: contain;
  box-shadow: 0 30px 90px rgba(0, 0, 0, 0.45);
  cursor: default;
}

.lightbox__close {
  position: fixed;
  top: 22px;
  right: 24px;
  display: grid;
  width: 44px;
  height: 44px;
  place-items: center;
  border: 1px solid #47484a;
  border-radius: 50%;
  background: var(--ink);
  color: var(--white);
  cursor: pointer;
  font-family: var(--font-mono);
  font-size: 28px;
  line-height: 1;
}

/* Legal pages */
.legal-page {
  min-height: 70vh;
  padding-block: 104px 140px;
  background: var(--white);
}

.legal-page__grid {
  display: grid;
  grid-template-columns: minmax(180px, 3fr) minmax(0, 8fr) 1fr;
  gap: 40px;
}

.legal-page__content {
  max-width: 780px;
}

.legal-page h1 {
  margin-bottom: 62px;
  font-size: clamp(58px, 7vw, 104px);
  font-weight: 850;
  letter-spacing: -0.06em;
  line-height: 0.9;
}

.legal-page h1 span {
  color: var(--accent);
}

.legal-page h2 {
  margin-top: 48px;
  margin-bottom: 14px;
  padding-top: 26px;
  border-top: 1px solid var(--line);
  font-size: 24px;
  font-weight: 700;
  letter-spacing: -0.03em;
  line-height: 1.2;
}

.legal-page h3 {
  margin: 30px 0 10px;
  color: var(--ink);
  font-size: 18px;
  font-weight: 700;
  letter-spacing: -0.02em;
  line-height: 1.3;
}

.legal-page__intro {
  color: var(--ink) !important;
  font-size: 19px !important;
}

.legal-page p,
.legal-page li {
  color: var(--muted);
  font-size: 17px;
  line-height: 1.65;
}

.legal-page p + p {
  margin-top: 14px;
}

.legal-page ul {
  margin: 16px 0 0;
  padding-left: 22px;
}

.legal-page a:not(.button-link) {
  color: var(--accent);
  text-decoration: underline;
  text-decoration-thickness: 1px;
  text-underline-offset: 3px;
}

.legal-notice {
  margin: 0 0 46px;
  padding: 20px 22px;
  border-left: 3px solid var(--accent);
  background: var(--paper);
}

.legal-notice p {
  color: var(--ink);
  font-size: 14px;
  line-height: 1.55;
}

.legal-back {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  margin-top: 58px;
  color: var(--ink) !important;
  font-size: 14px;
  font-weight: 650;
  text-decoration: none !important;
}

@media (max-width: 640px) {
  .final-cta h2 {
    font-size: clamp(42px, 12vw, 56px);
    hyphens: auto;
    overflow-wrap: anywhere;
  }
}

@media (max-width: 1180px) {
  .shell {
    width: min(100% - 64px, 1360px);
  }

  .hero {
    padding-top: 60px;
  }

  .hero__grid {
    grid-template-columns: minmax(0, 1.45fr) minmax(300px, 0.72fr);
    gap: 52px;
  }

  .hero h1 {
    font-size: clamp(58px, 7.25vw, 82px);
  }

  .hero__action {
    align-items: flex-start;
    flex-direction: column;
    gap: 16px;
  }

  .benefit {
    padding-inline: 20px;
  }

  .process-row {
    grid-template-columns: 60px minmax(220px, 0.9fr) minmax(0, 1.15fr) 24px;
    gap: 20px;
  }

  .obstacle {
    padding-inline: 26px;
  }

  .obstacle p {
    margin-top: 72px;
  }
}

@media (max-width: 860px) {
  :root {
    --header-height: 72px;
  }

  .shell {
    width: min(100% - 40px, 760px);
  }

  .section-shell {
    padding-block: 104px;
  }

  .site-header,
  .site-header--compact {
    height: 72px;
  }

  .site-header__inner {
    display: flex;
    justify-content: space-between;
  }

  .main-nav {
    display: none;
  }

  .header-cta {
    margin-left: auto;
    margin-right: 14px;
    min-height: 40px;
    padding-inline: 14px;
    font-size: 12px;
  }

  .menu-button {
    display: flex;
    width: 42px;
    height: 42px;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 6px;
    padding: 0;
    border: 1px solid var(--line);
    border-radius: 8px;
    background: transparent;
    cursor: pointer;
  }

  .menu-button span {
    width: 16px;
    height: 1.5px;
    background: var(--ink);
    transition: transform 220ms var(--ease-out);
  }

  .menu-button--open span:first-child {
    transform: translateY(3.75px) rotate(45deg);
  }

  .menu-button--open span:last-child {
    transform: translateY(-3.75px) rotate(-45deg);
  }

  .mobile-panel {
    position: absolute;
    z-index: 1;
    display: grid;
    top: 100%;
    right: 0;
    left: 0;
    height: calc(100dvh - 72px);
    overflow: hidden;
    background: var(--paper);
    grid-template-rows: 0fr;
    opacity: 0;
    pointer-events: none;
    transition:
      grid-template-rows 360ms var(--ease-out),
      opacity 220ms ease;
  }

  .mobile-panel--open {
    grid-template-rows: 1fr;
    opacity: 1;
    pointer-events: auto;
  }

  .mobile-nav {
    display: flex;
    min-height: 0;
    overflow: hidden;
    padding-block: 32px 48px;
    flex-direction: column;
  }

  .mobile-nav > a:not(.button-link) {
    display: flex;
    align-items: baseline;
    gap: 24px;
    padding-block: 18px;
    border-bottom: 1px solid var(--line);
    font-size: clamp(34px, 8vw, 58px);
    font-weight: 750;
    letter-spacing: -0.045em;
    line-height: 1;
  }

  .mobile-nav > a:not(.button-link) span {
    color: var(--accent);
    font-family: var(--font-mono);
    font-size: 10px;
  }

  .mobile-nav .button-link {
    align-self: flex-start;
    margin-top: auto;
  }

  .hero {
    padding-top: 46px;
    padding-bottom: 80px;
  }

  .hero__grid {
    grid-template-columns: 1fr;
    gap: 58px;
  }

  .hero h1 {
    max-width: 720px;
    font-size: clamp(57px, 12.1vw, 94px);
  }

  .hero__intro {
    max-width: 630px;
  }

  .hero__visual {
    width: min(72vw, 500px);
    justify-self: end;
  }

  .benefit-strip {
    grid-template-columns: repeat(2, 1fr);
  }

  .benefit:nth-child(2) {
    border-right: 0;
  }

  .benefit:nth-child(-n + 2) {
    border-bottom: 1px solid var(--line);
  }

  .narrative__grid {
    display: block;
  }

  .narrative__copy {
    margin-top: 58px;
  }

  .section-heading,
  .meaning__grid,
  .faq__grid {
    grid-template-columns: minmax(0, 1fr);
    gap: 42px;
  }

  .section-heading > *,
  .meaning__grid > *,
  .faq__grid > * {
    min-width: 0;
  }

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

  .proof-rail {
    position: relative;
    margin-inline: -20px;
  }

  .proof-rail::before,
  .proof-rail::after {
    position: absolute;
    z-index: 4;
    top: 0;
    bottom: 44px;
    width: 24px;
    content: "";
    pointer-events: none;
  }

  .proof-rail::before {
    left: 0;
    background: linear-gradient(90deg, var(--ink), transparent);
  }

  .proof-rail::after {
    right: 0;
    background: linear-gradient(-90deg, var(--ink), transparent);
  }

  .proof-rail__track {
    display: flex;
    overflow-x: auto;
    margin-top: 25px;
    padding: 0 20px 10px;
    gap: 14px;
    overscroll-behavior-x: contain;
    scroll-padding-inline: 20px;
    scroll-snap-type: x mandatory;
    scrollbar-width: none;
  }

  .proof-rail__track::-webkit-scrollbar {
    display: none;
  }

  .proof-rail__track > .proof-card {
    flex: 0 0 min(76vw, 430px);
    scroll-snap-align: start;
    scroll-snap-stop: always;
  }

  .proof-rail__progress {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 14px;
    padding: 12px 20px 0;
    color: #858782;
    font-family: var(--font-mono);
    font-size: 9px;
  }

  .proof-rail__dots {
    display: flex;
    width: 100%;
    align-items: center;
    gap: 5px;
  }

  .proof-rail__dots button {
    position: relative;
    height: 20px;
    flex: 1;
    padding: 0;
    border: 0;
    background: transparent;
    cursor: pointer;
  }

  .proof-rail__dots button::before {
    position: absolute;
    top: 9px;
    right: 0;
    left: 0;
    height: 2px;
    content: "";
    background: #32343a;
    transition:
      background 260ms ease,
      transform 260ms var(--ease-out);
  }

  .proof-rail__dots button[aria-current="true"]::before {
    background: var(--accent);
    transform: scaleY(1.5);
  }

  .proof-card--wide {
    grid-column: span 2;
  }

  .meaning h2,
  .faq__heading {
    position: static;
  }

  .process-row {
    min-height: 168px;
    padding-block: 24px;
    grid-template-columns: 52px minmax(0, 1fr) 20px;
  }

  .process-row h3 {
    grid-column: 2;
  }

  .process-row p {
    grid-column: 2;
  }

  .process-row__number {
    align-self: start;
    grid-column: 1;
    grid-row: 1 / span 2;
  }

  .process-row__arrow {
    grid-column: 3;
    grid-row: 1 / span 2;
  }

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

  .obstacle {
    min-height: 0;
    padding: 28px 0 34px;
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .obstacle:last-child {
    border-bottom: 0;
  }

  .obstacle p {
    max-width: 630px;
    margin-top: 40px;
  }

  .mentor__grid {
    grid-template-columns: 1fr;
    gap: 70px;
  }

  .mentor__visual {
    width: min(74vw, 520px);
  }

  .mentor__visual figure {
    position: static;
  }

  .testimonial-grid {
    gap: 18px;
  }

  .disclosure__grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .faq__heading .eyebrow {
    margin-bottom: 34px;
  }

  .legal-page__grid {
    grid-template-columns: 1fr;
  }

  .legal-page__grid > .reveal:first-child {
    margin-bottom: 20px;
  }
}

@media (max-width: 580px) {
  .shell {
    width: min(100% - 40px, 520px);
  }

  .section-shell {
    padding-block: 88px;
  }

  .wordmark {
    font-size: 16px;
  }

  .header-cta {
    min-height: 38px;
    padding-inline: 12px;
    font-size: 11px;
  }

  .header-cta span {
    display: none;
  }

  .hero {
    padding-top: 38px;
    padding-bottom: 70px;
  }

  .hero__grid {
    margin-top: 30px;
  }

  .hero h1 {
    font-size: clamp(48px, 15.2vw, 74px);
    line-height: 0.91;
  }

  .hero h1 span {
    margin-top: 10px;
  }

  .hero__intro {
    margin-top: 30px;
    font-size: 17px;
  }

  .hero__action {
    margin-top: 30px;
  }

  .button-link {
    width: 100%;
    min-height: 56px;
    justify-content: space-between;
    gap: 18px;
    padding-inline: 19px;
    font-size: 14px;
  }

  .hero__visual {
    width: 100%;
  }

  .benefit-strip {
    margin-top: 64px;
    grid-template-columns: 1fr;
  }

  .benefit {
    min-height: 0;
    padding: 24px 0 26px;
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .benefit:nth-child(-n + 2) {
    border-bottom: 1px solid var(--line);
  }

  .benefit:last-child {
    border-bottom: 0;
  }

  .benefit h2 {
    margin-top: 14px;
  }

  .narrative__copy {
    margin-top: 45px;
  }

  .narrative__copy .lead-copy {
    font-size: 31px;
  }

  .narrative__copy p {
    font-size: 19px;
  }

  .pull-quote {
    margin-top: 40px !important;
    padding-left: 20px;
  }

  .pull-quote p {
    font-size: 26px;
  }

  .section-heading {
    margin-top: 42px;
  }

  .section-heading h2,
  .meaning h2,
  .mentor h2,
  .faq h2 {
    font-size: clamp(43px, 13vw, 63px);
  }

  .proof-grid {
    margin-top: 62px;
    grid-template-columns: 1fr;
  }

  .proof-overview {
    margin-top: 56px;
    grid-template-columns: repeat(2, 1fr);
  }

  .proof-overview__item {
    min-height: 112px;
    padding: 20px;
  }

  .proof-overview__item:nth-child(2) {
    border-right: 0;
  }

  .proof-overview__item:nth-child(-n + 2) {
    border-bottom: 1px solid rgba(255, 255, 255, 0.12);
  }

  .proof-group,
  .proof-group--secondary {
    margin-top: 72px;
  }

  .proof-grid--landscape {
    margin-top: 25px;
  }

  .proof-rail__track > .proof-card {
    flex-basis: 82vw;
  }

  .proof-card--wide {
    grid-column: auto;
  }

  .proof-card__caption {
    grid-template-columns: auto 1fr;
  }

  .meaning__grid {
    margin-top: 44px;
  }

  .meaning__copy p {
    font-size: 19px;
  }

  .process-list {
    margin-top: 62px;
  }

  .process-row {
    min-height: 0;
    padding-block: 24px;
    grid-template-columns: 38px minmax(0, 1fr);
    gap: 10px 16px;
  }

  .process-row h3 {
    font-size: 23px;
  }

  .process-row p {
    font-size: 14px;
  }

  .process-row__arrow {
    display: none;
  }

  .obstacle-grid {
    margin-top: 58px;
  }

  .obstacle p {
    font-size: 22px;
  }

  .mentor__visual {
    width: 100%;
  }

  .mentor__copy .eyebrow {
    margin-bottom: 38px;
  }

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

  .mentor-stats .reveal,
  .mentor-stats .reveal:first-child {
    min-height: 64px;
    align-items: center;
    padding: 14px 0;
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .mentor-stats .reveal:last-child {
    border-bottom: 0;
  }

  .mentor-stats span {
    max-width: none;
  }

  .testimonial-grid {
    margin-top: 60px;
    grid-template-columns: 1fr;
    gap: 70px;
  }

  .testimonial:nth-child(2) {
    margin-top: 0;
  }

  .disclosure {
    padding-block: 72px;
  }

  .disclosure__copy p {
    font-size: 21px;
  }

  .faq-item button {
    min-height: 82px;
    font-size: 18px;
  }

  .faq-item__answer p {
    padding-right: 0;
  }

  .final-cta h2 {
    font-size: clamp(42px, 12vw, 56px);
    hyphens: auto;
    overflow-wrap: anywhere;
  }

  .final-cta .button-link {
    margin-top: 40px;
  }

  .site-footer__top,
  .site-footer__bottom {
    align-items: flex-start;
    flex-direction: column;
    gap: 24px;
  }

  .site-footer__bottom a {
    align-self: flex-end;
  }

  .lightbox {
    padding: 56px 16px 18px;
  }

  .legal-page {
    padding-block: 72px 100px;
  }

  .legal-page h1 {
    margin-bottom: 44px;
    font-size: clamp(53px, 17vw, 78px);
  }

  .legal-page p,
  .legal-page li {
    font-size: 16px;
  }
}

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

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