:root {
  color-scheme: light;
  --white: #ffffff;
  --paper: #fbfbfa;
  --soft: #f4f5f6;
  --line: #e4e5e7;
  --ink: #0b0c0e;
  --muted: #686d73;
  --faint: #9aa0a6;
  --blue: #2458d3;
  --blue-soft: #edf3ff;
  --shadow: 0 18px 45px rgba(8, 12, 18, 0.07);
  --serif: "Playfair Display", "Cormorant Garamond", Georgia, serif;
  --sans: "Inter", "Helvetica Neue", Arial, sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--white);
  color: var(--ink);
  font-family: var(--sans);
  text-rendering: optimizeLegibility;
}

button,
input {
  font: inherit;
}

button {
  cursor: pointer;
  touch-action: manipulation;
}

:focus-visible {
  outline: 3px solid rgba(36, 88, 211, 0.45);
  outline-offset: 4px;
}

.skip-link {
  position: fixed;
  top: 14px;
  left: 14px;
  z-index: 100;
  transform: translateY(-140%);
  border-radius: 999px;
  background: var(--ink);
  color: var(--white);
  padding: 12px 16px;
  font-size: 13px;
  font-weight: 800;
  text-decoration: none;
  transition: transform 180ms ease;
}

.skip-link:focus {
  transform: translateY(0);
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  clip-path: inset(50%);
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 28px;
  min-height: 78px;
  padding: 0 clamp(20px, 4vw, 58px);
  border-bottom: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(20px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0;
  min-height: 44px;
  color: var(--ink);
  text-decoration: none;
  font-family: var(--serif);
  font-weight: 600;
  letter-spacing: 0.01em;
}

.brand-logo {
  display: block;
  width: clamp(140px, 12vw, 170px);
  height: auto;
}

.brand-wordmark {
  display: inline-block;
  color: var(--ink);
  font-family: var(--serif);
  font-size: 31px;
  font-weight: 600;
  line-height: 1;
  letter-spacing: -0.015em;
}

.brand-wordmark span {
  color: var(--blue);
}

.brand-mark {
  display: grid;
  width: 52px;
  height: 32px;
  place-items: center;
}

.brand-mark.wordmark {
  width: 176px;
  height: 54px;
}

.brand-mark img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.site-nav {
  display: flex;
  justify-content: center;
  gap: 4px;
  min-width: 0;
}

.nav-link,
.text-action,
.site-footer button:not(.inline-link) {
  border: 0;
  background: transparent;
  color: var(--muted);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.nav-link {
  min-height: 44px;
  border-radius: 999px;
  padding: 11px 13px;
  transition: color 180ms ease, background 180ms ease;
  white-space: nowrap;
}

.nav-link:hover,
.nav-link.active {
  background: var(--blue-soft);
  color: var(--blue);
}

.header-actions,
.hero-actions {
  display: flex;
  align-items: center;
  gap: 10px;
}

.primary-action,
.secondary-action {
  min-height: 44px;
  border-radius: 999px;
  padding: 0 18px;
  font-size: 13px;
  font-weight: 750;
  transition: transform 180ms ease, box-shadow 180ms ease, background 180ms ease, color 180ms ease;
}

.primary-action {
  border: 1px solid var(--blue);
  background: var(--blue);
  color: var(--white);
}

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

.primary-action:hover,
.secondary-action:hover {
  transform: translateY(-1px);
  box-shadow: 0 10px 24px rgba(12, 18, 28, 0.09);
}

.large {
  min-height: 48px;
  padding: 0 22px;
}

.market-strip {
  overflow: hidden;
  border-bottom: 1px solid var(--line);
  background: #111316;
  color: var(--white);
}

.ticker-track:hover {
  animation-play-state: paused;
}

.ticker-track {
  display: flex;
  width: max-content;
  animation: ticker 32s linear infinite;
}

.ticker-item {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  min-height: 38px;
  padding: 0 22px;
  border-right: 1px solid rgba(255, 255, 255, 0.16);
  white-space: nowrap;
}

.ticker-item span {
  color: rgba(255, 255, 255, 0.72);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.11em;
  text-transform: uppercase;
}

.ticker-item strong {
  font-size: 13px;
}

.ticker-item small {
  color: #8fb0ff;
  font-size: 12px;
  font-weight: 800;
}

main {
  width: min(1180px, calc(100% - 40px));
  margin: 0 auto;
}

#main-content,
#newsletter,
#sample-brief,
.page-hero {
  scroll-margin-top: 116px;
}

.page {
  display: none;
}

.page.active {
  display: block;
}

.hero-section {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(360px, 0.95fr);
  gap: clamp(34px, 5vw, 76px);
  align-items: center;
  padding: clamp(76px, 10vw, 132px) 0 74px;
}

.kicker {
  margin: 0 0 16px;
  color: var(--blue);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

h1,
h2,
h3 {
  margin: 0;
  font-family: var(--serif);
  font-weight: 500;
  letter-spacing: 0;
}

.hero-copy h1,
.page-hero h1 {
  max-width: 820px;
  font-size: clamp(48px, 7vw, 86px);
  line-height: 0.96;
}

.hero-copy p:not(.kicker),
.page-hero p:not(.kicker) {
  max-width: 620px;
  margin: 24px 0 0;
  color: var(--muted);
  font-size: 18px;
  line-height: 1.75;
}

.hero-actions {
  margin-top: 34px;
  flex-wrap: wrap;
}

.trust-line {
  margin-top: 18px !important;
  color: var(--faint) !important;
  font-size: 13px !important;
  font-weight: 700;
}

.data-preview,
.newsletter-panel,
.analytics-card {
  border: 1px solid var(--line);
  background: var(--white);
  box-shadow: var(--shadow);
}

.data-preview {
  border-radius: 24px;
  padding: 24px;
}

.preview-head,
.section-heading.split {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 24px;
}

.site-footer {
  display: grid;
  grid-template-columns: 1fr auto;
  grid-template-rows: auto auto;
  gap: 32px 48px;
  align-items: start;
}

.preview-head span,
.preview-grid span,
.analytics-card span {
  display: block;
  margin-bottom: 5px;
  color: var(--faint);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.preview-head strong {
  font-size: 18px;
}

.preview-head small {
  color: var(--muted);
  font-size: 12px;
  font-weight: 700;
}

.market-snapshot {
  background: #111316;
  color: var(--white);
}

.market-snapshot .preview-head strong,
.market-snapshot .snapshot-price strong,
.market-snapshot dd {
  color: var(--white);
}

.market-snapshot .preview-head span,
.market-snapshot .preview-head small,
.market-snapshot dt,
.snapshot-caption {
  color: rgba(255, 255, 255, 0.62);
}

.snapshot-price {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 18px;
  padding: 38px 0 24px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.16);
}

.snapshot-price strong {
  font-size: clamp(40px, 6vw, 68px);
  letter-spacing: -0.05em;
  overflow-wrap: anywhere;
}

.snapshot-price span {
  font-size: 15px;
  font-weight: 850;
}

.snapshot-list {
  display: grid;
  gap: 0;
  margin: 0;
}

.snapshot-list div {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  padding: 15px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
}

.snapshot-list dt,
.snapshot-list dd {
  margin: 0;
  font-size: 13px;
}

.snapshot-list dd {
  text-align: right;
  font-weight: 750;
}

.snapshot-caption {
  margin: 18px 0 0;
  font-size: 13px;
  line-height: 1.65;
}

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

.preview-grid div {
  min-width: 0;
  border-top: 1px solid var(--line);
  padding-top: 14px;
}

.preview-grid strong {
  font-size: 16px;
}

.blue-text {
  color: var(--blue);
}

.section-block {
  padding: 74px 0;
  border-top: 1px solid var(--line);
}

.section-heading {
  margin-bottom: 28px;
}

.section-heading h2,
.newsletter-panel h2 {
  max-width: 760px;
  font-size: clamp(34px, 4vw, 54px);
  line-height: 1.04;
}

.section-heading p:not(.kicker),
.newsletter-panel p {
  max-width: 680px;
  color: var(--muted);
  line-height: 1.7;
}

.dark-panel {
  display: grid;
  grid-template-columns: minmax(0, 0.82fr) minmax(420px, 1.18fr);
  gap: clamp(28px, 5vw, 64px);
  align-items: start;
  margin: 0 0 76px;
  border-radius: 30px;
  background: #111316;
  color: var(--white);
  padding: clamp(28px, 5vw, 58px);
}

.dark-panel .section-heading {
  margin-bottom: 0;
}

.dark-panel h2 {
  font-size: clamp(36px, 5vw, 60px);
  line-height: 1.02;
}

.dark-panel .section-heading p:not(.kicker),
.brief-sample small {
  color: rgba(255, 255, 255, 0.62);
}

.brief-sample {
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.055);
  padding: 24px;
}

.brief-line,
.brief-block {
  border-bottom: 1px solid rgba(255, 255, 255, 0.14);
  padding-bottom: 18px;
  margin-bottom: 18px;
}

.brief-line {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  color: rgba(255, 255, 255, 0.7);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.brief-line strong,
.brief-block strong {
  color: var(--white);
}

.brief-block span {
  display: block;
  margin-bottom: 12px;
  color: rgba(255, 255, 255, 0.55);
  font-size: 11px;
  font-weight: 850;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.brief-block p {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  margin: 9px 0;
  color: rgba(255, 255, 255, 0.78);
  line-height: 1.55;
}

.brief-block em {
  color: #8fb0ff;
  font-style: normal;
  font-weight: 800;
  white-space: nowrap;
}

.brief-form {
  margin-bottom: 14px;
}

.brief-form input {
  background: rgba(255, 255, 255, 0.09);
  border-color: rgba(255, 255, 255, 0.2);
  color: var(--white);
}

.article-grid,
.metal-grid,
.analytics-layout,
.about-panel,
.track-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.article-card,
.metal-card,
.about-panel > div,
.track-grid article {
  min-height: 260px;
  border: 1px solid var(--line);
  border-radius: 20px;
  background: var(--white);
  padding: 24px;
  transition: transform 180ms ease, border-color 180ms ease, box-shadow 180ms ease;
}

.article-card:hover,
.metal-card:hover {
  transform: translateY(-3px);
  border-color: rgba(36, 88, 211, 0.35);
  box-shadow: 0 18px 40px rgba(14, 19, 27, 0.08);
}

.article-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  color: var(--faint);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.article-card h3 {
  margin-top: 40px;
  font-size: 29px;
  line-height: 1.08;
}

.article-card p,
.metal-card p,
.analytics-card p,
.about-panel p,
.track-grid p,
.site-footer p {
  color: var(--muted);
  line-height: 1.65;
}

.site-footer .consent-line {
  font-size: 11px;
  color: var(--faint);
  line-height: 1.5;
  margin: 6px 0 0;
}

.track-grid article {
  min-height: 220px;
}

.track-grid span {
  color: var(--blue);
  font-size: 12px;
  font-weight: 850;
}

.track-grid h3 {
  margin-top: 28px;
  font-size: 28px;
}

.metal-card {
  min-height: 300px;
}

.metal-top,
.metal-price {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 14px;
}

.metal-top span,
.metal-context {
  color: var(--faint);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.metal-price {
  margin-top: 30px;
}

.metal-price strong {
  font-size: 34px;
  letter-spacing: -0.02em;
}

.metal-price small {
  color: var(--blue);
  font-weight: 800;
}

.sparkline {
  width: 100%;
  height: 82px;
  margin: 20px 0 10px;
}

.newsletter-panel {
  display: grid;
  grid-template-columns: 1fr minmax(300px, 440px);
  gap: 34px;
  align-items: center;
  margin: 74px 0 96px;
  border-radius: 28px;
  padding: clamp(28px, 5vw, 52px);
}

.reader-lines {
  padding: 70px 0;
  border-top: 1px solid var(--line);
}

.reader-lines p:not(.kicker) {
  max-width: 920px;
  margin: 0;
  padding: 22px 0;
  border-bottom: 1px solid var(--line);
  color: var(--ink);
  font-family: var(--serif);
  font-size: clamp(28px, 4vw, 46px);
  line-height: 1.14;
}

.newsletter-form {
  display: flex;
  gap: 10px;
}

.newsletter-form input {
  min-width: 0;
  flex: 1;
  min-height: 48px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: var(--soft);
  padding: 0 18px;
  color: var(--ink);
  outline: none;
}

.newsletter-form input:focus {
  border-color: var(--blue);
  background: var(--white);
}

.page-hero {
  padding: 86px 0 46px;
  border-bottom: 1px solid var(--line);
}

.rates-board,
.analytics-layout,
.about-panel,
.journal-grid {
  padding: 36px 0 96px;
}

.journal-hero { border-bottom: 1px solid var(--line); }

.journal-layout {
  display: grid;
  grid-template-columns: 300px 1fr;
  gap: 0 64px;
  padding: 56px 0 96px;
  align-items: start;
}

.journal-feature {
  position: sticky;
  top: 96px;
  padding-right: 32px;
  border-right: 1px solid var(--line);
}

.journal-feature h2 {
  font-size: 26px;
  line-height: 1.2;
  margin: 8px 0 12px;
}

.journal-feature p { color: var(--muted); margin-bottom: 24px; }

.journal-list {
  display: grid;
  gap: 0;
  border-top: 1px solid var(--line);
}

.journal-row {
  display: grid;
  grid-template-columns: 130px 1fr;
  gap: 24px;
  padding: 24px 0;
  border-bottom: 1px solid var(--line);
}

.journal-tag {
  display: block;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--blue);
  margin-bottom: 6px;
}

.journal-row time {
  display: block;
  color: var(--faint);
  font-size: 12px;
  font-weight: 600;
}

.journal-row h3 {
  margin: 0;
  font-size: 17px;
  font-weight: 600;
  line-height: 1.35;
}

.journal-row h3 a {
  color: var(--ink);
  text-decoration: none;
}

.journal-row h3 a:hover { text-decoration: underline; }

.rates-table-wrap {
  overflow-x: auto;
  border: 1px solid var(--line);
  border-radius: 22px;
}

table {
  width: 100%;
  border-collapse: collapse;
  min-width: 780px;
  background: var(--white);
}

th,
td {
  padding: 18px 20px;
  border-bottom: 1px solid var(--line);
  text-align: left;
}

th {
  color: var(--faint);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

td {
  color: var(--ink);
  font-size: 14px;
  font-weight: 650;
}

tr:last-child td {
  border-bottom: 0;
}

.analytics-card {
  border-radius: 22px;
  padding: 28px;
}

.analytics-card strong {
  display: block;
  margin-top: 20px;
  font-size: 38px;
  letter-spacing: -0.04em;
}

.analytics-card.accent {
  border-color: rgba(36, 88, 211, 0.35);
  background: var(--blue-soft);
}

.about-panel > div span {
  color: var(--blue);
  font-weight: 800;
}

.about-panel h3 {
  margin-top: 40px;
  font-size: 30px;
}

.site-footer {
  width: min(1180px, calc(100% - 40px));
  margin: 0 auto;
  padding: 52px 0 44px;
  border-top: 1px solid var(--line);
  color: var(--muted);
}

.footer-brand {
  max-width: 520px;
}

.footer-logo {
  display: block;
  width: 176px;
  height: auto;
  margin: 0 0 16px;
}

.footer-form {
  display: grid;
  grid-template-columns: minmax(200px, 1fr) auto;
  margin: 18px 0 8px;
  max-width: 500px;
}

.site-footer strong {
  color: var(--ink);
  font-family: var(--serif);
  font-size: 24px;
}

.site-footer nav {
  display: grid;
  grid-template-columns: repeat(2, minmax(120px, auto));
  gap: 8px 28px;
  justify-content: end;
  align-items: start;
  text-align: left;
}

.site-footer small {
  grid-column: 1 / -1;
  font-size: 11px;
  color: var(--faint);
  line-height: 1.6;
}

.site-footer button:not(.inline-link),
.site-footer a,
.text-action {
  min-height: 36px;
  display: inline-flex;
  align-items: center;
}

.site-footer a {
  color: var(--muted);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-decoration: none;
  text-transform: uppercase;
}

.site-footer button:not(.inline-link),
.site-footer nav a {
  min-height: 30px;
  justify-content: flex-start;
  padding: 0;
}

.footer-linkedin {
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.site-footer a:hover,
.site-footer button:not(.inline-link):hover {
  color: var(--blue);
}

.site-footer .inline-link {
  border: 0;
  background: transparent;
  padding: 0;
  color: var(--blue);
  font: inherit;
}

.footer-legal {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  max-width: none;
  padding-top: 18px;
  border-top: 1px solid var(--line);
}

.footer-legal a {
  min-height: 0;
  color: var(--faint);
  font-size: inherit;
  font-weight: inherit;
  letter-spacing: 0;
  text-transform: none;
}

@keyframes ticker {
  to {
    transform: translateX(-50%);
  }
}

@media (max-width: 980px) {
  .site-header {
    grid-template-columns: 1fr;
    justify-items: center;
    padding: 18px 20px;
  }

  .site-nav,
  .header-actions {
    flex-wrap: wrap;
    justify-content: center;
  }

  .hero-section,
  .newsletter-panel {
    grid-template-columns: 1fr;
  }

  .dark-panel,
  .article-grid,
  .metal-grid,
  .analytics-layout,
  .about-panel,
  .track-grid {
    grid-template-columns: 1fr;
  }

  .brief-block p,
  .brief-line {
    display: block;
  }

  .site-footer {
    display: grid;
    gap: 22px;
  }
}

@media (max-width: 760px) {
  .site-header {
    grid-template-columns: 1fr auto;
    grid-template-areas:
      "brand actions"
      "nav nav";
    gap: 12px 16px;
    justify-items: stretch;
    padding: 12px 14px 0;
  }

  .brand {
    grid-area: brand;
  }

  .header-actions {
    grid-area: actions;
    justify-content: end;
  }

  .text-action {
    display: none;
  }

  .site-nav {
    grid-area: nav;
    justify-content: flex-start;
    width: calc(100% + 28px);
    margin: 0 -14px;
    overflow-x: auto;
    padding: 4px 14px 12px;
    scrollbar-width: none;
    -webkit-overflow-scrolling: touch;
  }

  .site-nav::-webkit-scrollbar {
    display: none;
  }

  .nav-link {
    flex: 0 0 auto;
  }

  .market-strip {
    position: relative;
    z-index: 10;
  }
}

@media (max-width: 620px) {
  main,
  .site-footer {
    width: min(100% - 28px, 1180px);
  }

  .hero-copy h1,
  .page-hero h1 {
    font-size: 42px;
    line-height: 1;
  }

  .hero-section {
    padding: 52px 0 54px;
  }

  .section-block,
  .reader-lines {
    padding: 52px 0;
  }

  .dark-panel,
  .newsletter-panel {
    border-radius: 22px;
    margin-bottom: 56px;
  }

  .snapshot-price,
  .snapshot-list div,
  .metal-top,
  .metal-price {
    align-items: flex-start;
    flex-direction: column;
  }

  .snapshot-list dd {
    text-align: left;
  }

  .article-card,
  .metal-card,
  .about-panel > div,
  .track-grid article {
    min-height: auto;
  }

  .reader-lines p:not(.kicker) {
    font-size: 30px;
  }

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

  .primary-action,
  .secondary-action {
    width: 100%;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
  }

  .ticker-track {
    animation: none;
  }
}

/* ── Analytics board ─────────────────────────────────────────────────────── */
.analytics-board {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  padding: 36px 0 96px;
}

.analytics-card.analytics-wide {
  grid-column: 1 / -1;
}

.analytics-row {
  display: flex;
  align-items: baseline;
  gap: 14px;
  margin-top: 20px;
}

.analytics-row strong {
  margin-top: 0;
}

.analytics-row em {
  font-style: normal;
  font-size: 16px;
  color: var(--muted);
  font-weight: 600;
}

.analytics-chart {
  display: block;
  width: 100%;
  height: 80px;
  margin-top: 18px;
}

.analytics-chart-tall {
  height: 120px;
}

.chart-sub {
  margin-top: 7px;
  font-size: 11px;
  color: var(--faint);
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.analytics-note {
  margin-top: 12px;
  font-size: 12px;
  color: var(--faint);
  line-height: 1.55;
}

.data-footer {
  padding: 0 0 56px;
  font-size: 12px;
  color: var(--faint);
}

@media (max-width: 860px) {
  .analytics-board {
    grid-template-columns: 1fr;
  }
  .analytics-card.analytics-wide {
    grid-column: 1;
  }
}

/* ── Validation card ─────────────────────────────────────────────────────── */
.val-header {
  margin-bottom: 16px;
}

.val-badge {
  display: inline-block;
  padding: 4px 12px;
  border-radius: 20px;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.val-badge.val-ok {
  background: rgba(36, 88, 211, 0.1);
  color: var(--blue);
}

.val-badge.val-warn {
  background: rgba(200, 80, 30, 0.1);
  color: #c8501e;
}

.val-rows {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0 24px;
}

.val-row {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  padding: 8px 0;
  border-bottom: 1px solid var(--line);
  font-size: 13px;
}

.val-row:last-child {
  border-bottom: 0;
}

.val-icon {
  flex-shrink: 0;
  width: 18px;
  font-size: 13px;
  margin-top: 1px;
}

.val-pass .val-icon { color: var(--blue); }
.val-fail .val-icon { color: #c8501e; }

.val-label {
  font-weight: 700;
  color: var(--ink);
  flex: 1;
  min-width: 0;
}

.val-detail {
  font-size: 11px;
  color: var(--faint);
  display: block;
  margin-top: 1px;
}

@media (max-width: 860px) {
  .val-rows {
    grid-template-columns: 1fr;
  }
}

/* ── Legal pages ─────────────────────────────────────────────────────────── */
.legal-page {
  max-width: 720px;
  margin: 0 auto;
  padding: 56px 24px 96px;
}

.legal-page h1 {
  font-size: clamp(28px, 4vw, 42px);
  margin-bottom: 8px;
}

.legal-meta {
  color: var(--muted);
  font-size: 13px;
  margin-bottom: 48px;
  padding-bottom: 24px;
  border-bottom: 1px solid var(--line);
}

.legal-body h2 {
  font-size: 16px;
  font-weight: 700;
  margin: 36px 0 8px;
  color: var(--ink);
}

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

.legal-body ul {
  padding-left: 20px;
  margin: 8px 0 16px;
}

.legal-body li { margin-bottom: 4px; }

.legal-contact {
  margin-top: 48px;
  padding-top: 24px;
  border-top: 1px solid var(--line);
  font-size: 14px;
}

.legal-body a { color: var(--blue); }

.consent-line {
  margin: 8px 0 0;
  font-size: 11px;
  color: var(--faint);
  line-height: 1.5;
}

.inline-link {
  display: inline;
  border: 0;
  background: none;
  padding: 0;
  font-size: inherit;
  color: var(--muted);
  text-decoration: underline;
  cursor: pointer;
  font-weight: inherit;
  letter-spacing: inherit;
  text-transform: inherit;
}

.inline-link:hover { color: var(--blue); }
