:root {
  --ink: #111633;
  --indigo: #222567;
  --indigo-deep: #11143f;
  --indigo-soft: #e9eafd;
  --amber: #f4ad28;
  --amber-dark: #8a5500;
  --white: #fff;
  --paper: #f7f7fc;
  --muted: #60657a;
  --good: #176b4d;
  --danger: #a43a3a;
  --shadow: 0 18px 48px rgba(26, 27, 76, .14);
  --radius: 22px;
  --container: 1184px;
}

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

html { scroll-behavior: smooth; }

body {
  margin: 0;
  color: var(--ink);
  background-color: var(--paper);
  background-image:
    linear-gradient(135deg, rgba(34, 37, 103, .035) 25%, transparent 25%),
    linear-gradient(315deg, rgba(34, 37, 103, .035) 25%, transparent 25%);
  background-position: 0 0, 18px 18px;
  background-size: 36px 36px;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 16px;
  line-height: 1.65;
  padding-bottom: 0;
}

img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; position: relative; }
a:not(.button, .brand, .nav-link, .skip-link)::after {
  background: currentColor;
  bottom: -2px;
  content: "";
  height: 1px;
  left: 0;
  position: absolute;
  transform: scaleX(0);
  transform-origin: right;
  transition: transform .22s ease;
  width: 100%;
}
a:not(.button, .brand, .nav-link, .skip-link):hover::after,
a:not(.button, .brand, .nav-link, .skip-link):focus-visible::after {
  transform: scaleX(1);
  transform-origin: left;
}

button, input, textarea { font: inherit; }
button { cursor: pointer; }

h1, h2, h3, p { margin-top: 0; }
h1, h2, h3 {
  line-height: 1.08;
  letter-spacing: -.035em;
}
h1 { font-size: clamp(2.55rem, 6vw, 5.7rem); max-width: 14ch; }
h2 { font-size: clamp(2rem, 4vw, 3.55rem); max-width: 18ch; }
h3 { font-size: 1.3rem; }
p { max-width: 72ch; }

:focus-visible { outline: 3px solid var(--amber); outline-offset: 3px; }

.skip-link {
  background: var(--white);
  color: var(--indigo);
  left: 1rem;
  padding: .75rem 1rem;
  position: fixed;
  top: -5rem;
  z-index: 100;
}
.skip-link:focus { top: 1rem; }

.container { margin-inline: auto; max-width: var(--container); padding-inline: 24px; }
.narrow { margin-inline: auto; max-width: 820px; }
.stack { display: flex; flex-direction: column; gap: var(--gap, 24px); }
.cluster { align-items: center; display: flex; flex-wrap: wrap; gap: var(--gap, 12px); }
.grid { display: grid; gap: var(--gap, 24px); }
.grid-2 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
.grid-3 { grid-template-columns: repeat(3, minmax(0, 1fr)); }
.full-span { grid-column: 1 / -1; }
.muted { color: var(--muted); }
.small { font-size: .875rem; }
.center { text-align: center; }
.center > * { margin-inline: auto; }
.surface { background: var(--white); }
.soft { background: var(--indigo-soft); }

.kicker,
.eyebrow {
  color: var(--amber-dark);
  font-size: .72rem;
  font-weight: 900;
  letter-spacing: .16em;
  text-transform: uppercase;
}

.section {
  padding-block: clamp(64px, 9vw, 112px);
  position: relative;
}
.section:nth-of-type(even) .section-panel { margin-left: clamp(0px, 3vw, 40px); }
.section:nth-of-type(odd) .section-panel { margin-right: clamp(0px, 3vw, 40px); }
.section-panel {
  border-radius: var(--radius);
  padding: clamp(24px, 5vw, 64px);
}
.motif-divider {
  color: var(--amber);
  display: grid;
  font-size: 1.1rem;
  place-items: center;
  position: relative;
}
.motif-divider::before,
.motif-divider::after {
  background: rgba(34, 37, 103, .13);
  content: "";
  height: 1px;
  position: absolute;
  width: calc(50% - 28px);
}
.motif-divider::before { left: 0; }
.motif-divider::after { right: 0; }

.site-header {
  left: 0;
  padding: 18px 0;
  position: sticky;
  right: 0;
  top: 0;
  transition: padding .25s ease, background-color .25s ease;
  z-index: 50;
}
.site-header.is-compact {
  background: rgba(247, 247, 252, .92);
  backdrop-filter: blur(14px);
  padding-block: 9px;
}
.nav-shell {
  align-items: center;
  background: rgba(255, 255, 255, .94);
  border-radius: 999px;
  box-shadow: 0 12px 36px rgba(17, 20, 63, .14);
  display: flex;
  gap: 22px;
  justify-content: space-between;
  min-height: 64px;
  padding: 8px 12px 8px 18px;
}
.brand {
  align-items: center;
  display: inline-flex;
  flex: 0 0 auto;
  font-size: 1.08rem;
  font-weight: 900;
  gap: 10px;
  letter-spacing: -.03em;
}
.brand-mark { height: 38px; width: 38px; }
.nav-links { display: flex; gap: 6px; }
.nav-link {
  border-radius: 999px;
  font-size: .82rem;
  font-weight: 800;
  padding: 9px 13px;
}
.nav-link:hover,
.nav-link[aria-current="page"] { background: var(--indigo-soft); color: var(--indigo); }

.hero {
  color: var(--white);
  isolation: isolate;
  margin-top: -100px;
  min-height: 760px;
  padding: 190px 0 96px;
  position: relative;
}
.hero::before {
  background: linear-gradient(90deg, rgba(7, 9, 38, .93) 0%, rgba(17, 20, 63, .82) 55%, rgba(17, 20, 63, .52) 100%), var(--hero-image) center / cover;
  content: "";
  inset: 0;
  position: absolute;
  z-index: -2;
}
.hero::after {
  background: linear-gradient(180deg, transparent 75%, var(--paper));
  content: "";
  inset: 0;
  position: absolute;
  z-index: -1;
}
.hero p { color: #e4e6ff; font-size: 1.12rem; }
.hero .eyebrow { color: #ffd681; }
.hero-inner { align-items: center; display: grid; gap: 48px; grid-template-columns: 1.25fr .75fr; }
.hero-proof {
  background: rgba(255, 255, 255, .1);
  border-radius: 26px;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, .2);
  padding: 28px;
}
.hero-proof strong { display: block; font-size: 2.3rem; font-variant-numeric: tabular-nums; }
.hero-proof span { color: #dadcf6; font-size: .9rem; }

.button {
  align-items: center;
  border: 0;
  border-radius: 9px;
  display: inline-flex;
  font-size: .74rem;
  font-weight: 900;
  justify-content: center;
  letter-spacing: .13em;
  min-height: 44px;
  padding: 11px 22px;
  text-align: center;
  text-transform: uppercase;
  transition: filter .2s ease, transform .2s ease;
}
.button:hover { filter: brightness(1.06); transform: translateY(-1px); }
.button-primary { background: linear-gradient(135deg, #ffd46b, var(--amber)); color: #332000; }
.button-secondary { background: var(--indigo); color: var(--white); }
.button-quiet { background: #ececf7; color: var(--indigo); }
.button-wide { width: 100%; }

.badge {
  background: #edeefa;
  border-radius: 5px;
  color: var(--indigo);
  display: inline-flex;
  font-size: .66rem;
  font-weight: 900;
  letter-spacing: .11em;
  padding: 5px 8px;
  text-transform: uppercase;
}
.hero .badge { background: rgba(255, 255, 255, .13); color: var(--white); }

.trust-strip {
  background: linear-gradient(125deg, var(--indigo-deep), var(--indigo));
  border-radius: 24px;
  box-shadow: var(--shadow);
  color: var(--white);
  margin-top: -58px;
  padding: 28px;
  position: relative;
  z-index: 4;
}
.trust-strip p { color: #dddff8; margin: 0; }
.trust-item { border-left: 3px solid var(--amber); padding-left: 16px; }

.card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 28px;
  transition: border-color .2s ease, box-shadow .2s ease, transform .2s ease;
}
.card:hover { box-shadow: var(--shadow); outline: 1px solid rgba(34, 37, 103, .12); transform: translateY(-2px); }
.operator-card { display: flex; flex-direction: column; min-height: 100%; }
.operator-logo-wrap {
  align-items: center;
  background: #f2f2f8;
  border-radius: 14px;
  display: flex;
  height: 76px;
  justify-content: center;
  padding: 14px;
}
.operator-logo { max-height: 48px; max-width: 150px; object-fit: contain; }
.score { color: var(--amber-dark); font-size: 1.05rem; font-weight: 900; letter-spacing: .04em; }
.operator-card .actions { margin-top: auto; }
.operator-card.compact { display: grid; gap: 24px; grid-template-columns: 160px 1fr 210px; min-height: auto; }
.operator-card.compact .operator-logo-wrap { height: 100%; min-height: 126px; }
.license-data {
  background: #f7f7fc;
  border-radius: 14px;
  font-size: .82rem;
  padding: 14px;
}
.license-data p { margin: 0 0 6px; }
.license-data p:last-child { margin-bottom: 0; }
.disclosure {
  background: #fff8e9;
  border-radius: 14px;
  color: #5e430d;
  font-size: .9rem;
  padding: 16px 20px;
}

.table-scroll { overflow-x: auto; overscroll-behavior-inline: contain; }
.comparison-table {
  border-collapse: separate;
  border-spacing: 0;
  font-size: .85rem;
  min-width: 1120px;
  width: 100%;
}
.comparison-table th,
.comparison-table td {
  background: var(--white);
  border-bottom: 1px solid #e7e7f1;
  padding: 14px 13px;
  text-align: left;
  vertical-align: top;
}
.comparison-table thead th {
  background: var(--indigo);
  color: var(--white);
  font-size: .67rem;
  letter-spacing: .09em;
  position: sticky;
  text-transform: uppercase;
  top: 0;
  z-index: 2;
}
.comparison-table th:first-child,
.comparison-table td:first-child {
  left: 0;
  min-width: 126px;
  position: sticky;
  z-index: 1;
}
.comparison-table thead th:first-child { z-index: 3; }
.comparison-table .yes { color: var(--good); font-weight: 900; }
.comparison-table .conditional { color: var(--amber-dark); font-weight: 800; }
.comparison-table .no { color: var(--danger); font-weight: 800; }

.media-block {
  align-items: center;
  display: grid;
  gap: 48px;
  grid-template-columns: 1fr 1fr;
}
.editorial-image {
  border-radius: var(--radius);
  filter: saturate(.72) sepia(.04);
  box-shadow: 16px 16px 0 rgba(34, 37, 103, .1);
  width: 100%;
}
.page-hero {
  background: linear-gradient(90deg, rgba(17, 20, 63, .92), rgba(17, 20, 63, .42)), var(--page-image) center / cover;
  color: var(--white);
  margin-top: -100px;
  min-height: 520px;
  padding: 185px 0 86px;
}
.page-hero p { color: #e8e9fb; font-size: 1.08rem; }
.page-hero .eyebrow { color: #ffd681; }
.page-hero h1 { font-size: clamp(2.5rem, 5vw, 4.9rem); }

.method-strip { counter-reset: method; display: grid; gap: 16px; grid-template-columns: repeat(3, 1fr); }
.method-step {
  background: linear-gradient(150deg, #fff, #f0f0fc);
  border-radius: 18px;
  counter-increment: method;
  padding: 24px;
}
.method-step::before {
  color: var(--amber-dark);
  content: "0" counter(method);
  display: block;
  font-size: 1.8rem;
  font-weight: 900;
  margin-bottom: 20px;
}

.dash-list { list-style: none; padding: 0; }
.dash-list li { padding-left: 1.35rem; position: relative; }
.dash-list li + li { margin-top: .65rem; }
.dash-list li::before { color: var(--amber-dark); content: "—"; left: 0; position: absolute; }

.faq-list { counter-reset: faq; }
.faq-item {
  background: var(--white);
  border-radius: var(--radius);
  counter-increment: faq;
  display: grid;
  gap: 24px;
  grid-template-columns: 72px 1fr;
  padding: 28px;
}
.faq-item::before {
  color: var(--amber-dark);
  content: counter(faq, decimal-leading-zero);
  font-size: 2.4rem;
  font-weight: 900;
  line-height: 1;
}
.faq-item h2,
.faq-item h3 {
  font-size: 1.45rem;
  max-width: none;
}
.faq-item p:last-child { margin-bottom: 0; }

.glossary-grid { display: grid; gap: 16px; grid-template-columns: repeat(2, minmax(0, 1fr)); }
.term { background: var(--white); border-radius: 18px; padding: 24px; }
.term dt { font-size: 1.15rem; font-weight: 900; margin-bottom: 8px; }
.term dd { color: var(--muted); margin: 0; }

.legal-grid { display: grid; gap: 24px; grid-template-columns: repeat(2, 1fr); }
.legal-card { background: var(--white); border-radius: 18px; padding: 28px; }
.legal-card:target { box-shadow: 0 0 0 4px var(--amber); }

.site-footer { background: var(--indigo-deep); color: var(--white); padding: 72px 0 28px; }
.footer-grid { display: grid; gap: 48px; grid-template-columns: 1.25fr .8fr .8fr 1fr; }
.site-footer p, .site-footer li { color: #cfd1ee; }
.site-footer h2, .site-footer h3 { color: var(--white); }
.site-footer h2 { font-size: 2.25rem; }
.site-footer ul { list-style: none; margin: 0; padding: 0; }
.site-footer li + li { margin-top: 8px; }
.safety-column { background: rgba(255, 255, 255, .08); border-radius: 18px; padding: 20px; }
.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, .12);
  display: flex;
  font-size: .78rem;
  gap: 20px;
  justify-content: space-between;
  margin-top: 48px;
  padding-top: 24px;
}

.age-band {
  background: #ffcf68;
  color: #302000;
  font-size: .84rem;
  font-weight: 750;
  padding: 12px 0;
}
.age-band .cluster { justify-content: center; }

.cookie-banner {
  background: var(--white);
  border-radius: 18px;
  bottom: 18px;
  box-shadow: 0 20px 60px rgba(17, 20, 63, .24);
  display: grid;
  gap: 16px;
  left: 18px;
  max-width: 520px;
  padding: 20px;
  position: fixed;
  z-index: 70;
}
.cookie-banner[hidden] { display: none; }
.cookie-banner p { font-size: .84rem; margin: 0; }

.back-to-top {
  background: var(--amber);
  border: 0;
  border-radius: 50%;
  bottom: 22px;
  box-shadow: 0 10px 30px rgba(17, 20, 63, .25);
  color: #302000;
  font-size: 1.3rem;
  height: 48px;
  opacity: 0;
  pointer-events: none;
  position: fixed;
  right: 22px;
  transform: translateY(12px);
  transition: opacity .2s ease, transform .2s ease;
  width: 48px;
  z-index: 60;
}
.back-to-top.is-visible { opacity: 1; pointer-events: auto; transform: translateY(0); }

@media (max-width: 960px) {
  .nav-links { display: none; }
  .hero-inner, .media-block { grid-template-columns: 1fr; }
  .hero { min-height: auto; }
  .grid-3 { grid-template-columns: 1fr 1fr; }
  .operator-card.compact { grid-template-columns: 140px 1fr; }
  .operator-card.compact .actions { grid-column: 1 / -1; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 680px) {
  body { font-size: 15px; }
  .container { padding-inline: 16px; }
  .site-header { padding-block: 10px; }
  .brand-mark { height: 32px; width: 32px; }
  .nav-shell { min-height: 56px; }
  .hero, .page-hero { margin-top: -76px; padding-top: 145px; }
  .hero { min-height: 720px; }
  .grid-2, .grid-3, .legal-grid, .glossary-grid, .method-strip { grid-template-columns: 1fr; }
  .trust-strip { margin-top: -32px; }
  .section { padding-block: 56px; }
  .section-panel { padding: 24px 18px; }
  .operator-card.compact { grid-template-columns: 1fr; }
  .operator-card.compact .actions { grid-column: auto; }
  .faq-item { grid-template-columns: 52px 1fr; padding: 22px 18px; }
  .footer-grid { grid-template-columns: 1fr; }
  .footer-bottom { align-items: flex-start; flex-direction: column; }
  .cookie-banner { bottom: 12px; left: 12px; right: 12px; }
}

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