:root {
  --ink: #1b1a16;
  --ink-soft: #2a2923;
  --paper: #f4efe4;
  --paper-light: #fbf9f3;
  --oat: #e4dccb;
  --line: #cfc4af;
  --sage: #8d9678;
  --sage-dark: #5e6850;
  --sage-light: #ccd2bd;
  --clay: #ae735b;
  --muted: #706b61;
  --white: #fffdf8;
  --serif: "Instrument Serif", Georgia, serif;
  --sans: "DM Sans", Arial, sans-serif;
  --mono: "IBM Plex Mono", monospace;
  --shadow: 0 28px 80px rgba(41, 37, 28, 0.14);
  --radius: 24px;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 86px;
}

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: var(--sans);
  font-size: 16px;
  line-height: 1.6;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}

body.menu-open {
  overflow: hidden;
}

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

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

button,
input,
textarea {
  font: inherit;
}

button {
  color: inherit;
}

[hidden] {
  display: none !important;
}

::selection {
  background: var(--sage-light);
  color: var(--ink);
}

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

.skip-link {
  position: fixed;
  z-index: 1000;
  top: 12px;
  left: 12px;
  padding: 10px 14px;
  background: var(--white);
  color: var(--ink);
  opacity: 0;
  pointer-events: none;
  transform: translateY(-150%);
  transition: opacity 120ms ease, transform 160ms ease;
}

.skip-link:focus,
.skip-link:focus-visible {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}

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

.section {
  padding: clamp(88px, 10vw, 152px) 0;
}

.kicker,
.eyebrow {
  margin: 0 0 18px;
  color: var(--sage-dark);
  font-family: var(--mono);
  font-size: 0.73rem;
  font-weight: 600;
  letter-spacing: 0.09em;
  line-height: 1.45;
  text-transform: uppercase;
}

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

h1,
h2 {
  font-family: var(--serif);
  font-weight: 400;
  letter-spacing: -0.035em;
  line-height: 0.98;
}

h1 {
  max-width: 850px;
  margin-bottom: 28px;
  font-size: clamp(3.45rem, 7.6vw, 7.25rem);
}

h1 em {
  color: var(--sage-dark);
  font-weight: 400;
}

h2 {
  margin-bottom: 24px;
  font-size: clamp(2.7rem, 5.5vw, 5rem);
}

h3 {
  font-size: 1.34rem;
  letter-spacing: -0.025em;
  line-height: 1.25;
}

.section-heading {
  margin-bottom: 58px;
}

.section-heading.narrow {
  max-width: 840px;
}

.button {
  display: inline-flex;
  min-height: 54px;
  align-items: center;
  justify-content: center;
  padding: 14px 22px;
  border: 1px solid transparent;
  border-radius: 999px;
  cursor: pointer;
  font-size: 0.93rem;
  font-weight: 700;
  line-height: 1.2;
  text-align: center;
  transition: transform 160ms ease, background 160ms ease, border-color 160ms ease;
}

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

.button-primary {
  background: var(--sage-dark);
  color: var(--white);
}

.button-primary:hover {
  background: #4f5943;
}

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

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  border-bottom: 1px solid currentColor;
  font-weight: 700;
  line-height: 1.35;
}

.site-header {
  position: sticky;
  z-index: 100;
  top: 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(27, 26, 22, 0.96);
  color: var(--white);
  backdrop-filter: blur(16px);
}

.nav-row {
  display: flex;
  min-height: 72px;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.brand {
  display: inline-flex;
  flex: 0 0 auto;
  align-items: center;
}

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

.primary-nav {
  display: flex;
  align-items: center;
  gap: 26px;
  font-size: 0.85rem;
  font-weight: 600;
}

.primary-nav > a:not(.nav-button) {
  color: rgba(255, 253, 248, 0.72);
}

.primary-nav > a:hover {
  color: var(--white);
}

.nav-button {
  padding: 10px 17px;
  border: 1px solid rgba(255, 255, 255, 0.26);
  border-radius: 999px;
}

.menu-toggle {
  display: none;
  border: 0;
  background: transparent;
}

.hero {
  overflow: hidden;
  padding: clamp(72px, 9vw, 130px) 0 0;
  background:
    radial-gradient(circle at 78% 12%, rgba(141, 150, 120, 0.22), transparent 31rem),
    linear-gradient(180deg, var(--paper-light), var(--paper));
}

.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.07fr) minmax(390px, 0.93fr);
  align-items: center;
  gap: clamp(48px, 7vw, 90px);
}

.hero-copy,
.hero-proof,
.operator-copy,
.evidence-stack,
.blueprint-copy,
.snapshot-copy {
  min-width: 0;
}

.hero-lead {
  max-width: 670px;
  margin-bottom: 34px;
  color: #4d4941;
  font-size: clamp(1.08rem, 1.8vw, 1.34rem);
  line-height: 1.55;
}

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

.quiet-proof {
  display: flex;
  flex-wrap: wrap;
  gap: 11px 24px;
  margin: 28px 0 0;
  padding: 0;
  color: var(--muted);
  font-size: 0.82rem;
  list-style: none;
}

.quiet-proof li {
  display: flex;
  align-items: center;
  gap: 8px;
}

.quiet-proof li::before {
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--sage-dark);
  content: "";
}

.browser-window {
  overflow: hidden;
  border: 1px solid #bbb09d;
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: var(--shadow);
  transform: rotate(1.25deg);
}

.browser-chrome {
  display: flex;
  height: 44px;
  align-items: center;
  gap: 7px;
  padding: 0 16px;
  border-bottom: 1px solid var(--line);
  background: #e8e1d4;
}

.browser-chrome i {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #9f988c;
}

.browser-chrome span {
  margin-left: 8px;
  color: #777064;
  font-family: var(--mono);
  font-size: 0.64rem;
}

.mini-site {
  padding: clamp(28px, 4vw, 54px);
}

.mini-nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding-bottom: 46px;
  font-size: 0.65rem;
}

.mini-nav b {
  font-size: 0.78rem;
}

.mini-nav span {
  color: var(--muted);
}

.mini-kicker {
  margin-bottom: 12px;
  color: var(--clay);
  font-family: var(--mono);
  font-size: 0.58rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.mini-site h2 {
  max-width: 520px;
  margin-bottom: 18px;
  font-size: clamp(2.2rem, 3.5vw, 3.55rem);
  line-height: 0.98;
}

.mini-site > p:not(.mini-kicker) {
  max-width: 480px;
  color: var(--muted);
  font-size: 0.82rem;
  line-height: 1.55;
}

.mini-action {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  margin-top: 10px;
  padding: 11px 15px;
  border-radius: 5px;
  background: var(--ink);
  color: var(--white);
  font-size: 0.7rem;
  font-weight: 700;
}

.mini-reassurance {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  margin-top: 42px;
  border: 1px solid var(--line);
  background: var(--line);
}

.mini-reassurance span {
  padding: 12px;
  background: var(--paper-light);
  color: var(--muted);
  font-size: 0.55rem;
  line-height: 1.35;
}

.mini-reassurance b {
  display: block;
  margin-bottom: 2px;
  color: var(--ink);
  font-size: 0.7rem;
}

.hero-annotation {
  position: relative;
  z-index: 2;
  width: calc(100% - 40px);
  margin: -17px auto 0;
  padding: 20px 22px;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: var(--paper-light);
  box-shadow: 0 12px 36px rgba(41, 37, 28, 0.1);
}

.hero-annotation > span {
  display: block;
  margin-bottom: 8px;
  color: var(--muted);
  font-family: var(--mono);
  font-size: 0.66rem;
  text-transform: uppercase;
}

.hero-annotation p {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 0;
}

.hero-annotation b {
  padding: 6px 9px;
  border-radius: 4px;
  background: var(--oat);
  font-size: 0.72rem;
}

.credibility-row {
  display: grid;
  grid-template-columns: 260px minmax(0, 1fr) auto;
  align-items: center;
  gap: 34px;
  margin-top: clamp(72px, 9vw, 120px);
  padding: 27px 0;
  border-top: 1px solid var(--line);
}

.forbes-mark {
  display: block;
  width: 260px;
}

.forbes-mark img,
.forbes-card img {
  width: 100%;
  height: auto;
  aspect-ratio: 678 / 144;
  object-fit: contain;
}

.credibility-row p {
  margin: 0;
  color: #555047;
  font-size: 0.88rem;
}

.credibility-row p strong {
  color: var(--ink);
}

.credential-link {
  border-bottom: 1px solid currentColor;
  font-size: 0.78rem;
  font-weight: 700;
}

.recognition {
  background: var(--ink);
  color: var(--white);
}

.recognition .kicker {
  color: var(--sage-light);
}

.buyer-questions {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  margin-bottom: 72px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  background: rgba(255, 255, 255, 0.16);
}

.buyer-questions article {
  min-height: 280px;
  padding: 32px;
  background: var(--ink);
}

.buyer-questions article > span {
  display: block;
  margin-bottom: 58px;
  color: var(--sage-light);
  font-family: var(--mono);
  font-size: 0.68rem;
}

.buyer-questions h3 {
  max-width: 290px;
  margin-bottom: 16px;
  font-family: var(--serif);
  font-size: 2rem;
  font-weight: 400;
}

.buyer-questions p {
  margin-bottom: 0;
  color: rgba(255, 253, 248, 0.62);
  font-size: 0.9rem;
}

.handoff-demo {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: 58px;
  padding: clamp(30px, 5vw, 60px);
  border-radius: var(--radius);
  background: var(--paper);
  color: var(--ink);
}

.demo-copy h3 {
  margin-bottom: 18px;
  font-family: var(--serif);
  font-size: clamp(2.2rem, 4vw, 3.6rem);
  font-weight: 400;
  line-height: 1;
}

.demo-copy > p:not(.kicker) {
  color: var(--muted);
}

.demo-switch {
  display: inline-flex;
  gap: 4px;
  margin-top: 18px;
  padding: 4px;
  border-radius: 999px;
  background: #dcd3c2;
}

.demo-switch button {
  min-height: 38px;
  padding: 7px 14px;
  border: 0;
  border-radius: 999px;
  background: transparent;
  cursor: pointer;
  font-size: 0.76rem;
  font-weight: 700;
}

.demo-switch button.is-active {
  background: var(--white);
  box-shadow: 0 4px 12px rgba(41, 37, 28, 0.09);
}

.path-stage {
  align-self: center;
}

.path-view {
  display: grid;
  grid-template-columns: 1fr auto 1fr auto 1fr;
  align-items: stretch;
  gap: 8px;
}

.path-step {
  min-width: 0;
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: var(--paper-light);
}

.path-step i {
  display: grid;
  width: 27px;
  height: 27px;
  margin-bottom: 34px;
  place-items: center;
  border-radius: 50%;
  background: var(--ink);
  color: var(--white);
  font-family: var(--mono);
  font-size: 0.67rem;
  font-style: normal;
}

.path-step b,
.path-step small {
  display: block;
}

.path-step b {
  margin-bottom: 5px;
  font-size: 0.85rem;
}

.path-step small {
  color: var(--muted);
  font-size: 0.68rem;
  line-height: 1.45;
}

.path-step.is-muted {
  opacity: 0.58;
}

.path-step.is-risk {
  border-color: rgba(174, 115, 91, 0.65);
  background: #f0dfd6;
}

.path-step.is-risk i {
  background: var(--clay);
}

.path-step.is-good {
  border-color: var(--sage);
  background: #e0e5d6;
}

.path-step.is-good i {
  background: var(--sage-dark);
}

.path-arrow {
  align-self: center;
  color: var(--muted);
}

.compare-section {
  background: #e9e1d2;
}

.compare-layout {
  display: grid;
  grid-template-columns: 0.72fr 1.28fr;
  align-items: center;
  gap: clamp(50px, 8vw, 100px);
}

.compare-intro > p:not(.kicker) {
  color: var(--muted);
}

.site-demo {
  position: relative;
}

.site-state {
  overflow: hidden;
  min-height: 600px;
  border: 1px solid #b9af9c;
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: var(--shadow);
}

.mock-top {
  display: flex;
  min-height: 62px;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 0 28px;
  border-bottom: 1px solid var(--line);
  font-size: 0.7rem;
}

.mock-top span {
  color: var(--muted);
}

.mock-body {
  padding: clamp(58px, 8vw, 100px) clamp(32px, 6vw, 72px);
}

.mock-body > p {
  margin-bottom: 14px;
  color: var(--sage-dark);
  font-family: var(--mono);
  font-size: 0.64rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.mock-body h3 {
  max-width: 610px;
  margin-bottom: 22px;
  font-family: var(--serif);
  font-size: clamp(2.7rem, 5.7vw, 5.2rem);
  font-weight: 400;
  line-height: 0.96;
}

.mock-body > span {
  display: block;
  max-width: 560px;
  color: var(--muted);
  font-size: 0.9rem;
}

.mock-body > a {
  display: inline-flex;
  margin-top: 30px;
  padding: 12px 16px;
  border-radius: 5px;
  background: var(--ink);
  color: var(--white);
  font-size: 0.75rem;
  font-weight: 700;
}

.before-body h3 {
  color: #6f6b64;
}

.before-body > a {
  background: #aaa397;
}

.question-flags,
.answer-flags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  padding: 22px 28px;
  border-top: 1px solid var(--line);
  background: #e5ded1;
}

.question-flags span,
.answer-flags span {
  padding: 6px 9px;
  border-radius: 4px;
  font-family: var(--mono);
  font-size: 0.61rem;
}

.question-flags span {
  border: 1px solid #c99983;
  color: #885945;
}

.answer-flags span {
  background: #d5dcc8;
}

.answer-flags b {
  margin-right: 4px;
  color: var(--sage-dark);
}

.sprint-section {
  background: var(--paper-light);
}

.sprint-header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 50px;
  margin-bottom: 58px;
}

.sprint-header h2 {
  margin-bottom: 0;
}

.price-block {
  flex: 0 0 auto;
  min-width: 220px;
  padding-left: 28px;
  border-left: 1px solid var(--line);
}

.price-block span,
.price-block small {
  display: block;
  color: var(--muted);
  font-family: var(--mono);
  font-size: 0.66rem;
  text-transform: uppercase;
}

.price-block strong {
  display: block;
  margin: 4px 0;
  font-family: var(--serif);
  font-size: 3.6rem;
  font-weight: 400;
  line-height: 1;
}

.scope-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1px;
  margin-bottom: 34px;
  border: 1px solid var(--line);
  background: var(--line);
}

.scope-grid article {
  min-height: 330px;
  padding: clamp(28px, 4vw, 46px);
  background: var(--paper-light);
}

.scope-grid article > span {
  color: var(--clay);
  font-family: var(--mono);
  font-size: 0.7rem;
  font-weight: 600;
  text-transform: uppercase;
}

.scope-grid h3 {
  max-width: 390px;
  margin: 58px 0 24px;
  font-family: var(--serif);
  font-size: 2.25rem;
  font-weight: 400;
  line-height: 1.02;
}

.scope-grid ul,
.fit-card ul,
.blueprint-list {
  margin: 0;
  padding: 0;
  list-style: none;
}

.scope-grid li,
.fit-card li,
.blueprint-list li {
  position: relative;
  padding: 8px 0 8px 21px;
  border-top: 1px solid rgba(122, 113, 98, 0.22);
  color: #575248;
  font-size: 0.88rem;
}

.scope-grid li::before,
.fit-card li::before,
.blueprint-list li::before {
  position: absolute;
  top: 13px;
  left: 0;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--sage);
  content: "";
}

.schedule {
  display: grid;
  grid-template-columns: 1.6fr 0.7fr;
  gap: 38px;
  margin: 34px 0;
  padding: clamp(26px, 4vw, 42px);
  border-radius: 18px;
  background: var(--ink);
  color: var(--white);
}

.schedule-track {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}

.schedule-track article {
  padding: 0 18px;
  border-left: 1px solid rgba(255, 255, 255, 0.16);
}

.schedule-track article:first-child {
  padding-left: 0;
  border-left: 0;
}

.schedule-track b,
.schedule-track span {
  display: block;
}

.schedule-track b {
  margin-bottom: 22px;
  color: var(--sage-light);
  font-family: var(--mono);
  font-size: 0.67rem;
  text-transform: uppercase;
}

.schedule-track span {
  color: rgba(255, 253, 248, 0.75);
  font-size: 0.74rem;
  line-height: 1.5;
}

.schedule > p {
  margin: 0;
  padding-left: 30px;
  border-left: 1px solid rgba(255, 255, 255, 0.16);
  color: rgba(255, 253, 248, 0.7);
  font-size: 0.79rem;
}

.schedule > p b {
  color: var(--white);
}

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

.fit-card {
  padding: clamp(30px, 5vw, 52px);
  border-radius: 18px;
  background: #dfe4d5;
}

.fit-card.is-light {
  border: 1px solid var(--line);
  background: #eee7da;
}

.fit-card h3 {
  max-width: 460px;
  margin-bottom: 34px;
  font-family: var(--serif);
  font-size: 2.4rem;
  font-weight: 400;
}

.risk-reversal {
  display: grid;
  grid-template-columns: 0.42fr 1.58fr;
  gap: 34px;
  margin-top: 20px;
  padding: clamp(30px, 5vw, 52px);
  border: 1px solid var(--line);
  border-radius: 18px;
}

.risk-reversal > span {
  color: var(--clay);
  font-family: var(--mono);
  font-size: 0.7rem;
  font-weight: 600;
  text-transform: uppercase;
}

.risk-reversal h3 {
  max-width: 760px;
  margin-bottom: 16px;
  font-family: var(--serif);
  font-size: clamp(2rem, 3.6vw, 3.35rem);
  font-weight: 400;
}

.risk-reversal p {
  max-width: 780px;
  margin-bottom: 0;
  color: var(--muted);
}

.operator-section {
  background: #ddd4c2;
}

.operator-grid {
  display: grid;
  grid-template-columns: 0.76fr 0.9fr 0.8fr;
  align-items: stretch;
  gap: 24px;
}

.portrait-frame {
  overflow: hidden;
  min-height: 620px;
  border-radius: 20px;
  background: #bdb4a2;
}

.portrait-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 28%;
}

.operator-copy {
  padding: clamp(16px, 3vw, 42px);
}

.operator-copy h2 {
  font-size: clamp(3rem, 5vw, 5rem);
}

.operator-copy > p:not(.kicker) {
  color: #504c43;
}

.operator-links {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin-top: 34px;
  font-size: 0.8rem;
  font-weight: 700;
}

.operator-links a {
  border-bottom: 1px solid currentColor;
}

.evidence-stack {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.forbes-card,
.evidence-link,
.metrics {
  padding: 26px;
  border: 1px solid rgba(68, 62, 52, 0.18);
  border-radius: 16px;
  background: var(--paper-light);
}

.forbes-card img {
  margin-bottom: 20px;
}

.forbes-card span,
.evidence-link > span,
.metric-note {
  color: var(--muted);
  font-family: var(--mono);
  font-size: 0.64rem;
  text-transform: uppercase;
}

.evidence-link strong {
  display: block;
  margin: 12px 0;
  font-family: var(--serif);
  font-size: 1.8rem;
  font-weight: 400;
  line-height: 1.05;
}

.evidence-link small {
  display: block;
  color: var(--muted);
  font-size: 0.69rem;
  line-height: 1.45;
}

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

.metrics p {
  margin: 0;
}

.metrics strong,
.metrics span {
  display: block;
}

.metrics strong {
  margin-bottom: 7px;
  font-family: var(--serif);
  font-size: 2.5rem;
  font-weight: 400;
  line-height: 1;
}

.metrics span {
  color: var(--muted);
  font-size: 0.68rem;
  line-height: 1.45;
}

.metric-note {
  padding-inline: 8px;
  line-height: 1.5;
}

.blueprint-section {
  overflow: hidden;
  background: var(--sage-dark);
  color: var(--white);
}

.blueprint-grid {
  display: grid;
  grid-template-columns: minmax(300px, 0.72fr) minmax(0, 1.28fr);
  align-items: center;
  gap: clamp(50px, 9vw, 110px);
}

.blueprint-preview {
  position: relative;
  width: min(100%, 460px);
  padding: 22px 22px 0 0;
}

.blueprint-preview img {
  position: relative;
  z-index: 2;
  width: 100%;
  height: auto;
  border: 1px solid rgba(255, 255, 255, 0.35);
  box-shadow: 0 34px 80px rgba(0, 0, 0, 0.25);
}

.preview-shadow {
  position: absolute;
  z-index: 1;
  right: 0;
  bottom: -22px;
  width: calc(100% - 22px);
  height: calc(100% - 22px);
  border: 1px solid rgba(255, 255, 255, 0.24);
  background: #4b5540;
}

.blueprint-preview > span {
  position: absolute;
  z-index: 3;
  right: -18px;
  bottom: 34px;
  padding: 9px 12px;
  border-radius: 999px;
  background: var(--paper);
  color: var(--ink);
  font-family: var(--mono);
  font-size: 0.65rem;
  font-weight: 600;
  text-transform: uppercase;
}

.blueprint-copy .kicker {
  color: var(--sage-light);
}

.blueprint-copy h2 {
  max-width: 760px;
}

.blueprint-lead {
  max-width: 680px;
  color: rgba(255, 253, 248, 0.76);
  font-size: 1.12rem;
}

.blueprint-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0 22px;
  max-width: 750px;
  margin: 34px 0;
}

.blueprint-list li {
  border-color: rgba(255, 255, 255, 0.18);
  color: rgba(255, 253, 248, 0.82);
}

.blueprint-list li::before {
  background: var(--sage-light);
}

.gate-form {
  max-width: 720px;
  margin-top: 38px;
  padding: 28px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 16px;
  background: rgba(19, 22, 16, 0.2);
}

.gate-form > label {
  display: block;
  margin-bottom: 11px;
  font-size: 0.82rem;
  font-weight: 700;
}

.inline-form {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 10px;
}

.inline-form input,
.snapshot-form input,
.snapshot-form textarea {
  width: 100%;
  min-width: 0;
  border: 1px solid transparent;
  border-radius: 9px;
  background: var(--white);
  color: var(--ink);
}

.inline-form input {
  min-height: 54px;
  padding: 12px 15px;
}

.inline-form input::placeholder,
.snapshot-form input::placeholder,
.snapshot-form textarea::placeholder {
  color: #8c867b;
}

.form-note,
.form-status {
  margin: 10px 0 0;
  font-size: 0.7rem;
  line-height: 1.5;
}

.form-note {
  color: rgba(255, 253, 248, 0.65);
}

.form-status {
  min-height: 1.1em;
  color: var(--white);
  font-weight: 600;
}

.form-status.is-error {
  color: #ffd8c8;
}

.unlock-card {
  max-width: 720px;
  margin-top: 38px;
  padding: 28px;
  border-radius: 16px;
  background: var(--paper-light);
  color: var(--ink);
}

.unlock-card > span {
  color: var(--sage-dark);
  font-family: var(--mono);
  font-size: 0.7rem;
  font-weight: 600;
  text-transform: uppercase;
}

.unlock-card h3 {
  margin: 8px 0;
  font-family: var(--serif);
  font-size: 2.4rem;
  font-weight: 400;
}

.unlock-card p {
  color: var(--muted);
}

.unlock-card .text-link {
  margin: 22px 0 0 14px;
  font-size: 0.79rem;
}

.honey {
  position: absolute !important;
  width: 1px !important;
  height: 1px !important;
  overflow: hidden !important;
  clip: rect(0 0 0 0) !important;
  white-space: nowrap !important;
}

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

.snapshot-grid {
  display: grid;
  grid-template-columns: 0.82fr 1.18fr;
  align-items: start;
  gap: clamp(48px, 8vw, 100px);
}

.snapshot-copy > p:not(.kicker) {
  max-width: 560px;
  color: var(--muted);
}

.snapshot-output {
  display: grid;
  gap: 1px;
  margin-top: 40px;
  border: 1px solid var(--line);
  background: var(--line);
}

.snapshot-output article {
  display: grid;
  grid-template-columns: 38px 0.55fr 1fr;
  align-items: center;
  gap: 16px;
  padding: 18px;
  background: var(--paper-light);
}

.snapshot-output span {
  color: var(--clay);
  font-family: var(--mono);
  font-size: 0.65rem;
}

.snapshot-output b {
  font-size: 0.86rem;
}

.snapshot-output small {
  color: var(--muted);
  font-size: 0.7rem;
  line-height: 1.45;
}

.snapshot-form {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
  padding: clamp(28px, 5vw, 48px);
  border: 1px solid var(--line);
  border-radius: 20px;
  background: var(--paper-light);
  box-shadow: 0 24px 70px rgba(67, 58, 43, 0.08);
}

.field {
  min-width: 0;
}

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

.field label {
  display: block;
  margin-bottom: 7px;
  font-size: 0.76rem;
  font-weight: 700;
}

.snapshot-form input,
.snapshot-form textarea {
  padding: 12px 13px;
  border-color: var(--line);
  background: var(--white);
}

.snapshot-form input {
  min-height: 50px;
}

.snapshot-form textarea {
  min-height: 92px;
  resize: vertical;
}

.snapshot-form .form-note {
  margin: -5px 0 0;
  color: var(--muted);
}

.snapshot-form .form-status {
  margin-top: -8px;
  color: var(--sage-dark);
}

.snapshot-form .form-status.is-error {
  color: #9c4f37;
}

.snapshot-success {
  grid-column: 1 / -1;
  padding: clamp(12px, 2vw, 28px);
  outline: none;
}

.snapshot-success > span {
  color: var(--sage-dark);
  font-family: var(--mono);
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.snapshot-success h3 {
  margin: 12px 0;
  font-family: var(--serif);
  font-size: clamp(2.2rem, 4vw, 4rem);
  font-weight: 400;
  line-height: 0.98;
}

.snapshot-success p {
  max-width: 600px;
  color: var(--muted);
  font-size: 1rem;
}

button:disabled {
  cursor: wait;
  opacity: 0.7;
}

.decision-section {
  background: #d8d0bf;
}

.decision-grid {
  display: grid;
  grid-template-columns: 1fr 0.7fr;
  align-items: end;
  gap: clamp(50px, 9vw, 120px);
}

.decision-grid h2 {
  margin-bottom: 0;
}

.decision-copy p {
  margin-bottom: 28px;
  color: #504b42;
}

.faq-section {
  background: var(--paper-light);
}

.faq-grid {
  display: grid;
  grid-template-columns: 0.55fr 1.05fr;
  align-items: start;
  gap: clamp(50px, 9vw, 120px);
}

.faq-intro {
  position: sticky;
  top: 115px;
}

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

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

.faq-list summary {
  display: flex;
  min-height: 78px;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 18px 0;
  cursor: pointer;
  font-size: 1rem;
  font-weight: 700;
  list-style: none;
}

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

.faq-list summary::after {
  color: var(--sage-dark);
  font-family: var(--mono);
  font-size: 1.2rem;
  content: "+";
}

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

.faq-list details p {
  max-width: 700px;
  padding: 0 42px 24px 0;
  color: var(--muted);
  font-size: 0.9rem;
}

.site-footer {
  padding: 60px 0 28px;
  background: var(--ink);
  color: var(--white);
}

.footer-main {
  display: grid;
  grid-template-columns: 0.45fr 1fr auto;
  align-items: center;
  gap: 40px;
  padding-bottom: 44px;
}

.footer-main p {
  max-width: 560px;
  margin: 0;
  color: rgba(255, 253, 248, 0.62);
}

.footer-main nav {
  display: flex;
  gap: 18px;
  font-size: 0.76rem;
  font-weight: 700;
}

.footer-main nav a {
  border-bottom: 1px solid rgba(255, 255, 255, 0.35);
}

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding-top: 24px;
  border-top: 1px solid rgba(255, 255, 255, 0.14);
  color: rgba(255, 253, 248, 0.45);
  font-family: var(--mono);
  font-size: 0.62rem;
}

[data-reveal] {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 560ms ease, transform 560ms ease;
}

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

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

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

  [data-reveal] {
    opacity: 1;
    transform: none;
  }
}

@media (max-width: 1050px) {
  .hero-grid {
    grid-template-columns: minmax(0, 1fr) minmax(340px, 0.82fr);
    gap: 48px;
  }

  .operator-grid {
    grid-template-columns: 0.7fr 1fr;
  }

  .evidence-stack {
    grid-column: 1 / -1;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
  }

  .metric-note {
    grid-column: 1 / -1;
  }

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

  .schedule > p {
    padding: 24px 0 0;
    border-top: 1px solid rgba(255, 255, 255, 0.16);
    border-left: 0;
  }
}

@media (max-width: 900px) {
  html {
    scroll-padding-top: 72px;
  }

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

  .menu-toggle {
    display: grid;
    grid-template-columns: 20px auto;
    align-items: center;
    gap: 3px 10px;
    padding: 8px 0;
    color: var(--white);
    cursor: pointer;
  }

  .menu-toggle span {
    grid-column: 1;
    width: 20px;
    height: 1px;
    background: currentColor;
  }

  .menu-toggle b {
    grid-column: 2;
    grid-row: 1 / span 2;
    font-size: 0.7rem;
  }

  .primary-nav {
    position: fixed;
    inset: 72px 0 auto;
    display: none;
    max-height: calc(100vh - 72px);
    overflow-y: auto;
    align-items: stretch;
    padding: 24px 18px 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.12);
    background: var(--ink);
    flex-direction: column;
    gap: 0;
  }

  .primary-nav.is-open {
    display: flex;
  }

  .primary-nav a {
    padding: 16px 8px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.12);
    font-size: 1rem;
  }

  .primary-nav .nav-button {
    margin-top: 18px;
    border: 1px solid rgba(255, 255, 255, 0.35);
    text-align: center;
  }

  .hero-grid,
  .compare-layout,
  .blueprint-grid,
  .snapshot-grid,
  .decision-grid,
  .faq-grid {
    grid-template-columns: 1fr;
  }

  .hero {
    padding-top: 76px;
  }

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

  .hero-proof {
    max-width: 650px;
    margin-inline: auto;
  }

  .credibility-row {
    grid-template-columns: 210px 1fr;
  }

  .forbes-mark {
    width: 210px;
  }

  .credential-link {
    grid-column: 2;
  }

  .buyer-questions {
    grid-template-columns: 1fr;
  }

  .buyer-questions article {
    min-height: 0;
  }

  .buyer-questions article > span {
    margin-bottom: 30px;
  }

  .handoff-demo {
    grid-template-columns: 1fr;
  }

  .path-view {
    grid-template-columns: 1fr;
  }

  .path-arrow {
    justify-self: center;
    transform: rotate(90deg);
  }

  .compare-layout {
    gap: 46px;
  }

  .compare-intro {
    max-width: 680px;
  }

  .sprint-header {
    align-items: flex-start;
  }

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

  .scope-grid article {
    min-height: 0;
  }

  .scope-grid h3 {
    margin-top: 36px;
  }

  .operator-grid {
    grid-template-columns: 0.7fr 1fr;
  }

  .evidence-stack {
    display: grid;
    grid-template-columns: 1fr 1fr;
  }

  .metrics {
    grid-column: 1 / -1;
  }

  .blueprint-grid {
    gap: 72px;
  }

  .blueprint-preview {
    width: min(78%, 420px);
    margin-inline: auto;
  }

  .snapshot-copy {
    max-width: 720px;
  }

  .decision-copy {
    max-width: 650px;
  }

  .faq-intro {
    position: static;
  }

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

  .footer-main nav {
    grid-column: 2;
  }
}

@media (max-width: 640px) {
  .shell {
    width: calc(100% - 28px);
  }

  .section {
    padding: 82px 0;
  }

  h1 {
    font-size: clamp(3.2rem, 16vw, 4.7rem);
  }

  h2 {
    font-size: clamp(2.65rem, 13vw, 4rem);
  }

  .hero {
    padding-top: 58px;
  }

  .hero-grid {
    gap: 56px;
  }

  .hero-lead {
    font-size: 1.03rem;
  }

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

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

  .hero-actions .text-link {
    align-self: flex-start;
  }

  .quiet-proof {
    align-items: flex-start;
    flex-direction: column;
    gap: 7px;
  }

  .browser-window {
    border-radius: 16px;
    transform: none;
  }

  .browser-chrome {
    height: 38px;
  }

  .mini-site {
    padding: 25px;
  }

  .mini-nav {
    padding-bottom: 34px;
  }

  .mini-nav span {
    display: none;
  }

  .mini-site h2 {
    font-size: clamp(2.25rem, 12vw, 3.15rem);
  }

  .mini-reassurance {
    grid-template-columns: 1fr;
    margin-top: 32px;
  }

  .hero-annotation {
    width: calc(100% - 22px);
    margin-top: -11px;
  }

  .credibility-row {
    grid-template-columns: 1fr;
    gap: 18px;
    margin-top: 70px;
  }

  .forbes-mark {
    width: min(100%, 290px);
  }

  .credential-link {
    grid-column: 1;
    justify-self: start;
  }

  .buyer-questions {
    margin-bottom: 42px;
  }

  .buyer-questions article {
    padding: 26px;
  }

  .handoff-demo {
    gap: 38px;
    padding: 24px;
  }

  .demo-copy h3 {
    font-size: 2.6rem;
  }

  .site-state {
    min-height: 0;
    border-radius: 16px;
  }

  .mock-top {
    padding: 0 18px;
  }

  .mock-top span {
    display: none;
  }

  .mock-body {
    padding: 52px 24px;
  }

  .mock-body h3 {
    font-size: clamp(2.6rem, 13vw, 4rem);
  }

  .question-flags,
  .answer-flags {
    padding: 18px;
  }

  .sprint-header {
    align-items: stretch;
    flex-direction: column;
    gap: 34px;
  }

  .price-block {
    min-width: 0;
    padding: 22px 0 0;
    border-top: 1px solid var(--line);
    border-left: 0;
  }

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

  .schedule {
    padding: 28px 24px;
  }

  .schedule-track {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .schedule-track article,
  .schedule-track article:first-child {
    padding: 0 0 24px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.16);
    border-left: 0;
  }

  .schedule-track b {
    margin-bottom: 8px;
  }

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

  .fit-card {
    padding: 28px 24px;
  }

  .risk-reversal {
    grid-template-columns: 1fr;
    padding: 28px 24px;
  }

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

  .portrait-frame {
    min-height: 0;
    aspect-ratio: 4 / 5;
  }

  .operator-copy {
    padding: 26px 6px;
  }

  .evidence-stack {
    grid-template-columns: 1fr;
  }

  .metrics {
    grid-column: 1;
  }

  .blueprint-grid {
    gap: 62px;
  }

  .blueprint-preview {
    width: min(84%, 390px);
  }

  .blueprint-preview > span {
    right: -8px;
  }

  .blueprint-list {
    grid-template-columns: 1fr;
  }

  .gate-form,
  .unlock-card {
    padding: 22px;
  }

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

  .inline-form .button {
    width: 100%;
  }

  .unlock-card .button {
    width: 100%;
  }

  .unlock-card .text-link {
    margin-left: 0;
  }

  .snapshot-output article {
    grid-template-columns: 34px 1fr;
  }

  .snapshot-output small {
    grid-column: 2;
  }

  .snapshot-form {
    grid-template-columns: 1fr;
    padding: 24px 20px;
  }

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

  .decision-grid {
    gap: 36px;
  }

  .faq-list summary {
    align-items: flex-start;
    min-height: 0;
    padding: 22px 0;
  }

  .faq-list details p {
    padding-right: 0;
  }

  .footer-main {
    grid-template-columns: 1fr;
    gap: 26px;
  }

  .footer-main nav {
    grid-column: 1;
  }

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

@media (max-width: 380px) {
  .shell {
    width: calc(100% - 24px);
  }

  h1 {
    font-size: 3rem;
  }

  .button {
    padding-inline: 17px;
  }

  .hero-annotation p {
    align-items: flex-start;
    flex-direction: column;
  }

  .demo-switch {
    width: 100%;
  }

  .demo-switch button {
    flex: 1;
  }

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