@font-face {
  font-family: "Albert Sans";
  src: url("/assets/fonts/albert-sans-latin.woff2") format("woff2");
  font-display: swap;
}

@font-face {
  font-family: "Instrument Sans";
  src: url("/assets/fonts/instrument-sans-latin.woff2") format("woff2");
  font-display: swap;
}

@font-face {
  font-family: "Instrument Sans";
  src: url("/assets/fonts/instrument-sans-italic-latin.woff2") format("woff2");
  font-style: italic;
  font-display: swap;
}

@font-face {
  font-family: "IBM Plex Mono";
  src: url("/assets/fonts/ibm-plex-mono-400-latin.woff2") format("woff2");
  font-display: swap;
}

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

:root {
  --paper: #fdf9f0;
  --paper-raised: #fffdf7;
  --paper-warm: #f4ecda;
  --ink: #1b1b15;
  --ink-soft: #403d33;
  --muted: #6f6a5c;
  --muted-light: #c9c5b4;
  --line: #e6dbbf;
  --line-dark: #313126;
  --gold: #cf9f2f;
  --gold-dark: #96700f;
  --blue: #3f5da8;
  --olive: #8a8a3d;
  --green: #3a7d6e;
  --rose: #b4635a;
  --teal: #1e5f6e;
  --danger: #9c3f32;
  --content: 1240px;
  --text: 720px;
  --radius: 6px;
  --shadow: 0 22px 70px rgba(27, 27, 21, 0.08);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-width: 320px;
  overflow-x: hidden;
  background: var(--paper);
  color: var(--ink);
  font-family: "Instrument Sans", Arial, sans-serif;
  font-size: 17px;
  line-height: 1.5;
}

body.menu-open {
  overflow: hidden;
}

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

a {
  color: inherit;
}

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

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

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

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

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

.container {
  width: min(var(--content), calc(100% - 64px));
  margin-inline: auto;
}

.text-container {
  max-width: var(--text);
}

.eyebrow,
.meta,
.micro,
.field-label {
  margin: 0;
  font-family: "IBM Plex Mono", monospace;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.14em;
  line-height: 1.4;
  text-transform: uppercase;
}

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

.eyebrow.on-dark {
  color: var(--gold);
}

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

.site-header {
  position: relative;
  z-index: 20;
  border-bottom: 1px solid rgba(49, 49, 38, 0.16);
  background: rgba(253, 249, 240, 0.96);
}

.nav-shell {
  display: flex;
  min-height: 78px;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  color: var(--ink);
  font-family: "Albert Sans", sans-serif;
  font-size: 20px;
  font-weight: 700;
  line-height: 1;
  text-decoration: none;
}

.brand img {
  width: 28px;
  height: 28px;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 30px;
}

.nav-link {
  padding-block: 8px;
  color: var(--ink-soft);
  font-size: 15px;
  font-weight: 650;
  text-decoration: none;
}

.nav-link:hover,
.nav-link[aria-current="page"] {
  color: var(--gold-dark);
}

.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  place-items: center;
  border: 1px solid var(--line-dark);
  border-radius: 50%;
  background: transparent;
  color: var(--ink);
  cursor: pointer;
}

.nav-toggle span,
.nav-toggle::before,
.nav-toggle::after {
  width: 18px;
  height: 1.5px;
  background: currentColor;
  content: "";
  transition: transform 160ms ease, opacity 160ms ease;
}

.nav-toggle {
  gap: 4px;
}

.nav-toggle[aria-expanded="true"] span {
  opacity: 0;
}

.nav-toggle[aria-expanded="true"]::before {
  transform: translateY(5.5px) rotate(45deg);
}

.nav-toggle[aria-expanded="true"]::after {
  transform: translateY(-5.5px) rotate(-45deg);
}

.button {
  display: inline-flex;
  min-height: 50px;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 12px 24px;
  border: 1.5px solid var(--ink);
  border-radius: 4px;
  background: var(--ink);
  color: var(--paper);
  font-family: "Albert Sans", sans-serif;
  font-size: 16px;
  font-weight: 700;
  line-height: 1.1;
  text-align: center;
  text-decoration: none;
  cursor: pointer;
  transition: background 160ms ease, border-color 160ms ease, color 160ms ease, transform 160ms ease;
}

.button:hover {
  border-color: var(--gold);
  background: var(--gold);
  color: var(--ink);
  transform: translateY(-1px);
}

.button.secondary {
  background: transparent;
  color: var(--ink);
}

.button.secondary:hover {
  background: var(--ink);
  color: var(--paper);
}

.button.gold {
  border-color: var(--gold);
  background: var(--gold);
  color: var(--ink);
}

.button.gold:hover {
  border-color: var(--paper);
  background: var(--paper);
}

.button.on-dark-secondary {
  border-color: rgba(253, 249, 240, 0.72);
  background: transparent;
  color: var(--paper);
}

.button.on-dark-secondary:hover {
  border-color: var(--gold);
  background: transparent;
  color: var(--gold);
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--ink);
  font-weight: 700;
  text-decoration-thickness: 1px;
  text-underline-offset: 5px;
}

.text-link::after {
  content: "\2192";
  color: var(--gold-dark);
  font-family: "IBM Plex Mono", monospace;
}

.text-link:hover {
  color: var(--gold-dark);
}

.hero {
  position: relative;
  overflow: hidden;
  background: var(--ink);
  color: var(--paper);
}

.hero::after,
.dark-band::after,
.footer-band::after {
  position: absolute;
  right: -140px;
  bottom: -280px;
  width: 520px;
  height: 520px;
  border: 1px solid rgba(207, 159, 47, 0.34);
  border-radius: 50%;
  content: "";
  pointer-events: none;
}

.hero-inner {
  position: relative;
  z-index: 1;
  display: grid;
  min-height: min(700px, calc(100svh - 78px));
  grid-template-columns: minmax(0, 1.18fr) minmax(340px, 0.82fr);
  align-items: center;
  gap: clamp(42px, 5vw, 72px);
  padding-block: clamp(42px, 4vw, 58px) clamp(48px, 4.5vw, 64px);
}

.hero-copy h1,
.page-hero h1 {
  margin: 14px 0 0;
  font-family: "Albert Sans", sans-serif;
  font-size: clamp(58px, 6.2vw, 84px);
  font-weight: 700;
  letter-spacing: 0;
  line-height: 0.86;
}

.hero-statement {
  max-width: 770px;
  margin: 20px 0 0;
  font-family: "Albert Sans", sans-serif;
  font-size: clamp(28px, 2.8vw, 38px);
  font-weight: 600;
  letter-spacing: 0;
  line-height: 1.05;
}

.hero-lede,
.page-hero .lede {
  max-width: 680px;
  margin: 18px 0 0;
  font-size: clamp(18px, 1.6vw, 22px);
  line-height: 1.46;
}

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

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

.hero-actions,
.section-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 26px;
}

.hero-meta {
  margin: 18px 0 0;
  color: #8f8b7c;
  font-family: "IBM Plex Mono", monospace;
  font-size: 11px;
  letter-spacing: 0.08em;
  line-height: 1.7;
  text-transform: uppercase;
}

.phase-visual {
  position: relative;
  width: min(100%, 460px);
  margin-inline: auto;
}

.phase-visual svg {
  width: 100%;
  filter: drop-shadow(0 24px 54px rgba(0, 0, 0, 0.22));
}

.phase-caption {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  margin-top: 16px;
  padding-top: 14px;
  border-top: 1px solid rgba(253, 249, 240, 0.22);
  color: #a8a394;
  font-family: "IBM Plex Mono", monospace;
  font-size: 10px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.color-rule {
  display: grid;
  height: 8px;
  grid-template-columns: repeat(6, 1fr);
}

.color-rule span:nth-child(1) { background: var(--gold); }
.color-rule span:nth-child(2) { background: var(--blue); }
.color-rule span:nth-child(3) { background: var(--teal); }
.color-rule span:nth-child(4) { background: var(--rose); }
.color-rule span:nth-child(5) { background: var(--olive); }
.color-rule span:nth-child(6) { background: var(--green); }

.section {
  padding-block: clamp(78px, 9vw, 124px);
}

.section.compact {
  padding-block: clamp(58px, 7vw, 88px);
}

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

.section-header {
  max-width: 780px;
}

.section-header.center {
  margin-inline: auto;
  text-align: center;
}

.section h2,
.dark-band h2,
.offer-band h2,
.form-section h2 {
  margin: 14px 0 0;
  font-family: "Albert Sans", sans-serif;
  font-size: clamp(40px, 5vw, 68px);
  font-weight: 700;
  letter-spacing: 0;
  line-height: 0.98;
}

.section h3,
.dark-band h3 {
  margin: 0;
  font-family: "Albert Sans", sans-serif;
  font-size: clamp(24px, 2.3vw, 34px);
  font-weight: 700;
  line-height: 1.05;
}

.section-lede {
  max-width: 720px;
  margin: 22px 0 0;
  color: var(--muted);
  font-size: clamp(18px, 1.8vw, 22px);
  line-height: 1.55;
}

.center .section-lede {
  margin-inline: auto;
}

.definition {
  max-width: 1040px;
  margin: 0 auto;
  font-family: "Albert Sans", sans-serif;
  font-size: clamp(30px, 4vw, 55px);
  font-weight: 650;
  letter-spacing: 0;
  line-height: 1.12;
  text-align: center;
}

.definition span {
  padding-bottom: 3px;
  border-bottom: 4px solid currentColor;
}

.definition .aim { color: var(--gold-dark); }
.definition .challenge { color: var(--teal); }
.definition .delegate { color: var(--olive); }
.definition .inform { color: var(--green); }
.definition .revise { color: var(--rose); }
.definition .reality { color: var(--blue); }

.split {
  display: grid;
  grid-template-columns: minmax(280px, 0.78fr) minmax(0, 1.22fr);
  align-items: start;
  gap: clamp(44px, 7vw, 100px);
}

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

.problem-row {
  display: grid;
  grid-template-columns: 42px 1fr;
  gap: 18px;
  padding-block: 24px;
  border-top: 1px solid var(--line);
}

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

.problem-row .number {
  color: var(--gold-dark);
  font-family: "IBM Plex Mono", monospace;
  font-size: 12px;
  letter-spacing: 0.08em;
}

.problem-row strong {
  display: block;
  font-family: "Albert Sans", sans-serif;
  font-size: 22px;
  line-height: 1.12;
}

.problem-row p {
  margin: 8px 0 0;
  color: var(--muted);
}

.report-band {
  background: var(--paper-warm);
}

.report-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.04fr) minmax(360px, 0.96fr);
  align-items: center;
  gap: clamp(46px, 7vw, 96px);
}

.report-list {
  display: grid;
  margin-top: 30px;
}

.report-list div {
  display: grid;
  grid-template-columns: 24px 1fr;
  gap: 12px;
  padding-block: 13px;
  border-top: 1px solid rgba(49, 49, 38, 0.16);
}

.report-list div:last-child {
  border-bottom: 1px solid rgba(49, 49, 38, 0.16);
}

.report-list span {
  color: var(--gold-dark);
  font-family: "IBM Plex Mono", monospace;
}

.report-list p {
  margin: 0;
}

.identity-preview {
  position: relative;
  overflow: hidden;
  min-height: 560px;
  border-radius: var(--radius);
  background: var(--ink);
  box-shadow: 12px 12px 0 var(--gold);
  color: var(--paper);
}

.identity-preview::before {
  position: absolute;
  top: 56px;
  right: -118px;
  width: 330px;
  height: 330px;
  border: 1px solid rgba(207, 159, 47, 0.35);
  border-radius: 50%;
  content: "";
}

.identity-preview-inner {
  position: relative;
  z-index: 1;
  display: flex;
  min-height: 560px;
  flex-direction: column;
  justify-content: flex-end;
  padding: clamp(34px, 5vw, 56px);
}

.identity-preview .mark {
  position: absolute;
  top: 38px;
  left: 38px;
  width: 34px;
  height: 34px;
}

.identity-preview h3 {
  max-width: 420px;
  margin-top: 14px;
  font-size: clamp(46px, 5.2vw, 72px);
  line-height: 0.92;
}

.identity-preview p {
  max-width: 430px;
  margin: 18px 0 0;
  color: var(--muted-light);
  font-size: 18px;
}

.identity-pair {
  margin-top: 24px;
  color: var(--gold);
  font-family: "IBM Plex Mono", monospace;
  font-size: 12px;
  letter-spacing: 0.12em;
  line-height: 1.5;
  text-transform: uppercase;
}

.path-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 24px;
  margin-top: 42px;
}

.path-panel {
  display: flex;
  min-height: 410px;
  flex-direction: column;
  padding: clamp(32px, 4vw, 52px);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--paper-raised);
}

.path-panel.featured {
  border-color: var(--gold);
  box-shadow: 8px 8px 0 var(--gold);
}

.path-panel h3 {
  max-width: 520px;
  margin-top: 20px;
  font-size: clamp(31px, 3.2vw, 45px);
}

.path-panel p:not(.eyebrow) {
  margin: 18px 0 0;
  color: var(--muted);
  font-size: 18px;
}

.path-panel .button,
.path-panel .text-link {
  align-self: flex-start;
  margin-top: auto;
}

.trust-grid,
.feature-grid,
.step-grid,
.stat-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0;
  margin-top: 44px;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.trust-item,
.feature-item,
.step-item,
.stat-item {
  padding: 30px;
  border-right: 1px solid var(--line);
}

.trust-item:first-child,
.feature-item:first-child,
.step-item:first-child,
.stat-item:first-child {
  padding-left: 0;
}

.trust-item:last-child,
.feature-item:last-child,
.step-item:last-child,
.stat-item:last-child {
  padding-right: 0;
  border-right: 0;
}

.trust-item strong,
.feature-item strong,
.step-item strong {
  display: block;
  margin-top: 12px;
  font-family: "Albert Sans", sans-serif;
  font-size: 22px;
  line-height: 1.12;
}

.trust-item p,
.feature-item p,
.step-item p,
.stat-item p {
  margin: 10px 0 0;
  color: var(--muted);
  font-size: 16px;
}

.stat-value {
  font-family: "Albert Sans", sans-serif;
  font-size: clamp(48px, 5vw, 68px);
  font-weight: 700;
  letter-spacing: 0;
  line-height: 0.9;
}

.stat-source {
  display: inline-block;
  margin-top: 16px;
  color: var(--gold-dark);
  font-family: "IBM Plex Mono", monospace;
  font-size: 10px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.coverage-chart {
  display: grid;
  gap: 16px;
  margin-top: 38px;
}

.coverage-chart div {
  display: grid;
  grid-template-columns: 96px 1fr;
  align-items: center;
  gap: 18px;
}

.coverage-chart span {
  font-family: "IBM Plex Mono", monospace;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.coverage-chart i {
  position: relative;
  display: block;
  height: 14px;
  overflow: hidden;
  border: 1px solid rgba(49, 49, 38, 0.18);
  background: var(--paper);
}

.coverage-chart i::after {
  display: block;
  width: var(--fill);
  height: 100%;
  background: var(--color);
  content: "";
}

.dark-band,
.offer-band,
.footer-band {
  position: relative;
  overflow: hidden;
  background: var(--ink);
  color: var(--paper);
}

.dark-band-inner,
.offer-band-inner {
  position: relative;
  z-index: 1;
  padding-block: clamp(76px, 9vw, 122px);
}

.dark-band p,
.offer-band p {
  color: var(--muted-light);
}

.page-hero {
  padding-block: clamp(62px, 7vw, 96px);
  border-bottom: 1px solid var(--line);
}

.page-hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(320px, 0.8fr);
  align-items: end;
  gap: clamp(48px, 7vw, 100px);
}

.page-hero h1 {
  max-width: 900px;
  font-size: clamp(58px, 6.5vw, 90px);
}

.offer-summary {
  padding: 30px;
  border-top: 2px solid var(--gold);
  background: var(--paper-raised);
  box-shadow: var(--shadow);
}

.offer-summary strong {
  display: block;
  margin-top: 10px;
  font-family: "Albert Sans", sans-serif;
  font-size: 28px;
  line-height: 1.05;
}

.offer-summary p {
  margin: 12px 0 0;
  color: var(--muted);
}

.sample-question {
  padding: clamp(28px, 5vw, 52px);
  border: 1.5px solid var(--line-dark);
  border-radius: var(--radius);
  background: var(--paper-raised);
}

.sample-question h3 {
  max-width: 780px;
  margin-top: 12px;
  font-size: clamp(30px, 4vw, 48px);
}

.choice-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
  margin-top: 30px;
}

.choice {
  min-height: 190px;
  padding: 26px;
  border: 1px solid var(--line-dark);
  border-radius: var(--radius);
}

.choice span {
  color: var(--teal);
  font-family: "IBM Plex Mono", monospace;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.12em;
}

.choice p {
  margin: 36px 0 0;
  font-family: "Albert Sans", sans-serif;
  font-size: 22px;
  font-weight: 600;
  line-height: 1.22;
}

.instinct-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  margin-top: 40px;
}

.instinct {
  min-height: 235px;
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--paper-raised);
}

.instinct .swatch {
  width: 14px;
  height: 14px;
  margin-bottom: 24px;
}

.instinct h3 {
  font-size: 25px;
}

.instinct p {
  margin: 12px 0 0;
  color: var(--muted);
  font-size: 16px;
}

.faq-list {
  max-width: 880px;
  margin-top: 36px;
  border-top: 1px solid var(--line);
}

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

.faq-list summary {
  position: relative;
  padding: 24px 42px 24px 0;
  font-family: "Albert Sans", sans-serif;
  font-size: 20px;
  font-weight: 700;
  cursor: pointer;
  list-style: none;
}

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

.faq-list summary::after {
  position: absolute;
  top: 50%;
  right: 4px;
  content: "+";
  color: var(--gold-dark);
  font-family: "IBM Plex Mono", monospace;
  font-size: 24px;
  transform: translateY(-50%);
}

.faq-list details[open] summary::after {
  content: "\2212";
}

.faq-list details p {
  max-width: 740px;
  margin: -8px 0 26px;
  color: var(--muted);
}

.form-section {
  background: var(--paper-warm);
}

.form-layout {
  display: grid;
  grid-template-columns: minmax(280px, 0.76fr) minmax(0, 1.24fr);
  gap: clamp(48px, 8vw, 110px);
}

.form-card {
  position: relative;
  padding: clamp(28px, 4vw, 46px);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--paper-raised);
  box-shadow: var(--shadow);
}

.form-card .button {
  margin-top: 24px;
}

.form-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 20px;
}

.field {
  display: grid;
  gap: 8px;
}

.field.full {
  grid-column: 1 / -1;
}

.field input,
.field select,
.field textarea {
  width: 100%;
  min-height: 52px;
  padding: 13px 14px;
  border: 1px solid #cfc5ad;
  border-radius: 3px;
  background: var(--paper);
  color: var(--ink);
}

.field textarea {
  min-height: 126px;
  resize: vertical;
}

.field input::placeholder,
.field textarea::placeholder {
  color: #918b7d;
}

.field input:focus,
.field select:focus,
.field textarea:focus {
  border-color: var(--gold-dark);
  outline: 2px solid rgba(207, 159, 47, 0.22);
}

.honeypot {
  position: absolute;
  left: -9999px;
}

.form-note,
.form-status {
  margin: 18px 0 0;
  color: var(--muted);
  font-size: 14px;
}

.form-status {
  min-height: 24px;
  color: var(--ink);
  font-weight: 650;
}

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

.form-status.success {
  color: var(--green);
}

.purchase-includes {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0 24px;
  margin-top: 30px;
  border-top: 1px solid var(--line);
}

.purchase-includes p {
  position: relative;
  margin: 0;
  padding: 14px 0 14px 22px;
  border-bottom: 1px solid var(--line);
  color: var(--ink-soft);
}

.purchase-includes p::before {
  position: absolute;
  top: 17px;
  left: 0;
  color: var(--gold-dark);
  content: "\2192";
  font-family: "IBM Plex Mono", monospace;
}

.checkout-card {
  align-self: start;
  border-color: var(--gold-dark);
  box-shadow: 10px 10px 0 var(--gold);
}

.price-lockup {
  display: grid;
  grid-template-columns: auto 1fr;
  align-items: center;
  gap: 22px;
  margin-bottom: 28px;
  padding-bottom: 26px;
  border-bottom: 1px solid var(--line);
}

.price-lockup > span {
  font-family: "Albert Sans", sans-serif;
  font-size: clamp(52px, 6vw, 76px);
  font-weight: 700;
  letter-spacing: 0;
  line-height: 0.86;
}

.price-lockup strong {
  display: block;
  font-family: "Albert Sans", sans-serif;
  font-size: 22px;
  line-height: 1.08;
}

.price-lockup p {
  margin: 7px 0 0;
  color: var(--muted);
  font-size: 14px;
}

.checkout-button {
  width: 100%;
}

.checkout-button:disabled,
.form-card button:disabled {
  cursor: wait;
  opacity: 0.62;
  transform: none;
}

.purchase-hero {
  background: var(--ink);
  color: var(--paper);
}

.purchase-hero .page-hero-grid {
  align-items: center;
}

.purchase-hero .lede {
  color: var(--muted-light);
}

.purchase-hero .offer-summary {
  border-top-color: var(--gold);
  background: var(--gold);
  color: var(--ink);
}

.purchase-hero .offer-summary p {
  color: rgba(27, 27, 21, 0.76);
}

.purchase-proof {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 24px;
  margin-top: 28px;
  color: var(--muted-light);
  font-family: "IBM Plex Mono", monospace;
  font-size: 11px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.purchase-proof span::before {
  margin-right: 8px;
  color: var(--gold);
  content: "\2022";
}

.principle-list {
  display: grid;
  margin-top: 30px;
  border-top: 1px solid rgba(253, 249, 240, 0.2);
}

.principle-list div {
  display: grid;
  grid-template-columns: 28px 1fr;
  gap: 14px;
  padding-block: 15px;
  border-bottom: 1px solid rgba(253, 249, 240, 0.2);
}

.principle-list span {
  color: var(--gold);
  font-family: "IBM Plex Mono", monospace;
}

.principle-list p {
  margin: 0;
  color: #e8e4d6;
}

.method-table {
  display: grid;
  margin-top: 34px;
  border-top: 1px solid var(--line);
}

.method-row {
  display: grid;
  grid-template-columns: minmax(180px, 0.35fr) minmax(0, 0.65fr);
  gap: 28px;
  padding-block: 22px;
  border-bottom: 1px solid var(--line);
}

.method-row strong {
  font-family: "Albert Sans", sans-serif;
  font-size: 20px;
}

.method-row p {
  margin: 0;
  color: var(--muted);
}

.source-list {
  margin: 26px 0 0;
  padding: 0;
  list-style: none;
}

.source-list li {
  padding-block: 15px;
  border-top: 1px solid var(--line);
}

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

.source-list a {
  font-weight: 700;
  text-underline-offset: 4px;
}

.footer-band::after {
  bottom: -390px;
}

.site-footer {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 56px;
  padding-block: 68px 54px;
}

.footer-brand p {
  max-width: 560px;
  margin: 18px 0 0;
  color: var(--muted-light);
  font-size: 15px;
}

.footer-links {
  display: grid;
  grid-template-columns: repeat(2, auto);
  align-content: start;
  gap: 14px 34px;
}

.footer-links a {
  color: var(--paper);
  font-size: 15px;
  font-weight: 650;
  text-decoration: none;
}

.footer-links a:hover {
  color: var(--gold);
}

.footer-bottom {
  position: relative;
  z-index: 1;
  display: flex;
  justify-content: space-between;
  gap: 24px;
  padding-block: 20px;
  border-top: 1px solid rgba(253, 249, 240, 0.18);
  color: #8f8b7c;
  font-family: "IBM Plex Mono", monospace;
  font-size: 10px;
  letter-spacing: 0.06em;
  line-height: 1.6;
  text-transform: uppercase;
}

@media (max-width: 960px) {
  .container {
    width: min(var(--content), calc(100% - 40px));
  }

  .nav-toggle {
    display: grid;
  }

  .nav-links {
    position: absolute;
    top: 78px;
    right: 0;
    left: 0;
    display: none;
    min-height: calc(100svh - 78px);
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 18px 20px 38px;
    border-top: 1px solid var(--line);
    background: var(--paper);
  }

  .nav-links.open {
    display: flex;
  }

  .nav-link {
    padding: 18px 4px;
    border-bottom: 1px solid var(--line);
    font-size: 18px;
  }

  .nav-links .button {
    margin-top: 24px;
  }

  .hero-inner,
  .page-hero-grid,
  .report-grid,
  .form-layout {
    grid-template-columns: 1fr;
  }

  .hero-inner {
    min-height: 0;
  }

  .hero-copy {
    max-width: 800px;
  }

  .phase-visual {
    width: min(100%, 560px);
  }

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

  .page-hero-grid {
    align-items: start;
  }

  .offer-summary {
    max-width: 600px;
  }

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

  .identity-preview,
  .identity-preview-inner {
    min-height: 480px;
  }
}

@media (max-width: 720px) {
  body {
    font-size: 16px;
  }

  .container {
    width: min(var(--content), calc(100% - 28px));
  }

  .nav-shell {
    min-height: 68px;
  }

  .nav-links {
    top: 68px;
    min-height: calc(100svh - 68px);
  }

  .brand {
    font-size: 18px;
  }

  .brand img {
    width: 25px;
    height: 25px;
  }

  .hero-inner {
    gap: 0;
    padding-block: 42px 48px;
  }

  .hero-copy h1,
  .page-hero h1 {
    font-size: clamp(50px, 14vw, 60px);
    line-height: 0.9;
  }

  .hero-statement {
    font-size: clamp(26px, 8vw, 34px);
  }

  .hero-meta,
  .phase-visual {
    display: none;
  }

  .hero-actions,
  .section-actions {
    align-items: stretch;
    flex-direction: column;
  }

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

  .phase-caption {
    align-items: flex-start;
    flex-direction: column;
    gap: 6px;
  }

  .definition {
    font-size: clamp(28px, 8.2vw, 39px);
    text-align: left;
  }

  .path-grid,
  .choice-grid,
  .instinct-grid,
  .form-grid {
    grid-template-columns: 1fr;
  }

  .coverage-chart div {
    grid-template-columns: 78px 1fr;
    gap: 12px;
  }

  .path-panel {
    min-height: 0;
  }

  .path-panel .button,
  .path-panel .text-link {
    margin-top: 30px;
  }

  .trust-grid,
  .feature-grid,
  .step-grid,
  .stat-grid {
    grid-template-columns: 1fr;
  }

  .trust-item,
  .feature-item,
  .step-item,
  .stat-item,
  .trust-item:first-child,
  .feature-item:first-child,
  .step-item:first-child,
  .stat-item:first-child,
  .trust-item:last-child,
  .feature-item:last-child,
  .step-item:last-child,
  .stat-item:last-child {
    padding: 24px 0;
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .trust-item:last-child,
  .feature-item:last-child,
  .step-item:last-child,
  .stat-item:last-child {
    border-bottom: 0;
  }

  .report-grid {
    gap: 48px;
  }

  .identity-preview {
    box-shadow: 7px 7px 0 var(--gold);
  }

  .identity-preview,
  .identity-preview-inner {
    min-height: 440px;
  }

  .identity-preview .mark {
    top: 28px;
    left: 28px;
  }

  .sample-question {
    padding: 22px;
  }

  .choice {
    min-height: 150px;
  }

  .choice p {
    margin-top: 26px;
    font-size: 20px;
  }

  .field.full {
    grid-column: auto;
  }

  .purchase-includes {
    grid-template-columns: 1fr;
  }

  .price-lockup {
    grid-template-columns: 1fr;
    gap: 14px;
  }

  .method-row {
    grid-template-columns: 1fr;
    gap: 8px;
  }

  .site-footer {
    grid-template-columns: 1fr;
  }

  .footer-links {
    grid-template-columns: 1fr;
  }

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

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

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