/* ============================================================================
   ROTHSHAW — SWISS MODERNIST THEME (Option C)
   Pure white / pure black / safety orange accent.
   Inter all the way. No serifs. No rounded corners. No shadows.
   Heavy use of oversized numerals + hairline rules.
   ============================================================================ */

:root {
  --ink: #000000;
  --paper: #FFFFFF;
  --muted: #737373;
  --line: #E5E5E5;
  --hairline: #000000;
  --accent: #FF3B00;
  --accent-tint: #FFF1ED;
  --max: 1280px;
  --gutter: 32px;
  --rule: 2px;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  overflow-x: hidden;
  background: var(--paper);
  color: var(--ink);
  font-family: Inter, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, system-ui, sans-serif;
  font-size: 16px;
  line-height: 1.5;
  font-feature-settings: "ss01", "cv11";
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

a { color: inherit; text-decoration: none; }
a:hover { color: var(--accent); }

h1, h2, h3, h4, h5, h6, p, ul, ol, dl, dd, figure, blockquote, pre {
  margin: 0;
}

h1, h2, h3, h4, h5, h6, p, a, li, dt, dd, span, strong, em, small {
  overflow-wrap: break-word;
}

img, svg { display: block; max-width: 100%; }

::selection { background: var(--ink); color: var(--paper); }

/* ============================================================================
   LAYOUT
   ============================================================================ */

.container {
  width: min(var(--max), calc(100% - var(--gutter) * 2));
  margin: 0 auto;
}

.skip-link {
  position: absolute;
  left: 16px;
  top: -60px;
  z-index: 50;
  background: var(--ink);
  color: var(--paper);
  padding: 10px 16px;
  font-weight: 600;
  letter-spacing: -0.01em;
}
.skip-link:focus { top: 16px; }

/* ============================================================================
   TOP MASTHEAD BAR (issue / date / section number)
   ============================================================================ */

.masthead-bar {
  border-bottom: var(--rule) solid var(--ink);
  background: var(--paper);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--ink);
}
.masthead-bar-inner {
  width: min(var(--max), calc(100% - var(--gutter) * 2));
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 36px;
  gap: 24px;
}
.masthead-bar .left { display: flex; gap: 20px; align-items: center; }
.masthead-bar .right { display: flex; gap: 20px; align-items: center; }
.masthead-bar .live {
  display: inline-flex; align-items: center; gap: 6px;
  color: var(--accent); font-weight: 700;
}
.masthead-bar .live::before {
  content: ""; width: 8px; height: 8px; background: var(--accent); display: inline-block;
}
.masthead-bar a { font-weight: 600; }
.masthead-bar a:hover { color: var(--accent); }

/* ============================================================================
   HEADER / NAV
   ============================================================================ */

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  background: var(--paper);
  border-bottom: var(--rule) solid var(--ink);
}

.nav-shell {
  width: min(var(--max), calc(100% - var(--gutter) * 2));
  min-height: 88px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 32px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
}
.brand-mark {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  background: var(--ink);
  color: var(--paper);
  font-weight: 800;
  font-size: 22px;
  letter-spacing: -0.04em;
  line-height: 1;
  font-family: Inter, sans-serif;
}
.brand-text {
  display: flex;
  flex-direction: column;
  line-height: 1.1;
}
.brand-text strong {
  font-size: 22px;
  font-weight: 800;
  letter-spacing: -0.03em;
}
.brand-text small {
  font-size: 11px;
  font-weight: 500;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-top: 2px;
}

.nav-links {
  display: flex;
  gap: 0;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
}
.nav-links a {
  font-size: 14px;
  font-weight: 500;
  padding: 8px 14px;
  letter-spacing: -0.005em;
  position: relative;
}
.nav-links a:hover { color: var(--accent); }
.nav-links a.is-active { font-weight: 700; }
.nav-links a.is-active::after {
  content: "";
  position: absolute;
  left: 14px; right: 14px; bottom: 4px;
  height: 2px;
  background: var(--accent);
}

.nav-cta {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  padding: 10px 16px;
  border: 2px solid var(--ink);
  background: var(--ink);
  color: var(--paper);
}
.nav-cta:hover { background: var(--accent); border-color: var(--accent); color: var(--paper); }

/* ============================================================================
   HERO — large type, oversized numeral, single column
   ============================================================================ */

.hero {
  border-bottom: var(--rule) solid var(--ink);
  padding: 96px 0 80px;
  position: relative;
  background: var(--paper);
}

.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: 0;
}

.hero-eyebrow {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  margin-bottom: 28px;
  color: var(--ink);
}
.hero-eyebrow .dot {
  width: 8px; height: 8px; background: var(--accent); display: inline-block;
}
.hero-eyebrow .sep {
  flex: 0 0 auto; width: 1px; height: 14px; background: var(--ink);
}

.hero h1 {
  font-size: clamp(40px, 6vw, 84px);
  line-height: 0.95;
  letter-spacing: -0.04em;
  font-weight: 800;
  margin-bottom: 32px;
  max-width: 14ch;
}
.hero h1 em {
  font-style: normal;
  color: var(--accent);
}

.hero-lede {
  font-size: clamp(18px, 1.6vw, 22px);
  line-height: 1.45;
  font-weight: 400;
  max-width: 60ch;
  color: var(--ink);
  margin-bottom: 40px;
}

.hero-actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.button {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  padding: 16px 24px;
  border: 2px solid var(--ink);
  background: var(--ink);
  color: var(--paper);
  text-decoration: none;
  cursor: pointer;
  transition: background-color 120ms, color 120ms, border-color 120ms;
}
.button:hover {
  background: var(--accent);
  border-color: var(--accent);
  color: var(--paper);
}
.button-ghost {
  background: var(--paper);
  color: var(--ink);
}
.button-ghost:hover {
  background: var(--ink);
  color: var(--paper);
  border-color: var(--ink);
}
.button-small {
  font-size: 12px;
  padding: 10px 14px;
}

.hero-sidecard {
  border-top: var(--rule) solid var(--ink);
  margin-top: 64px;
  padding-top: 24px;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 2fr);
  gap: 48px;
  align-items: start;
}
.hero-sidecard-label {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--muted);
}
.hero-sidecard h2 {
  font-size: 28px;
  line-height: 1.1;
  letter-spacing: -0.025em;
  font-weight: 700;
  margin-bottom: 16px;
}
.hero-sidecard dl {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 0;
  margin-top: 16px;
  border-top: 1px solid var(--line);
}
.hero-sidecard dl > div {
  display: grid;
  grid-template-columns: 1fr;
  padding: 12px 0;
  border-bottom: 1px solid var(--line);
  gap: 2px;
}
.hero-sidecard dt {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--muted);
}
.hero-sidecard dd {
  font-size: 15px;
  font-weight: 600;
  color: var(--ink);
}

/* ============================================================================
   TRUST STRIP — single horizontal hairline-bordered row
   ============================================================================ */

.trust-strip {
  border-bottom: var(--rule) solid var(--ink);
  background: var(--paper);
}
.trust-strip-inner {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
}
.trust-strip-item {
  padding: 22px 16px;
  border-right: 1px solid var(--line);
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: -0.005em;
  color: var(--ink);
}
.trust-strip-item:last-child { border-right: 0; }
.trust-strip-item .n {
  font-size: 12px;
  font-weight: 800;
  color: var(--accent);
  font-feature-settings: "tnum";
}

/* ============================================================================
   PROOF BAND — three numbered tiles
   ============================================================================ */

.proof-band {
  border-bottom: var(--rule) solid var(--ink);
  padding: 64px 0;
  background: var(--paper);
}
.proof-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0;
  border-top: 1px solid var(--ink);
  border-bottom: 1px solid var(--ink);
}
.proof-card {
  padding: 32px 28px;
  border-right: 1px solid var(--ink);
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.proof-card:last-child { border-right: 0; }
.proof-card .num {
  font-size: 48px;
  line-height: 1;
  font-weight: 800;
  letter-spacing: -0.04em;
  color: var(--accent);
  font-feature-settings: "tnum";
}
.proof-card h2 {
  font-size: 22px;
  line-height: 1.15;
  letter-spacing: -0.02em;
  font-weight: 700;
}
.proof-card p {
  font-size: 15px;
  line-height: 1.55;
  color: var(--ink);
}
.proof-card .tag {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--muted);
}

/* ============================================================================
   SECTION HEADERS — oversized number + small eyebrow + bold title
   ============================================================================ */

.section {
  padding: 96px 0;
  border-bottom: var(--rule) solid var(--ink);
  background: var(--paper);
}
.section-dark {
  background: var(--ink);
  color: var(--paper);
}
.section-dark .section-eyebrow,
.section-dark h2 { color: var(--paper); }
.section-dark p { color: rgba(255,255,255,0.85); }
.section-dark .button { border-color: var(--paper); }
.section-dark .button:hover { background: var(--accent); border-color: var(--accent); }

.section-heading {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: 0;
  margin-bottom: 48px;
  border-bottom: 1px solid var(--ink);
  padding-bottom: 24px;
}
.section-heading.with-side {
  grid-template-columns: minmax(0, 2fr) minmax(0, 1fr);
  gap: 48px;
  align-items: end;
}
.section-num {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 16px;
  display: flex;
  align-items: center;
  gap: 12px;
}
.section-num::after {
  content: "";
  flex: 1;
  height: 2px;
  background: var(--ink);
  margin-left: 12px;
}
.section-eyebrow {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 16px;
}
.section h2 {
  font-size: clamp(32px, 4vw, 56px);
  line-height: 1.0;
  letter-spacing: -0.035em;
  font-weight: 800;
  max-width: 22ch;
}
.section h2 em {
  font-style: normal;
  color: var(--accent);
}
.section-heading p {
  font-size: 15px;
  line-height: 1.55;
  color: var(--muted);
  max-width: 50ch;
}

/* ============================================================================
   COMPARISON TABLE — Swiss tabular style
   ============================================================================ */

.comparison-wrap {
  overflow-x: auto;
  border-top: 2px solid var(--ink);
  border-bottom: 2px solid var(--ink);
}
.comparison-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 14px;
}
.comparison-table th {
  text-align: left;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--ink);
  background: var(--paper);
  padding: 18px 16px;
  border-bottom: 2px solid var(--ink);
  border-right: 1px solid var(--line);
  white-space: nowrap;
}
.comparison-table th:last-child { border-right: 0; }
.comparison-table td {
  padding: 24px 16px;
  border-bottom: 1px solid var(--line);
  border-right: 1px solid var(--line);
  vertical-align: top;
  font-size: 14px;
  line-height: 1.5;
}
.comparison-table td:last-child { border-right: 0; }
.comparison-table tbody tr:last-child td { border-bottom: 0; }

.provider {
  display: flex;
  align-items: center;
  gap: 12px;
}
.provider-logo {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  background: var(--ink);
  color: var(--paper);
  font-weight: 800;
  font-size: 18px;
  letter-spacing: -0.02em;
  font-family: Inter, sans-serif;
  flex-shrink: 0;
}
.provider-logo.alt { background: var(--accent); }
.provider-logo.warm { background: #000000; }
.provider-logo.cool { background: #000000; }
.provider strong {
  display: block;
  font-size: 16px;
  font-weight: 700;
  letter-spacing: -0.015em;
  line-height: 1.2;
}
.provider small {
  display: block;
  font-size: 12px;
  color: var(--muted);
  margin-top: 2px;
}
.badge {
  display: inline-block;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--accent);
  margin-right: 6px;
}

.rating {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 13px;
  font-weight: 600;
}
.rating-bar {
  display: inline-block;
  width: 64px;
  height: 6px;
  background: var(--line);
  position: relative;
  flex-shrink: 0;
}
.rating-bar::after {
  content: "";
  position: absolute;
  top: 0; left: 0; bottom: 0;
  background: var(--accent);
  width: var(--rating, 0%);
}
.rating-88 { --rating: 88%; }
.rating-85 { --rating: 85%; }
.rating-83 { --rating: 83%; }
.rating-81 { --rating: 81%; }
.rating-score {
  font-size: 18px;
  font-weight: 800;
  letter-spacing: -0.02em;
  color: var(--ink);
  font-feature-settings: "tnum";
  min-width: 36px;
}
.rating-label {
  font-size: 11px;
  font-weight: 600;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

/* ============================================================================
   REVIEW CARDS — 4 column grid with oversized numerals
   ============================================================================ */

.review-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0;
  border-top: 2px solid var(--ink);
  border-bottom: 2px solid var(--ink);
}
.review-card {
  padding: 32px 24px;
  border-right: 1px solid var(--ink);
  display: flex;
  flex-direction: column;
  gap: 20px;
  background: var(--paper);
}
.review-card:last-child { border-right: 0; }
.review-card .number {
  font-size: 64px;
  line-height: 1;
  font-weight: 800;
  letter-spacing: -0.05em;
  color: var(--accent);
  font-feature-settings: "tnum";
}
.review-card h3 {
  font-size: 22px;
  line-height: 1.1;
  letter-spacing: -0.02em;
  font-weight: 700;
}
.review-card .tag {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--muted);
  margin-top: -16px;
}
.review-card p {
  font-size: 14px;
  line-height: 1.55;
  color: var(--ink);
  flex: 1;
}
.review-card a {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--accent);
  border-top: 1px solid var(--ink);
  padding-top: 16px;
}

/* ============================================================================
   METHODOLOGY — 2 column with checklist card
   ============================================================================ */

.method-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: 64px;
  align-items: start;
}
.method-card {
  border: 2px solid var(--ink);
  padding: 32px 28px;
  background: var(--paper);
}
.method-card h3 {
  font-size: 18px;
  font-weight: 700;
  letter-spacing: -0.015em;
  margin-bottom: 20px;
  padding-bottom: 12px;
  border-bottom: 1px solid var(--ink);
}
.check-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 0;
}
.check-list li {
  position: relative;
  padding: 12px 0 12px 28px;
  border-bottom: 1px solid var(--line);
  font-size: 14px;
  line-height: 1.45;
}
.check-list li:last-child { border-bottom: 0; }
.check-list li::before {
  content: "+";
  position: absolute;
  left: 0;
  top: 10px;
  width: 20px;
  height: 20px;
  font-weight: 800;
  font-size: 16px;
  color: var(--accent);
  line-height: 1;
}

/* ============================================================================
   COMPLIANCE / LEGAL PANEL — operator card
   ============================================================================ */

.operator-grid {
  display: grid;
  grid-template-columns: minmax(0, 2fr) minmax(0, 1fr);
  gap: 64px;
  align-items: start;
}
.legal-panel h2 {
  font-size: clamp(28px, 3.5vw, 44px);
  line-height: 1.05;
  letter-spacing: -0.03em;
  font-weight: 800;
  margin-bottom: 24px;
}
.legal-panel p {
  font-size: 16px;
  line-height: 1.55;
  margin-bottom: 16px;
  max-width: 60ch;
}
.legal-panel .accent-block {
  border-left: 4px solid var(--accent);
  padding: 16px 0 16px 20px;
  font-size: 14px;
  font-weight: 600;
  color: var(--ink);
  margin: 24px 0 0;
  background: var(--accent-tint);
  border-top: 1px solid var(--line);
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.operator-card {
  border: 2px solid var(--ink);
  padding: 32px 28px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  background: var(--paper);
}
.operator-card .card-label {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--muted);
}
.operator-card h3 {
  font-size: 26px;
  font-weight: 800;
  letter-spacing: -0.025em;
  line-height: 1.1;
  padding-bottom: 16px;
  border-bottom: 1px solid var(--ink);
}
.operator-card p {
  font-size: 14px;
  line-height: 1.55;
}
.operator-card a {
  color: var(--accent);
  font-weight: 600;
}
.operator-links {
  display: flex;
  flex-wrap: wrap;
  gap: 0;
  border-top: 1px solid var(--line);
  padding-top: 16px;
  margin-top: auto;
}
.operator-links a {
  flex: 0 0 auto;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 6px 12px;
  border: 1px solid var(--ink);
  margin-right: 6px;
  margin-bottom: 6px;
  color: var(--ink);
}
.operator-links a:hover { background: var(--ink); color: var(--paper); }

/* ============================================================================
   FOOTER
   ============================================================================ */

.site-footer {
  background: var(--ink);
  color: var(--paper);
  padding: 64px 0 32px;
  border-top: 4px solid var(--accent);
}
.footer-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 2fr);
  gap: 64px;
  align-items: start;
}
.footer-grid > div:first-child strong {
  font-size: 28px;
  font-weight: 800;
  letter-spacing: -0.03em;
  display: block;
  margin-bottom: 8px;
}
.footer-grid > div:first-child p {
  font-size: 13px;
  line-height: 1.55;
  color: rgba(255, 255, 255, 0.7);
  max-width: 40ch;
}
.footer-grid > div:first-child a {
  color: var(--accent);
  font-weight: 600;
}
.footer-links {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 8px 16px;
}
.footer-links a {
  font-size: 12px;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.8);
  padding: 6px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}
.footer-links a:hover { color: var(--accent); border-bottom-color: var(--accent); }
.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.15);
  margin-top: 48px;
  padding-top: 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 11px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.5);
}

/* ============================================================================
   GENERIC PAGE LAYOUT (for sub-pages like /about, /mentions-legales)
   ============================================================================ */

.page {
  padding: 80px 0 64px;
  border-bottom: var(--rule) solid var(--ink);
  background: var(--paper);
}
.page-grid {
  display: grid;
  grid-template-columns: 240px minmax(0, 1fr);
  gap: 64px;
  align-items: start;
}
.page-side {
  border-top: 2px solid var(--ink);
  padding-top: 20px;
  position: sticky;
  top: 124px;
}
.page-side .label {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 12px;
}
.page-side h1 {
  font-size: 40px;
  line-height: 1.0;
  letter-spacing: -0.035em;
  font-weight: 800;
  margin-bottom: 16px;
}
.page-side .meta {
  font-size: 12px;
  color: var(--muted);
  border-top: 1px solid var(--line);
  padding-top: 12px;
  margin-top: 12px;
}
.page-side .meta div { margin: 4px 0; }

.page-body {
  border-top: 2px solid var(--ink);
  padding-top: 20px;
}
.page-body h2 {
  font-size: 24px;
  font-weight: 700;
  letter-spacing: -0.02em;
  line-height: 1.15;
  margin: 32px 0 12px;
  padding-top: 16px;
  border-top: 1px solid var(--line);
}
.page-body h2:first-of-type { border-top: 0; padding-top: 0; margin-top: 0; }

/* If a sub-page body has an h1 (from old markup), demote it visually */
.page-body > h1:first-child {
  font-size: 28px;
  line-height: 1.15;
  letter-spacing: -0.025em;
  font-weight: 700;
  margin-bottom: 16px;
}
.page-body > p.eyebrow:first-child {
  margin-top: 0;
}
.page-body p {
  font-size: 16px;
  line-height: 1.6;
  margin-bottom: 16px;
  max-width: 70ch;
  color: var(--ink);
}
.page-body ul, .page-body ol {
  margin: 0 0 16px;
  padding-left: 20px;
  font-size: 16px;
  line-height: 1.6;
}
.page-body li { margin-bottom: 6px; max-width: 70ch; }
.page-body strong { font-weight: 700; }
.page-body a { color: var(--accent); font-weight: 600; border-bottom: 1px solid var(--accent); }
.page-body a:hover { background: var(--accent); color: var(--paper); border-bottom-color: var(--accent); }
.page-body table {
  width: 100%;
  border-collapse: collapse;
  font-size: 14px;
  margin: 16px 0 24px;
  border-top: 2px solid var(--ink);
  border-bottom: 2px solid var(--ink);
}
.page-body table th, .page-body table td {
  text-align: left;
  padding: 12px 16px;
  border-bottom: 1px solid var(--line);
  border-right: 1px solid var(--line);
}
.page-body table th:last-child, .page-body table td:last-child { border-right: 0; }
.page-body table th {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  background: var(--paper);
}

/* ============================================================================
   LEGACY CONTENT CLASSES (kept for body content of sub-pages)
   ============================================================================ */

.eyebrow {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--ink);
  margin-bottom: 12px;
}
.eyebrow.dark { color: var(--ink); }

.notice-card {
  border: 2px solid var(--ink);
  padding: 24px 28px;
  background: var(--accent-tint);
  margin: 24px 0;
  display: flex;
  flex-direction: column;
  gap: 8px;
  max-width: 70ch;
}
.notice-card strong {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent);
}
.notice-card p {
  font-size: 15px;
  line-height: 1.55;
  margin: 0;
  color: var(--ink);
}

/* ============================================================================
   RESPONSIVE
   ============================================================================ */

@media (max-width: 1024px) {
  .review-grid { grid-template-columns: repeat(2, 1fr); }
  .review-card:nth-child(2) { border-right: 0; }
  .review-card:nth-child(1), .review-card:nth-child(2) { border-bottom: 1px solid var(--ink); }
  .proof-grid { grid-template-columns: 1fr; }
  .proof-card { border-right: 0; border-bottom: 1px solid var(--ink); }
  .proof-card:last-child { border-bottom: 0; }
  .method-grid, .operator-grid, .footer-grid, .section-heading.with-side, .page-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }
  .footer-links { grid-template-columns: repeat(2, 1fr); }
  .page-side { position: static; }
  .hero-sidecard { grid-template-columns: 1fr; gap: 24px; }
}

@media (max-width: 720px) {
  :root { --gutter: 20px; }
  .hero { padding: 64px 0 48px; }
  .section { padding: 64px 0; }
  .nav-shell {
    grid-template-columns: auto auto;
    min-height: 72px;
    gap: 12px;
  }
  .nav-links { display: none; }
  .nav-cta { padding: 8px 12px; font-size: 12px; }
  .brand-text strong { font-size: 18px; }
  .brand-text small { font-size: 10px; }
  .masthead-bar-inner { font-size: 10px; height: 32px; gap: 12px; }
  .masthead-bar .left, .masthead-bar .right { gap: 10px; }
  .trust-strip-inner { grid-template-columns: 1fr 1fr; }
  .trust-strip-item { border-right: 1px solid var(--line); border-bottom: 1px solid var(--line); }
  .trust-strip-item:nth-child(2n) { border-right: 0; }
  .trust-strip-item:nth-child(n+3) { border-bottom: 0; }
  .review-grid { grid-template-columns: 1fr; }
  .review-card { border-right: 0; border-bottom: 1px solid var(--ink); }
  .review-card:last-child { border-bottom: 0; }
  .footer-links { grid-template-columns: 1fr 1fr; }
  .footer-bottom { flex-direction: column; gap: 8px; }
  .hero-actions { flex-direction: column; align-items: stretch; }
  .button { justify-content: center; }
}
