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

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

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

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

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

:root {
  --ink: #190d22;
  --body: #403644;
  --muted: #6b6170;
  --violet: #711cff;
  --violet-dark: #5310cf;
  --magenta: #d51672;
  --plum: #160b22;
  --plum-2: #251135;
  --lavender: #a879ff;
  --wash: #f7f3f9;
  --wash-2: #efe8f4;
  --line: #e4dce9;
  --white: #ffffff;
  --green: #16714a;
  --amber: #9a5a00;
  --red: #b42318;
  --shadow: 0 24px 70px rgba(36, 14, 49, 0.14);
  --radius: 18px;
  --shell: 1180px;
}

* {
  box-sizing: border-box;
}

[hidden] {
  display: none !important;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 112px;
  -webkit-text-size-adjust: 100%;
}

body {
  margin: 0;
  background: var(--white);
  color: var(--body);
  font-family: "Inter", Arial, sans-serif;
  font-size: 16px;
  line-height: 1.62;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}

body.modal-open,
html.nav-open {
  overflow: hidden;
}

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

button,
input,
textarea {
  font: inherit;
}

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

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

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

h1,
h2,
h3,
h4 {
  color: var(--ink);
  line-height: 1.06;
  letter-spacing: -0.035em;
}

h1 {
  font-size: clamp(3rem, 5.7vw, 5.1rem);
  font-weight: 800;
}

h2 {
  font-size: clamp(2.25rem, 4vw, 3.7rem);
  font-weight: 800;
}

h3 {
  font-size: 1.25rem;
  font-weight: 700;
}

button:focus-visible,
a:focus-visible,
input:focus-visible,
textarea:focus-visible,
summary:focus-visible {
  outline: 3px solid var(--violet);
  outline-offset: 3px;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.skip-link {
  position: fixed;
  z-index: 1000;
  top: 12px;
  left: 12px;
  padding: 10px 16px;
  transform: translateY(-160%);
  background: var(--white);
  color: var(--ink);
  border-radius: 8px;
  font-weight: 700;
}

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

.shell {
  width: min(
    calc(100% - 48px - env(safe-area-inset-left) - env(safe-area-inset-right)),
    var(--shell)
  );
  margin-inline: auto;
}

.narrow {
  max-width: 820px;
}

.announcement {
  position: relative;
  z-index: 31;
  background: var(--plum);
  color: rgba(255, 255, 255, 0.78);
  font-size: 0.74rem;
  font-weight: 600;
  letter-spacing: 0.035em;
}

.announcement-inner {
  min-height: 35px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  white-space: nowrap;
  overflow: hidden;
}

.announcement strong {
  color: var(--white);
}

.site-header {
  position: sticky;
  z-index: 30;
  top: 0;
  background: rgba(255, 255, 255, 0.94);
  border-bottom: 1px solid rgba(25, 13, 34, 0.08);
  backdrop-filter: blur(18px);
}

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

.brand {
  width: 180px;
  display: inline-flex;
  align-items: center;
}

.brand img {
  width: 100%;
  height: auto;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 24px;
  color: var(--ink);
  font-size: 0.86rem;
  font-weight: 600;
}

.site-nav > a {
  position: relative;
}

.site-nav > a::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: -7px;
  left: 0;
  height: 2px;
  transform: scaleX(0);
  transform-origin: left;
  background: var(--violet);
  transition: transform 180ms ease;
}

.site-nav > a:hover::after {
  transform: scaleX(1);
}

.menu-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 0;
  border-radius: 10px;
  background: var(--wash);
}

.menu-toggle > span:not(.sr-only) {
  display: block;
  width: 20px;
  height: 2px;
  margin: 5px auto;
  background: var(--ink);
}

.button {
  display: inline-flex;
  min-height: 50px;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 12px 20px;
  border: 1px solid transparent;
  border-radius: 10px;
  cursor: pointer;
  background: var(--white);
  color: var(--ink);
  font-size: 0.86rem;
  font-weight: 700;
  line-height: 1.2;
  transition:
    transform 150ms ease,
    box-shadow 150ms ease,
    background 150ms ease;
}

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

.button-small {
  min-height: 42px;
  padding: 10px 15px;
  background: var(--violet);
  color: var(--white);
}

.button-bright {
  background: linear-gradient(135deg, #7a1cff, #6410ea);
  color: var(--white);
  box-shadow: 0 12px 30px rgba(113, 28, 255, 0.28);
}

.button-bright:hover,
.button-small:hover {
  background: var(--violet-dark);
  box-shadow: 0 14px 34px rgba(113, 28, 255, 0.32);
}

.button-secondary {
  border-color: var(--line);
  background: var(--white);
}

.button-full {
  width: 100%;
}

.text-link {
  display: inline-flex;
  align-items: center;
  padding: 8px 0;
  border-bottom: 1px solid currentColor;
  color: var(--violet);
  font-weight: 700;
}

.text-link-light {
  color: #d6bfff;
}

.eyebrow {
  margin-bottom: 14px;
  color: var(--violet);
  font-size: 0.73rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  line-height: 1.3;
  text-transform: uppercase;
}

.eyebrow-light {
  color: #c7a9ff;
}

.hero {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at 76% 6%, rgba(113, 28, 255, 0.3), transparent 30%),
    radial-gradient(
      circle at 5% 90%,
      rgba(213, 22, 114, 0.12),
      transparent 32%
    ),
    var(--plum);
  color: rgba(255, 255, 255, 0.8);
}

.hero-grid {
  position: absolute;
  inset: 0;
  opacity: 0.42;
  background-image:
    linear-gradient(rgba(170, 125, 255, 0.08) 1px, transparent 1px),
    linear-gradient(90deg, rgba(170, 125, 255, 0.08) 1px, transparent 1px);
  background-size: 62px 62px;
  mask-image: linear-gradient(to bottom, rgba(0, 0, 0, 0.9), transparent 92%);
}

.hero-shell {
  position: relative;
  z-index: 1;
  display: grid;
  min-height: 730px;
  grid-template-columns: minmax(0, 1.04fr) minmax(480px, 0.96fr);
  align-items: center;
  gap: 68px;
  padding-block: 86px 98px;
}

.hero-copy h1 {
  max-width: 720px;
  margin-bottom: 28px;
  color: var(--white);
  font-size: clamp(3rem, 5vw, 4.8rem);
}

.hero-copy h1 span {
  display: block;
  color: #b995ff;
}

.hero-lede {
  max-width: 650px;
  margin-bottom: 16px;
  color: rgba(255, 255, 255, 0.88);
  font-size: 1.1rem;
  line-height: 1.65;
}

.hero-support {
  max-width: 650px;
  margin-bottom: 30px;
  color: rgba(255, 255, 255, 0.65);
  font-size: 0.96rem;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 24px;
}

.hero-facts {
  display: flex;
  flex-wrap: wrap;
  gap: 18px 30px;
  margin: 30px 0 0;
  padding: 0;
  list-style: none;
  color: rgba(255, 255, 255, 0.73);
  font-size: 0.8rem;
}

.hero-facts li {
  position: relative;
  padding-left: 14px;
}

.hero-facts li::before {
  content: "";
  position: absolute;
  top: 0.66em;
  left: 0;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--violet);
}

.product-window {
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 18px;
  background: var(--white);
  box-shadow: 0 35px 90px rgba(0, 0, 0, 0.34);
  color: var(--body);
  transform: rotate(0.4deg);
}

.window-bar {
  min-height: 48px;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 14px;
  padding: 0 18px;
  border-bottom: 1px solid var(--line);
  background: #fbf9fc;
  color: var(--muted);
  font-size: 0.65rem;
  font-weight: 600;
}

.window-dots {
  display: flex;
  gap: 5px;
}

.window-dots span {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #ee6771;
}

.window-dots span:nth-child(2) {
  background: #f0b83f;
}

.window-dots span:nth-child(3) {
  background: #45bf6b;
}

.window-status {
  padding: 5px 8px;
  border-radius: 999px;
  background: #eaf7ef;
  color: var(--green);
  font-size: 0.58rem;
  text-transform: uppercase;
}

.window-body {
  padding: 28px;
}

.window-heading {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 16px;
}

.window-heading h2 {
  margin-bottom: 8px;
  font-size: 1.72rem;
}

.mini-label {
  margin-bottom: 7px;
  color: var(--violet);
  font-size: 0.62rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.confidence {
  margin-top: 2px;
  padding: 7px 9px;
  border: 1px solid var(--line);
  border-radius: 8px;
  color: var(--muted);
  font-size: 0.6rem;
  font-weight: 700;
  white-space: nowrap;
}

.window-copy {
  margin-bottom: 22px;
  color: var(--muted);
  font-size: 0.8rem;
  line-height: 1.55;
}

.economics-grid {
  display: grid;
  gap: 9px;
}

.economics-grid > div {
  display: grid;
  grid-template-columns: 126px 1fr;
  gap: 16px;
  padding: 13px 14px;
  border: 1px solid var(--line);
  border-left: 3px solid var(--violet);
  border-radius: 9px;
  background: var(--white);
}

.economics-grid > div:nth-child(2) {
  border-left-color: var(--magenta);
}

.economics-grid > div:nth-child(3) {
  border-left-color: var(--green);
}

.economics-grid span {
  color: var(--muted);
  font-size: 0.56rem;
  font-weight: 800;
  letter-spacing: 0.07em;
  text-transform: uppercase;
}

.economics-grid strong {
  color: var(--ink);
  font-size: 0.7rem;
  line-height: 1.45;
}

.intelligence-base {
  margin-top: 20px;
}

.intelligence-base > div {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}

.intelligence-base > div span {
  padding: 6px 8px;
  border-radius: 6px;
  background: var(--wash);
  color: var(--muted);
  font-size: 0.54rem;
  font-weight: 700;
}

.tournament-strip {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
  padding: 14px;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: var(--wash);
}

.tournament-strip div {
  display: grid;
  justify-items: center;
}

.tournament-strip strong {
  color: var(--ink);
  font-size: 1.15rem;
  line-height: 1;
}

.tournament-strip span {
  margin-top: 5px;
  color: var(--muted);
  font-size: 0.52rem;
  font-weight: 600;
  text-transform: uppercase;
}

.tournament-strip i {
  color: #b9adbf;
  font-style: normal;
}

.tournament-strip .selected strong,
.tournament-strip .selected span {
  color: var(--magenta);
}

.decision-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 10px;
  margin-top: 14px;
}

.decision-grid div {
  padding: 12px;
  border: 1px solid var(--line);
  border-radius: 10px;
}

.decision-grid span,
.decision-grid strong {
  display: block;
}

.decision-grid span {
  margin-bottom: 4px;
  color: var(--muted);
  font-size: 0.55rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.decision-grid strong {
  color: var(--ink);
  font-size: 0.72rem;
}

.build-order {
  margin-top: 20px;
}

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

.build-order li {
  display: grid;
  grid-template-columns: 28px 1fr auto;
  align-items: center;
  gap: 10px;
  padding: 10px 0;
  border-bottom: 1px solid var(--line);
  color: var(--ink);
  font-size: 0.68rem;
}

.build-order li > span {
  color: var(--violet);
  font-size: 0.58rem;
  font-weight: 800;
}

.build-order em {
  color: var(--muted);
  font-size: 0.62rem;
  font-style: normal;
}

.example-note {
  margin: 14px 0 0;
  color: var(--muted);
  font-size: 0.58rem;
}

.section {
  padding-block: 106px;
}

.wash-section {
  background: var(--wash);
}

.intro-center {
  text-align: center;
}

.intro-center h2,
.split-heading h2 {
  margin-bottom: 22px;
}

.section-lede {
  color: var(--muted);
  font-size: 1.06rem;
}

.three-card-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  margin-top: 50px;
}

.plain-card {
  min-height: 235px;
  padding: 32px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
}

.featured-card {
  border-color: rgba(113, 28, 255, 0.34);
  box-shadow: 0 18px 50px rgba(57, 24, 74, 0.1);
}

.card-number {
  display: inline-flex;
  width: 36px;
  height: 36px;
  align-items: center;
  justify-content: center;
  margin-bottom: 36px;
  border-radius: 9px;
  background: var(--wash);
  color: var(--violet);
  font-size: 0.7rem;
  font-weight: 800;
}

.plain-card h3 {
  margin-bottom: 12px;
}

.plain-card p {
  margin: 0;
  color: var(--muted);
  font-size: 0.92rem;
}

.section-closing {
  width: min(calc(100% - 48px), 850px);
  margin: 40px auto 0;
  color: var(--ink);
  font-size: 1.02rem;
  font-weight: 700;
  text-align: center;
}

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

.value-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  margin-top: 50px;
}

.value-grid article {
  min-height: 330px;
  padding: 34px;
  border: 1px solid var(--line);
  border-top: 4px solid var(--violet);
  border-radius: var(--radius);
  background: var(--white);
}

.value-grid article:nth-child(2) {
  border-top-color: var(--magenta);
}

.value-grid article:nth-child(3) {
  border-top-color: var(--green);
}

.value-label {
  display: block;
  margin-bottom: 50px;
  color: var(--violet);
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.value-grid article:nth-child(2) .value-label {
  color: var(--magenta);
}

.value-grid article:nth-child(3) .value-label {
  color: var(--green);
}

.value-grid h3 {
  margin-bottom: 16px;
  font-size: 1.55rem;
  line-height: 1.18;
}

.value-grid p {
  margin: 0;
  color: var(--muted);
  font-size: 0.9rem;
}

.value-disclaimer {
  width: min(calc(100% - 48px), 850px);
  margin: 36px auto 0;
  color: var(--muted);
  font-size: 0.78rem;
  text-align: center;
}

.calculator-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(390px, 0.9fr);
  align-items: center;
  gap: 80px;
}

.calculator-copy > p:not(.eyebrow) {
  max-width: 650px;
  color: var(--muted);
}

.calculator-form {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  margin-top: 34px;
}

.calculator-form label {
  display: grid;
  align-content: space-between;
  gap: 10px;
  min-height: 118px;
  padding: 16px;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: var(--white);
  color: var(--ink);
  font-size: 0.72rem;
  font-weight: 700;
  line-height: 1.35;
}

.calculator-form label > span {
  display: none;
}

.calculator-form input {
  width: 100%;
  height: 45px;
  padding: 8px 10px;
  border: 1px solid #d9cedf;
  border-radius: 8px;
  background: var(--white);
  color: var(--ink);
  font-size: 1.05rem;
  font-weight: 700;
}

.calculator-form input:focus {
  border-color: var(--violet);
  outline: 3px solid var(--violet);
  outline-offset: 2px;
}

.mobile-inline-cta {
  display: none;
}

.calculator-results {
  padding: 38px;
  border-radius: 18px;
  background: var(--plum);
  box-shadow: var(--shadow);
  color: rgba(255, 255, 255, 0.72);
}

.calculator-results > div {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 20px;
  padding: 15px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.13);
}

.calculator-results > div span {
  font-size: 0.76rem;
}

.calculator-results > div strong {
  color: var(--white);
  font-size: 1.25rem;
  letter-spacing: -0.04em;
}

.calculator-results .result-accent strong {
  color: #c7a9ff;
  font-size: 1.7rem;
}

.calculator-results .result-accent strong.is-negative {
  color: #ffc4c0;
  font-size: 1.15rem;
}

.calculator-results > p:last-child {
  margin: 22px 0 0;
  color: rgba(255, 255, 255, 0.55);
  font-size: 0.72rem;
}

.calculator-note {
  margin-top: 28px;
  color: var(--muted);
  font-size: 0.72rem;
}

.research-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  margin-top: 58px;
}

.research-grid article {
  min-height: 245px;
  padding: 30px;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: var(--white);
}

.research-grid article > span {
  display: block;
  margin-bottom: 38px;
  color: var(--violet);
  font-size: 0.7rem;
  font-weight: 800;
}

.research-grid h3 {
  margin-bottom: 12px;
}

.research-grid p {
  margin: 0;
  color: var(--muted);
  font-size: 0.84rem;
}

.research-grid .research-proof {
  border-color: rgba(113, 28, 255, 0.3);
  background: var(--wash);
}

.research-payoff {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 9px;
  margin-top: 24px;
  padding: 18px 20px;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: var(--wash);
}

.research-payoff strong,
.research-payoff span {
  padding: 7px 9px;
  font-size: 0.68rem;
}

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

.research-payoff span {
  border-radius: 6px;
  background: var(--white);
  color: var(--muted);
  font-weight: 700;
}

.split-heading {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(320px, 0.9fr);
  align-items: end;
  gap: 100px;
}

.split-heading h2 {
  max-width: 780px;
  margin-bottom: 0;
}

.split-heading > p {
  margin: 0 0 5px;
  color: var(--muted);
}

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

.process-list article {
  display: grid;
  grid-template-columns: 80px 1fr;
  gap: 24px;
  padding: 28px 0;
  border-bottom: 1px solid var(--line);
}

.process-list article > span {
  color: var(--violet);
  font-size: 0.76rem;
  font-weight: 800;
}

.process-list article > div {
  display: grid;
  grid-template-columns: minmax(230px, 0.62fr) minmax(0, 1.38fr);
  gap: 48px;
}

.process-list h3,
.process-list p {
  margin: 0;
}

.process-list p {
  color: var(--muted);
}

.system-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px;
  margin-top: 50px;
}

.system-card {
  min-height: 380px;
  padding: 34px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
}

.system-card-wide {
  min-height: auto;
  grid-column: 1 / -1;
  background: var(--wash);
}

.system-card-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 42px;
  color: var(--violet);
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.system-card h3 {
  margin-bottom: 24px;
  font-size: 1.72rem;
}

.system-card ul,
.check-list {
  margin: 0;
  padding: 0;
  list-style: none;
}

.system-card li,
.check-list li {
  position: relative;
  padding: 8px 0 8px 26px;
  border-bottom: 1px solid var(--line);
  color: var(--body);
  font-size: 0.9rem;
}

.system-card li::before,
.check-list li::before {
  content: "✓";
  position: absolute;
  top: 8px;
  left: 0;
  color: var(--violet);
  font-weight: 800;
}

.wide-card-columns {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 48px;
}

.decision-section {
  background: var(--plum);
  color: rgba(255, 255, 255, 0.74);
}

.decision-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.85fr) minmax(500px, 1.15fr);
  gap: 92px;
}

.decision-copy h2,
.memory-card h2 {
  color: var(--white);
}

.decision-copy > p:not(.eyebrow) {
  color: rgba(255, 255, 255, 0.69);
  font-size: 1.04rem;
}

.stress-test {
  margin-top: 38px;
  padding: 24px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-left: 3px solid var(--magenta);
  background: rgba(255, 255, 255, 0.05);
}

.stress-test ul {
  margin: 10px 0 0;
  padding-left: 18px;
}

.stress-test li {
  margin: 7px 0;
}

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

.funnel > span {
  height: 12px;
  margin-left: 47px;
  color: #8c72a0;
  line-height: 12px;
}

.funnel article {
  display: grid;
  min-height: 116px;
  grid-template-columns: 96px 1fr;
  align-items: center;
  gap: 22px;
  padding: 20px 28px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.05);
}

.funnel article > strong {
  color: #c5a4ff;
  font-size: 2.1rem;
  letter-spacing: -0.06em;
}

.funnel h3 {
  margin-bottom: 5px;
  color: var(--white);
}

.funnel p {
  margin: 0;
  color: rgba(255, 255, 255, 0.62);
  font-size: 0.86rem;
}

.funnel .funnel-winner {
  border-color: rgba(213, 22, 114, 0.68);
  background: rgba(213, 22, 114, 0.11);
}

.funnel .funnel-winner > strong {
  color: #ff7fbd;
}

.money-map {
  display: grid;
  gap: 10px;
}

.money-map article {
  display: grid;
  min-height: 120px;
  grid-template-columns: 92px 1fr;
  align-items: center;
  gap: 24px;
  padding: 22px 28px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.05);
}

.money-map article > strong {
  color: #c5a4ff;
  font-size: 0.82rem;
  letter-spacing: 0.13em;
}

.money-map h3 {
  margin-bottom: 6px;
  color: var(--white);
  font-size: 1.08rem;
  letter-spacing: -0.02em;
}

.money-map p {
  margin: 0;
  color: rgba(255, 255, 255, 0.62);
  font-size: 0.82rem;
  line-height: 1.5;
}

.money-map .money-map-build {
  border-color: rgba(213, 22, 114, 0.68);
  background: rgba(213, 22, 114, 0.11);
}

.money-map .money-map-build > strong {
  color: #ff7fbd;
}

.decision-receipt {
  display: grid;
  grid-template-columns: 1.2fr repeat(4, 1fr);
  margin-top: 70px;
  border-top: 1px solid rgba(255, 255, 255, 0.15);
  border-bottom: 1px solid rgba(255, 255, 255, 0.15);
}

.decision-receipt > span {
  display: flex;
  min-height: 92px;
  align-items: center;
  padding: 18px;
  border-right: 1px solid rgba(255, 255, 255, 0.15);
  font-size: 0.78rem;
  font-weight: 600;
}

.decision-receipt > span:last-child {
  border-right: 0;
}

.decision-receipt .receipt-label {
  color: #c5a4ff;
  font-size: 0.66rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.handoff-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
  margin-top: 56px;
}

.handoff-grid article {
  min-height: 250px;
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: 14px;
}

.handoff-grid article > span {
  display: block;
  margin-bottom: 66px;
  color: var(--violet);
  font-size: 0.72rem;
  font-weight: 800;
}

.handoff-grid h3 {
  margin-bottom: 12px;
}

.handoff-grid p {
  margin: 0;
  color: var(--muted);
  font-size: 0.88rem;
}

.brief-fields {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 24px;
  padding: 20px;
  border-radius: 12px;
  background: var(--wash);
}

.brief-fields span {
  padding: 7px 10px;
  border: 1px solid var(--line);
  border-radius: 7px;
  background: var(--white);
  color: var(--muted);
  font-size: 0.68rem;
  font-weight: 700;
}

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

.timeline article {
  min-height: 270px;
  padding: 30px 22px;
  border-right: 1px solid var(--line);
}

.timeline article:last-child {
  border-right: 0;
}

.timeline article > span {
  display: block;
  margin-bottom: 70px;
  color: var(--violet);
  font-size: 0.67rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.timeline h3 {
  font-size: 1.08rem;
}

.timeline p {
  margin: 0;
  color: var(--muted);
  font-size: 0.8rem;
}

.timeline .timeline-now {
  background: var(--white);
}

.proof-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 28px;
}

.proof-grid > article {
  padding: 48px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
}

.proof-grid > article > h2 {
  font-size: clamp(2rem, 3vw, 3rem);
}

.proof-grid > article > p:not(.eyebrow):not(.proof-note) {
  color: var(--muted);
}

.proof-note {
  margin: 30px 0 0;
  padding: 18px;
  border-left: 3px solid var(--violet);
  background: var(--wash);
  color: var(--body);
  font-size: 0.86rem;
}

.memory-card {
  border-color: var(--plum) !important;
  background: var(--plum);
  color: rgba(255, 255, 255, 0.72);
}

.memory-card > p:not(.eyebrow) {
  color: rgba(255, 255, 255, 0.64) !important;
}

.memory-list {
  margin: 30px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.14);
}

.memory-list > div {
  display: grid;
  grid-template-columns: 78px 1fr;
  gap: 14px;
  padding: 15px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.14);
}

.memory-list span {
  color: #c5a4ff;
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.memory-list p {
  margin: 0;
  font-size: 0.86rem;
}

.memory-card small {
  color: rgba(255, 255, 255, 0.48);
  font-size: 0.72rem;
}

.sample-section {
  background: var(--white);
}

.sample-shell {
  margin-top: 50px;
}

.sample-tabs {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border: 1px solid var(--line);
  border-bottom: 0;
  border-radius: 14px 14px 0 0;
  overflow: hidden;
}

.sample-tabs button {
  min-height: 58px;
  border: 0;
  border-right: 1px solid var(--line);
  cursor: pointer;
  background: var(--wash);
  color: var(--muted);
  font-size: 0.72rem;
  font-weight: 800;
  text-transform: uppercase;
}

.sample-tabs button:last-child {
  border-right: 0;
}

.sample-tabs button[aria-selected="true"] {
  background: var(--white);
  box-shadow: inset 0 3px 0 var(--violet);
  color: var(--violet);
}

.sample-document {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 0 0 14px 14px;
  box-shadow: var(--shadow);
}

.sample-document > header,
.sample-document > footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
  padding: 20px 28px;
  background: var(--plum);
  color: rgba(255, 255, 255, 0.66);
}

.sample-document > header > div {
  display: grid;
  gap: 2px;
}

.sample-document > header > div:last-child {
  text-align: right;
}

.sample-document > header span,
.sample-document > footer {
  font-size: 0.62rem;
  text-transform: uppercase;
}

.sample-document > header strong {
  color: var(--white);
  font-size: 0.8rem;
}

.sample-panel {
  min-height: 440px;
  padding: 56px;
}

.sample-panel h3 {
  max-width: 930px;
  margin-bottom: 42px;
  font-size: clamp(1.7rem, 3vw, 2.8rem);
  line-height: 1.18;
}

.sample-two-col,
.sample-three-col,
.sample-rules {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px;
}

.sample-three-col {
  grid-template-columns: repeat(3, 1fr);
}

.sample-two-col > div,
.sample-three-col > div,
.sample-rules > div {
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: var(--wash);
}

.sample-two-col span,
.sample-three-col span,
.sample-rules span {
  display: block;
  margin-bottom: 10px;
  color: var(--violet);
  font-size: 0.68rem;
  font-weight: 800;
  text-transform: uppercase;
}

.sample-two-col p,
.sample-three-col p,
.sample-rules p {
  margin: 0;
}

.sample-score-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 10px;
  margin-bottom: 30px;
}

.sample-score-row span {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px;
  border: 1px solid var(--line);
  border-radius: 10px;
  color: var(--muted);
  font-size: 0.72rem;
  font-weight: 700;
}

.sample-score-row strong {
  color: var(--violet);
  font-size: 1.2rem;
}

.sample-money-row span {
  align-items: flex-start;
  flex-direction: column;
  gap: 7px;
}

.sample-money-row strong {
  font-size: 0.82rem;
  line-height: 1.3;
}

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

.sample-build-list li {
  display: grid;
  grid-template-columns: 110px 1fr 1fr;
  gap: 24px;
  padding: 18px 0;
  border-top: 1px solid var(--line);
}

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

.sample-build-list span {
  color: var(--violet);
  font-size: 0.68rem;
  font-weight: 800;
  text-transform: uppercase;
}

.sample-build-list strong {
  color: var(--ink);
}

.sample-build-list em {
  color: var(--muted);
  font-style: normal;
}

.sample-document > footer {
  background: var(--wash);
  color: var(--muted);
}

.fit-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  margin-top: 48px;
}

.fit-grid > article {
  padding: 42px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
}

.fit-label {
  display: inline-block;
  margin-bottom: 36px;
  padding: 6px 9px;
  border-radius: 6px;
  background: #eaf7ef;
  color: var(--green);
  font-size: 0.64rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.fit-no .fit-label {
  background: #f9e9e7;
  color: var(--red);
}

.fit-grid h3 {
  max-width: 500px;
  margin-bottom: 26px;
  font-size: 1.45rem;
  line-height: 1.25;
}

.fit-no ul {
  margin: 0;
  padding-left: 20px;
}

.fit-no li {
  margin: 11px 0;
  color: var(--muted);
}

.pricing-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(440px, 0.7fr);
  align-items: center;
  gap: 100px;
}

.pricing-copy > p:not(.eyebrow) {
  color: var(--muted);
  font-size: 1.02rem;
}

.scope-summary {
  margin-top: 34px;
  border-top: 1px solid var(--line);
}

.scope-summary > div {
  display: grid;
  grid-template-columns: 150px 1fr;
  gap: 26px;
  padding: 18px 0;
  border-bottom: 1px solid var(--line);
  font-size: 0.84rem;
}

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

.scope-summary span {
  color: var(--muted);
}

.pricing-card {
  padding: 42px;
  border: 1px solid rgba(113, 28, 255, 0.25);
  border-radius: 20px;
  background: var(--plum);
  box-shadow: var(--shadow);
  color: rgba(255, 255, 255, 0.72);
}

.plan-tag {
  color: #c5a4ff;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.price {
  display: flex;
  align-items: flex-end;
  gap: 8px;
  margin: 18px 0 14px;
}

.price strong {
  color: var(--white);
  font-size: 4.3rem;
  line-height: 0.9;
  letter-spacing: -0.08em;
}

.price span {
  padding-bottom: 8px;
  color: rgba(255, 255, 255, 0.55);
}

.pricing-card .check-list {
  margin: 24px 0 30px;
}

.pricing-card .check-list li {
  border-color: rgba(255, 255, 255, 0.12);
  color: rgba(255, 255, 255, 0.78);
}

.pricing-card small {
  display: block;
  margin-top: 12px;
  color: rgba(255, 255, 255, 0.58);
  font-size: 0.68rem;
  text-align: center;
}

.exclusion-strip {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 52px;
  padding-top: 24px;
  border-top: 1px solid var(--line);
}

.exclusion-strip strong,
.exclusion-strip span {
  padding: 7px 9px;
  border-radius: 6px;
  font-size: 0.67rem;
}

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

.exclusion-strip span {
  background: var(--wash);
  color: var(--muted);
}

.faq-layout {
  display: grid;
  grid-template-columns: minmax(260px, 0.65fr) minmax(0, 1.35fr);
  gap: 100px;
}

.faq-heading {
  position: sticky;
  top: 140px;
  align-self: start;
}

.faq-heading h2 {
  font-size: clamp(2rem, 3.4vw, 3.2rem);
}

.faq-heading > p:not(.eyebrow) {
  color: var(--muted);
}

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

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

.faq-list summary {
  display: flex;
  min-height: 72px;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  cursor: pointer;
  color: var(--ink);
  font-weight: 700;
  list-style: none;
}

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

.faq-list summary span {
  color: var(--violet);
  font-size: 1.35rem;
  font-weight: 400;
  transition: transform 160ms ease;
}

.faq-list details[open] summary span {
  transform: rotate(45deg);
}

.faq-list details p {
  max-width: 750px;
  padding: 0 42px 24px 0;
  color: var(--muted);
}

.final-cta {
  position: relative;
  overflow: hidden;
  padding-block: 110px;
  background:
    radial-gradient(
      circle at 75% 40%,
      rgba(113, 28, 255, 0.28),
      transparent 34%
    ),
    var(--plum);
  text-align: center;
}

.final-cta-inner {
  position: relative;
  z-index: 1;
  max-width: 850px;
}

.final-cta h2 {
  margin-bottom: 24px;
  color: var(--white);
}

.final-cta p:not(.eyebrow) {
  max-width: 720px;
  margin: 0 auto 30px;
  color: rgba(255, 255, 255, 0.68);
  font-size: 1.05rem;
}

.final-cta small {
  display: block;
  margin-top: 18px;
  color: rgba(255, 255, 255, 0.58);
}

.site-footer {
  padding-block: 70px 28px;
  background: #100719;
  color: rgba(255, 255, 255, 0.55);
}

.footer-grid {
  display: grid;
  grid-template-columns: 2.1fr repeat(3, 1fr);
  gap: 60px;
}

.footer-brand img {
  width: 190px;
  height: auto;
  display: block;
}

.footer-brand p {
  max-width: 330px;
  margin-top: 22px;
  font-size: 0.82rem;
}

.footer-grid nav {
  display: grid;
  align-content: start;
  gap: 10px;
}

.footer-grid nav strong {
  margin-bottom: 9px;
  color: var(--white);
  font-size: 0.75rem;
}

.footer-grid nav a,
.link-button {
  width: max-content;
  padding: 0;
  border: 0;
  cursor: pointer;
  background: none;
  color: rgba(255, 255, 255, 0.58);
  font-size: 0.78rem;
  text-align: left;
}

.footer-grid nav a:hover,
.link-button:hover {
  color: var(--white);
}

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  margin-top: 60px;
  padding-top: 24px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  font-size: 0.68rem;
}

.profile-modal {
  width: min(
    960px,
    calc(100% - 28px - env(safe-area-inset-left) - env(safe-area-inset-right))
  );
  max-height: min(880px, calc(100vh - 28px));
  margin: auto;
  padding: 0;
  border: 0;
  border-radius: 18px;
  background: var(--white);
  box-shadow: 0 40px 120px rgba(19, 8, 29, 0.4);
}

.legal-header {
  border-bottom: 1px solid var(--line);
  background: var(--white);
}

.legal-header > .shell {
  min-height: 82px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
}

.legal-header img,
.legal-logo {
  width: 182px;
  height: auto;
}

.legal-page {
  min-height: calc(100vh - 82px);
  padding: 86px 24px 110px;
  background: var(--wash);
}

.legal-shell {
  width: min(100%, 820px);
  margin-inline: auto;
  padding: 54px;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: var(--white);
  box-shadow: 0 20px 60px rgba(32, 14, 43, 0.07);
}

.legal-shell h1 {
  margin-bottom: 16px;
  font-size: clamp(2.5rem, 5vw, 4rem);
}

.legal-shell h2 {
  margin: 42px 0 12px;
  font-size: 1.35rem;
  letter-spacing: -0.025em;
}

.legal-shell p {
  color: var(--muted);
}

.legal-shell .effective {
  margin-bottom: 36px;
  padding-bottom: 22px;
  border-bottom: 1px solid var(--line);
  color: var(--violet);
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
}

.legal-shell.intro-center .legal-logo {
  margin-bottom: 56px;
}

.legal-shell.intro-center > p:not(.eyebrow) {
  max-width: 560px;
  margin: 0 auto 28px;
}

.profile-modal::backdrop {
  background: rgba(16, 7, 25, 0.77);
  backdrop-filter: blur(6px);
}

.modal-shell {
  max-height: min(880px, calc(100vh - 28px));
  overflow-y: auto;
}

.modal-header {
  position: relative;
  padding: 34px 72px 28px 40px;
  border-bottom: 1px solid var(--line);
}

.modal-header h2 {
  margin-bottom: 10px;
  font-size: clamp(1.8rem, 3vw, 2.5rem);
}

.modal-header p:last-child {
  margin: 0;
  color: var(--muted);
}

.modal-close {
  position: absolute;
  top: 22px;
  right: 22px;
  width: 42px;
  height: 42px;
  border: 1px solid var(--line);
  border-radius: 50%;
  cursor: pointer;
  background: var(--white);
  color: var(--ink);
  font-size: 1.7rem;
  line-height: 1;
}

.modal-progress {
  display: block;
  width: 100%;
  height: 4px;
  border: 0;
  appearance: none;
  background: var(--wash-2);
}

.modal-progress::-webkit-progress-bar {
  background: var(--wash-2);
}

.modal-progress::-webkit-progress-value {
  background: linear-gradient(90deg, var(--violet), var(--magenta));
}

.modal-progress::-moz-progress-bar {
  background: linear-gradient(90deg, var(--violet), var(--magenta));
}

.profile-form {
  padding: 38px 40px 34px;
}

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

.step-heading {
  margin-bottom: 30px;
}

.step-heading > span {
  color: var(--violet);
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.step-heading h3 {
  margin: 9px 0 6px;
  font-size: 1.65rem;
}

.step-heading p {
  margin: 0;
  color: var(--muted);
}

.profile-form label {
  display: grid;
  gap: 8px;
  margin-bottom: 20px;
  color: var(--ink);
  font-size: 0.82rem;
  font-weight: 700;
}

.profile-form label small {
  color: var(--muted);
  font-size: 0.62rem;
  font-weight: 500;
}

.profile-form input,
.profile-form textarea {
  width: 100%;
  border: 1px solid #d9cedf;
  border-radius: 9px;
  background: var(--white);
  color: var(--body);
}

.profile-form input {
  min-height: 48px;
  padding: 11px 13px;
}

.profile-form textarea {
  min-height: 102px;
  padding: 13px;
  resize: vertical;
}

.profile-form input:focus,
.profile-form textarea:focus {
  border-color: var(--violet);
  outline: 3px solid var(--violet);
  outline-offset: 2px;
}

.field-safety {
  margin: -4px 0 22px;
  padding: 11px 13px;
  border-left: 3px solid var(--violet);
  background: var(--wash);
  color: var(--muted);
  font-size: 0.72rem;
}

.field-grid {
  display: grid;
  gap: 18px;
}

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

.form-actions {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 10px;
  margin-top: 10px;
  padding-top: 24px;
  border-top: 1px solid var(--line);
}

.form-back {
  margin-right: auto;
}

.form-save {
  border-color: var(--line);
}

.form-note {
  margin: 18px 0 0;
  color: var(--muted);
  font-size: 0.68rem;
  text-align: right;
}

.form-note a {
  color: var(--violet);
  font-weight: 700;
  text-decoration: underline;
  text-underline-offset: 2px;
}

.form-status {
  min-height: 24px;
  color: var(--violet);
  font-size: 0.76rem;
  font-weight: 600;
}

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

.form-success {
  padding: 80px 40px;
  text-align: center;
}

.form-success > span {
  display: inline-flex;
  width: 58px;
  height: 58px;
  align-items: center;
  justify-content: center;
  margin-bottom: 24px;
  border-radius: 50%;
  background: #eaf7ef;
  color: var(--green);
  font-size: 1.5rem;
  font-weight: 800;
}

.form-success h3 {
  font-size: 1.9rem;
}

.form-success p {
  max-width: 530px;
  margin: 0 auto 28px;
  color: var(--muted);
}

/* Product architecture */
.monthly-output-section {
  padding-block: 68px 74px;
  border-bottom: 1px solid var(--line);
  background: var(--white);
}

.monthly-output-heading {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(300px, 0.62fr);
  align-items: end;
  gap: 70px;
  margin-bottom: 38px;
}

.monthly-output-heading h2 {
  max-width: 730px;
  margin-bottom: 0;
  font-size: clamp(2.15rem, 3.6vw, 3.4rem);
}

.monthly-output-heading > p {
  margin: 0;
  color: var(--muted);
}

.monthly-output-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  border-top: 1px solid var(--ink);
}

.monthly-output-grid article {
  min-width: 0;
  padding: 24px 22px 8px;
  border-right: 1px solid var(--line);
}

.monthly-output-grid article:first-child {
  padding-left: 0;
}

.monthly-output-grid article:last-child {
  padding-right: 0;
  border-right: 0;
}

.monthly-output-grid article > span,
.transformation-label,
.lead-identity p,
.report-list > div > span,
.production-brief-list article > span,
.kill-list article > span,
.record-detail-grid article > span {
  display: block;
  margin-bottom: 16px;
  color: var(--violet);
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.monthly-output-grid h3 {
  margin-bottom: 10px;
  font-size: 1.12rem;
}

.monthly-output-grid p {
  margin: 0;
  color: var(--muted);
  font-size: 0.86rem;
  line-height: 1.55;
}

.transformation-section {
  background: var(--white);
}

.transformation-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
  margin-top: 46px;
}

.transformation-grid article {
  padding: 38px;
  border: 1px solid var(--line);
  border-radius: 16px;
}

.transformation-before {
  background: var(--wash);
}

.transformation-after {
  border-color: rgba(113, 28, 255, 0.35) !important;
  box-shadow: inset 4px 0 0 var(--violet);
}

.transformation-grid h3 {
  max-width: 430px;
  margin-bottom: 28px;
  font-size: 1.55rem;
}

.transformation-grid ul {
  display: grid;
  gap: 15px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.transformation-grid li {
  position: relative;
  padding-left: 24px;
  color: var(--body);
}

.transformation-grid li::before {
  content: "";
  position: absolute;
  top: 0.72em;
  left: 0;
  width: 8px;
  height: 2px;
  background: var(--muted);
}

.transformation-after li::before {
  width: 9px;
  height: 9px;
  top: 0.5em;
  border-radius: 50%;
  background: var(--violet);
}

.illustrative-note {
  max-width: 860px;
  margin: 18px auto 0;
  color: var(--muted);
  font-size: 0.74rem;
  text-align: center;
}

.intelligence-chain {
  display: grid;
  grid-template-columns: 1fr auto 1.5fr auto 1fr auto 1fr auto 1fr;
  align-items: stretch;
  margin-top: 42px;
  border-top: 1px solid var(--ink);
  border-bottom: 1px solid var(--line);
}

.intelligence-chain > div {
  min-width: 0;
  padding: 22px 10px;
}

.intelligence-chain > div:first-child {
  padding-left: 0;
}

.intelligence-chain span {
  display: block;
  color: var(--violet);
  font-size: 0.68rem;
  font-weight: 800;
}

.intelligence-chain strong {
  display: block;
  margin-top: 5px;
  color: var(--ink);
  font-size: 0.88rem;
}

.intelligence-chain i {
  align-self: center;
  color: var(--violet);
  font-style: normal;
}

.intelligence-chain-note {
  margin-top: 14px;
  color: var(--muted);
  font-size: 0.8rem;
  text-align: right;
}

/* Interactive monthly brief */
.sample-report-section {
  background: var(--wash);
}

.report-metadata {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1px;
  margin-top: 44px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: var(--line);
}

.report-metadata > div {
  min-width: 0;
  padding: 17px 18px;
  background: var(--white);
}

.report-metadata span,
.report-document-header span,
.report-receipt dt,
.signature-money-grid dt {
  display: block;
  margin-bottom: 4px;
  color: var(--muted);
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.report-metadata strong {
  display: block;
  color: var(--ink);
  font-size: 0.76rem;
  line-height: 1.45;
}

.report-explorer {
  display: grid;
  grid-template-columns: 272px minmax(0, 1fr);
  gap: 18px;
  align-items: start;
  margin-top: 18px;
}

.report-index {
  display: grid;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: var(--white);
}

.report-index button {
  display: grid;
  min-width: 0;
  min-height: 48px;
  grid-template-columns: 32px minmax(0, 1fr);
  align-items: center;
  gap: 9px;
  padding: 9px 13px;
  border: 0;
  border-bottom: 1px solid var(--line);
  cursor: pointer;
  background: var(--white);
  color: var(--body);
  font-size: 0.72rem;
  font-weight: 700;
  line-height: 1.25;
  text-align: left;
}

.report-index button:last-child {
  border-bottom: 0;
}

.report-index button span {
  color: var(--muted);
  font-size: 0.65rem;
}

.report-index button[aria-selected="true"] {
  background: var(--plum);
  color: var(--white);
  box-shadow: inset 4px 0 0 var(--violet);
}

.report-index button[aria-selected="true"] span {
  color: #c9afff;
}

.report-document {
  min-width: 0;
  scroll-margin-top: 96px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: var(--white);
  box-shadow: 0 20px 50px rgba(36, 14, 49, 0.1);
}

.report-document-header,
.report-document-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 18px 24px;
  background: var(--plum);
  color: rgba(255, 255, 255, 0.72);
}

.report-document-header > div {
  min-width: 0;
}

.report-document-header > div:last-child {
  text-align: right;
}

.report-document-header span {
  color: rgba(255, 255, 255, 0.58);
}

.report-document-header strong {
  display: block;
  color: var(--white);
  font-size: 0.8rem;
}

.report-panel {
  min-height: 610px;
  padding: 46px;
}

.report-panel > h3 {
  max-width: 780px;
  margin-bottom: 20px;
  font-size: clamp(2rem, 3.2vw, 3.1rem);
  line-height: 1.1;
}

.report-deck {
  max-width: 760px;
  margin-bottom: 32px;
  color: var(--muted);
  font-size: 1rem;
}

.report-highlight-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  margin: 30px 0;
}

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

.report-highlight-grid > div {
  padding: 20px;
  border-left: 3px solid var(--violet);
  background: var(--wash);
}

.report-highlight-grid span {
  display: block;
  margin-bottom: 8px;
  color: var(--violet);
  font-size: 0.66rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.report-highlight-grid strong {
  color: var(--ink);
  font-size: 0.9rem;
  line-height: 1.4;
}

.report-receipt {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin: 32px 0 0;
  border-top: 1px solid var(--ink);
}

.report-receipt > div {
  min-width: 0;
  padding: 16px 16px 16px 0;
  border-bottom: 1px solid var(--line);
}

.report-receipt dd {
  margin: 0;
  color: var(--body);
  font-size: 0.78rem;
  line-height: 1.45;
}

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

.report-list > div {
  display: grid;
  grid-template-columns: 155px minmax(0, 1fr);
  gap: 24px;
  padding: 15px 0;
  border-bottom: 1px solid var(--line);
}

.report-list > div > span {
  margin: 3px 0 0;
}

.report-list p {
  margin: 0;
}

.report-table {
  margin-top: 30px;
  border-top: 1px solid var(--ink);
}

.report-table > div {
  display: grid;
  grid-template-columns: 0.75fr 1.4fr 1fr;
  gap: 20px;
  padding: 16px 0;
  border-bottom: 1px solid var(--line);
  font-size: 0.82rem;
}

.report-table-head {
  color: var(--muted);
  font-size: 0.65rem !important;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

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

.report-score {
  margin: 20px 0 28px;
  color: var(--violet);
  font-size: 4rem;
  font-weight: 800;
  letter-spacing: -0.06em;
  line-height: 1;
}

.report-score span {
  color: var(--muted);
  font-size: 1rem;
  letter-spacing: 0;
}

.report-score.secondary {
  color: var(--magenta);
}

.production-brief-list,
.kill-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  margin-top: 28px;
}

.production-brief-list article,
.kill-list article {
  padding: 20px;
  border: 1px solid var(--line);
  border-radius: 10px;
}

.production-brief-list article > span,
.kill-list article > span {
  margin-bottom: 8px;
}

.production-brief-list strong {
  display: block;
  color: var(--ink);
  font-size: 0.9rem;
}

.production-brief-list p,
.kill-list p {
  margin: 8px 0 0;
  color: var(--muted);
  font-size: 0.78rem;
}

.report-document-footer {
  background: #fbf9fc;
  color: var(--muted);
}

.report-control {
  min-height: 44px;
  padding: 8px 12px;
  border: 0;
  cursor: pointer;
  background: transparent;
  color: var(--violet);
  font-size: 0.76rem;
  font-weight: 800;
}

.report-control:disabled {
  cursor: default;
  color: #a9a1ad;
}

.report-document-footer > span {
  font-size: 0.72rem;
}

.report-document-footer strong {
  color: var(--ink);
}

/* Money Map */
.money-page-heading {
  display: grid;
  grid-template-columns: minmax(0, 1.3fr) minmax(280px, 0.55fr);
  align-items: end;
  gap: 70px;
}

.money-page-note {
  margin: 0 0 8px;
  color: rgba(255, 255, 255, 0.58);
  font-size: 0.78rem;
}

.signature-money-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
  margin-top: 48px;
}

.signature-money-grid article {
  min-width: 0;
  padding: 28px;
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.055);
}

.signature-money-grid article.signature-build {
  border-color: rgba(168, 121, 255, 0.55);
  background: rgba(113, 28, 255, 0.14);
}

.signature-money-grid header {
  display: flex;
  justify-content: space-between;
  margin-bottom: 18px;
  color: #c6a8ff;
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 0.12em;
}

.signature-money-grid h3 {
  margin-bottom: 10px;
  color: var(--white);
  font-size: 1.45rem;
}

.signature-money-grid article > p {
  margin-bottom: 22px;
  color: rgba(255, 255, 255, 0.68);
  font-size: 0.88rem;
}

.signature-money-grid dl {
  margin: 0;
  border-top: 1px solid rgba(255, 255, 255, 0.15);
}

.signature-money-grid dl > div {
  display: grid;
  grid-template-columns: 130px minmax(0, 1fr);
  gap: 16px;
  padding: 10px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.11);
}

.signature-money-grid dt {
  margin: 0;
  color: rgba(255, 255, 255, 0.48);
}

.signature-money-grid dd {
  margin: 0;
  color: rgba(255, 255, 255, 0.86);
  font-size: 0.78rem;
}

.signature-money-proof {
  margin-top: 26px;
  padding: 18px 20px;
  border-left: 3px solid var(--violet);
  background: rgba(255, 255, 255, 0.06);
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.82rem;
}

.signature-money-proof strong {
  color: var(--white);
}

/* Human review, first month, and memory */
.intelligence-lead-card {
  display: grid;
  grid-template-columns: 0.7fr 1.3fr;
  gap: 42px;
  margin-top: 42px;
  padding: 34px;
  border: 1px solid var(--line);
  border-radius: 16px;
}

.lead-identity {
  display: flex;
  align-items: center;
  gap: 20px;
}

.lead-identity > span {
  display: inline-flex;
  width: 72px;
  height: 72px;
  flex: 0 0 72px;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: var(--plum);
  color: var(--white);
  font-size: 1.1rem;
  font-weight: 800;
}

.lead-identity p {
  margin-bottom: 4px;
}

.lead-identity h3 {
  margin: 0;
  font-size: 1.55rem;
}

.lead-responsibilities {
  border-top: 1px solid var(--ink);
}

.lead-responsibilities > div {
  display: grid;
  grid-template-columns: 34px minmax(0, 1fr);
  gap: 12px;
  padding: 12px 0;
  border-bottom: 1px solid var(--line);
}

.lead-responsibilities span {
  color: var(--violet);
  font-size: 0.68rem;
  font-weight: 800;
}

.lead-responsibilities p {
  margin: 0;
  font-size: 0.84rem;
}

.first-month-timeline {
  margin-top: 44px;
  border-top: 1px solid var(--ink);
}

.first-month-timeline article {
  display: grid;
  grid-template-columns: 155px minmax(0, 1fr);
  gap: 34px;
  padding: 21px 0;
  border-bottom: 1px solid var(--line);
}

.first-month-timeline article > span {
  color: var(--violet);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.first-month-timeline h3 {
  margin-bottom: 6px;
  font-size: 1.08rem;
}

.first-month-timeline p {
  margin: 0;
  color: var(--muted);
  font-size: 0.88rem;
}

.first-month-timeline .timeline-continues {
  border-left: 3px solid var(--violet);
  padding-left: 20px;
  background: var(--white);
}

.intelligence-growth {
  display: grid;
  grid-template-columns: 1fr auto 1fr auto 1fr;
  align-items: center;
  gap: 26px;
  margin-top: 44px;
}

.intelligence-growth article {
  padding: 30px;
  border-top: 1px solid var(--ink);
  border-bottom: 1px solid var(--line);
}

.intelligence-growth article span {
  color: var(--violet);
  font-size: 0.7rem;
  font-weight: 800;
  text-transform: uppercase;
}

.intelligence-growth article strong {
  display: block;
  margin: 8px 0 3px;
  color: var(--ink);
  font-size: clamp(3rem, 5vw, 4.4rem);
  letter-spacing: -0.06em;
  line-height: 1;
}

.intelligence-growth article p {
  margin: 0;
  color: var(--muted);
  font-size: 0.78rem;
}

.intelligence-growth > i {
  color: var(--violet);
  font-style: normal;
  font-size: 1.35rem;
}

.record-detail-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
  margin-top: 30px;
}

.record-detail-grid article {
  padding: 18px;
  border-left: 3px solid var(--line);
  background: var(--wash);
}

.record-detail-grid article > span {
  margin-bottom: 7px;
}

.record-detail-grid p {
  margin: 0;
  color: var(--muted);
  font-size: 0.8rem;
}

@media (min-width: 981px) and (max-height: 820px) {
  .hero-shell {
    min-height: auto;
    gap: 50px;
    padding-block: 64px 72px;
  }

  .hero-copy h1 {
    margin-bottom: 22px;
    font-size: clamp(3rem, 4.5vw, 4rem);
  }

  .hero-lede {
    line-height: 1.55;
  }

  .hero-support {
    margin-bottom: 24px;
  }

  .hero-facts {
    margin-top: 22px;
  }
}

@media (max-width: 1100px) {
  .site-nav {
    gap: 15px;
    font-size: 0.78rem;
  }

  .hero-shell {
    grid-template-columns: 1fr 0.92fr;
    gap: 40px;
  }

  .decision-layout {
    gap: 50px;
  }

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

  .timeline {
    grid-template-columns: repeat(2, 1fr);
    border: 1px solid var(--line);
  }

  .timeline article,
  .timeline article:last-child {
    border-right: 1px solid var(--line);
    border-bottom: 1px solid var(--line);
  }

  .pricing-layout {
    gap: 50px;
  }
}

@media (max-width: 980px) {
  html {
    scroll-padding-top: calc(85px + env(safe-area-inset-top));
  }

  .announcement {
    display: none;
  }

  .site-header {
    top: 0;
    padding-top: env(safe-area-inset-top);
  }

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

  .brand {
    width: 158px;
    min-height: 44px;
  }

  .menu-toggle {
    display: block;
  }

  .site-nav {
    position: fixed;
    inset: calc(68px + env(safe-area-inset-top)) 0 auto;
    display: none;
    height: calc(100vh - 68px - env(safe-area-inset-top));
    max-height: none;
    align-items: stretch;
    gap: 0;
    padding: 22px calc(24px + env(safe-area-inset-right))
      calc(30px + env(safe-area-inset-bottom))
      calc(24px + env(safe-area-inset-left));
    overflow-y: auto;
    border-top: 1px solid var(--line);
    background: var(--white);
    box-shadow: 0 24px 50px rgba(25, 13, 34, 0.15);
  }

  .site-nav.is-open {
    display: grid;
  }

  .site-nav > a {
    padding: 14px 4px;
    border-bottom: 1px solid var(--line);
    font-size: 0.95rem;
  }

  .site-nav .button {
    margin-top: 18px;
  }

  .hero-shell,
  .split-heading,
  .decision-layout,
  .proof-grid,
  .pricing-layout,
  .faq-layout,
  .calculator-layout {
    grid-template-columns: 1fr;
  }

  .hero-shell {
    min-height: auto;
    gap: 60px;
    padding-block: 74px 78px;
  }

  .product-window {
    width: min(100%, 650px);
    justify-self: center;
  }

  .section {
    padding-block: 82px;
  }

  .three-card-grid,
  .value-grid,
  .research-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .monthly-output-heading,
  .money-page-heading,
  .intelligence-lead-card {
    grid-template-columns: 1fr;
    gap: 24px;
  }

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

  .monthly-output-grid article {
    padding: 22px;
    border-bottom: 1px solid var(--line);
  }

  .monthly-output-grid article:first-child {
    padding-left: 22px;
  }

  .monthly-output-grid article:nth-child(3) {
    border-right: 0;
  }

  .monthly-output-grid article:nth-child(n + 4) {
    border-bottom: 0;
  }

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

  .report-explorer {
    grid-template-columns: 1fr;
  }

  .report-index {
    display: flex;
    overflow-x: auto;
    max-width: 100%;
    overscroll-behavior-inline: contain;
    scroll-snap-type: x proximity;
    scrollbar-width: thin;
    -webkit-overflow-scrolling: touch;
  }

  .report-index button {
    min-width: 190px;
    flex: 0 0 190px;
    border-right: 1px solid var(--line);
    border-bottom: 0;
    scroll-snap-align: start;
  }

  .report-index button[aria-selected="true"] {
    box-shadow: inset 0 4px 0 var(--violet);
  }

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

  .three-card-grid > article:last-child,
  .value-grid > article:last-child {
    grid-column: 1 / -1;
  }

  .split-heading {
    align-items: start;
    gap: 24px;
  }

  .process-list article > div {
    grid-template-columns: 1fr;
    gap: 8px;
  }

  .decision-layout {
    gap: 54px;
  }

  .calculator-layout {
    gap: 42px;
  }

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

  .decision-receipt > span {
    border-bottom: 1px solid rgba(255, 255, 255, 0.15);
  }

  .decision-receipt .receipt-label {
    grid-column: 1 / -1;
  }

  .proof-grid {
    gap: 18px;
  }

  .fit-grid {
    align-items: start;
  }

  .faq-layout {
    gap: 44px;
  }

  .faq-heading {
    position: static;
  }

  .mobile-inline-cta {
    display: block;
    padding-block: 28px;
    border-top: 1px solid var(--line);
    border-bottom: 1px solid var(--line);
    background: var(--white);
  }

  .mobile-inline-cta.is-violet {
    border-color: rgba(255, 255, 255, 0.12);
    background: var(--plum);
  }

  .mobile-inline-cta-inner {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    align-items: center;
    gap: 24px;
  }

  .mobile-inline-cta p {
    margin: 0;
    color: var(--ink);
    font-size: 1rem;
    line-height: 1.45;
  }

  .mobile-inline-cta p strong,
  .mobile-inline-cta p span {
    display: block;
  }

  .mobile-inline-cta p span {
    margin-top: 5px;
    color: var(--muted);
    font-size: 0.88rem;
  }

  .mobile-inline-cta.is-violet p {
    color: var(--white);
  }

  .mobile-inline-cta.is-violet p span {
    color: rgba(255, 255, 255, 0.68);
  }

  .footer-grid {
    grid-template-columns: 2fr repeat(3, 1fr);
    gap: 30px;
  }
}

@media (max-width: 720px) {
  .shell {
    width: min(
      calc(
        100% - 40px - env(safe-area-inset-left) - env(safe-area-inset-right)
      ),
      var(--shell)
    );
  }

  h2 {
    font-size: clamp(2rem, 9vw, 3rem);
  }

  .section {
    padding-block: 64px;
  }

  .hero-shell {
    gap: 42px;
    padding-block: 46px 62px;
  }

  .hero-copy {
    display: flex;
    flex-direction: column;
  }

  .hero-copy > .eyebrow,
  .hero-copy > h1,
  .hero-lede {
    order: 1;
  }

  .hero-actions {
    order: 2;
    margin-bottom: 22px;
  }

  .hero-support {
    order: 3;
    margin-bottom: 20px;
    font-size: 0.96rem;
    line-height: 1.6;
  }

  .hero-facts {
    order: 4;
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px 18px;
    margin-top: 0;
    font-size: 0.76rem;
  }

  .hero-copy h1 {
    margin-bottom: 18px;
    font-size: clamp(2.5rem, 11vw, 3rem);
  }

  .hero-lede {
    margin-bottom: 16px;
    font-size: 1rem;
    line-height: 1.55;
  }

  .hero-copy h1 span {
    display: inline;
  }

  .monthly-output-section {
    padding-block: 54px 58px;
  }

  .monthly-output-heading {
    margin-bottom: 30px;
  }

  .monthly-output-grid,
  .transformation-grid,
  .signature-money-grid,
  .production-brief-list,
  .kill-list,
  .record-detail-grid {
    grid-template-columns: 1fr;
  }

  .monthly-output-grid article,
  .monthly-output-grid article:first-child,
  .monthly-output-grid article:last-child {
    display: grid;
    grid-template-columns: 34px minmax(0, 1fr);
    gap: 6px 12px;
    padding: 18px 0;
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .monthly-output-grid article > span {
    grid-row: 1 / 3;
    margin: 4px 0 0;
  }

  .monthly-output-grid h3 {
    margin: 0;
  }

  .monthly-output-grid article:last-child {
    border-bottom: 0;
  }

  .transformation-grid article {
    padding: 28px 24px;
  }

  .intelligence-chain {
    grid-template-columns: 1fr;
    border-bottom: 0;
  }

  .intelligence-chain > div,
  .intelligence-chain > div:first-child {
    display: grid;
    grid-template-columns: 34px minmax(0, 1fr);
    align-items: center;
    gap: 8px;
    padding: 14px 0;
    border-bottom: 1px solid var(--line);
  }

  .intelligence-chain strong {
    margin: 0;
  }

  .intelligence-chain i {
    display: none;
  }

  .intelligence-chain-note {
    text-align: left;
  }

  .report-metadata {
    grid-template-columns: 1fr;
  }

  .report-index button {
    min-width: 172px;
    flex-basis: 172px;
    min-height: 52px;
    font-size: 0.7rem;
  }

  .report-document-header {
    align-items: flex-start;
    flex-direction: column;
    gap: 10px;
  }

  .report-document-header > div:last-child {
    text-align: left;
  }

  .report-panel {
    min-height: auto;
    padding: 30px 22px;
    overflow-wrap: anywhere;
  }

  .report-panel > h3 {
    font-size: clamp(1.75rem, 8.5vw, 2.35rem);
  }

  .report-highlight-grid,
  .report-highlight-grid.four,
  .report-receipt {
    grid-template-columns: 1fr;
  }

  .report-list > div {
    grid-template-columns: 1fr;
    gap: 5px;
  }

  .report-table > div {
    grid-template-columns: 1fr;
    gap: 4px;
  }

  .report-table-head {
    display: none !important;
  }

  .report-table > div strong {
    margin-bottom: 4px;
  }

  .report-control {
    padding-inline: 5px;
  }

  .signature-money-grid article {
    padding: 24px;
    overflow-wrap: anywhere;
  }

  .signature-money-grid dl > div {
    grid-template-columns: 105px minmax(0, 1fr);
    gap: 12px;
  }

  .intelligence-lead-card {
    padding: 26px 22px;
  }

  .lead-identity {
    align-items: flex-start;
  }

  .first-month-timeline article {
    grid-template-columns: 1fr;
    gap: 8px;
  }

  .first-month-timeline .timeline-continues {
    padding-left: 16px;
  }

  .intelligence-growth {
    grid-template-columns: 1fr;
    gap: 0;
  }

  .intelligence-growth article {
    display: grid;
    grid-template-columns: 78px 90px minmax(0, 1fr);
    align-items: baseline;
    gap: 12px;
    padding: 22px 0;
  }

  .intelligence-growth article strong {
    margin: 0;
    font-size: 2.9rem;
  }

  .intelligence-growth > i {
    display: none;
  }

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

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

  .hero-actions .text-link {
    width: max-content;
    min-height: 44px;
  }

  .product-window {
    transform: none;
  }

  .window-body {
    padding: 20px;
  }

  .window-bar {
    grid-template-columns: auto 1fr;
  }

  .window-status {
    display: none;
  }

  .window-heading {
    align-items: flex-start;
    flex-direction: column;
  }

  .mini-label,
  .confidence,
  .economics-grid span,
  .intelligence-base > div span,
  .example-note {
    font-size: 0.7rem;
  }

  .economics-grid strong {
    font-size: 0.78rem;
  }

  .tournament-strip {
    gap: 4px;
    padding-inline: 9px;
  }

  .tournament-strip i {
    font-size: 0.68rem;
  }

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

  .build-order li {
    grid-template-columns: 25px 1fr;
  }

  .build-order em {
    grid-column: 2;
  }

  .three-card-grid,
  .value-grid,
  .research-grid,
  .system-grid,
  .wide-card-columns,
  .handoff-grid,
  .fit-grid,
  .sample-two-col,
  .sample-three-col,
  .sample-rules,
  .sample-score-row {
    grid-template-columns: 1fr;
  }

  .three-card-grid > article:last-child,
  .value-grid > article:last-child {
    grid-column: auto;
  }

  .three-card-grid,
  .value-grid,
  .research-grid,
  .system-grid,
  .handoff-grid,
  .timeline,
  .fit-grid,
  .sample-shell {
    margin-top: 36px;
  }

  .three-card-grid,
  .research-grid,
  .handoff-grid {
    gap: 0;
    border-top: 1px solid var(--line);
  }

  .plain-card,
  .research-grid article,
  .handoff-grid article {
    display: grid;
    min-height: 0;
    grid-template-columns: 42px minmax(0, 1fr);
    column-gap: 14px;
    padding: 24px 0;
    border: 0;
    border-bottom: 1px solid var(--line);
    border-radius: 0;
    background: transparent;
    box-shadow: none;
  }

  .plain-card .card-number,
  .research-grid article > span,
  .handoff-grid article > span {
    grid-row: 1 / 3;
    margin: 0;
    align-self: start;
  }

  .plain-card h3,
  .plain-card p,
  .research-grid h3,
  .research-grid p,
  .handoff-grid h3,
  .handoff-grid p {
    grid-column: 2;
  }

  .plain-card p,
  .research-grid p,
  .handoff-grid p,
  .value-grid p,
  .system-card li,
  .process-list p,
  .timeline p,
  .fit-grid li {
    font-size: 0.95rem;
    line-height: 1.58;
  }

  .research-grid .research-proof {
    background: transparent;
  }

  .value-grid article {
    min-height: 0;
    padding: 28px;
  }

  .value-label {
    margin-bottom: 24px;
    font-size: 0.72rem;
  }

  .card-number {
    margin-bottom: 20px;
  }

  .system-card {
    min-height: 0;
    padding: 28px;
  }

  .system-card-top {
    margin-bottom: 22px;
  }

  .system-card h3 {
    margin-bottom: 18px;
  }

  .wide-card-columns {
    gap: 20px;
  }

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

  .system-card {
    min-height: auto;
  }

  .process-list article {
    grid-template-columns: 44px 1fr;
    gap: 12px;
    padding-block: 23px;
  }

  .funnel article {
    grid-template-columns: 66px 1fr;
    padding: 18px;
  }

  .money-map article {
    grid-template-columns: 72px 1fr;
    padding: 19px;
  }

  .money-map p,
  .decision-copy > p:not(.eyebrow),
  .stress-test li {
    font-size: 0.94rem;
  }

  .calculator-form {
    grid-template-columns: 1fr;
  }

  .calculator-form label {
    min-height: auto;
  }

  .funnel article > strong {
    font-size: 1.6rem;
  }

  .funnel > span {
    margin-left: 32px;
  }

  .decision-receipt {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    margin-top: 40px;
  }

  .decision-receipt .receipt-label {
    grid-column: 1 / -1;
  }

  .decision-receipt > span {
    min-height: 0;
    padding: 15px;
  }

  .handoff-grid article {
    min-height: auto;
  }

  .handoff-grid article > span {
    margin-bottom: 0;
  }

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

  .timeline article {
    min-height: auto;
    padding: 24px 20px;
  }

  .timeline article > span {
    margin-bottom: 18px;
  }

  .proof-grid > article,
  .fit-grid > article,
  .pricing-card {
    padding: 30px;
  }

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

  .sample-tabs button:nth-child(2) {
    border-right: 0;
  }

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

  .sample-tabs button {
    font-size: 0.75rem;
    letter-spacing: 0.02em;
    word-spacing: 0.24em;
  }

  .sample-document > header {
    align-items: flex-start;
    flex-direction: column;
    gap: 12px;
  }

  .sample-document > header > div:last-child {
    text-align: left;
  }

  .sample-panel {
    min-height: auto;
    padding: 34px 24px;
  }

  .sample-panel h3 {
    margin-bottom: 28px;
  }

  .sample-build-list li {
    grid-template-columns: 1fr;
    gap: 6px;
  }

  .sample-document > footer {
    align-items: flex-start;
    flex-direction: column;
    gap: 5px;
  }

  .scope-summary > div {
    grid-template-columns: 1fr;
    gap: 6px;
  }

  .price strong {
    font-size: 3.8rem;
  }

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

  .footer-brand {
    grid-column: 1 / -1;
  }

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

  .mobile-inline-cta {
    display: block;
    padding-block: 30px;
    border-top: 1px solid var(--line);
    border-bottom: 1px solid var(--line);
    background: var(--white);
  }

  .mobile-inline-cta.is-violet {
    border-color: rgba(255, 255, 255, 0.12);
    background: var(--plum);
  }

  .mobile-inline-cta-inner {
    display: grid;
    grid-template-columns: 1fr;
    gap: 18px;
  }

  .mobile-inline-cta p {
    margin: 0;
    color: var(--ink);
    font-size: 1rem;
    line-height: 1.45;
  }

  .mobile-inline-cta p strong,
  .mobile-inline-cta p span {
    display: block;
  }

  .mobile-inline-cta p span {
    margin-top: 5px;
    color: var(--muted);
    font-size: 0.88rem;
  }

  .mobile-inline-cta.is-violet p {
    color: var(--white);
  }

  .mobile-inline-cta.is-violet p span {
    color: rgba(255, 255, 255, 0.68);
  }

  .mobile-inline-cta .button {
    width: 100%;
  }

  .modal-header {
    position: sticky;
    z-index: 3;
    top: 0;
    padding: 28px 64px 22px 22px;
    background: var(--white);
  }

  .legal-header > .shell {
    min-height: 70px;
  }

  .legal-header img {
    width: 148px;
  }

  .legal-header .button {
    min-height: 42px;
    padding: 9px 12px;
  }

  .legal-page {
    padding: 36px 16px 70px;
  }

  .legal-shell {
    padding: 32px 24px;
  }

  .profile-form {
    padding: 30px 22px 24px;
  }

  .profile-form input,
  .profile-form textarea,
  .calculator-form input {
    font-size: 16px;
  }

  .profile-form label small,
  .form-note {
    font-size: 0.75rem;
  }

  .two-col {
    grid-template-columns: 1fr;
  }

  .form-actions {
    align-items: stretch;
    flex-wrap: wrap;
  }

  .form-actions .button {
    min-width: 0;
    flex: 1 1 120px;
  }

  .form-back {
    margin-right: 0;
  }

  .form-note {
    text-align: left;
  }

  .site-footer {
    padding-bottom: calc(28px + env(safe-area-inset-bottom));
  }

  .faq-list summary {
    gap: 14px;
    overflow-wrap: anywhere;
  }

  .faq-list summary span {
    flex: 0 0 auto;
  }
}

@media (max-width: 430px) {
  .hero-shell {
    padding-top: 40px;
  }

  .window-body {
    padding: 17px;
  }

  .economics-grid > div {
    grid-template-columns: 1fr;
    gap: 5px;
  }

  .section {
    padding-block: 56px;
  }

  .money-map article,
  .funnel article {
    grid-template-columns: 1fr;
    gap: 8px;
    padding: 18px;
  }

  .memory-list > div {
    grid-template-columns: 1fr;
    gap: 6px;
  }

  .calculator-results {
    padding: 28px 22px;
  }

  .calculator-results > div {
    align-items: flex-start;
    flex-direction: column;
    gap: 5px;
  }

  .tournament-strip strong {
    font-size: 0.95rem;
  }

  .tournament-strip span {
    font-size: 0.44rem;
  }

  .system-card {
    padding: 26px;
  }

  .decision-copy h2,
  .memory-card h2 {
    font-size: 2.15rem;
  }

  .sample-tabs button {
    font-size: 0.72rem;
  }

  .sample-panel h3 {
    font-size: 1.55rem;
  }

  .profile-modal {
    width: calc(
      100% - 16px - env(safe-area-inset-left) - env(safe-area-inset-right)
    );
    max-height: calc(100dvh - 16px);
    border-radius: 14px;
  }

  .modal-shell {
    max-height: calc(100dvh - 16px);
  }

  .modal-header {
    padding: 20px 58px 17px 18px;
  }

  .modal-header h2 {
    margin-bottom: 0;
    font-size: 1.55rem;
  }

  .modal-header p:last-child {
    display: none;
  }

  .modal-close {
    top: 14px;
    right: 14px;
    width: 44px;
    height: 44px;
  }

  .profile-form {
    padding: 24px 18px 20px;
  }

  .step-heading {
    margin-bottom: 22px;
  }

  .step-heading h3 {
    font-size: 1.45rem;
  }

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

@supports (height: 100dvh) {
  @media (max-width: 980px) {
    .site-nav {
      height: calc(100dvh - 68px - env(safe-area-inset-top));
    }
  }

  .profile-modal,
  .modal-shell {
    max-height: calc(
      100dvh - 28px - env(safe-area-inset-top) - env(safe-area-inset-bottom)
    );
  }

  @media (max-width: 430px) {
    .profile-modal,
    .modal-shell {
      max-height: calc(
        100dvh - 16px - env(safe-area-inset-top) - env(safe-area-inset-bottom)
      );
    }
  }
}

@media (max-width: 340px) {
  .hero-shell {
    padding-top: 28px;
  }

  .hero-copy h1 {
    font-size: 2.35rem;
  }

  .hero-lede {
    font-size: 0.96rem;
    line-height: 1.48;
  }
}

@media (pointer: coarse) {
  .brand,
  .text-link,
  .site-footer nav a,
  .site-footer .link-button {
    min-height: 44px;
  }

  .site-footer nav a,
  .site-footer .link-button {
    display: inline-flex;
    align-items: center;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
  }
}
