:root {
  --ink: #1c1b17;
  --ink-soft: #2b2a24;
  --paper: #f3eee3;
  --paper-soft: #faf7f0;
  --oat: #e5ddcd;
  --line: #cec3ae;
  --sage: #7f896e;
  --sage-dark: #56614b;
  --sage-pale: #d8ddcc;
  --clay: #a56d57;
  --muted: #6e6a61;
  --white: #fffdf8;
  --serif: "Instrument Serif", Georgia, serif;
  --sans: "DM Sans", Arial, sans-serif;
  --mono: "IBM Plex Mono", monospace;
  --shadow: 0 26px 74px rgba(37, 33, 25, .14);
  --radius: 24px;
}

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

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

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

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

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

button,
input,
textarea {
  font: inherit;
}

button {
  color: inherit;
}

[hidden] {
  display: none !important;
}

::selection {
  background: var(--sage-pale);
}

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

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

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

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

.funnel-header {
  position: relative;
  z-index: 10;
  border-bottom: 1px solid rgba(255, 253, 248, .1);
  background: rgba(28, 27, 23, .97);
  backdrop-filter: blur(14px);
}

.funnel-header .f-shell {
  display: flex;
  min-height: 78px;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.f-brand img {
  width: 154px;
  height: auto;
}

.header-note {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: rgba(255, 253, 248, .72);
  font-family: var(--mono);
  font-size: .7rem;
  font-weight: 600;
  letter-spacing: .07em;
  text-transform: uppercase;
}

.header-note::before {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--sage);
  content: "";
}

.f-hero {
  padding: clamp(64px, 8vw, 112px) 0 72px;
}

.f-hero-grid {
  display: grid;
  align-items: center;
  gap: clamp(44px, 7vw, 92px);
  grid-template-columns: minmax(0, 1.03fr) minmax(380px, .97fr);
}

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

.f-hero h1,
.f-section h2,
.f-card h2,
.privacy-page h1 {
  margin: 0;
  font-family: var(--serif);
  font-weight: 400;
  letter-spacing: -.035em;
  line-height: .98;
}

.f-hero h1 {
  max-width: 700px;
  font-size: clamp(3.45rem, 7vw, 6.6rem);
}

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

.f-lead {
  max-width: 650px;
  margin: 28px 0 0;
  color: #45423b;
  font-size: clamp(1.08rem, 1.5vw, 1.28rem);
  line-height: 1.6;
}

.f-actions {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 16px 22px;
  margin-top: 34px;
}

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

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

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

.f-button-primary:hover {
  background: #303028;
}

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

.f-button-quiet {
  border-color: var(--line);
  background: transparent;
}

.f-text-link {
  border-bottom: 1px solid currentColor;
  font-weight: 700;
}

.hero-assurances {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 18px;
  margin: 26px 0 0;
  padding: 0;
  color: var(--muted);
  font-size: .82rem;
  list-style: none;
}

.hero-assurances li {
  display: flex;
  align-items: center;
  gap: 8px;
}

.hero-assurances li::before {
  color: var(--sage-dark);
  content: "✓";
  font-weight: 700;
}

.path-board {
  overflow: hidden;
  border: 1px solid #3b3a33;
  border-radius: var(--radius);
  background: var(--ink);
  color: var(--white);
  box-shadow: var(--shadow);
}

.path-board-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 18px;
  border-bottom: 1px solid rgba(255, 255, 255, .12);
  color: #d7d1c5;
  font-family: var(--mono);
  font-size: .68rem;
  letter-spacing: .05em;
  text-transform: uppercase;
}

.path-board-top i {
  display: flex;
  gap: 5px;
}

.path-board-top i::before,
.path-board-top i::after,
.path-board-top i {
  font-style: normal;
}

.path-board-top i::before,
.path-board-top i::after {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #777469;
  content: "";
}

.path-board-body {
  padding: clamp(26px, 4vw, 42px);
}

.path-board-body > span {
  color: var(--sage-pale);
  font-family: var(--mono);
  font-size: .68rem;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.path-board-body h2 {
  max-width: 480px;
  margin: 16px 0 12px;
  font-family: var(--serif);
  font-size: clamp(2rem, 3.8vw, 3.4rem);
  font-weight: 400;
  letter-spacing: -.03em;
  line-height: 1;
}

.path-board-body > p {
  margin: 0;
  color: #cfc9bd;
  font-size: .93rem;
}

.path-steps {
  display: grid;
  gap: 10px;
  margin-top: 30px;
}

.path-step {
  display: grid;
  align-items: center;
  gap: 14px;
  padding: 15px 16px;
  border: 1px solid rgba(255, 255, 255, .1);
  border-radius: 14px;
  background: rgba(255, 255, 255, .045);
  grid-template-columns: 34px 1fr auto;
}

.path-step > i {
  display: grid;
  width: 30px;
  height: 30px;
  place-items: center;
  border-radius: 50%;
  background: var(--sage);
  color: var(--ink);
  font-size: .76rem;
  font-style: normal;
  font-weight: 700;
}

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

.path-step b {
  font-size: .88rem;
}

.path-step small {
  color: #aaa59a;
  font-size: .72rem;
}

.path-step > em {
  color: var(--sage-pale);
  font-family: var(--mono);
  font-size: .63rem;
  font-style: normal;
  text-transform: uppercase;
}

.credential-band {
  padding-bottom: 72px;
}

.credential-inner {
  display: grid;
  align-items: center;
  gap: 30px;
  padding: 24px 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  grid-template-columns: 220px 1fr auto;
}

.credential-inner img {
  width: 210px;
}

.credential-inner p {
  margin: 0;
  color: #4c4941;
  font-size: .94rem;
}

.credential-inner p strong {
  color: var(--ink);
}

.credential-inner > span {
  color: var(--muted);
  font-family: var(--mono);
  font-size: .64rem;
  letter-spacing: .06em;
  text-align: right;
  text-transform: uppercase;
}

.f-section {
  padding: clamp(82px, 9vw, 132px) 0;
}

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

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

.f-section-heading {
  max-width: 800px;
  margin-bottom: 52px;
}

.f-section h2,
.f-card h2 {
  font-size: clamp(2.65rem, 5vw, 4.85rem);
}

.f-section-heading > p:last-child {
  max-width: 690px;
  margin: 22px 0 0;
  color: var(--muted);
  font-size: 1.08rem;
}

.f-section-dark .f-kicker,
.f-section-dark .f-section-heading > p:last-child {
  color: #c7cfc0;
}

.contrast-demo {
  display: grid;
  gap: 28px;
  grid-template-columns: .72fr 1.28fr;
}

.contrast-copy {
  align-self: center;
}

.contrast-copy h3 {
  margin: 0 0 16px;
  font-family: var(--serif);
  font-size: clamp(2rem, 3.6vw, 3.25rem);
  font-weight: 400;
  line-height: 1;
}

.contrast-copy p {
  margin: 0;
  color: var(--muted);
}

.demo-tabs {
  display: inline-flex;
  gap: 4px;
  margin-top: 26px;
  padding: 4px;
  border: 1px solid var(--line);
  border-radius: 999px;
}

.demo-tabs button {
  padding: 9px 15px;
  border: 0;
  border-radius: 999px;
  background: transparent;
  cursor: pointer;
  font-size: .78rem;
  font-weight: 700;
}

.demo-tabs button.is-active {
  background: var(--ink);
  color: var(--white);
}

.demo-window {
  min-height: 430px;
  padding: 20px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--oat);
}

.demo-state {
  min-height: 388px;
  overflow: hidden;
  border-radius: 16px;
  background: var(--white);
  box-shadow: 0 18px 50px rgba(39, 34, 25, .1);
}

.demo-nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 15px 18px;
  border-bottom: 1px solid #e4ded3;
  color: var(--muted);
  font-size: .68rem;
}

.demo-nav b {
  color: var(--ink);
  font-size: .76rem;
}

.demo-message {
  padding: clamp(34px, 5vw, 58px);
}

.demo-message > span {
  color: var(--sage-dark);
  font-family: var(--mono);
  font-size: .63rem;
  font-weight: 600;
  letter-spacing: .06em;
  text-transform: uppercase;
}

.demo-message h4 {
  max-width: 580px;
  margin: 13px 0 14px;
  font-family: var(--serif);
  font-size: clamp(2.1rem, 4vw, 3.6rem);
  font-weight: 400;
  letter-spacing: -.03em;
  line-height: .98;
}

.demo-message p {
  max-width: 560px;
  margin: 0;
  color: var(--muted);
  font-size: .9rem;
}

.demo-cta {
  display: inline-flex;
  margin-top: 22px;
  padding: 10px 15px;
  border-radius: 999px;
  background: var(--sage-dark);
  color: var(--white);
  font-size: .72rem;
  font-weight: 700;
}

.demo-state-before .demo-message > span {
  color: #9b5f4f;
}

.demo-state-before .demo-cta {
  background: #c7c1b6;
  color: #59564f;
}

.translation-flags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 24px;
}

.translation-flags span {
  padding: 7px 10px;
  border: 1px solid #dad3c7;
  border-radius: 999px;
  color: var(--muted);
  font-family: var(--mono);
  font-size: .58rem;
  text-transform: uppercase;
}

.snapshot-panel {
  display: grid;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: var(--shadow);
  grid-template-columns: 1.04fr .96fr;
}

.snapshot-copy,
.snapshot-form {
  padding: clamp(30px, 5vw, 56px);
}

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

.snapshot-copy .f-kicker {
  color: var(--sage-pale);
}

.snapshot-copy h2 {
  font-size: clamp(2.6rem, 4.7vw, 4.6rem);
}

.snapshot-copy > p:not(.f-kicker) {
  margin: 22px 0 0;
  color: #cbc5b8;
}

.snapshot-output {
  display: grid;
  gap: 12px;
  margin-top: 30px;
}

.snapshot-output div {
  display: grid;
  gap: 4px;
  padding: 15px 0;
  border-top: 1px solid rgba(255, 255, 255, .13);
  grid-template-columns: 30px 1fr;
}

.snapshot-output span {
  color: var(--sage-pale);
  font-family: var(--mono);
  font-size: .66rem;
}

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

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

.snapshot-output small {
  color: #aaa498;
  font-size: .74rem;
}

.snapshot-first-look {
  margin-top: 28px;
  padding: 17px 18px;
  border: 1px solid rgba(216, 221, 204, .28);
  border-radius: 14px;
  background: rgba(255, 255, 255, .055);
}

.snapshot-first-look > span,
.snapshot-first-look > b {
  display: block;
}

.snapshot-first-look > span {
  color: var(--sage-pale);
  font-family: var(--mono);
  font-size: .59rem;
  font-weight: 600;
  letter-spacing: .07em;
  text-transform: uppercase;
}

.snapshot-first-look > b {
  margin-top: 6px;
  font-size: .9rem;
}

.snapshot-first-look > p {
  margin: 8px 0 0;
  color: #bdb7aa;
  font-size: .73rem;
  line-height: 1.5;
}

.snapshot-form {
  align-self: center;
}

.snapshot-form h3,
.gate-card h3 {
  margin: 0 0 8px;
  font-family: var(--serif);
  font-size: 2.25rem;
  font-weight: 400;
  line-height: 1;
}

.snapshot-form > p:first-of-type,
.gate-card > p:first-of-type {
  margin: 0 0 24px;
  color: var(--muted);
  font-size: .88rem;
}

.f-field {
  margin-bottom: 17px;
}

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

.f-field label span {
  margin-left: .35rem;
  color: var(--muted);
  font-family: var(--mono);
  font-size: .58rem;
  font-weight: 500;
  letter-spacing: .04em;
  text-transform: uppercase;
}

.f-field input {
  width: 100%;
  min-height: 54px;
  padding: 13px 14px;
  border: 1px solid #beb4a3;
  border-radius: 10px;
  background: var(--paper-soft);
  color: var(--ink);
}

.f-field input::placeholder {
  color: #938d82;
}

.f-field input:focus {
  border-color: var(--sage-dark);
  box-shadow: 0 0 0 2px rgba(86, 97, 75, .16);
}

.f-field input:focus-visible {
  outline: 3px solid var(--clay);
  outline-offset: 2px;
}

.snapshot-form .f-button,
.gate-card .f-button {
  width: 100%;
}

.form-note,
.form-status {
  margin: 12px 0 0;
  color: var(--muted);
  font-size: .72rem;
  line-height: 1.5;
}

.form-note a {
  text-decoration: underline;
  text-underline-offset: 2px;
}

.snapshot-form .capacity-note {
  margin: 14px 0 0;
  padding: 10px 12px;
  border-left: 2px solid var(--sage);
  background: #f1f2ea;
  color: #55594e;
  font-size: .72rem;
  line-height: 1.45;
}

.form-status {
  min-height: 1.1em;
  font-weight: 600;
}

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

.honey {
  position: absolute !important;
  left: -10000px !important;
  width: 1px !important;
  height: 1px !important;
  opacity: 0 !important;
}

button:disabled {
  cursor: wait;
  opacity: .68;
}

.snapshot-success,
.gate-success {
  padding: 22px;
  border: 1px solid var(--sage);
  border-radius: 16px;
  background: #edf0e6;
}

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

.snapshot-success h3,
.gate-success h3 {
  margin-top: 12px;
}

.snapshot-success p,
.gate-success p {
  margin: 10px 0 0;
  color: #4f5448;
  font-size: .88rem;
}

.snapshot-success.snapshot-first-look {
  min-width: 0;
  margin-top: 0;
  padding: clamp(20px, 4vw, 30px);
  border-color: #b8bfa7;
  background: #f1f2e9;
  box-shadow: 0 18px 42px rgba(46, 49, 39, .08);
}

.snapshot-first-look-notice {
  max-width: none;
  padding: 12px 14px;
  border-left: 3px solid var(--sage);
  background: rgba(255, 253, 248, .72);
  overflow-wrap: anywhere;
}

.snapshot-first-look-findings {
  display: grid;
  min-width: 0;
  gap: 10px;
  margin-top: 18px;
}

.snapshot-first-look-finding {
  display: grid;
  min-width: 0;
  padding: 14px;
  border: 1px solid #d5d9c9;
  border-radius: 12px;
  background: var(--white);
  grid-template-columns: 34px minmax(0, 1fr);
  gap: 12px;
}

.snapshot-first-look-finding > i {
  display: grid;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: var(--ink);
  color: var(--white);
  font-family: var(--mono);
  font-size: .62rem;
  font-style: normal;
  place-items: center;
}

.snapshot-first-look-finding > div {
  min-width: 0;
}

.snapshot-first-look-finding span,
.snapshot-first-look-priority > span {
  display: block;
  color: var(--sage-dark);
  font-family: var(--mono);
  font-size: .6rem;
  font-weight: 600;
  letter-spacing: .06em;
  text-transform: uppercase;
}

.snapshot-first-look-finding strong,
.snapshot-first-look-priority > strong {
  display: block;
  margin-top: 4px;
  color: var(--ink);
  font-size: .85rem;
  line-height: 1.4;
  overflow-wrap: anywhere;
}

.snapshot-first-look-finding p,
.snapshot-first-look-priority > p {
  max-width: none;
  margin-top: 5px;
  color: var(--muted);
  font-size: .73rem;
  line-height: 1.5;
  overflow-wrap: anywhere;
}

.snapshot-first-look-finding small {
  display: block;
  margin-top: 8px;
  color: #3f433b;
  font-size: .72rem;
  line-height: 1.55;
  overflow-wrap: anywhere;
}

.snapshot-first-look-finding small + small {
  padding-top: 8px;
  border-top: 1px solid #e3e6dc;
}

.snapshot-first-look-priority {
  min-width: 0;
  margin-top: 12px;
  padding: 15px 16px;
  border: 1px solid rgba(165, 109, 87, .32);
  border-radius: 12px;
  background: #f3e8df;
}

.snapshot-first-look-human {
  max-width: none;
  margin-top: 18px !important;
  padding-top: 16px;
  border-top: 1px solid #cdd2c1;
  color: #40453b !important;
  line-height: 1.55;
  overflow-wrap: anywhere;
}

.snapshot-proof-grid {
  display: grid;
  align-items: start;
  gap: clamp(34px, 6vw, 72px);
  grid-template-columns: .72fr 1.28fr;
}

.snapshot-proof-copy {
  position: sticky;
  top: 30px;
}

.snapshot-proof-copy h2 {
  max-width: 480px;
  font-size: clamp(2.7rem, 4.8vw, 4.6rem);
}

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

.snapshot-proof-copy .snapshot-proof-bridge {
  padding-top: 18px;
  border-top: 1px solid var(--line);
}

.snapshot-proof-copy .f-actions {
  align-items: flex-start;
  margin-top: 28px;
  flex-direction: column;
}

.snapshot-evidence {
  min-width: 0;
  overflow: hidden;
  border: 1px solid #cfc7b8;
  border-radius: 18px;
  background: var(--white);
  box-shadow: 0 28px 70px rgba(50, 44, 33, .12);
}

.snapshot-browser-bar {
  display: flex;
  min-height: 50px;
  align-items: center;
  gap: 14px;
  padding: 10px 16px;
  border-bottom: 1px solid var(--line);
  background: #f4f0e7;
}

.snapshot-browser-dots {
  display: flex;
  flex: 0 0 auto;
  gap: 5px;
}

.snapshot-browser-dots i {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #beb6a8;
}

.snapshot-browser-dots i:first-child {
  background: var(--clay);
}

.snapshot-browser-address {
  min-width: 0;
  overflow: hidden;
  flex: 1;
  padding: 6px 11px;
  border: 1px solid #d8d0c3;
  border-radius: 7px;
  background: var(--white);
  color: #69655d;
  font-family: var(--mono);
  font-size: .58rem;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.snapshot-browser-bar > b,
.snapshot-annotations li > span,
.snapshot-annotations b,
.snapshot-evidence-verdict span {
  color: var(--sage-dark);
  font-family: var(--mono);
  font-size: .61rem;
  font-weight: 600;
  letter-spacing: .06em;
  text-transform: uppercase;
}

.snapshot-browser-bar > b {
  flex: 0 0 auto;
  padding: 6px 8px;
  border: 1px solid #cfc7b8;
  border-radius: 999px;
  font-size: .52rem;
}

.snapshot-evidence-canvas {
  display: grid;
  gap: 18px;
  padding: 20px;
  background: #ebe6dc;
  grid-template-columns: minmax(0, 1.12fr) minmax(220px, .88fr);
}

.snapshot-page-mock {
  min-width: 0;
  overflow: hidden;
  border: 1px solid #d4ccbe;
  border-radius: 11px;
  background: var(--white);
  box-shadow: 0 12px 30px rgba(45, 40, 30, .1);
}

.snapshot-page-nav {
  display: flex;
  min-height: 52px;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 0 22px;
  border-bottom: 1px solid #ebe5da;
  font-size: .57rem;
  letter-spacing: .06em;
  text-transform: uppercase;
}

.snapshot-page-nav span {
  color: #89847b;
}

.snapshot-page-hero {
  position: relative;
  min-height: 430px;
  padding: 48px 30px 28px;
}

.snapshot-page-hero > small {
  color: #8d6657;
  font-family: var(--mono);
  font-size: .58rem;
  font-weight: 600;
  letter-spacing: .06em;
  text-transform: uppercase;
}

.snapshot-page-hero h3 {
  max-width: 390px;
  margin: 15px 0 14px;
  font-family: var(--serif);
  font-size: clamp(2.25rem, 4.2vw, 3.5rem);
  font-weight: 400;
  letter-spacing: -.035em;
  line-height: .95;
}

.snapshot-page-hero > p {
  max-width: 350px;
  margin: 0;
  color: #777269;
  font-size: .72rem;
}

.snapshot-page-button {
  display: inline-flex;
  min-height: 36px;
  align-items: center;
  margin-top: 22px;
  padding: 8px 15px;
  border-radius: 999px;
  background: #c6c1b7;
  color: #57534d;
  font-size: .67rem;
  font-weight: 700;
}

.snapshot-proof-placeholder {
  position: relative;
  display: grid;
  align-items: end;
  gap: 5px;
  margin-top: 38px;
  padding: 17px;
  border: 1px dashed #c9c1b4;
  background: #f7f4ed;
  grid-template-columns: repeat(3, 1fr);
}

.snapshot-proof-placeholder i {
  display: block;
  height: 28px;
  background: #ddd7cc;
}

.snapshot-proof-placeholder i:nth-of-type(2) {
  height: 42px;
}

.snapshot-proof-placeholder small {
  grid-column: 1 / -1;
  color: #888279;
  font-size: .58rem;
  text-transform: uppercase;
}

.snapshot-pin {
  position: absolute;
  display: grid;
  z-index: 2;
  width: 30px;
  height: 30px;
  place-items: center;
  border-radius: 50%;
  border: 2px solid var(--white);
  background: var(--clay);
  box-shadow: 0 6px 16px rgba(65, 43, 33, .22);
  color: var(--white);
  font-family: var(--mono);
  font-size: .58rem;
  font-weight: 600;
}

.snapshot-pin-one {
  top: 42px;
  right: 18px;
}

.snapshot-pin-two {
  top: 245px;
  right: 30px;
}

.snapshot-pin-three {
  top: -15px;
  right: 12px;
}

.snapshot-annotations {
  display: grid;
  align-content: start;
  gap: 10px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.snapshot-annotations li {
  display: grid;
  gap: 11px;
  padding: 16px;
  border: 1px solid #d5ccbd;
  border-radius: 11px;
  background: var(--white);
  grid-template-columns: 30px 1fr;
}

.snapshot-annotations li > span {
  display: grid;
  width: 28px;
  height: 28px;
  place-items: center;
  border: 1px solid var(--clay);
  border-radius: 50%;
  color: var(--clay);
}

.snapshot-annotations b {
  color: var(--ink);
}

.snapshot-annotations p,
.snapshot-annotations small {
  display: block;
  margin: 6px 0 0;
  color: var(--muted);
  font-size: .69rem;
  line-height: 1.45;
}

.snapshot-annotations small {
  color: #3f433b;
  font-weight: 600;
}

.snapshot-evidence-verdict {
  display: grid;
  gap: 1px;
  padding: 1px;
  background: #9aa08e;
  grid-template-columns: 1fr 1fr;
}

.snapshot-evidence-verdict div {
  min-height: 112px;
  padding: 18px 20px;
  background: #e7eadf;
}

.snapshot-evidence-verdict strong {
  display: block;
  margin-top: 8px;
  color: #30342d;
  font-family: var(--serif);
  font-size: 1.2rem;
  font-weight: 400;
  line-height: 1.1;
}

.offer-layout {
  display: grid;
  gap: 32px;
  grid-template-columns: .78fr 1.22fr;
}

.offer-sticky {
  align-self: start;
  position: sticky;
  top: 30px;
}

.offer-sticky p:not(.f-kicker) {
  max-width: 460px;
  color: var(--muted);
}

.offer-price {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 20px;
  margin-top: 30px;
  padding-top: 24px;
  border-top: 1px solid var(--line);
}

.offer-price strong {
  font-family: var(--serif);
  font-size: 4.1rem;
  font-weight: 400;
  line-height: .9;
}

.offer-price span {
  max-width: 160px;
  color: var(--muted);
  font-size: .74rem;
  text-align: right;
}

.offer-stack {
  display: grid;
  gap: 14px;
}

.offer-item {
  display: grid;
  gap: 16px;
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: 16px;
  background: var(--paper-soft);
  grid-template-columns: 34px 1fr;
}

.offer-item > span {
  color: var(--sage-dark);
  font-family: var(--mono);
  font-size: .68rem;
  font-weight: 600;
}

.offer-item h3 {
  margin: 0 0 8px;
  font-size: 1.08rem;
  line-height: 1.3;
}

.offer-item p {
  margin: 0;
  color: var(--muted);
  font-size: .84rem;
}

.specimen-section {
  background: #25241f;
  color: var(--white);
}

.specimen-section .f-kicker {
  color: #c6cfbb;
}

.specimen-heading {
  display: grid;
  align-items: end;
  gap: clamp(34px, 7vw, 90px);
  grid-template-columns: 1.05fr .95fr;
}

.specimen-heading h2 {
  max-width: 680px;
  font-size: clamp(3rem, 5.7vw, 5.7rem);
}

.specimen-intro > p {
  max-width: 600px;
  margin: 0;
  color: #d1ccc1;
}

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

.specimen-intro .specimen-claim-note {
  margin-top: 18px;
  padding: 13px 15px;
  border: 1px solid rgba(216, 221, 204, .24);
  border-radius: 12px;
  background: rgba(216, 221, 204, .07);
  color: #bdc5b5;
  font-family: var(--mono);
  font-size: .68rem;
  line-height: 1.55;
}

.specimen-shell {
  overflow: hidden;
  margin-top: clamp(40px, 6vw, 68px);
  border: 1px solid rgba(255, 253, 248, .18);
  border-radius: 22px;
  background: var(--paper-soft);
  color: var(--ink);
  box-shadow: 0 35px 90px rgba(0, 0, 0, .22);
}

.specimen-tabs-wrap {
  overflow-x: auto;
  border-bottom: 1px solid #d9d0c1;
  background: #ded7ca;
  scrollbar-color: var(--sage) transparent;
  scrollbar-width: thin;
}

.specimen-tabs {
  display: grid;
  min-width: 810px;
  grid-template-columns: repeat(5, 1fr);
}

.specimen-tabs button {
  min-height: 78px;
  padding: 15px 18px;
  border: 0;
  border-right: 1px solid #c9c0b1;
  background: transparent;
  color: #565249;
  cursor: pointer;
  font-size: .78rem;
  font-weight: 700;
  line-height: 1.25;
  text-align: left;
}

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

.specimen-tabs button span {
  display: block;
  margin-bottom: 6px;
  color: #7b776e;
  font-family: var(--mono);
  font-size: .59rem;
  letter-spacing: .06em;
}

.specimen-tabs button.is-active,
.specimen-tabs button[aria-selected="true"] {
  background: var(--paper-soft);
  color: var(--ink);
}

.specimen-tabs button.is-active span,
.specimen-tabs button[aria-selected="true"] span {
  color: var(--sage-dark);
}

.specimen-stage {
  padding: clamp(24px, 4vw, 48px);
}

.specimen-panel {
  display: grid;
  align-items: start;
  gap: clamp(28px, 5vw, 62px);
  grid-template-columns: minmax(220px, .68fr) minmax(0, 1.32fr);
}

.has-js .specimen-panel:not(.is-active) {
  display: none;
}

.specimen-stage-copy {
  padding-top: 5px;
}

.specimen-stage-copy > span,
.specimen-sheet small,
.specimen-map small,
.specimen-map-grid span,
.specimen-route article > span,
.specimen-library article > span,
.specimen-ownership > span {
  color: var(--sage-dark);
  font-family: var(--mono);
  font-size: .61rem;
  font-weight: 600;
  letter-spacing: .07em;
  text-transform: uppercase;
}

.specimen-stage-copy h3 {
  margin: 15px 0 16px;
  font-family: var(--serif);
  font-size: clamp(2rem, 3.35vw, 3.2rem);
  font-weight: 400;
  letter-spacing: -.025em;
  line-height: .99;
}

.specimen-stage-copy > p {
  margin: 0;
  color: var(--muted);
  font-size: .9rem;
}

.specimen-proof-line {
  display: grid;
  gap: 5px;
  margin-top: 25px;
  padding-top: 17px;
  border-top: 1px solid var(--line);
}

.specimen-proof-line b {
  color: var(--sage-dark);
  font-family: var(--mono);
  font-size: .59rem;
  letter-spacing: .06em;
  text-transform: uppercase;
}

.specimen-proof-line span {
  color: #48453f;
  font-size: .76rem;
}

.specimen-canvas {
  min-width: 0;
  overflow: hidden;
  border: 1px solid #d4ccbe;
  border-radius: 16px;
  background: #eae4d9;
}

.specimen-sheet {
  margin: 14px;
  overflow: hidden;
  border: 1px solid #cfc7b8;
  border-radius: 12px;
  background: var(--white);
  box-shadow: 0 18px 42px rgba(39, 34, 25, .1);
}

.specimen-sheet > header,
.specimen-map > header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 20px;
  padding: 17px 19px;
  border-bottom: 1px solid #ddd5c8;
  background: #f3efe7;
}

.specimen-sheet > header strong {
  display: block;
  margin-top: 5px;
  font-family: var(--serif);
  font-size: 1.25rem;
  font-weight: 400;
  line-height: 1;
}

.specimen-sheet > header > span,
.specimen-map > header > span {
  color: var(--muted);
  font-size: .63rem;
  text-align: right;
}

.specimen-leak-list {
  padding: 3px 19px;
}

.specimen-leak-list > div {
  display: grid;
  align-items: start;
  gap: 12px;
  padding: 15px 0;
  border-bottom: 1px solid #e2dbcf;
  grid-template-columns: 28px 1fr minmax(120px, .8fr);
}

.specimen-leak-list > div:last-child {
  border-bottom: 0;
}

.specimen-leak-list i {
  display: grid;
  width: 27px;
  height: 27px;
  place-items: center;
  border-radius: 50%;
  background: var(--ink);
  color: var(--sage-pale);
  font-family: var(--mono);
  font-size: .54rem;
  font-style: normal;
}

.specimen-leak-list p,
.specimen-leak-list em {
  margin: 0;
}

.specimen-leak-list p b,
.specimen-leak-list p span {
  display: block;
}

.specimen-leak-list p b {
  font-size: .79rem;
}

.specimen-leak-list p span,
.specimen-leak-list em {
  color: var(--muted);
  font-size: .68rem;
  line-height: 1.45;
}

.specimen-leak-list p span {
  margin-top: 4px;
}

.specimen-leak-list em {
  padding: 8px 9px;
  border-radius: 8px;
  background: #e8ecdf;
  color: #4f5947;
  font-style: normal;
}

.specimen-sheet > footer {
  display: grid;
  gap: 1px;
  padding: 1px;
  background: #a9ae9e;
  grid-template-columns: repeat(2, 1fr);
}

.specimen-sheet > footer div {
  padding: 14px 17px;
  background: #e6e9df;
}

.specimen-sheet > footer strong {
  display: block;
  margin-top: 5px;
  color: #383c34;
  font-family: var(--serif);
  font-size: 1.02rem;
  font-weight: 400;
  line-height: 1.1;
}

.specimen-map {
  margin: 14px;
  overflow: hidden;
  border: 1px solid #cfc7b8;
  border-radius: 12px;
  background: var(--white);
}

.specimen-map-grid {
  display: grid;
  gap: 1px;
  padding: 1px;
  background: #ddd5c8;
  grid-template-columns: repeat(2, 1fr);
}

.specimen-map-grid > div {
  min-height: 126px;
  padding: 15px;
  background: var(--white);
}

.specimen-map-grid > div:last-child {
  grid-column: 1 / -1;
}

.specimen-map-grid strong {
  display: block;
  margin-top: 8px;
  font-family: var(--serif);
  font-size: 1.18rem;
  font-weight: 400;
  line-height: 1.08;
}

.specimen-map-grid p {
  margin: 8px 0 0;
  color: var(--muted);
  font-size: .66rem;
  line-height: 1.42;
}

.specimen-map blockquote {
  margin: 0;
  padding: 18px 20px;
  border-top: 1px solid #d9d1c4;
  background: #26251f;
  color: var(--white);
  font-family: var(--serif);
  font-size: clamp(1.45rem, 2.4vw, 2.15rem);
  line-height: 1.03;
}

.specimen-build-grid {
  display: grid;
  align-items: stretch;
  gap: 10px;
  padding: 12px;
  grid-template-columns: .85fr 1.15fr .7fr;
}

.specimen-device {
  display: flex;
  min-width: 0;
  overflow: hidden;
  border: 1px solid #c8c0b3;
  border-radius: 10px;
  background: var(--white);
  flex-direction: column;
}

.specimen-device > header {
  display: flex;
  align-items: center;
  gap: 4px;
  padding: 8px 9px;
  border-bottom: 1px solid #dfd8cb;
  background: #f1ede5;
}

.specimen-device > header i {
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: #b5aea3;
}

.specimen-device > header span {
  margin-left: auto;
  color: var(--muted);
  font-family: var(--mono);
  font-size: .48rem;
  text-transform: uppercase;
}

.specimen-device-body {
  flex: 1;
  padding: clamp(16px, 2.5vw, 28px) clamp(13px, 2vw, 22px);
}

.specimen-device-body small {
  color: var(--sage-dark);
  font-family: var(--mono);
  font-size: .48rem;
  font-weight: 600;
  letter-spacing: .045em;
  line-height: 1.4;
}

.specimen-device-body h4 {
  margin: 11px 0 9px;
  font-family: var(--serif);
  font-size: clamp(1.25rem, 2.25vw, 2rem);
  font-weight: 400;
  letter-spacing: -.02em;
  line-height: 1;
}

.specimen-device-mobile .specimen-device-body h4 {
  font-size: clamp(1.1rem, 2vw, 1.55rem);
}

.specimen-device-body p {
  margin: 0;
  color: var(--muted);
  font-size: .58rem;
  line-height: 1.5;
}

.specimen-device-body b {
  display: inline-block;
  margin-top: 17px;
  padding: 8px 10px;
  border-radius: 999px;
  background: var(--sage-dark);
  color: var(--white);
  font-size: .5rem;
}

.specimen-device-before {
  filter: saturate(.65);
  opacity: .82;
}

.specimen-device-before .specimen-device-body small {
  color: #9b5f4f;
}

.specimen-device-before .specimen-device-body b {
  background: #c9c2b7;
  color: #5b5750;
}

.specimen-device > footer {
  display: flex;
  flex-wrap: wrap;
  gap: 5px;
  padding: 9px;
  border-top: 1px solid #dfd8cb;
  background: #f5f1ea;
}

.specimen-device > footer span {
  padding: 4px 6px;
  border: 1px solid #d1cabf;
  border-radius: 999px;
  color: var(--muted);
  font-family: var(--mono);
  font-size: .43rem;
  text-transform: uppercase;
}

.specimen-route {
  display: grid;
  align-items: center;
  gap: 8px;
  padding: 14px;
  grid-template-columns: 1fr auto 1fr auto 1fr;
}

.specimen-route > article {
  min-width: 0;
  padding: 15px;
  border: 1px solid #cec6b8;
  border-radius: 10px;
  background: var(--white);
}

.specimen-route > i {
  color: var(--sage-dark);
  font-family: var(--mono);
  font-size: 1rem;
  font-style: normal;
}

.specimen-route article > small {
  display: block;
  margin-top: 12px;
  color: var(--muted);
  font-size: .55rem;
  line-height: 1.35;
}

.specimen-mini-form,
.specimen-confirmation,
.specimen-alert {
  min-height: 132px;
  margin-top: 11px;
  padding: 11px;
  border: 1px solid #ddd6ca;
  border-radius: 8px;
  background: #f8f5ef;
}

.specimen-mini-form {
  display: grid;
  gap: 7px;
}

.specimen-mini-form i {
  padding: 7px;
  border: 1px solid #d7d0c5;
  border-radius: 5px;
  background: var(--white);
  color: #8a857b;
  font-size: .52rem;
  font-style: normal;
}

.specimen-mini-form b {
  padding: 7px;
  border-radius: 999px;
  background: var(--sage-dark);
  color: var(--white);
  font-size: .5rem;
  text-align: center;
}

.specimen-confirmation b,
.specimen-alert b {
  font-family: var(--serif);
  font-size: 1.22rem;
  font-weight: 400;
}

.specimen-confirmation p,
.specimen-alert p {
  margin: 8px 0 0;
  color: var(--muted);
  font-size: .59rem;
  line-height: 1.4;
}

.specimen-alert em {
  display: block;
  margin-top: 13px;
  padding-top: 9px;
  border-top: 1px solid #d8d1c5;
  color: var(--sage-dark);
  font-family: var(--mono);
  font-size: .47rem;
  font-style: normal;
}

.specimen-check-row {
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
  padding: 0 14px 14px;
}

.specimen-check-row span {
  padding: 6px 9px;
  border: 1px solid #cbd1c3;
  border-radius: 999px;
  background: #e7ebdf;
  color: #4e5847;
  font-family: var(--mono);
  font-size: .52rem;
}

.specimen-library {
  display: grid;
  gap: 1px;
  padding: 1px;
  background: #d2cabc;
  grid-template-columns: repeat(2, 1fr);
}

.specimen-library article {
  min-height: 142px;
  padding: 16px;
  background: var(--white);
}

.specimen-library article strong {
  display: block;
  margin-top: 12px;
  font-family: var(--serif);
  font-size: 1.22rem;
  font-weight: 400;
  line-height: 1.05;
}

.specimen-library article p {
  margin: 9px 0 0;
  color: var(--muted);
  font-size: .65rem;
  line-height: 1.42;
}

.specimen-ownership {
  padding: 16px 18px;
  border-top: 1px solid #cfc7ba;
  background: #e5e9dd;
}

.specimen-ownership strong {
  display: block;
  margin-top: 8px;
  color: #373b32;
  font-size: .72rem;
  line-height: 1.5;
}

.specimen-next {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  margin-top: 28px;
  padding-top: 25px;
  border-top: 1px solid rgba(255, 253, 248, .15);
}

.specimen-next p {
  max-width: 650px;
  margin: 0;
  color: #c8c2b6;
  font-size: .82rem;
}

.specimen-next p strong {
  color: var(--white);
}

.specimen-next .f-button-primary {
  flex: 0 0 auto;
  background: var(--sage-pale);
  color: var(--ink);
}

.timeline {
  display: grid;
  gap: 1px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, .12);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, .12);
  grid-template-columns: repeat(4, 1fr);
}

.timeline article {
  min-height: 210px;
  padding: 28px 24px;
  background: var(--ink-soft);
}

.timeline span {
  color: var(--sage-pale);
  font-family: var(--mono);
  font-size: .66rem;
  letter-spacing: .07em;
  text-transform: uppercase;
}

.timeline h3 {
  margin: 38px 0 9px;
  font-family: var(--serif);
  font-size: 1.72rem;
  font-weight: 400;
}

.timeline p {
  margin: 0;
  color: #aaa69b;
  font-size: .78rem;
}

.timeline-note {
  max-width: 850px;
  margin: 24px 0 0;
  color: #c7c1b6;
  font-size: .85rem;
}

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

.fit-card {
  padding: clamp(26px, 4vw, 42px);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--paper-soft);
}

.fit-card:last-child {
  background: var(--oat);
}

.fit-card h3 {
  margin: 0 0 22px;
  font-family: var(--serif);
  font-size: clamp(2rem, 3.5vw, 3.15rem);
  font-weight: 400;
  line-height: 1;
}

.fit-card ul {
  display: grid;
  gap: 12px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.fit-card li {
  display: grid;
  gap: 10px;
  color: #4e4a42;
  font-size: .88rem;
  grid-template-columns: 18px 1fr;
}

.fit-card li::before {
  color: var(--sage-dark);
  content: "✓";
  font-weight: 700;
}

.fit-card:last-child li::before {
  color: var(--clay);
  content: "—";
}

.guarantee {
  display: grid;
  align-items: start;
  gap: 34px;
  margin-top: 24px;
  padding: clamp(30px, 5vw, 52px);
  border-radius: var(--radius);
  background: var(--sage-dark);
  color: var(--white);
  grid-template-columns: .5fr 1.5fr;
}

.guarantee > span {
  color: var(--sage-pale);
  font-family: var(--mono);
  font-size: .7rem;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.guarantee h3 {
  margin: 0 0 12px;
  font-family: var(--serif);
  font-size: clamp(2rem, 4vw, 3.65rem);
  font-weight: 400;
  line-height: 1;
}

.guarantee p {
  margin: 0;
  color: #dbe0d3;
  font-size: .88rem;
}

.operator-grid {
  display: grid;
  align-items: center;
  gap: clamp(34px, 6vw, 74px);
  grid-template-columns: minmax(280px, .75fr) minmax(0, 1.25fr);
}

.operator-photo {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--oat);
}

.operator-photo img {
  width: 100%;
  aspect-ratio: 3 / 4;
  object-fit: cover;
  object-position: center 24%;
}

.operator-copy h2 {
  max-width: 690px;
}

.operator-copy > p:not(.f-kicker) {
  max-width: 680px;
  color: var(--muted);
}

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

.evidence-grid article,
.evidence-grid a {
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: var(--paper-soft);
}

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

.evidence-grid strong {
  font-family: var(--serif);
  font-size: 2.35rem;
  font-weight: 400;
  line-height: 1;
}

.evidence-grid span {
  margin-top: 7px;
  font-size: .76rem;
  font-weight: 700;
}

.evidence-grid small {
  margin-top: 4px;
  color: var(--muted);
  font-size: .65rem;
}

.faq-grid {
  display: grid;
  gap: 42px;
  grid-template-columns: .68fr 1.32fr;
}

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

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

.faq-list summary {
  cursor: pointer;
  font-weight: 700;
  list-style: none;
}

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

.faq-list summary::after {
  float: right;
  color: var(--sage-dark);
  content: "+";
}

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

.faq-list p {
  max-width: 680px;
  margin: 13px 0 0;
  color: var(--muted);
  font-size: .88rem;
}

.final-cta {
  padding: clamp(68px, 8vw, 110px) 0;
  background: var(--oat);
}

.final-cta-inner {
  display: grid;
  align-items: center;
  gap: 34px;
  grid-template-columns: 1.2fr .8fr;
}

.final-cta h2 {
  margin: 0;
  font-family: var(--serif);
  font-size: clamp(2.7rem, 5vw, 4.8rem);
  font-weight: 400;
  letter-spacing: -.035em;
  line-height: .98;
}

.final-cta-copy p {
  margin: 0 0 20px;
  color: var(--muted);
}

.f-footer {
  padding: 34px 0;
  background: var(--ink);
  color: #c9c4b8;
}

.f-footer .f-shell {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.f-footer nav {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  font-size: .74rem;
}

.f-footer p {
  margin: 0;
  font-size: .7rem;
}

/* Blueprint page */
.blueprint-hero .f-hero-grid {
  grid-template-columns: minmax(0, 1fr) minmax(390px, .85fr);
}

.blueprint-visual {
  position: relative;
  padding: 26px;
}

.blueprint-visual::before {
  position: absolute;
  inset: 8% 0 0 8%;
  border-radius: var(--radius);
  background: var(--sage-pale);
  content: "";
}

.blueprint-visual img {
  position: relative;
  z-index: 1;
  width: min(100%, 470px);
  margin-inline: auto;
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
}

.blueprint-stamp {
  position: absolute;
  z-index: 2;
  right: 2%;
  bottom: 5%;
  display: grid;
  width: 112px;
  height: 112px;
  place-items: center;
  border-radius: 50%;
  background: var(--ink);
  color: var(--white);
  font-family: var(--mono);
  font-size: .67rem;
  font-weight: 600;
  letter-spacing: .07em;
  text-align: center;
  text-transform: uppercase;
}

.gate-card {
  max-width: 620px;
  margin-top: 34px;
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: var(--white);
  box-shadow: 0 16px 46px rgba(39, 34, 25, .09);
}

.gate-card .inline-gate {
  display: grid;
  gap: 10px;
  grid-template-columns: 1fr auto;
}

.gate-card .inline-gate input {
  min-width: 0;
}

.gate-card .inline-gate .f-button {
  width: auto;
}

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

.kit-card {
  min-height: 250px;
  padding: 26px;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: var(--paper-soft);
}

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

.kit-card h3 {
  margin: 42px 0 10px;
  font-family: var(--serif);
  font-size: 2rem;
  font-weight: 400;
  line-height: 1;
}

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

.use-grid {
  display: grid;
  gap: 1px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, .13);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, .13);
  grid-template-columns: repeat(3, 1fr);
}

.use-grid article {
  padding: 30px;
  background: var(--ink-soft);
}

.use-grid span {
  color: var(--sage-pale);
  font-family: var(--mono);
  font-size: .68rem;
}

.use-grid h3 {
  margin: 54px 0 10px;
  font-family: var(--serif);
  font-size: 2rem;
  font-weight: 400;
  line-height: 1;
}

.use-grid p {
  margin: 0;
  color: #aaa69b;
  font-size: .78rem;
}

.sample-grid {
  display: grid;
  align-items: center;
  gap: 48px;
  grid-template-columns: .9fr 1.1fr;
}

.sample-sheet {
  padding: 30px;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: var(--white);
  box-shadow: var(--shadow);
  transform: rotate(-1deg);
}

.sample-sheet > span {
  color: var(--sage-dark);
  font-family: var(--mono);
  font-size: .64rem;
  text-transform: uppercase;
}

.sample-sheet h3 {
  margin: 14px 0 22px;
  font-family: var(--serif);
  font-size: 2.3rem;
  font-weight: 400;
  line-height: 1;
}

.score-line {
  display: grid;
  align-items: center;
  gap: 12px;
  padding: 12px 0;
  border-top: 1px solid #e6dfd3;
  grid-template-columns: 1fr 110px 26px;
  font-size: .74rem;
}

.score-line i {
  height: 5px;
  border-radius: 999px;
  background: #e3ded4;
}

.score-line i::after {
  display: block;
  width: var(--score, 40%);
  height: 100%;
  border-radius: inherit;
  background: var(--clay);
  content: "";
}

.score-line b {
  font-family: var(--mono);
  font-size: .63rem;
}

.sample-copy h2 {
  max-width: 620px;
}

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

/* Privacy */
.privacy-page {
  min-height: 70vh;
  padding: clamp(70px, 9vw, 120px) 0;
}

.privacy-page article {
  max-width: 780px;
}

.privacy-page h1 {
  font-size: clamp(3.2rem, 7vw, 6rem);
}

.privacy-page h2 {
  margin: 38px 0 10px;
  font-family: var(--serif);
  font-size: 2rem;
  font-weight: 400;
}

.privacy-page p,
.privacy-page li {
  color: #555149;
}

.privacy-page a {
  text-decoration: underline;
  text-underline-offset: 3px;
}

.privacy-page [data-meta-privacy-choices] {
  margin-left: .35rem;
  padding: .45rem .7rem;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: var(--paper);
  color: var(--ink);
  font: 600 .72rem/1 var(--sans);
  cursor: pointer;
}

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

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

@media (max-width: 960px) {
  .f-hero-grid,
  .blueprint-hero .f-hero-grid,
  .offer-layout,
  .operator-grid,
  .sample-grid,
  .snapshot-proof-grid {
    grid-template-columns: 1fr;
  }

  .snapshot-proof-copy {
    position: static;
  }

  .path-board,
  .blueprint-visual {
    width: min(100%, 700px);
  }

  .credential-inner {
    grid-template-columns: 190px 1fr;
  }

  .credential-inner > span {
    display: none;
  }

  .contrast-demo,
  .faq-grid {
    grid-template-columns: 1fr;
  }

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

  .specimen-stage-copy {
    max-width: 700px;
  }

  .contrast-copy {
    max-width: 680px;
  }

  .offer-sticky {
    position: static;
  }

  .operator-photo {
    max-width: 520px;
  }
}

@media (max-width: 760px) {
  .f-shell {
    width: min(100% - 32px, 1120px);
  }

  .funnel-header .f-shell {
    min-height: 68px;
  }

  .f-brand img {
    width: 132px;
  }

  .header-note {
    font-size: .58rem;
  }

  .f-hero {
    padding-top: 48px;
  }

  .f-hero h1 {
    font-size: clamp(3.35rem, 16vw, 5.2rem);
  }

  .credential-inner,
  .snapshot-panel,
  .fit-grid,
  .final-cta-inner {
    grid-template-columns: 1fr;
  }

  .specimen-heading {
    align-items: start;
    grid-template-columns: 1fr;
  }

  .specimen-build-grid {
    grid-template-columns: 1fr 1.2fr;
  }

  .specimen-device-mobile {
    grid-column: 1 / -1;
    width: min(100%, 360px);
  }

  .specimen-leak-list > div {
    grid-template-columns: 28px 1fr;
  }

  .specimen-leak-list em {
    grid-column: 2;
  }

  .specimen-route {
    grid-template-columns: 1fr;
  }

  .specimen-route > i {
    justify-self: center;
    transform: rotate(90deg);
  }

  .specimen-mini-form,
  .specimen-confirmation,
  .specimen-alert {
    min-height: 0;
  }

  .specimen-next {
    align-items: flex-start;
    flex-direction: column;
  }

  .credential-inner {
    gap: 18px;
  }

  .credential-inner p {
    font-size: .84rem;
  }

  .snapshot-copy,
  .snapshot-form {
    padding: 28px 22px;
  }

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

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

  .timeline article {
    min-height: 190px;
  }

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

  .kit-grid,
  .use-grid {
    grid-template-columns: 1fr;
  }

  .kit-card {
    min-height: 210px;
  }

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

  .gate-card .inline-gate .f-button {
    width: 100%;
  }

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

@media (max-width: 520px) {
  .header-note span {
    display: none;
  }

  .f-hero h1 {
    font-size: clamp(3.05rem, 16.5vw, 4.4rem);
  }

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

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

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

  .path-board-body {
    padding: 24px 18px;
  }

  .path-step {
    grid-template-columns: 30px 1fr;
  }

  .path-step > em {
    display: none;
  }

  .credential-inner img {
    width: 190px;
  }

  .demo-window {
    min-height: 390px;
    padding: 10px;
  }

  .specimen-heading h2 {
    font-size: clamp(2.85rem, 14vw, 4.2rem);
  }

  .specimen-tabs {
    min-width: 680px;
  }

  .specimen-tabs button {
    min-height: 70px;
    padding: 13px 14px;
  }

  .specimen-stage {
    padding: 16px;
  }

  .specimen-sheet,
  .specimen-map {
    margin: 8px;
  }

  .specimen-sheet > header,
  .specimen-map > header {
    align-items: flex-start;
    flex-direction: column;
  }

  .specimen-sheet > header > span,
  .specimen-map > header > span {
    text-align: left;
  }

  .specimen-sheet > footer,
  .specimen-map-grid,
  .specimen-library,
  .specimen-build-grid {
    grid-template-columns: 1fr;
  }

  .specimen-map-grid > div:last-child,
  .specimen-device-mobile {
    grid-column: auto;
  }

  .specimen-device-mobile {
    width: 100%;
  }

  .specimen-library article {
    min-height: 0;
  }

  .specimen-next .f-button {
    width: 100%;
  }

  .demo-state {
    min-height: 368px;
  }

  .demo-nav span {
    display: none;
  }

  .demo-message {
    padding: 34px 22px;
  }

  .snapshot-browser-bar {
    gap: 8px;
    padding: 9px 12px;
  }

  .snapshot-browser-bar > b {
    display: none;
  }

  .snapshot-evidence-canvas {
    padding: 12px;
    grid-template-columns: 1fr;
  }

  .snapshot-page-nav {
    padding-inline: 18px;
  }

  .snapshot-page-nav span {
    display: none;
  }

  .snapshot-page-hero {
    min-height: 0;
    padding: 40px 20px 24px;
  }

  .snapshot-page-hero h3 {
    font-size: clamp(2.2rem, 12vw, 3rem);
  }

  .snapshot-pin-one {
    top: 32px;
    right: 10px;
  }

  .snapshot-pin-two {
    right: 16px;
  }

  .snapshot-evidence-verdict div {
    min-height: 0;
  }

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

  .timeline article {
    min-height: 170px;
  }

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

  .blueprint-visual {
    padding: 12px;
  }

  .blueprint-stamp {
    right: -3%;
    width: 92px;
    height: 92px;
    font-size: .58rem;
  }

  .score-line {
    grid-template-columns: 1fr 72px 23px;
  }
}
