:root {
  color-scheme: dark;
  --ink: #171512;
  --charcoal: #11100d;
  --charcoal-2: #1d1b17;
  --graphite: #24221e;
  --paper: #f3efe4;
  --paper-2: #e5decf;
  --muted: #a9a194;
  --line-dark: rgba(243, 239, 228, 0.16);
  --line-light: rgba(23, 21, 18, 0.14);
  --blue: #4da3ff;
  --blue-soft: rgba(77, 163, 255, 0.16);
  --copper: #c4824c;
  --copper-soft: rgba(196, 130, 76, 0.18);
  --green: #76ba8a;
  --shadow: 0 28px 80px rgba(0, 0, 0, 0.32);
  --hover-shadow: 0 20px 46px rgba(0, 0, 0, 0.26);
  --hover-shadow-soft: 0 18px 38px rgba(17, 16, 13, 0.14);
  --hover-ease: cubic-bezier(0.22, 1, 0.36, 1);
  --radius: 6px;
  --card-padding: 22px;
  --card-gap: 12px;
  --max: 1180px;
  --gutter: clamp(18px, 4vw, 44px);
  --header-height: 103px;
  --section-y: clamp(58px, 7vw, 104px);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

* {
  box-sizing: border-box;
}

[hidden] {
  display: none !important;
}

html {
  background: var(--charcoal);
}

body {
  margin: 0;
  background: var(--charcoal);
  color: var(--paper);
  line-height: 1.55;
  text-rendering: optimizeLegibility;
}

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

main:focus {
  outline: none;
}

body,
button,
input {
  font: inherit;
}

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

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

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

ul,
ol {
  padding: 0;
}

li {
  list-style-position: inside;
}

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

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(17, 16, 13, 0.92);
  backdrop-filter: blur(18px);
  border-bottom: 1px solid var(--line-dark);
}

.announcement {
  min-height: 34px;
  display: grid;
  place-items: center;
  padding: 7px var(--gutter);
  border-bottom: 1px solid var(--line-dark);
  color: var(--paper-2);
  font-family: "SFMono-Regular", Consolas, "Liberation Mono", monospace;
  font-size: 0.75rem;
  text-align: center;
}

.nav-shell {
  max-width: var(--max);
  margin: 0 auto;
  padding: 15px var(--gutter);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.brand,
.nav-cta,
.button,
.text-link {
  display: inline-flex;
  align-items: center;
  gap: 10px;
}

.brand {
  font-family: "SFMono-Regular", Consolas, "Liberation Mono", monospace;
  font-size: 0.95rem;
  color: var(--paper);
  white-space: nowrap;
  gap: 8px;
}

.brand-logo {
  width: 32px;
  height: 32px;
  display: inline-block;
  flex: 0 0 auto;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: clamp(16px, 3vw, 34px);
  color: var(--muted);
  font-size: 0.88rem;
}

.nav-links a,
.site-footer a {
  transition: color 160ms ease;
}

.nav-links a:hover,
.site-footer a:hover {
  color: var(--paper);
}

.nav-cta {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  min-height: 38px;
  padding: 0 14px;
  border-radius: var(--radius);
  font-size: 0.84rem;
  font-weight: 700;
  white-space: nowrap;
  transition:
    transform 220ms var(--hover-ease),
    border-color 220ms ease,
    background-color 220ms ease,
    background-position 520ms var(--hover-ease),
    box-shadow 220ms ease,
    color 220ms ease;
}

.nav-cta-short,
.cta-label-short {
  display: none;
}

.mobile-detail-container {
  border: 0;
  background: transparent;
}

.mobile-detail-container > summary {
  display: none;
}

.nav-cta svg,
.button svg,
.text-link svg {
  width: 18px;
  height: 18px;
}

.nav-cta path,
.button path,
.text-link path {
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: square;
  stroke-linejoin: miter;
}

.nav-cta > span,
.nav-cta > svg,
.button > span,
.button > svg {
  position: relative;
  z-index: 1;
}

.section-dark,
.section-graphite,
.section-paper {
  position: relative;
}

.section-dark {
  background:
    linear-gradient(180deg, rgba(77, 163, 255, 0.05), transparent 32rem),
    var(--charcoal);
  color: var(--paper);
}

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

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

.section-inner {
  max-width: var(--max);
  margin: 0 auto;
  padding: var(--section-y) var(--gutter);
}

main > section,
footer {
  scroll-margin-top: calc(var(--header-height) + 28px);
}

#pricing {
  scroll-margin-top: var(--header-height);
}

#pricing::before {
  content: "";
  position: absolute;
  top: -2px;
  left: 0;
  right: 0;
  height: 2px;
  background: var(--graphite);
  pointer-events: none;
}

.hero .section-inner {
  padding-top: clamp(34px, 5vw, 58px);
  padding-bottom: clamp(26px, 4vw, 42px);
}

.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.02fr) minmax(330px, 0.78fr);
  gap: clamp(36px, 7vw, 84px);
  align-items: start;
}

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

.eyebrow,
.section-label {
  font-family: "SFMono-Regular", Consolas, "Liberation Mono", monospace;
  text-transform: uppercase;
  letter-spacing: 0;
  font-size: 0.78rem;
  color: var(--copper);
  margin-bottom: 20px;
}

h1,
h2 {
  font-family: Georgia, "Times New Roman", serif;
  font-weight: 650;
  line-height: 1.12;
  letter-spacing: 0;
}

h1 {
  max-width: 780px;
  font-size: clamp(2.8rem, 4.45vw, 4.45rem);
}

h2 {
  font-size: clamp(2.05rem, 4.1vw, 4.25rem);
}

h3 {
  font-size: 1rem;
  line-height: 1.25;
}

h1 + p,
h2 + p {
  margin-top: 18px;
}

.hero-subhead {
  max-width: 720px;
  margin-top: 20px;
  color: var(--paper-2);
  font-size: clamp(0.98rem, 1.18vw, 1.08rem);
}

.hero-kicker {
  max-width: 720px;
  margin-top: 16px;
  color: var(--paper);
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(1.45rem, 2vw, 2.05rem);
  line-height: 1.12;
}

.support-line {
  max-width: 690px;
  margin-top: 14px;
  color: var(--muted);
}

.deliverable-snapshot {
  max-width: 690px;
  margin-top: 16px;
  padding: 14px 0;
  border-top: 1px solid var(--line-dark);
  border-bottom: 1px solid var(--line-dark);
}

.deliverable-snapshot > span {
  display: block;
  color: var(--copper);
  font-family: "SFMono-Regular", Consolas, "Liberation Mono", monospace;
  font-size: 0.72rem;
  text-transform: uppercase;
}

.deliverable-snapshot ul {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 8px 16px;
  margin-top: 10px;
}

.deliverable-snapshot li {
  display: grid;
  grid-template-columns: 7px minmax(0, 1fr);
  column-gap: 9px;
  align-items: start;
  color: var(--paper-2);
  font-size: 0.86rem;
  line-height: 1.36;
  list-style: none;
}

.deliverable-snapshot li::before {
  content: "";
  width: 7px;
  height: 7px;
  display: block;
  margin-top: 0.58em;
  background: var(--copper);
}

.hero-proof-strip {
  max-width: 690px;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 8px;
  margin-top: 14px;
}

.hero-proof-strip article {
  min-height: 100%;
  padding: 10px;
  border: 1px solid var(--line-dark);
  border-radius: var(--radius);
  background: rgba(243, 239, 228, 0.035);
}

.hero-proof-strip span,
.section-cta span {
  display: block;
  color: var(--copper);
  font-family: "SFMono-Regular", Consolas, "Liberation Mono", monospace;
  font-size: 0.68rem;
  line-height: 1.2;
  text-transform: uppercase;
}

.hero-proof-strip strong {
  display: block;
  margin-top: 6px;
  color: var(--paper);
  font-size: 0.86rem;
  line-height: 1.2;
}

.hero-proof-strip p {
  margin-top: 5px;
  color: var(--muted);
  font-size: 0.74rem;
  line-height: 1.24;
}

.cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 20px;
}

.button {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  min-height: 50px;
  border-radius: var(--radius);
  padding: 0 18px;
  font-weight: 800;
  transition:
    transform 220ms var(--hover-ease),
    border-color 220ms ease,
    background-color 220ms ease,
    background-position 520ms var(--hover-ease),
    box-shadow 220ms ease,
    color 220ms ease;
}

.button::after,
.nav-cta::after {
  content: "";
  position: absolute;
  top: -18%;
  bottom: -18%;
  left: -72%;
  width: 58%;
  z-index: 0;
  pointer-events: none;
  background: linear-gradient(
    110deg,
    transparent 0%,
    rgba(255, 255, 255, 0.08) 28%,
    rgba(255, 255, 255, 0.26) 50%,
    rgba(255, 255, 255, 0.08) 72%,
    transparent 100%
  );
  opacity: 0;
  transform: translateX(0%) skewX(-12deg);
  transition:
    transform 520ms var(--hover-ease),
    opacity 220ms ease;
}

.nav-cta::after,
.button-secondary::after {
  content: none;
}

.button-primary {
  background: var(--paper);
  color: var(--ink);
  border: 1px solid var(--paper);
}

.nav-cta,
.button-secondary {
  border: 1px solid rgba(77, 163, 255, 0.38);
  color: var(--paper);
  background:
    linear-gradient(
      110deg,
      rgba(77, 163, 255, 0.08) 0%,
      rgba(77, 163, 255, 0.08) 50%,
      rgba(77, 163, 255, 0.16) 50%,
      rgba(77, 163, 255, 0.16) 100%
  );
  background-size: 240% 100%;
  background-position: 0 0;
}

.hero .button-secondary {
  width: fit-content;
  min-height: 50px;
  padding: 0 18px;
  box-shadow: none;
}

.button-full {
  width: 100%;
  justify-content: center;
}

.conversion-bar[hidden] {
  display: none;
}

.conversion-bar {
  position: fixed;
  left: 50%;
  bottom: 14px;
  z-index: 60;
  width: min(calc(100% - 28px), 920px);
  min-height: 66px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 10px 12px 10px 18px;
  border: 1px solid rgba(243, 239, 228, 0.2);
  border-radius: var(--radius);
  background: rgba(17, 16, 13, 0.94);
  color: var(--paper);
  box-shadow: 0 18px 54px rgba(0, 0, 0, 0.34);
  transform: translateX(-50%);
  backdrop-filter: blur(18px);
}

.conversion-bar-copy {
  display: grid;
  gap: 4px;
  min-width: 0;
}

.conversion-bar-copy span {
  color: var(--copper);
  font-family: "SFMono-Regular", Consolas, "Liberation Mono", monospace;
  font-size: 0.68rem;
  line-height: 1.2;
  text-transform: uppercase;
}

.conversion-bar-copy strong {
  color: var(--paper);
  font-size: 0.92rem;
  line-height: 1.25;
}

.conversion-bar-cta {
  flex: 0 0 auto;
  min-height: 44px;
}

.microcopy {
  max-width: 650px;
  margin-top: 18px;
  color: var(--muted);
  font-size: 0.9rem;
}

.trust-strip {
  max-width: 720px;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 14px;
}

.trust-strip span {
  min-height: 28px;
  display: inline-flex;
  align-items: center;
  padding: 5px 9px;
  border: 1px solid var(--line-dark);
  border-radius: var(--radius);
  background: rgba(243, 239, 228, 0.04);
  color: var(--paper-2);
  font-family: "SFMono-Regular", Consolas, "Liberation Mono", monospace;
  font-size: 0.72rem;
  line-height: 1.25;
}

.section-cta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  margin-top: 30px;
  padding-top: 26px;
  border-top: 1px solid var(--line-dark);
}

.section-cta p {
  max-width: 650px;
  margin-top: 8px;
  color: var(--paper-2);
}

.section-cta .button {
  flex: 0 0 auto;
}

.chip-list {
  display: none;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 18px;
}

.chip-list li {
  list-style: none;
  min-height: 34px;
  display: inline-flex;
  align-items: center;
  padding: 0 12px;
  border: 1px solid var(--line-dark);
  color: var(--paper-2);
  background: rgba(243, 239, 228, 0.035);
  border-radius: var(--radius);
  font-family: "SFMono-Regular", Consolas, "Liberation Mono", monospace;
  font-size: 0.78rem;
}

.hero-visual {
  display: grid;
  gap: 22px;
  align-content: center;
  margin-top: clamp(40px, 4vw, 62px);
}

.manual-cover {
  position: relative;
  min-height: clamp(300px, 34vw, 430px);
  border: 1px solid rgba(243, 239, 228, 0.22);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  background: #0b0b09;
  isolation: isolate;
  transition:
    transform 260ms var(--hover-ease),
    border-color 260ms ease,
    box-shadow 260ms ease;
}

.manual-cover::before {
  content: "";
  position: absolute;
  inset: 18px;
  border: 1px solid rgba(243, 239, 228, 0.18);
  z-index: 2;
  pointer-events: none;
}

.manual-cover img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.88;
  transition:
    transform 360ms ease,
    opacity 220ms ease;
}

.cover-text {
  position: absolute;
  z-index: 3;
  inset: auto 34px 34px 34px;
  display: grid;
  gap: 16px;
}

.cover-text span,
.cover-text em {
  font-family: "SFMono-Regular", Consolas, "Liberation Mono", monospace;
  font-size: 0.78rem;
  color: var(--paper-2);
  font-style: normal;
}

.cover-text strong {
  max-width: 100%;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(2.2rem, 3.35vw, 3.55rem);
  line-height: 0.96;
  font-weight: 650;
}

.system-strip {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 8px;
}

.system-strip span {
  min-height: 42px;
  display: grid;
  place-items: center;
  border: 1px solid var(--line-dark);
  color: var(--paper-2);
  background: rgba(36, 34, 30, 0.8);
  border-radius: var(--radius);
  font-family: "SFMono-Regular", Consolas, "Liberation Mono", monospace;
  font-size: 0.68rem;
  text-align: center;
  padding: 6px;
  transition:
    transform 180ms ease,
    border-color 180ms ease,
    background-color 180ms ease,
    color 180ms ease;
}

.split-layout,
.two-column,
.pricing-layout,
.faq-layout,
.toc-layout,
.record-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.82fr) minmax(0, 1.18fr);
  gap: clamp(28px, 5vw, 64px);
  align-items: start;
}

.provenance-section .section-inner,
.compact-middle-section .section-inner {
  padding-top: clamp(46px, 6vw, 84px);
  padding-bottom: clamp(46px, 6vw, 84px);
}

.operator-proof-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(320px, 0.7fr);
  gap: clamp(28px, 6vw, 72px);
  align-items: center;
}

.operator-note h2 {
  max-width: 760px;
}

.operator-note p:not(.section-label) {
  max-width: 720px;
  margin-top: 20px;
  color: rgba(23, 21, 18, 0.74);
  font-size: clamp(1.02rem, 1.28vw, 1.16rem);
}

.proof-note {
  padding: clamp(22px, 3vw, 32px);
  border: 1px solid var(--line-light);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.42);
}

.proof-note > span {
  display: block;
  color: var(--copper);
  font-family: "SFMono-Regular", Consolas, "Liberation Mono", monospace;
  font-size: 0.74rem;
  text-transform: uppercase;
}

.proof-note p {
  margin-top: 14px;
  color: rgba(23, 21, 18, 0.78);
  font-size: 1rem;
  line-height: 1.45;
}

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

.proof-signals span {
  min-height: 38px;
  display: grid;
  place-items: center;
  padding: 8px;
  border: 1px solid var(--line-light);
  border-radius: var(--radius);
  background: rgba(23, 21, 18, 0.05);
  font-family: "SFMono-Regular", Consolas, "Liberation Mono", monospace;
  font-size: 0.68rem;
  text-align: center;
}

.compact-middle-section .section-heading {
  max-width: 860px;
  margin-bottom: 22px;
}

.compact-accordion {
  display: grid;
  gap: 10px;
}

.compact-detail {
  scroll-margin-top: calc(var(--header-height) + 14px);
  background: rgba(17, 16, 13, 0.34);
}

.compact-detail summary {
  min-height: auto;
  display: grid;
  grid-template-columns: minmax(140px, 0.28fr) minmax(0, 1fr) auto;
  align-items: center;
  gap: 16px;
  padding: 17px 18px;
}

.compact-detail summary span {
  color: var(--copper);
  font-family: "SFMono-Regular", Consolas, "Liberation Mono", monospace;
  font-size: 0.72rem;
  line-height: 1.25;
  text-transform: uppercase;
}

.compact-detail summary strong {
  color: var(--paper);
  font-size: clamp(0.98rem, 1.45vw, 1.18rem);
  line-height: 1.25;
}

.compact-detail summary::after {
  grid-column: 3;
}

.compact-detail-body {
  display: grid;
  gap: 14px;
  padding: 0 18px 18px;
}

.compact-detail-body p,
.compact-detail details p {
  padding: 0;
}

.compact-detail-body p {
  max-width: 880px;
  color: var(--paper-2);
}

.compact-detail-body .strong-line {
  color: var(--paper);
}

.compact-chip-grid,
.compact-two {
  display: grid;
  gap: 8px;
}

.compact-chip-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

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

.compact-law {
  grid-template-columns: repeat(5, minmax(0, 1fr));
}

.compact-chip-grid span,
.compact-two article,
.compact-flow {
  padding: 12px;
  border: 1px solid var(--line-dark);
  border-radius: var(--radius);
  background: rgba(243, 239, 228, 0.045);
  color: var(--paper-2);
}

.compact-chip-grid span {
  min-height: 44px;
  display: flex;
  align-items: center;
  font-family: "SFMono-Regular", Consolas, "Liberation Mono", monospace;
  font-size: 0.72rem;
  line-height: 1.28;
}

.compact-detail-cta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin-top: 4px;
  padding: 14px;
  border: 1px solid rgba(196, 130, 76, 0.34);
  border-radius: var(--radius);
  background: rgba(196, 130, 76, 0.09);
}

.compact-detail-cta p {
  color: var(--paper);
  font-weight: 800;
}

.compact-detail-cta .button {
  flex: 0 0 auto;
  min-height: 44px;
}

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

.compact-two h3 {
  margin-bottom: 8px;
  color: var(--paper);
}

.compact-flow {
  font-family: "SFMono-Regular", Consolas, "Liberation Mono", monospace;
  font-size: 0.8rem;
  line-height: 1.55;
}

.copy-stack {
  display: grid;
  gap: 18px;
  font-size: clamp(1.02rem, 1.35vw, 1.2rem);
}

.section-paper .copy-stack {
  color: rgba(23, 21, 18, 0.78);
}

.strong-line {
  font-weight: 800;
  color: inherit;
}

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

.newsletter-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(360px, 0.72fr);
  gap: clamp(28px, 5vw, 64px);
  align-items: center;
}

.newsletter-copy {
  max-width: 780px;
}

.newsletter-copy h2 {
  max-width: 720px;
  font-size: clamp(2.35rem, 4.2vw, 4.35rem);
}

.newsletter-copy p:not(.section-label) {
  margin-top: 22px;
  color: rgba(23, 21, 18, 0.76);
  font-size: clamp(1.02rem, 1.35vw, 1.18rem);
}

.newsletter-topics {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 24px;
}

.newsletter-topics span {
  min-height: 34px;
  display: inline-flex;
  align-items: center;
  padding: 0 11px;
  border: 1px solid var(--line-light);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.4);
  color: rgba(23, 21, 18, 0.72);
  font-family: "SFMono-Regular", Consolas, "Liberation Mono", monospace;
  font-size: 0.72rem;
  text-transform: uppercase;
}

.newsletter-form {
  position: relative;
  display: grid;
  gap: 14px;
  padding: clamp(20px, 3vw, 28px);
  border: 1px solid var(--line-light);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.48);
  box-shadow: var(--hover-shadow-soft);
}

.newsletter-form label {
  display: flex;
  justify-content: space-between;
  gap: 10px;
  margin-bottom: 7px;
  color: rgba(23, 21, 18, 0.82);
  font-size: 0.78rem;
  font-weight: 800;
  text-transform: uppercase;
}

.newsletter-form label span {
  color: rgba(23, 21, 18, 0.52);
  font-weight: 700;
  text-transform: none;
}

.newsletter-form input {
  width: 100%;
  min-height: 48px;
  padding: 0 13px;
  border: 1px solid rgba(23, 21, 18, 0.2);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.78);
  color: var(--ink);
  outline: none;
}

.newsletter-form input:focus {
  border-color: rgba(77, 163, 255, 0.72);
  box-shadow: 0 0 0 3px rgba(77, 163, 255, 0.16);
}

.newsletter-form button:disabled {
  cursor: wait;
  opacity: 0.68;
}

.newsletter-honeypot {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

.newsletter-publication-link {
  justify-self: center;
  color: rgba(23, 21, 18, 0.72);
  font-size: 0.9rem;
  font-weight: 800;
  text-decoration: underline;
  text-underline-offset: 4px;
}

.newsletter-status {
  min-height: 22px;
  color: rgba(23, 21, 18, 0.62);
  font-size: 0.88rem;
  text-align: center;
}

.newsletter-status[data-state="success"] {
  color: #245e37;
  font-weight: 800;
}

.newsletter-status[data-state="error"] {
  color: #8a2f2f;
  font-weight: 800;
}

.newsletter-status[data-state="pending"] {
  color: rgba(23, 21, 18, 0.76);
}

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

.readiness-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(380px, 0.78fr);
  gap: clamp(28px, 5vw, 64px);
  align-items: start;
}

.readiness-copy {
  display: grid;
  gap: 22px;
}

.readiness-copy h2 {
  max-width: 780px;
  font-size: clamp(2.3rem, 4vw, 4.3rem);
  line-height: 0.98;
}

.readiness-copy > p {
  max-width: 760px;
  color: rgba(23, 21, 18, 0.76);
  font-size: clamp(1.02rem, 1.35vw, 1.18rem);
}

.track-options {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  border-top: 1px solid var(--line-light);
  border-left: 1px solid var(--line-light);
}

.track-options article {
  min-height: 166px;
  display: grid;
  align-content: start;
  gap: 8px;
  padding: clamp(16px, 2.2vw, 22px);
  border-right: 1px solid var(--line-light);
  border-bottom: 1px solid var(--line-light);
  background: rgba(255, 255, 255, 0.36);
}

.track-options span,
.readiness-card legend,
.scorecard-result span {
  color: rgba(23, 21, 18, 0.56);
  font-family: "SFMono-Regular", Consolas, "Liberation Mono", monospace;
  font-size: 0.72rem;
  text-transform: uppercase;
}

.track-options strong {
  color: var(--ink);
  font-size: 1rem;
  line-height: 1.2;
}

.track-options p {
  color: rgba(23, 21, 18, 0.68);
  font-size: 0.94rem;
}

.readiness-card {
  display: grid;
  gap: 20px;
  padding: clamp(20px, 3vw, 30px);
  border: 1px solid var(--line-light);
  border-top: 3px solid var(--text-primary);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.54);
}

.readiness-card-head {
  display: grid;
  gap: 8px;
}

.readiness-card h3 {
  color: var(--ink);
  font-size: clamp(1.35rem, 2vw, 1.9rem);
  line-height: 1.05;
}

.readiness-card p {
  color: rgba(23, 21, 18, 0.72);
}

.readiness-card fieldset {
  display: grid;
  gap: 10px;
  min-width: 0;
  margin: 0;
  padding: 0;
  border: 0;
}

.segmented-options,
.readiness-checks {
  display: grid;
  gap: 8px;
}

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

.segmented-options label,
.readiness-checks label {
  min-height: 44px;
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 11px;
  border: 1px solid rgba(23, 21, 18, 0.16);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.7);
  color: rgba(23, 21, 18, 0.82);
  font-size: 0.9rem;
  font-weight: 800;
  line-height: 1.25;
}

.segmented-options input,
.readiness-checks input {
  flex: 0 0 auto;
  width: 16px;
  height: 16px;
  accent-color: var(--ink);
}

.scorecard-result {
  display: grid;
  gap: 8px;
  padding: 16px;
  border: 1px solid rgba(23, 21, 18, 0.16);
  border-radius: var(--radius);
  background: rgba(17, 16, 13, 0.06);
}

.scorecard-result strong {
  color: var(--ink);
  font-size: 1.08rem;
  line-height: 1.2;
}

.readiness-actions {
  display: grid;
  gap: 10px;
}

.readiness-actions .button {
  justify-content: center;
  min-height: 48px;
}

.flow-line {
  display: grid;
  gap: 8px;
  padding: 18px;
  background: #151411;
  color: var(--paper-2);
  border-radius: var(--radius);
  border: 1px solid rgba(23, 21, 18, 0.5);
  font-family: "SFMono-Regular", Consolas, "Liberation Mono", monospace;
  font-size: 0.78rem;
  transition:
    transform 180ms ease,
    border-color 180ms ease,
    box-shadow 180ms ease;
}

.flow-line span {
  position: relative;
  min-height: 30px;
  display: flex;
  align-items: center;
  border-bottom: 1px solid rgba(243, 239, 228, 0.11);
}

.flow-line span:last-child {
  border-bottom: 0;
}

.problem-section p,
.product-section p,
.architecture-section p,
.roadmap-section p,
.faq-section p {
  color: var(--paper-2);
}

.failure-list {
  display: grid;
  gap: 12px;
  counter-reset: fail;
}

.failure-list li {
  list-style: none;
  min-height: 46px;
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 12px 14px;
  border: 1px solid var(--line-dark);
  background: rgba(17, 16, 13, 0.32);
  border-radius: var(--radius);
  transition:
    transform 180ms ease,
    border-color 180ms ease,
    background-color 180ms ease;
}

.failure-list li::before {
  counter-increment: fail;
  content: counter(fail, decimal-leading-zero);
  color: var(--copper);
  font-family: "SFMono-Regular", Consolas, "Liberation Mono", monospace;
  font-size: 0.76rem;
}

.break-grid,
.module-grid,
.offer-grid,
.audience-grid,
.resource-grid {
  display: grid;
  gap: 12px;
}

.break-grid {
  grid-template-columns: repeat(4, 1fr);
  padding-top: 0;
}

.break-grid span,
.definition-list span,
.definition-list strong,
.question-stack span {
  display: flex;
  align-items: center;
  min-height: 76px;
  padding: 16px;
  border: 1px solid var(--line-dark);
  border-radius: var(--radius);
  background: rgba(17, 16, 13, 0.22);
  transition:
    transform 180ms ease,
    border-color 180ms ease,
    background-color 180ms ease,
    box-shadow 180ms ease;
}

.section-heading {
  max-width: 820px;
  margin-bottom: clamp(24px, 4vw, 48px);
}

.section-heading h2 + p,
.section-heading p + p {
  margin-top: 22px;
  color: inherit;
  opacity: 0.78;
  font-size: clamp(1.02rem, 1.35vw, 1.2rem);
}

.separation-diagram {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 220px minmax(0, 1fr);
  gap: 20px;
  align-items: stretch;
}

.separation-diagram article {
  padding: clamp(22px, 4vw, 34px);
  border: 1px solid var(--line-light);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.34);
  transition:
    transform 240ms var(--hover-ease),
    border-color 220ms ease,
    background-color 220ms ease,
    box-shadow 220ms ease;
}

.separation-diagram h3,
.module-grid h3,
.offer-grid h3,
.resource-card h3,
.audience-grid h3,
.roadmap h3,
.six-layer-grid h3,
.artifact-preview-grid h3 {
  margin-bottom: 14px;
}

.separation-diagram ul,
.definition-list,
.question-stack {
  display: grid;
  gap: 10px;
}

.separation-diagram li,
.pricing-card li,
.audience-grid li {
  display: grid;
  grid-template-columns: 7px minmax(0, 1fr);
  column-gap: 9px;
  align-items: start;
  list-style: none;
}

.separation-diagram li::before,
.pricing-card li::before,
.audience-grid li::before {
  content: "";
  width: 7px;
  height: 7px;
  display: block;
  margin-top: 0.58em;
  background: var(--blue);
}

.diagram-core {
  min-height: 100%;
  display: grid;
  place-items: center;
  padding: 20px;
  background: var(--charcoal);
  color: var(--paper);
  border: 1px solid rgba(23, 21, 18, 0.55);
  border-radius: var(--radius);
  text-align: center;
  font-family: "SFMono-Regular", Consolas, "Liberation Mono", monospace;
  font-size: 0.83rem;
}

.definition-list strong {
  background: var(--blue-soft);
  border-color: rgba(77, 163, 255, 0.34);
}

.record-layout {
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  align-items: center;
}

.record-layout p {
  font-size: clamp(1.05rem, 1.5vw, 1.3rem);
  color: rgba(23, 21, 18, 0.76);
}

blockquote {
  grid-column: 1 / -1;
  padding: clamp(32px, 5vw, 62px) 0 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(2.25rem, 6vw, 5.8rem);
  line-height: 0.98;
}

.module-grid,
.resource-grid,
.six-layer-grid,
.artifact-preview-grid {
  display: grid;
  gap: var(--card-gap);
  grid-template-columns: repeat(3, 1fr);
  grid-auto-rows: 1fr;
  align-items: stretch;
}

.module-grid article,
.offer-grid article,
.resource-card,
.roadmap article,
.six-layer-grid article,
.artifact-preview-grid article,
.audience-grid article,
.audience-detail {
  border: 1px solid var(--line-dark);
  background: rgba(17, 16, 13, 0.23);
  border-radius: var(--radius);
  min-height: 100%;
  padding: var(--card-padding);
  transition:
    transform 240ms var(--hover-ease),
    border-color 220ms ease,
    background-color 220ms ease,
    box-shadow 220ms ease;
}

.module-grid article {
  height: 100%;
}

.module-grid span,
.resource-card span,
.article-step span,
.roadmap span,
.six-layer-grid span,
.artifact-preview-grid span,
.pricing-name {
  display: block;
  margin-bottom: 18px;
  color: var(--copper);
  font-family: "SFMono-Regular", Consolas, "Liberation Mono", monospace;
  font-size: 0.75rem;
  text-transform: uppercase;
}

.module-grid p,
.offer-grid p,
.resource-card p,
.roadmap p,
.six-layer-grid p,
.artifact-preview-grid p {
  color: var(--paper-2);
  font-size: 0.93rem;
}

.section-paper .resource-card {
  color: var(--ink);
  background: rgba(255, 255, 255, 0.42);
  border-color: var(--line-light);
}

.section-paper .resource-card p {
  color: rgba(23, 21, 18, 0.72);
}

.resource-card {
  display: flex;
  flex-direction: column;
}

.resource-card .text-link {
  margin-top: auto;
  padding-top: 22px;
}

.resource-hero .section-inner {
  padding-top: clamp(42px, 6vw, 76px);
  padding-bottom: clamp(42px, 6vw, 72px);
}

.breadcrumb {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  margin-bottom: 16px;
  color: var(--muted);
  font-family: "SFMono-Regular", Consolas, "Liberation Mono", monospace;
  font-size: 0.78rem;
}

.breadcrumb a {
  color: var(--paper-2);
}

.resource-hero p {
  max-width: 760px;
}

.article-layout {
  max-width: 960px;
}

.section-paper > .section-inner.article-layout,
.section-dark > .section-inner.article-layout,
.section-graphite > .section-inner.article-layout {
  padding-top: clamp(52px, 6vw, 78px);
  padding-bottom: clamp(56px, 6vw, 84px);
}

.article-layout h2 {
  font-size: 2.45rem;
}

.article-layout .copy-stack {
  max-width: 820px;
  gap: 14px;
}

.article-layout .copy-stack ul,
.article-layout .copy-stack ol {
  padding-left: 1.18em;
}

.article-layout .copy-stack li {
  list-style-position: outside;
}

.article-list,
.article-steps,
.article-links {
  display: grid;
  gap: 12px;
}

.article-list li,
.article-step,
.article-links a {
  list-style: none;
  padding: 18px;
  border-radius: var(--radius);
  border: 1px solid var(--line-light);
  background: rgba(255, 255, 255, 0.42);
}

.section-graphite .article-list li,
.section-graphite .article-step,
.section-graphite .article-links a,
.section-dark .article-list li,
.section-dark .article-step,
.section-dark .article-links a {
  border-color: var(--line-dark);
  background: rgba(17, 16, 13, 0.28);
}

.article-list strong,
.article-step strong {
  display: block;
  margin-bottom: 6px;
}

.article-code {
  overflow-x: auto;
  padding: 18px;
  border-radius: var(--radius);
  border: 1px solid var(--line-dark);
  background: #0b0b09;
  color: var(--paper-2);
  font-family: "SFMono-Regular", Consolas, "Liberation Mono", monospace;
  font-size: 0.82rem;
  line-height: 1.65;
}

.article-table {
  display: grid;
  border: 1px solid var(--line-light);
  border-radius: var(--radius);
  overflow: hidden;
}

.article-row {
  display: grid;
  grid-template-columns: minmax(160px, 0.62fr) minmax(0, 1.38fr);
  border-bottom: 1px solid var(--line-light);
}

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

.article-row span,
.article-row p {
  padding: 16px;
}

.article-row span {
  font-weight: 800;
  background: rgba(23, 21, 18, 0.06);
}

.section-dark .article-table,
.section-graphite .article-table,
.section-dark .article-row,
.section-graphite .article-row {
  border-color: var(--line-dark);
}

.section-dark .article-row span,
.section-graphite .article-row span {
  background: rgba(243, 239, 228, 0.05);
}

.article-links {
  grid-template-columns: repeat(3, 1fr);
}

.article-links a {
  display: grid;
  gap: 8px;
  color: inherit;
}

.article-layout > h2 + .article-links {
  margin-top: clamp(22px, 3vw, 34px);
}

.article-links strong {
  color: inherit;
}

.article-cta {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 14px;
  margin-top: 24px;
}

.toc-layout {
  align-items: start;
}

.toc-layout h2 {
  max-width: 8.7em;
  font-size: clamp(2.35rem, 4.1vw, 3.6rem);
}

.toc-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0;
  border: 1px solid var(--line-light);
  border-radius: var(--radius);
  overflow: hidden;
  background: rgba(255, 255, 255, 0.32);
  counter-reset: toc;
}

.toc-list li {
  list-style: none;
  min-height: 54px;
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 14px;
  border-bottom: 1px solid var(--line-light);
  font-size: 0.92rem;
  transition:
    background-color 160ms ease,
    color 160ms ease;
}

.toc-list li:nth-child(odd) {
  border-right: 1px solid var(--line-light);
}

.toc-list li:nth-last-child(-n + 2) {
  border-bottom: 0;
}

.toc-list li::before {
  counter-increment: toc;
  content: counter(toc, decimal-leading-zero);
  color: var(--copper);
  font-family: "SFMono-Regular", Consolas, "Liberation Mono", monospace;
  font-size: 0.72rem;
}

.text-link {
  width: fit-content;
  margin-top: 28px;
  font-weight: 800;
  color: var(--ink);
  border-bottom: 1px solid currentColor;
  transition:
    transform 180ms ease,
    color 180ms ease,
    border-color 180ms ease;
}

.architecture-grid {
  position: relative;
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 12px;
  padding: clamp(20px, 4vw, 38px);
  border: 1px solid var(--line-dark);
  border-radius: var(--radius);
  background:
    linear-gradient(90deg, rgba(243, 239, 228, 0.04) 1px, transparent 1px),
    linear-gradient(rgba(243, 239, 228, 0.04) 1px, transparent 1px),
    rgba(17, 16, 13, 0.42);
  background-size: 42px 42px;
}

.arch-node {
  min-height: 74px;
  display: grid;
  place-items: center;
  padding: 12px;
  border: 1px solid rgba(243, 239, 228, 0.24);
  background: rgba(17, 16, 13, 0.78);
  border-radius: var(--radius);
  text-align: center;
  font-family: "SFMono-Regular", Consolas, "Liberation Mono", monospace;
  font-size: 0.78rem;
  transition:
    transform 180ms ease,
    border-color 180ms ease,
    background-color 180ms ease,
    box-shadow 180ms ease;
}

.owner {
  grid-column: 1 / span 2;
}

.gateway {
  grid-column: 3 / span 2;
  border-color: rgba(196, 130, 76, 0.68);
}

.ledger {
  grid-column: 5 / span 2;
}

.registry {
  grid-column: 1 / span 2;
}

.runtime {
  grid-column: 3 / span 2;
  border-color: rgba(77, 163, 255, 0.62);
}

.tools {
  grid-column: 5 / span 2;
}

.artifacts,
.review,
.audit,
.cost,
.queue {
  grid-column: span 1;
}

.queue {
  grid-column: span 2;
}

.layer-notes {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 10px;
  margin-top: 18px;
}

.layer-notes span {
  min-height: 58px;
  display: flex;
  align-items: center;
  padding: 12px;
  border: 1px solid var(--line-dark);
  border-radius: var(--radius);
  color: var(--paper-2);
  font-family: "SFMono-Regular", Consolas, "Liberation Mono", monospace;
  font-size: 0.69rem;
  transition:
    transform 180ms ease,
    border-color 180ms ease,
    background-color 180ms ease;
}

.comparison-table {
  border: 1px solid var(--line-light);
  border-radius: var(--radius);
  overflow: hidden;
  background: rgba(255, 255, 255, 0.32);
}

.comparison-table > div {
  display: grid;
  grid-template-columns: 1fr 1fr;
}

.comparison-table span {
  min-height: 54px;
  display: flex;
  align-items: center;
  padding: 12px 18px;
  border-bottom: 1px solid var(--line-light);
}

.comparison-table span:first-child {
  border-right: 1px solid var(--line-light);
}

.comparison-table > div:last-child span {
  border-bottom: 0;
}

.comparison-close {
  margin-top: 22px;
  color: rgba(23, 21, 18, 0.76);
  font-weight: 800;
}

.table-head {
  font-weight: 900;
  background: var(--charcoal);
  color: var(--paper);
}

.audience-grid {
  grid-template-columns: 1fr 1fr;
  grid-auto-rows: 1fr;
  align-items: stretch;
}

.audience-grid article,
.audience-detail {
  min-height: 100%;
}

.audience-grid ul {
  display: grid;
  gap: 12px;
  color: var(--paper-2);
}

.audience-detail {
  display: block;
  height: 100%;
}

.audience-detail > summary {
  display: none;
}

.audience-detail-body {
  display: grid;
  gap: 0;
}

.law-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
}

.law-grid span {
  min-height: 52px;
  display: flex;
  align-items: center;
  padding: 12px 14px;
  border: 1px solid var(--line-dark);
  border-radius: var(--radius);
  background: rgba(17, 16, 13, 0.28);
  color: var(--paper-2);
  font-family: "SFMono-Regular", Consolas, "Liberation Mono", monospace;
  font-size: 0.8rem;
}

.question-stack span {
  color: rgba(23, 21, 18, 0.82);
  background: rgba(255, 255, 255, 0.4);
  border-color: var(--line-light);
}

.roadmap {
  position: relative;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  align-items: stretch;
  grid-auto-rows: 1fr;
  gap: 14px;
}

.roadmap article {
  min-height: 100%;
  height: 100%;
}

.offer-grid {
  grid-template-columns: repeat(3, 1fr);
  grid-auto-rows: 1fr;
  align-items: stretch;
}

.offer-grid article {
  min-height: 100%;
  background: rgba(255, 255, 255, 0.38);
  border-color: var(--line-light);
}

.offer-grid p {
  color: rgba(23, 21, 18, 0.74);
}

.pricing-layout {
  align-items: start;
  grid-template-columns: minmax(0, 0.76fr) minmax(500px, 1fr);
}

.pricing-section h2,
.split-section h2,
.faq-layout h2 {
  font-size: clamp(2.2rem, 3.75vw, 3.9rem);
}

.pricing-card {
  scroll-margin-top: calc(var(--header-height) + 12px);
  padding: clamp(22px, 3vw, 30px);
  border: 1px solid rgba(243, 239, 228, 0.2);
  border-radius: var(--radius);
  background: rgba(17, 16, 13, 0.42);
  box-shadow: var(--shadow);
  transition:
    transform 260ms var(--hover-ease),
    border-color 260ms ease,
    background-color 260ms ease,
    box-shadow 260ms ease;
}

.price-line {
  display: flex;
  align-items: end;
  gap: 16px;
  margin-bottom: 12px;
}

.price-line strong {
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(3.8rem, 7vw, 5.8rem);
  line-height: 0.9;
}

.price-line span,
.list-value,
.pricing-note,
.compliance {
  color: var(--paper-2);
}

.list-value {
  margin-bottom: 18px;
  font-family: "SFMono-Regular", Consolas, "Liberation Mono", monospace;
  font-size: 0.85rem;
}

.pricing-card ul {
  display: grid;
  gap: 8px;
  margin-bottom: 20px;
}

.pricing-quick-cta {
  display: none;
}

.pricing-trust {
  max-width: none;
  margin: -8px 0 18px;
}

.pricing-trust span {
  background: rgba(243, 239, 228, 0.06);
}

.pricing-note {
  margin-top: 14px;
  text-align: center;
}

.compliance {
  margin-top: 18px;
  font-size: 0.82rem;
}

.faq-layout {
  grid-template-columns: minmax(0, 0.65fr) minmax(0, 1.35fr);
}

.faq-list {
  display: grid;
  gap: 10px;
}

details {
  border: 1px solid var(--line-dark);
  border-radius: var(--radius);
  background: rgba(17, 16, 13, 0.36);
  transition:
    transform 240ms var(--hover-ease),
    border-color 220ms ease,
    background-color 220ms ease,
    box-shadow 220ms ease;
}

summary {
  min-height: 58px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 0 18px;
  cursor: pointer;
  font-weight: 800;
}

summary::-webkit-details-marker {
  display: none;
}

summary::after {
  content: "";
  flex: 0 0 auto;
  width: 10px;
  height: 10px;
  border-right: 2px solid currentColor;
  border-bottom: 2px solid currentColor;
  transform: rotate(45deg) translateY(-2px);
  transition: transform 160ms ease;
}

details[open] summary::after {
  transform: rotate(225deg) translateY(-2px);
}

details p {
  padding: 0 18px 20px;
}

.final-layout {
  max-width: 850px;
  text-align: center;
}

.final-layout h1 + p,
.final-layout h2 + p {
  margin-top: 24px;
  font-size: clamp(1.08rem, 1.5vw, 1.28rem);
  color: rgba(23, 21, 18, 0.76);
}

.final-layout .button {
  margin-top: 34px;
  background: var(--charcoal);
  color: var(--paper);
  border-color: var(--charcoal);
}

.final-layout .microcopy {
  margin-left: auto;
  margin-right: auto;
  color: rgba(23, 21, 18, 0.62);
}

.standalone-body {
  min-height: 100svh;
  display: flex;
  flex-direction: column;
}

.standalone-body main {
  flex: 1;
}

.utility-layout {
  max-width: 760px;
}

.utility-layout h1,
.utility-layout p {
  max-width: 720px;
}

.site-footer {
  background: var(--charcoal);
  color: var(--muted);
  border-top: 1px solid var(--line-dark);
}

.footer-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) auto auto;
  gap: 34px;
  align-items: start;
  padding-top: 42px;
  padding-bottom: 42px;
}

.site-footer strong {
  color: var(--paper);
}

.site-footer p {
  max-width: 560px;
  margin-top: 10px;
}

.site-footer nav {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
}

.site-footer span {
  font-family: "SFMono-Regular", Consolas, "Liberation Mono", monospace;
  color: var(--paper-2);
}

@media (hover: hover) and (pointer: fine) {
  .button:hover,
  .text-link:hover {
    transform: translateY(-2px);
  }

  .button:hover::after,
  .nav-cta:hover::after {
    opacity: 1;
    transform: translateX(305%) skewX(-12deg);
  }

  .button-primary:hover {
    background: #fffaf0;
    border-color: #fffaf0;
    box-shadow:
      0 15px 34px rgba(243, 239, 228, 0.16),
      0 4px 0 rgba(77, 163, 255, 0.42);
  }

  .nav-cta:hover,
  .button-secondary:hover {
    background-position: 100% 0;
    border-color: rgba(77, 163, 255, 0.66);
  }

  .nav-cta:hover {
    box-shadow: none;
  }

  .button-secondary:hover {
    box-shadow: 0 12px 26px rgba(77, 163, 255, 0.14);
  }

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

  .button:active,
  .nav-cta:active {
    transform: translateY(0) scale(0.985);
  }

  .final-layout .button:hover {
    background: #24221e;
    border-color: #24221e;
    box-shadow: var(--hover-shadow-soft);
  }

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

  .manual-cover:hover,
  .pricing-card:hover {
    transform: translateY(-5px) scale(1.006);
    border-color: rgba(77, 163, 255, 0.44);
    box-shadow: 0 34px 92px rgba(0, 0, 0, 0.38);
  }

  .manual-cover:hover img {
    transform: scale(1.025);
    opacity: 0.96;
  }

  .module-grid article:hover,
  .roadmap article:hover,
  .six-layer-grid article:hover,
  .artifact-preview-grid article:hover,
  .audience-grid article:hover,
  .audience-detail:hover,
  details:hover {
    transform: translateY(-4px) scale(1.008);
    border-color: rgba(77, 163, 255, 0.34);
    background: rgba(17, 16, 13, 0.32);
    box-shadow: var(--hover-shadow);
  }

  .offer-grid article:hover,
  .separation-diagram article:hover,
  .question-stack span:hover {
    transform: translateY(-4px) scale(1.006);
    border-color: rgba(196, 130, 76, 0.34);
    background: rgba(255, 255, 255, 0.54);
    box-shadow: var(--hover-shadow-soft);
  }

  .system-strip span:hover,
  .arch-node:hover,
  .layer-notes span:hover,
  .failure-list li:hover {
    transform: translateY(-2px);
    border-color: rgba(77, 163, 255, 0.42);
    background-color: rgba(77, 163, 255, 0.1);
  }

  .flow-line:hover {
    transform: translateY(-2px);
    border-color: rgba(77, 163, 255, 0.5);
    background: #171b1d;
    box-shadow: var(--hover-shadow-soft);
  }

  .break-grid span:hover,
  .definition-list span:hover,
  .definition-list strong:hover {
    transform: translateY(-2px);
    border-color: rgba(77, 163, 255, 0.36);
    background-color: rgba(77, 163, 255, 0.12);
    box-shadow: var(--hover-shadow-soft);
  }

  .toc-list li:hover {
    background: rgba(196, 130, 76, 0.1);
    color: var(--ink);
  }
}

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

@media (max-width: 980px) {
  .nav-links {
    display: none;
  }

  .hero-grid,
  .split-layout,
  .newsletter-layout,
  .two-column,
  .pricing-layout,
  .faq-layout,
  .toc-layout,
  .record-layout {
    grid-template-columns: 1fr;
  }

  .hero-visual {
    max-width: 520px;
  }

  .break-grid,
  .law-grid,
  .module-grid,
  .offer-grid,
  .resource-grid,
  .six-layer-grid,
  .artifact-preview-grid,
  .roadmap,
  .article-links,
  .layer-notes {
    grid-template-columns: repeat(2, 1fr);
  }

  .separation-diagram {
    grid-template-columns: 1fr;
  }

  .diagram-core {
    min-height: 120px;
  }

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

  .arch-node,
  .owner,
  .gateway,
  .ledger,
  .registry,
  .runtime,
  .tools,
  .artifacts,
  .review,
  .audit,
  .cost,
  .queue {
    grid-column: auto;
  }

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

@media (min-width: 981px) and (max-height: 760px) {
  .hero .section-inner {
    padding-top: clamp(22px, 4vh, 30px);
    padding-bottom: 20px;
  }

  h1 {
    font-size: clamp(2.7rem, 4vw, 4rem);
  }

  .hero-subhead {
    margin-top: 16px;
  }

  .manual-cover {
    min-height: clamp(280px, 54svh, 360px);
  }

  .cover-text {
    inset: auto 24px 24px 24px;
    gap: 10px;
  }

  .cover-text strong {
    font-size: clamp(1.95rem, 3vw, 2.8rem);
  }
}

@media (min-width: 681px) and (max-width: 980px) and (max-height: 520px) {
  .announcement {
    display: none;
  }

  .nav-shell {
    padding-top: 10px;
    padding-bottom: 10px;
  }

  .hero .section-inner {
    padding-top: 18px;
    padding-bottom: 10px;
  }

  .hero-grid {
    min-height: 0;
    gap: 0;
  }

  .hero-visual,
  .hero .microcopy {
    display: none;
  }

  .eyebrow,
  .section-label {
    margin-bottom: 8px;
    font-size: 0.68rem;
  }

  h1 {
    max-width: 900px;
    font-size: clamp(2.25rem, 5vw, 2.75rem);
  }

  .hero-subhead {
    max-width: 790px;
    margin-top: 10px;
    font-size: 0.88rem;
    line-height: 1.2;
  }

  .cta-row {
    margin-top: 12px;
  }

  .button {
    min-height: 42px;
  }
}

@media (max-width: 680px) {
  :root {
    --header-height: 64px;
    --gutter: clamp(16px, 4vw, 22px);
    --section-y: 38px;
  }

  .announcement {
    display: none;
  }

  .nav-shell {
    gap: 8px;
    padding-top: 10px;
    padding-bottom: 10px;
  }

  .brand {
    min-height: 40px;
    gap: 8px;
    font-size: 0.78rem;
  }

  .brand-logo {
    width: 28px;
    height: 28px;
  }

  .nav-cta {
    min-height: 40px;
    gap: 7px;
    padding: 0 10px;
    flex: 0 0 auto;
  }

  .nav-cta span,
  .button span {
    font-size: 0.75rem;
  }

  .nav-cta-full,
  .cta-label-full {
    display: none;
  }

  .nav-cta-short,
  .cta-label-short {
    display: inline;
  }

  .nav-cta svg,
  .button svg {
    width: 16px;
    height: 16px;
  }

  .hero .section-inner {
    padding-top: 24px;
    padding-bottom: 24px;
  }

  .eyebrow,
  .section-label {
    margin-bottom: 10px;
    font-size: 0.68rem;
    line-height: 1.25;
  }

  h1 {
    font-size: 2.45rem;
    line-height: 1.1;
  }

  h2 {
    font-size: 2rem;
    line-height: 1.12;
  }

  blockquote {
    line-height: 1.06;
  }

  .hero-kicker {
    margin-top: 10px;
    font-size: 1.24rem;
    line-height: 1.1;
  }

  .hero-subhead {
    order: 4;
    margin-top: 12px;
    font-size: 0.9rem;
    line-height: 1.36;
  }

  .support-line {
    order: 5;
    margin-top: 10px;
    font-size: 0.86rem;
    line-height: 1.34;
  }

  .deliverable-snapshot {
    display: none;
    order: 9;
    margin-top: 12px;
    padding: 12px 0;
  }

  .deliverable-snapshot > span {
    font-size: 0.66rem;
  }

  .deliverable-snapshot ul {
    grid-template-columns: 1fr;
    gap: 6px;
    margin-top: 8px;
  }

  .deliverable-snapshot li {
    font-size: 0.82rem;
    line-height: 1.3;
  }

  .cta-row {
    order: 3;
    display: grid;
    gap: 10px;
    margin-top: 14px;
  }

  .button {
    width: 100%;
    justify-content: center;
    min-height: 48px;
    padding: 0 15px;
  }

  .conversion-bar {
    left: 10px;
    right: 10px;
    bottom: 10px;
    width: auto;
    min-height: 0;
    display: grid;
    grid-template-columns: 1fr;
    gap: 9px;
    padding: 11px;
    transform: none;
  }

  .conversion-bar-copy strong {
    font-size: 0.86rem;
  }

  .conversion-bar-cta {
    width: 100%;
    min-height: 42px;
  }

  .hero .button-secondary {
    width: 100%;
    min-height: 44px;
    justify-self: stretch;
    padding: 0 15px;
  }

  .trust-strip {
    order: 6;
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 6px;
    margin-top: 10px;
  }

  .trust-strip span {
    min-height: 24px;
    padding: 4px 7px;
    font-size: 0.62rem;
    line-height: 1.2;
  }

  .hero-proof-strip {
    display: none;
    order: 7;
    grid-template-columns: 1fr;
    gap: 6px;
    margin-top: 10px;
  }

  .hero-proof-strip article {
    display: grid;
    grid-template-columns: auto minmax(0, 1fr);
    column-gap: 10px;
    row-gap: 4px;
    padding: 10px 12px;
  }

  .hero-proof-strip span {
    align-self: start;
    font-size: 0.62rem;
  }

  .hero-proof-strip strong {
    margin-top: 0;
    font-size: 0.84rem;
  }

  .hero-proof-strip p {
    grid-column: 1 / -1;
    margin-top: 0;
    font-size: 0.78rem;
  }

  .pricing-trust {
    grid-template-columns: 1fr;
    margin: -4px 0 14px;
  }

  .section-cta {
    display: grid;
    gap: 14px;
    margin-top: 20px;
    padding-top: 20px;
  }

  .section-cta p {
    font-size: 0.95rem;
    line-height: 1.42;
  }

  .provenance-section .section-inner,
  .compact-middle-section .section-inner {
    padding-top: 34px;
    padding-bottom: 34px;
  }

  .operator-proof-layout {
    grid-template-columns: 1fr;
    gap: 18px;
  }

  .operator-note p:not(.section-label) {
    margin-top: 14px;
    font-size: 0.95rem;
    line-height: 1.42;
  }

  .proof-note {
    padding: 16px;
  }

  .proof-note p {
    font-size: 0.94rem;
    line-height: 1.42;
  }

  .proof-signals {
    grid-template-columns: 1fr;
    gap: 6px;
  }

  .proof-signals span {
    min-height: 34px;
  }

  .compact-middle-section .section-heading {
    margin-bottom: 16px;
  }

  .compact-accordion {
    gap: 8px;
  }

  .compact-detail summary {
    grid-template-columns: minmax(0, 1fr) auto;
    gap: 8px 12px;
    padding: 14px;
  }

  .compact-detail summary span,
  .compact-detail summary strong {
    grid-column: 1;
  }

  .compact-detail summary::after {
    grid-column: 2;
    grid-row: 1 / span 2;
  }

  .compact-detail-body {
    padding: 0 14px 14px;
  }

  .compact-detail-body p {
    font-size: 0.93rem;
    line-height: 1.42;
  }

  .compact-chip-grid,
  .compact-six,
  .compact-law,
  .compact-two {
    grid-template-columns: 1fr;
  }

  .compact-chip-grid span,
  .compact-two article,
  .compact-flow {
    min-height: auto;
    padding: 10px 12px;
  }

  .compact-detail-cta {
    display: grid;
    gap: 10px;
    padding: 12px;
  }

  .compact-detail-cta .button {
    width: 100%;
    min-height: 44px;
  }

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

  .section-heading h2 + p,
  .section-heading p + p {
    margin-top: 14px;
    font-size: 0.95rem;
    line-height: 1.42;
  }

  .copy-stack {
    gap: 8px;
    font-size: 0.98rem;
    line-height: 1.42;
  }

  .hero {
    position: relative;
    overflow: hidden;
  }

  .hero-grid {
    position: relative;
    min-height: auto;
    align-items: center;
    gap: 20px;
  }

  .hero-copy {
    position: relative;
    z-index: 1;
    display: flex;
    flex-direction: column;
  }

  .hero .microcopy {
    display: none;
  }

  .hero-visual {
    display: none;
  }

  .hero-visual .manual-cover {
    min-height: 250px;
  }

  .text-link,
  .guarantee-section .copy-stack a,
  .site-footer nav a {
    display: inline-flex;
    min-height: 44px;
    align-items: center;
  }

  .hero-visual .chip-list {
    display: none;
  }

  .hero-copy .chip-list {
    display: none;
  }

  .chip-list {
    display: flex;
    gap: 8px;
  }

  .chip-list li {
    flex: 1 1 calc(50% - 8px);
    justify-content: center;
    text-align: center;
  }

  .newsletter-layout {
    gap: 22px;
  }

  .newsletter-form {
    padding: 18px 16px;
    box-shadow: none;
  }

  .newsletter-copy h2 {
    font-size: 2.2rem;
  }

  .manual-cover {
    min-height: 430px;
  }

  .cover-text {
    inset: auto 24px 28px 24px;
  }

  .system-strip,
  .module-grid,
  .offer-grid,
  .resource-grid,
  .six-layer-grid,
  .artifact-preview-grid,
  .roadmap,
  .article-links,
  .audience-grid,
  .layer-notes,
  .toc-list {
    grid-template-columns: 1fr;
  }

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

  .module-grid article,
  .offer-grid article,
  .resource-card,
  .roadmap article,
  .six-layer-grid article,
  .artifact-preview-grid article,
  .audience-grid article,
  .audience-detail,
  .article-step {
    min-height: auto;
    padding: 14px 15px;
  }

  .module-grid,
  .offer-grid,
  .resource-grid,
  .six-layer-grid,
  .artifact-preview-grid,
  .roadmap,
  .audience-grid,
  .faq-list,
  .failure-list {
    gap: 8px;
  }

  .module-grid,
  .offer-grid,
  .resource-grid,
  .six-layer-grid,
  .artifact-preview-grid,
  .roadmap,
  .audience-grid {
    grid-auto-rows: auto;
    align-items: stretch;
  }

  .mobile-detail-container {
    display: block;
    border: 0;
    background: transparent;
  }

  .audience-detail {
    padding: 0;
    min-height: 0;
    height: auto;
    box-shadow: none;
  }

  .mobile-detail-container > summary {
    min-height: 52px;
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(64px, max-content) auto;
    align-items: center;
    gap: 8px;
    margin-bottom: 8px;
    padding: 0 14px;
    border: 1px solid var(--line-dark);
    border-radius: var(--radius);
    background: rgba(17, 16, 13, 0.34);
  }

  .mobile-detail-container > summary span {
    min-width: 0;
    color: var(--paper);
  }

  .mobile-detail-container > summary strong {
    justify-self: end;
    min-width: 64px;
    text-align: right;
    white-space: nowrap;
    color: var(--copper);
    font-family: "SFMono-Regular", Consolas, "Liberation Mono", monospace;
    font-size: 0.7rem;
    text-transform: uppercase;
  }

  .mobile-detail-container[open] > summary {
    border-color: rgba(77, 163, 255, 0.32);
    background: rgba(77, 163, 255, 0.08);
  }

  .mobile-detail-container[open] > summary + .module-grid,
  .mobile-detail-container[open] > summary + .artifact-preview-grid,
  .mobile-detail-container[open] > summary + .audience-detail-body {
    margin-top: 8px;
  }

  .audience-detail-body {
    padding: 14px 15px;
    border: 1px solid var(--line-dark);
    border-radius: var(--radius);
    background: rgba(17, 16, 13, 0.23);
  }

  .audience-detail-body h3 {
    display: none;
  }

  .mobile-detail-container > summary::after {
    width: 9px;
    height: 9px;
  }

  .mobile-detail-container:not([open]) > summary {
    margin-bottom: 0;
    border-color: rgba(196, 130, 76, 0.28);
  }

  .module-grid article,
  .resource-card,
  .roadmap article,
  .six-layer-grid article,
  .artifact-preview-grid article {
    display: grid;
    grid-template-columns: auto minmax(0, 1fr);
    column-gap: 10px;
    row-gap: 5px;
  }

  .module-grid h3,
  .offer-grid h3,
  .resource-card h3,
  .audience-grid h3,
  .roadmap h3,
  .six-layer-grid h3,
  .artifact-preview-grid h3 {
    margin-bottom: 6px;
  }

  .module-grid article h3,
  .resource-card h3,
  .roadmap h3,
  .six-layer-grid h3,
  .artifact-preview-grid h3 {
    margin-bottom: 0;
  }

  .article-layout h2 {
    font-size: 2rem;
  }

  .article-row {
    grid-template-columns: 1fr;
  }

  .module-grid span,
  .roadmap span,
  .six-layer-grid span,
  .artifact-preview-grid span,
  .pricing-name {
    margin-bottom: 8px;
  }

  .module-grid article span,
  .resource-card span,
  .roadmap span,
  .six-layer-grid span,
  .artifact-preview-grid span {
    margin-bottom: 0;
  }

  .module-grid article p,
  .resource-card p,
  .roadmap p,
  .six-layer-grid p,
  .artifact-preview-grid p {
    grid-column: 1 / -1;
  }

  .module-grid p,
  .offer-grid p,
  .resource-card p,
  .roadmap p,
  .six-layer-grid p,
  .artifact-preview-grid p {
    font-size: 0.9rem;
    line-height: 1.35;
  }

  .break-grid span,
  .definition-list span,
  .definition-list strong,
  .question-stack span {
    min-height: auto;
    padding: 11px 12px;
    font-size: 0.88rem;
    line-height: 1.35;
  }

  .failure-list li {
    min-height: auto;
    align-items: flex-start;
    gap: 10px;
    padding: 10px 12px;
    line-height: 1.35;
  }

  .law-grid span,
  .layer-notes span {
    min-height: auto;
    padding: 10px 11px;
    font-size: 0.74rem;
    line-height: 1.3;
  }

  .flow-line {
    padding: 14px;
  }

  .flow-line span {
    min-height: 28px;
  }

  .toc-list li {
    min-height: 48px;
    padding: 11px 13px;
  }

  .arch-node {
    min-height: 58px;
  }

  .toc-list li:nth-child(odd) {
    border-right: 0;
  }

  .toc-list li:nth-last-child(2) {
    border-bottom: 1px solid var(--line-light);
  }

  .comparison-table > div {
    grid-template-columns: minmax(0, 0.82fr) minmax(0, 1.18fr);
  }

  .comparison-table span {
    align-items: flex-start;
    min-height: auto;
    padding: 10px 12px;
    font-size: 0.86rem;
    line-height: 1.35;
  }

  .comparison-table span:first-child {
    border-right: 1px solid var(--line-light);
    background: rgba(23, 21, 18, 0.05);
  }

  .price-line {
    display: block;
  }

  .pricing-card {
    padding: 18px 16px;
    box-shadow: none;
  }

  .price-line strong {
    font-size: clamp(3.2rem, 15vw, 4.2rem);
  }

  .list-value {
    margin-bottom: 10px;
  }

  .pricing-quick-cta {
    display: flex;
    margin-bottom: 18px;
  }

  .pricing-card ul {
    gap: 8px;
    margin-bottom: 18px;
  }

  .pricing-card li,
  .audience-grid li {
    line-height: 1.35;
  }

  summary {
    min-height: 48px;
    gap: 12px;
    padding: 0 14px;
    line-height: 1.25;
  }

  details p {
    padding: 0 14px 14px;
    line-height: 1.35;
  }

  .compliance {
    margin-top: 14px;
    font-size: 0.75rem;
    line-height: 1.38;
  }
}

@media (max-width: 340px) {
  .announcement {
    min-height: 30px;
    padding-top: 5px;
    padding-bottom: 5px;
    font-size: 0.62rem;
  }

  .nav-shell {
    gap: 7px;
    padding-top: 9px;
    padding-bottom: 9px;
  }

  .brand {
    font-size: 0.74rem;
  }

  .nav-cta {
    min-height: 38px;
    padding: 0 8px;
  }

  .hero .section-inner {
    padding-top: 18px;
    padding-bottom: 18px;
  }

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

  .eyebrow,
  .section-label {
    margin-bottom: 12px;
    font-size: 0.68rem;
  }

  h1 {
    font-size: 2rem;
    line-height: 1.1;
  }

  h2 {
    font-size: 1.78rem;
  }

  .hero-kicker {
    font-size: 1.05rem;
  }

  .hero-subhead {
    margin-top: 10px;
    font-size: 0.84rem;
    line-height: 1.3;
  }

  .support-line {
    display: none;
  }

  .cta-row {
    margin-top: 12px;
  }

  .button {
    min-height: 46px;
  }

  .conversion-bar-copy strong {
    display: none;
  }

  .hero .button-secondary {
    display: none;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition: none !important;
  }
}

/* Founding counter funnel refresh. Keeps the existing digitalinfra.pro visual system. */
:root {
  --header-height: 72px;
  --section-y: clamp(58px, 7vw, 96px);
}

.site-header {
  min-height: var(--header-height);
}

.site-header .nav-shell {
  min-height: var(--header-height);
}

.hero .section-inner.hero-grid {
  padding-top: clamp(48px, 6vw, 72px);
  padding-bottom: clamp(26px, 4vw, 40px);
}

.hero-grid {
  grid-template-columns: minmax(0, 0.95fr) minmax(360px, 0.72fr);
  align-items: stretch;
}

.hero-copy {
  display: grid;
  align-content: start;
}

.hero-copy h1 {
  max-width: 820px;
}

.hero-subhead {
  max-width: 800px;
  color: var(--paper);
  font-size: clamp(1.1rem, 1.65vw, 1.34rem);
  line-height: 1.42;
}

.support-line {
  color: var(--paper-2);
  font-size: clamp(0.98rem, 1.18vw, 1.08rem);
}

.proof-chips {
  display: none;
  flex-wrap: wrap;
  gap: 9px;
  margin-top: 24px;
}

.proof-chips li {
  min-height: 34px;
  display: inline-flex;
  align-items: center;
  padding: 0 11px;
  border: 1px solid var(--line-dark);
  border-radius: var(--radius);
  background: rgba(243, 239, 228, 0.04);
  color: var(--paper-2);
  font-family: "SFMono-Regular", Consolas, "Liberation Mono", monospace;
  font-size: 0.72rem;
  list-style: none;
}

.launch-panel {
  display: grid;
  gap: 14px;
  align-content: start;
}

.counter-card,
.claim-form,
.pricing-card,
.review-form {
  border: 1px solid rgba(243, 239, 228, 0.18);
  border-radius: var(--radius);
  background: rgba(243, 239, 228, 0.045);
  box-shadow: var(--shadow);
}

.counter-card,
.claim-form {
  padding: clamp(20px, 3vw, 28px);
}

.counter-card h2 {
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(1.55rem, 2.3vw, 2.2rem);
}

.counter-card p,
.claim-form > p {
  margin-top: 12px;
  color: var(--paper-2);
  font-size: 0.94rem;
}

.counter-readout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  margin-top: 20px;
}

.counter-readout div,
.small-counter {
  min-height: 116px;
  display: grid;
  place-items: center;
  align-content: center;
  padding: 16px;
  border: 1px solid var(--line-dark);
  border-radius: var(--radius);
  background: rgba(17, 16, 13, 0.4);
  text-align: center;
}

.counter-readout strong,
.small-counter strong {
  color: var(--blue);
  font-family: "SFMono-Regular", Consolas, "Liberation Mono", monospace;
  font-size: clamp(2rem, 4vw, 3.2rem);
  line-height: 1;
}

.counter-readout div:last-child strong {
  color: var(--copper);
}

.counter-readout span,
.small-counter span {
  color: var(--muted);
  font-size: 0.86rem;
}

.honesty-line {
  min-height: 22px;
}

.counter-note {
  color: var(--muted);
  font-family: "SFMono-Regular", Consolas, "Liberation Mono", monospace;
  font-size: 0.72rem;
}

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

.claim-form .form-grid > div:first-child,
.form-wide {
  grid-column: 1 / -1;
}

.claim-form label,
.review-form label,
.newsletter-form label {
  display: flex;
  justify-content: space-between;
  gap: 10px;
  margin-bottom: 7px;
  color: inherit;
  font-size: 0.78rem;
  font-weight: 800;
  text-transform: uppercase;
}

.claim-form label span,
.review-form label span,
.newsletter-form label span {
  color: currentColor;
  opacity: 0.58;
  text-transform: none;
}

.claim-form input,
.review-form input,
.review-form textarea,
.review-form select,
.newsletter-form input {
  width: 100%;
  min-height: 48px;
  padding: 0 13px;
  border: 1px solid rgba(23, 21, 18, 0.18);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.92);
  color: var(--ink);
  outline: none;
}

.claim-form input:focus,
.review-form input:focus,
.review-form textarea:focus,
.review-form select:focus,
.newsletter-form input:focus {
  border-color: rgba(77, 163, 255, 0.72);
  box-shadow: 0 0 0 3px rgba(77, 163, 255, 0.16);
}

.review-form textarea {
  min-height: 96px;
  padding-top: 12px;
  resize: vertical;
}

.review-form select {
  appearance: none;
}

.claim-form .button,
.review-form .button {
  margin-top: 14px;
  justify-content: center;
}

.form-status,
.newsletter-status {
  min-height: 23px;
  margin-top: 12px;
  color: var(--muted);
  font-size: 0.88rem;
  text-align: center;
}

.section-paper .form-status,
.section-paper .newsletter-status {
  color: rgba(23, 21, 18, 0.62);
}

.form-status[data-state="success"],
.newsletter-status[data-state="success"] {
  color: var(--green);
  font-weight: 800;
}

.section-paper .form-status[data-state="success"],
.section-paper .newsletter-status[data-state="success"] {
  color: #245e37;
}

.form-status[data-state="error"],
.newsletter-status[data-state="error"] {
  color: #d37d70;
  font-weight: 800;
}

.section-paper .form-status[data-state="error"],
.section-paper .newsletter-status[data-state="error"] {
  color: #8a2f2f;
}

.form-status[data-state="pending"],
.newsletter-status[data-state="pending"] {
  color: var(--paper-2);
}

.form-honeypot {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

.artifact-strip-shell {
  padding-top: 0;
}

.artifact-strip-title {
  color: var(--paper-2);
  font-family: "SFMono-Regular", Consolas, "Liberation Mono", monospace;
  font-size: 0.78rem;
}

.artifact-strip {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 10px;
  margin-top: 14px;
}

.artifact-strip article {
  min-height: 172px;
  padding: 16px;
  border: 1px solid var(--line-dark);
  border-radius: var(--radius);
  background: rgba(17, 16, 13, 0.35);
}

.artifact-strip span,
.artifact-preview-grid span,
.kit-list span,
.roadmap span,
.pricing-card > span {
  display: block;
  color: var(--copper);
  font-family: "SFMono-Regular", Consolas, "Liberation Mono", monospace;
  font-size: 0.72rem;
  text-transform: uppercase;
}

.artifact-strip strong {
  display: block;
  margin-top: 12px;
  color: var(--paper);
  line-height: 1.25;
}

.artifact-strip p {
  margin-top: 8px;
  color: var(--paper-2);
  font-size: 0.84rem;
  line-height: 1.3;
}

.artifacts-section .artifact-preview-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.section-paper .artifact-preview-grid article,
.section-paper .roadmap article {
  border-color: var(--line-light);
  background: rgba(255, 255, 255, 0.5);
}

.section-paper .artifact-preview-grid p,
.section-paper .roadmap p {
  color: rgba(23, 21, 18, 0.74);
}

.section-paper .section-cta {
  border-top-color: var(--line-light);
}

.loop-line {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 10px;
}

.loop-line span {
  min-height: 58px;
  display: flex;
  align-items: center;
  padding: 12px;
  border: 1px solid var(--line-dark);
  border-radius: var(--radius);
  background: rgba(243, 239, 228, 0.045);
  color: var(--paper-2);
  font-family: "SFMono-Regular", Consolas, "Liberation Mono", monospace;
  font-size: 0.74rem;
}

.operating-law {
  display: grid;
  gap: 10px;
  margin-top: 24px;
  padding: clamp(22px, 3vw, 32px);
  border: 1px solid rgba(196, 130, 76, 0.34);
  border-radius: var(--radius);
  background: rgba(196, 130, 76, 0.09);
}

.operating-law strong {
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(1.65rem, 3vw, 2.8rem);
  line-height: 1.05;
}

.operating-law p {
  max-width: 900px;
  color: var(--paper-2);
}

.alt-table {
  display: grid;
  border: 1px solid var(--line-light);
  border-radius: var(--radius);
  overflow: hidden;
  background: rgba(255, 255, 255, 0.4);
}

.alt-row {
  display: grid;
  grid-template-columns: 0.82fr 0.88fr 1.32fr 0.98fr;
  border-bottom: 1px solid var(--line-light);
}

.alt-row:last-child {
  border-bottom: 0;
}

.alt-row span {
  padding: 16px;
  border-right: 1px solid var(--line-light);
  color: rgba(23, 21, 18, 0.76);
  font-size: 0.92rem;
}

.alt-row span:last-child {
  border-right: 0;
}

.alt-head span {
  background: rgba(23, 21, 18, 0.06);
  color: var(--ink);
  font-weight: 800;
}

.kit-layout,
.offer-layout,
.review-layout,
.newsletter-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.82fr) minmax(360px, 1fr);
  gap: clamp(28px, 5vw, 64px);
  align-items: start;
}

.kit-layout p,
.offer-layout p,
.review-layout p,
.newsletter-layout p {
  margin-top: 18px;
  color: var(--paper-2);
  font-size: clamp(1.02rem, 1.35vw, 1.16rem);
}

.section-paper .review-layout p,
.section-paper .newsletter-layout p {
  color: rgba(23, 21, 18, 0.74);
}

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

.kit-list span {
  min-height: 48px;
  display: flex;
  align-items: center;
  padding: 12px;
  border: 1px solid var(--line-dark);
  border-radius: var(--radius);
  background: rgba(243, 239, 228, 0.045);
  color: var(--paper-2);
  text-transform: none;
}

.offer-layout {
  align-items: center;
}

.risk-clarity {
  max-width: 760px;
  color: var(--muted) !important;
  font-size: 0.94rem !important;
}

.pricing-card {
  display: grid;
  gap: 18px;
  padding: clamp(22px, 3vw, 32px);
}

.pricing-card > strong {
  color: var(--paper);
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(2rem, 3.6vw, 3.4rem);
  line-height: 1;
}

.pricing-card ul {
  display: grid;
  gap: 9px;
  margin: 0;
}

.pricing-card li {
  color: var(--paper-2);
}

.review-form {
  position: relative;
  padding: clamp(20px, 3vw, 28px);
  border-color: var(--line-light);
  background: rgba(255, 255, 255, 0.5);
  box-shadow: var(--hover-shadow-soft);
}

.small-counter {
  width: min(100%, 360px);
  margin-top: 24px;
  background: rgba(23, 21, 18, 0.06);
  border-color: var(--line-light);
}

.small-counter strong {
  color: var(--blue);
  font-size: clamp(1.5rem, 3vw, 2.35rem);
}

.newsletter-form {
  position: relative;
}

.faq-layout {
  align-items: start;
}

@media (max-width: 1120px) {
  .nav-links {
    gap: 14px;
    font-size: 0.82rem;
  }

  .artifact-strip,
  .artifacts-section .artifact-preview-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .artifact-strip article:last-child {
    grid-column: 1 / -1;
  }

  .alt-row {
    grid-template-columns: 1fr 1fr;
  }

  .alt-head {
    display: none;
  }

  .alt-row span {
    min-height: 72px;
  }
}

@media (max-width: 980px) {
  .hero-grid,
  .kit-layout,
  .offer-layout,
  .review-layout,
  .newsletter-layout,
  .faq-layout {
    grid-template-columns: 1fr;
  }

  .launch-panel {
    max-width: 760px;
  }

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

@media (max-width: 760px) {
  :root {
    --header-height: 64px;
  }

  .nav-shell {
    flex-wrap: wrap;
  }

  .nav-links {
    order: 3;
    width: 100%;
    overflow-x: auto;
    padding-bottom: 2px;
  }

  .hero .section-inner.hero-grid {
    padding-top: 26px;
  }

  .hero-copy h1 {
    order: 1;
    font-size: clamp(2.05rem, 10vw, 2.45rem);
    line-height: 1.06;
  }

  .hero-subhead {
    order: 2;
    margin-top: 16px;
    font-size: 0.94rem;
    line-height: 1.34;
  }

  .support-line {
    order: 3;
    margin-top: 12px;
    font-size: 0.86rem;
    line-height: 1.34;
  }

  .cta-row {
    order: 4;
    margin-top: 16px;
  }

  .proof-chips {
    order: 5;
    margin-top: 14px;
    flex-wrap: nowrap;
    overflow-x: auto;
    padding-bottom: 2px;
  }

  .proof-chips li {
    flex: 0 0 auto;
  }

  .counter-readout,
  .form-grid,
  .kit-list,
  .loop-line,
  .alt-row {
    grid-template-columns: 1fr;
  }

  .artifact-strip,
  .artifacts-section .artifact-preview-grid {
    grid-template-columns: 1fr;
  }

  .artifact-strip article:last-child {
    grid-column: auto;
  }

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

  .button,
  .nav-cta {
    justify-content: center;
  }

  .alt-row span {
    border-right: 0;
    border-bottom: 1px solid var(--line-light);
  }

  .alt-row span:last-child {
    border-bottom: 0;
  }
}

/* Conversion-oriented hybrid palette. */
:root {
  color-scheme: light;
  --bg-page: #F7F8FB;
  --bg-card: #FFFFFF;
  --bg-hero: #0B1020;
  --bg-dark: #111827;
  --bg-dark-elevated: #172033;
  --bg-artifact: #0F172A;
  --bg-band: #EEF2F7;
  --bg-band-strong: #E6EDF6;
  --text-primary: #111827;
  --text-secondary: #4B5563;
  --text-muted: #6B7280;
  --text-inverse: #F8FAFC;
  --text-inverse-muted: #CBD5E1;
  --border-light: #E5E7EB;
  --border-dark: #273244;
  --border-light-soft: rgba(17, 24, 39, 0.085);
  --border-dark-soft: rgba(203, 213, 225, 0.13);
  --cta-primary: #2563EB;
  --cta-primary-hover: #1D4ED8;
  --cta-primary-text: #FFFFFF;
  --accent-launch: #F59E0B;
  --accent-launch-text: #111827;
  --accent-success: #047857;
  --accent-success-text: #FFFFFF;
  --accent-artifact: #38BDF8;
  --accent-error: #B91C1C;
  --blue: var(--cta-primary);
  --copper: var(--text-muted);
  --green: var(--accent-success);
  --shadow: 0 28px 80px rgba(15, 23, 42, 0.18);
  --hover-shadow: 0 20px 46px rgba(15, 23, 42, 0.18);
  --hover-shadow-soft: 0 18px 38px rgba(15, 23, 42, 0.1);
}

html,
body {
  background: var(--bg-page);
  color: var(--text-primary);
}

.site-header {
  background: rgba(11, 16, 32, 0.94);
  border-bottom-color: var(--border-dark);
}

.brand,
.nav-cta,
.button-secondary {
  color: var(--cta-primary-text);
}

.nav-links {
  color: var(--cta-primary-text);
}

.nav-links a:hover,
.site-footer a:hover {
  color: var(--cta-primary-text);
}

.section-dark {
  background: var(--bg-hero);
  color: var(--text-inverse);
}

.section-graphite,
.kit-section,
.loop-section {
  background: var(--bg-dark);
  color: var(--text-inverse);
}

.section-artifact {
  position: relative;
  background: var(--bg-artifact);
  color: var(--text-inverse);
}

.section-paper {
  background: var(--bg-page);
  color: var(--text-primary);
}

.section-heading p,
.section-paper .section-heading p,
.section-paper p,
.section-paper .copy-stack,
.section-paper .review-layout p,
.section-paper .newsletter-layout p,
.section-paper .artifact-preview-grid p,
.section-paper .roadmap p,
.alt-row span {
  color: var(--text-secondary);
}

.hero-subhead,
.hero-kicker,
.artifact-strip strong,
.counter-card h2,
.operating-law strong,
.pricing-card > strong {
  color: var(--text-inverse);
}

.support-line,
.counter-card p,
.claim-form > p,
.artifact-strip p,
.loop-line span,
.operating-law p,
.kit-layout p,
.kit-list span,
.pricing-card li {
  color: var(--text-inverse-muted);
}

.button-primary,
.nav-cta {
  background: var(--cta-primary);
  border-color: var(--cta-primary);
  color: var(--cta-primary-text);
}

.button-primary:hover,
.nav-cta:hover {
  background: var(--cta-primary-hover);
  border-color: var(--cta-primary-hover);
  color: var(--cta-primary-text);
}

.button-secondary {
  border-color: rgba(37, 99, 235, 0.58);
  background: rgba(37, 99, 235, 0.08);
}

.section-paper .button-secondary {
  color: var(--cta-primary);
  border-color: rgba(37, 99, 235, 0.42);
  background: rgba(37, 99, 235, 0.06);
}

a:not(.button):not(.brand):not(.nav-cta) {
  color: var(--cta-primary);
}

.section-dark .article-links a:not(.button):not(.brand):not(.nav-cta),
.section-graphite .article-links a:not(.button):not(.brand):not(.nav-cta) {
  color: var(--paper-2);
}

.section-dark .article-links a strong,
.section-graphite .article-links a strong {
  color: var(--paper);
}

.section-dark .article-links a span,
.section-graphite .article-links a span {
  color: rgba(243, 239, 228, 0.72);
}

.site-header .nav-links a {
  color: var(--cta-primary-text) !important;
}

.site-header .nav-links a:hover {
  color: var(--cta-primary-text) !important;
}

.standalone-body .site-header .brand-logo {
  width: 22px;
  height: 22px;
  padding: 2px;
}

@media (max-width: 680px) {
  .standalone-body .site-header .brand-logo {
    width: 22px;
    height: 22px;
  }
}

@media (max-width: 380px) {
  .standalone-body .site-header .brand-logo {
    width: 22px;
    height: 22px;
  }
}

.site-footer a {
  color: var(--text-inverse-muted) !important;
}

.proof-chips li,
.counter-card,
.claim-form,
.artifact-strip article,
.loop-line span,
.kit-list span,
.pricing-card {
  border-color: var(--border-dark);
}

.counter-card,
.claim-form,
.pricing-card {
  background: var(--bg-dark-elevated);
}

.counter-readout div {
  background: var(--bg-hero);
  border-color: var(--border-dark);
}

.counter-readout strong {
  color: var(--text-inverse);
}

.counter-readout div:last-child strong,
.counter-readout div:last-child span,
.small-counter strong,
.small-counter span {
  color: var(--accent-launch);
}

.counter-readout span,
.counter-note,
.honesty-line,
.form-status,
.newsletter-status {
  color: var(--text-inverse-muted);
}

.artifact-strip-title,
.artifact-strip span,
.artifact-preview-grid span,
.kit-list span,
.roadmap span,
.pricing-card > span {
  color: var(--accent-artifact);
}

.section-artifact .artifact-preview-grid article {
  background: var(--bg-dark-elevated);
  border-color: var(--border-dark);
}

.section-artifact .artifact-preview-grid p {
  color: var(--text-inverse-muted);
}

.section-artifact .section-heading p {
  color: var(--text-inverse-muted);
}

.section-artifact .section-cta {
  border-top-color: var(--border-dark);
}

.section-paper .pricing-card,
.section-paper .review-form,
.section-paper .newsletter-form,
.section-paper .artifact-preview-grid article,
.section-paper .roadmap article,
.alt-table {
  background: var(--bg-card);
  border-color: var(--border-light);
  box-shadow: var(--hover-shadow-soft);
}

.section-paper .pricing-card > strong,
.section-paper .pricing-card li,
.section-paper .pricing-card > span,
.section-paper .roadmap span,
.section-paper .artifact-preview-grid span,
.section-paper .risk-clarity {
  color: var(--text-primary) !important;
}

.section-paper .roadmap span,
.section-paper .artifact-preview-grid span {
  color: var(--text-muted) !important;
}

.section-paper .pricing-card li {
  color: var(--text-secondary) !important;
}

.section-paper .risk-clarity {
  color: var(--text-muted) !important;
}

.alt-row,
.alt-row span,
.comparison-table > div,
.comparison-table span,
details,
.faq-list details {
  border-color: var(--border-light);
}

.alt-head span,
.table-head,
summary {
  background: rgba(17, 24, 39, 0.04);
  color: var(--text-primary);
}

.comparison-table span:first-child,
.alt-row span:first-child,
details summary {
  color: var(--text-primary);
}

.faq-section p {
  color: var(--text-secondary);
}

.review-form,
.newsletter-form {
  color: var(--text-primary);
}

.claim-form input,
.review-form input,
.review-form textarea,
.review-form select,
.newsletter-form input {
  background: var(--bg-card);
  color: var(--text-primary);
  border-color: var(--border-light);
}

.claim-form input:focus,
.review-form input:focus,
.review-form textarea:focus,
.review-form select:focus,
.newsletter-form input:focus {
  border-color: var(--cta-primary);
  box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.16);
}

.form-status[data-state="success"],
.newsletter-status[data-state="success"],
.section-paper .form-status[data-state="success"],
.section-paper .newsletter-status[data-state="success"] {
  color: var(--accent-success);
}

.form-status[data-state="error"],
.newsletter-status[data-state="error"],
.section-paper .form-status[data-state="error"],
.section-paper .newsletter-status[data-state="error"] {
  color: var(--accent-error);
}

.small-counter {
  background: rgba(245, 158, 11, 0.08);
  border-color: rgba(245, 158, 11, 0.28);
}

.review-secondary .small-counter {
  width: min(100%, 420px);
  min-height: 0;
  display: flex;
  justify-content: space-between;
  gap: 14px;
  place-items: stretch;
  align-content: initial;
  padding: 12px 0;
  border: 0;
  border-top: 1px solid var(--border-light);
  border-bottom: 1px solid var(--border-light);
  border-radius: 0;
  background: transparent;
  text-align: left;
}

.review-secondary .small-counter strong,
.review-secondary .small-counter span {
  font-family: "SFMono-Regular", Consolas, "Liberation Mono", monospace;
  font-size: 0.78rem;
  line-height: 1.35;
}

.review-secondary .small-counter strong {
  color: var(--text-muted);
}

.review-secondary .small-counter strong span {
  color: inherit;
}

.review-secondary .small-counter > span {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  min-height: 26px;
  padding: 4px 8px;
  border-radius: 999px;
  background: var(--accent-launch);
  color: var(--accent-launch-text);
  font-weight: 800;
  text-align: right;
  white-space: nowrap;
}

.review-secondary .small-counter > span span {
  color: inherit;
}

.site-footer {
  background: var(--bg-dark);
  color: var(--text-inverse);
}

/* Conversion QA iteration: form-first hero, record preview, restrained secondary application. */
.hero .section-inner.hero-grid {
  padding-top: clamp(46px, 5vw, 68px);
  padding-bottom: clamp(34px, 5vw, 58px);
}

.hero-grid {
  grid-template-columns: minmax(0, 0.98fr) minmax(420px, 0.82fr);
  gap: clamp(44px, 6vw, 76px);
  align-items: start;
}

.hero-copy {
  max-width: 710px;
  padding-top: clamp(16px, 2vw, 28px);
}

.hero-copy h1 {
  max-width: 720px;
  font-size: clamp(3.4rem, 4.4vw, 4.7rem);
  line-height: 1.04;
}

.hero-subhead {
  max-width: 680px;
  margin-top: 24px;
}

.support-line {
  max-width: 660px;
}

.launch-panel {
  gap: 12px;
}

.claim-card {
  overflow: hidden;
  padding: 0;
  border-color: rgba(56, 189, 248, 0.24);
  background:
    linear-gradient(180deg, rgba(56, 189, 248, 0.06), transparent 48%),
    var(--bg-dark-elevated);
}

.claim-card-head {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 132px;
  gap: 18px;
  align-items: start;
  padding: clamp(20px, 2.4vw, 28px);
  border-bottom: 1px solid var(--border-dark);
}

.claim-card h2 {
  color: var(--text-inverse);
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(1.75rem, 2.4vw, 2.35rem);
  line-height: 1.05;
}

.claim-card-head p {
  margin-top: 12px;
  color: var(--text-inverse-muted);
  font-size: 0.94rem;
  line-height: 1.42;
}

.claim-count {
  display: grid;
  gap: 4px;
  min-height: 112px;
  align-content: center;
  padding: 14px 12px;
  border: 1px solid rgba(245, 158, 11, 0.34);
  border-radius: var(--radius);
  background: rgba(245, 158, 11, 0.1);
  text-align: center;
}

.claim-count strong {
  color: var(--accent-launch);
  font-family: "SFMono-Regular", Consolas, "Liberation Mono", monospace;
  font-size: clamp(2.15rem, 3.2vw, 3rem);
  line-height: 0.95;
}

.claim-count span {
  color: var(--text-inverse-muted);
  font-size: 0.74rem;
  line-height: 1.25;
}

.launch-meter {
  padding: 16px clamp(20px, 2.4vw, 28px) 0;
}

.launch-meter-bar {
  height: 8px;
  overflow: hidden;
  border: 1px solid var(--border-dark);
  border-radius: 999px;
  background: var(--bg-hero);
}

.launch-meter-bar span {
  display: block;
  width: 0;
  height: 100%;
  border-radius: inherit;
  background: var(--accent-launch);
  transition: width 260ms ease;
}

.launch-meter p {
  display: flex;
  justify-content: space-between;
  gap: 14px;
  margin-top: 8px;
  color: var(--text-inverse-muted);
  font-family: "SFMono-Regular", Consolas, "Liberation Mono", monospace;
  font-size: 0.72rem;
  line-height: 1.35;
}

.claim-card .form-grid {
  margin: 18px clamp(20px, 2.4vw, 28px) 0;
}

.claim-card .button,
.claim-card .form-status,
.claim-card [data-preview-download-link] {
  width: calc(100% - clamp(40px, 4.8vw, 56px));
  margin-left: clamp(20px, 2.4vw, 28px);
  margin-right: clamp(20px, 2.4vw, 28px);
}

.claim-card .button-primary {
  min-height: 54px;
  margin-top: 16px;
}

.claim-card .form-status {
  margin-bottom: 20px;
}

.artifact-strip-shell {
  display: none;
}

.artifact-strip {
  grid-template-columns: repeat(5, minmax(0, 1fr));
}

.artifact-strip article {
  min-height: 138px;
}

.artifacts-section .section-inner {
  --record-padding-x: clamp(18px, 3vw, 28px);
  --record-label-column: clamp(138px, 12vw, 176px);
  --record-column-gap: clamp(28px, 4vw, 54px);
}

.artifact-record-preview {
  overflow: hidden;
  border: 1px solid var(--border-dark);
  border-radius: var(--radius);
  background:
    linear-gradient(180deg, rgba(56, 189, 248, 0.07), transparent 42%),
    var(--bg-dark-elevated);
  box-shadow: var(--shadow);
}

.record-preview-header,
.record-preview-footer,
.record-rows article {
  display: grid;
  grid-template-columns: var(--record-label-column) minmax(0, 1fr);
  column-gap: var(--record-column-gap);
  row-gap: 8px;
  align-items: center;
  padding: 18px var(--record-padding-x);
}

.record-preview-header {
  grid-template-columns: var(--record-label-column) minmax(0, 1fr) minmax(216px, max-content);
  border-bottom: 1px solid var(--border-dark);
}

.record-preview-header span,
.record-rows span,
.record-preview-footer span {
  color: var(--accent-artifact);
  font-family: "SFMono-Regular", Consolas, "Liberation Mono", monospace;
  font-size: 0.74rem;
  line-height: 1.2;
  text-transform: uppercase;
}

.record-preview-header strong {
  color: var(--text-inverse);
  font-size: clamp(1.2rem, 1.8vw, 1.5rem);
  line-height: 1.15;
}

.record-preview-header em {
  justify-self: end;
  color: var(--accent-launch);
  font-family: "SFMono-Regular", Consolas, "Liberation Mono", monospace;
  font-size: 0.74rem;
  font-style: normal;
  line-height: 1.25;
  max-width: 28ch;
  text-align: right;
}

.record-rows article {
  border-bottom: 1px solid var(--border-dark);
}

.record-rows p,
.record-preview-footer p {
  max-width: 880px;
  color: var(--text-inverse-muted);
  line-height: 1.42;
}

.record-preview-footer {
  background: rgba(56, 189, 248, 0.05);
}

.section-artifact .section-cta {
  justify-content: flex-start;
  margin-top: 24px;
  padding-top: 0;
  padding-left: calc(var(--record-padding-x) + var(--record-label-column) + var(--record-column-gap));
  border-top: 0;
}

.review-secondary .section-inner {
  padding-top: clamp(42px, 5vw, 64px);
  padding-bottom: clamp(42px, 5vw, 64px);
}

.review-compact-layout {
  grid-template-columns: minmax(0, 0.82fr) minmax(360px, 0.78fr);
  align-items: center;
}

.review-secondary h2 {
  max-width: 520px;
  font-size: clamp(1.7rem, 2.7vw, 2.45rem);
  letter-spacing: 0;
}

.review-apply-disclosure {
  overflow: hidden;
  border: 1px solid var(--border-light);
  border-radius: var(--radius);
  background: var(--bg-card);
  box-shadow: none;
}

.review-apply-disclosure > summary {
  min-height: 76px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 0 20px;
  background: var(--bg-card);
}

.review-apply-disclosure summary span {
  font-weight: 800;
}

.review-apply-disclosure summary small {
  color: var(--text-muted);
  font-size: 0.78rem;
  font-weight: 800;
}

.review-apply-disclosure .review-form {
  border: 0;
  border-top: 1px solid var(--border-light);
  border-radius: 0;
  box-shadow: none;
}

@media (max-width: 1120px) {
  .hero-grid {
    grid-template-columns: minmax(0, 0.9fr) minmax(390px, 0.78fr);
    gap: 34px;
  }

  .hero-copy h1 {
    font-size: clamp(3rem, 4vw, 4rem);
  }
}

@media (max-width: 980px) {
  .hero-grid,
  .review-compact-layout {
    grid-template-columns: 1fr;
  }

  .launch-panel {
    max-width: 760px;
  }

  .proof-chips {
    display: none;
  }

  .record-preview-header {
    grid-template-columns: var(--record-label-column) minmax(0, 1fr);
  }

  .record-preview-header em {
    grid-column: 2;
    justify-self: start;
    max-width: none;
    text-align: left;
  }
}

@media (max-width: 760px) {
  .hero .section-inner.hero-grid {
    padding-top: 26px;
    padding-bottom: 32px;
  }

  .hero-copy {
    padding-top: 0;
  }

  .hero-copy h1 {
    font-size: clamp(2.2rem, 11vw, 3.05rem);
    line-height: 1.02;
  }

  .claim-card-head {
    grid-template-columns: 1fr;
    gap: 14px;
  }

  .claim-count {
    min-height: 82px;
    grid-template-columns: auto minmax(0, 1fr);
    align-items: center;
    justify-items: start;
    text-align: left;
  }

  .claim-count strong {
    font-size: 2.15rem;
  }

  .launch-meter p {
    display: grid;
    gap: 4px;
  }

  .artifact-strip-shell {
    display: none;
  }

  .record-preview-header,
  .record-preview-footer,
  .record-rows article {
    grid-template-columns: 1fr;
    gap: 8px;
    padding: 15px;
  }

  .record-preview-header em {
    grid-column: auto;
    justify-self: start;
    text-align: left;
  }

  .section-artifact .section-cta {
    margin-top: 18px;
    padding-left: 0;
  }

  .review-apply-disclosure > summary {
    min-height: 68px;
    padding: 0 16px;
  }

  .review-apply-disclosure summary small {
    display: none;
  }
}

/* Conversion QA iteration: distinct light-body funnel sections instead of repeated card grids. */
.transform-section,
.compare-section,
.loop-section,
.kit-section,
.roadmap-section,
.offer-section,
.review-section,
.newsletter-section,
.faq-section {
  background: var(--bg-page);
  color: var(--text-primary);
}

.conversion-bridge {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(58px, 76px) minmax(0, 1fr);
  gap: clamp(18px, 3vw, 30px);
  align-items: stretch;
  margin-top: 30px;
}

.bridge-column {
  min-width: 0;
  border-top: 2px solid var(--text-primary);
}

.bridge-column h3 {
  margin: 0;
  padding: 16px 0 10px;
  color: var(--text-primary);
  font-family: "SFMono-Regular", Consolas, "Liberation Mono", monospace;
  font-size: 0.78rem;
  line-height: 1.25;
  text-transform: uppercase;
}

.bridge-column ol {
  display: grid;
  gap: 0;
  counter-reset: bridge;
}

.bridge-column li {
  counter-increment: bridge;
  list-style: none;
  display: grid;
  grid-template-columns: 38px minmax(0, 1fr);
  gap: 14px;
  min-height: 62px;
  align-items: center;
  padding: 11px 0;
  border-bottom: 1px solid var(--border-light);
  color: var(--text-secondary);
  line-height: 1.35;
}

.bridge-column li::before {
  content: counter(bridge, decimal-leading-zero);
  color: var(--text-muted);
  font-family: "SFMono-Regular", Consolas, "Liberation Mono", monospace;
  font-size: 0.72rem;
}

.bridge-after {
  border-top-color: var(--text-primary);
}

.bridge-after li {
  color: var(--text-primary);
  font-weight: 700;
}

.bridge-spine {
  position: relative;
  display: grid;
  place-items: center;
  min-height: 100%;
}

.bridge-spine::before {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  left: 50%;
  width: 1px;
  background: var(--border-light);
  transform: translateX(-50%);
}

.bridge-spine span {
  position: relative;
  z-index: 1;
  display: inline-grid;
  place-items: center;
  min-width: 46px;
  min-height: 46px;
  padding: 8px;
  border: 1px solid var(--border-light);
  border-radius: 999px;
  background: var(--bg-card);
  color: var(--text-muted);
  font-family: "SFMono-Regular", Consolas, "Liberation Mono", monospace;
  font-size: 0.64rem;
  line-height: 1.1;
  text-align: center;
  text-transform: uppercase;
  writing-mode: vertical-rl;
  transform: rotate(180deg);
}

.comparison-close {
  margin-top: 24px;
  padding: 18px 0 0;
  border-top: 1px solid var(--border-light);
  color: var(--text-primary);
  font-size: clamp(1.02rem, 1.4vw, 1.18rem);
}

.loop-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.72fr) minmax(0, 1fr);
  gap: clamp(30px, 5vw, 68px);
  align-items: start;
}

.loop-section .section-heading {
  margin-bottom: 0;
}

.loop-sequence {
  margin-top: 22px;
  padding: 18px 0 0;
  border-top: 1px solid var(--border-light);
  color: var(--text-secondary);
  font-family: "SFMono-Regular", Consolas, "Liberation Mono", monospace;
  font-size: 0.8rem;
  line-height: 1.65;
}

.loop-stages {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  border: 1px solid var(--border-light);
  background: var(--bg-card);
  box-shadow: var(--hover-shadow-soft);
}

.loop-stages li {
  list-style: none;
  min-width: 0;
  padding: clamp(18px, 2.4vw, 24px);
  border-right: 1px solid var(--border-light);
}

.loop-stages li:last-child {
  border-right: 0;
}

.loop-stages span {
  display: block;
  color: var(--text-muted);
  font-family: "SFMono-Regular", Consolas, "Liberation Mono", monospace;
  font-size: 0.72rem;
}

.loop-stages strong {
  display: block;
  margin-top: 12px;
  color: var(--text-primary);
  font-size: 1.04rem;
  line-height: 1.2;
}

.loop-stages p {
  margin-top: 10px;
  color: var(--text-secondary);
  font-size: 0.92rem;
  line-height: 1.42;
}

.loop-section .operating-law {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: minmax(220px, 0.36fr) minmax(0, 1fr);
  gap: 20px;
  align-items: start;
  margin-top: 0;
  padding: 22px 0 0;
  border-top: 1px solid var(--border-light);
  background: transparent;
}

.loop-section .operating-law strong {
  color: var(--text-primary);
  font-size: clamp(1.18rem, 2vw, 1.55rem);
  line-height: 1.15;
}

.loop-section .operating-law p {
  color: var(--text-secondary);
}

.alt-table {
  overflow: hidden;
  border: 1px solid var(--border-light);
  border-radius: var(--radius);
  background: var(--bg-card);
  box-shadow: var(--hover-shadow-soft);
}

.alt-row {
  grid-template-columns: minmax(132px, 0.78fr) minmax(150px, 0.9fr) minmax(220px, 1.28fr) minmax(170px, 0.92fr);
}

.alt-row span {
  border-color: var(--border-light);
}

.alt-row span:first-child,
.alt-row span:last-child {
  color: var(--text-primary);
  font-weight: 800;
}

.alt-row span:last-child {
  background: #F9FAFB;
}

.kit-layout {
  align-items: start;
}

.kit-layout p {
  color: var(--text-secondary);
}

.kit-manifest {
  overflow: hidden;
  border: 1px solid var(--border-light);
  border-radius: var(--radius);
  background: var(--bg-card);
  box-shadow: var(--hover-shadow-soft);
}

.kit-manifest-head {
  display: grid;
  gap: 6px;
  padding: 18px clamp(18px, 2.5vw, 26px);
  border-bottom: 1px solid var(--border-light);
  background: #F9FAFB;
}

.kit-manifest-head span {
  color: var(--text-muted);
  font-family: "SFMono-Regular", Consolas, "Liberation Mono", monospace;
  font-size: 0.72rem;
  line-height: 1.25;
  text-transform: uppercase;
}

.kit-manifest-head strong {
  color: var(--text-primary);
  font-size: 1.05rem;
  line-height: 1.25;
}

.kit-manifest-groups {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.kit-manifest-groups section {
  padding: clamp(18px, 2.5vw, 26px);
  border-right: 1px solid var(--border-light);
}

.kit-manifest-groups section:last-child {
  border-right: 0;
}

.kit-manifest-groups h3 {
  margin: 0 0 14px;
  color: var(--text-primary);
  font-size: 1rem;
  line-height: 1.25;
}

.kit-manifest-groups ul {
  display: grid;
  gap: 10px;
}

.kit-manifest-groups li {
  list-style: none;
  display: grid;
  grid-template-columns: 10px minmax(0, 1fr);
  gap: 10px;
  color: var(--text-secondary);
  font-size: 0.92rem;
  line-height: 1.35;
}

.kit-manifest-groups li::before {
  content: "";
  width: 6px;
  height: 6px;
  margin-top: 0.54em;
  background: var(--text-primary);
}

.roadmap {
  grid-template-columns: 1fr;
  gap: 0;
  overflow: hidden;
  border: 1px solid var(--border-light);
  border-radius: var(--radius);
  background: var(--bg-card);
  box-shadow: var(--hover-shadow-soft);
}

.section-paper .roadmap article,
.roadmap article {
  display: grid;
  grid-template-columns: minmax(126px, 0.22fr) minmax(150px, 0.34fr) minmax(0, 1fr);
  gap: clamp(14px, 2vw, 26px);
  min-height: auto;
  height: auto;
  align-items: start;
  padding: clamp(18px, 2.5vw, 26px);
  border: 0;
  border-bottom: 1px solid var(--border-light);
  border-radius: 0;
  background: transparent;
  box-shadow: none;
}

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

.section-paper .roadmap span,
.roadmap span {
  color: var(--text-muted) !important;
  font-family: "SFMono-Regular", Consolas, "Liberation Mono", monospace;
  font-size: 0.76rem;
  line-height: 1.35;
  text-transform: uppercase;
}

.roadmap h3 {
  color: var(--text-primary);
  font-size: 1rem;
  line-height: 1.25;
}

.roadmap p {
  color: var(--text-secondary);
}

.offer-layout {
  align-items: start;
}

.offer-path {
  display: grid;
  gap: 0;
  margin-top: 24px;
  border-top: 1px solid var(--border-light);
  border-bottom: 1px solid var(--border-light);
}

.offer-path span {
  min-height: 48px;
  display: flex;
  align-items: center;
  color: var(--text-primary);
  font-family: "SFMono-Regular", Consolas, "Liberation Mono", monospace;
  font-size: 0.78rem;
  line-height: 1.35;
  border-bottom: 1px solid var(--border-light);
}

.offer-path span:last-child {
  border-bottom: 0;
}

.risk-clarity {
  margin-top: 24px;
}

.section-paper .pricing-card,
.pricing-card {
  background:
    linear-gradient(180deg, rgba(17, 24, 39, 0.04), transparent 42%),
    var(--bg-card);
  border-color: var(--border-light);
  color: var(--text-primary);
}

.section-paper .pricing-card > span,
.pricing-card > span {
  color: var(--text-muted) !important;
}

.section-paper .pricing-card > strong,
.pricing-card > strong {
  color: var(--text-primary);
}

.review-secondary {
  border-top: 1px solid var(--border-light);
}

.button span,
.nav-cta span,
.section-cta .button span {
  display: inline;
  color: inherit;
  font-family: inherit;
  font-size: inherit;
  line-height: inherit;
  text-transform: none;
}

.pricing-card li::before {
  background: var(--text-primary);
}

.newsletter-section,
.faq-section {
  border-top-color: var(--border-light);
  border-bottom-color: var(--border-light);
}

@media (min-width: 821px) and (max-width: 980px) {
  .hero-grid {
    grid-template-columns: minmax(0, 0.88fr) minmax(320px, 0.78fr);
    gap: 24px;
  }

  .hero-copy h1 {
    font-size: clamp(2.55rem, 5vw, 3.25rem);
  }

  .hero-subhead {
    margin-top: 18px;
    font-size: 0.96rem;
  }

  .support-line {
    font-size: 0.92rem;
  }

  .hero .button {
    min-height: 46px;
    padding: 0 14px;
  }

  .launch-panel {
    max-width: none;
  }

  .claim-card-head {
    grid-template-columns: 1fr;
    gap: 12px;
    padding: 18px;
  }

  .claim-card h2 {
    font-size: 1.7rem;
  }

  .claim-card-head p {
    font-size: 0.86rem;
  }

  .claim-count {
    min-height: 72px;
    grid-template-columns: auto minmax(0, 1fr);
    align-items: center;
    justify-items: start;
    text-align: left;
  }

  .claim-count strong {
    font-size: 1.9rem;
  }

  .launch-meter {
    padding: 14px 18px 0;
  }

  .claim-card .form-grid {
    grid-template-columns: 1fr;
    gap: 12px;
    margin: 14px 18px 0;
  }

  .claim-card .button,
  .claim-card .form-status,
  .claim-card [data-preview-download-link] {
    width: calc(100% - 36px);
    margin-left: 18px;
    margin-right: 18px;
  }

  .claim-card .button-primary {
    min-height: 48px;
    margin-top: 14px;
  }
}

@media (min-width: 761px) and (max-width: 980px) {
  .conversion-bridge {
    grid-template-columns: minmax(0, 1fr) minmax(58px, 70px) minmax(0, 1fr);
  }

  .bridge-spine {
    min-height: 100%;
  }

  .bridge-spine::before {
    top: 0;
    bottom: 0;
    left: 50%;
    right: auto;
    width: 1px;
    height: auto;
    transform: translateX(-50%);
  }

  .bridge-spine span {
    writing-mode: vertical-rl;
    transform: rotate(180deg);
  }
}

@media (max-width: 760px) {
  .hero-grid {
    gap: 24px;
  }

  .hero-copy h1 {
    font-size: clamp(2rem, 10vw, 2.65rem);
  }

  .hero-subhead {
    margin-top: 16px;
    font-size: 0.95rem;
    line-height: 1.42;
  }

  .support-line {
    margin-top: 12px;
    font-size: 0.9rem;
    line-height: 1.42;
  }

  .cta-row {
    gap: 8px;
    margin-top: 16px;
  }

  .hero .button-secondary {
    min-height: auto;
    justify-content: center;
    padding: 6px 0 0;
    border: 0;
    background: transparent;
    color: var(--text-inverse-muted);
  }

  .hero .button-secondary:hover {
    background: transparent;
    color: var(--text-inverse);
  }

  .claim-card h2 {
    font-size: clamp(1.55rem, 8vw, 2rem);
  }

  .claim-card-head {
    padding: 18px;
  }

  .claim-card-head > div {
    display: contents;
  }

  .claim-card-head > .claim-count {
    display: grid;
    width: 100%;
  }

  .claim-card h2 {
    order: 1;
  }

  .claim-count {
    order: 2;
  }

  .claim-card-head p {
    order: 3;
    margin-top: 0;
  }
}

.newsletter-section .section-inner {
  padding-top: clamp(56px, 6vw, 82px);
  padding-bottom: clamp(56px, 6vw, 82px);
}

.newsletter-form {
  border-top: 3px solid var(--text-primary);
  box-shadow: none;
}

.newsletter-status {
  padding-top: 12px;
  border-top: 1px solid var(--border-light);
  text-align: left;
}

@media (min-width: 981px) {
  .newsletter-form {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .newsletter-form > div:first-child,
  .newsletter-form .form-honeypot,
  .newsletter-form .button,
  .newsletter-form .newsletter-publication-link,
  .newsletter-form .newsletter-status {
    grid-column: 1 / -1;
  }
}

@media (max-width: 980px) {
  .conversion-bridge,
  .loop-layout,
  .kit-layout,
  .readiness-layout {
    grid-template-columns: 1fr;
  }

  .bridge-spine {
    min-height: 58px;
  }

  .bridge-spine::before {
    top: 50%;
    bottom: auto;
    left: 0;
    right: 0;
    width: auto;
    height: 1px;
    transform: translateY(-50%);
  }

  .bridge-spine span {
    writing-mode: horizontal-tb;
    transform: none;
  }

  .loop-stages,
  .kit-manifest-groups {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .loop-stages li:nth-child(2) {
    border-right: 0;
  }

  .loop-stages li:nth-child(-n + 2) {
    border-bottom: 1px solid var(--border-light);
  }

  .kit-manifest-groups section:nth-child(2) {
    border-right: 0;
  }

  .kit-manifest-groups section:last-child {
    grid-column: 1 / -1;
    border-top: 1px solid var(--border-light);
  }

  .alt-table {
    overflow-x: auto;
  }

  .alt-row {
    min-width: 860px;
  }
}

@media (max-width: 760px) {
  .track-options,
  .segmented-options,
  .readiness-actions {
    grid-template-columns: 1fr;
  }

  .track-options article {
    min-height: 0;
  }

  .readiness-card {
    padding: 18px;
  }

  .readiness-copy h2 {
    line-height: 1.04;
  }
}

@media (max-width: 760px) {
  .conversion-bridge {
    margin-top: 24px;
  }

  .bridge-column li {
    min-height: 52px;
    grid-template-columns: 34px minmax(0, 1fr);
    gap: 10px;
  }

  .loop-stages,
  .kit-manifest-groups {
    grid-template-columns: 1fr;
  }

  .loop-stages li,
  .loop-stages li:nth-child(2) {
    border-right: 0;
    border-bottom: 1px solid var(--border-light);
  }

  .loop-stages li:last-child {
    border-bottom: 0;
  }

  .loop-section .operating-law,
  .roadmap article {
    grid-template-columns: 1fr;
  }

  .kit-manifest-groups section,
  .kit-manifest-groups section:nth-child(2),
  .kit-manifest-groups section:last-child {
    grid-column: auto;
    border-right: 0;
    border-top: 1px solid var(--border-light);
  }

  .kit-manifest-groups section:first-child {
    border-top: 0;
  }

  .offer-path span {
    min-height: 44px;
  }
}

@media (min-width: 761px) and (max-width: 980px) {
  .conversion-bridge {
    grid-template-columns: minmax(0, 1fr) minmax(58px, 70px) minmax(0, 1fr);
  }

  .bridge-spine {
    min-height: 100%;
  }

  .bridge-spine::before {
    top: 0;
    bottom: 0;
    left: 50%;
    right: auto;
    width: 1px;
    height: auto;
    transform: translateX(-50%);
  }

  .bridge-spine span {
    writing-mode: vertical-rl;
    transform: rotate(180deg);
  }
}

@media (max-width: 760px) {
  .alt-table {
    display: grid;
    gap: 12px;
    overflow: visible;
    border: 0;
    background: transparent;
    box-shadow: none;
  }

  .alt-row.alt-head {
    display: none;
  }

  .alt-row {
    min-width: 0;
    display: grid;
    grid-template-columns: 1fr;
    overflow: hidden;
    border: 1px solid var(--border-light);
    border-radius: var(--radius);
    background: var(--bg-card);
    box-shadow: var(--hover-shadow-soft);
  }

  .alt-row span {
    display: grid;
    gap: 4px;
    min-height: 0;
    padding: 13px 15px;
    border: 0;
    border-bottom: 1px solid var(--border-light);
    background: transparent;
  }

  .alt-row span:last-child {
    border-bottom: 0;
    background: #F9FAFB;
  }

  .alt-row span::before {
    color: var(--text-muted);
    font-family: "SFMono-Regular", Consolas, "Liberation Mono", monospace;
    font-size: 0.68rem;
    line-height: 1.2;
    text-transform: uppercase;
  }

  .alt-row span:nth-child(1)::before {
    content: "Alternative";
  }

  .alt-row span:nth-child(2)::before {
    content: "What it gives you";
  }

  .alt-row span:nth-child(3)::before {
    content: "What it lacks by itself";
  }

  .alt-row span:nth-child(4)::before {
    content: "Where this fits";
  }
}

/* Funnel polish iteration: clearer header priority, tighter hero, and record-style body sections. */
.brand-logo {
  width: 28px;
  height: 28px;
}

.site-header .nav-shell {
  gap: clamp(18px, 3vw, 30px);
}

.site-header .nav-links {
  flex: 1 1 auto;
  justify-content: center;
  gap: clamp(20px, 2.4vw, 30px);
}

.hero .section-inner.hero-grid {
  padding-top: clamp(34px, 4.2vw, 54px);
  padding-bottom: clamp(22px, 3vw, 36px);
}

.hero-grid {
  gap: clamp(36px, 5vw, 64px);
}

.hero-copy {
  padding-top: clamp(6px, 1.3vw, 16px);
}

.hero-copy h1 {
  font-size: clamp(3.2rem, 4.05vw, 4.45rem);
}

.hero-subhead {
  margin-top: 20px;
}

.support-line {
  margin-top: 14px;
}

.cta-row {
  align-items: center;
  gap: 16px;
}

.hero-secondary-link {
  display: inline-flex;
  align-items: center;
  min-height: 42px;
  padding: 0 2px;
  color: var(--text-inverse-muted) !important;
  font-weight: 800;
  line-height: 1.25;
  border-bottom: 1px solid rgba(203, 213, 225, 0.42);
  transition:
    border-color 160ms ease,
    color 160ms ease;
}

.hero-secondary-link:hover {
  color: var(--text-inverse) !important;
  border-bottom-color: var(--text-inverse);
}

.claim-card-head {
  grid-template-columns: minmax(0, 1fr) 118px;
  gap: 16px;
  padding: clamp(18px, 2vw, 24px);
}

.claim-card h2 {
  font-size: clamp(1.65rem, 2.15vw, 2.15rem);
}

.claim-card-head p {
  margin-top: 10px;
  font-size: 0.9rem;
}

.claim-count {
  min-height: 96px;
  padding: 12px 10px;
}

.claim-count strong {
  font-size: clamp(2rem, 2.85vw, 2.62rem);
}

.launch-meter {
  padding-top: 12px;
}

.claim-proof-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0;
  margin: 12px clamp(20px, 2.4vw, 28px) 0;
  padding-top: 10px;
  border-top: 1px solid var(--border-dark);
}

.claim-proof-list li {
  list-style: none;
  display: grid;
  grid-template-columns: 12px minmax(0, 1fr);
  gap: 8px;
  align-items: start;
  padding: 5px 10px 5px 0;
  color: var(--text-inverse-muted);
  font-size: 0.78rem;
  line-height: 1.3;
}

.claim-proof-list li::before {
  content: "";
  width: 6px;
  height: 6px;
  margin-top: 0.45em;
  background: var(--accent-artifact);
}

.claim-card .form-grid {
  margin-top: 14px;
}

.claim-card .button-primary {
  min-height: 50px;
  margin-top: 14px;
}

.claim-card .form-status {
  margin-bottom: 16px;
}

.loop-stages {
  grid-template-columns: 1fr;
  border: 0;
  background: transparent;
  box-shadow: none;
}

.loop-stages li {
  display: grid;
  grid-template-columns: 54px minmax(130px, 0.28fr) minmax(0, 1fr);
  gap: clamp(14px, 2vw, 24px);
  align-items: start;
  padding: 17px 0;
  border-right: 0;
  border-bottom: 1px solid var(--border-light);
}

.loop-stages li:last-child {
  border-bottom: 0;
}

.loop-stages strong {
  margin-top: 0;
}

.loop-stages p {
  margin-top: 0;
}

.loop-section .operating-law {
  border: 0;
  border-top: 1px solid var(--border-light);
}

.kit-manifest,
.roadmap {
  border-left: 0;
  border-right: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
}

.kit-manifest-head {
  padding-left: 0;
  padding-right: 0;
  background: transparent;
}

.kit-manifest-groups section {
  padding-left: clamp(16px, 2vw, 22px);
  padding-right: clamp(16px, 2vw, 22px);
}

.kit-manifest-groups section:first-child {
  padding-left: 0;
}

.kit-manifest-groups section:last-child {
  padding-right: 0;
}

.section-paper .roadmap article,
.roadmap article {
  padding-left: 0;
  padding-right: 0;
}

@media (max-width: 1120px) {
  .site-header .nav-links {
    gap: 18px;
  }
}

@media (max-width: 980px) {
  .loop-stages li {
    grid-template-columns: 44px minmax(110px, 0.34fr) minmax(0, 1fr);
  }

  .kit-manifest-groups section,
  .kit-manifest-groups section:first-child,
  .kit-manifest-groups section:last-child {
    padding-left: clamp(16px, 2vw, 22px);
    padding-right: clamp(16px, 2vw, 22px);
  }
}

@media (max-width: 680px) {
  .brand-logo {
    width: 24px;
    height: 24px;
  }
}

@media (max-width: 760px) {
  .hero .section-inner.hero-grid {
    padding-top: 22px;
    padding-bottom: 28px;
  }

  .hero-copy h1 {
    font-size: clamp(2.08rem, 10vw, 2.75rem);
  }

  .hero-secondary-link {
    min-height: auto;
    padding-top: 2px;
    justify-content: center;
  }

  .claim-card-head {
    grid-template-columns: 1fr;
    gap: 12px;
    padding: 17px;
  }

  .claim-count {
    min-height: 76px;
  }

  .claim-proof-list {
    grid-template-columns: 1fr;
    margin-left: 17px;
    margin-right: 17px;
  }

  .claim-card .form-grid {
    margin-left: 17px;
    margin-right: 17px;
  }

  .claim-card .button,
  .claim-card .form-status,
  .claim-card [data-preview-download-link] {
    width: calc(100% - 34px);
    margin-left: 17px;
    margin-right: 17px;
  }

  .loop-stages li,
  .loop-stages li:nth-child(2) {
    grid-template-columns: 38px minmax(0, 1fr);
    gap: 10px;
    border-right: 0;
    border-bottom: 1px solid var(--border-light);
  }

  .loop-stages p {
    grid-column: 2;
  }

  .kit-manifest-groups section,
  .kit-manifest-groups section:first-child,
  .kit-manifest-groups section:last-child {
    padding-left: 0;
    padding-right: 0;
  }
}

/* FAQ shading fix: light row accordion, not dark inherited cards. */
.faq-section {
  background: var(--bg-page);
}

.faq-list {
  gap: 0;
  overflow: hidden;
  border-top: 1px solid var(--border-light);
  border-bottom: 1px solid var(--border-light);
}

.faq-list details {
  border: 0;
  border-bottom: 1px solid var(--border-light);
  border-radius: 0;
  background: transparent;
  box-shadow: none;
  transform: none;
}

.faq-list details:last-child {
  border-bottom: 0;
}

.faq-list details:hover {
  background: transparent;
  box-shadow: none;
  transform: none;
}

.faq-list summary {
  min-height: 64px;
  padding: 0;
  background: transparent;
  color: var(--text-primary);
}

.faq-list details[open] summary {
  background: transparent;
}

.faq-list details p {
  max-width: 760px;
  padding: 0 0 22px;
  color: var(--text-secondary);
}

/* Mobile QA pass: prevent sticky-header clipping and loosen dense mobile records. */
#preview,
#artifacts,
#factory-loop,
#compare,
#kit,
#roadmap,
#buy,
#newsletter,
#faq {
  scroll-margin-top: calc(var(--header-height) + 18px);
}

.anchor-alias {
  display: block;
  height: 0;
  scroll-margin-top: calc(var(--header-height) + 18px);
}

@media (max-width: 760px) {
  :root {
    --header-height: 64px;
    --section-y: 52px;
    --gutter: clamp(16px, 4vw, 22px);
  }

  .site-header .nav-shell {
    min-height: var(--header-height);
    padding: 12px var(--gutter);
  }

  .hero .section-inner.hero-grid {
    padding-top: 30px;
    padding-bottom: 40px;
  }

  .hero-grid {
    gap: 30px;
  }

  .hero-copy h1 {
    line-height: 1.05;
  }

  .hero-subhead,
  .support-line {
    line-height: 1.48;
  }

  .hero-secondary-link {
    justify-self: center;
    width: fit-content;
    max-width: 100%;
    min-height: 36px;
    padding: 4px 2px 0;
    border-bottom: 0;
    text-align: center;
    text-decoration-line: underline;
    text-decoration-thickness: 1px;
    text-underline-offset: 5px;
    text-decoration-color: rgba(203, 213, 225, 0.46);
  }

  .claim-card-head {
    gap: 16px;
    padding: 20px;
  }

  .claim-card-head p {
    line-height: 1.5;
  }

  .claim-count {
    min-height: 82px;
    padding: 13px 12px;
  }

  .launch-meter {
    padding: 16px 20px 0;
  }

  .launch-meter p {
    line-height: 1.45;
  }

  .claim-proof-list,
  .claim-card .form-grid {
    margin-left: 20px;
    margin-right: 20px;
  }

  .claim-proof-list {
    gap: 2px;
    padding-top: 12px;
  }

  .claim-proof-list li {
    padding: 7px 0;
    line-height: 1.42;
  }

  .claim-card .form-grid {
    gap: 14px;
    margin-top: 16px;
  }

  .claim-form label,
  .review-form label,
  .newsletter-form label {
    margin-bottom: 8px;
  }

  .claim-form input,
  .review-form input,
  .review-form textarea,
  .review-form select,
  .newsletter-form input {
    min-height: 52px;
  }

  .claim-card .button,
  .claim-card .form-status,
  .claim-card [data-preview-download-link] {
    width: calc(100% - 40px);
    margin-left: 20px;
    margin-right: 20px;
  }

  .claim-card .button-primary {
    min-height: 52px;
  }

  .record-preview-header,
  .record-preview-footer,
  .record-rows article {
    gap: 10px;
    padding: 17px;
  }

  .bridge-column li {
    min-height: auto;
    padding: 14px 0;
    line-height: 1.45;
  }

  .loop-stages li,
  .loop-stages li:nth-child(2) {
    padding: 20px 0;
  }

  .loop-stages p,
  .kit-manifest-groups li,
  .roadmap p,
  .alt-row span,
  .risk-clarity {
    line-height: 1.45;
  }

  .alt-row span {
    padding: 15px 16px;
  }

  .kit-manifest-groups li {
    gap: 11px;
  }

  .roadmap article {
    grid-template-columns: 1fr !important;
    gap: 10px;
    padding-top: 20px;
    padding-bottom: 20px;
  }

  .roadmap p {
    grid-column: auto;
  }

  .offer-path span {
    min-height: 50px;
  }

  .pricing-card {
    padding: 22px 18px;
  }

  .review-apply-disclosure > summary {
    min-height: 72px;
    padding: 0 18px;
  }

  .newsletter-form {
    padding: 20px 18px;
  }

  .faq-list {
    overflow: visible;
  }

  .faq-list summary {
    min-height: 62px;
    gap: 14px;
    padding: 0 2px;
    line-height: 1.3;
    list-style: none;
  }

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

  .faq-list summary::after {
    margin-right: 2px;
  }

  .faq-list details p {
    padding: 0 2px 22px;
    line-height: 1.45;
  }
}

@media (max-width: 380px) {
  :root {
    --gutter: 16px;
  }

  .site-header .nav-shell {
    flex-wrap: nowrap;
    gap: 8px;
  }

  .brand {
    flex: 1 1 auto;
    min-width: 0;
    gap: 7px;
    font-size: 0.78rem;
  }

  .brand span {
    min-width: 0;
    overflow: hidden;
    text-overflow: ellipsis;
  }

  .brand-logo {
    width: 22px;
    height: 22px;
  }

  .nav-cta {
    flex: 0 0 auto;
    min-height: 38px;
    padding: 0 9px;
    font-size: 0.78rem;
  }

  .nav-cta span {
    font-size: 0.78rem;
  }

  .hero-copy h1 {
    font-size: clamp(2rem, 9.6vw, 2.4rem);
  }
}

@media (max-width: 340px) {
  .brand {
    font-size: 0.76rem;
  }

  .nav-cta {
    padding: 0 8px;
  }

  .nav-cta span {
    font-size: 0.76rem;
  }
}

/* Audit conversion pass: proof, paid-traffic clarity, and separated review-copy flow. */
.live-proof-section {
  background: #f4f1e9;
}

.live-proof-layout {
  display: grid;
  gap: clamp(24px, 4vw, 42px);
}

.proof-record {
  display: grid;
  border-top: 1px solid var(--border-light);
  border-bottom: 1px solid var(--border-light);
}

.proof-record > div {
  display: grid;
  grid-template-columns: minmax(136px, 0.22fr) minmax(180px, 0.36fr) minmax(0, 1fr);
  gap: clamp(16px, 3vw, 34px);
  align-items: start;
  padding: 18px 0;
  border-bottom: 1px solid var(--border-light);
}

.proof-record > div:last-child {
  border-bottom: 0;
}

.proof-record span,
.comparison-cards span {
  color: var(--accent-artifact);
  font-family: "SFMono-Regular", Consolas, "Liberation Mono", monospace;
  font-size: 0.74rem;
  line-height: 1.25;
  text-transform: uppercase;
}

.proof-record strong,
.comparison-cards h3 {
  color: var(--text-primary);
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(1.22rem, 2vw, 1.6rem);
  line-height: 1.12;
}

.proof-record p,
.comparison-cards p,
.kit-manifest-head p {
  margin-top: 0;
  color: var(--text-secondary);
  font-size: 0.96rem;
  line-height: 1.46;
}

.comparison-cards {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0;
  margin-top: 28px;
  border-top: 1px solid var(--border-light);
  border-bottom: 1px solid var(--border-light);
}

.comparison-cards article {
  display: grid;
  align-content: start;
  gap: 12px;
  min-height: 230px;
  padding: clamp(20px, 3vw, 30px);
  border-right: 1px solid var(--border-light);
  border-bottom: 1px solid var(--border-light);
}

.comparison-cards article:nth-child(2n) {
  border-right: 0;
}

.comparison-cards article:nth-last-child(-n + 2) {
  border-bottom: 0;
}

.kit-manifest-head {
  display: grid;
  gap: 8px;
}

.kit-manifest-head p {
  max-width: 820px;
}

.pricing-card li {
  line-height: 1.42;
}

.review-copy-page .site-header {
  background: var(--bg-hero);
}

.review-copy-hero {
  min-height: calc(100vh - var(--header-height));
}

.review-copy-layout {
  padding-top: clamp(54px, 7vw, 96px);
  padding-bottom: clamp(54px, 7vw, 96px);
  align-items: start;
}

.review-copy-layout h1 {
  max-width: 760px;
  color: var(--text-inverse);
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(3rem, 5vw, 5.4rem);
  line-height: 0.98;
}

.review-copy-layout p:not(.section-label) {
  max-width: 700px;
  color: var(--text-inverse-muted);
}

.review-copy-layout .review-form {
  color: var(--text-primary);
}

.review-copy-layout .small-counter {
  background: rgba(255, 255, 255, 0.06);
  border-color: var(--border-dark);
}

@media (max-width: 980px) {
  .proof-record > div,
  .comparison-cards,
  .review-copy-layout {
    grid-template-columns: 1fr;
  }

  .comparison-cards article,
  .comparison-cards article:nth-child(2n),
  .comparison-cards article:nth-last-child(-n + 2) {
    min-height: auto;
    border-right: 0;
    border-bottom: 1px solid var(--border-light);
  }

  .comparison-cards article:last-child {
    border-bottom: 0;
  }
}

@media (max-width: 760px) {
  .proof-record > div {
    gap: 9px;
    padding: 16px 0;
  }

  .comparison-cards {
    margin-top: 22px;
  }

  .comparison-cards article {
    padding: 18px 0;
  }

  .review-copy-layout h1 {
    font-size: clamp(2.3rem, 10vw, 3.2rem);
  }
}

/* Contrast pass: break up the long run of light landing sections. */
.live-proof-section,
.kit-section,
.faq-section {
  background:
    linear-gradient(180deg, rgba(37, 99, 235, 0.035), transparent 42%),
    var(--bg-band);
}

.compare-section,
.roadmap-section {
  background: var(--bg-card);
}

.loop-section,
.offer-section {
  background:
    linear-gradient(180deg, rgba(56, 189, 248, 0.06), transparent 48%),
    var(--bg-dark);
  color: var(--text-inverse);
}

.section-paper.loop-section p,
.section-paper.offer-section p,
.section-paper.loop-section .section-heading p,
.section-paper.offer-section .section-heading p,
.section-paper.offer-section .risk-clarity {
  color: var(--text-inverse-muted) !important;
}

.section-paper.loop-section h2,
.section-paper.offer-section h2,
.section-paper.loop-section h3,
.section-paper.offer-section h3 {
  color: var(--text-inverse);
}

.loop-section .loop-sequence,
.loop-section .operating-law,
.offer-section .offer-path {
  border-color: var(--border-dark);
}

.loop-section .loop-stages {
  background: var(--bg-dark-elevated);
  border-color: var(--border-dark);
  box-shadow: none;
}

.loop-section .loop-stages li {
  border-color: var(--border-dark);
}

.loop-section .loop-stages span,
.loop-section .loop-stages p {
  color: var(--text-inverse-muted);
}

.loop-section .loop-stages strong,
.loop-section .operating-law strong {
  color: var(--text-inverse);
}

.offer-section .offer-path span {
  color: var(--text-inverse);
  border-color: var(--border-dark);
}

.offer-section .pricing-card {
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.28);
}

/* Visual polish pass: keep structural rules, soften row hairlines. */
.proof-record,
.comparison-cards,
.kit-manifest,
.roadmap,
.faq-list {
  border-color: var(--border-light-soft);
}

.proof-record > div,
.comparison-cards article,
.kit-manifest-head,
.kit-manifest-groups section,
.roadmap article,
.faq-list details,
.bridge-column li,
.comparison-close {
  border-color: var(--border-light-soft);
}

.bridge-spine::before {
  background: var(--border-light-soft);
}

.bridge-spine span {
  border-color: var(--border-light-soft);
}

.artifact-record-preview,
.record-preview-header,
.record-rows article,
.record-preview-footer,
.loop-section .loop-sequence,
.loop-section .operating-law,
.loop-section .loop-stages,
.loop-section .loop-stages li,
.offer-section .offer-path,
.offer-section .offer-path span {
  border-color: var(--border-dark-soft);
}

/* Visual audit pass: balanced nav mark and exact sticky-header anchor framing. */
html {
  scroll-padding-top: var(--header-height);
}

.site-header {
  background: var(--bg-dark);
  backdrop-filter: none;
}

.brand {
  gap: 7px;
}

.brand-logo {
  width: 22px;
  height: 22px;
  padding: 2px;
}

main > section,
.anchor-alias,
#preview,
#live-proof,
#artifacts,
#factory-loop,
#compare,
#kit,
#roadmap,
#buy,
#faq {
  scroll-margin-top: var(--header-height);
}

.artifacts-section > .section-inner {
  padding-top: clamp(34px, 4vw, 52px);
}

@media (max-width: 760px) {
  .hero .section-inner.hero-grid {
    padding-bottom: 0;
  }

  .artifacts-section > .section-inner {
    padding-top: 24px;
  }
}

@media (max-width: 680px) {
  html {
    scroll-padding-top: var(--header-height);
  }

  .brand {
    gap: 6px;
  }

  .brand-logo {
    width: 22px;
    height: 22px;
  }

  main > section,
  .anchor-alias,
  #preview,
  #live-proof,
  #artifacts,
  #factory-loop,
  #compare,
  #kit,
  #roadmap,
  #buy,
  #faq {
    scroll-margin-top: var(--header-height);
  }
}

@media (max-width: 760px) {
  .bridge-spine {
    display: none;
  }
}

@media (max-width: 380px) {
  .brand-logo {
    width: 22px;
    height: 22px;
  }
}

/* Hero preview card polish: make the in-card CTA and include items feel intentional, not generic blue blocks. */
.claim-card .claim-proof-list {
  gap: 8px;
}

.claim-card .claim-proof-list li {
  min-height: 38px;
  align-items: center;
  padding: 8px 10px;
  border: 1px solid rgba(148, 163, 184, 0.18);
  border-radius: var(--radius);
  background: rgba(15, 23, 42, 0.46);
  color: var(--text-inverse);
}

.claim-card .claim-proof-list li::before {
  margin-top: 0;
}

.claim-card .button-primary {
  background: var(--text-inverse);
  border-color: rgba(248, 250, 252, 0.92);
  color: var(--bg-hero);
  box-shadow: 0 12px 26px rgba(15, 23, 42, 0.32);
}

.claim-card .button-primary:hover {
  background: #ffffff;
  border-color: #ffffff;
  color: var(--bg-hero);
}

@media (max-width: 760px) {
  .claim-card .claim-proof-list {
    gap: 8px;
  }

  .launch-panel {
    width: calc(100% + (var(--gutter) * 2));
    margin-left: calc(var(--gutter) * -1);
    margin-right: calc(var(--gutter) * -1);
  }

  .claim-card {
    border-right: 0;
    border-bottom: 0;
    border-left: 0;
    border-radius: 0;
  }

  .claim-card .claim-proof-list,
  .claim-card .form-grid,
  .claim-card .button,
  .claim-card .form-status,
  .claim-card [data-preview-download-link] {
    margin-left: var(--gutter);
    margin-right: var(--gutter);
  }

  .claim-card .button,
  .claim-card .form-status,
  .claim-card [data-preview-download-link] {
    width: calc(100% - (var(--gutter) * 2));
  }

  .bridge-column li:last-child {
    border-bottom: 0;
  }

  .comparison-close {
    border-top: 0;
  }
}

/* Contrast QA pass: keep the palette, but stop using bright artifact blue as small label text on light bands. */
.section-paper .proof-record span,
.section-paper .comparison-cards span,
.section-paper .kit-manifest-head span {
  color: var(--text-secondary);
  font-weight: 800;
}

.faq-list {
  overflow: visible;
}

/* Visual audit: artifact CTA placement and loop-band text contrast. */
.artifacts-section .artifact-heading {
  max-width: none;
  display: grid;
  grid-template-columns: minmax(0, 1fr) max-content;
  gap: clamp(18px, 3vw, 34px);
  align-items: end;
  margin-bottom: clamp(24px, 3vw, 36px);
}

.artifact-heading > div {
  max-width: 820px;
}

.artifact-heading .button {
  justify-self: end;
  white-space: nowrap;
}

.loop-section {
  background:
    linear-gradient(180deg, rgba(56, 189, 248, 0.08), rgba(15, 23, 42, 0) 44%),
    var(--bg-dark);
}

.loop-section .section-inner {
  padding-top: clamp(68px, 7vw, 106px);
  padding-bottom: clamp(68px, 7vw, 106px);
}

.loop-section .loop-sequence {
  padding: 16px 18px;
  border: 1px solid rgba(148, 163, 184, 0.2);
  border-radius: var(--radius);
  background: rgba(15, 23, 42, 0.58);
  color: rgba(248, 250, 252, 0.92) !important;
}

.loop-section .loop-stages {
  gap: 10px;
  border: 0;
  background: transparent;
  box-shadow: none;
}

.loop-section .loop-stages li,
.loop-section .loop-stages li:nth-child(2),
.loop-section .loop-stages li:last-child {
  padding: 16px;
  border: 1px solid rgba(148, 163, 184, 0.18);
  border-radius: var(--radius);
  background: rgba(23, 32, 51, 0.92);
}

.loop-section .loop-stages span {
  display: inline-grid;
  place-items: center;
  width: 38px;
  min-height: 30px;
  border: 1px solid rgba(56, 189, 248, 0.28);
  border-radius: 999px;
  background: rgba(56, 189, 248, 0.1);
  color: var(--accent-artifact);
}

.loop-section .loop-stages p,
.loop-section .operating-law p {
  color: rgba(226, 232, 240, 0.86) !important;
}

.section-paper.loop-section .loop-sequence {
  color: rgba(248, 250, 252, 0.92) !important;
}

.section-paper.loop-section .loop-stages p,
.section-paper.loop-section .operating-law p {
  color: rgba(226, 232, 240, 0.88) !important;
}

.loop-section .operating-law {
  padding: 22px;
  border: 1px solid rgba(148, 163, 184, 0.2);
  border-radius: var(--radius);
  background: rgba(23, 32, 51, 0.76);
}

.transform-section .comparison-close {
  border-top: 0;
  margin-bottom: clamp(42px, 5vw, 68px);
}

.roadmap-section .roadmap {
  overflow: visible;
}

.roadmap-section .roadmap article:hover {
  transform: none;
  border-color: var(--border-light);
  background: transparent;
  box-shadow: none;
}

@media (max-width: 860px) {
  .artifacts-section .artifact-heading {
    grid-template-columns: 1fr;
    align-items: start;
  }

  .artifact-heading .button {
    justify-self: start;
  }
}

@media (max-width: 760px) {
  .artifact-heading .button {
    width: 100%;
    justify-content: center;
  }

  .loop-section .loop-stages {
    gap: 8px;
  }

  .loop-section .loop-stages li,
  .loop-section .loop-stages li:nth-child(2),
  .loop-section .loop-stages li:last-child {
    grid-template-columns: 44px minmax(0, 1fr);
    row-gap: 8px;
    padding: 14px;
  }

  .loop-section .loop-stages p {
    grid-column: 2;
  }
}

/* Final line polish: keep row structure without heavy wireframe contrast. */
.section-paper .roadmap article,
.roadmap article,
.roadmap-section .roadmap article:hover {
  border-color: var(--border-light-soft);
}

.loop-section .loop-sequence,
.loop-section .operating-law,
.loop-section .loop-stages li,
.loop-section .loop-stages li:nth-child(2),
.loop-section .loop-stages li:last-child {
  border-color: var(--border-dark-soft);
}

/* Header fit pass: scale the mark from the brand text and preserve links in a collapsed menu. */
.site-header .nav-shell {
  position: relative;
  flex-wrap: nowrap;
}

.site-header .brand {
  min-width: 0;
  gap: 0.45em;
  line-height: 1;
}

.site-header .brand-logo,
.standalone-body .site-header .brand-logo {
  width: 1.16em;
  height: 1.16em;
  padding: 0.08em;
  display: inline-block;
  flex: 0 0 auto;
  object-fit: contain;
}

.site-header .nav-links {
  min-width: 0;
}

.nav-menu {
  display: none;
  position: relative;
  flex: 0 0 auto;
  margin-left: auto;
}

.nav-menu-toggle {
  min-width: 38px;
  min-height: 38px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 0 11px;
  border: 1px solid var(--border-dark);
  border-radius: var(--radius);
  background: rgba(248, 250, 252, 0.06);
  color: var(--text-inverse);
  cursor: pointer;
  font-size: 0.8rem;
  font-weight: 800;
  line-height: 1;
  list-style: none;
  list-style-type: none;
  appearance: none;
  transition:
    background-color 160ms ease,
    border-color 160ms ease,
    color 160ms ease;
}

.nav-menu-toggle:hover,
.nav-menu.is-open .nav-menu-toggle {
  border-color: rgba(248, 250, 252, 0.42);
  background: rgba(248, 250, 252, 0.11);
}

.nav-menu-icon {
  width: 18px;
  height: 18px;
}

.nav-menu-icon path {
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: square;
}

.nav-menu-panel {
  position: absolute;
  top: calc(100% + 10px);
  right: 0;
  z-index: 80;
  display: grid;
  gap: 4px;
  min-width: min(260px, calc(100vw - var(--gutter) * 2));
  padding: 8px;
  border: 1px solid var(--border-dark);
  border-radius: var(--radius);
  background: var(--bg-dark);
  box-shadow: var(--shadow);
}

.nav-menu-panel[hidden] {
  display: none;
}

.nav-menu-panel a {
  min-height: 40px;
  display: flex;
  align-items: center;
  padding: 0 10px;
  border-radius: var(--radius);
  color: var(--text-inverse) !important;
  font-size: 0.88rem;
  font-weight: 750;
  line-height: 1.2;
}

.nav-menu-panel a:hover,
.nav-menu-panel a:focus-visible {
  background: rgba(248, 250, 252, 0.1);
}

.nav-menu-panel .nav-menu-cta {
  margin-top: 4px;
  background: var(--cta-primary);
  color: var(--cta-primary-text) !important;
  justify-content: center;
}

.nav-menu-panel .nav-menu-cta:hover,
.nav-menu-panel .nav-menu-cta:focus-visible {
  background: var(--cta-primary-hover);
}

@media (min-width: 981px) {
  .nav-menu {
    display: none !important;
  }
}

@media (max-width: 980px) {
  .site-header .nav-shell {
    gap: 10px;
  }

  .site-header .nav-links {
    display: none;
  }

  .nav-menu {
    display: block;
  }

  .nav-menu-panel .nav-menu-cta {
    display: none;
  }
}

@media (max-width: 680px) {
  .site-header .brand {
    flex: 1 1 auto;
    font-size: 0.82rem;
  }

  .site-header .brand span {
    min-width: 0;
    overflow: hidden;
    text-overflow: ellipsis;
    line-height: 1.28;
    padding-block: 0.08em;
  }

  .nav-menu-toggle {
    padding: 0 10px;
  }
}

@media (max-width: 540px) {
  .site-header .nav-cta {
    display: none;
  }

  .nav-menu-panel .nav-menu-cta {
    display: flex;
  }
}

@media (max-width: 380px) {
  .nav-menu-label {
    display: none;
  }

  .nav-menu-toggle {
    padding: 0;
  }
}

/* Header alignment pass: size the mark from the navbar and keep the menu edge-stable. */
:root {
  --brand-logo-size: clamp(18px, calc(var(--header-height) * 0.3), 22px);
}

.site-header .brand {
  align-items: center;
}

.site-header .brand-logo,
.standalone-body .site-header .brand-logo {
  width: var(--brand-logo-size);
  height: var(--brand-logo-size);
  padding: 0;
}

@media (max-width: 980px) {
  .site-header .nav-cta {
    order: 2;
    margin-left: auto;
  }

  .site-header .nav-menu {
    order: 3;
    margin-left: 0;
  }
}

/* Home-page bridge to the Factory Sprint service (offer freeze 2026-06-08: service primary, kit self-serve). */
.service-bridge-inner {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: clamp(20px, 4vw, 48px);
  padding-top: clamp(30px, 4vw, 48px);
  padding-bottom: clamp(30px, 4vw, 48px);
}

.service-bridge-copy {
  max-width: 60ch;
}

.service-bridge-copy h2 {
  margin: 10px 0 12px;
  font-size: clamp(1.35rem, 2.4vw, 1.8rem);
}

.service-bridge-copy p:last-child {
  margin: 0;
  color: rgba(245, 244, 240, 0.82);
}

.service-bridge-cta {
  margin: 0;
  flex-shrink: 0;
}

/* Factory Sprint service route. Kept route-scoped so the existing kit funnel stays untouched. */
.factory-sprint-page {
  background: var(--charcoal);
}

.factory-sprint-page .site-header .nav-cta {
  display: inline-flex;
}

#audit,
#sprint,
#scope,
#apply {
  scroll-margin-top: calc(var(--header-height) + 8px);
}

.factory-sprint-hero .section-inner {
  padding-top: clamp(28px, 4.2vw, 52px);
  padding-bottom: clamp(24px, 3.6vw, 42px);
}

.factory-sprint-hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 0.62fr);
  gap: clamp(28px, 6vw, 74px);
  align-items: center;
}

.factory-sprint-copy h1 {
  max-width: 10.8em;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(3.55rem, 5vw, 4.75rem);
  line-height: 0.98;
  letter-spacing: 0;
}

.factory-sprint-copy .hero-subhead {
  max-width: 760px;
}

.factory-sprint-pricing {
  display: grid;
  gap: 12px;
}

.factory-sprint-pricing article {
  display: grid;
  gap: 8px;
  padding: clamp(16px, 2.3vw, 22px);
  border: 1px solid var(--line-dark);
  border-radius: var(--radius);
  background: rgba(243, 239, 228, 0.055);
}

.factory-sprint-pricing article span,
.factory-sprint-section-head .section-label,
.factory-sprint-pricing .factory-sprint-payment-note {
  font-family: "SFMono-Regular", Consolas, "Liberation Mono", monospace;
}

.factory-sprint-pricing article span {
  color: var(--copper);
  font-size: 0.75rem;
  text-transform: uppercase;
}

.factory-sprint-pricing article strong {
  font-size: 3rem;
  line-height: 1;
}

.factory-sprint-pricing article p,
.factory-sprint-payment-note {
  color: var(--paper-2);
}

.factory-sprint-payment-note {
  font-size: 0.76rem;
  line-height: 1.45;
}

.factory-sprint-section .section-inner {
  padding-top: clamp(40px, 5vw, 64px);
  padding-bottom: clamp(42px, 5.2vw, 68px);
}

.factory-sprint-apply-section .section-inner {
  padding-top: clamp(34px, 4.4vw, 54px);
  padding-bottom: clamp(38px, 5vw, 64px);
}

.factory-sprint-split h2,
.factory-sprint-section-head h2,
.factory-sprint-fit h2,
.factory-sprint-proof h2,
.factory-sprint-apply-layout h2 {
  max-width: 820px;
  font-size: clamp(3rem, 4.7vw, 3.6rem);
  line-height: 1;
  letter-spacing: 0;
}

.factory-sprint-apply-layout h2 {
  max-width: 620px;
  font-size: clamp(2.35rem, 3.8vw, 3rem);
  line-height: 1.02;
}

.factory-sprint-section-head {
  display: grid;
  gap: 10px;
  margin-bottom: clamp(24px, 4vw, 42px);
}

.factory-sprint-scope-grid {
  display: grid;
  gap: 12px;
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.factory-sprint-scope-grid article {
  min-height: 180px;
  display: grid;
  align-content: space-between;
  gap: 18px;
  padding: clamp(18px, 2.5vw, 24px);
  border: 1px solid var(--line-dark);
  border-radius: var(--radius);
  background: rgba(243, 239, 228, 0.055);
}

.factory-sprint-scope-grid span {
  color: var(--copper);
  font-family: "SFMono-Regular", Consolas, "Liberation Mono", monospace;
  font-size: 0.78rem;
}

.factory-sprint-scope-grid h3,
.factory-sprint-lists h3 {
  font-size: 1.65rem;
  line-height: 1.08;
}

.factory-sprint-scope-grid p {
  color: var(--paper-2);
}

.factory-sprint-fit,
.factory-sprint-proof,
.factory-sprint-apply-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.86fr) minmax(0, 1.14fr);
  gap: clamp(28px, 6vw, 72px);
  align-items: start;
}

.factory-sprint-lists {
  display: grid;
  gap: 12px;
}

.factory-sprint-lists article {
  padding: clamp(18px, 2.5vw, 26px);
  border: 1px solid var(--line-light);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.42);
}

.factory-sprint-lists ul {
  display: grid;
  gap: 9px;
  margin-top: 14px;
  padding-left: 1.1em;
}

.factory-sprint-lists li {
  list-style-position: outside;
  color: rgba(23, 21, 18, 0.76);
}

.factory-sprint-path-cards,
.factory-sprint-proof-statements {
  display: grid;
  gap: 12px;
}

.factory-sprint-path-cards {
  margin-top: 24px;
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.factory-sprint-path-cards article,
.factory-sprint-proof-statements article {
  border: 1px solid var(--line-dark);
  border-radius: var(--radius);
  background: rgba(243, 239, 228, 0.055);
}

.factory-sprint-path-cards article {
  padding: 16px;
}

.factory-sprint-path-cards h3,
.factory-sprint-proof-statements h3,
.factory-sprint-form-head h3 {
  font-size: 1.15rem;
  line-height: 1.1;
  color: var(--paper);
}

.factory-sprint-path-cards p,
.factory-sprint-proof-statements p,
.factory-sprint-form-head p {
  margin-top: 8px;
  color: var(--paper-2);
}

.factory-sprint-proof-statements {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.factory-sprint-proof-statements article {
  min-height: 170px;
  display: grid;
  align-content: space-between;
  gap: 18px;
  padding: clamp(18px, 2.4vw, 24px);
}

.factory-sprint-terms span {
  display: grid;
  place-items: center;
  min-height: 54px;
  padding: 12px;
  border: 1px solid var(--line-dark);
  border-radius: var(--radius);
  background: rgba(243, 239, 228, 0.055);
  color: var(--paper-2);
  font-family: "SFMono-Regular", Consolas, "Liberation Mono", monospace;
  font-size: 0.76rem;
  text-align: center;
}

.factory-sprint-apply-layout > div > p {
  max-width: 680px;
  margin-top: 18px;
  color: var(--paper-2);
}

.factory-sprint-terms {
  display: grid;
  gap: 6px;
  margin-top: 20px;
}

.factory-sprint-form {
  padding: clamp(18px, 3vw, 28px);
  border: 1px solid var(--line-dark);
  border-radius: var(--radius);
  background: rgba(243, 239, 228, 0.055);
  box-shadow: var(--shadow);
}

.factory-sprint-apply-layout .factory-sprint-terms span {
  min-height: auto;
  place-items: start;
  justify-content: start;
  padding: 0;
  border: 0;
  background: transparent;
  color: var(--paper-2);
  font-family: inherit;
  font-size: 0.9rem;
  line-height: 1.45;
  text-align: left;
}

.factory-sprint-apply-layout .factory-sprint-terms span::before {
  content: "- ";
}

.factory-sprint-form-head {
  margin-bottom: 18px;
}

.factory-sprint-form label,
.factory-sprint-form .form-status {
  color: var(--paper);
}

.factory-sprint-form .form-status[data-state="idle"] {
  color: var(--muted);
}

.factory-sprint-form .form-status[data-state="pending"] {
  color: var(--copper);
}

.factory-sprint-form .form-status[data-state="success"] {
  color: var(--green);
}

.factory-sprint-form .form-status[data-state="error"] {
  color: #ff9b9b;
}

@media (max-width: 980px) {
  .factory-sprint-hero-grid,
  .factory-sprint-fit,
  .factory-sprint-proof,
  .factory-sprint-apply-layout {
    grid-template-columns: 1fr;
  }

  .factory-sprint-apply-layout .factory-sprint-form {
    order: -1;
  }
}

@media (max-width: 1120px) {
  .factory-sprint-copy h1 {
    font-size: 4.05rem;
  }

  .factory-sprint-split h2,
  .factory-sprint-section-head h2,
  .factory-sprint-fit h2,
  .factory-sprint-proof h2,
  .factory-sprint-apply-layout h2 {
    font-size: 3.2rem;
  }
}

@media (max-width: 980px) {
  .factory-sprint-copy h1 {
    font-size: 3.35rem;
  }

  .factory-sprint-split h2,
  .factory-sprint-section-head h2,
  .factory-sprint-fit h2,
  .factory-sprint-proof h2,
  .factory-sprint-apply-layout h2 {
    font-size: 2.9rem;
  }

  .factory-sprint-apply-layout h2 {
    font-size: 2.55rem;
  }
}

@media (max-width: 760px) {
  .factory-sprint-hero .section-inner {
    padding-top: 24px;
    padding-bottom: 26px;
  }

  .factory-sprint-hero-grid {
    gap: 18px;
  }

  .factory-sprint-scope-grid,
  .factory-sprint-proof-statements,
  .factory-sprint-path-cards {
    grid-template-columns: 1fr;
  }

  .factory-sprint-payment-note {
    display: none;
  }

  .factory-sprint-copy h1 {
    font-size: 2.28rem;
    line-height: 1.02;
  }

  .factory-sprint-copy .hero-subhead {
    font-size: 0.98rem;
  }

  .factory-sprint-pricing {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 8px;
  }

  .factory-sprint-pricing article {
    gap: 5px;
    padding: 13px 14px;
  }

  .factory-sprint-pricing article p {
    display: none;
  }

  .factory-sprint-pricing article span {
    font-size: 0.64rem;
  }

  .factory-sprint-pricing article strong {
    font-size: 1.95rem;
  }

  .factory-sprint-split h2,
  .factory-sprint-section-head h2,
  .factory-sprint-fit h2,
  .factory-sprint-proof h2,
  .factory-sprint-apply-layout h2 {
    font-size: 2.35rem;
  }

  .factory-sprint-apply-layout h2 {
    font-size: 2.05rem;
  }

  .factory-sprint-scope-grid h3,
  .factory-sprint-lists h3 {
    font-size: 1.4rem;
  }
}

@media (max-width: 420px) {
  .factory-sprint-copy h1 {
    font-size: 2.18rem;
  }
}
