/* Template 24 - Monochrome Ledger
   Visual fingerprint: light audit-room monochrome, graphite rules, marker green accent.
   Layout fingerprint: ledger hero, offset proof matrix, dense asymmetric section rhythm. */
:root {
  --paper: #f7f5ec;
  --paper-2: #eeeadf;
  --paper-3: #dfdacb;
  --ink: #141414;
  --muted: #626059;
  --soft: #8c887d;
  --line: #c8c0ad;
  --line-strong: #1d1d1b;
  --marker: #b7ff35;
  --marker-2: #d9ff8b;
  --danger: #ba2e2e;
  --font-d: "Instrument Serif", Georgia, serif;
  --font-b: "Public Sans", "Helvetica Neue", Helvetica, sans-serif;
  --max: 1200px;
  --nav-h: 72px;
  --r: 2px;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  min-width: 320px;
  background:
    linear-gradient(90deg, rgba(20,20,20,.035) 1px, transparent 1px) 0 0 / 36px 36px,
    linear-gradient(rgba(20,20,20,.026) 1px, transparent 1px) 0 0 / 36px 36px,
    var(--paper);
  color: var(--ink);
  font-family: var(--font-b);
  font-size: 1rem;
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
button, input { font-family: var(--font-b); }
button { cursor: pointer; border: 0; background: none; color: inherit; }
ul, ol { list-style: none; }
.wrap { min-height: 100vh; display: flex; flex-direction: column; }
.container { width: min(var(--max), calc(100% - 40px)); margin: 0 auto; }

h1, h2, h3 { color: var(--ink); line-height: .95; }
.section-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 18px;
  color: var(--ink);
  font-size: .68rem;
  font-weight: 800;
  letter-spacing: .08em;
  text-transform: uppercase;
}
.section-eyebrow::before {
  content: "";
  width: 38px;
  height: 2px;
  background: var(--ink);
  transform: scaleX(var(--rule-scale, 1));
  transform-origin: left;
}
.section-h {
  font-family: var(--font-d);
  font-size: clamp(2.4rem, 5vw, 5rem);
  font-weight: 400;
  letter-spacing: 0;
}
.section-h em, .hero-h1 em {
  display: inline;
  font-style: italic;
  background: var(--marker);
  padding: 0 .08em .04em;
  -webkit-box-decoration-break: clone;
  box-decoration-break: clone;
}
.section-sub {
  max-width: 640px;
  color: var(--muted);
  font-size: clamp(.98rem, 1.3vw, 1.1rem);
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 12px 20px;
  border: 2px solid var(--ink);
  border-radius: var(--r);
  font-size: .82rem;
  font-weight: 800;
  letter-spacing: .02em;
  transition: transform .16s ease, background .16s ease, box-shadow .16s ease;
  white-space: nowrap;
}
.btn-primary {
  background: var(--marker);
  color: var(--ink);
  box-shadow: 5px 5px 0 var(--ink);
}
.btn-primary:hover, .btn-primary:focus-visible { transform: translate(2px, 2px); box-shadow: 2px 2px 0 var(--ink); }
.btn-ghost { background: var(--paper); color: var(--ink); }
.btn-ghost:hover, .btn-ghost:focus-visible { background: var(--ink); color: var(--paper); }
.btn-full { width: 100%; }

header {
  position: sticky;
  top: 0;
  z-index: 100;
  height: var(--nav-h);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 0 28px;
  background: rgba(247,245,236,.95);
  border-bottom: 2px solid var(--ink);
  backdrop-filter: blur(12px);
}
.logo-link { display: flex; align-items: center; gap: 10px; flex-shrink: 0; font-weight: 900; }
.logo-mark {
  width: 34px;
  height: 34px;
  display: grid;
  place-items: center;
  background: var(--ink);
  color: var(--paper);
  border-radius: var(--r);
  font-family: var(--font-d);
  font-size: 1.35rem;
}
.logo-img { height: 32px; width: auto; object-fit: contain; }
.site-nav { display: flex; align-items: center; justify-content: center; gap: 2px; flex: 1; }
.site-nav a {
  padding: 8px 10px;
  color: var(--muted);
  font-size: .78rem;
  font-weight: 700;
  border: 1px solid transparent;
}
.site-nav a:hover, .site-nav a[aria-current="page"] { color: var(--ink); border-color: var(--ink); background: var(--marker-2); }
.header-right { display: flex; align-items: center; gap: 10px; flex-shrink: 0; }
.header-cta { min-height: 38px; padding: 8px 14px; font-size: .76rem; box-shadow: 3px 3px 0 var(--ink); }
.nav-toggle { display: none; padding: 8px; border: 2px solid var(--ink); background: var(--paper); }
.nav-toggle__bar { display: block; width: 22px; height: 2px; margin: 4px 0; background: var(--ink); }

.lang-dropdown { position: relative; }
.lang-dropdown__btn, .lang-btn {
  display: flex;
  align-items: center;
  gap: 6px;
  min-height: 38px;
  padding: 7px 10px;
  border: 2px solid var(--ink);
  background: var(--paper);
  color: var(--ink);
  font-size: .78rem;
  font-weight: 800;
}
.lang-dropdown__list, .lang-menu {
  display: none;
  position: absolute;
  right: 0;
  top: calc(100% + 8px);
  width: 190px;
  padding: 6px;
  background: var(--paper);
  border: 2px solid var(--ink);
  box-shadow: 5px 5px 0 var(--ink);
  z-index: 50;
}
.lang-dropdown__list.open, .lang-menu.open { display: block; }
.lang-dropdown__list a, .lang-menu a { display: flex; gap: 8px; padding: 8px; font-size: .82rem; color: var(--ink); }
.lang-dropdown__list a:hover, .lang-menu a:hover, .lang-dropdown__option--active { background: var(--marker-2); }

.mobile-nav {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 200;
  flex-direction: column;
  gap: 10px;
  padding: 22px;
  background: var(--paper);
  color: var(--ink);
  overflow-y: auto;
}
.mobile-nav.is-open { display: flex; }
.mobile-nav__header { display: flex; align-items: center; justify-content: space-between; margin-bottom: 20px; }
.mobile-nav__close { padding: 9px; border: 2px solid var(--ink); }
.mobile-nav nav { display: flex; flex-direction: column; gap: 8px; }
.mobile-nav nav a { padding: 13px 10px; border-bottom: 1px solid var(--line); font-weight: 800; }
.mobile-nav__cta { margin-top: 14px; }
.mobile-lang-list { display: flex; flex-wrap: wrap; gap: 8px; padding: 16px 10px 0; }
.mobile-lang-list a {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 6px 10px;
  border: 2px solid var(--ink);
  background: var(--paper);
  font-size: .8rem;
}
.mobile-lang-list a.active { background: var(--marker); }

.hero-section { padding: 54px 0 38px; }
.hero-grid {
  width: min(1280px, calc(100% - 40px));
  margin: 0 auto;
  min-height: calc(84vh - var(--nav-h));
  display: grid;
  grid-template-columns: 72px minmax(0, 1.1fr) minmax(320px, .72fr);
  grid-template-rows: 1fr auto;
  border: 2px solid var(--ink);
  background: var(--paper);
}
.hero-rail {
  grid-row: 1 / 3;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: center;
  padding: 18px 0;
  border-right: 2px solid var(--ink);
  background: var(--ink);
  color: var(--paper);
  font-weight: 900;
  writing-mode: vertical-rl;
}
.hero-copy { padding: clamp(34px, 6vw, 86px); align-self: center; }
.hero-h1 {
  max-width: 780px;
  margin-bottom: 24px;
  font-family: var(--font-d);
  font-size: clamp(3rem, 7.2vw, 6.7rem);
  font-weight: 400;
  letter-spacing: 0;
  line-height: .98;
}
.hero-lead { max-width: 650px; margin-bottom: 28px; color: var(--muted); font-size: clamp(1rem, 1.4vw, 1.15rem); }
.hero-actions { display: flex; flex-wrap: wrap; gap: 12px; }
.hero-ledger {
  align-self: stretch;
  display: flex;
  flex-direction: column;
  justify-content: end;
  padding: 28px;
  border-left: 2px solid var(--ink);
  background:
    linear-gradient(135deg, transparent 0 48%, rgba(20,20,20,.08) 48% 49%, transparent 49%),
    var(--paper-2);
}
.ledger-head { display: flex; justify-content: space-between; gap: 16px; padding-bottom: 18px; border-bottom: 2px solid var(--ink); font-size: .82rem; font-weight: 800; }
.ledger-head strong { font-family: var(--font-d); font-size: 2.5rem; font-weight: 400; line-height: .8; }
.ledger-bars { height: 220px; display: grid; grid-template-columns: repeat(6, 1fr); align-items: end; gap: 10px; padding: 26px 0; }
.ledger-bars span { height: var(--h); min-height: 24px; background: var(--ink); border: 2px solid var(--ink); box-shadow: inset 0 0 0 4px var(--marker); }
.ledger-row { display: flex; justify-content: space-between; gap: 16px; padding: 12px 0; border-top: 1px solid var(--line-strong); color: var(--muted); font-size: .8rem; }
.ledger-row strong { color: var(--ink); }
.hero-trust {
  grid-column: 2 / 4;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-top: 2px solid var(--ink);
}
.hero-trust span { padding: 14px 18px; border-right: 2px solid var(--ink); font-size: .78rem; font-weight: 800; color: var(--ink); text-align: center; }
.hero-trust span:last-child { border-right: 0; }

.stats-section, .features-section, .health-section, .compare-section, .calc-section, .testimonials-section, .offer-section, .contact-section, .faq-section, .articles-section {
  padding: 88px 0;
  border-top: 2px solid var(--ink);
}
.stats-grid { display: grid; grid-template-columns: repeat(4, 1fr); border: 2px solid var(--ink); background: var(--paper); }
.stat-item { min-height: 136px; display: flex; flex-direction: column; justify-content: space-between; padding: 22px; border-right: 2px solid var(--ink); }
.stat-item:last-child { border-right: 0; }
.stat-item strong { font-family: var(--font-d); font-size: clamp(2.3rem, 4vw, 4.3rem); font-weight: 400; line-height: .82; }
.stat-item span { color: var(--muted); font-size: .76rem; font-weight: 800; text-transform: uppercase; }

.split-heading { display: grid; grid-template-columns: minmax(0, .95fr) minmax(300px, .65fr); gap: 40px; align-items: end; margin-bottom: 38px; }
.feature-ledger { display: grid; grid-template-columns: repeat(4, 1fr); grid-auto-rows: minmax(190px, auto); border: 2px solid var(--ink); background: var(--ink); gap: 2px; }
.feature-cell {
  display: flex;
  flex-direction: column;
  gap: 16px;
  padding: 24px;
  background: var(--paper);
}
.feature-cell--wide { grid-column: span 2; }
.feature-cell--tall { grid-column: span 2; background: var(--marker-2); }
.feature-cell span { color: var(--soft); font-size: .72rem; font-weight: 900; }
.feature-cell h3 { font-size: 1.08rem; line-height: 1.1; font-weight: 900; }
.feature-cell p { color: var(--muted); font-size: .92rem; margin-top: auto; }

.health-section { background: var(--ink); color: var(--paper); }
.health-section .section-h, .health-section .section-sub, .health-section .section-eyebrow { color: var(--paper); }
.health-section .section-eyebrow::before { background: var(--marker); }
.health-grid { display: grid; grid-template-columns: .7fr 1fr; gap: 44px; align-items: start; }
.health-copy .btn { margin-top: 28px; }
.health-board { border: 2px solid var(--paper); background: var(--paper); color: var(--ink); }
.health-row { display: grid; grid-template-columns: .35fr 1fr auto; gap: 16px; padding: 18px; border-bottom: 2px solid var(--ink); align-items: start; }
.health-row:last-child { border-bottom: 0; }
.health-row span, .health-row strong { font-size: .75rem; font-weight: 900; text-transform: uppercase; }
.health-row p { color: var(--muted); font-size: .9rem; }
.health-row strong { background: var(--marker); padding: 4px 7px; border: 1px solid var(--ink); }

.compare-shell, .calc-inner { display: grid; grid-template-columns: .68fr 1fr; gap: 34px; align-items: start; }
.compare-table { width: 100%; border-collapse: collapse; background: var(--paper); border: 2px solid var(--ink); font-size: .86rem; }
.compare-table th, .compare-table td { padding: 13px 14px; border: 1px solid var(--ink); text-align: left; vertical-align: top; }
.compare-table th { background: var(--marker-2); font-size: .72rem; font-weight: 900; text-transform: uppercase; }
.compare-table td:nth-child(2) { font-weight: 900; }
.compare-table td:nth-child(3) { color: var(--soft); }

.calc-inner { border: 2px solid var(--ink); background: var(--paper); padding: 0; }
.calc-controls { padding: 34px; }
.range-group { margin-top: 24px; }
.range-label { display: flex; justify-content: space-between; gap: 16px; margin-bottom: 9px; font-size: .82rem; font-weight: 900; }
input[type="range"] { width: 100%; appearance: none; height: 5px; background: var(--ink); outline: none; }
input[type="range"]::-webkit-slider-thumb { appearance: none; width: 22px; height: 22px; border: 2px solid var(--ink); background: var(--marker); cursor: pointer; }
input[type="range"]::-moz-range-thumb { width: 22px; height: 22px; border: 2px solid var(--ink); border-radius: 0; background: var(--marker); cursor: pointer; }
.calc-results { display: grid; gap: 0; background: var(--ink); color: var(--paper); }
.calc-results div { display: flex; justify-content: space-between; gap: 16px; padding: 22px; border-bottom: 1px solid rgba(247,245,236,.28); }
.calc-results span { color: var(--paper-3); font-size: .78rem; font-weight: 800; }
.calc-results strong { color: var(--marker); font-family: var(--font-d); font-size: clamp(1.8rem, 3vw, 3rem); font-weight: 400; line-height: .9; text-align: right; }
.calc-results .btn { margin: 22px; width: auto; }
.calc-results p { padding: 0 22px 22px; color: var(--paper-3); font-size: .78rem; }

.testimonials-grid, .articles-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.testimonial-card, .article-card, .doc-card, .plan-card, .about-stat-card, .risk-card {
  display: flex;
  flex-direction: column;
  gap: 12px;
  padding: 22px;
  background: var(--paper);
  border: 2px solid var(--ink);
  box-shadow: 5px 5px 0 var(--line-strong);
}
.testimonial-card p, .article-card__preview, .doc-card__desc, .risk-card p { color: var(--muted); font-size: .9rem; }
.testimonial-card strong, .article-card__title, .doc-card__title, .plan-name { font-weight: 900; }
.testimonial-card span, .article-card__date, .article-card__more { color: var(--soft); font-size: .76rem; font-weight: 800; text-transform: uppercase; }

.offer-section {
  background: var(--marker-2);
  padding: 72px 0;
}
.offer-panel {
  display: grid;
  grid-template-columns: minmax(180px, .36fr) minmax(360px, 1fr) minmax(190px, auto);
  gap: 28px;
  align-items: stretch;
  border: 2px solid var(--ink);
  background: rgba(247,245,236,.45);
}
.offer-label,
.offer-copy,
.offer-action {
  padding: 26px;
}
.offer-label {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 28px;
  border-right: 2px solid var(--ink);
}
.offer-label .section-eyebrow {
  align-items: flex-start;
  margin-bottom: 0;
  line-height: 1.2;
}
.offer-copy {
  display: grid;
  grid-template-columns: minmax(260px, .65fr) minmax(260px, .78fr);
  gap: 34px;
  align-items: center;
}
.offer-copy .section-h {
  max-width: 420px;
  font-size: clamp(2.8rem, 5vw, 5.4rem);
}
.offer-copy .section-sub { max-width: 620px; }
.offer-action {
  display: flex;
  align-items: end;
  justify-content: center;
  border-left: 2px solid var(--ink);
}
.offer-action .btn {
  width: min(280px, 100%);
}
.offer-banner {
  max-width: 220px;
  color: var(--muted);
  font-size: .98rem;
}
.offer-banner em { font-style: italic; color: var(--ink); }

.contact-section { background: var(--paper-2); }
.contact-inner {
  display: grid;
  grid-template-columns: .72fr 1fr;
  gap: 34px;
  align-items: start;
  border: 2px solid var(--ink);
  background: var(--paper);
}
.contact-copy { padding: 34px; border-right: 2px solid var(--ink); }
.contact-copy .section-sub { margin-bottom: 12px; }
.contact-form-wrap { padding: 34px; }
.form-heading { margin-bottom: 18px; font-size: 1rem; font-weight: 900; }
.contact-form { display: flex; flex-direction: column; gap: 14px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.form-field { display: flex; flex-direction: column; gap: 6px; }
.form-label { font-size: .72rem; font-weight: 900; text-transform: uppercase; color: var(--muted); }
.rf-form-input {
  width: 100%;
  min-height: 46px;
  padding: 11px 12px;
  border: 2px solid var(--ink);
  border-radius: var(--r);
  background: var(--paper);
  color: var(--ink);
  font-size: .94rem;
  outline: none;
}
.rf-form-input:focus { background: var(--marker-2); }
.rf-form-input.phone_input { padding-left: 52px; }
.iti-wrap, .iti { width: 100%; }
.form-note { color: var(--muted); font-size: .74rem; line-height: 1.55; }
.form-note a { text-decoration: underline; font-weight: 800; }
.err { display: block; color: var(--danger); font-size: .74rem; }
.error-msg.hide, .form-preloader-orange.hidden { display: none; }
.input_group.has-error .rf-form-input { border-color: var(--danger); }
.form_error { color: var(--danger); font-size: .82rem; min-height: 0; }
.dot-spinner { display: flex; justify-content: center; gap: 6px; padding: 12px; }
.dot-spinner .dot { width: 8px; height: 8px; background: var(--ink); animation: dotPulse 1s infinite ease-in-out; }
.dot-spinner .dot:nth-child(2) { animation-delay: .15s; }
.dot-spinner .dot:nth-child(3) { animation-delay: .3s; }
@keyframes dotPulse { 0%, 80%, 100% { opacity: .25; transform: scale(.75); } 40% { opacity: 1; transform: scale(1); } }

.faq-shell { display: grid; grid-template-columns: .52fr 1fr; gap: 40px; }
.faq { border-top: 2px solid var(--ink); }
.faq-item { border-bottom: 2px solid var(--ink); }
.faq-item summary {
  list-style: none;
  display: flex;
  justify-content: space-between;
  gap: 16px;
  padding: 18px 0;
  cursor: pointer;
  font-weight: 900;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after { content: "+"; font-size: 1.4rem; line-height: 1; }
.faq-item[open] summary::after { content: "-"; }
.faq-item__body { padding-bottom: 18px; color: var(--muted); }

.page-hero { max-width: 980px; margin: 0 auto 54px; padding: 74px 20px 42px; border-bottom: 2px solid var(--ink); text-align: center; }
.page-hero .section-sub { margin: 0 auto; }
.about-grid { display: grid; grid-template-columns: 1.1fr .9fr; gap: 36px; padding-bottom: 80px; }
.about-text h2, .risk-section .rte-content h2, .legal-doc h2 { margin: 24px 0 10px; font-size: 1.1rem; font-weight: 900; font-family: var(--font-b); }
.about-text p, .risk-section .rte-content, .legal-doc { color: var(--muted); }
.about-stats, .plan-features { display: flex; flex-direction: column; gap: 14px; }
.big-num, .plan-price { font-family: var(--font-d); font-size: 2.6rem; line-height: .9; }
.docs-grid, .risk-cards { display: grid; grid-template-columns: repeat(2, 1fr); gap: 18px; padding-bottom: 80px; }
.plans-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; padding-bottom: 80px; }
.plan-card.featured { background: var(--marker-2); }
.plan-badge { align-self: flex-start; padding: 4px 8px; background: var(--ink); color: var(--paper); font-size: .7rem; font-weight: 900; }
.plan-feature { color: var(--muted); font-size: .9rem; }
.plans-disclaimer { padding-bottom: 80px; text-align: center; color: var(--muted); font-size: .8rem; }
.risk-section, .legal-doc { padding-bottom: 80px; }
.risk-section .rte-content, .legal-doc, .article-body, .article-hero { max-width: 820px; margin-left: auto; margin-right: auto; }
.article-hero { padding: 70px 20px 36px; border-bottom: 2px solid var(--ink); margin-bottom: 36px; }
.article-body { padding-bottom: 70px; color: var(--muted); }
.article-body p, .rte p, .legal-doc p { margin-bottom: 14px; }
.thank-you-section { min-height: calc(100vh - var(--nav-h)); display: grid; place-items: center; padding: 50px 20px; }
.thank-you-card { max-width: 520px; text-align: center; background: var(--paper); border: 2px solid var(--ink); box-shadow: 7px 7px 0 var(--ink); padding: 38px; }
.thank-you-icon { width: 58px; height: 58px; margin: 0 auto 18px; display: grid; place-items: center; background: var(--marker); border: 2px solid var(--ink); }

.site-footer { margin-top: auto; padding: 42px 0; border-top: 2px solid var(--ink); background: var(--paper-2); }
.footer-inner { display: flex; flex-direction: column; align-items: center; gap: 16px; text-align: center; }
.footer-links { display: flex; flex-wrap: wrap; justify-content: center; gap: 8px; }
.footer-links a { padding: 4px 8px; font-size: .78rem; font-weight: 800; color: var(--muted); }
.footer-links a:hover { color: var(--ink); background: var(--marker-2); }
.footer-copy { max-width: 820px; color: var(--muted); font-size: .74rem; }

.iti__country-list { background: var(--paper); border: 2px solid var(--ink); color: var(--ink); }
.iti__country.iti__highlight { background: var(--marker-2); }

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration: .001ms !important; animation-iteration-count: 1 !important; scroll-behavior: auto !important; transition-duration: .001ms !important; }
}
@media (max-width: 1080px) {
  .site-nav, .header-cta { display: none; }
  .nav-toggle { display: block; }
  .hero-grid { grid-template-columns: 58px 1fr; }
  .hero-ledger { grid-column: 2; border-left: 0; border-top: 2px solid var(--ink); }
  .hero-trust { grid-column: 2; }
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .stat-item:nth-child(2) { border-right: 0; }
  .stat-item:nth-child(-n+2) { border-bottom: 2px solid var(--ink); }
  .feature-ledger { grid-template-columns: repeat(2, 1fr); }
  .health-grid, .compare-shell, .calc-inner, .contact-inner, .faq-shell, .offer-panel, .offer-copy { grid-template-columns: 1fr; }
  .contact-copy { border-right: 0; border-bottom: 2px solid var(--ink); }
  .testimonials-grid, .articles-grid, .plans-grid { grid-template-columns: 1fr; }
  .offer-label,
  .offer-action { border: 0; }
  .offer-label,
  .offer-copy { border-bottom: 2px solid var(--ink); }
  .offer-banner { max-width: 100%; }
}
@media (max-width: 720px) {
  :root { --nav-h: 64px; }
  header { padding: 0 16px; }
  .container, .hero-grid { width: min(100% - 28px, var(--max)); }
  .hero-grid { grid-template-columns: 1fr; }
  .hero-rail { display: none; }
  .hero-copy { padding: 34px 22px; }
  .hero-h1 { font-size: clamp(2.55rem, 15vw, 4.2rem); line-height: 1.02; }
  .hero-ledger, .hero-trust { grid-column: 1; }
  .hero-trust { grid-template-columns: 1fr; }
  .hero-trust span { border-right: 0; border-bottom: 2px solid var(--ink); }
  .hero-trust span:last-child { border-bottom: 0; }
  .split-heading { grid-template-columns: 1fr; gap: 18px; }
  .feature-ledger, .docs-grid, .risk-cards { grid-template-columns: 1fr; }
  .feature-cell--wide, .feature-cell--tall { grid-column: auto; }
  .form-row { grid-template-columns: 1fr; }
  .stats-grid { grid-template-columns: 1fr; }
  .stat-item { border-right: 0; border-bottom: 2px solid var(--ink); }
  .stat-item:last-child { border-bottom: 0; }
  .health-row { grid-template-columns: 1fr; }
  .compare-table { font-size: .76rem; }
  .compare-table th, .compare-table td { padding: 9px; }
  .calc-controls, .contact-copy, .contact-form-wrap { padding: 24px; }
  .hero-actions .btn { width: 100%; }
}
