:root {
  --ink: #102a43;
  --ink-2: #243b53;
  --muted: #526d82;
  --paper: #ffffff;
  --canvas: #f3f6f7;
  --navy: #081d2b;
  --navy-2: #0e3143;
  --line: #d8e2e7;
  --line-dark: #29485a;
  --gold: #f3b61f;
  --gold-soft: #fff6d8;
  --teal: #0d7c73;
  --teal-soft: #e7f6f3;
  --red: #a73535;
  --red-soft: #fff0ee;
  --shadow-sm: 0 2px 10px rgba(8, 29, 43, .08);
  --shadow-md: 0 18px 50px rgba(8, 29, 43, .13);
  --radius-sm: 8px;
  --radius: 14px;
  --radius-lg: 24px;
  --content: 1180px;
  --header-height: 76px;
  --space-1: .375rem;
  --space-2: .625rem;
  --space-3: 1rem;
  --space-4: 1.5rem;
  --space-5: 2rem;
  --space-6: 3rem;
  --space-7: 4.5rem;
  color-scheme: light;
}

*, *::before, *::after { box-sizing: border-box; }

.visually-hidden {
  position: absolute !important;
  width: 1px !important;
  height: 1px !important;
  padding: 0 !important;
  margin: -1px !important;
  overflow: hidden !important;
  clip: rect(0, 0, 0, 0) !important;
  white-space: nowrap !important;
  border: 0 !important;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--header-height) + 20px);
}

body {
  margin: 0;
  min-width: 320px;
  color: var(--ink-2);
  background: var(--canvas);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 1rem;
  line-height: 1.7;
  text-rendering: optimizeLegibility;
}

img { display: block; max-width: 100%; }
a { color: inherit; }
button, a { -webkit-tap-highlight-color: transparent; }

a:focus-visible, button:focus-visible, summary:focus-visible, [tabindex="0"]:focus-visible {
  outline: 3px solid var(--gold);
  outline-offset: 3px;
}

.skip-link {
  position: fixed;
  top: 8px;
  left: 8px;
  z-index: 100;
  padding: .7rem 1rem;
  color: var(--navy);
  background: var(--gold);
  border-radius: var(--radius-sm);
  font-weight: 800;
  transform: translateY(-150%);
}

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

.container {
  width: min(var(--content), calc(100% - 2rem));
  margin-inline: auto;
}

.risk-bar {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: .6rem;
  min-height: 32px;
  padding: .25rem 1rem;
  color: #fff;
  background: var(--navy);
  font-size: .76rem;
  font-weight: 700;
  letter-spacing: .01em;
  text-align: center;
}

.risk-bar span {
  display: inline-grid;
  place-items: center;
  min-width: 26px;
  height: 26px;
  border: 1px solid #7894a5;
  border-radius: 50%;
  color: var(--gold);
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  color: #fff;
  background: rgba(8, 29, 43, .97);
  border-bottom: 1px solid var(--line-dark);
  backdrop-filter: blur(14px);
}

.header-inner {
  width: min(var(--content), calc(100% - 2rem));
  min-height: var(--header-height);
  margin-inline: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-4);
}

.brand { flex: 0 0 auto; text-decoration: none; }
.brand img { width: 176px; height: auto; }

.desktop-nav { display: none; align-items: center; gap: 1.35rem; }
.desktop-nav a {
  color: #dce9ef;
  font-size: .87rem;
  font-weight: 700;
  text-decoration: none;
}
.desktop-nav a:hover { color: var(--gold); }

.menu-button {
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  gap: .55rem;
  padding: .55rem .8rem;
  color: #fff;
  background: transparent;
  border: 1px solid #587385;
  border-radius: var(--radius-sm);
  font: inherit;
  font-size: .9rem;
  font-weight: 800;
  cursor: pointer;
}

.menu-icon, .menu-icon::before, .menu-icon::after {
  display: block;
  width: 18px;
  height: 2px;
  background: currentColor;
  border-radius: 2px;
  transition: transform .18s ease, opacity .18s ease;
}
.menu-icon { position: relative; }
.menu-icon::before, .menu-icon::after { content: ""; position: absolute; left: 0; }
.menu-icon::before { top: -6px; }
.menu-icon::after { top: 6px; }
.menu-button[aria-expanded="true"] .menu-icon { background: transparent; }
.menu-button[aria-expanded="true"] .menu-icon::before { top: 0; transform: rotate(45deg); }
.menu-button[aria-expanded="true"] .menu-icon::after { top: 0; transform: rotate(-45deg); }

.mobile-nav {
  width: min(var(--content), calc(100% - 2rem));
  margin-inline: auto;
  padding: .25rem 0 1rem;
  border-top: 1px solid var(--line-dark);
}
.mobile-nav[hidden] { display: none; }
.mobile-nav a {
  display: block;
  min-height: 44px;
  padding: .65rem .25rem;
  color: #e8f1f4;
  border-bottom: 1px solid rgba(143, 170, 184, .2);
  font-weight: 700;
  text-decoration: none;
}

.hero {
  position: relative;
  overflow: hidden;
  padding: clamp(3rem, 6vw, 6.5rem) 0 clamp(3.25rem, 6vw, 6rem);
  color: #f8fafc;
  background:
    radial-gradient(circle at 86% 8%, rgba(243, 182, 31, .13), transparent 25rem),
    linear-gradient(135deg, var(--navy), #0c3346 70%, #104255);
}
.hero::after {
  content: "";
  position: absolute;
  inset: auto -7rem -12rem auto;
  width: 28rem;
  height: 28rem;
  border: 1px solid rgba(255, 255, 255, .08);
  border-radius: 50%;
  box-shadow: 0 0 0 4rem rgba(255, 255, 255, .025), 0 0 0 8rem rgba(255, 255, 255, .02);
  pointer-events: none;
}
.hero-grid { display: grid; gap: var(--space-6); align-items: center; position: relative; z-index: 1; }
.eyebrow {
  margin: 0 0 .8rem;
  color: var(--teal);
  font-size: .76rem;
  font-weight: 900;
  letter-spacing: .14em;
  line-height: 1.3;
  text-transform: uppercase;
}
.hero .eyebrow { color: var(--gold); }
h1, h2, h3, .brand-name, .card-title {
  color: var(--ink);
  font-weight: 850;
  letter-spacing: -.03em;
  line-height: 1.12;
}
h1 {
  max-width: 850px;
  margin: 0;
  color: #fff;
  font-size: clamp(2.25rem, 6vw, 4.85rem);
  text-wrap: balance;
}
.lede { max-width: 760px; margin: 0 0 1rem; color: #f4f8fa; font-size: clamp(1.08rem, 2vw, 1.3rem); line-height: 1.6; }
.hero-copy > p:not(.eyebrow):not(.updated):not(.lede) { max-width: 790px; color: #c9d9e0; }
.hero strong { color: var(--gold); }
.hero-actions { display: flex; flex-wrap: wrap; gap: .8rem; margin-top: 1.75rem; }
.primary-action, .text-action {
  min-height: 48px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: .75rem 1.15rem;
  border-radius: var(--radius-sm);
  font-weight: 850;
  text-decoration: none;
}
.primary-action { color: var(--navy); background: var(--gold); }
.primary-action:hover { background: #ffca45; }
.text-action { color: #fff; border: 1px solid #6f8b9a; }
.text-action:hover { border-color: var(--gold); color: var(--gold); }

.verdict-card {
  position: relative;
  padding: 1.6rem;
  background: rgba(255, 255, 255, .06);
  border: 1px solid rgba(255, 255, 255, .18);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
}
.verdict-card::before { content: ""; position: absolute; inset: 0 0 auto; height: 5px; background: var(--gold); border-radius: var(--radius-lg) var(--radius-lg) 0 0; }
.verdict-card p { margin: 0; }
.verdict-kicker { color: #bdd0d9; font-size: .75rem; font-weight: 850; letter-spacing: .12em; text-transform: uppercase; }
.verdict-number { display: flex; align-items: baseline; gap: .55rem; margin-top: .5rem !important; color: #d6e5eb; font-weight: 800; }
.verdict-number span { color: var(--gold); font-size: 4.4rem; line-height: 1; }
.verdict-title { color: #fff; font-size: 1.3rem; font-weight: 850; }
.verdict-card p:last-child { margin-top: 1rem; color: #c9d9e0; font-size: .92rem; }

.evidence-strip { color: #fff; background: var(--navy); border-top: 1px solid var(--line-dark); }
.metric-grid { display: grid; grid-template-columns: repeat(2, 1fr); margin-block: 0; }
.metric-grid div { min-height: 92px; display: flex; flex-direction: column; justify-content: center; padding: 1rem; border-right: 1px solid var(--line-dark); border-bottom: 1px solid var(--line-dark); }
.metric-grid div:nth-child(2n) { border-right: 0; }
.metric-grid div:last-child { grid-column: 1 / -1; }
.metric-grid dd { order: -1; margin: 0; color: var(--gold); font-size: 1.55rem; font-weight: 800; line-height: 1.1; }
.metric-grid dt { margin-top: .25rem; color: #a9bfca; font-size: .74rem; font-weight: 700; line-height: 1.35; }

.content-shell { padding-block: 1rem var(--space-7); }
section[id] { scroll-margin-top: calc(var(--header-height) + 18px); }
.content-shell > section { padding: clamp(3.5rem, 7vw, 6.5rem) 0; border-bottom: 1px solid var(--line); }
.content-shell > section:last-child { border-bottom: 0; }
.content-shell p { margin-top: 0; }
.section-heading { width: 100%; margin-bottom: 1.2rem; }
h2 { margin: 0; font-size: clamp(2rem, 4.3vw, 3.35rem); text-wrap: balance; }
h3 { margin: 3.25rem 0 1rem; font-size: clamp(1.35rem, 2.8vw, 1.75rem); }

.notice, .info-card {
  display: flex;
  gap: .9rem;
  align-items: flex-start;
  margin: 1.5rem 0;
  padding: 1rem 1.15rem;
  border-radius: var(--radius);
}
.notice p, .info-card p { margin: 0; }
.notice span, .info-card > span {
  flex: 0 0 auto;
  min-width: 30px;
  height: 30px;
  display: inline-grid;
  place-items: center;
  border-radius: 50%;
  font-size: .78rem;
  font-weight: 900;
}
.notice-warning { color: #624a09; background: var(--gold-soft); border: 1px solid #ecd98b; }
.notice-warning span { color: var(--navy); background: var(--gold); }
.info-card { color: #155b56; background: var(--teal-soft); border-left: 4px solid var(--teal); }
.info-card > span { color: #fff; background: var(--teal); }
.info-card.danger { color: #742d2d; background: var(--red-soft); border-color: var(--red); }
.info-card.danger > span { min-width: 42px; color: #fff; background: var(--red); }

.operator-list { list-style: none; margin: 1.5rem 0 0; padding: 0; display: grid; gap: .75rem; }
.operator-list > li { min-width: 0; }
.operator-row {
  overflow: hidden;
  display: grid;
  grid-template-columns: minmax(0, 1fr) 88px;
  color: var(--ink-2);
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow-sm);
}
.operator-brand, .status-zone, .bonus-zone, .link-zone { min-width: 0; padding: .85rem; }
.operator-brand {
  min-height: 100px;
  display: grid;
  grid-template-columns: minmax(110px, 1fr);
  justify-items: center;
  justify-content: center;
  align-items: center;
  background: #f8fafb;
}
.operator-brand img { width: min(100%, 160px); height: 54px; margin-inline: auto; object-fit: contain; }
.operator-brand h3, .operator-brand .brand-name {
  margin: .35rem 0 0;
  color: var(--ink);
  font-size: .78rem;
  font-weight: 850;
  line-height: 1.2;
  letter-spacing: 0;
  text-align: center;
}
.status-zone {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: .2rem;
  border-left: 1px solid var(--line);
  margin: 0;
}
.status-mark {
  width: 50px;
  height: 50px;
  display: grid;
  place-items: center;
  color: #fff;
  background: var(--teal);
  border: 5px solid #bfe3dc;
  border-radius: 50%;
  font-size: 1.25rem;
  font-weight: 900;
}
.status-zone small, .bonus-zone small { color: var(--muted); font-size: .64rem; font-weight: 850; letter-spacing: .08em; text-transform: uppercase; }
.bonus-zone { grid-column: 1 / -1; margin: 0; background: #fff; border-top: 1px solid var(--line); }
.bonus-zone dd { margin: 0; color: var(--ink); font-size: .94rem; font-weight: 800; line-height: 1.45; }
.link-zone { grid-column: 1 / -1; padding-top: 0; }
.link-zone a {
  min-height: 42px;
  display: grid;
  place-items: center;
  padding: .6rem 1rem;
  color: var(--navy);
  background: var(--gold);
  border: 1px solid var(--gold);
  border-radius: var(--radius-sm);
  font-size: .78rem;
  font-weight: 850;
  text-decoration: none;
  transition: transform .18s ease, background-color .18s ease;
}
.link-zone a:hover { background: #ffc83b; transform: translateY(-1px); }
.post-list { margin-top: 2.75rem; }

.criteria-grid { display: grid; gap: 1rem; margin: 1.5rem 0; padding: 0; list-style: none; }
.criteria-grid > li {
  min-height: 190px;
  padding: 1.35rem;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow-sm);
}
.criteria-grid > li > span { color: var(--teal); font-size: .7rem; font-weight: 900; letter-spacing: .12em; }
.card-title { margin: .75rem 0 .55rem !important; font-size: 1.2rem; }
.criteria-grid > li p:last-child { margin: 0; color: var(--muted); font-size: .92rem; }

.check-list { margin: 1.25rem 0; padding: 0; list-style: none; }
.check-list li { position: relative; margin: .65rem 0; padding: .65rem .75rem .65rem 2.6rem; background: var(--paper); border: 1px solid var(--line); border-radius: var(--radius-sm); }
.check-list li::before { content: "✓"; position: absolute; left: .85rem; top: .63rem; color: var(--teal); font-weight: 900; }

.table-wrap { overflow-x: auto; margin: 1.5rem 0; border: 1px solid var(--line); border-radius: var(--radius); background: var(--paper); box-shadow: var(--shadow-sm); }
table { width: 100%; min-width: 650px; border-collapse: collapse; font-size: .88rem; line-height: 1.5; }
caption { padding: 1rem 1.1rem; color: var(--ink); background: #eaf0f2; border-bottom: 1px solid var(--line); font-weight: 850; text-align: left; }
th, td { padding: .85rem 1rem; border-bottom: 1px solid var(--line); vertical-align: top; text-align: left; }
thead th { color: #315469; background: #f7fafb; font-size: .7rem; letter-spacing: .07em; text-transform: uppercase; }
tbody th { color: var(--ink); font-weight: 400; white-space: nowrap; }
tbody tr:last-child th, tbody tr:last-child td { border-bottom: 0; }
tbody tr:hover { background: #fbfcfd; }

.method-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: .75rem; margin: 1.5rem 0; }
.method-grid div { min-height: 145px; display: flex; flex-direction: column; padding: 1rem; color: #fff; background: var(--navy-2); border-radius: var(--radius); }
.method-grid dt { color: #b9ced8; font-size: .72rem; font-weight: 850; letter-spacing: .08em; text-transform: uppercase; }
.method-grid dd { display: flex; flex-direction: column; margin: auto 0 0; }
.method-grid data { color: var(--gold); font-size: 2.4rem; font-weight: 850; line-height: 1.1; }
.method-grid small { margin-top: .35rem; color: #d5e3e8; line-height: 1.35; }

.steps-list { list-style: none; margin: 1.25rem 0; padding: 0; }
.steps-list li { display: grid; grid-template-columns: 38px 1fr; gap: .8rem; align-items: start; margin: .75rem 0; }
.steps-list li > span { width: 36px; height: 36px; display: grid; place-items: center; color: var(--navy); background: var(--gold); border-radius: 50%; font-weight: 900; }
.steps-list div { padding: .45rem .8rem .75rem; border-bottom: 1px solid var(--line); }

.source-note { margin-top: -.45rem; color: var(--muted); font-size: .84rem; }

.faq-list { display: grid; gap: .75rem; margin-top: 1.5rem; }
.faq-list details { background: var(--paper); border: 1px solid var(--line); border-radius: var(--radius); box-shadow: var(--shadow-sm); }
.faq-list summary { position: relative; min-height: 58px; display: flex; align-items: center; padding: 1rem 3rem 1rem 1.1rem; cursor: pointer; list-style: none; }
.faq-list summary::-webkit-details-marker { display: none; }
.faq-list summary::after { content: "+"; position: absolute; right: 1.1rem; top: 50%; translate: 0 -50%; color: var(--teal); font-size: 1.5rem; font-weight: 700; }
.faq-list details[open] summary::after { content: "–"; }
.faq-list h3 { margin: 0; font-size: 1rem; letter-spacing: -.01em; }
.faq-list details > p { margin: 0; padding: 0 1.1rem 1.15rem; color: var(--muted); }

.site-footer { color: #d9e5ea; background: var(--navy); }
.footer-grid { display: grid; gap: 2rem; padding: 3.25rem 0 2.5rem; }
.footer-grid img { width: 180px; height: auto; margin-bottom: .8rem; }
.footer-grid p { max-width: 390px; margin: 0; color: #a9bfca; font-size: .86rem; }
.footer-label { margin-bottom: .5rem !important; color: var(--gold) !important; font-size: .72rem !important; font-weight: 900; letter-spacing: .11em; text-transform: uppercase; }
.footer-trust { padding: 0 0 2rem; }
.footer-trust > ul { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: .6rem; margin: 0; padding: 0; list-style: none; }
.footer-trust a { min-height: 76px; display: grid; place-items: center; padding: .65rem; background: #17384a; border: 1px solid #426477; border-radius: var(--radius-sm); }
.footer-trust img { width: auto; max-width: 145px; height: 44px; object-fit: contain; filter: drop-shadow(0 0 1px rgba(255, 255, 255, .9)) drop-shadow(0 0 4px rgba(255, 255, 255, .22)); }
.footer-bottom { min-height: 62px; display: flex; justify-content: space-between; align-items: center; gap: 1rem; border-top: 1px solid var(--line-dark); color: #8fa8b4; font-size: .78rem; }
.footer-bottom a { min-height: 44px; display: inline-flex; align-items: center; color: #d9e5ea; font-weight: 800; }

@media (min-width: 560px) {
  .metric-grid { grid-template-columns: repeat(5, 1fr); }
  .metric-grid div, .metric-grid div:nth-child(2n) { border-right: 1px solid var(--line-dark); border-bottom: 0; }
  .metric-grid div:last-child { grid-column: auto; border-right: 0; }
  .operator-row { grid-template-columns: minmax(180px, 1fr) 100px minmax(0, 1.8fr); }
  .operator-brand { grid-row: 1 / 3; }
  .status-zone { grid-row: 1 / 3; }
  .bonus-zone { grid-column: 3; border-top: 0; border-left: 1px solid var(--line); }
  .link-zone { grid-column: 3; border-left: 1px solid var(--line); }
  .criteria-grid { grid-template-columns: repeat(3, 1fr); }
  .method-grid { grid-template-columns: repeat(4, 1fr); }
  .footer-trust > ul { grid-template-columns: repeat(3, minmax(0, 1fr)); }
}

@media (min-width: 760px) {
  .container, .header-inner, .mobile-nav { width: min(var(--content), calc(100% - 3rem)); }
  .hero-grid { grid-template-columns: minmax(0, 1.65fr) minmax(270px, .65fr); }
  .footer-grid { grid-template-columns: 1.2fr 1fr 1fr; }
}

@media (min-width: 1024px) {
  .desktop-nav { display: flex; }
  .menu-button, .mobile-nav { display: none !important; }
  .operator-row { grid-template-columns: 23% 12% 43% 22%; min-height: 112px; }
  .operator-brand, .status-zone, .bonus-zone, .link-zone { grid-row: auto; grid-column: auto; min-height: 112px; }
  .operator-brand { padding: 1rem; }
  .operator-brand img { height: 58px; }
  .operator-brand h3, .operator-brand .brand-name { margin-top: .25rem; }
  .status-zone, .bonus-zone, .link-zone { border-top: 0; border-left: 1px solid var(--line); }
  .bonus-zone, .link-zone { display: flex; flex-direction: column; justify-content: center; }
  .link-zone { padding: 1rem; }
  .link-zone a { min-height: 48px; }
}

@media (min-width: 1080px) {
  .footer-trust > ul { grid-template-columns: repeat(6, minmax(0, 1fr)); }
}

@media (min-width: 1240px) {
  .operator-brand img { width: min(100%, 176px); height: 62px; }
}

@media (max-width: 400px) {
  :root { --header-height: 68px; }
  .container, .header-inner, .mobile-nav { width: min(100% - 1.25rem, var(--content)); }
  .brand img { width: 150px; }
  .menu-button { padding-inline: .65rem; }
  .hero-actions { flex-direction: column; }
  .primary-action, .text-action { width: 100%; }
  .metric-grid div { padding: .8rem; }
  .metric-grid dd { font-size: 1.3rem; }
  .method-grid { grid-template-columns: 1fr; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { scroll-behavior: auto !important; transition-duration: .01ms !important; animation-duration: .01ms !important; animation-iteration-count: 1 !important; }
}

@media print {
  .risk-bar, .site-header, .hero-actions, .footer-bottom a { display: none; }
  body { color: #111; background: #fff; font-size: 11pt; }
  .hero, .evidence-strip, .site-footer { color: #111; background: #fff; }
  .hero h1, .hero strong, .metric-grid dd, .footer-label { color: #111 !important; }
  .verdict-card, .operator-row, .criteria-grid > li, .table-wrap { box-shadow: none; break-inside: avoid; }
  .content-shell > section { page-break-before: auto; }
}
