:root {
  --paper: #fbf8f2;
  --paper-deep: #f0e7d9;
  --panel: #fffdfa;
  --ink: #151412;
  --ink-soft: #403a34;
  --muted: #6f665d;
  --rule: #d9cdb9;
  --rule-strong: #cbbca4;
  --signal: #b94d1d;
  --signal-soft: #f1d8c9;
  --moss: #355c50;
  --moss-deep: #16332f;
  --teal: #396a70;
  --blue: #536c7e;
  --rose: #8d5550;
  --shadow: 0 24px 70px rgba(34, 27, 18, 0.12);
  --font-serif: Georgia, "Iowan Old Style", "Times New Roman", serif;
  --font-sans: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --font-mono: "SFMono-Regular", Menlo, Consolas, monospace;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background:
    radial-gradient(circle at 8% -12%, rgba(185, 77, 29, 0.08), transparent 30rem),
    linear-gradient(180deg, var(--paper), #f8f3ea 48%, #fbf8f2);
  font-family: var(--font-sans);
  letter-spacing: 0;
}

body::before {
  position: fixed;
  inset: 0;
  pointer-events: none;
  content: "";
  background-image:
    linear-gradient(rgba(21, 20, 18, 0.028) 1px, transparent 1px),
    linear-gradient(90deg, rgba(21, 20, 18, 0.022) 1px, transparent 1px);
  background-size: 64px 64px;
  mask-image: linear-gradient(180deg, rgba(0, 0, 0, 0.55), transparent 70%);
}

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

button,
input,
textarea {
  font: inherit;
}

button {
  cursor: pointer;
}

.skip-link {
  position: absolute;
  left: -9999px;
  top: 10px;
  z-index: 100;
  padding: 8px 12px;
  color: var(--paper);
  background: var(--ink);
}

.skip-link:focus {
  left: 10px;
}

.staging-badge {
  position: fixed;
  right: 18px;
  bottom: 18px;
  z-index: 60;
  padding: 8px 11px;
  color: #fff;
  background: rgba(141, 85, 80, 0.94);
  border-radius: 6px;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.staging-badge[hidden],
[hidden] {
  display: none !important;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 30;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 24px;
  min-height: 74px;
  padding: 16px clamp(20px, 4vw, 52px);
  background: rgba(251, 248, 242, 0.88);
  border-bottom: 1px solid rgba(217, 205, 185, 0.72);
  backdrop-filter: blur(16px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-serif);
  font-size: 20px;
  line-height: 1;
}

.brand-mark {
  width: 18px;
  height: 18px;
  border-radius: 999px;
  background:
    radial-gradient(circle at 50% 50%, var(--signal) 0 48%, transparent 50%),
    var(--paper);
  box-shadow: 0 0 0 1px var(--signal-soft), 0 0 0 5px rgba(185, 77, 29, 0.08);
}

.nav-links {
  justify-self: center;
  display: flex;
  gap: clamp(12px, 2vw, 26px);
  color: var(--ink-soft);
  font-size: 14px;
}

.nav-links a {
  padding: 8px 0;
  border-bottom: 1px solid transparent;
}

.nav-links a:hover {
  border-color: currentColor;
}

.nav-cta,
.primary-button,
.secondary-button {
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 18px;
  border-radius: 999px;
  font-weight: 700;
  white-space: nowrap;
  transition: transform 160ms ease, background 160ms ease, border-color 160ms ease;
}

.nav-cta {
  justify-self: end;
}

.nav-cta,
.primary-button {
  color: #fffdf7;
  background: var(--ink);
  border: 1px solid var(--ink);
}

.secondary-button {
  color: var(--ink);
  background: rgba(255, 253, 250, 0.58);
  border: 1px solid var(--ink);
}

.nav-cta:hover,
.primary-button:hover,
.secondary-button:hover {
  transform: translateY(-1px);
}

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

.secondary-button:hover {
  color: #fffdf7;
  background: var(--ink);
}

.hero {
  min-height: calc(100svh - 74px);
  display: grid;
  grid-template-columns: minmax(0, 1.02fr) minmax(320px, 0.78fr);
  align-items: center;
  gap: clamp(32px, 5vw, 72px);
  max-width: 1220px;
  margin: 0 auto;
  padding: clamp(56px, 8vw, 104px) clamp(20px, 4vw, 52px);
}

.hero-copy,
.signal-preview {
  min-width: 0;
}

.eyebrow {
  margin: 0 0 16px;
  color: var(--signal);
  font-family: var(--font-mono);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.11em;
  text-transform: uppercase;
}

.hero h1 {
  max-width: 13ch;
  margin: 0;
  font-family: var(--font-serif);
  font-size: clamp(46px, 7.2vw, 86px);
  font-weight: 400;
  line-height: 0.98;
  letter-spacing: 0;
}

.hero-hook {
  max-width: 640px;
  margin: 0 0 18px;
  color: var(--ink);
  font-size: clamp(18px, 1.8vw, 22px);
  font-weight: 800;
  line-height: 1.25;
}

.hero-lede {
  max-width: 680px;
  margin: 26px 0 0;
  color: var(--ink-soft);
  font-size: clamp(20px, 2.2vw, 28px);
  line-height: 1.36;
}

.audience-line {
  max-width: 620px;
  margin: 16px 0 0;
  color: var(--ink);
  font-size: clamp(16px, 1.35vw, 18px);
  font-weight: 800;
  line-height: 1.45;
}

.ritual-line {
  max-width: 650px;
  margin: 22px 0 0;
  padding-left: 16px;
  color: var(--ink-soft);
  border-left: 3px solid var(--signal);
  font-size: clamp(16px, 1.45vw, 18px);
  line-height: 1.5;
}

.ritual-line strong {
  color: var(--ink);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 30px;
}

.scope-strip {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  max-width: 740px;
  padding: 0;
  margin: 24px 0 0;
  color: var(--muted);
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.04em;
  list-style: none;
  text-transform: uppercase;
}

.scope-strip li {
  padding: 7px 9px;
  background: rgba(255, 253, 250, 0.68);
  border: 1px solid var(--rule);
  border-radius: 999px;
}

.cta-note {
  max-width: 620px;
  margin: 12px 0 0;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.5;
}

.signal-preview,
.report-panel,
.source-panel,
.comparison-table,
.boundary-card,
.workflow-grid article,
.steps-list li,
.trust-grid article,
.faq-grid article,
.price-card {
  background: rgba(255, 253, 250, 0.78);
  border: 1px solid var(--rule);
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.signal-preview {
  position: relative;
  overflow: hidden;
  padding: clamp(22px, 3vw, 34px);
}

.signal-preview::before {
  position: absolute;
  inset: 0 0 auto;
  height: 5px;
  content: "";
  background: linear-gradient(90deg, var(--moss), var(--blue), var(--signal), var(--rose));
}

.preview-topline,
.panel-header {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  color: var(--muted);
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.signal-preview h2 {
  margin: 18px 0 18px;
  font-family: var(--font-serif);
  font-size: clamp(34px, 4vw, 46px);
  font-weight: 400;
  line-height: 1;
}

.preview-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  overflow: hidden;
  border: 1px solid var(--rule);
  border-radius: 6px;
  background: var(--rule);
}

.preview-grid div {
  padding: 14px;
  background: rgba(251, 248, 242, 0.86);
}

.preview-grid span,
.compact-facts dt {
  display: block;
  color: var(--muted);
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.preview-grid strong {
  display: block;
  margin-top: 6px;
  font-size: 17px;
}

.compact-facts {
  display: grid;
  grid-template-columns: minmax(110px, 0.45fr) 1fr;
  gap: 10px 16px;
  margin: 22px 0 0;
}

.compact-facts dd {
  margin: 0;
  color: var(--ink-soft);
  font-size: 14px;
  line-height: 1.45;
}

.fine-print,
.billing-note,
.field-help {
  color: var(--muted);
  font-size: 12px;
  line-height: 1.5;
}

.signal-preview .fine-print {
  padding-top: 16px;
  margin: 18px 0 0;
  border-top: 1px solid var(--rule);
}

.metric-band {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-top: 1px solid var(--rule);
  border-bottom: 1px solid var(--rule);
  background: var(--moss-deep);
  color: #fffdf7;
}

.metric-band div {
  min-height: 140px;
  padding: 30px clamp(20px, 4vw, 52px);
  border-right: 1px solid rgba(255, 255, 255, 0.16);
}

.metric-band div:last-child {
  border-right: 0;
}

.metric-band strong {
  display: block;
  font-size: clamp(38px, 6vw, 64px);
  line-height: 1;
}

.metric-band span {
  display: block;
  max-width: 260px;
  margin-top: 10px;
  color: rgba(255, 253, 247, 0.72);
}

.section {
  max-width: 1220px;
  margin: 0 auto;
  padding: clamp(64px, 9vw, 118px) clamp(20px, 4vw, 52px);
}

.section-heading {
  max-width: 760px;
}

.section-heading h2,
.final-cta h2 {
  margin: 0;
  font-family: var(--font-serif);
  font-size: clamp(38px, 5.4vw, 68px);
  font-weight: 400;
  line-height: 1;
}

.section-heading p:not(.eyebrow) {
  margin: 18px 0 0;
  color: var(--ink-soft);
  font-size: 19px;
  line-height: 1.55;
}

.workflow-grid,
.steps-list,
.trust-grid,
.faq-grid,
.pricing-grid,
.signal-layout {
  display: grid;
  gap: 18px;
  margin-top: 34px;
}

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

.comparison-table {
  overflow: hidden;
  margin-top: 34px;
}

.comparison-row {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(0, 1.08fr);
  border-top: 1px solid var(--rule);
}

.comparison-row:first-child {
  border-top: 0;
}

.comparison-row span {
  min-width: 0;
  padding: 16px 20px;
  color: var(--ink-soft);
  line-height: 1.45;
}

.comparison-row span + span {
  border-left: 1px solid var(--rule);
}

.comparison-row.heading {
  background: rgba(53, 92, 80, 0.08);
}

.comparison-row.heading span {
  color: var(--ink);
  font-family: var(--font-mono);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.workflow-grid article,
.steps-list li,
.trust-grid article,
.faq-grid article,
.boundary-card,
.price-card,
.report-panel,
.source-panel {
  padding: clamp(20px, 3vw, 30px);
}

.workflow-grid span,
.steps-list span {
  color: var(--signal);
  font-family: var(--font-mono);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.workflow-grid p,
.steps-list p,
.trust-grid p,
.faq-grid p,
.boundary-card p,
.price-card p,
.price-card li {
  color: var(--ink-soft);
  line-height: 1.55;
}

.steps-list {
  grid-template-columns: repeat(3, 1fr);
  list-style: none;
  padding: 0;
}

.steps-list h3,
.trust-grid h3,
.faq-grid h3,
.boundary-card h3,
.price-card h3,
.price-card h2,
.source-panel h3,
.report-panel h3 {
  margin: 12px 0 0;
  font-size: 21px;
  line-height: 1.2;
}

.signal-layout {
  grid-template-columns: minmax(0, 1.45fr) minmax(300px, 0.75fr);
}

.signal-card-list {
  display: grid;
  gap: 12px;
  margin-top: 22px;
}

.signal-row {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto auto;
  gap: 16px;
  align-items: center;
  padding: 14px 0;
  border-top: 1px solid var(--rule);
}

.signal-index {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.signal-copy {
  display: grid;
  gap: 4px;
}

.signal-copy em {
  color: var(--muted);
  font-size: 13px;
  font-style: normal;
}

.signal-meta {
  display: flex;
  gap: 10px;
  color: var(--muted);
  font-size: 12px;
  white-space: nowrap;
}

.signal-context {
  display: none;
}

.signal-result {
  display: grid;
  justify-items: end;
  gap: 4px;
  min-width: 132px;
}

.signal-result span {
  padding: 4px 7px;
  color: var(--moss-deep);
  background: rgba(53, 92, 80, 0.1);
  border: 1px solid rgba(53, 92, 80, 0.22);
  border-radius: 999px;
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.signal-result small {
  color: var(--muted);
  font-size: 12px;
}

.source-panel pre {
  overflow: auto;
  max-height: 420px;
  max-width: 100%;
  margin: 20px 0 0;
  padding: 16px;
  color: #edf6f3;
  background: var(--moss-deep);
  border-radius: 6px;
  font-size: 12px;
  line-height: 1.45;
  white-space: pre-wrap;
  overflow-wrap: anywhere;
}

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

.download-links a {
  padding: 12px;
  border: 1px solid var(--rule);
  border-radius: 6px;
  background: rgba(251, 248, 242, 0.72);
  font-weight: 700;
}

.trust-grid,
.faq-grid,
.pricing-grid {
  grid-template-columns: repeat(4, 1fr);
}

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

.price-card.featured {
  border-color: rgba(185, 77, 29, 0.54);
  box-shadow: 0 24px 80px rgba(185, 77, 29, 0.13);
}

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

.price {
  margin: 16px 0 8px;
  font-size: 42px;
  font-weight: 800;
}

.price span {
  color: var(--muted);
  font-size: 16px;
  font-weight: 600;
}

.price-card ul {
  display: grid;
  gap: 10px;
  padding: 18px 0;
  margin: 18px 0 0;
  border-top: 1px solid var(--rule);
  list-style: none;
}

.price-card li::before {
  content: "• ";
  color: var(--signal);
}

.price-actions {
  display: grid;
  gap: 10px;
  margin-top: auto;
  padding-top: 18px;
  border-top: 1px solid var(--rule);
}

.price-actions .primary-button,
.price-actions .secondary-button {
  width: 100%;
  white-space: normal;
}

.final-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  align-items: center;
  justify-content: center;
}

.checkout-status.is-ready {
  color: var(--moss);
  font-weight: 700;
}

.final-cta {
  max-width: 1220px;
  margin: 0 auto;
  padding: clamp(70px, 11vw, 138px) clamp(20px, 4vw, 52px);
  text-align: center;
}

.final-cta h2 {
  max-width: 900px;
  margin: 0 auto 28px;
}

.site-footer {
  display: flex;
  flex-wrap: wrap;
  gap: 16px 24px;
  align-items: center;
  padding: 28px clamp(20px, 4vw, 52px);
  color: var(--muted);
  border-top: 1px solid var(--rule);
  font-size: 14px;
}

.site-footer span {
  margin-right: auto;
  color: var(--ink);
  font-family: var(--font-serif);
  font-size: 20px;
}

.tbam-credit {
  display: inline-flex;
  gap: 8px;
  align-items: center;
  margin-left: auto;
  width: fit-content;
  min-height: 22px;
  padding: 4px 8px;
  color: var(--ink);
  background: rgba(255, 253, 250, 0.72);
  border: 1px solid var(--rule);
  border-radius: 999px;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.02em;
  line-height: 1.2;
  opacity: 0.72;
  text-align: center;
  text-decoration: none;
}

.tbam-credit::before {
  display: block;
  flex: 0 0 17px;
  width: 17px;
  height: 5px;
  content: "";
  background: url("/assets/tbam-mark.png") center / contain no-repeat;
}

.tbam-credit:hover {
  opacity: 1;
}

.checkout-dialog {
  width: min(720px, calc(100vw - 32px));
  padding: 0;
  border: 1px solid var(--rule);
  border-radius: 8px;
  background: var(--panel);
  box-shadow: 0 34px 120px rgba(21, 20, 18, 0.28);
}

.checkout-dialog::backdrop {
  background: rgba(21, 20, 18, 0.42);
}

.checkout-form {
  position: relative;
  display: grid;
  gap: 16px;
  padding: clamp(22px, 4vw, 36px);
}

.checkout-form h2 {
  margin: 0;
  font-family: var(--font-serif);
  font-size: 38px;
  font-weight: 400;
}

.checkout-form label {
  display: grid;
  gap: 8px;
  font-weight: 700;
}

.checkout-form input,
.checkout-form textarea {
  width: 100%;
  padding: 12px;
  border: 1px solid var(--rule);
  border-radius: 6px;
  background: #fff;
}

.dialog-close {
  position: absolute;
  top: 14px;
  right: 14px;
  width: 32px;
  height: 32px;
  border: 1px solid var(--rule);
  border-radius: 50%;
  background: var(--paper);
}

.category-fieldset {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 16px;
  border: 1px solid var(--rule);
  border-radius: 6px;
  padding: 14px;
}

.category-fieldset label,
.checkbox-row {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  font-weight: 500;
}

.checkbox-row input,
.category-fieldset input {
  width: auto;
  margin-top: 4px;
}

.form-status {
  min-height: 20px;
  margin: 0;
  color: var(--signal);
  font-weight: 700;
}

.verification-controls {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 22px 0;
}

.verification-summary,
.verification-list {
  display: grid;
  gap: 12px;
  margin-top: 16px;
}

.page-main {
  max-width: 1220px;
  margin: 0 auto;
  padding: clamp(52px, 8vw, 92px) clamp(20px, 4vw, 52px) clamp(68px, 9vw, 112px);
}

.page-hero {
  display: grid;
  gap: 18px;
  max-width: 900px;
  margin-bottom: 34px;
}

.page-hero h1 {
  max-width: 13ch;
  margin: 0;
  font-family: var(--font-serif);
  font-size: clamp(44px, 6.4vw, 78px);
  font-weight: 400;
  line-height: 0.98;
}

.page-lede {
  max-width: 760px;
  margin: 0;
  color: var(--ink-soft);
  font-size: clamp(18px, 2vw, 24px);
  line-height: 1.45;
}

.page-note {
  max-width: 760px;
  margin: 0;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.55;
}

.resource-main {
  max-width: 1220px;
  margin: 0 auto;
  padding: clamp(52px, 8vw, 92px) clamp(20px, 4vw, 52px) clamp(68px, 9vw, 112px);
}

.resource-hero {
  margin-bottom: 34px;
}

.resource-hero h1 {
  max-width: 13ch;
  margin: 0;
  font-family: var(--font-serif);
  font-size: clamp(44px, 6.4vw, 78px);
  font-weight: 400;
  line-height: 0.98;
}

.resource-lede,
.resource-note {
  max-width: 760px;
  margin: 18px 0 0;
  color: var(--ink-soft);
  font-size: clamp(17px, 1.8vw, 21px);
  line-height: 1.5;
}

.resource-note {
  color: var(--muted);
  font-size: 14px;
}

.resource-section {
  margin-top: 34px;
}

.section-inner {
  max-width: 100%;
}

.content-grid,
.support-grid,
.sample-grid,
.source-list,
.resource-grid,
.comparison-grid {
  display: grid;
  gap: 18px;
}

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

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

.content-card,
.form-card,
.pending-panel,
.sample-card,
.source-card,
.legal-copy,
.resource-card,
.answer-block {
  padding: clamp(20px, 3vw, 30px);
  background: rgba(255, 253, 250, 0.78);
  border: 1px solid var(--rule);
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.content-card h2,
.content-card h3,
.sample-card h2,
.sample-card h3,
.source-card h2,
.legal-copy h2,
.resource-card h2,
.answer-block h2,
.pending-panel h1,
.form-card h2 {
  margin: 0 0 12px;
  font-size: 24px;
  line-height: 1.2;
}

.content-card p,
.sample-card p,
.source-card p,
.legal-copy p,
.resource-card p,
.answer-block p,
.pending-panel p {
  color: var(--ink-soft);
  line-height: 1.58;
}

.content-card p:last-child,
.sample-card p:last-child,
.source-card p:last-child,
.legal-copy p:last-child,
.resource-card p:last-child,
.answer-block p:last-child,
.pending-panel p:last-child {
  margin-bottom: 0;
}

.legal-copy {
  max-width: 900px;
}

.legal-copy h2 {
  margin-top: 28px;
  padding-top: 22px;
  border-top: 1px solid var(--rule);
}

.check-list,
.plain-list,
.resource-card ul {
  display: grid;
  gap: 10px;
  padding: 0;
  margin: 18px 0 0;
  list-style: none;
}

.check-list li,
.plain-list li,
.resource-card li {
  color: var(--ink-soft);
  line-height: 1.55;
}

.check-list li::before,
.plain-list li::before,
.resource-card li::before {
  content: "• ";
  color: var(--signal);
}

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

.link-list a,
.source-link {
  display: inline-flex;
  align-items: center;
  min-height: 38px;
  padding: 0 12px;
  border: 1px solid var(--rule);
  border-radius: 999px;
  background: rgba(251, 248, 242, 0.72);
  color: var(--ink);
  font-size: 13px;
  font-weight: 800;
}

.source-list {
  margin-top: 28px;
}

.source-card {
  display: grid;
  grid-template-columns: minmax(180px, 0.34fr) minmax(0, 1fr);
  gap: 20px;
  align-items: start;
}

.source-card .eyebrow {
  margin-bottom: 8px;
}

.source-card h2 {
  margin-bottom: 0;
}

.source-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 16px;
}

.sample-page .page-hero h1 {
  max-width: 14ch;
}

.sample-summary {
  margin: 30px 0 18px;
}

.pricing-proof {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 0 0 22px;
}

.pricing-proof span,
.price-note {
  color: var(--muted);
  font-family: var(--font-mono);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.04em;
  line-height: 1.35;
  text-transform: uppercase;
}

.pricing-proof span {
  padding: 7px 9px;
  background: rgba(255, 253, 250, 0.68);
  border: 1px solid var(--rule);
  border-radius: 999px;
}

.sample-card strong {
  display: block;
  margin-top: 6px;
  color: var(--ink);
  font-size: 28px;
  line-height: 1;
}

.sample-report-list {
  display: grid;
  gap: 18px;
  margin-top: 26px;
}

.sample-report-card {
  position: relative;
  overflow: hidden;
}

.sample-report-card::before {
  position: absolute;
  inset: 0 0 auto;
  height: 4px;
  content: "";
  background: linear-gradient(90deg, var(--moss), var(--blue), var(--signal));
}

.sample-facts {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  overflow: hidden;
  margin: 18px 0;
  border: 1px solid var(--rule);
  border-radius: 6px;
  background: var(--rule);
}

.sample-facts div {
  padding: 14px;
  background: rgba(251, 248, 242, 0.86);
}

.sample-facts span,
.source-row span {
  display: block;
  color: var(--muted);
  font-family: var(--font-mono);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.sample-facts b {
  display: block;
  margin-top: 6px;
  color: var(--ink);
  font-size: 16px;
}

.source-table {
  display: grid;
  overflow: hidden;
  margin-top: 18px;
  border: 1px solid var(--rule);
  border-radius: 6px;
  background: var(--rule);
}

.source-row {
  display: grid;
  grid-template-columns: minmax(160px, 0.3fr) minmax(0, 1fr);
  gap: 1px;
}

.source-row + .source-row {
  border-top: 1px solid var(--rule);
}

.source-row > * {
  padding: 14px;
  background: rgba(251, 248, 242, 0.86);
}

.source-row p {
  margin: 6px 0 0;
}

.pending-shell {
  max-width: 760px;
  margin: 0 auto;
  padding: clamp(42px, 8vw, 90px) 20px;
}

.pending-brand {
  margin-bottom: 24px;
}

.pending-panel h1 {
  font-family: var(--font-serif);
  font-size: clamp(40px, 6vw, 64px);
  font-weight: 400;
  line-height: 1;
}

.pending-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 22px;
}

.form-card,
.contact-shell,
.billing-form {
  display: grid;
  gap: 18px;
}

.contact-shell {
  grid-template-columns: minmax(0, 0.92fr) minmax(320px, 0.78fr);
  align-items: start;
}

.contact-cards {
  display: grid;
  gap: 12px;
  margin-top: 22px;
}

.contact-cards article {
  padding: 16px;
  border: 1px solid var(--rule);
  border-radius: 6px;
  background: rgba(251, 248, 242, 0.64);
}

.contact-cards span {
  display: block;
  margin-bottom: 6px;
  color: var(--muted);
  font-family: var(--font-mono);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.form-card label,
.billing-form label,
.contact-form label {
  display: grid;
  gap: 8px;
  font-weight: 700;
}

.form-card input,
.form-card textarea,
.form-card select,
.billing-form input,
.contact-form input,
.contact-form textarea,
.contact-form select {
  width: 100%;
  min-height: 44px;
  padding: 12px;
  color: var(--ink);
  background: #fff;
  border: 1px solid var(--rule);
  border-radius: 6px;
}

.form-card textarea,
.contact-form textarea {
  resize: vertical;
}

@media (max-width: 980px) {
  .site-header {
    grid-template-columns: minmax(0, auto) auto;
    justify-content: space-between;
  }

  .brand {
    min-width: 0;
  }

  .nav-links {
    display: none;
  }

  .hero,
  .signal-layout {
    grid-template-columns: 1fr;
  }

  .hero {
    min-height: auto;
    align-items: start;
    padding-top: 58px;
  }

  .hero h1 {
    max-width: 100%;
    font-size: clamp(48px, 10vw, 74px);
  }

  .hero-lede {
    font-size: 20px;
  }

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

  .content-grid.two,
  .content-grid.three,
  .sample-grid,
  .resource-grid,
  .comparison-grid,
  .contact-shell {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 680px) {
  .site-header {
    min-height: 68px;
    gap: 8px;
    padding: 12px;
  }

  .brand {
    gap: 8px;
    font-size: 16px;
  }

  .brand-mark {
    width: 16px;
    height: 16px;
  }

  .nav-cta,
  .primary-button,
  .secondary-button {
    min-height: 42px;
    padding-inline: 12px;
    font-size: 13px;
  }

  .hero {
    padding: 40px 20px 48px;
  }

  .hero h1 {
    max-width: 100%;
    font-size: clamp(40px, 11vw, 58px);
  }

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

  .hero-lede,
  .audience-line,
  .ritual-line,
  .cta-note {
    overflow-wrap: anywhere;
  }

  .scope-strip {
    display: grid;
    gap: 10px;
  }

  .preview-grid,
  .metric-band,
  .workflow-grid,
  .comparison-row,
  .steps-list,
  .trust-grid,
  .faq-grid,
  .pricing-grid {
    grid-template-columns: 1fr;
  }

  .comparison-row span + span {
    border-top: 1px solid var(--rule);
    border-left: 0;
  }

  .metric-band div {
    min-height: 116px;
    border-right: 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.16);
  }

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

  .section {
    padding: 58px 20px;
  }

  .signal-row {
    grid-template-columns: auto 1fr;
    align-items: start;
  }

  .signal-meta,
  .signal-result {
    grid-column: 2;
    justify-items: start;
  }

  .signal-meta {
    flex-wrap: wrap;
    white-space: normal;
  }

  .download-links {
    grid-template-columns: 1fr;
  }

  .price-actions,
  .final-actions {
    flex-direction: column;
    align-items: stretch;
  }

  .page-main {
    padding: 42px 20px 62px;
  }

  .page-hero h1 {
    max-width: 100%;
    font-size: clamp(40px, 11vw, 58px);
  }

  .source-card,
  .source-row,
  .sample-facts {
    grid-template-columns: 1fr;
  }

  .pending-actions,
  .link-list,
  .source-actions {
    flex-direction: column;
    align-items: stretch;
  }

  .link-list a,
  .source-link {
    justify-content: center;
  }
}
