@font-face {
  font-family: InterLocal;
  src: local("Inter"), local("Arial");
  font-display: swap;
}

:root {
  --ink: #07192c;
  --navy: #061a2c;
  --navy-2: #0e304a;
  --blue: #0738b5;
  --lime: #c9ff3d;
  --aqua: #4af3d2;
  --paper: #ffffff;
  --mist: #f2f6fb;
  --line: #c9d8e7;
  --muted: #4d6277;
  --danger: #711b28;
  --radius: 18px;
  --shadow: 0 18px 46px rgba(12, 38, 64, 0.1);
  --shell: 1180px;
}

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

html { scroll-behavior: smooth; }

section,
article { scroll-margin-top: 92px; }

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: InterLocal, Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 16px;
  line-height: 1.65;
  text-rendering: optimizeLegibility;
}

img { display: block; max-width: 100%; }
a { color: inherit; }
button, input, textarea, select { font: inherit; }

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

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

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

.site-header {
  position: sticky;
  z-index: 100;
  top: 0;
  border-bottom: 1px solid rgba(255,255,255,.12);
  background: rgba(6, 26, 44, .97);
  backdrop-filter: blur(14px);
}

.header-inner {
  min-height: 70px;
  display: flex;
  align-items: center;
  gap: 28px;
}

.brand { margin-right: auto; text-decoration: none; }
.brand img { width: 230px; height: auto; }

.site-nav { display: flex; align-items: center; gap: 24px; }
.site-nav a {
  color: #fff;
  font-size: 14px;
  font-weight: 750;
  text-decoration: none;
}
.site-nav a:hover,
.site-nav a:focus-visible { color: var(--lime); }

.age-mark {
  display: grid;
  width: 40px;
  height: 40px;
  place-items: center;
  border: 1px solid rgba(255,255,255,.35);
  border-radius: 50%;
  color: #fff;
  font-size: 13px;
  font-weight: 850;
}

.menu-button {
  display: none;
  align-items: center;
  gap: 8px;
  border: 0;
  color: #fff;
  background: transparent;
  font-weight: 750;
}

.menu-icon,
.menu-icon::before,
.menu-icon::after {
  width: 20px;
  height: 2px;
  display: block;
  background: currentColor;
  content: "";
}
.menu-icon { position: relative; }
.menu-icon::before { position: absolute; top: -6px; }
.menu-icon::after { position: absolute; top: 6px; }

.hero {
  padding: 56px 0 24px;
  background:
    radial-gradient(circle at 85% 0%, rgba(201,255,61,.18), transparent 28%),
    linear-gradient(180deg, #fff 0%, #fbfdff 100%);
}

.hero-copy { max-width: var(--shell); }
.hero h1 {
  max-width: 980px;
  margin: 0 0 16px;
  font-size: clamp(2.25rem, 5vw, 4.35rem);
  line-height: 1.04;
  letter-spacing: -.055em;
}

.hero-summary {
  max-width: 1100px;
  margin: 0;
  font-size: clamp(1.02rem, 1.6vw, 1.22rem);
  line-height: 1.55;
}

.hero-summary strong,
.section-heading > p strong,
.prose-shell > p strong,
.subsection > p strong,
.post-table-note strong {
  font-weight: 850;
  background: linear-gradient(transparent 58%, rgba(201,255,61,.5) 58%);
}

.updated-line {
  margin: 12px 0 0;
  color: var(--muted);
  font-size: 13px;
  font-weight: 700;
}

.section { padding: 74px 0; }
.ranking-section { padding-top: 22px; }
.tint-section { background: var(--mist); }
.dark-section { color: #fff; background: var(--navy); }

.section-heading {
  width: 100%;
  margin: 0 0 28px;
}

.section-heading h2 {
  max-width: 980px;
  margin: 0;
  font-size: clamp(2rem, 4.3vw, 3.45rem);
  line-height: 1.06;
  letter-spacing: -.045em;
}

.section-heading > p,
.prose-shell > p,
.subsection > p,
.post-table-note {
  width: 100%;
  max-width: none;
  margin: 18px 0 0;
  font-size: 1.03rem;
  line-height: 1.72;
}

dfn { font-style: normal; font-weight: 760; }

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

.rank-card {
  position: relative;
  display: grid;
  grid-template-columns: 265px minmax(0, 1fr) 185px;
  min-height: 148px;
  overflow: hidden;
  border: 1px solid #d9e2ec;
  border-radius: 26px;
  background: #fff;
  box-shadow: 0 10px 28px rgba(9, 31, 53, .075);
  transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease;
}

.rank-card:hover {
  transform: translateY(-2px);
  border-color: #a9bed2;
  box-shadow: 0 18px 38px rgba(9, 31, 53, .12);
}

.rank-identity {
  position: relative;
  display: grid;
  grid-template-rows: 70px auto;
  place-items: center;
  gap: 4px;
  padding: 20px 24px 17px;
  border-right: 1px solid #e0e7ef;
  background: linear-gradient(135deg, #f4f8fc, #eef4fa);
  text-align: center;
}

.rank-number {
  position: absolute;
  top: 12px;
  left: 12px;
  display: grid;
  width: 34px;
  height: 34px;
  place-items: center;
  border-radius: 10px 10px 14px 14px;
  color: var(--navy);
  background: var(--lime);
  box-shadow: 0 6px 15px rgba(91, 123, 12, .2);
  font-size: 13px;
  font-weight: 900;
}

.rank-identity img {
  width: min(165px, 78%);
  height: 62px;
  object-fit: contain;
  object-position: center;
}

.rank-identity h3 {
  margin: 0;
  font-size: 1.05rem;
  line-height: 1.2;
}

.rank-bonus {
  align-self: center;
  margin: 22px 28px;
  padding: 18px 22px;
  border-left: 5px solid var(--lime);
  border-radius: 12px;
  background: linear-gradient(90deg, #edf1f4, #f8fafc);
}

.rank-bonus p {
  margin: 0;
  font-size: clamp(1.05rem, 1.8vw, 1.3rem);
  line-height: 1.35;
  font-weight: 850;
}

.rank-bonus span {
  display: block;
  margin-top: 4px;
  color: var(--muted);
  font-size: 13px;
  font-weight: 700;
}

.rank-cta {
  align-self: center;
  justify-self: stretch;
  margin: 24px 24px 24px 0;
  padding: 15px 18px;
  border: 2px solid var(--navy);
  border-radius: 999px;
  color: #fff;
  background: var(--navy);
  box-shadow: 0 8px 18px rgba(6,26,44,.17);
  text-align: center;
  text-decoration: none;
  font-weight: 850;
  transition: color .2s ease, background .2s ease, transform .2s ease;
}

.rank-cta:hover,
.rank-cta:focus-visible {
  color: var(--navy);
  background: var(--lime);
  transform: translateY(-1px);
}

.table-wrap {
  width: 100%;
  margin-top: 34px;
  overflow-x: auto;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fff;
  box-shadow: var(--shadow);
}

table {
  width: 100%;
  min-width: 760px;
  border-collapse: collapse;
  color: var(--ink);
  background: #fff;
  font-size: 14px;
}

caption {
  padding: 18px 20px;
  color: #fff;
  background: var(--navy-2);
  text-align: left;
  font-weight: 850;
}

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

th { background: #e6eff7; font-weight: 850; }
tbody tr:nth-child(even) td { background: #f6f9fc; }
tbody tr:last-child td { border-bottom: 0; }
.post-table-note { margin-top: 22px; }

.subsection {
  width: 100%;
  margin-top: 56px;
}

.subsection h3 {
  max-width: 1000px;
  margin: 0;
  font-size: clamp(1.55rem, 3vw, 2.25rem);
  line-height: 1.15;
  letter-spacing: -.03em;
}

.callout-grid {
  display: grid;
  gap: 16px;
  margin-top: 30px;
}
.callout-grid-3 { grid-template-columns: repeat(3, 1fr); }

.callout {
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fff;
}
.callout > span {
  color: var(--blue);
  font-size: 13px;
  font-weight: 900;
}
.callout h3,
.callout h4 { margin: 20px 0 4px; font-size: 1.03rem; }
.callout p { margin: 0; color: var(--muted); font-size: 14px; }

.info-note {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  margin-top: 30px;
  padding: 22px 24px;
  border: 1px solid #83b215;
  border-radius: var(--radius);
  background: #f7ffe5;
}
.info-note > span {
  display: grid;
  flex: 0 0 34px;
  height: 34px;
  place-items: center;
  border-radius: 50%;
  color: var(--navy);
  background: var(--lime);
  font-weight: 900;
}
.info-note strong { display: block; font-size: 1.05rem; }
.info-note p { margin: 3px 0 0; }

.check-list,
.warning-list,
.number-list {
  width: 100%;
  margin: 26px 0 0;
  padding: 0;
  list-style: none;
}

.check-list { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 12px; }
.check-list li {
  position: relative;
  min-height: 64px;
  padding: 16px 18px 16px 52px;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: #fff;
}
.check-list li::before {
  position: absolute;
  top: 17px;
  left: 17px;
  display: grid;
  width: 23px;
  height: 23px;
  place-items: center;
  border-radius: 50%;
  color: #fff;
  background: var(--blue);
  content: "✓";
  font-size: 13px;
  font-weight: 900;
}

.dark-section .check-list li {
  border-color: rgba(255,255,255,.18);
  color: #fff;
  background: rgba(255,255,255,.065);
}

.payment-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
  margin-top: 28px;
}
.payment-grid > div {
  display: grid;
  grid-template-columns: 120px 1fr;
  gap: 3px 18px;
  padding: 20px;
  border: 1px solid rgba(255,255,255,.18);
  border-radius: 15px;
  background: rgba(255,255,255,.07);
}
.payment-grid strong { color: var(--lime); }
.payment-grid small { grid-column: 2; color: #b9ccdc; }

.metric-strip {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
  margin-top: 28px;
}
.metric-strip > div {
  padding: 22px;
  border: 1px solid rgba(255,255,255,.2);
  border-radius: 15px;
  background: rgba(255,255,255,.07);
}
.metric-strip strong { display: block; color: var(--lime); font-size: 1.8rem; line-height: 1.1; }
.metric-strip span { display: block; margin-top: 7px; color: #d5e2ec; font-size: 14px; }

.safety-section { color: #fff; background: linear-gradient(135deg, #691824, #84293a); }
.safety-section .section-heading > p strong,
.safety-section .prose-shell > p strong,
.safety-section .subsection > p strong { background: linear-gradient(transparent 58%, rgba(201,255,61,.35) 58%); }

.safety-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
  margin-top: 28px;
}
.safety-grid div {
  padding: 20px;
  border: 1px solid rgba(255,255,255,.22);
  border-radius: 14px;
  background: rgba(255,255,255,.08);
}
.safety-grid strong { display: block; color: var(--lime); font-size: 1.1rem; }
.safety-grid span { display: block; margin-top: 5px; }

.number-list { display: grid; grid-template-columns: repeat(5, 1fr); gap: 12px; }
.number-list li {
  padding: 18px;
  border: 1px solid rgba(255,255,255,.22);
  border-radius: 14px;
  background: rgba(255,255,255,.08);
}
.number-list li > span { color: var(--lime); font-weight: 900; }
.number-list strong { display: block; margin-top: 14px; }
.number-list p { margin: 5px 0 0; color: #f0dfe2; font-size: 14px; }

.warning-list { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 12px; }
.warning-list li {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  padding: 18px;
  border: 1px solid rgba(255,255,255,.25);
  border-radius: 14px;
  background: rgba(255,255,255,.08);
}
.warning-list li > span {
  display: grid;
  flex: 0 0 28px;
  height: 28px;
  place-items: center;
  border-radius: 8px;
  color: var(--danger);
  background: var(--lime);
  font-weight: 950;
}
.warning-list strong { display: block; }
.warning-list p { margin: 3px 0 0; color: #f0dfe2; font-size: 14px; }

.faq-list { display: grid; gap: 12px; }
.faq-list details {
  border: 1px solid var(--line);
  border-radius: 15px;
  background: #fff;
  overflow: hidden;
}
.faq-list summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 20px 22px;
  cursor: pointer;
  list-style: none;
}
.faq-list summary::-webkit-details-marker { display: none; }
.faq-list summary h3 { margin: 0; font-size: 1.02rem; }
.faq-list summary > span {
  position: relative;
  flex: 0 0 28px;
  height: 28px;
  border-radius: 50%;
  background: var(--mist);
}
.faq-list summary > span::before,
.faq-list summary > span::after {
  position: absolute;
  top: 13px;
  left: 8px;
  width: 12px;
  height: 2px;
  background: var(--ink);
  content: "";
}
.faq-list summary > span::after { transform: rotate(90deg); transition: transform .2s; }
.faq-list details[open] summary > span::after { transform: rotate(0); }
.faq-answer { padding: 0 22px 20px; }
.faq-answer p { margin: 0; color: var(--muted); }

.site-footer {
  padding: 56px 0 20px;
  color: #dbe8f2;
  background: #031321;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.25fr 1fr 1fr;
  gap: 46px;
}
.footer-intro img { width: 245px; }
.footer-grid p { margin: 14px 0 0; color: #c2d2df; font-size: 14px; }
.footer-note > strong { color: #fff; }

.support-block {
  margin-top: 34px;
  padding-top: 26px;
  border-top: 1px solid rgba(255,255,255,.15);
}
.support-block > strong { display: block; color: #fff; }
.support-logos {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 12px;
  margin-top: 16px;
}
.support-logos a {
  display: grid;
  min-height: 82px;
  place-items: center;
  padding: 13px;
  border: 1px solid #345268;
  border-radius: 12px;
  background: #0d2b42;
  transition: transform .2s, box-shadow .2s;
}
.support-logos a:hover,
.support-logos a:focus-visible { transform: translateY(-2px); box-shadow: 0 8px 20px rgba(0,0,0,.3); }
.support-logos img {
  width: 100%;
  max-width: 135px;
  max-height: 48px;
  object-fit: contain;
  filter: drop-shadow(0 1px 1px rgba(0,0,0,.55));
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 24px;
  margin-top: 26px;
  padding-top: 18px;
  border-top: 1px solid rgba(255,255,255,.15);
  color: #aac1d2;
  font-size: 13px;
}
.footer-bottom a:hover { color: var(--lime); }

.error-page {
  min-height: 100vh;
  display: grid;
  place-items: center;
  color: #fff;
  background: var(--navy);
  text-align: center;
}
.error-page h1 { margin: 8px 0; font-size: clamp(2.3rem, 6vw, 4.8rem); }
.error-page .eyebrow { color: var(--lime); font-size: 13px; font-weight: 900; text-transform: uppercase; letter-spacing: .14em; }
.error-link { display: inline-block; margin-top: 18px; padding: 13px 20px; border-radius: 999px; color: var(--navy); background: var(--lime); text-decoration: none; font-weight: 850; }

@media (max-width: 1040px) {
  .site-nav { gap: 15px; }
  .site-nav a { font-size: 13px; }
  .rank-card { grid-template-columns: 230px minmax(0, 1fr) 165px; }
  .rank-bonus { margin-inline: 20px; }
  .number-list { grid-template-columns: repeat(3, 1fr); }
  .support-logos { grid-template-columns: repeat(3, 1fr); }
}

@media (max-width: 860px) {
  .menu-button { display: flex; }
  .site-nav {
    position: absolute;
    top: 69px;
    right: 24px;
    left: 24px;
    display: none;
    align-items: stretch;
    flex-direction: column;
    gap: 0;
    padding: 10px;
    border: 1px solid rgba(255,255,255,.15);
    border-radius: 14px;
    background: var(--navy);
    box-shadow: 0 20px 40px rgba(0,0,0,.25);
  }
  .site-nav.is-open { display: flex; }
  .site-nav a { padding: 11px 12px; }
  .age-mark { display: none; }

  .rank-card { grid-template-columns: 210px 1fr; }
  .rank-identity { grid-row: span 2; }
  .rank-bonus { margin: 18px 20px 6px; }
  .rank-cta { margin: 8px 20px 18px; justify-self: start; min-width: 180px; }

  .callout-grid-3,
  .safety-grid { grid-template-columns: repeat(2, 1fr); }
  .number-list { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .footer-intro { grid-column: 1 / -1; }
}

@media (max-width: 640px) {
  .shell { width: min(calc(100% - 28px), var(--shell)); }
  .header-inner { min-height: 62px; }
  .brand img { width: 190px; }
  .site-nav { top: 62px; right: 14px; left: 14px; }
  .hero { padding: 36px 0 18px; }
  .hero h1 { font-size: clamp(2rem, 11vw, 3rem); }
  .section { padding: 54px 0; }
  .ranking-section { padding-top: 18px; }
  .section-heading { margin-bottom: 22px; }

  .rank-card { grid-template-columns: 1fr; min-height: 0; border-radius: 20px; }
  .rank-identity { grid-row: auto; border-right: 0; border-bottom: 1px solid #e0e7ef; }
  .rank-bonus { margin: 16px; }
  .rank-cta { width: calc(100% - 32px); margin: 0 16px 18px; justify-self: stretch; }

  .callout-grid-3,
  .check-list,
  .payment-grid,
  .metric-strip,
  .safety-grid,
  .number-list,
  .warning-list,
  .footer-grid,
  .support-logos { grid-template-columns: 1fr; }

  .payment-grid > div { grid-template-columns: 1fr; }
  .payment-grid small { grid-column: 1; }
  .table-wrap { margin-top: 24px; border-radius: 13px; }
  table { font-size: 13px; }
  th, td { padding: 12px; }
  .subsection { margin-top: 44px; }
  .footer-intro { grid-column: auto; }
  .support-logos { grid-template-columns: repeat(2, 1fr); }
  .footer-bottom { flex-direction: column; }
}

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