:root {
  color-scheme: dark;
  --ink-950: #06111d;
  --ink-900: #091827;
  --ink-800: #10243a;
  --ink-700: #17314d;
  --paper: #f5f0e6;
  --paper-strong: #fffaf0;
  --paper-muted: #d9d1c4;
  --line: rgba(255, 255, 255, 0.14);
  --line-paper: rgba(9, 24, 39, 0.14);
  --lime: #b7e31a;
  --lime-deep: #719408;
  --lime-on-paper: #5f7f00;
  --green: #2f6f55;
  --slate: #7595b8;
  --amber: #e19b22;
  --red: #d64b3f;
  --text: #fff8eb;
  --muted: #aebdd0;
  --paper-text: #0a1b2d;
  --paper-soft: #4d5965;
  --radius-sm: 6px;
  --radius-md: 10px;
  --radius-lg: 18px;
  --shadow: 0 28px 80px rgba(0, 0, 0, 0.35);
  --ease-standard: cubic-bezier(0.2, 0.8, 0.2, 1);
  --ease-soft: cubic-bezier(0.16, 1, 0.3, 1);
  --hover-lift: translateY(-3px);
  --font-body: "Avenir Next", Avenir, "Segoe UI", system-ui, -apple-system, BlinkMacSystemFont, sans-serif;
  --font-display: "Iowan Old Style", "Palatino Linotype", Palatino, Georgia, serif;
  --font-ui: "Avenir Next", Avenir, "Segoe UI", system-ui, -apple-system, BlinkMacSystemFont, sans-serif;
  font-family: var(--font-body);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  overflow-x: hidden;
  background: #f4eee4;
  color: var(--text);
  letter-spacing: 0;
}

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

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

a:focus-visible,
button:focus-visible {
  outline: 2px solid var(--lime);
  outline-offset: 4px;
}

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

main section {
  scroll-margin-top: 112px;
}

.section-shell {
  width: min(1392px, calc(100% - 144px));
  margin: 0 auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  width: 100%;
  min-height: 92px;
  background: rgba(6, 17, 29, 0.9);
  backdrop-filter: blur(18px);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 48px;
  width: min(1440px, calc(100% - 96px));
  margin: 0 auto;
  padding: 12px 0;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 16px;
  min-width: 292px;
  transition:
    transform 220ms var(--ease-standard),
    opacity 220ms var(--ease-standard);
}

.brand-logo {
  width: 58px;
  height: 70px;
  border-radius: 2px;
  object-fit: contain;
  transition:
    filter 260ms var(--ease-standard),
    transform 260ms var(--ease-standard);
}

.small-logo {
  width: 48px;
  height: 56px;
  margin-bottom: 18px;
}

.brand-mark {
  display: inline-grid;
  place-items: center;
  width: 54px;
  height: 54px;
  border: 2px solid rgba(255, 248, 235, 0.88);
  border-top: 4px solid var(--lime);
  border-radius: 13px 13px 20px 20px;
  color: var(--text);
  font-size: 18px;
  font-weight: 850;
  line-height: 1;
}

.brand-mark.small {
  width: 48px;
  height: 48px;
  margin-bottom: 18px;
}

.brand strong {
  display: block;
  color: var(--text);
  font-size: 23px;
  line-height: 1.2;
}

.brand small {
  display: block;
  margin-top: 3px;
  color: var(--lime);
  font-size: 15px;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 42px;
  color: var(--muted);
  font-size: 17px;
  font-family: var(--font-ui);
}

.nav-links a {
  position: relative;
  padding: 10px 0;
  transition: color 180ms var(--ease-standard);
}

.nav-links a::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 3px;
  height: 2px;
  border-radius: 999px;
  background: var(--lime);
  opacity: 0;
  transform: scaleX(0.2);
  transform-origin: left center;
  transition:
    opacity 180ms var(--ease-standard),
    transform 220ms var(--ease-standard);
}

.nav-links a:hover,
.nav-links a:focus-visible {
  color: var(--text);
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 28px;
  margin-left: auto;
}

.header-cta,
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 0 28px;
  border-radius: var(--radius-sm);
  font-weight: 760;
  font-family: var(--font-ui);
  white-space: nowrap;
  transition:
    background-color 220ms var(--ease-standard),
    border-color 220ms var(--ease-standard),
    box-shadow 260ms var(--ease-standard),
    color 220ms var(--ease-standard),
    transform 260ms var(--ease-standard);
}

.header-cta {
  border: 1px solid var(--lime);
  color: var(--lime);
}

.hero {
  position: relative;
  display: grid;
  grid-template-columns: minmax(520px, 0.82fr) minmax(0, 1.18fr);
  gap: 34px;
  align-items: center;
  min-height: 560px;
  padding: 18px 0 14px;
}

.hero::before {
  content: "";
  position: absolute;
  z-index: -1;
  inset: -120px calc((100vw - 100%) / -2) 0;
  background:
    radial-gradient(circle at 88% 8%, rgba(183, 227, 26, 0.08), transparent 23rem),
    radial-gradient(circle at 14% 45%, rgba(117, 149, 184, 0.16), transparent 30rem),
    linear-gradient(135deg, var(--ink-950), var(--ink-900) 54%, #040a11);
}

.hero::after {
  content: "";
  position: absolute;
  z-index: -1;
  inset: -80px calc((100vw - 100%) / -2) 0;
  opacity: 0.22;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.025) 1px, transparent 1px);
  background-size: 42px 42px;
}

.hero-copy {
  position: relative;
  z-index: 2;
  min-width: 0;
}

.status-line,
.section-kicker {
  margin: 0 0 18px;
  color: var(--lime-on-paper);
  font-size: 13px;
  font-weight: 820;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

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

h1 {
  max-width: min(620px, 100%);
  margin-bottom: 18px;
  color: var(--text);
  font-family: var(--font-display);
  font-size: clamp(50px, 5.6vw, 84px);
  font-weight: 700;
  line-height: 0.96;
}

.hero-deck {
  max-width: 560px;
  margin-bottom: 22px;
  color: #b6d4f3;
  font-size: clamp(20px, 2.1vw, 28px);
  font-weight: 610;
  line-height: 1.22;
}

.hero-text {
  max-width: 500px;
  margin-bottom: 22px;
  color: var(--muted);
  font-size: 16px;
  line-height: 1.55;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-bottom: 28px;
  min-width: 0;
}

.button.primary {
  border: 1px solid var(--lime);
  background: var(--lime);
  color: #10200a;
}

.button.secondary {
  border: 1px solid rgba(182, 212, 243, 0.72);
  color: var(--text);
}

.header-cta:hover,
.header-cta:focus-visible {
  background: rgba(183, 227, 26, 0.09);
  box-shadow: 0 0 0 4px rgba(183, 227, 26, 0.08);
  transform: var(--hover-lift);
}

.button.primary:hover,
.button.primary:focus-visible {
  border-color: #d3ff2b;
  background: #c8f523;
  box-shadow: 0 14px 34px rgba(183, 227, 26, 0.24);
  transform: var(--hover-lift);
}

.button.secondary:hover,
.button.secondary:focus-visible {
  border-color: rgba(255, 248, 235, 0.92);
  background: rgba(255, 255, 255, 0.08);
  box-shadow: 0 14px 34px rgba(0, 0, 0, 0.18);
  transform: var(--hover-lift);
}

.signal-row {
  display: grid;
  grid-template-columns: repeat(8, minmax(0, 1fr));
  gap: 0;
  width: min(760px, 100%);
  max-width: none;
  min-width: 0;
  margin-top: 4px;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
}

.signal-row span {
  position: relative;
  display: grid;
  align-content: center;
  min-height: 82px;
  padding: 42px 8px 9px;
  border-right: 1px solid rgba(255, 255, 255, 0.12);
  color: #d7e4ee;
  font-size: 10.5px;
  font-weight: 680;
  line-height: 1.18;
  text-align: center;
  text-wrap: balance;
  overflow: hidden;
  overflow-wrap: normal;
  background: rgba(255, 255, 255, 0.018);
  transition:
    background-color 220ms var(--ease-standard),
    border-color 220ms var(--ease-standard),
    color 220ms var(--ease-standard),
    transform 260ms var(--ease-standard);
}

.signal-row span:nth-child(8n) {
  border-right: 0;
}

.signal-row span::before {
  content: none;
  position: absolute;
  left: 50%;
  top: 14px;
  width: 22px;
  height: 22px;
  border: 2px solid #9fb4cc;
  border-radius: 50%;
  transform: translateX(-50%);
}

.signal-row span[data-icon="alert"]::before {
  border-color: var(--amber);
  border-radius: 2px;
  transform: translateX(-50%) rotate(45deg);
}

.signal-row span[data-icon="policy"]::before {
  border-radius: 2px;
}

.signal-row span[data-icon="trend"]::before,
.signal-row span[data-icon="recovery"]::before {
  border-color: var(--slate);
}

.signal-row svg {
  position: absolute;
  left: 50%;
  top: 12px;
  width: 30px;
  height: 30px;
  color: #9fb4cc;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.9;
  stroke-linecap: round;
  stroke-linejoin: round;
  transform: translateX(-50%);
  transition:
    color 220ms var(--ease-standard),
    transform 260ms var(--ease-standard);
}

.signal-row span[data-icon="alert"] svg {
  color: var(--amber);
}

.signal-row span[data-icon="trend"] svg,
.signal-row span[data-icon="recovery"] svg {
  color: var(--slate);
}

.hero-visual {
  position: relative;
  min-width: 0;
  justify-self: end;
  width: min(730px, 48vw);
  transform: translateX(-6px);
  transform-origin: center right;
  transition: transform 520ms var(--ease-soft);
}

.mockup-frame {
  position: relative;
  overflow: visible;
  border: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
  perspective: 1200px;
  transition: transform 520ms var(--ease-soft);
}

.mockup-frame::after {
  content: none;
}

.tablet-device {
  position: relative;
  width: 100%;
  aspect-ratio: 1.54 / 1;
  padding: clamp(10px, 1.1vw, 16px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: clamp(22px, 2.2vw, 34px);
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.16), rgba(255, 255, 255, 0.02) 22%, rgba(0, 0, 0, 0.24) 68%),
    #111820;
  box-shadow:
    inset 0 0 0 2px rgba(255, 255, 255, 0.05),
    inset 0 -12px 24px rgba(0, 0, 0, 0.34),
    0 34px 60px rgba(0, 0, 0, 0.34);
  transform: rotate(3deg) skewX(-4deg);
  transform-origin: 50% 72%;
  transition:
    box-shadow 420ms var(--ease-soft),
    filter 420ms var(--ease-soft),
    transform 520ms var(--ease-soft);
}

.tablet-device::before {
  content: "";
  position: absolute;
  inset: 8px;
  pointer-events: none;
  border-radius: clamp(18px, 1.8vw, 28px);
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.2);
}

.tablet-device::after {
  content: "";
  position: absolute;
  right: 9%;
  bottom: -6%;
  z-index: -1;
  width: 38%;
  height: 38%;
  border-radius: 12px 12px 18px 18px;
  background: linear-gradient(145deg, #15191f, #080a0d);
  box-shadow: 16px 22px 34px rgba(0, 0, 0, 0.34);
  transform: skewX(16deg) rotate(7deg);
}

.tablet-screen {
  position: relative;
  z-index: 1;
  width: 100%;
  height: 100%;
  display: grid;
  grid-template-columns: minmax(104px, 0.28fr) minmax(0, 1fr);
  overflow: hidden;
  border-radius: clamp(14px, 1.45vw, 23px);
  background: #fffaf0;
  color: var(--paper-text);
  font-size: clamp(7.5px, 0.78vw, 11px);
  box-shadow: inset 0 0 0 1px rgba(10, 27, 45, 0.16);
}

.product-sidebar {
  display: flex;
  flex-direction: column;
  gap: 0.68em;
  padding: 1.25em 1em;
  background: linear-gradient(180deg, #07131f, #10243a);
  color: rgba(255, 248, 235, 0.82);
  font-weight: 760;
}

.product-brand {
  display: flex;
  align-items: center;
  gap: 0.55em;
  margin-bottom: 0.4em;
  color: var(--text);
  font-size: 0.9em;
  white-space: nowrap;
}

.product-brand img {
  width: 1.8em;
  height: 2.1em;
  object-fit: contain;
}

.product-sidebar > span {
  min-height: 2.1em;
  display: flex;
  align-items: center;
  padding: 0 0.75em;
  border-radius: 0.45em;
  color: rgba(255, 248, 235, 0.72);
}

.product-sidebar > span.active {
  background: rgba(117, 149, 184, 0.32);
  color: var(--text);
}

.product-canvas {
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(0, 0.92fr);
  gap: 1em;
  padding: 1.35em;
  background:
    radial-gradient(circle at 50% 0%, rgba(183, 227, 26, 0.1), transparent 28%),
    #fffaf0;
}

.decision-card,
.timeline-preview,
.human-review-line,
.product-status-grid span {
  border: 1px solid rgba(9, 24, 39, 0.12);
  border-radius: 0.7em;
  background: rgba(255, 255, 255, 0.7);
  box-shadow: 0 0.7em 1.5em rgba(25, 31, 38, 0.05);
}

.decision-card {
  min-height: 8.2em;
  padding: 1em;
}

.decision-card span,
.timeline-preview > span,
.product-status-grid strong,
.record-row span {
  display: block;
  color: #697684;
  font-size: 0.78em;
  font-weight: 760;
}

.decision-card strong {
  display: block;
  margin-top: 0.35em;
  font-size: 1.52em;
  line-height: 1.02;
}

.decision-card small {
  display: block;
  margin-top: 0.35em;
  color: #4d5965;
  font-weight: 650;
}

.primary-decision {
  position: relative;
  padding-left: 3.3em;
}

.primary-decision::before {
  content: "✓";
  position: absolute;
  left: 1em;
  top: 1.1em;
  display: grid;
  place-items: center;
  width: 1.9em;
  height: 1.9em;
  border: 0.16em solid var(--lime-on-paper);
  border-radius: 999px;
  color: var(--lime-on-paper);
  font-weight: 900;
}

.decision-card dl {
  margin: 0.65em 0 0;
}

.decision-card dl div {
  display: flex;
  justify-content: space-between;
  gap: 1em;
  padding: 0.4em 0;
  border-bottom: 1px solid rgba(9, 24, 39, 0.1);
}

.decision-card dt {
  color: #697684;
  font-weight: 680;
}

.decision-card dd {
  margin: 0;
  font-weight: 840;
}

.timeline-preview {
  grid-column: 1 / -1;
  padding: 1em;
}

.timeline-track {
  position: relative;
  display: flex;
  justify-content: space-between;
  margin: 1.35em 0 0.7em;
}

.timeline-track::before {
  content: "";
  position: absolute;
  left: 1.2em;
  right: 1.2em;
  top: 50%;
  height: 0.26em;
  background: linear-gradient(90deg, var(--lime-on-paper), var(--lime) 52%, #9fb4cc 53%);
  transform: translateY(-50%);
}

.timeline-track i {
  position: relative;
  z-index: 1;
  display: grid;
  place-items: center;
  width: 2.2em;
  height: 2.2em;
  border-radius: 999px;
  background: #10243a;
  color: var(--text);
  font-style: normal;
  font-weight: 900;
}

.timeline-track i.current {
  background: var(--lime);
  color: var(--paper-text);
  box-shadow: 0 0 0 0.3em rgba(183, 227, 26, 0.2);
}

.timeline-labels,
.product-status-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 0.6em;
}

.timeline-labels span {
  color: #596674;
  font-size: 0.78em;
  font-weight: 760;
  text-align: center;
}

.product-status-grid {
  grid-column: 1 / -1;
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.product-status-grid span,
.human-review-line {
  padding: 0.9em;
}

.product-status-grid strong {
  margin-bottom: 0.25em;
}

.human-review-line {
  grid-column: 1 / -1;
}

.human-review-line strong,
.human-review-line span {
  display: block;
}

.human-review-line span {
  margin-top: 0.25em;
  color: #596674;
  font-size: 0.86em;
  font-weight: 650;
}

@media (max-width: 1480px) and (min-width: 1061px) {
  .hero {
    grid-template-columns: minmax(500px, 0.84fr) minmax(0, 1.16fr);
  }

  .signal-row {
    width: min(710px, 100%);
  }

  .hero-visual {
    width: min(660px, 46vw);
    transform: translateX(-2px);
  }
}

.trust-strip {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  margin-top: -1px;
  padding: 18px 0 22px;
  color: var(--text);
}

.trust-strip::before {
  content: "";
  position: absolute;
  z-index: -1;
  inset: 0 calc((100vw - 100%) / -2);
  background: #07131f;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.trust-strip p {
  margin: 0;
  color: var(--text);
  font-family: var(--font-display);
  font-size: clamp(24px, 2.2vw, 34px);
  line-height: 1.1;
}

.trust-strip div {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 10px;
}

.trust-strip span {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  padding: 0 12px;
  border: 1px solid rgba(182, 212, 243, 0.18);
  border-radius: 999px;
  color: #c5d6e8;
  background: rgba(255, 255, 255, 0.035);
  font-size: 12px;
  font-weight: 720;
  transition:
    background-color 220ms var(--ease-standard),
    border-color 220ms var(--ease-standard),
    color 220ms var(--ease-standard),
    transform 260ms var(--ease-standard);
}

.problem,
.proof,
.model,
.scenario,
.inputs,
.review,
.audience,
.cta,
.footer {
  color: var(--paper-text);
}

.problem {
  padding: 58px 0 34px;
}

.problem h2,
.model h2,
.proof h2 {
  color: var(--paper-text);
}

.problem .copy-stack p,
.model .section-heading p,
.proof p {
  color: var(--paper-soft);
}

.split,
.section-heading {
  display: grid;
  grid-template-columns: minmax(0, 0.86fr) minmax(360px, 0.74fr);
  gap: 64px;
  align-items: start;
}

h2 {
  margin-bottom: 20px;
  color: var(--paper-text);
  font-family: var(--font-display);
  font-size: clamp(30px, 3vw, 44px);
  line-height: 1.08;
}

.copy-stack p,
.section-heading p,
.proof-panel p,
.review-card p,
.cta p {
  color: var(--paper-soft);
  font-size: 17px;
  line-height: 1.7;
}

.model,
.proof,
.scenario,
.inputs,
.audience {
  padding: 52px 0;
}

.model {
  padding-top: 42px;
}

.model h2 {
  position: relative;
  max-width: none;
  margin-bottom: 34px;
  color: var(--paper-text);
  font-size: clamp(30px, 2.35vw, 38px);
  line-height: 1.1;
}

.model h2::after {
  content: "";
  display: block;
  width: 88px;
  height: 4px;
  margin-top: 14px;
  background: var(--lime);
}

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

.section-heading > p {
  align-self: start;
  margin-top: 44px;
}

.proof-panel {
  display: grid;
  grid-template-columns: minmax(0, 0.78fr) minmax(420px, 1fr);
  gap: 40px;
  align-items: center;
  padding: 34px 0;
  border-top: 1px solid var(--line-paper);
  border-bottom: 1px solid var(--line-paper);
}

.proof-panel h2 {
  max-width: 620px;
  margin-bottom: 16px;
}

.proof-panel p {
  max-width: 560px;
  margin-bottom: 0;
}

.proof-list {
  display: grid;
  gap: 0;
  border: 1px solid var(--line-paper);
  border-radius: var(--radius-sm);
  background: rgba(255, 250, 240, 0.68);
  overflow: hidden;
}

.proof-list article {
  display: grid;
  grid-template-columns: 116px 1fr;
  gap: 18px;
  align-items: center;
  padding: 20px 22px;
  border-bottom: 1px solid var(--line-paper);
  transition:
    background-color 220ms var(--ease-standard),
    transform 260ms var(--ease-standard);
}

.proof-list article:last-child {
  border-bottom: 0;
}

.proof-list span {
  color: var(--lime-on-paper);
  font-size: 12px;
  font-weight: 840;
  letter-spacing: 0.07em;
  text-transform: uppercase;
}

.proof-list strong {
  color: var(--paper-text);
  font-size: 17px;
  line-height: 1.35;
}

.model-flow {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
}

.concept-flow {
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 42px;
  align-items: start;
}

.model-flow article {
  min-height: 210px;
  padding: 24px;
  border: 1px solid var(--line-paper);
  border-radius: var(--radius-sm);
  background: rgba(255, 250, 240, 0.8);
}

.concept-flow article {
  position: relative;
  min-height: 0;
  padding: 0;
  border: 0;
  border-radius: 0;
  background: transparent;
  transition:
    color 220ms var(--ease-standard),
    transform 260ms var(--ease-standard);
}

.concept-flow article:not(:last-child)::after {
  content: "";
  position: absolute;
  top: 45px;
  left: calc(100% - 104px);
  width: 96px;
  height: 2px;
  background: rgba(10, 27, 45, 0.22);
}

.concept-flow article:not(:last-child)::before {
  content: "";
  position: absolute;
  top: 39px;
  left: calc(100% - 16px);
  width: 12px;
  height: 12px;
  border-top: 2px solid rgba(10, 27, 45, 0.24);
  border-right: 2px solid rgba(10, 27, 45, 0.24);
  transform: rotate(45deg);
}

.flow-icon {
  display: block !important;
  width: 84px;
  height: 84px;
  margin: 0 0 24px !important;
  transition:
    filter 260ms var(--ease-standard),
    transform 260ms var(--ease-standard);
}

.model-flow span {
  display: inline-block;
  margin-bottom: 42px;
  color: var(--lime-deep);
  font-size: 13px;
  font-weight: 840;
}

.model-flow strong,
.input-ledger strong,
.timeline-step strong,
.rationale-panel h3 {
  display: block;
  margin-bottom: 10px;
  color: var(--paper-text);
  font-size: 20px;
  line-height: 1.2;
}

.model-flow p,
.input-ledger p {
  margin-bottom: 0;
  color: var(--paper-soft);
  line-height: 1.55;
}

.states {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 24px;
}

.states span,
.chips span {
  display: inline-flex;
  align-items: center;
  min-height: 38px;
  padding: 0 14px;
  border: 1px solid var(--line-paper);
  border-radius: 999px;
  color: var(--paper-text);
  background: rgba(255, 250, 240, 0.75);
  font-weight: 720;
  transition:
    background-color 220ms var(--ease-standard),
    border-color 220ms var(--ease-standard),
    box-shadow 260ms var(--ease-standard),
    color 220ms var(--ease-standard),
    transform 260ms var(--ease-standard);
}

.scenario-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(340px, 0.85fr);
  gap: 22px;
}

.timeline-panel,
.rationale-panel,
.review-card,
.cta {
  border-radius: var(--radius-lg);
  background: var(--paper-strong);
  box-shadow: 0 18px 60px rgba(25, 31, 38, 0.09);
  transition:
    box-shadow 320ms var(--ease-standard),
    transform 320ms var(--ease-standard);
}

.timeline-panel {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 0;
  overflow: hidden;
  border: 1px solid var(--line-paper);
}

.timeline-step {
  position: relative;
  min-height: 230px;
  padding: 24px 18px;
  border-right: 1px solid var(--line-paper);
  transition:
    background-color 220ms var(--ease-standard),
    color 220ms var(--ease-standard);
}

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

.timeline-step span {
  display: grid;
  place-items: center;
  width: 40px;
  height: 40px;
  margin-bottom: 58px;
  border-radius: 999px;
  background: #d7d7d2;
  color: var(--paper-text);
  font-weight: 860;
  transition:
    background-color 220ms var(--ease-standard),
    color 220ms var(--ease-standard),
    transform 260ms var(--ease-standard);
}

.timeline-step.done span {
  background: var(--ink-800);
  color: var(--text);
}

.timeline-step.break span {
  background: var(--slate);
  color: var(--paper-text);
}

.timeline-step.active {
  background: rgba(183, 227, 26, 0.1);
}

.timeline-step.active span {
  background: var(--lime);
  color: #142205;
}

.timeline-step small {
  color: var(--paper-soft);
}

.rationale-panel {
  padding: 30px;
  border: 1px solid var(--line-paper);
}

.panel-label {
  display: block;
  margin-bottom: 18px;
  color: var(--lime-on-paper);
  font-size: 13px;
  font-weight: 840;
  letter-spacing: 0.07em;
  text-transform: uppercase;
}

.rationale-panel p {
  color: var(--paper-soft);
  line-height: 1.65;
}

.chips {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 24px;
}

.chips span {
  min-height: 34px;
  font-size: 13px;
}

.input-ledger {
  position: relative;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1px;
  overflow: hidden;
  border: 1px solid var(--line-paper);
  border-radius: var(--radius-md);
  background: var(--line-paper);
  box-shadow: 0 18px 54px rgba(25, 31, 38, 0.08);
}

.input-ledger::before {
  content: "Next segment check";
  position: absolute;
  top: 14px;
  right: 18px;
  z-index: 1;
  color: rgba(10, 27, 45, 0.38);
  font-size: 12px;
  font-weight: 840;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.input-ledger article {
  position: relative;
  display: grid;
  grid-template-columns: 54px minmax(0, 1fr);
  gap: 18px;
  min-height: 178px;
  padding: 34px 28px 28px;
  background:
    linear-gradient(90deg, rgba(183, 227, 26, 0.09), transparent 1px),
    rgba(255, 250, 240, 0.82);
  transition:
    background-color 220ms var(--ease-standard),
    box-shadow 300ms var(--ease-standard),
    transform 300ms var(--ease-standard);
}

.input-ledger article::before {
  content: "";
  position: absolute;
  left: 27px;
  top: 88px;
  bottom: 24px;
  width: 2px;
  background: rgba(10, 27, 45, 0.12);
}

.input-ledger article > span {
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  border: 1px solid rgba(10, 27, 45, 0.16);
  border-radius: 999px;
  background: #fffdf7;
  color: var(--lime-on-paper);
  font-size: 13px;
  font-weight: 900;
  transition:
    background-color 220ms var(--ease-standard),
    border-color 220ms var(--ease-standard),
    color 220ms var(--ease-standard),
    transform 260ms var(--ease-standard);
}

.input-ledger article:nth-child(2) > span {
  color: #526f92;
}

.input-ledger article:nth-child(3) > span {
  color: var(--green);
}

.input-ledger article:nth-child(4) > span {
  color: #936615;
}

.input-ledger strong {
  margin-bottom: 8px;
}

.input-ledger p {
  max-width: 520px;
}

.model-flow article {
  transition:
    background-color 220ms var(--ease-standard),
    border-color 220ms var(--ease-standard),
    box-shadow 300ms var(--ease-standard),
    transform 300ms var(--ease-standard);
}

.review {
  padding: 78px 0;
}

.review-card {
  display: grid;
  grid-template-columns: minmax(0, 0.8fr) minmax(320px, 0.72fr);
  gap: 34px;
  align-items: center;
  padding: 48px 50px;
  border: 1px solid var(--line-paper);
}

.review-copy {
  max-width: 640px;
}

.review-record-artifact {
  display: grid;
  justify-items: end;
  margin: 0;
}

.review-record-card {
  width: min(100%, 520px);
  padding: 24px;
  border: 1px solid rgba(9, 24, 39, 0.14);
  border-radius: 16px;
  background:
    radial-gradient(circle at 82% 0%, rgba(183, 227, 26, 0.1), transparent 26%),
    #fffdf7;
  color: var(--paper-text);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.84),
    0 24px 42px rgba(25, 31, 38, 0.12);
  transition:
    box-shadow 320ms var(--ease-standard),
    transform 320ms var(--ease-standard);
}

.record-header {
  display: grid;
  grid-template-columns: 42px minmax(0, 1fr) auto;
  align-items: center;
  gap: 14px;
  padding-bottom: 18px;
  border-bottom: 1px solid rgba(9, 24, 39, 0.1);
}

.record-header strong {
  font-family: var(--font-display);
  font-size: clamp(26px, 2vw, 34px);
  line-height: 1;
}

.record-header small {
  display: inline-flex;
  align-items: center;
  min-height: 28px;
  padding: 0 12px;
  border: 1px solid rgba(183, 227, 26, 0.35);
  border-radius: 999px;
  background: rgba(183, 227, 26, 0.12);
  color: var(--lime-on-paper);
  font-size: 12px;
  font-weight: 820;
  white-space: nowrap;
}

.record-check {
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  border: 2px solid var(--lime);
  border-radius: 999px;
  color: var(--lime-on-paper);
  font-size: 25px;
  font-weight: 900;
  transition:
    background-color 220ms var(--ease-standard),
    color 220ms var(--ease-standard),
    transform 260ms var(--ease-standard);
}

.record-row {
  position: relative;
  padding: 15px 0 15px 54px;
  border-bottom: 1px solid rgba(9, 24, 39, 0.08);
}

.record-row::before {
  content: "";
  position: absolute;
  left: 8px;
  top: 17px;
  width: 28px;
  height: 28px;
  border: 1px solid rgba(9, 24, 39, 0.12);
  border-radius: 8px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.82), rgba(245, 240, 230, 0.68)),
    #fffaf0;
}

.record-row::after {
  content: "";
  position: absolute;
  left: 47px;
  top: 19px;
  bottom: 17px;
  width: 3px;
  border-radius: 999px;
  background: var(--lime);
}

.record-row.reviewer::after {
  background: #10243a;
}

.record-row strong {
  display: block;
  margin-top: 3px;
  font-size: 17px;
  line-height: 1.25;
}

.record-inputs {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  padding: 16px 0;
}

.record-inputs span {
  display: inline-flex;
  align-items: center;
  min-height: 30px;
  padding: 0 11px;
  border: 1px solid rgba(9, 24, 39, 0.12);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.68);
  color: #1a2e44;
  font-size: 12px;
  font-weight: 820;
}

.record-inputs span::before {
  content: "";
  width: 6px;
  height: 6px;
  margin-right: 7px;
  border-radius: 999px;
  background: var(--lime);
}

.record-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding-top: 14px;
  color: #697684;
  font-size: 13px;
  font-weight: 760;
}

.record-footer strong {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  padding: 0 12px;
  border: 1px solid rgba(9, 24, 39, 0.2);
  border-radius: 10px;
  color: var(--paper-text);
}

.notice {
  margin-top: 24px;
  padding: 16px 18px;
  border-left: 4px solid var(--lime);
  background: rgba(183, 227, 26, 0.11);
  color: var(--paper-text) !important;
  font-weight: 720;
  transition:
    background-color 220ms var(--ease-standard),
    box-shadow 260ms var(--ease-standard),
    transform 260ms var(--ease-standard);
}

.audience-panel {
  display: grid;
  grid-template-columns: minmax(340px, 0.72fr) minmax(0, 1fr);
  gap: 48px;
  align-items: start;
  padding: 42px 0 8px;
}

.audience-panel h2 {
  max-width: 620px;
}

.audience-panel > div:first-child > p {
  max-width: 540px;
  color: var(--paper-soft);
  font-size: 17px;
  line-height: 1.65;
}

.audience-list {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}

.audience-list article {
  min-height: 188px;
  padding: 22px;
  border: 1px solid var(--line-paper);
  border-radius: var(--radius-sm);
  background: rgba(255, 250, 240, 0.74);
  box-shadow: 0 12px 34px rgba(25, 31, 38, 0.06);
  transition:
    background-color 220ms var(--ease-standard),
    border-color 220ms var(--ease-standard),
    box-shadow 300ms var(--ease-standard),
    transform 300ms var(--ease-standard);
}

.audience-list span {
  display: inline-flex;
  align-items: center;
  min-height: 26px;
  margin-bottom: 18px;
  padding: 0 10px;
  border-radius: 999px;
  background: rgba(183, 227, 26, 0.14);
  color: var(--lime-on-paper);
  font-size: 12px;
  font-weight: 820;
  text-transform: uppercase;
}

.audience-list strong {
  display: block;
  margin-bottom: 12px;
  color: var(--paper-text);
  font-size: 18px;
  line-height: 1.25;
}

.audience-list p {
  margin: 0;
  color: var(--paper-soft);
  font-size: 15px;
  line-height: 1.55;
}

.cta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  margin-top: 34px;
  margin-bottom: 56px;
  padding: 46px;
  background:
    radial-gradient(circle at 82% 20%, rgba(183, 227, 26, 0.16), transparent 18rem),
    linear-gradient(135deg, var(--ink-900), var(--ink-800));
  color: var(--text);
}

.cta h2 {
  color: var(--text);
}

.cta p {
  max-width: 680px;
  color: var(--muted);
}

.footer {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  padding: 28px 0 44px;
  color: #5f6872;
  font-size: 14px;
}

@media (hover: hover) and (pointer: fine) {
  .brand:hover {
    opacity: 0.96;
    transform: translateY(-1px);
  }

  .brand:hover .brand-logo {
    filter: drop-shadow(0 0 16px rgba(183, 227, 26, 0.18));
    transform: translateY(-1px);
  }

  .nav-links a:hover::after,
  .nav-links a:focus-visible::after {
    opacity: 1;
    transform: scaleX(1);
  }

  .signal-row span:hover {
    background: rgba(255, 255, 255, 0.055);
    color: var(--text);
    transform: translateY(-3px);
  }

  .signal-row span:hover svg {
    color: var(--lime);
    transform: translateX(-50%) translateY(-2px);
  }

  .trust-strip span:hover {
    border-color: rgba(183, 227, 26, 0.32);
    background: rgba(183, 227, 26, 0.08);
    color: var(--text);
    transform: translateY(-2px);
  }

  .proof-list article:hover {
    background: rgba(183, 227, 26, 0.08);
    transform: translateX(3px);
  }

  .mockup-frame:hover .tablet-device {
    box-shadow:
      inset 0 0 0 2px rgba(255, 255, 255, 0.05),
      inset 0 -12px 24px rgba(0, 0, 0, 0.34),
      0 42px 72px rgba(0, 0, 0, 0.42);
    transform: translateY(-6px) rotate(-0.35deg) scale(1.012);
  }

  .concept-flow article:hover {
    transform: translateY(-4px);
  }

  .concept-flow article:hover .flow-icon {
    filter: drop-shadow(0 10px 18px rgba(10, 27, 45, 0.14));
    transform: scale(1.045);
  }

  .input-ledger article:hover {
    background:
      linear-gradient(90deg, rgba(183, 227, 26, 0.16), transparent 1px),
      rgba(255, 250, 240, 0.98);
    box-shadow: inset 0 0 0 1px rgba(113, 148, 8, 0.12);
  }

  .input-ledger article:hover > span {
    border-color: rgba(113, 148, 8, 0.34);
    background: var(--lime);
    color: var(--paper-text);
    transform: scale(1.06);
  }

  .audience-list article:hover {
    border-color: rgba(10, 27, 45, 0.2);
    background: rgba(255, 250, 240, 0.94);
    box-shadow: 0 18px 46px rgba(25, 31, 38, 0.1);
    transform: translateY(-4px);
  }

  .timeline-panel:hover,
  .rationale-panel:hover,
  .review-card:hover,
  .cta:hover {
    box-shadow: 0 26px 70px rgba(25, 31, 38, 0.14);
    transform: translateY(-3px);
  }

  .review-card:hover .review-record-card {
    box-shadow:
      inset 0 1px 0 rgba(255, 255, 255, 0.84),
      0 28px 48px rgba(25, 31, 38, 0.16);
    transform: translateY(-2px);
  }

  .review-card:hover .record-check {
    background: var(--lime);
    color: var(--paper-text);
    transform: scale(1.04);
  }

  .review-card:hover .record-row::after {
    background: var(--lime-on-paper);
  }

  .rationale-panel:hover .chips span:nth-child(-n + 3) {
    border-color: rgba(113, 148, 8, 0.35);
    background: rgba(183, 227, 26, 0.14);
  }

  .timeline-step:hover {
    background: rgba(183, 227, 26, 0.065);
  }

  .timeline-step:hover span {
    transform: scale(1.06);
  }

  .states span:hover,
  .chips span:hover {
    border-color: rgba(113, 148, 8, 0.35);
    background: rgba(183, 227, 26, 0.13);
    box-shadow: 0 10px 24px rgba(25, 31, 38, 0.08);
    transform: translateY(-2px);
  }

  .notice:hover {
    background: rgba(183, 227, 26, 0.16);
    box-shadow: 0 12px 28px rgba(25, 31, 38, 0.07);
    transform: translateX(3px);
  }
}

@media (prefers-reduced-motion: no-preference) {
  @keyframes rise-in {
    from {
      opacity: 0.88;
      transform: translateY(18px);
    }

    to {
      opacity: 1;
      transform: translateY(0);
    }
  }

  @keyframes product-breathe {
    0%,
    100% {
      transform: translateY(0);
    }

    50% {
      transform: translateY(-5px);
    }
  }

  @keyframes fade-in {
    from {
      opacity: 0.92;
    }

    to {
      opacity: 1;
    }
  }

  .hero-copy > *,
  .trust-strip,
  .model h2,
  .concept-flow article,
  .proof-panel,
  .problem .section-kicker,
  .problem h2,
  .problem .copy-stack,
  .scenario .section-heading,
  .scenario-grid,
  .inputs .section-heading,
  .input-ledger article,
  .review-card,
  .audience .section-heading,
  .audience-list,
  .cta {
    animation: rise-in 620ms var(--ease-soft);
  }

  .hero-visual {
    animation: fade-in 680ms var(--ease-soft) 160ms;
  }

  .hero-copy > *:nth-child(2) {
    animation-delay: 70ms;
  }

  .hero-copy > *:nth-child(3) {
    animation-delay: 130ms;
  }

  .hero-copy > *:nth-child(4) {
    animation-delay: 190ms;
  }

  .hero-visual {
    animation-delay: 160ms;
  }

  .concept-flow article:nth-child(2),
  .input-ledger article:nth-child(2) {
    animation-delay: 70ms;
  }

  .concept-flow article:nth-child(3),
  .input-ledger article:nth-child(3) {
    animation-delay: 120ms;
  }

  .concept-flow article:nth-child(4),
  .input-ledger article:nth-child(4) {
    animation-delay: 170ms;
  }

  .concept-flow article:nth-child(5) {
    animation-delay: 220ms;
  }

  .mockup-frame {
    animation: product-breathe 7s ease-in-out 900ms infinite;
  }
}

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

@media (max-width: 1060px) {
  .site-header {
    min-height: 74px;
  }

  .header-inner {
    min-height: 74px;
    padding: 12px 0;
  }

  .nav-links {
    display: none;
  }

  .header-actions {
    gap: 14px;
  }

  .hero {
    grid-template-columns: 1fr;
    min-height: auto;
    padding-top: 34px;
  }

  .hero-visual {
    justify-self: center;
    max-width: 760px;
    transform: none;
    transform-origin: center;
  }

  .split,
  .section-heading,
  .proof-panel,
  .audience-panel,
  .scenario-grid,
  .review-card {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .audience-panel {
    padding-top: 24px;
  }

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

  .review-record-artifact {
    justify-items: start;
  }

  .review-record-card {
    width: min(100%, 480px);
  }

  .section-heading > p {
    margin-top: 0;
  }

  .trust-strip {
    align-items: flex-start;
    flex-direction: column;
    gap: 14px;
    padding: 18px 0;
  }

  .trust-strip div {
    justify-content: flex-start;
  }

  .proof-panel {
    padding: 30px 0;
  }

  .model-flow,
  .input-ledger {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .concept-flow {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .concept-flow article {
    display: grid;
    grid-template-columns: 78px 1fr;
    column-gap: 18px;
    align-items: center;
  }

  .concept-flow article:not(:last-child)::before,
  .concept-flow article:not(:last-child)::after {
    display: none;
  }

  .flow-icon {
    width: 72px;
    height: 72px;
    grid-row: span 2;
    margin: 0 !important;
  }

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

  .timeline-step {
    min-height: auto;
    display: grid;
    grid-template-columns: 52px 1fr;
    column-gap: 16px;
    border-right: 0;
    border-bottom: 1px solid var(--line-paper);
  }

  .timeline-step span {
    grid-row: span 2;
    margin-bottom: 0;
  }
}

@media (max-width: 720px) {
  body {
    background: #f4eee4;
  }

  main section {
    scroll-margin-top: 78px;
  }

  .section-shell,
  .header-inner {
    width: min(100% - 28px, 1280px);
  }

  .header-inner {
    gap: 12px;
  }

  .brand {
    min-width: 0;
  }

  .brand-mark {
    width: 46px;
    height: 46px;
    font-size: 15px;
  }

  .brand-logo {
    width: 42px;
    height: 50px;
  }

  .brand strong {
    font-size: 14px;
  }

  .brand small {
    font-size: 11px;
  }

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

  .hero {
    gap: 18px;
    padding: 24px 0 24px;
  }

  .hero::before {
    inset: -96px calc((100vw - 100%) / -2) 0;
  }

  h1 {
    font-size: clamp(38px, 10.8vw, 46px);
    line-height: 1;
  }

  .hero-deck {
    max-width: 340px;
    font-size: 18px;
    line-height: 1.28;
  }

  .hero-text,
  .copy-stack p,
  .section-heading p,
  .review-card p,
  .cta p {
    font-size: 16px;
  }

  .hero-actions {
    flex-direction: column;
    gap: 10px;
  }

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

  .header-cta {
    width: auto;
  }

  .signal-row {
    display: flex;
    gap: 0;
    overflow-x: auto;
    width: 100%;
    border: 1px solid rgba(255, 255, 255, 0.12);
    scroll-snap-type: x proximity;
  }

  .signal-row span {
    flex: 0 0 108px;
    min-height: 66px;
    padding-top: 34px;
    font-size: 9.5px;
    scroll-snap-align: start;
  }

  .signal-row svg {
    top: 8px;
    width: 26px;
    height: 26px;
  }

  .hero-visual {
    width: min(86vw, 360px);
  }

  .tablet-device {
    aspect-ratio: auto;
    padding: 8px;
    border-radius: 20px;
    transform: none;
  }

  .tablet-device::after {
    content: none;
  }

  .tablet-screen {
    display: block;
    height: auto;
    min-height: 0;
    border-radius: 15px;
    font-size: 10px;
  }

  .product-sidebar {
    display: none;
  }

  .product-canvas {
    display: grid;
    grid-template-columns: 1fr;
    gap: 0.7em;
    padding: 1em;
  }

  .decision-card {
    min-height: auto;
    padding: 1em;
  }

  .decision-card:not(.primary-decision) {
    display: none;
  }

  .primary-decision {
    padding-left: 3.4em;
  }

  .decision-card strong {
    font-size: 1.7em;
  }

  .timeline-preview {
    grid-column: auto;
  }

  .timeline-labels {
    display: none;
  }

  .product-status-grid,
  .human-review-line {
    display: none;
  }

  h2 {
    font-size: clamp(28px, 8.4vw, 36px);
    line-height: 1.1;
  }

  .problem,
  .proof,
  .model,
  .scenario,
  .inputs,
  .review,
  .audience {
    padding: 42px 0;
  }

  .model h2 {
    font-size: clamp(28px, 8vw, 34px);
  }

  .trust-strip p {
    font-size: 24px;
  }

  .trust-strip span {
    min-height: 30px;
    font-size: 11px;
  }

  .proof-list article {
    grid-template-columns: 1fr;
    gap: 6px;
    padding: 16px 18px;
  }

  .proof-list strong {
    font-size: 15px;
  }

  .model-flow,
  .input-ledger {
    grid-template-columns: 1fr;
  }

  .model-flow article,
  .input-ledger article {
    min-height: auto;
  }

  .model-flow span:not(.flow-icon) {
    margin-bottom: 24px;
  }

  .review-card,
  .cta {
    padding: 24px;
  }

  .review-record-card {
    padding: 18px;
  }

  .record-header {
    grid-template-columns: 34px minmax(0, 1fr);
  }

  .record-header small {
    grid-column: 2;
    justify-self: start;
  }

  .record-check {
    width: 34px;
    height: 34px;
    font-size: 20px;
  }

  .record-row {
    padding-left: 44px;
  }

  .record-row::after {
    left: 38px;
  }

  .audience-list article {
    min-height: auto;
    padding: 20px;
  }

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

  .footer {
    flex-direction: column;
  }
}

/* Selected typography direction: field-manual serif with steady operational UI. */
:root {
  --font-body: "Avenir Next", Avenir, "Helvetica Neue", Arial, sans-serif;
  --font-display: Athelas, "Iowan Old Style", Georgia, serif;
  --font-ui: "Avenir Next", Avenir, "Helvetica Neue", Arial, sans-serif;
}

.brand-mark,
.product-sidebar,
.status-line,
.decision-card dt,
.decision-card dd,
.decision-card span,
.timeline-preview > span,
.timeline-track i,
.timeline-labels span,
.product-status-grid strong,
.human-review-line span,
.model-flow span,
.states span,
.chips span,
.timeline-step span,
.panel-label,
.input-ledger article > span,
.record-header small,
.record-check,
.record-row span,
.record-footer,
.decision-card small,
.trust-strip strong,
.trust-strip span,
.proof-list span,
.proof-list strong,
.model-flow strong,
.input-ledger strong,
.timeline-step strong,
.timeline-step small,
.rationale-panel h3,
.record-row strong,
.record-inputs span,
.record-footer strong,
.audience-list strong,
.notice {
  font-weight: 560;
}

h1,
h2,
.record-header strong {
  font-weight: 500;
  letter-spacing: 0;
}

.hero-deck {
  font-weight: 500;
}

.brand strong,
.button,
.header-cta,
.signal-row span,
.trust-strip span,
.proof-list strong,
.model-flow strong,
.input-ledger strong,
.timeline-step strong,
.rationale-panel h3,
.record-row strong,
.record-inputs span,
.record-footer strong,
.notice,
.audience-list strong {
  font-weight: 570;
}

.section-kicker,
.panel-label,
.proof-list span,
.input-ledger::before,
.audience-list span {
  font-weight: 640;
  letter-spacing: 0.075em;
}

.decision-card strong {
  font-weight: 560;
}

@media (min-width: 1061px) {
  .site-header {
    min-height: 82px;
  }

  .header-inner {
    width: min(1440px, calc(100% - 112px));
    padding: 10px 0;
  }

  .brand-logo {
    width: 52px;
    height: 62px;
  }

  .brand strong {
    font-size: 21px;
  }

  .brand small {
    font-size: 14px;
  }

  .header-cta,
  .button {
    min-height: 46px;
    padding: 0 24px;
  }

  .hero {
    min-height: clamp(500px, calc(100vh - 170px), 530px);
    padding: 10px 0 8px;
  }

  h1 {
    font-size: clamp(46px, 4.8vw, 72px);
    line-height: 0.98;
    margin-bottom: 14px;
  }

  .hero-deck {
    max-width: 500px;
    margin-bottom: 18px;
    font-size: clamp(19px, 1.75vw, 25px);
    line-height: 1.24;
  }

  .hero-text {
    margin-bottom: 18px;
  }

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

  .signal-row span {
    min-height: 72px;
    padding: 37px 7px 8px;
    font-size: 10px;
  }

  .signal-row svg {
    top: 10px;
    width: 27px;
    height: 27px;
  }

  .hero-visual {
    width: min(650px, 44vw);
  }
}
