:root {
  --ink: #12162a;
  --ink-2: #1d2340;
  --ink-3: #2f375d;
  --paper: #f7f4ee;
  --paper-2: #fffdf9;
  --paper-3: #eee9df;
  --muted: #697086;
  --line: #dcd7cd;
  --accent: #ff855f;
  --accent-strong: #e75d35;
  --accent-soft: #ffe4d8;
  --teal: #1ca69a;
  --teal-soft: #dff5f1;
  --gold: #f1b84b;
  --success: #247a5c;
  --warning: #a86100;
  --danger: #a33c48;
  --white: #ffffff;
  --shadow-sm: 0 8px 24px rgba(18, 22, 42, 0.08);
  --shadow-md: 0 18px 50px rgba(18, 22, 42, 0.13);
  --radius-sm: 10px;
  --radius: 18px;
  --radius-lg: 28px;
  --container: 1180px;
  --header-height: 76px;
}

* {
  box-sizing: border-box;
}

[hidden] {
  display: none !important;
}

html {
  scroll-behavior: smooth;
  text-size-adjust: 100%;
  -webkit-text-size-adjust: 100%;
}

body {
  margin: 0;
  min-width: 320px;
  overflow-x: hidden;
  color: var(--ink);
  background: var(--paper);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}

body.nav-open {
  overflow: hidden;
}

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

button,
input,
select,
textarea {
  font: inherit;
}

button,
a {
  -webkit-tap-highlight-color: transparent;
}

a {
  color: var(--ink-3);
  text-decoration-thickness: 1.5px;
  text-underline-offset: 0.18em;
}

a:hover {
  color: var(--accent-strong);
}

:focus-visible {
  outline: 3px solid rgba(28, 166, 154, 0.48);
  outline-offset: 3px;
}

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

h1,
h2,
h3,
h4 {
  margin-top: 0;
  color: var(--ink);
  font-family: Georgia, "Times New Roman", serif;
  line-height: 1.08;
  text-wrap: balance;
}

h1 {
  font-size: clamp(2.65rem, 7vw, 5.55rem);
  letter-spacing: -0.055em;
}

h2 {
  font-size: clamp(2rem, 4.2vw, 3.55rem);
  letter-spacing: -0.035em;
}

h3 {
  font-size: clamp(1.35rem, 2.3vw, 1.9rem);
  letter-spacing: -0.02em;
}

p {
  margin-top: 0;
}

ul,
ol {
  padding-left: 1.3rem;
}

.container {
  width: min(calc(100% - 40px), var(--container));
  margin-inline: auto;
}

.narrow {
  width: min(calc(100% - 40px), 820px);
  margin-inline: auto;
}

.skip-link {
  position: fixed;
  z-index: 1000;
  top: 12px;
  left: 12px;
  padding: 10px 14px;
  color: var(--white);
  background: var(--ink);
  border-radius: 8px;
  transform: translateY(-160%);
}

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

.site-header {
  position: sticky;
  z-index: 100;
  top: 0;
  min-height: var(--header-height);
  border-bottom: 1px solid rgba(18, 22, 42, 0.09);
  background: rgba(247, 244, 238, 0.93);
  backdrop-filter: blur(18px);
}

.header-inner {
  display: flex;
  min-height: var(--header-height);
  align-items: center;
  justify-content: space-between;
  gap: 28px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  color: var(--ink);
  font-size: 1.15rem;
  font-weight: 820;
  letter-spacing: -0.03em;
  text-decoration: none;
}

.brand-mark {
  display: grid;
  width: 39px;
  height: 39px;
  place-items: center;
  overflow: hidden;
  color: var(--white);
  background:
    radial-gradient(circle at 28% 30%, var(--accent) 0 13%, transparent 14%),
    radial-gradient(circle at 70% 32%, var(--teal) 0 14%, transparent 15%),
    radial-gradient(circle at 58% 72%, var(--gold) 0 12%, transparent 13%),
    var(--ink);
  border-radius: 14px;
  box-shadow: 0 5px 18px rgba(18, 22, 42, 0.16);
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 4px;
}

.site-nav a {
  padding: 10px 13px;
  color: var(--ink-2);
  border-radius: 999px;
  font-size: 0.93rem;
  font-weight: 700;
  text-decoration: none;
}

.site-nav a:hover,
.site-nav a[aria-current="page"] {
  color: var(--ink);
  background: var(--paper-3);
}

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

.menu-toggle {
  display: none;
  width: 44px;
  height: 44px;
  padding: 0;
  place-items: center;
  color: var(--ink);
  background: var(--paper-2);
  border: 1px solid var(--line);
  border-radius: 50%;
  cursor: pointer;
}

.menu-toggle span,
.menu-toggle::before,
.menu-toggle::after {
  width: 19px;
  height: 2px;
  content: "";
  background: currentColor;
  border-radius: 2px;
  transition: transform 180ms ease, opacity 180ms ease;
}

.menu-toggle {
  position: relative;
}

.menu-toggle span {
  position: absolute;
}

.menu-toggle::before {
  position: absolute;
  transform: translateY(-6px);
}

.menu-toggle::after {
  position: absolute;
  transform: translateY(6px);
}

.menu-toggle[aria-expanded="true"] span {
  opacity: 0;
}

.menu-toggle[aria-expanded="true"]::before {
  transform: rotate(45deg);
}

.menu-toggle[aria-expanded="true"]::after {
  transform: rotate(-45deg);
}

.button,
.button-secondary,
.button-ghost,
.button-alert {
  display: inline-flex;
  min-height: 46px;
  align-items: center;
  justify-content: center;
  gap: 9px;
  padding: 11px 18px;
  border: 1px solid transparent;
  border-radius: 999px;
  font-size: 0.93rem;
  font-weight: 800;
  line-height: 1.2;
  text-decoration: none;
  cursor: pointer;
  transition: transform 160ms ease, box-shadow 160ms ease, background 160ms ease;
}

.button {
  color: var(--white);
  background: var(--ink);
  box-shadow: 0 8px 18px rgba(18, 22, 42, 0.18);
}

.button:hover {
  color: var(--white);
  background: var(--accent-strong);
  transform: translateY(-1px);
  box-shadow: 0 12px 26px rgba(231, 93, 53, 0.22);
}

.button-secondary {
  color: var(--ink);
  background: var(--accent);
}

.button-secondary:hover {
  color: var(--ink);
  background: #ff9a77;
  transform: translateY(-1px);
}

.button-ghost {
  color: var(--ink);
  background: transparent;
  border-color: var(--line);
}

.button-ghost:hover {
  color: var(--ink);
  background: var(--paper-3);
}

.button-alert {
  color: #0e514a;
  background: var(--teal-soft);
  border-color: rgba(28, 166, 154, 0.34);
}

.button-alert:hover {
  color: var(--white);
  background: var(--teal);
  border-color: var(--teal);
  transform: translateY(-1px);
}

.button[aria-disabled="true"],
.button:disabled,
.button-secondary:disabled {
  color: var(--muted);
  background: var(--paper-3);
  border-color: var(--line);
  box-shadow: none;
  cursor: not-allowed;
  transform: none;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 15px;
  color: var(--accent-strong);
  font-size: 0.76rem;
  font-weight: 850;
  letter-spacing: 0.12em;
  line-height: 1.2;
  text-transform: uppercase;
}

.eyebrow::before {
  width: 28px;
  height: 2px;
  content: "";
  background: currentColor;
}

.hero {
  position: relative;
  overflow: clip;
  padding: clamp(68px, 10vw, 130px) 0 72px;
}

.hero::before {
  position: absolute;
  z-index: -1;
  top: -180px;
  right: -150px;
  width: 540px;
  height: 540px;
  content: "";
  background:
    radial-gradient(circle at 30% 30%, rgba(255, 133, 95, 0.85), transparent 33%),
    radial-gradient(circle at 70% 60%, rgba(28, 166, 154, 0.72), transparent 34%),
    radial-gradient(circle at 44% 72%, rgba(241, 184, 75, 0.7), transparent 28%);
  border-radius: 50%;
  filter: blur(2px);
  opacity: 0.65;
}

.hero-grid {
  display: grid;
  align-items: end;
  gap: 52px;
  grid-template-columns: minmax(0, 1.45fr) minmax(280px, 0.72fr);
}

.hero h1 {
  max-width: 920px;
  margin-bottom: 26px;
}

.hero-lead {
  max-width: 730px;
  margin-bottom: 30px;
  color: var(--ink-3);
  font-size: clamp(1.08rem, 2vw, 1.3rem);
}

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

.hero-panel {
  padding: 26px;
  color: var(--white);
  background: var(--ink);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
}

.hero-panel .kicker {
  color: #c7d2ff;
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.hero-panel h2 {
  margin: 8px 0 15px;
  color: var(--white);
  font-size: 2rem;
}

.hero-panel p {
  color: #d8dcef;
}

.hero-panel ul {
  display: grid;
  gap: 9px;
  margin: 20px 0 0;
  padding: 0;
  list-style: none;
}

.hero-panel li {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  color: #f4f6ff;
}

.hero-panel li::before {
  width: 9px;
  height: 9px;
  margin-top: 0.5em;
  flex: 0 0 auto;
  content: "";
  background: var(--accent);
  border-radius: 50%;
}

.disclosure-strip {
  padding: 16px 0;
  color: var(--ink-2);
  background: var(--accent-soft);
  border-block: 1px solid rgba(231, 93, 53, 0.17);
  font-size: 0.9rem;
}

.disclosure-strip .container {
  display: flex;
  align-items: flex-start;
  gap: 12px;
}

.disclosure-icon {
  display: grid;
  width: 26px;
  height: 26px;
  flex: 0 0 auto;
  place-items: center;
  color: var(--white);
  background: var(--accent-strong);
  border-radius: 50%;
  font-size: 0.76rem;
  font-weight: 900;
}

.section {
  padding: clamp(70px, 9vw, 118px) 0;
}

.section-tight {
  padding: 55px 0;
}

.section-dark {
  color: var(--white);
  background: var(--ink);
}

.section-dark h2,
.section-dark h3 {
  color: var(--white);
}

.section-dark p {
  color: #d8dcef;
}

.section-heading {
  display: grid;
  align-items: end;
  gap: 30px;
  margin-bottom: 38px;
  grid-template-columns: minmax(0, 1.15fr) minmax(260px, 0.6fr);
}

.section-heading p {
  margin-bottom: 4px;
  color: var(--muted);
}

.section-heading h2 {
  margin-bottom: 0;
}

.card-grid {
  display: grid;
  gap: 22px;
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.editorial-card,
.info-card,
.guide-card,
.payment-card {
  position: relative;
  overflow: hidden;
  padding: 27px;
  background: var(--paper-2);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow-sm);
}

.editorial-card::after,
.guide-card::after {
  position: absolute;
  right: -44px;
  bottom: -44px;
  width: 120px;
  height: 120px;
  content: "";
  background: var(--teal-soft);
  border-radius: 50%;
  opacity: 0.7;
}

.card-number {
  display: inline-flex;
  width: 38px;
  height: 38px;
  align-items: center;
  justify-content: center;
  margin-bottom: 24px;
  color: var(--white);
  background: var(--ink);
  border-radius: 50%;
  font-size: 0.86rem;
  font-weight: 850;
}

.card-kicker {
  color: var(--accent-strong);
  font-size: 0.74rem;
  font-weight: 850;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

.guide-card {
  display: flex;
  min-height: 330px;
  flex-direction: column;
}

.guide-card h3 {
  margin: 15px 0 14px;
}

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

.guide-card .card-link {
  position: relative;
  z-index: 1;
  margin-top: auto;
  font-weight: 800;
}

.ranking-stack {
  display: grid;
  gap: 18px;
}

.operator-card {
  position: relative;
  display: grid;
  align-items: center;
  gap: 22px;
  padding: 24px;
  overflow: hidden;
  background: var(--paper-2);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow-sm);
  grid-template-columns: 42px 118px minmax(190px, 0.95fr) minmax(220px, 1.2fr) 132px 160px;
}

.operator-card.sponsored {
  border-color: rgba(255, 133, 95, 0.6);
  box-shadow: 0 14px 34px rgba(231, 93, 53, 0.1);
}

.operator-card.verified {
  border-left: 4px solid var(--teal);
}

.operator-card.launch-watch {
  border-left: 4px solid var(--accent);
}

.operator-card.availability-watch {
  border-left: 4px solid var(--gold);
}

.rank-number {
  color: var(--ink);
  font-family: Georgia, serif;
  font-size: 1.55rem;
  font-weight: 700;
  text-align: center;
}

.operator-logo-wrap {
  display: grid;
  width: 112px;
  min-height: 78px;
  place-items: center;
  padding: 12px;
  background: var(--ink);
  border-radius: 16px;
}

.operator-logo-wrap img {
  width: 100%;
  max-height: 52px;
  object-fit: contain;
}

.operator-main h3 {
  margin: 0 0 5px;
  font-family: Inter, ui-sans-serif, system-ui, sans-serif;
  font-size: 1.2rem;
  font-weight: 850;
  letter-spacing: -0.03em;
}

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

.operator-main p {
  margin-bottom: 0;
  color: var(--muted);
  font-size: 0.9rem;
}

.badge-row {
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
  margin-bottom: 9px;
}

.badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 5px 9px;
  color: var(--ink-2);
  background: var(--paper-3);
  border: 1px solid rgba(18, 22, 42, 0.08);
  border-radius: 999px;
  font-size: 0.68rem;
  font-weight: 850;
  letter-spacing: 0.055em;
  line-height: 1;
  text-transform: uppercase;
}

.badge-sponsored {
  color: #7d310d;
  background: var(--accent-soft);
  border-color: rgba(231, 93, 53, 0.22);
}

.badge-verified {
  color: #115b51;
  background: var(--teal-soft);
  border-color: rgba(28, 166, 154, 0.2);
}

.badge-launch {
  color: #7d310d;
  background: var(--accent-soft);
  border-color: rgba(231, 93, 53, 0.22);
}

.badge-watch {
  color: #6f4b0b;
  background: #fff1c7;
  border-color: rgba(241, 184, 75, 0.38);
}

.offer-block {
  min-width: 0;
}

.offer-block strong {
  display: block;
  margin-bottom: 5px;
  color: var(--ink);
  line-height: 1.35;
}

.offer-block span {
  color: var(--muted);
  font-size: 0.82rem;
}

.score-box {
  padding: 13px 12px;
  background: var(--paper);
  border-radius: 14px;
  text-align: center;
}

.score-number {
  display: block;
  color: var(--ink);
  font-family: Georgia, serif;
  font-size: 2rem;
  font-weight: 700;
  line-height: 1;
}

.score-box small {
  color: var(--muted);
  font-size: 0.72rem;
  font-weight: 750;
}

.operator-actions {
  display: grid;
  gap: 9px;
}

.operator-actions .button,
.operator-actions .button-ghost,
.operator-actions .button-alert {
  width: 100%;
  min-height: 43px;
  padding-inline: 12px;
  font-size: 0.82rem;
}

.filters {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 28px;
  padding: 16px;
  background: var(--paper-2);
  border: 1px solid var(--line);
  border-radius: 16px;
}

.filter-button {
  padding: 9px 14px;
  color: var(--ink-2);
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 999px;
  font-size: 0.82rem;
  font-weight: 800;
  cursor: pointer;
}

.filter-button:hover,
.filter-button[aria-pressed="true"] {
  color: var(--white);
  background: var(--ink);
  border-color: var(--ink);
}

.filter-count {
  margin-left: auto;
  align-self: center;
  color: var(--muted);
  font-size: 0.83rem;
}

.trust-grid {
  display: grid;
  gap: 0;
  overflow: hidden;
  background: var(--paper-2);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  grid-template-columns: repeat(3, 1fr);
}

.trust-cell {
  padding: 35px;
  border-right: 1px solid var(--line);
}

.trust-cell:last-child {
  border-right: 0;
}

.trust-cell strong {
  display: block;
  margin-bottom: 8px;
  font-family: Georgia, serif;
  font-size: 2rem;
}

.trust-cell span {
  color: var(--muted);
}

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

.category-card {
  display: flex;
  min-height: 205px;
  flex-direction: column;
  padding: 23px;
  color: var(--white);
  background: var(--ink-2);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--radius);
  text-decoration: none;
  transition: transform 180ms ease, background 180ms ease;
}

.category-card:nth-child(2n) {
  background: #26385c;
}

.category-card:hover {
  color: var(--white);
  background: var(--accent-strong);
  transform: translateY(-4px);
}

.category-card span {
  color: #d6dbf2;
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.category-card strong {
  margin-top: auto;
  font-family: Georgia, serif;
  font-size: 1.45rem;
  line-height: 1.15;
}

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

.page-hero-grid {
  display: grid;
  align-items: end;
  gap: 35px;
  grid-template-columns: minmax(0, 1.35fr) minmax(280px, 0.55fr);
}

.page-hero h1 {
  max-width: 900px;
  margin-bottom: 20px;
  font-size: clamp(2.5rem, 6vw, 4.9rem);
}

.page-hero p {
  max-width: 770px;
  color: var(--ink-3);
  font-size: 1.13rem;
}

.hero-note {
  padding: 23px;
  background: var(--paper-2);
  border: 1px solid var(--line);
  border-radius: var(--radius);
}

.hero-note strong {
  display: block;
  margin-bottom: 8px;
}

.hero-note p {
  margin: 0;
  color: var(--muted);
  font-size: 0.9rem;
}

.breadcrumbs {
  padding: 20px 0 0;
}

.breadcrumbs ol {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.breadcrumbs li {
  color: var(--muted);
  font-size: 0.78rem;
}

.breadcrumbs li:not(:last-child)::after {
  margin-left: 8px;
  content: "/";
  color: #a7a9b2;
}

.breadcrumbs a {
  color: var(--muted);
}

.criteria-list {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.criteria-list li {
  padding: 9px 13px;
  background: var(--teal-soft);
  border-radius: 999px;
  font-size: 0.82rem;
  font-weight: 750;
}

.review-hero {
  padding: 55px 0 48px;
}

.review-hero-card {
  display: grid;
  align-items: center;
  gap: 38px;
  padding: 36px;
  color: var(--white);
  background:
    radial-gradient(circle at 88% 15%, rgba(255, 133, 95, 0.35), transparent 30%),
    radial-gradient(circle at 72% 90%, rgba(28, 166, 154, 0.28), transparent 35%),
    var(--ink);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
  grid-template-columns: 190px minmax(0, 1fr) 210px;
}

.review-hero-logo {
  display: grid;
  min-height: 135px;
  place-items: center;
  padding: 22px;
  background: rgba(255, 255, 255, 0.07);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 22px;
}

.review-hero-logo img {
  max-height: 78px;
}

.review-hero h1 {
  margin: 8px 0 13px;
  color: var(--white);
  font-size: clamp(2.3rem, 5vw, 4.3rem);
}

.review-hero p {
  margin: 0;
  color: #d8dcef;
}

.review-score {
  padding: 24px;
  color: var(--ink);
  background: var(--paper-2);
  border-radius: 20px;
  text-align: center;
}

.review-score .score-number {
  font-size: 3.25rem;
}

.stars {
  display: block;
  margin: 8px 0 4px;
  color: var(--gold);
  font-size: 1rem;
  letter-spacing: 0.08em;
}

.review-layout {
  display: grid;
  align-items: start;
  gap: 38px;
  grid-template-columns: minmax(0, 1fr) 310px;
}

.article-content {
  min-width: 0;
}

.article-content > section {
  padding: 0 0 42px;
  margin-bottom: 42px;
  border-bottom: 1px solid var(--line);
}

.article-content > section:last-child {
  border-bottom: 0;
}

.article-content h2 {
  margin-bottom: 20px;
  font-size: clamp(1.85rem, 4vw, 2.8rem);
}

.article-content h3 {
  margin-top: 30px;
}

.article-content p,
.article-content li {
  color: var(--ink-3);
  font-size: 1.02rem;
}

.article-content a {
  font-weight: 700;
}

.sidebar {
  position: sticky;
  top: calc(var(--header-height) + 24px);
  display: grid;
  gap: 18px;
}

.sidebar-card {
  padding: 23px;
  background: var(--paper-2);
  border: 1px solid var(--line);
  border-radius: var(--radius);
}

.sidebar-card h3 {
  margin-bottom: 16px;
  font-family: Inter, ui-sans-serif, system-ui, sans-serif;
  font-size: 1rem;
  font-weight: 850;
}

.fact-list {
  display: grid;
  gap: 13px;
  margin: 0;
}

.fact-row {
  display: grid;
  gap: 2px;
  padding-bottom: 12px;
  border-bottom: 1px solid var(--line);
}

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

.fact-row dt {
  color: var(--muted);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.fact-row dd {
  margin: 0;
  color: var(--ink-2);
  font-size: 0.89rem;
  font-weight: 700;
}

.pros-cons {
  display: grid;
  gap: 18px;
  grid-template-columns: 1fr 1fr;
}

.pros,
.cons {
  padding: 25px;
  background: var(--paper-2);
  border: 1px solid var(--line);
  border-radius: var(--radius);
}

.pros h3,
.cons h3 {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: Inter, ui-sans-serif, system-ui, sans-serif;
  font-size: 1rem;
  font-weight: 850;
}

.pros h3::before,
.cons h3::before {
  display: grid;
  width: 27px;
  height: 27px;
  place-items: center;
  color: var(--white);
  border-radius: 50%;
  font-size: 0.78rem;
}

.pros h3::before {
  content: "+";
  background: var(--success);
}

.cons h3::before {
  content: "–";
  background: var(--danger);
}

.pros ul,
.cons ul {
  margin-bottom: 0;
  padding-left: 1.15rem;
}

.rating-grid {
  display: grid;
  gap: 13px;
}

.rating-row {
  display: grid;
  align-items: center;
  gap: 12px;
  grid-template-columns: 150px 1fr 42px;
}

.rating-label {
  font-size: 0.85rem;
  font-weight: 750;
}

.rating-track {
  height: 10px;
  overflow: hidden;
  background: var(--paper-3);
  border-radius: 999px;
}

.rating-fill {
  height: 100%;
  background: linear-gradient(90deg, var(--teal), var(--accent));
  border-radius: inherit;
}

.rating-value {
  font-size: 0.84rem;
  font-weight: 850;
  text-align: right;
}

.source-list {
  display: grid;
  gap: 11px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.source-list li {
  padding: 13px;
  background: var(--paper-2);
  border: 1px solid var(--line);
  border-radius: 12px;
  font-size: 0.86rem;
}

.source-list small {
  display: block;
  margin-top: 4px;
  color: var(--muted);
}

.cta-panel {
  display: grid;
  align-items: center;
  gap: 28px;
  padding: 32px;
  color: var(--white);
  background: var(--ink-2);
  border-radius: var(--radius-lg);
  grid-template-columns: minmax(0, 1fr) auto;
}

.cta-panel h2,
.cta-panel h3 {
  margin-bottom: 10px;
  color: var(--white);
}

.cta-panel p {
  margin: 0;
  color: #d8dcef;
}

.faq-list {
  display: grid;
  gap: 12px;
}

.faq-item {
  overflow: hidden;
  background: var(--paper-2);
  border: 1px solid var(--line);
  border-radius: 14px;
}

.faq-question {
  display: flex;
  width: 100%;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 19px 21px;
  color: var(--ink);
  background: transparent;
  border: 0;
  font-weight: 820;
  text-align: left;
  cursor: pointer;
}

.faq-question::after {
  display: grid;
  width: 25px;
  height: 25px;
  flex: 0 0 auto;
  place-items: center;
  content: "+";
  color: var(--ink);
  background: var(--paper-3);
  border-radius: 50%;
}

.faq-question[aria-expanded="true"]::after {
  content: "–";
}

.faq-answer {
  padding: 0 21px 19px;
  color: var(--ink-3);
}

.faq-answer[hidden] {
  display: none;
}

.table-wrap {
  width: 100%;
  overflow-x: auto;
  background: var(--paper-2);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  -webkit-overflow-scrolling: touch;
}

table {
  width: 100%;
  border-collapse: collapse;
  min-width: 760px;
}

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

th {
  color: var(--muted);
  background: #f2efe8;
  font-size: 0.72rem;
  font-weight: 850;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

td {
  color: var(--ink-3);
  font-size: 0.88rem;
}

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

.comparison-picker {
  display: grid;
  gap: 12px;
  margin-bottom: 28px;
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.compare-option {
  position: relative;
}

.compare-option input {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}

.compare-option label {
  display: flex;
  min-height: 82px;
  align-items: center;
  gap: 12px;
  padding: 13px;
  background: var(--paper-2);
  border: 1px solid var(--line);
  border-radius: 14px;
  cursor: pointer;
}

.compare-option input:checked + label {
  background: var(--teal-soft);
  border-color: var(--teal);
  box-shadow: inset 0 0 0 1px var(--teal);
}

.compare-option input:focus-visible + label {
  outline: 3px solid rgba(28, 166, 154, 0.35);
  outline-offset: 3px;
}

.compare-option input:disabled + label {
  opacity: 0.45;
  cursor: not-allowed;
}

.compare-option img {
  width: 62px;
  height: 46px;
  object-fit: contain;
  padding: 7px;
  background: var(--ink);
  border-radius: 10px;
}

.compare-option strong {
  display: block;
  line-height: 1.2;
}

.compare-option small {
  color: var(--muted);
}

.compare-status {
  margin: -12px 0 18px;
  color: var(--muted);
  font-size: 0.86rem;
}

.payment-grid {
  display: grid;
  gap: 20px;
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.payment-card h3 {
  margin-bottom: 6px;
}

.payment-card .examples {
  margin-bottom: 18px;
  color: var(--accent-strong);
  font-size: 0.86rem;
  font-weight: 800;
}

.payment-facts {
  display: grid;
  gap: 12px;
}

.payment-facts div {
  padding-top: 12px;
  border-top: 1px solid var(--line);
}

.payment-facts strong {
  display: block;
  color: var(--muted);
  font-size: 0.7rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.article-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 12px 20px;
  margin-top: 20px;
  color: var(--muted);
  font-size: 0.82rem;
}

.guide-index {
  display: grid;
  gap: 20px;
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.guide-index .guide-card {
  min-height: 285px;
}

.callout {
  padding: 23px;
  margin: 25px 0;
  background: var(--teal-soft);
  border-left: 4px solid var(--teal);
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
}

.callout.warning {
  background: var(--accent-soft);
  border-left-color: var(--accent-strong);
}

.callout strong {
  display: block;
  margin-bottom: 5px;
}

.methodology-table {
  display: grid;
  gap: 10px;
}

.methodology-row {
  display: grid;
  align-items: center;
  gap: 18px;
  padding: 18px;
  background: var(--paper-2);
  border: 1px solid var(--line);
  border-radius: 14px;
  grid-template-columns: 190px 80px minmax(0, 1fr);
}

.methodology-row strong {
  line-height: 1.25;
}

.methodology-weight {
  color: var(--accent-strong);
  font-size: 1.15rem;
  font-weight: 900;
}

.methodology-row span:last-child {
  color: var(--muted);
  font-size: 0.88rem;
}

.contact-form {
  display: grid;
  gap: 17px;
  padding: 28px;
  background: var(--paper-2);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow-sm);
}

.form-grid {
  display: grid;
  gap: 16px;
  grid-template-columns: 1fr 1fr;
}

.form-field {
  display: grid;
  gap: 7px;
}

.form-field label {
  font-size: 0.82rem;
  font-weight: 800;
}

.form-field input,
.form-field select,
.form-field textarea {
  width: 100%;
  padding: 12px 13px;
  color: var(--ink);
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 10px;
}

.form-field textarea {
  min-height: 170px;
  resize: vertical;
}

.form-error {
  min-height: 1.2em;
  color: var(--danger);
  font-size: 0.76rem;
}

.form-status {
  min-height: 1.4em;
  margin: 0;
  color: var(--success);
  font-size: 0.86rem;
  font-weight: 700;
}

.responsible-banner {
  padding: 25px;
  color: var(--white);
  background: #202944;
  border-radius: var(--radius);
}

.responsible-banner strong {
  display: block;
  margin-bottom: 7px;
  color: var(--white);
  font-family: Georgia, serif;
  font-size: 1.35rem;
}

.responsible-banner p {
  margin-bottom: 12px;
  color: #d8dcef;
}

.site-footer {
  padding: 58px 0 25px;
  color: #d8dcef;
  background: #0d1122;
}

.footer-grid {
  display: grid;
  gap: 40px;
  padding-bottom: 40px;
  grid-template-columns: minmax(260px, 1.1fr) repeat(2, minmax(170px, 0.55fr));
}

.footer-brand {
  color: var(--white);
}

.footer-brand .brand-mark {
  box-shadow: none;
}

.footer-about {
  max-width: 520px;
  margin-top: 18px;
  color: #abb2cb;
}

.footer-heading {
  margin-bottom: 15px;
  color: var(--white);
  font-size: 0.78rem;
  font-weight: 850;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

.footer-links {
  display: grid;
  gap: 8px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.footer-links a {
  color: #c9cee0;
  font-size: 0.89rem;
  text-decoration: none;
}

.footer-links a:hover {
  color: var(--accent);
}

.footer-legal {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 30px;
  padding-top: 25px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  color: #939bb6;
  font-size: 0.76rem;
}

.footer-legal p {
  margin: 0;
}

.footer-address {
  font-style: normal;
}

.not-found {
  display: grid;
  min-height: calc(100vh - var(--header-height));
  place-items: center;
  padding: 60px 0;
}

.not-found-card {
  max-width: 720px;
  padding: clamp(30px, 6vw, 60px);
  background: var(--paper-2);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
  text-align: center;
}

.not-found-code {
  display: block;
  margin-bottom: 18px;
  color: var(--accent-strong);
  font-family: Georgia, serif;
  font-size: clamp(4.5rem, 15vw, 9rem);
  font-weight: 700;
  line-height: 0.75;
}

.redirect-page {
  display: grid;
  min-height: 100vh;
  place-items: center;
  padding: 30px;
  background: var(--paper);
}

.redirect-card {
  width: min(100%, 540px);
  padding: 38px;
  background: var(--paper-2);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
  text-align: center;
}

.redirect-logo {
  display: grid;
  width: 150px;
  min-height: 90px;
  place-items: center;
  padding: 14px;
  margin: 0 auto 24px;
  background: var(--ink);
  border-radius: 18px;
}

.redirect-logo img {
  max-height: 58px;
}

.redirect-progress {
  height: 7px;
  margin: 22px 0;
  overflow: hidden;
  background: var(--paper-3);
  border-radius: 999px;
}

.redirect-progress span {
  display: block;
  width: 35%;
  height: 100%;
  background: linear-gradient(90deg, var(--teal), var(--accent));
  border-radius: inherit;
  animation: loading 1.4s ease-in-out infinite alternate;
}

@keyframes loading {
  to { transform: translateX(185%); }
}

.print-only {
  display: none;
}

@media (max-width: 1080px) {
  .operator-card {
    grid-template-columns: 40px 100px minmax(180px, 1fr) minmax(200px, 1fr) 115px;
  }

  .operator-actions {
    grid-column: 3 / -1;
    grid-template-columns: 1fr 1fr;
  }

  .category-cards {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .comparison-picker {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

@media (max-width: 900px) {
  :root {
    --header-height: 68px;
  }

  .container,
  .narrow {
    width: min(calc(100% - 30px), var(--container));
  }

  .site-nav {
    position: fixed;
    inset: var(--header-height) 0 auto 0;
    display: none;
    max-height: calc(100vh - var(--header-height));
    overflow-y: auto;
    align-items: stretch;
    flex-direction: column;
    gap: 4px;
    padding: 18px 15px 25px;
    background: var(--paper);
    border-bottom: 1px solid var(--line);
    box-shadow: var(--shadow-md);
  }

  .site-nav.open {
    display: flex;
  }

  .site-nav a {
    padding: 13px 15px;
    border-radius: 12px;
  }

  .menu-toggle {
    display: grid;
  }

  .header-actions .button-ghost {
    display: none;
  }

  .hero-grid,
  .page-hero-grid,
  .section-heading,
  .review-layout {
    grid-template-columns: 1fr;
  }

  .hero {
    padding-top: 72px;
  }

  .hero-panel {
    max-width: 620px;
  }

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

  .operator-card {
    align-items: start;
    grid-template-columns: 38px 95px minmax(0, 1fr) 110px;
  }

  .offer-block {
    grid-column: 3 / -1;
  }

  .operator-actions {
    grid-column: 3 / -1;
  }

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

  .trust-cell {
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .trust-cell:last-child {
    border-bottom: 0;
  }

  .review-hero-card {
    grid-template-columns: 150px minmax(0, 1fr);
  }

  .review-score {
    grid-column: 1 / -1;
  }

  .sidebar {
    position: static;
    grid-template-columns: 1fr 1fr;
  }

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

  .methodology-row {
    grid-template-columns: 150px 65px minmax(0, 1fr);
  }
}

@media (max-width: 680px) {
  h1 {
    font-size: clamp(2.45rem, 14vw, 4rem);
  }

  .header-inner {
    gap: 12px;
  }

  .brand {
    font-size: 1.05rem;
  }

  .brand-mark {
    width: 36px;
    height: 36px;
  }

  .hero::before {
    right: -320px;
  }

  .hero-actions,
  .cta-panel {
    align-items: stretch;
    grid-template-columns: 1fr;
  }

  .hero-actions .button,
  .hero-actions .button-ghost,
  .cta-panel .button,
  .cta-panel .button-secondary {
    width: 100%;
  }

  .disclosure-strip .container {
    align-items: flex-start;
  }

  .card-grid,
  .guide-index,
  .payment-grid,
  .pros-cons,
  .form-grid,
  .sidebar {
    grid-template-columns: 1fr;
  }

  .operator-card {
    gap: 14px;
    padding: 18px;
    grid-template-columns: 34px 76px minmax(0, 1fr);
  }

  .operator-logo-wrap {
    width: 74px;
    min-height: 62px;
    padding: 9px;
    border-radius: 12px;
  }

  .operator-main {
    min-width: 0;
  }

  .score-box {
    grid-column: 2 / -1;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
    padding: 10px 13px;
    text-align: left;
  }

  .score-number {
    font-size: 1.55rem;
  }

  .offer-block,
  .operator-actions {
    grid-column: 1 / -1;
  }

  .operator-actions {
    grid-template-columns: 1fr;
  }

  .filter-count {
    width: 100%;
    margin-left: 0;
  }

  .category-cards {
    grid-template-columns: 1fr 1fr;
  }

  .category-card {
    min-height: 170px;
  }

  .review-hero-card {
    padding: 24px;
    grid-template-columns: 1fr;
  }

  .review-hero-logo {
    width: min(100%, 220px);
  }

  .review-score {
    grid-column: auto;
  }

  .rating-row {
    gap: 8px;
    grid-template-columns: 112px 1fr 34px;
  }

  .comparison-picker {
    grid-template-columns: 1fr;
  }

  .methodology-row {
    gap: 7px;
    grid-template-columns: 1fr auto;
  }

  .methodology-row span:last-child {
    grid-column: 1 / -1;
  }

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

  .footer-legal {
    flex-direction: column;
  }
}

@media (max-width: 430px) {
  .container,
  .narrow {
    width: min(calc(100% - 24px), var(--container));
  }

  .header-actions .button-secondary {
    display: none;
  }

  .category-cards {
    grid-template-columns: 1fr;
  }

  .page-hero,
  .review-hero {
    padding-top: 42px;
  }

  .page-hero h1 {
    font-size: 2.55rem;
  }

  .article-content p,
  .article-content li {
    font-size: 0.98rem;
  }

  .cta-panel,
  .contact-form {
    padding: 23px;
  }
}

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

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

@media print {
  .site-header,
  .site-footer,
  .hero-actions,
  .operator-actions,
  .filters,
  .cta-panel,
  .disclosure-strip {
    display: none !important;
  }

  body {
    color: #000;
    background: #fff;
  }

  .print-only {
    display: block;
  }

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

  .sidebar {
    position: static;
  }
}
