:root {
  color-scheme: light;
  --ink: #172033;
  --muted: #5f6f84;
  --line: #dde5ef;
  --paper: #ffffff;
  --wash: #f5f7fa;
  --teal: #0f6f64;
  --teal-dark: #0d5c53;
  --blue: #334e8a;
  --gold: #a86812;
  --rose: #b4234d;
  --charcoal: #202938;
  --shadow: 0 18px 42px rgba(23, 32, 51, 0.14);
  --shadow-soft: 0 8px 24px rgba(23, 32, 51, 0.08);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--wash);
  color: var(--ink);
  font-family: Aptos, "IBM Plex Sans", "Segoe UI", ui-sans-serif, system-ui, sans-serif;
  letter-spacing: 0;
}

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

.site-nav {
  min-height: 68px;
  padding: 0 clamp(18px, 5vw, 60px);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  background: rgba(255, 255, 255, 0.96);
  border-bottom: 1px solid var(--line);
  position: sticky;
  top: 0;
  z-index: 10;
}

.site-brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  flex: 0 0 auto;
  font-weight: 900;
  font-size: 17px;
}

.brand-mark {
  width: 38px;
  height: 38px;
  border-radius: 8px;
  display: block;
  position: relative;
  color: white;
  background: linear-gradient(135deg, var(--charcoal), var(--teal));
  box-shadow: 0 8px 18px rgba(15, 111, 100, 0.22);
  overflow: hidden;
}

.brand-mark::before,
.brand-mark::after,
.brand-mark i {
  content: "";
  position: absolute;
  background: white;
  border-radius: 2px;
}

.brand-mark::before {
  width: 5px;
  height: 20px;
  left: 11px;
  top: 9px;
}

.brand-mark::after {
  width: 5px;
  height: 20px;
  right: 11px;
  top: 9px;
}

.brand-mark i {
  width: 16px;
  height: 5px;
  left: 11px;
  top: 17px;
}

.brand-lockup {
  display: grid;
  gap: 1px;
}

.brand-lockup em {
  color: var(--muted);
  font-size: 11px;
  font-style: normal;
  font-weight: 800;
}

nav {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  flex-wrap: wrap;
  gap: clamp(14px, 3vw, 28px);
  color: var(--muted);
  font-weight: 800;
  font-size: 14px;
}

nav a {
  white-space: nowrap;
}

nav a:hover {
  color: var(--ink);
}

.hero {
  min-height: min(760px, calc(100svh - 18px));
  padding: clamp(34px, 6vw, 72px) clamp(18px, 5vw, 60px) clamp(28px, 5vw, 56px);
  display: grid;
  grid-template-columns: minmax(320px, 0.82fr) minmax(520px, 1.18fr);
  gap: clamp(28px, 5vw, 70px);
  align-items: center;
  position: relative;
  overflow: hidden;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.66), rgba(245, 247, 250, 0.92)),
    radial-gradient(circle at 9% 22%, rgba(15, 111, 100, 0.13), transparent 26%),
    radial-gradient(circle at 84% 12%, rgba(168, 104, 18, 0.12), transparent 24%),
    repeating-linear-gradient(90deg, rgba(23, 32, 51, 0.04) 0, rgba(23, 32, 51, 0.04) 1px, transparent 1px, transparent 56px),
    repeating-linear-gradient(0deg, rgba(23, 32, 51, 0.035) 0, rgba(23, 32, 51, 0.035) 1px, transparent 1px, transparent 56px);
}

.hero::after {
  content: "";
  position: absolute;
  left: clamp(18px, 5vw, 60px);
  right: clamp(18px, 5vw, 60px);
  bottom: 0;
  height: 1px;
  background: var(--line);
}

.hero-copy {
  position: relative;
  z-index: 1;
  max-width: 620px;
}

.eyebrow {
  margin: 0 0 12px;
  color: var(--teal);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

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

h1 {
  margin-bottom: 16px;
  font-size: clamp(54px, 7vw, 92px);
  line-height: 0.95;
}

h2 {
  margin-bottom: 0;
  font-size: clamp(30px, 4vw, 46px);
  line-height: 1.06;
}

h3 {
  margin-bottom: 10px;
  font-size: 18px;
}

.hero-copy p:not(.eyebrow),
.section-head {
  color: var(--muted);
  font-size: clamp(18px, 2vw, 21px);
  line-height: 1.55;
}

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

.button {
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 8px;
  padding: 0 18px;
  font-weight: 900;
}

.button.primary {
  background: var(--teal);
  color: white;
  box-shadow: 0 10px 22px rgba(15, 111, 100, 0.22);
}

.button.primary:hover {
  background: var(--teal-dark);
}

.button.secondary {
  background: white;
  color: var(--ink);
  border: 1px solid var(--line);
}

.button.secondary:hover {
  border-color: #bdc9d8;
}

.hero-metrics {
  display: grid;
  gap: 10px;
  margin-top: 26px;
  max-width: 520px;
}

.hero-metrics span {
  display: flex;
  justify-content: space-between;
  gap: 14px;
  min-height: 42px;
  align-items: center;
  border: 1px solid rgba(221, 229, 239, 0.9);
  background: rgba(255, 255, 255, 0.74);
  border-radius: 8px;
  padding: 10px 12px;
  color: var(--muted);
  box-shadow: var(--shadow-soft);
}

.hero-metrics strong {
  color: var(--ink);
}

.role-strip {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 18px;
}

.role-strip span {
  min-height: 30px;
  display: inline-flex;
  align-items: center;
  border: 1px solid rgba(15, 111, 100, 0.22);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.72);
  color: var(--teal-dark);
  padding: 0 11px;
  font-size: 12px;
  font-weight: 900;
}

.product-preview {
  position: relative;
  z-index: 1;
  display: grid;
  gap: 14px;
  padding: 16px;
  border: 1px solid rgba(187, 199, 215, 0.9);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.92);
  box-shadow: var(--shadow);
}

.preview-top {
  display: flex;
  align-items: center;
  gap: 10px;
  min-height: 36px;
  padding-bottom: 10px;
  border-bottom: 1px solid var(--line);
}

.preview-top em {
  margin-left: auto;
  color: var(--muted);
  font-size: 13px;
  font-style: normal;
  font-weight: 800;
}

.preview-dot {
  width: 10px;
  height: 10px;
  border-radius: 999px;
  background: var(--teal);
  box-shadow: 16px 0 0 #f0b429, 32px 0 0 #d64550;
}

.preview-link {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  border: 1px solid #cbd7e4;
  border-radius: 6px;
  background: #f8fafc;
  padding: 10px 12px;
  color: var(--muted);
  font-size: 13px;
  min-width: 0;
}

.preview-link strong {
  color: var(--teal-dark);
  font-size: 13px;
  overflow-wrap: anywhere;
}

.preview-board {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
}

.preview-column {
  min-height: 278px;
  padding: 10px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #f4f7fb;
}

.preview-column-head {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 10px;
  color: #243247;
  font-size: 13px;
}

.preview-column-head span {
  min-width: 26px;
  min-height: 24px;
  display: grid;
  place-items: center;
  border-radius: 999px;
  background: white;
  color: var(--teal);
  font-weight: 900;
  border: 1px solid var(--line);
}

.preview-card {
  display: grid;
  gap: 7px;
  margin-bottom: 10px;
  padding: 12px;
  border: 1px solid var(--line);
  border-left: 4px solid var(--teal);
  border-radius: 8px;
  background: white;
  box-shadow: var(--shadow-soft);
}

.preview-card.soft {
  border-left-color: var(--blue);
}

.preview-card.strong {
  border-left-color: var(--teal);
}

.preview-card.warm {
  border-left-color: var(--gold);
}

.preview-card span {
  color: var(--muted);
  font-size: 13px;
}

.preview-card mark {
  width: fit-content;
  border-radius: 999px;
  padding: 5px 8px;
  background: #e9f7f4;
  color: var(--teal-dark);
  font-size: 11px;
  font-weight: 900;
}

.preview-review {
  display: grid;
  grid-template-columns: minmax(0, 0.82fr) minmax(260px, 1fr);
  gap: 14px;
  align-items: stretch;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #172033;
  color: white;
  padding: 14px;
}

.score {
  width: 58px;
  height: 58px;
  display: grid;
  place-items: center;
  border-radius: 8px;
  background: #e8fbf6;
  color: var(--teal-dark);
  font-size: 28px;
  font-weight: 900;
  margin-bottom: 10px;
}

.preview-review p,
.preview-review ul {
  margin-bottom: 0;
  color: rgba(255, 255, 255, 0.72);
  line-height: 1.45;
}

.preview-review ul {
  display: grid;
  gap: 8px;
  padding-left: 20px;
}

.proof-strip {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: #ffffff;
}

.proof-strip div {
  min-height: 156px;
  display: grid;
  align-content: start;
  gap: 8px;
  padding: 22px clamp(18px, 3vw, 34px);
  border-right: 1px solid var(--line);
}

.proof-strip div:last-child {
  border-right: 0;
}

.proof-strip span {
  width: 28px;
  height: 28px;
  display: grid;
  place-items: center;
  border-radius: 6px;
  background: #e8fbf6;
  color: var(--teal-dark);
  font-weight: 900;
  font-size: 13px;
}

.proof-strip strong {
  font-size: 17px;
}

.proof-strip p {
  margin: 0;
  color: var(--muted);
  line-height: 1.45;
}

.media-band {
  padding: clamp(26px, 4vw, 44px) clamp(18px, 5vw, 60px);
  display: grid;
  grid-template-columns: minmax(280px, 0.9fr) minmax(0, 1.1fr);
  gap: clamp(20px, 4vw, 44px);
  align-items: center;
  background: #142337;
  color: white;
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
}

.media-band .eyebrow,
.media-band p {
  color: rgba(255, 255, 255, 0.72);
}

.media-band h2 {
  margin-bottom: 10px;
  font-size: clamp(28px, 4vw, 48px);
}

.media-band p {
  max-width: 640px;
  margin-bottom: 0;
  line-height: 1.55;
}

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

.media-slots span {
  min-height: 78px;
  display: grid;
  place-items: center;
  border: 1px dashed rgba(255, 255, 255, 0.34);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.08);
  color: rgba(255, 255, 255, 0.78);
  padding: 12px;
  text-align: center;
  font-size: 13px;
  font-weight: 900;
}

.operator-band {
  padding: clamp(34px, 5vw, 54px) clamp(18px, 5vw, 60px);
  display: grid;
  grid-template-columns: minmax(280px, 0.82fr) minmax(0, 1.18fr);
  gap: clamp(20px, 4vw, 44px);
  align-items: start;
  background: #fffaf2;
  border-top: 1px solid #eadcc5;
  border-bottom: 1px solid #eadcc5;
}

.operator-band h2 {
  max-width: 680px;
}

.operator-note {
  max-width: 600px;
  margin: 18px 0 0;
  color: #6b5c49;
  line-height: 1.55;
}

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

.operator-grid article {
  min-height: 178px;
  display: grid;
  align-content: start;
  gap: 10px;
  border: 1px solid #eadcc5;
  border-radius: 8px;
  background: white;
  padding: 18px;
  box-shadow: var(--shadow-soft);
}

.operator-tag {
  width: fit-content;
  min-height: 30px;
  display: inline-flex;
  align-items: center;
  border-radius: 999px;
  background: #e8fbf6;
  color: var(--teal-dark);
  padding: 0 10px;
  font-size: 12px;
  font-weight: 900;
  border: 1px solid rgba(15, 111, 100, 0.18);
}

.operator-grid p {
  color: var(--muted);
  line-height: 1.5;
}

.section {
  padding: clamp(38px, 5vw, 62px) clamp(18px, 5vw, 60px);
}

.section-head {
  max-width: 760px;
  margin-bottom: 22px;
}

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

.pricing-grid article {
  min-height: 188px;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 20px;
  background: var(--paper);
  box-shadow: var(--shadow-soft);
}

.pricing-grid p {
  color: var(--muted);
  line-height: 1.5;
}

.workflow-ledger {
  border-top: 1px solid var(--line);
  background: var(--paper);
}

.ledger-row {
  display: grid;
  grid-template-columns: 72px minmax(190px, 0.45fr) minmax(0, 1fr);
  gap: 20px;
  align-items: start;
  border-bottom: 1px solid var(--line);
  padding: 20px 0;
}

.ledger-row span {
  width: 42px;
  height: 36px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(15, 111, 100, 0.22);
  border-radius: 6px;
  background: #e8fbf6;
  color: var(--teal-dark);
  font-weight: 900;
}

.ledger-row strong {
  font-size: 20px;
}

.ledger-row p {
  margin: 0;
  color: var(--muted);
  line-height: 1.55;
}

.trust-section {
  background: white;
}

.trust-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(280px, 0.85fr);
  gap: clamp(24px, 5vw, 64px);
  align-items: start;
}

.trust-layout p {
  color: var(--muted);
  font-size: 20px;
  line-height: 1.6;
}

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

.trust-list li {
  min-height: 56px;
  display: flex;
  align-items: center;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 14px 16px;
  background: #f8fafc;
  font-weight: 900;
}

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

.trust-proof span {
  border: 1px solid var(--line);
  border-left: 4px solid var(--teal);
  border-radius: 6px;
  background: #f8fafc;
  padding: 14px;
  color: var(--muted);
  line-height: 1.45;
  font-weight: 800;
}

.answer-section {
  background: #f8fafc;
}

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

.answer-grid article {
  min-height: 230px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: white;
  padding: 18px;
  box-shadow: var(--shadow-soft);
}

.answer-grid h3 {
  font-size: 19px;
  line-height: 1.2;
}

.answer-grid p {
  margin-bottom: 0;
  color: var(--muted);
  line-height: 1.55;
}

.text-link {
  display: inline-flex;
  margin-top: 18px;
  color: var(--teal-dark);
  font-weight: 900;
  text-decoration: underline;
  text-underline-offset: 4px;
}

.text-link.light {
  color: white;
}

.answer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
}

.press-kit {
  background: white;
}

.press-copy {
  display: grid;
  gap: 14px;
  max-width: 980px;
}

.press-copy p {
  margin: 0;
  border: 1px solid var(--line);
  border-left: 5px solid var(--teal);
  border-radius: 8px;
  background: #f8fafc;
  padding: 18px;
  color: var(--muted);
  font-size: 18px;
  line-height: 1.65;
}

.press-copy strong {
  color: var(--ink);
}

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

.fact-grid article {
  min-height: 210px;
  display: grid;
  align-content: start;
  gap: 10px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: white;
  padding: 18px;
  box-shadow: var(--shadow-soft);
}

.fact-grid span {
  color: var(--teal-dark);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

.fact-grid strong {
  font-size: 22px;
  line-height: 1.15;
}

.fact-grid p {
  margin: 0;
  color: var(--muted);
  line-height: 1.55;
}

.answer-directory {
  display: grid;
  gap: 10px;
  background: white;
}

.section.answer-directory {
  padding-top: clamp(24px, 4vw, 42px);
  padding-bottom: clamp(28px, 4vw, 46px);
}

.answer-directory article {
  display: grid;
  grid-template-columns: minmax(190px, 0.34fr) minmax(0, 1fr);
  gap: 16px;
  align-items: start;
  border-bottom: 1px solid var(--line);
  padding: 13px 0;
}

.answer-directory h2 {
  margin-bottom: 0;
  font-size: clamp(19px, 2vw, 24px);
  line-height: 1.16;
}

.answer-directory p {
  margin: 0;
  color: var(--muted);
  font-size: 16px;
  line-height: 1.52;
}

.pricing-band {
  background: #172033;
  color: white;
}

.pricing-band .section-head,
.pricing-band .eyebrow,
.pricing-grid p {
  color: rgba(255, 255, 255, 0.72);
}

.pricing-grid article {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.16);
  box-shadow: none;
}

.pricing-grid strong {
  display: block;
  margin-bottom: 10px;
  font-size: 40px;
}

.pricing-note {
  max-width: 760px;
  margin: 22px 0 0;
  color: rgba(255, 255, 255, 0.72);
  line-height: 1.55;
}

.final-cta {
  margin-top: clamp(26px, 4vw, 42px);
  padding: clamp(18px, 3vw, 28px);
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.08);
}

.final-cta h2 {
  max-width: 760px;
  font-size: clamp(26px, 3vw, 40px);
}

.cta-stack,
.conversion-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: flex-end;
}

.button.secondary.dark {
  background: rgba(255, 255, 255, 0.1);
  color: white;
  border-color: rgba(255, 255, 255, 0.26);
}

.conversion-strip {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  background: #fffaf2;
  border-top: 1px solid #eadcc5;
}

.conversion-strip h2 {
  max-width: 820px;
  font-size: clamp(28px, 4vw, 44px);
}

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

.walkthrough-grid article {
  min-height: 250px;
  display: grid;
  align-content: start;
  gap: 10px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: white;
  padding: 18px;
  box-shadow: var(--shadow-soft);
}

.walkthrough-grid span {
  width: 42px;
  height: 36px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(15, 111, 100, 0.22);
  border-radius: 6px;
  background: #e8fbf6;
  color: var(--teal-dark);
  font-weight: 900;
}

.walkthrough-grid h2 {
  font-size: 24px;
}

.walkthrough-grid p {
  margin: 0;
  color: var(--muted);
  line-height: 1.55;
}

.comparison-table {
  border-top: 1px solid var(--line);
  background: white;
}

.comparison-row {
  display: grid;
  grid-template-columns: minmax(150px, 0.5fr) minmax(180px, 0.8fr) minmax(180px, 0.9fr) minmax(220px, 1.1fr);
  gap: 18px;
  align-items: start;
  border-bottom: 1px solid var(--line);
  padding: 18px 0;
}

.comparison-row.head {
  color: var(--teal-dark);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

.comparison-row strong {
  font-size: 19px;
}

.comparison-row p {
  margin: 0;
  color: var(--muted);
  line-height: 1.55;
}

.article-hero {
  padding: clamp(28px, 5vw, 52px) clamp(18px, 5vw, 60px) clamp(20px, 3vw, 30px);
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(250px, 0.38fr);
  gap: clamp(18px, 4vw, 42px);
  align-items: center;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.78), rgba(245, 247, 250, 0.96)),
    repeating-linear-gradient(90deg, rgba(23, 32, 51, 0.04) 0, rgba(23, 32, 51, 0.04) 1px, transparent 1px, transparent 56px);
  border-bottom: 1px solid var(--line);
}

.article-hero h1 {
  max-width: 840px;
  margin-bottom: 10px;
  font-size: clamp(30px, 4.5vw, 54px);
  line-height: 1.02;
}

.article-hero p {
  max-width: 760px;
  margin-bottom: 0;
  color: var(--muted);
  font-size: clamp(16px, 1.7vw, 19px);
  line-height: 1.48;
}

.article-meta {
  display: grid;
  gap: 7px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.78);
  padding: 12px;
  box-shadow: none;
}

.article-meta span {
  color: var(--muted);
  font-size: 13px;
  font-weight: 900;
  text-transform: uppercase;
}

.blog-list {
  padding: clamp(24px, 4vw, 42px) clamp(18px, 5vw, 60px);
  display: grid;
  gap: 10px;
}

.blog-card {
  display: grid;
  grid-template-columns: minmax(150px, 0.24fr) minmax(0, 1fr) auto;
  gap: 16px;
  align-items: start;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: white;
  padding: 14px 16px;
  box-shadow: none;
}

.blog-card time,
.blog-card small {
  color: var(--muted);
  font-weight: 900;
  text-transform: uppercase;
}

.blog-card h2 {
  margin-bottom: 5px;
  font-size: clamp(20px, 2.3vw, 27px);
  line-height: 1.12;
}

.blog-card p {
  margin: 0;
  color: var(--muted);
  line-height: 1.46;
}

.article-body {
  max-width: 820px;
  padding: clamp(26px, 4vw, 46px) clamp(18px, 5vw, 60px);
}

.article-body h2 {
  margin: 26px 0 9px;
  font-size: clamp(23px, 2.5vw, 31px);
}

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

.article-body p,
.article-body li {
  color: var(--muted);
  font-size: 17px;
  line-height: 1.62;
}

.article-body ul {
  display: grid;
  gap: 8px;
  padding-left: 22px;
}

.article-callout {
  margin: 20px 0;
  border: 1px solid #cfe1df;
  border-left: 5px solid var(--teal);
  border-radius: 8px;
  background: #f0faf8;
  padding: 14px 16px;
}

.article-callout p {
  margin: 0;
  color: var(--teal-dark);
  font-weight: 900;
}

.legal-body {
  max-width: 980px;
  padding: clamp(34px, 5vw, 66px) clamp(18px, 5vw, 60px);
}

.legal-body h2 {
  margin: 34px 0 12px;
  font-size: clamp(26px, 3vw, 38px);
}

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

.legal-body p,
.legal-body li {
  color: var(--muted);
  font-size: 18px;
  line-height: 1.68;
}

.legal-body ul {
  display: grid;
  gap: 8px;
  padding-left: 22px;
}

.legal-note {
  border: 1px solid #eadcc5;
  border-left: 5px solid var(--gold);
  border-radius: 8px;
  background: #fffaf2;
  padding: 16px;
  color: #6b5c49;
  font-weight: 800;
}

.source-list a {
  color: var(--teal-dark);
  font-weight: 900;
  text-decoration: underline;
  text-underline-offset: 4px;
}

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

.trust-principles article {
  min-height: 260px;
  display: grid;
  align-content: start;
  gap: 10px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: white;
  padding: 18px;
  box-shadow: var(--shadow-soft);
}

.trust-principles span {
  width: 42px;
  height: 36px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(15, 111, 100, 0.22);
  border-radius: 6px;
  background: #e8fbf6;
  color: var(--teal-dark);
  font-weight: 900;
}

.trust-principles h2 {
  font-size: 24px;
}

.trust-principles p {
  margin: 0;
  color: var(--muted);
  line-height: 1.55;
}

.site-footer {
  padding: 22px clamp(18px, 5vw, 60px);
  display: flex;
  flex-wrap: wrap;
  gap: 14px 24px;
  align-items: center;
  border-top: 1px solid var(--line);
  background: white;
  color: var(--muted);
  font-size: 13px;
  font-weight: 900;
}

.site-footer a:hover {
  color: var(--ink);
}

@media (max-width: 1080px) {
  .hero {
    grid-template-columns: 1fr;
    min-height: auto;
  }

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

  .product-preview {
    width: min(100%, 860px);
  }

  .pricing-grid,
  .proof-strip,
  .media-band,
  .media-slots,
  .operator-band,
  .trust-layout,
  .trust-proof,
  .answer-grid,
  .fact-grid,
  .trust-principles,
  .walkthrough-grid,
  .comparison-row,
  .article-hero,
  .blog-card {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

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

@media (max-width: 680px) {
  .site-nav {
    height: auto;
    min-height: 72px;
    align-items: flex-start;
    flex-direction: column;
    gap: 12px;
    padding-top: 16px;
    padding-bottom: 16px;
  }

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

  nav {
    justify-content: space-between;
    flex-wrap: nowrap;
    gap: 12px;
    overflow-x: auto;
    padding-bottom: 2px;
  }

  .button {
    width: 100%;
  }

  .preview-board,
  .preview-review,
  .proof-strip,
  .media-band,
  .media-slots,
  .operator-band,
  .pricing-grid,
  .trust-layout,
  .trust-proof,
  .answer-grid,
  .fact-grid,
  .trust-principles,
  .walkthrough-grid,
  .comparison-row,
  .answer-directory article,
  .article-hero,
  .blog-card,
  .final-cta {
    grid-template-columns: 1fr;
  }

  .conversion-strip,
  .final-cta {
    align-items: stretch;
    flex-direction: column;
  }

  .cta-stack,
  .conversion-actions {
    width: 100%;
    justify-content: stretch;
  }

  .proof-strip div {
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .ledger-row {
    grid-template-columns: 1fr;
    gap: 10px;
  }

  .preview-column {
    min-height: auto;
  }

  h1 {
    font-size: clamp(46px, 16vw, 64px);
  }
}
