:root {
  --ink: #151821;
  --soft-ink: #3f4656;
  --muted: #6d7483;
  --line: #dfe5ee;
  --paper: #ffffff;
  --wash: #f6f8fb;
  --blue: #174ea6;
  --blue-soft: #eaf1ff;
  --coral: #e65f4f;
  --mint: #0f9f8f;
  --amber: #bd7b16;
  --shadow: 0 18px 42px rgba(21, 24, 33, 0.08);
  --radius: 8px;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  overflow-x: hidden;
  background: var(--paper);
  color: var(--ink);
  font-family: Inter, Roboto, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.6;
}

a { color: inherit; }
h1, h2, h3, p, a, strong, span { overflow-wrap: break-word; }
h1, h2, h3, p { margin-top: 0; }

.skip-link {
  position: absolute;
  left: 16px;
  top: -60px;
  z-index: 20;
  border-radius: var(--radius);
  background: var(--ink);
  color: var(--paper);
  padding: 10px 14px;
}

.skip-link:focus { top: 16px; }

.container {
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  background: rgba(255, 255, 255, 0.94);
  border-bottom: 2px solid var(--ink);
  backdrop-filter: blur(18px);
}

.nav-shell {
  width: min(1260px, calc(100% - 32px));
  min-height: 86px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 310px minmax(0, 1fr) auto;
  align-items: stretch;
  gap: 0;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding-right: 24px;
  border-right: 1px solid var(--line);
  text-decoration: none;
}

.brand-mark {
  width: 46px;
  height: 46px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: var(--ink);
  color: var(--paper);
  font-weight: 900;
}

.brand strong,
.brand small { display: block; }

.brand small,
.updated {
  color: var(--muted);
  font-size: 0.8rem;
}

.nav-links {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  color: var(--ink);
  font-size: 0.88rem;
  font-weight: 850;
}

.nav-links a {
  height: 100%;
  display: grid;
  place-items: center;
  padding: 0 18px;
  border-right: 1px solid var(--line);
  text-decoration: none;
}

.nav-links a:first-child { border-left: 1px solid var(--line); }
.nav-links a:hover { background: var(--blue-soft); color: var(--blue); }

.updated {
  align-self: center;
  margin: 0;
  padding-left: 24px;
  white-space: nowrap;
}

.hero {
  color: var(--ink);
  background:
    linear-gradient(90deg, rgba(23, 78, 166, 0.07) 1px, transparent 1px),
    linear-gradient(180deg, rgba(23, 78, 166, 0.06) 1px, transparent 1px),
    var(--paper);
  background-size: 44px 44px;
  border-bottom: 1px solid var(--line);
}

.hero-board {
  min-height: 690px;
  display: grid;
  grid-template-columns: 130px minmax(0, 1fr) minmax(300px, 420px);
  gap: 36px;
  align-items: stretch;
  padding: 76px 0 40px;
}

.hero-kicker {
  border-left: 4px solid var(--coral);
  padding: 14px 0 0 16px;
  writing-mode: vertical-rl;
  transform: rotate(180deg);
  align-self: start;
  min-height: 300px;
  color: var(--blue);
  text-transform: uppercase;
}

.hero-kicker span,
.hero-kicker strong {
  display: block;
  font-size: 0.78rem;
  font-weight: 900;
}

.hero-copy {
  display: flex;
  min-width: 0;
  flex-direction: column;
  justify-content: center;
  padding: 24px 0;
}

.eyebrow {
  margin: 0 0 16px;
  color: var(--coral);
  font-size: 0.78rem;
  font-weight: 900;
  text-transform: uppercase;
}

.eyebrow.dark { color: var(--blue); }

h1 {
  max-width: 790px;
  margin-bottom: 26px;
  font-size: clamp(3rem, 6vw, 6rem);
  line-height: 0.94;
  font-weight: 900;
}

h2 {
  margin-bottom: 16px;
  font-size: clamp(1.95rem, 4vw, 3.2rem);
  line-height: 1.06;
  font-weight: 900;
}

h3 {
  margin-bottom: 12px;
  font-size: 1.18rem;
  line-height: 1.24;
}

.hero-subtitle {
  max-width: 700px;
  color: var(--soft-ink);
  font-size: 1.08rem;
}

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

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  border: 2px solid var(--ink);
  border-radius: var(--radius);
  background: var(--ink);
  color: var(--paper);
  padding: 11px 16px;
  font-weight: 900;
  text-decoration: none;
  box-shadow: 6px 6px 0 rgba(23, 78, 166, 0.16);
  transition: transform 160ms ease, box-shadow 160ms ease, background 160ms ease;
}

.button:hover {
  transform: translate(-2px, -2px);
  box-shadow: 8px 8px 0 rgba(23, 78, 166, 0.18);
}

.button-ghost {
  background: var(--paper);
  color: var(--ink);
  box-shadow: none;
}

.button-small {
  min-height: 38px;
  padding: 8px 13px;
  font-size: 0.86rem;
  white-space: nowrap;
}

.report-card {
  align-self: center;
  border: 2px solid var(--ink);
  border-radius: var(--radius);
  background: var(--paper);
  box-shadow: 12px 12px 0 var(--blue-soft);
  padding: 28px;
}

.report-card > p {
  margin-bottom: 12px;
  color: var(--coral);
  font-size: 0.78rem;
  font-weight: 900;
  text-transform: uppercase;
}

.report-card h2 {
  font-size: clamp(1.6rem, 3vw, 2.4rem);
}

.report-card dl {
  display: grid;
  gap: 0;
  margin: 24px 0 0;
  border-top: 1px solid var(--line);
}

.report-card div {
  display: grid;
  grid-template-columns: 1fr 1.15fr;
  gap: 12px;
  padding: 13px 0;
  border-bottom: 1px solid var(--line);
}

.report-card dt {
  color: var(--muted);
  font-weight: 800;
}

.report-card dd {
  margin: 0;
  color: var(--ink);
  font-weight: 900;
}

.trust-strip {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1px;
  padding-bottom: 42px;
  background: var(--ink);
}

.trust-strip span {
  display: grid;
  min-height: 76px;
  place-items: center;
  background: var(--paper);
  color: var(--ink);
  padding: 12px;
  text-align: center;
  font-size: 0.9rem;
  font-weight: 900;
}

.proof-band {
  background: var(--wash);
  border-bottom: 1px solid var(--line);
}

.proof-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  padding: 34px 0;
}

.proof-grid article {
  min-height: 180px;
  border: 1px solid var(--line);
  border-top: 5px solid var(--blue);
  border-radius: var(--radius);
  background: var(--paper);
  padding: 24px;
}

.proof-grid article:nth-child(2) { border-top-color: var(--coral); }
.proof-grid article:nth-child(3) { border-top-color: var(--mint); }

.proof-grid span {
  color: var(--muted);
  font-size: 0.78rem;
  font-weight: 900;
  text-transform: uppercase;
}

.proof-grid h2 {
  margin: 10px 0 8px;
  font-size: 1.2rem;
}

.proof-grid p {
  margin: 0;
  color: var(--muted);
}

.section { padding: 92px 0; }
.editorial-section { background: var(--wash); }

.section-heading {
  max-width: 910px;
  margin-bottom: 38px;
}

.split-heading {
  max-width: none;
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(280px, 0.62fr);
  gap: 54px;
  align-items: end;
}

.center-heading {
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}

.section-heading p,
.method-grid p,
.legal-panel p {
  color: var(--muted);
  font-size: 1.04rem;
}

.notice-card {
  margin: -8px 0 26px;
  border: 1px solid #f3c7be;
  border-radius: var(--radius);
  background: #fff5f2;
  padding: 20px 22px;
}

.notice-card strong {
  display: block;
  margin-bottom: 6px;
  color: #9f321f;
}

.notice-card p {
  margin: 0;
  color: var(--soft-ink);
}

.comparison-wrap {
  overflow-x: auto;
  border: 2px solid var(--ink);
  border-radius: var(--radius);
  background: var(--paper);
  box-shadow: 10px 10px 0 var(--blue-soft);
}

.comparison-table {
  width: 100%;
  min-width: 940px;
  border-collapse: collapse;
}

.comparison-table th,
.comparison-table td {
  padding: 20px 22px;
  text-align: left;
  vertical-align: middle;
  border-bottom: 1px solid var(--line);
}

.comparison-table th {
  background: var(--ink);
  color: var(--paper);
  font-size: 0.78rem;
  font-weight: 900;
  text-transform: uppercase;
}

.comparison-table tbody tr:hover { background: #f9fbff; }
.comparison-table tbody tr:last-child td { border-bottom: 0; }

.provider {
  display: flex;
  align-items: center;
  gap: 14px;
}

.provider-logo {
  width: 42px;
  height: 42px;
  display: grid;
  flex: 0 0 auto;
  place-items: center;
  border: 2px solid var(--ink);
  border-radius: 50%;
  background: var(--paper);
  color: var(--blue);
  font-weight: 900;
}

.provider-logo.alt { color: var(--coral); }
.provider-logo.warm { color: var(--amber); }
.provider-logo.cool { color: var(--mint); }

.provider strong,
.provider small { display: block; }

.provider small {
  color: var(--muted);
  font-size: 0.84rem;
}

.badge {
  display: inline-block;
  margin-right: 6px;
  border-radius: 999px;
  background: var(--blue-soft);
  color: var(--blue);
  padding: 3px 8px;
  font-size: 0.72rem;
  font-weight: 900;
}

.score {
  display: block;
  margin-top: 6px;
  color: var(--soft-ink);
  font-size: 0.82rem;
  font-weight: 900;
}

.rating-bar {
  position: relative;
  display: block;
  width: 112px;
  height: 9px;
  overflow: hidden;
  border-radius: 999px;
  background: #e6ebf2;
}

.rating-bar::before {
  content: "";
  position: absolute;
  inset: 0;
  width: var(--rating);
  border-radius: inherit;
  background: linear-gradient(90deg, var(--blue), var(--coral));
}

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

.review-card,
.legal-panel,
.method-card,
.operator-card {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--paper);
  box-shadow: var(--shadow);
}

.review-card {
  display: flex;
  flex-direction: column;
  min-height: 320px;
  padding: 24px;
}

.review-card-top {
  display: grid;
  gap: 10px;
}

.review-card-top span {
  width: fit-content;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: var(--paper);
  color: var(--blue);
  padding: 6px 10px;
  font-size: 0.78rem;
  font-weight: 900;
}

.review-card p { color: var(--muted); }

.review-card a {
  margin-top: auto;
  color: var(--blue);
  font-weight: 900;
  text-decoration: none;
}

.review-card a:hover { text-decoration: underline; }

.method-grid,
.operator-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 0.72fr);
  gap: 48px;
  align-items: start;
}

.method-card,
.legal-panel,
.operator-card {
  padding: 30px;
}

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

.check-list li {
  position: relative;
  padding-left: 26px;
  color: var(--soft-ink);
}

.check-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.65em;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--coral);
}

.compliance-section {
  background: var(--ink);
  color: var(--paper);
}

.compliance-section .legal-panel,
.compliance-section .operator-card {
  border-color: rgba(255,255,255,0.18);
  background: rgba(255,255,255,0.06);
  box-shadow: none;
}

.compliance-section .legal-panel p,
.compliance-section .operator-card p {
  color: #d7dce5;
}

.operator-card {
  display: grid;
  gap: 10px;
  font-style: normal;
}

.card-label {
  color: var(--coral);
  font-size: 0.78rem;
  font-weight: 900;
  text-transform: uppercase;
}

.operator-card h3 { margin-bottom: 0; }

.operator-card p {
  margin-bottom: 0;
  color: var(--muted);
}

.operator-card a {
  color: #9cc2ff;
  text-decoration: none;
  font-weight: 800;
}

.operator-card a:hover { text-decoration: underline; }

.operator-links {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 10px;
}

.site-footer {
  background: var(--paper);
  color: var(--ink);
  border-top: 2px solid var(--ink);
  padding: 44px 0;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.3fr 1fr;
  gap: 30px;
}

.footer-grid p,
.footer-grid a,
.footer-grid span {
  display: block;
  margin: 8px 0 0;
  color: var(--muted);
  text-decoration: none;
}

.footer-grid a:hover {
  color: var(--blue);
  text-decoration: underline;
}

.legal-page {
  padding: 78px 0;
}

.narrow,
.legal-page article {
  max-width: 890px;
}

.legal-page h1 {
  font-size: clamp(2.35rem, 5vw, 4.25rem);
  line-height: 1.02;
}

.legal-page h2 {
  margin-top: 34px;
  font-size: 1.45rem;
}

.legal-page p,
.legal-page li {
  color: var(--soft-ink);
}

@media (max-width: 1120px) {
  .nav-shell {
    grid-template-columns: 1fr auto;
    padding: 14px 0;
  }

  .brand {
    border-right: 0;
    padding-right: 0;
  }

  .nav-links {
    grid-column: 1 / -1;
    justify-content: flex-start;
    flex-wrap: wrap;
  }

  .nav-links a,
  .nav-links a:first-child {
    min-height: 40px;
    border: 1px solid var(--line);
    padding: 8px 12px;
  }

  .hero-board {
    grid-template-columns: 90px minmax(0, 1fr);
  }

  .report-card {
    grid-column: 2;
  }

  .review-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}

@media (max-width: 860px) {
  .hero-board,
  .split-heading,
  .method-grid,
  .operator-grid,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .hero-board {
    min-height: auto;
    padding: 54px 0 32px;
  }

  .hero-kicker {
    min-height: auto;
    writing-mode: initial;
    transform: none;
    border-left: 0;
    border-top: 4px solid var(--coral);
    padding: 12px 0 0;
  }

  .report-card {
    grid-column: auto;
  }

  .trust-strip,
  .proof-grid {
    grid-template-columns: 1fr;
  }

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

@media (max-width: 720px) {
  .comparison-wrap {
    overflow: visible;
    border: 0;
    box-shadow: none;
    background: transparent;
  }

  .comparison-table { min-width: 0; }

  .comparison-table,
  .comparison-table thead,
  .comparison-table tbody,
  .comparison-table th,
  .comparison-table td,
  .comparison-table tr {
    display: block;
  }

  .comparison-table thead {
    position: absolute;
    width: 1px;
    height: 1px;
    overflow: hidden;
    clip: rect(0 0 0 0);
  }

  .comparison-table tr {
    margin-bottom: 16px;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    background: var(--paper);
    box-shadow: var(--shadow);
    overflow: hidden;
  }

  .comparison-table td {
    display: grid;
    grid-template-columns: 108px minmax(0, 1fr);
    gap: 14px;
    padding: 15px 18px;
    border-bottom: 1px solid var(--line);
  }

  .comparison-table td::before {
    content: attr(data-label);
    color: var(--muted);
    font-size: 0.76rem;
    font-weight: 900;
    text-transform: uppercase;
  }

  .button-small { width: 100%; }
}

@media (max-width: 520px) {
  .container,
  .nav-shell {
    width: min(100% - 32px, 1180px);
  }

  .nav-links {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    width: 100%;
    gap: 8px;
  }

  .updated { display: none; }

  h1 {
    font-size: clamp(2.2rem, 10vw, 3rem);
    line-height: 1;
  }

  h2 { font-size: clamp(1.8rem, 9vw, 2.45rem); }

  .hero-subtitle,
  .section-heading p,
  .method-grid p,
  .legal-panel p {
    max-width: 360px;
    font-size: 0.98rem;
  }

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

  .section { padding: 66px 0; }

  .report-card {
    padding: 20px;
    box-shadow: 7px 7px 0 var(--blue-soft);
  }

  .report-card div,
  .comparison-table td {
    grid-template-columns: 1fr;
  }
}
