/* Veritanza — marketplace catalog assurance
   Visual system: modern SaaS (floating pill nav, Inter, tight bold
   headlines with highlight chips, white cards on light panels, black
   CTAs). Brand accent stays Veritanza deep green. */

:root {
  --ink: #0a0a0a;
  --ink-soft: #1f2937;
  --body-c: #374151;
  --muted: #6b7280;
  --faint: #667085;
  --line: #e6e6e6;
  --line-soft: #efefef;
  --panel: #f9f9f9;
  --panel-2: #f3f4f6;
  --card: #ffffff;
  --page: #ffffff;
  --green: #17573f;
  --green-dark: #114231;
  --green-bright: #1e7a54;
  --green-chip: #e7f0ea;
  --green-chip-text: #0f4531;
  --amber: #82631d;
  --amber-tint: #f7f1e2;
  --red: #96382c;
  --red-tint: #f8ece9;
  --slate-tint: #eef0f3;
  --sans: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --serif: "Newsreader", Georgia, "Times New Roman", serif; /* wordmark only */
  --mono: "IBM Plex Mono", ui-monospace, SFMono-Regular, Menlo, monospace;
  --r-card: 16px;
  --r-btn: 12px;
  --r-pill: 999px;
  --shadow-soft: 0 0.6px 0.6px -1.25px rgba(0, 0, 0, 0.14), 0 2.3px 2.3px -2.5px rgba(0, 0, 0, 0.12), 0 10px 10px -2px rgba(0, 0, 0, 0.05);
  --shadow-card: 0 1px 2px rgba(0, 0, 0, 0.04), 0 12px 24px -12px rgba(0, 0, 0, 0.08);
}

* { margin: 0; padding: 0; box-sizing: border-box; }

html { scroll-behavior: smooth; }

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

img { max-width: 100%; }

a { color: inherit; }

.wrap {
  max-width: 1120px;
  margin: 0 auto;
  padding: 0 32px;
}

.wrap-narrow {
  max-width: 780px;
  margin: 0 auto;
  padding: 0 32px;
}

/* ---------- type ---------- */

h1, h2, .display {
  font-family: var(--sans);
  font-weight: 700;
  letter-spacing: -0.035em;
  line-height: 1.08;
  color: var(--ink);
}

h1 { font-size: clamp(38px, 4.8vw, 58px); }
h2 { font-size: clamp(28px, 3.2vw, 40px); letter-spacing: -0.03em; }

h3 {
  font-size: 17px;
  font-weight: 600;
  letter-spacing: -0.01em;
  color: var(--ink);
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  font-weight: 600;
  color: var(--ink-soft);
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: var(--r-pill);
  padding: 6px 14px;
  margin-bottom: 22px;
  box-shadow: var(--shadow-soft);
}

.eyebrow::before {
  content: "";
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--green);
}

.lede {
  font-size: 18px;
  line-height: 1.65;
  color: var(--muted);
}

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

.hl {
  background: var(--green-chip);
  color: var(--green-chip-text);
  border-radius: 10px;
  padding: 0 10px;
  box-decoration-break: clone;
  -webkit-box-decoration-break: clone;
}

/* ---------- nav (floating pill) ---------- */

.nav {
  position: sticky;
  top: 0;
  z-index: 50;
  padding: 14px 16px 6px;
  background: linear-gradient(to bottom, rgba(255, 255, 255, 0.95), rgba(255, 255, 255, 0));
  pointer-events: none;
}

.nav .wrap { max-width: 1120px; }

.nav-inner {
  pointer-events: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  height: 60px;
  background: var(--card);
  border-radius: 20px;
  padding: 0 12px 0 22px;
  box-shadow: var(--shadow-soft);
  border: 1px solid rgba(0, 0, 0, 0.04);
}

.wordmark {
  font-family: var(--serif);
  font-size: 23px;
  font-weight: 600;
  letter-spacing: -0.01em;
  text-decoration: none;
  color: var(--ink);
  display: flex;
  align-items: baseline;
  gap: 0;
}

.wordmark .dot { color: var(--green); }

.wordmark-tag {
  font-family: var(--sans);
  font-size: 10.5px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #9ca3af;
  font-weight: 500;
  margin-left: 10px;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 26px;
}

.nav-links a:not(.btn) {
  font-size: 14px;
  font-weight: 500;
  color: var(--ink-soft);
  text-decoration: none;
}

.nav-links a:not(.btn):hover { color: var(--ink); }

.nav-links a[aria-current="page"]:not(.btn) {
  color: var(--ink);
  font-weight: 600;
}

/* announcement bar under the nav */

.announce {
  position: relative;
  z-index: 40;
  max-width: 1152px;
  margin: 4px auto 0;
  padding: 0 16px;
}

.announce-inner {
  border: 1px solid #d3e2d9;
  display: block;
  text-align: center;
  font-size: 13.5px;
  font-weight: 500;
  color: var(--green-chip-text);
  background: var(--green-chip);
  border-radius: 12px;
  padding: 9px 18px;
}

.announce-inner a {
  font-weight: 700;
  color: var(--green-dark);
}

/* ---------- buttons ---------- */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-family: var(--sans);
  font-size: 15px;
  font-weight: 600;
  text-decoration: none;
  border-radius: var(--r-btn);
  padding: 13px 26px;
  border: 1px solid transparent;
  cursor: pointer;
  white-space: nowrap;
  transition: background 0.15s ease, border-color 0.15s ease, transform 0.1s ease;
}

.btn-primary {
  background: linear-gradient(180deg, #2a2f36, #0a0a0a);
  color: #fff;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.14), var(--shadow-soft);
}
.btn-primary:hover { background: linear-gradient(180deg, #1f242a, #000); transform: translateY(-1px); }

.btn-secondary {
  background: var(--card);
  color: var(--ink);
  border-color: var(--line);
  box-shadow: var(--shadow-soft);
}
.btn-secondary:hover { border-color: #cfcfcf; }

.btn-sm { padding: 9px 18px; font-size: 14px; border-radius: 10px; }

/* ---------- hero ---------- */

.hero { padding: 72px 0 40px; }

.hero-grid {
  display: grid;
  grid-template-columns: 1.12fr 0.88fr;
  gap: 64px;
  align-items: center;
}

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

.hero .lede {
  max-width: 640px;
  margin-top: 24px;
  font-size: 17.5px;
  color: var(--body-c);
}

.hero-checks {
  list-style: none;
  margin-top: 26px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.hero-checks li {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 15.5px;
  font-weight: 500;
  color: var(--ink-soft);
}

.check-ic {
  flex-shrink: 0;
  width: 22px;
  height: 22px;
  border-radius: 7px;
  background: var(--green-chip);
  position: relative;
}

.check-ic::after {
  content: "";
  position: absolute;
  left: 6px;
  top: 6px;
  width: 9px;
  height: 5px;
  border-left: 2px solid var(--green);
  border-bottom: 2px solid var(--green);
  transform: rotate(-45deg);
}

.hero-ctas {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 34px;
}

.hero-ctas .btn { padding: 13px 19px; font-size: 14.5px; }

.hero-note {
  margin-top: 16px;
  font-size: 13.5px;
  color: var(--muted);
}

/* evidence record card (hero + evidence section) */

.evidence-record {
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: var(--r-card);
  overflow: hidden;
  font-family: var(--mono);
  font-size: 13px;
  box-shadow: var(--shadow-card);
}

.evidence-record .rec-bar {
  padding: 12px 20px;
  border-bottom: 1px solid var(--line-soft);
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
  font-size: 11px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--muted);
  background: var(--panel);
}

.evidence-record .rec-status {
  color: var(--green-chip-text);
  background: var(--green-chip);
  padding: 3px 9px;
  border-radius: var(--r-pill);
  white-space: nowrap;
  font-weight: 500;
}

.evidence-record dl {
  display: grid;
  grid-template-columns: 132px 1fr;
  gap: 0;
}

.evidence-record dt {
  padding: 13px 0 13px 20px;
  color: var(--faint);
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  border-top: 1px solid var(--line-soft);
}

.evidence-record dd {
  padding: 13px 20px 13px 12px;
  color: var(--ink-soft);
  border-top: 1px solid var(--line-soft);
  word-break: break-word;
  line-height: 1.55;
}

.evidence-record dt:first-of-type,
.evidence-record dd:first-of-type { border-top: none; }

.evidence-record .src { color: var(--green-bright); }

.hero-card-caption {
  font-size: 13px;
  color: var(--faint);
  margin-top: 14px;
}

/* ---------- sections ---------- */

.section { padding: 108px 0; }

.section-head {
  max-width: 760px;
  margin: 0 auto 60px;
  text-align: center;
}

.section-head .lede {
  margin-top: 18px;
  font-size: 16.5px;
}

/* problem cards */

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

.card {
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: var(--r-card);
  padding: 26px;
}

.card .num {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 34px;
  height: 34px;
  border-radius: 10px;
  background: var(--green-chip);
  color: var(--green-chip-text);
  font-size: 13px;
  font-weight: 700;
  margin-bottom: 16px;
}

.card h3 { margin-bottom: 8px; }

.card p {
  font-size: 14.5px;
  color: var(--muted);
  line-height: 1.6;
}

/* ---------- deliverable table ---------- */

.report-table-frame {
  border: 1px solid var(--line);
  background: var(--card);
  border-radius: var(--r-card);
  overflow: hidden;
  box-shadow: var(--shadow-card);
}

.report-table-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 13px 20px;
  border-bottom: 1px solid var(--line-soft);
  background: var(--panel);
}

.report-table-bar .title {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--muted);
}

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

table.data {
  width: 100%;
  border-collapse: collapse;
  font-size: 14px;
}

table.data th {
  text-align: left;
  font-size: 11.5px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.07em;
  color: var(--faint);
  padding: 12px 20px;
  border-bottom: 1px solid var(--line-soft);
  white-space: nowrap;
}

table.data td {
  padding: 14px 20px;
  border-bottom: 1px solid var(--line-soft);
  color: var(--body-c);
  vertical-align: top;
}

table.data tr:last-child td { border-bottom: none; }

table.data td.product {
  font-weight: 600;
  color: var(--ink);
  white-space: nowrap;
}

.chip {
  display: inline-block;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.01em;
  padding: 4px 11px;
  border-radius: var(--r-pill);
  white-space: nowrap;
}

.chip-ready { background: var(--green-chip); color: var(--green-chip-text); }
.chip-review { background: var(--amber-tint); color: var(--amber); }
.chip-hold { background: var(--red-tint); color: var(--red); }
.chip-specialist { background: var(--slate-tint); color: #465061; }

/* deliverables list */

.deliverables {
  margin-top: 44px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px 32px;
  list-style: none;
  max-width: 980px;
  margin-left: auto;
  margin-right: auto;
}

.deliverables li {
  font-size: 15px;
  font-weight: 500;
  color: var(--ink-soft);
  display: flex;
  align-items: center;
  gap: 12px;
}

.deliverables li::before {
  content: "";
  flex-shrink: 0;
  width: 22px;
  height: 22px;
  border-radius: 7px;
  background: var(--green-chip);
  background-image: url("data:image/svg+xml;charset=utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' width='11' height='9' viewBox='0 0 11 9'%3E%3Cpath d='M1 4.5l3 3L10 1' fill='none' stroke='%2317573f' stroke-width='2'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: center;
}

/* ---------- process ---------- */

.steps {
  list-style: none;
  counter-reset: step;
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 20px;
}

.steps li {
  counter-increment: step;
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: var(--r-card);
  padding: 24px 22px;
}

.steps li::before {
  content: counter(step);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: var(--ink);
  color: #fff;
  font-size: 13.5px;
  font-weight: 700;
  margin-bottom: 16px;
}

.steps h3 { margin-bottom: 8px; font-size: 16px; }

.steps p {
  font-size: 13.5px;
  color: var(--muted);
  line-height: 1.6;
}

/* ---------- differentiation ---------- */

.compare {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.compare-col {
  border: 1px solid var(--line);
  background: var(--card);
  border-radius: var(--r-card);
  padding: 32px;
}

.compare-col.is-not { background: var(--panel); }

.compare-col .col-title {
  display: inline-block;
  font-size: 12.5px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 20px;
  padding: 5px 12px;
  border-radius: var(--r-pill);
}

.compare-col.is-this .col-title { background: var(--green-chip); color: var(--green-chip-text); }
.compare-col.is-not .col-title { background: var(--panel-2); color: var(--body-c); }

.compare-col ul { list-style: none; }

.compare-col li {
  padding: 12px 0 12px 34px;
  border-top: 1px solid var(--line-soft);
  font-size: 15px;
  font-weight: 500;
  position: relative;
  color: var(--ink-soft);
}

.compare-col.is-not li { color: var(--muted); font-weight: 400; }

.compare-col.is-this li::before,
.compare-col.is-not li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 13px;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background-repeat: no-repeat;
  background-position: center;
}

.compare-col.is-this li::before {
  background-color: var(--green-chip);
  background-image: url("data:image/svg+xml;charset=utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' width='11' height='9' viewBox='0 0 11 9'%3E%3Cpath d='M1 4.5l3 3L10 1' fill='none' stroke='%2317573f' stroke-width='2'/%3E%3C/svg%3E");
}

.compare-col.is-not li::before {
  background-color: var(--panel-2);
  background-image: url("data:image/svg+xml;charset=utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' width='9' height='9' viewBox='0 0 9 9'%3E%3Cpath d='M1 1l7 7M8 1L1 8' fill='none' stroke='%239ca3af' stroke-width='1.8'/%3E%3C/svg%3E");
}

/* ---------- fit ---------- */

.fit-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.fit-grid > div {
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: var(--r-card);
  padding: 32px;
}

.fit-grid h3 { margin-bottom: 18px; }

.fit-grid ul { list-style: none; }

.fit-grid li {
  padding: 11px 0;
  border-top: 1px solid var(--line-soft);
  font-size: 15px;
  color: var(--body-c);
}

.fit-grid .not-fit { background: var(--panel); }
.fit-grid .not-fit li { color: var(--muted); }

/* ---------- evidence standard (light panel) ---------- */

.section-panel {
  padding: 40px 0;
}

.section-panel .panel-inner {
  background: var(--panel);
  border: 1px solid var(--line-soft);
  border-radius: 24px;
  padding: 72px 56px;
}

.evidence-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  align-items: start;
}

.evidence-copy .tier {
  border-top: 1px solid var(--line);
  padding: 18px 0;
}

.evidence-copy .tier:last-of-type { border-bottom: 1px solid var(--line); }

.evidence-copy .tier h3 {
  display: flex;
  gap: 12px;
  align-items: center;
}

.evidence-copy .tier h3 .t {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.06em;
  color: var(--green-chip-text);
  background: var(--green-chip);
  border-radius: var(--r-pill);
  padding: 3px 10px;
}

.evidence-copy .tier p {
  font-size: 14px;
  color: var(--muted);
  margin-top: 6px;
  line-height: 1.65;
}

.ai-statement {
  margin-top: 32px;
  border-left: 3px solid var(--green);
  padding: 4px 0 4px 20px;
  font-size: 16px;
  line-height: 1.6;
  color: var(--ink-soft);
  font-weight: 500;
}

.dark-links {
  margin-top: 32px;
  display: flex;
  flex-wrap: wrap;
  gap: 12px 14px;
}

.dark-links a {
  color: var(--ink);
  font-size: 14px;
  font-weight: 600;
  text-decoration: none;
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: var(--r-pill);
  padding: 8px 16px;
  box-shadow: var(--shadow-soft);
}

.dark-links a:hover { border-color: #cfcfcf; }

/* ---------- pricing ---------- */

.pricing-panel {
  border: 1px solid var(--line);
  background: var(--card);
  border-radius: 24px;
  padding: 56px;
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 56px;
  align-items: start;
  box-shadow: var(--shadow-card);
}

.price-figure {
  font-family: var(--sans);
  font-size: 60px;
  font-weight: 700;
  letter-spacing: -0.04em;
  line-height: 1;
  color: var(--ink);
}

.price-figure .from {
  font-family: var(--sans);
  font-size: 13px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--faint);
  display: block;
  margin-bottom: 14px;
}

.price-note {
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--green-chip-text);
  background: var(--green-chip);
  display: inline-block;
  border-radius: var(--r-pill);
  padding: 5px 12px;
  margin-top: 18px;
}

.pricing-side p { margin-bottom: 18px; color: var(--body-c); font-size: 15.5px; }
.pricing-side p:last-of-type { margin-bottom: 24px; }

/* ---------- FAQ ---------- */

.faq-list {
  max-width: 820px;
  margin: 0 auto;
  border-top: 1px solid var(--line-soft);
}

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

.faq-list summary {
  cursor: pointer;
  list-style: none;
  padding: 26px 56px 26px 4px;
  font-size: 16.5px;
  font-weight: 600;
  position: relative;
  color: var(--ink);
}

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

.faq-list summary::after {
  content: "";
  position: absolute;
  right: 4px;
  top: 50%;
  width: 30px;
  height: 30px;
  border: 1px solid var(--line);
  border-radius: 50%;
  background: url("data:image/svg+xml;charset=utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' fill='none' stroke='%236b7280' stroke-width='1.8'/%3E%3C/svg%3E") center no-repeat;
  box-shadow: var(--shadow-soft);
  transform: translateY(-50%);
  transition: transform 0.15s ease;
}

.faq-list details[open] summary::after {
  transform: translateY(-50%) rotate(180deg);
}

.faq-list .faq-body {
  padding: 0 4px 24px;
  max-width: 700px;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.7;
}

/* ---------- form ---------- */

.form-layout {
  display: grid;
  grid-template-columns: 1fr 1.3fr;
  gap: 56px;
  align-items: start;
}

.form-side h2 { margin-bottom: 20px; }

.form-side p {
  color: var(--body-c);
  font-size: 15.5px;
  margin-bottom: 16px;
  line-height: 1.7;
}

.form-side .assurances {
  list-style: none;
  margin-top: 26px;
}

.form-side .assurances li {
  padding: 9px 0;
  font-size: 14.5px;
  font-weight: 500;
  color: var(--ink-soft);
  display: flex;
  gap: 12px;
  align-items: center;
}

.form-side .assurances li::before {
  content: "";
  flex-shrink: 0;
  width: 22px;
  height: 22px;
  border-radius: 7px;
  background: var(--green-chip);
  background-image: url("data:image/svg+xml;charset=utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' width='11' height='9' viewBox='0 0 11 9'%3E%3Cpath d='M1 4.5l3 3L10 1' fill='none' stroke='%2317573f' stroke-width='2'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: center;
}

form.qualify {
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: var(--r-card);
  padding: 40px;
  box-shadow: var(--shadow-card);
}

.field { margin-bottom: 20px; }

.field-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
}

.field label {
  display: block;
  font-size: 13.5px;
  font-weight: 600;
  margin-bottom: 7px;
  color: var(--ink);
}

.field label .opt {
  font-weight: 400;
  color: var(--faint);
  font-size: 12.5px;
}

.field input[type="text"],
.field input[type="email"],
.field input[type="url"],
.field select,
.field textarea {
  width: 100%;
  font-family: var(--sans);
  font-size: 15px;
  color: var(--ink);
  padding: 11px 14px;
  border: 1px solid var(--line);
  border-radius: 10px;
  background: var(--card);
  transition: border-color 0.15s ease, box-shadow 0.15s ease;
}

.field select { appearance: none; background-image: url("data:image/svg+xml;charset=utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' fill='none' stroke='%236b7280' stroke-width='1.6'/%3E%3C/svg%3E"); background-repeat: no-repeat; background-position: right 14px center; padding-right: 38px; }

.field input:focus,
.field select:focus,
.field textarea:focus {
  outline: none;
  border-color: var(--green);
  box-shadow: 0 0 0 3px rgba(23, 87, 63, 0.12);
}

.field textarea { min-height: 90px; resize: vertical; }

.field .hint {
  font-size: 12.5px;
  color: var(--faint);
  margin-top: 6px;
}

.check {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  font-size: 13.5px;
  color: var(--muted);
  margin-bottom: 14px;
}

.check input {
  margin-top: 3px;
  accent-color: var(--green);
  width: 16px;
  height: 16px;
  flex-shrink: 0;
}

.check a { color: var(--ink-soft); }

form .btn { width: 100%; margin-top: 10px; }

.form-footnote {
  margin-top: 16px;
  font-size: 12.5px;
  color: var(--faint);
  text-align: center;
  line-height: 1.6;
}

.form-success {
  display: none;
  margin-top: 18px;
  background: var(--green-chip);
  border: 1px solid #cfe0d5;
  border-radius: 10px;
  padding: 16px 18px;
  font-size: 14px;
  color: var(--green-dark);
  line-height: 1.6;
}

.form-error {
  display: none;
  margin-top: 18px;
  background: var(--red-tint);
  border: 1px solid #e3c4bd;
  border-radius: 10px;
  padding: 14px 18px;
  font-size: 14px;
  color: var(--red);
}

/* ---------- footer (light) ---------- */

.footer {
  background: var(--panel);
  border-top: 1px solid var(--line-soft);
  color: var(--muted);
  padding: 64px 0 40px;
  font-size: 14px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr;
  gap: 48px;
  padding-bottom: 44px;
  border-bottom: 1px solid var(--line-soft);
}

.footer .wordmark { color: var(--ink); margin-bottom: 16px; }

.footer p { line-height: 1.7; max-width: 400px; font-size: 13.5px; }

.footer h4 {
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--faint);
  margin-bottom: 16px;
}

.footer ul { list-style: none; }

.footer li { margin-bottom: 10px; }

.footer a {
  color: var(--body-c);
  text-decoration: none;
  font-weight: 500;
}
.footer a:hover { color: var(--ink); }

.footer-legal {
  padding-top: 32px;
  font-size: 12.5px;
  color: var(--faint);
  line-height: 1.8;
  max-width: 860px;
}

.footer-legal p { margin-bottom: 10px; max-width: none; }

/* ---------- subpages ---------- */

.page-head {
  padding: 64px 0 48px;
  border-bottom: 1px solid var(--line-soft);
  text-align: center;
}

.page-head h1 { font-size: clamp(32px, 4vw, 48px); max-width: 800px; margin: 0 auto; }

.page-head .lede { max-width: 680px; margin: 20px auto 0; }

.prose { padding: 56px 0 88px; }

.prose h2 {
  font-size: 26px;
  margin: 52px 0 16px;
  text-align: left;
}

.prose h2:first-child { margin-top: 0; }

.prose h3 { margin: 30px 0 10px; font-size: 17px; }

.prose p, .prose li {
  color: var(--body-c);
  font-size: 16px;
  line-height: 1.75;
}

.prose p { margin-bottom: 16px; }

.prose ul, .prose ol { margin: 0 0 16px 22px; }

.prose li { margin-bottom: 8px; }

.prose table.data {
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: var(--r-card);
  margin: 24px 0;
  font-size: 14.5px;
}

.prose .table-scroll { margin: 24px 0; border: 1px solid var(--line); border-radius: var(--r-card); background: var(--card); }
.prose .table-scroll table.data { border: none; margin: 0; }

.callout {
  border: 1px solid var(--line);
  border-left: 3px solid var(--green);
  background: var(--panel);
  border-radius: 12px;
  padding: 20px 24px;
  margin: 26px 0;
  font-size: 15px;
  color: var(--body-c);
}

.callout.warn { border-left-color: var(--amber); }

.callout p:last-child { margin-bottom: 0; }

/* sample report artifacts */

.report-cover {
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: var(--r-card);
  padding: 40px;
  font-family: var(--mono);
  font-size: 13.5px;
  line-height: 2.1;
  color: var(--body-c);
  margin: 8px 0 40px;
  box-shadow: var(--shadow-card);
}

.report-cover .rc-brand {
  font-family: var(--sans);
  font-weight: 700;
  letter-spacing: -0.02em;
  font-size: 24px;
  color: var(--ink);
  margin-bottom: 14px;
  line-height: 1.3;
}

.report-cover .rc-label { color: var(--faint); display: inline-block; min-width: 190px; }

.finding-card {
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: var(--r-card);
  overflow: hidden;
  margin: 28px 0;
  box-shadow: var(--shadow-card);
}

.finding-card .fc-head {
  padding: 16px 26px;
  border-bottom: 1px solid var(--line-soft);
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
  background: var(--panel);
}

.finding-card .fc-head .fc-title { font-weight: 600; font-size: 15.5px; }

.finding-card .fc-head .fc-id {
  font-size: 11.5px;
  font-weight: 700;
  letter-spacing: 0.06em;
  color: var(--faint);
  margin-right: 12px;
}

.finding-card .fc-body { padding: 24px 26px; }

.finding-card dl {
  display: grid;
  grid-template-columns: 190px 1fr;
  font-size: 14.5px;
}

.finding-card dt {
  color: var(--faint);
  padding: 9px 0;
  font-size: 11.5px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  border-top: 1px solid var(--line-soft);
}

.finding-card dd {
  padding: 9px 0;
  color: var(--body-c);
  border-top: 1px solid var(--line-soft);
}

.finding-card dt:first-of-type, .finding-card dd:first-of-type { border-top: none; }

.finding-card .fc-note {
  margin-top: 20px;
  font-size: 14.5px;
  color: var(--muted);
  line-height: 1.7;
}

.finding-card .fc-note strong { color: var(--ink-soft); }

/* CTA band on subpages */

.cta-band {
  padding: 40px 0 88px;
}

.cta-band .wrap {
  text-align: center;
  background: var(--panel);
  border: 1px solid var(--line-soft);
  border-radius: 24px;
  padding: 64px 32px;
  max-width: min(1056px, calc(100% - 40px));
}

.cta-band h2 { margin-bottom: 14px; }

.cta-band p { color: var(--muted); margin-bottom: 28px; }

/* ---------- responsive ---------- */

@media (max-width: 960px) {
  .card-grid { grid-template-columns: repeat(2, 1fr); }
  .steps { grid-template-columns: repeat(2, 1fr); }
  .evidence-layout, .form-layout, .compare, .fit-grid { grid-template-columns: 1fr; gap: 32px; }
  .pricing-panel { grid-template-columns: 1fr; padding: 40px; gap: 32px; }
  .deliverables { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr; gap: 36px; }
  .hero-grid { grid-template-columns: 1fr; gap: 44px; }
  .wordmark-tag { display: none; }
  .nav-links { gap: 18px; }
  .section-panel .panel-inner { padding: 48px 32px; }
}

.nav-menu { display: none; position: relative; }

.nav-menu summary {
  list-style: none;
  cursor: pointer;
  width: 38px;
  height: 38px;
  border: 1px solid var(--line);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.nav-menu summary::-webkit-details-marker { display: none; }

.nav-menu summary span {
  display: block;
  width: 14px;
  height: 2px;
  border-radius: 2px;
  background: var(--ink);
  box-shadow: 0 -5px 0 var(--ink), 0 5px 0 var(--ink);
}

.nav-menu-list {
  position: absolute;
  right: 0;
  top: 50px;
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: 16px;
  box-shadow: var(--shadow-card);
  padding: 8px;
  min-width: 190px;
  display: flex;
  flex-direction: column;
  z-index: 60;
}

.nav-menu-list a {
  padding: 10px 14px;
  font-size: 14.5px;
  font-weight: 500;
  text-decoration: none;
  color: var(--ink-soft);
  border-radius: 10px;
}

.nav-menu-list a:hover { background: var(--panel); }

@media (max-width: 700px) {
  .nav-links a:not(.btn) { display: none; }
  .nav-menu { display: block; }
}

@media (max-width: 600px) {
  .wrap, .wrap-narrow { padding: 0 20px; }
  .hero { padding: 48px 0 32px; }
  .section { padding: 56px 0; }
  .card-grid, .steps, .deliverables { grid-template-columns: 1fr; }
  .field-row { grid-template-columns: 1fr; gap: 0; }
  form.qualify { padding: 26px 20px; }
  .pricing-panel { padding: 30px 22px; }
  .hero-ctas .btn { width: 100%; }
  .report-cover { padding: 26px 20px; line-height: 1.7; }
  .report-cover .rc-label { display: block; min-width: 0; margin-top: 12px; line-height: 1.4; }
  .report-table-bar .title + .title { display: none; }
  .finding-card dl { grid-template-columns: 1fr; }
  .finding-card dt { border-top: 1px solid var(--line-soft); padding-bottom: 0; }
  .finding-card dd { border-top: none; padding-top: 2px; }
  .evidence-record dl { grid-template-columns: 1fr; }
  .evidence-record dt { padding: 12px 20px 0; border-top: 1px solid var(--line-soft); }
  .evidence-record dd { padding: 2px 20px 12px; border-top: none; }
  .section-panel .panel-inner { padding: 36px 22px; border-radius: 18px; }
  .cta-band .wrap { padding: 44px 22px; }
  .announce { padding: 0 16px; }
}

section[id] { scroll-margin-top: 96px; }

.check input:focus-visible {
  outline: 2px solid var(--green);
  outline-offset: 2px;
}

/* focus visibility */
a:focus-visible, button:focus-visible, summary:focus-visible {
  outline: 2px solid var(--green);
  outline-offset: 3px;
  border-radius: 3px;
}
