:root {
  --brand-primary: #bdee00;
  --brand-secondary: #00c7b1;
  --brand-info: #00bbff;
  --brand-support-1: #753bbd;
  --brand-support-2: #b40091;
  --brand-ink: #161616;

  --bg-main: #111525;
  --bg-surface: #161c31;
  --bg-elevated: #20263b;
  --bg-muted: #2a3045;
  --bg-input: #1c2339;
  --text-primary: #ffffff;
  --text-secondary: #ffffffb3;
  --text-muted: #ffffff80;
  --border-soft: #ffffff1a;
  --border-strong: #32394c;
  --shadow-soft: 0 18px 50px rgba(0, 0, 0, 0.28);
  --shadow-pop: 0 16px 40px rgba(189, 238, 0, 0.18);
  --safe-x: 16px;
  --safe-y: 16px;
  --radius-sm: 12px;
  --radius-md: 16px;
  --radius-lg: 20px;
  --surface-pad: clamp(16px, 2vw, 24px);
  --surface-gap: clamp(11px, 1.5vw, 18px);
  --surface-radius: clamp(14px, 2vw, 20px);
  --header-h: 60px;
  --ticker-h: 42px;
  --cta-h: 48px;
  --page-max: 1200px;
  --page-pad: clamp(18px, 3.4vw, 30px);
  --focus-ring: 0 0 0 3px rgba(189, 238, 0, 0.18);
  --font-ui: "Segoe UI Variable Text", "Segoe UI", "Inter", "Manrope", "Noto Sans", system-ui, -apple-system, BlinkMacSystemFont, sans-serif;
  --font-display: "Segoe UI Variable Display", "Segoe UI Semibold", "Inter", "Manrope", "Noto Sans", system-ui, -apple-system, BlinkMacSystemFont, sans-serif;
}

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

html {
  scroll-behavior: smooth;
  overflow-x: hidden;
}

body {
  margin: 0;
  min-height: 100vh;
  background:
    radial-gradient(circle at top right, rgba(117, 59, 189, 0.16), transparent 30%),
    radial-gradient(circle at 15% 20%, rgba(0, 187, 255, 0.08), transparent 22%),
    linear-gradient(180deg, #0e1220 0%, var(--bg-main) 22%, #0e1324 100%);
  color: var(--text-primary);
  font-family: var(--font-ui);
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: clip;
}

h1,
h2,
h3,
h4,
h5,
h6,
.section-title,
.brand__name,
.eyebrow,
.table-rank {
  font-family: var(--font-display);
}

body.nav-open {
  overflow: hidden;
}

[hidden] {
  display: none !important;
}

.skip-link {
  position: absolute;
  top: 8px;
  left: 12px;
  z-index: 120;
  padding: 10px 14px;
  border-radius: 999px;
  background: #fff;
  color: #111525;
  transform: translateY(-160%);
  transition: transform 0.18s ease;
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.2);
}

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

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

a {
  color: inherit;
  text-decoration: none;
}

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

button {
  color: inherit;
  border: 0;
  background: none;
}

::selection {
  background: rgba(189, 238, 0, 0.28);
  color: #fff;
}

.app {
  position: relative;
}

.site-shell {
  width: min(100%, var(--page-max));
  margin: 0 auto;
  padding-inline: var(--page-pad);
}

.section-shell {
  width: min(100%, var(--page-max));
  margin: 0 auto;
  padding-inline: var(--page-pad);
}

section[id],
[id].page-section {
  scroll-margin-top: calc(var(--ticker-h) + var(--header-h) + 16px);
}

main > .page-section:not(.hero):not(.trust-strip):not(.page-toc):not(.decision-cta) {
  content-visibility: auto;
  contain-intrinsic-size: 1px 880px;
}

.ticker {
  position: sticky;
  top: 0;
  z-index: 70;
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  align-items: center;
  gap: 0;
  min-height: var(--ticker-h);
  padding-inline: var(--page-pad);
  background: rgba(32, 38, 59, 0.94);
  border-bottom: 1px solid var(--border-soft);
  backdrop-filter: blur(14px);
}

.ticker__label {
  display: none;
}

.ticker__viewport {
  overflow: hidden;
  min-width: 0;
  mask-image: linear-gradient(90deg, transparent 0, #000 6%, #000 94%, transparent 100%);
}

.ticker__track {
  display: flex;
  width: max-content;
  align-items: center;
  gap: 10px;
  animation: ticker-scroll 30s linear infinite;
  will-change: transform;
}

.ticker__item {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  min-height: 26px;
  padding: 0 12px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.04);
  color: var(--text-secondary);
  font-size: 0.88rem;
  white-space: nowrap;
  font-variant-numeric: tabular-nums;
}

.ticker__coin {
  color: var(--text-primary);
  font-weight: 700;
  letter-spacing: 0.02em;
}

.ticker__split {
  display: inline-grid;
  place-items: center;
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: rgba(0, 187, 255, 0.14);
  color: #9de5ff;
  font-size: 0.56rem;
  line-height: 1;
}

.ticker__price {
  color: #dce8ff;
  font-weight: 700;
}

.app-header {
  position: sticky;
  top: var(--ticker-h);
  z-index: 60;
  min-height: var(--header-h);
  border-bottom: 1px solid var(--border-soft);
  background: rgba(17, 21, 37, 0.82);
  backdrop-filter: blur(16px);
}

.app-header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: nowrap;
  gap: 12px;
  min-height: var(--header-h);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  flex: 1 1 auto;
  min-width: 0;
}

.brand__mark {
  display: inline-grid;
  place-items: center;
  width: 40px;
  height: 40px;
  border-radius: 14px;
  background:
    radial-gradient(circle at 30% 30%, rgba(255, 255, 255, 0.18), transparent 35%),
    linear-gradient(145deg, rgba(189, 238, 0, 0.14), rgba(0, 199, 177, 0.08)),
    var(--bg-surface);
  border: 1px solid var(--border-soft);
  box-shadow: var(--shadow-soft);
  color: var(--brand-primary);
  font-weight: 800;
  letter-spacing: 0.02em;
}

.brand__copy {
  display: flex;
  align-items: center;
  min-width: 0;
}

.brand__name {
  display: block;
  max-width: 100%;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  font-size: 1rem;
  font-weight: 800;
  letter-spacing: -0.02em;
}

.brand__tagline {
  display: none;
  color: var(--text-muted);
  font-size: 0.8rem;
  line-height: 1.2;
}

.header-actions {
  display: flex;
  flex: 0 0 auto;
  align-items: center;
  gap: 8px;
}

.lang-switcher {
  position: relative;
  display: inline-flex;
  align-items: center;
}

.lang-switcher--menu,
.lang-switcher--footer {
  width: 100%;
}

.lang-switcher__select {
  appearance: none;
  min-width: 66px;
  min-height: 44px;
  padding: 0 24px 0 10px;
  border-radius: 14px;
  border: 1px solid var(--border-soft);
  color: var(--text-primary);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.04), rgba(255, 255, 255, 0)),
    rgba(0, 187, 255, 0.05);
  background-image:
    linear-gradient(180deg, rgba(255, 255, 255, 0.04), rgba(255, 255, 255, 0)),
    url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='10' height='6' viewBox='0 0 10 6'%3E%3Cpath fill='%23BDEE00' d='M1 1l4 4 4-4'/%3E%3C/svg%3E");
  background-repeat: no-repeat, no-repeat;
  background-size: auto, 10px 6px;
  background-position: 0 0, right 10px center;
  font-size: 0.8rem;
  font-weight: 800;
  letter-spacing: 0.02em;
  cursor: pointer;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.03);
  transition: transform 160ms ease, border-color 160ms ease, background 160ms ease, box-shadow 160ms ease;
}

.lang-switcher__select:hover {
  transform: translateY(-1px);
  border-color: rgba(189, 238, 0, 0.25);
}

.lang-switcher__select:focus-visible {
  outline: none;
  box-shadow: var(--focus-ring);
}

.lang-switcher__select option {
  color: #111525;
  background: #fff;
}

.lang-switcher--menu .lang-switcher__select {
  width: 100%;
  min-width: 0;
}

.icon-btn,
.menu-btn,
.sort-btn {
  display: inline-grid;
  place-items: center;
  min-width: 44px;
  min-height: 44px;
  padding: 0 14px;
  border-radius: 14px;
  background: rgba(0, 187, 255, 0.05);
  border: 1px solid var(--border-soft);
  color: var(--text-primary);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.03);
  transition: transform 160ms ease, border-color 160ms ease, background 160ms ease, box-shadow 160ms ease;
}

.menu-btn {
  gap: 8px;
  font-weight: 700;
}

.icon-btn:hover,
.menu-btn:hover,
.sort-btn:hover,
.btn-primary:hover,
.btn-secondary:hover,
.btn-ghost:hover {
  transform: translateY(-1px);
  border-color: rgba(189, 238, 0, 0.25);
}

.icon-btn:hover,
.menu-btn:hover,
.sort-btn:hover {
  box-shadow: 0 14px 30px rgba(0, 0, 0, 0.18);
}

.icon-btn:focus-visible,
.menu-btn:focus-visible,
.sort-btn:focus-visible,
.btn-primary:focus-visible,
.btn-secondary:focus-visible,
.btn-ghost:focus-visible,
.chip:focus-visible,
.accordion-trigger:focus-visible,
a:focus-visible {
  outline: none;
  box-shadow: var(--focus-ring);
}

.nav-drawer {
  position: fixed;
  inset: 0;
  z-index: 90;
  opacity: 0;
  pointer-events: none;
  transition: opacity 180ms ease;
}

.nav-drawer.is-open {
  opacity: 1;
  pointer-events: auto;
}

.nav-drawer__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(4, 6, 15, 0.58);
  backdrop-filter: blur(6px);
}

.nav-drawer__panel {
  position: absolute;
  top: calc(var(--ticker-h) + 10px);
  right: var(--page-pad);
  width: min(92vw, 340px);
  padding: 16px;
  border-radius: 22px;
  background: rgba(22, 28, 49, 0.98);
  border: 1px solid var(--border-soft);
  box-shadow: var(--shadow-soft);
  display: flex;
  flex-direction: column;
  gap: 6px;
  max-height: calc(100vh - var(--ticker-h) - 22px);
  overflow-y: auto;
  scrollbar-width: thin;
  transform: translateY(10px) scale(0.985);
  transform-origin: top right;
  transition: transform 180ms ease;
}

.nav-drawer.is-open .nav-drawer__panel {
  transform: none;
}

.nav-drawer__head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  margin-bottom: 8px;
}

.nav-drawer__title {
  display: inline-flex;
  align-items: center;
  min-height: 38px;
  padding: 0 12px;
  border-radius: 999px;
  border: 1px solid rgba(0, 187, 255, 0.24);
  background: rgba(0, 187, 255, 0.1);
  color: var(--text-primary);
  font-size: 0.9rem;
  font-weight: 800;
  letter-spacing: 0.02em;
}

.nav-drawer__close {
  min-height: 38px;
  padding: 0 14px;
  border-radius: 14px;
  border: 1px solid rgba(189, 238, 0, 0.22);
  background: rgba(255, 255, 255, 0.04);
  color: var(--text-primary);
}

.nav-drawer__close:hover {
  border-color: rgba(189, 238, 0, 0.32);
  background: rgba(255, 255, 255, 0.1);
}

.nav-drawer__panel > a[data-nav-link] {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  min-height: 48px;
  padding: 0 12px;
  border-radius: 14px;
  color: var(--text-secondary);
}

.nav-drawer__panel > a[data-nav-link]:hover {
  background: rgba(255, 255, 255, 0.05);
  color: var(--text-primary);
}

.nav-drawer__footer {
  margin-top: 8px;
  padding-top: 14px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  display: grid;
  gap: 10px;
}

.nav-drawer__footer .lang-switcher__select {
  min-height: 46px;
}

.nav-drawer__brand {
  display: flex;
  align-items: center;
  gap: 10px;
  min-height: 56px;
  padding: 8px 10px;
  border-radius: 15px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(255, 255, 255, 0.03);
  color: var(--text-primary);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.04);
}

.nav-drawer__brand:hover {
  border-color: rgba(189, 238, 0, 0.24);
  background: rgba(255, 255, 255, 0.05);
}

.nav-drawer__brand .brand__mark {
  width: 34px;
  height: 34px;
  border-radius: 12px;
  flex: 0 0 auto;
  font-size: 0.84rem;
}

.nav-drawer__brand-copy {
  display: grid;
  min-width: 0;
  gap: 2px;
}

.nav-drawer__brand-name {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  font-size: 0.95rem;
  font-weight: 800;
  color: var(--text-primary);
  line-height: 1.1;
}

.nav-drawer__brand-note {
  font-size: 0.74rem;
  color: var(--text-muted);
  line-height: 1.2;
}

.nav-drawer__cta {
  width: 100%;
  min-height: 48px;
  border-radius: 14px;
  justify-content: center;
  text-align: center;
  font-size: 0.94rem;
}

.search-panel {
  display: block;
  border-bottom: 1px solid var(--border-soft);
  background: rgba(17, 21, 37, 0.94);
  backdrop-filter: blur(16px);
  opacity: 0;
  transform: translateY(-8px);
  visibility: hidden;
  transition: opacity 180ms ease, transform 180ms ease, visibility 180ms ease;
}

.search-panel.is-open {
  opacity: 1;
  transform: none;
  visibility: visible;
}

.search-panel__inner {
  display: grid;
  gap: 12px;
  padding-block: 14px;
}

.search-panel__top {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 12px;
}

.search-panel__top p {
  margin: 4px 0 0;
  color: var(--text-secondary);
  font-size: 0.9rem;
}

.search-field {
  display: block;
}

.search-field input {
  width: 100%;
  min-height: 48px;
  padding: 0 14px;
  border-radius: 14px;
  border: 1px solid rgba(0, 187, 255, 0.16);
  background: rgba(255, 255, 255, 0.04);
  color: var(--text-primary);
  outline: none;
}

.search-field input::placeholder {
  color: var(--text-muted);
}

.search-field input:focus {
  border-color: rgba(189, 238, 0, 0.28);
  box-shadow: 0 0 0 4px rgba(0, 187, 255, 0.08);
}

.search-panel__meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  flex-wrap: wrap;
}

.search-panel__results {
  display: grid;
  gap: 10px;
  padding-top: 10px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.search-panel__summary {
  margin: 0;
  color: var(--text-muted);
  font-size: 0.82rem;
  letter-spacing: 0.02em;
}

.search-panel__list {
  margin: 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 8px;
  max-height: min(46vh, 340px);
  overflow: auto;
  scrollbar-width: thin;
}

.search-result {
  display: grid;
  gap: 3px;
  padding: 10px 12px;
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background:
    radial-gradient(circle at 84% -20%, rgba(0, 187, 255, 0.08), transparent 42%),
    rgba(19, 27, 48, 0.78);
  text-decoration: none;
  color: inherit;
  transition: border-color 160ms ease, transform 160ms ease, background 160ms ease;
}

.search-result:hover,
.search-result:focus-visible {
  transform: translateY(-1px);
  border-color: rgba(157, 236, 55, 0.34);
  background:
    radial-gradient(circle at 84% -20%, rgba(157, 236, 55, 0.13), transparent 44%),
    rgba(21, 31, 55, 0.84);
}

.search-result strong {
  font-size: 0.94rem;
  line-height: 1.3;
}

.search-result span {
  color: var(--text-secondary);
  font-size: 0.82rem;
  line-height: 1.36;
}

.search-result__meta {
  color: var(--brand-info);
  font-size: 0.66rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.search-result--empty {
  padding: 10px 12px;
  border-radius: 12px;
  border: 1px dashed rgba(255, 255, 255, 0.16);
  color: var(--text-secondary);
  background: rgba(255, 255, 255, 0.03);
}

.page-section {
  padding-block: clamp(30px, 4vw, 40px);
}

@supports (content-visibility: auto) {
  main > .page-section:not(.hero):not(.reveal),
  main > section.page-section:not(.hero):not(.reveal) {
    content-visibility: auto;
    contain-intrinsic-size: 1px 780px;
  }
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  align-self: start;
  justify-self: start;
  width: fit-content;
  max-width: 100%;
  gap: 8px;
  min-height: 30px;
  padding: 0 12px;
  border-radius: 999px;
  border: 1px solid rgba(0, 187, 255, 0.2);
  background:
    linear-gradient(180deg, rgba(15, 38, 69, 0.88), rgba(10, 26, 50, 0.72)),
    rgba(10, 25, 48, 0.74);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.1),
    0 8px 18px rgba(2, 8, 22, 0.24);
  color: rgba(234, 246, 255, 0.96);
  font-size: 0.73rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  white-space: nowrap;
}

.section-title {
  margin: 14px 0 0;
  font-size: clamp(1.35rem, 2.4vw, 2.3rem);
  line-height: 1.1;
  letter-spacing: -0.04em;
  text-wrap: balance;
}

.section-lead {
  margin: 12px 0 0;
  max-width: 68ch;
  color: var(--text-secondary);
  font-size: 1rem;
  line-height: 1.56;
  text-wrap: pretty;
}

.link-hub__grid {
  align-items: start;
}

.link-hub__list {
  margin: 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 9px;
}

.link-hub__item {
  display: grid;
  gap: 3px;
  padding: 10px 12px;
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background:
    radial-gradient(circle at 86% -18%, rgba(0, 187, 255, 0.08), transparent 46%),
    rgba(21, 30, 52, 0.74);
  text-decoration: none;
  color: inherit;
  transition: transform 160ms ease, border-color 160ms ease, background 160ms ease;
}

.link-hub__item:hover,
.link-hub__item:focus-visible {
  transform: translateY(-1px);
  border-color: rgba(157, 236, 55, 0.35);
  background:
    radial-gradient(circle at 86% -18%, rgba(157, 236, 55, 0.12), transparent 48%),
    rgba(24, 34, 59, 0.82);
}

.link-hub__item small {
  color: var(--brand-info);
  font-size: 0.66rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.link-hub__item strong {
  font-size: 0.94rem;
  line-height: 1.32;
}

.link-hub__item span {
  color: var(--text-secondary);
  font-size: 0.84rem;
  line-height: 1.35;
}

@media (min-width: 700px) and (max-width: 1099px) {
  .reviews-page [data-reviews-link-hub] .link-hub__grid,
  .review-page [data-review-link-hub] .link-hub__grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: clamp(12px, 1.8vw, 18px);
    align-items: start;
  }

  .reviews-page [data-reviews-link-hub] .link-hub__grid > article:last-child,
  .review-page [data-review-link-hub] .link-hub__grid > article:last-child {
    grid-column: 1 / -1;
  }
}

@media (min-width: 1100px) {
  .reviews-page [data-reviews-link-hub] .link-hub__grid,
  .review-page [data-review-link-hub] .link-hub__grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: clamp(14px, 1.6vw, 20px);
    align-items: start;
  }

  .reviews-page [data-reviews-link-hub] .link-hub__grid > article:last-child,
  .review-page [data-review-link-hub] .link-hub__grid > article:last-child {
    grid-column: auto;
  }
}

@media (max-width: 699px) {
  .link-hub__grid {
    gap: 12px;
  }

  .link-hub__list {
    gap: 8px;
  }
}

.card-grid {
  display: grid;
  gap: clamp(14px, 1.8vw, 20px);
}

.rank-card,
.panel,
.quiz-card,
.faq-item,
.content-card,
.review-card,
.intent-card,
.checklist-card,
.hero-card {
  position: relative;
  background:
    radial-gradient(circle at 84% 116%, rgba(0, 187, 255, 0.1), transparent 36%),
    radial-gradient(circle at 12% 120%, rgba(0, 199, 177, 0.08), transparent 34%),
    linear-gradient(160deg, rgba(18, 27, 48, 0.9), rgba(10, 16, 31, 0.95)),
    var(--bg-surface);
  border: 1px solid rgba(130, 177, 226, 0.2);
  border-radius: var(--radius-md);
  box-shadow:
    0 14px 30px rgba(2, 8, 20, 0.24),
    inset 0 1px 0 rgba(255, 255, 255, 0.08);
}

.rank-card,
.review-card,
.intent-card,
.best-page__step,
.best-page__note,
.review-page__panel,
.content-page__section,
.content-page__callout,
.review-page__verdict,
.trust-item {
  transition: transform 220ms ease, border-color 220ms ease, opacity 220ms ease;
}

a.rank-card:hover,
a.review-card:hover,
a.intent-card:hover,
.rank-card:hover,
.best-page__step:hover {
  transform: translateY(-3px);
  border-color: rgba(98, 188, 240, 0.35);
  box-shadow:
    0 24px 56px rgba(0, 0, 0, 0.28),
    inset 0 1px 0 rgba(255, 255, 255, 0.1);
}

.rank-card,
.review-card,
.intent-card,
.best-page__step,
.best-page__note,
.review-page__panel,
.content-page__section,
.content-page__callout,
.review-page__verdict,
.quiz-step,
.trust-item,
.link-hub__item,
.best-page__link,
.originals-snapshot-card,
.hero-stat {
  overflow: hidden;
  border-radius: var(--surface-radius);
}

a.intent-card {
  min-height: 56px;
  -webkit-tap-highlight-color: rgba(0, 187, 255, 0.22);
}

.best-page__aside > *,
.content-page__article > *,
.review-page__two-col > *,
.originals-review-grid > *,
.originals-snapshot-grid > *,
.link-hub__grid > *,
.best-page__link-grid > * {
  min-width: 0;
}

.best-page__note,
.review-page__panel,
.content-page__section,
.content-page__callout,
.review-page__verdict,
.link-hub__item,
.best-page__link,
.originals-snapshot-card,
.originals-snapshot-copy,
.originals-snapshot-overlay {
  min-width: 0;
}

.originals-snapshot-overlay {
  white-space: normal;
  overflow-wrap: anywhere;
}

.best-page__note *,
.review-page__panel *,
.content-page__section *,
.content-page__callout *,
.review-page__verdict *,
.link-hub__item *,
.best-page__link *,
.originals-snapshot-copy *,
.originals-snapshot-overlay * {
  white-space: normal;
  overflow-wrap: anywhere;
  word-break: normal;
  hyphens: auto;
}

.rank-card {
  display: grid;
  gap: var(--surface-gap);
  padding: var(--surface-pad);
  background:
    radial-gradient(circle at 82% 112%, rgba(0, 187, 255, 0.11), transparent 36%),
    radial-gradient(circle at 14% 116%, rgba(0, 199, 177, 0.09), transparent 34%),
    linear-gradient(162deg, rgba(20, 30, 52, 0.9), rgba(10, 16, 31, 0.94)),
    var(--bg-surface);
}

.rank-card__top,
.review-card__top,
.intent-card__top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.rank-card__brand,
.review-card__brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  min-width: 0;
}

.rank-card__brand > div,
.review-card__brand > div {
  min-width: 0;
}

.rank-card__logo,
.review-card__logo {
  flex: 0 0 auto;
  width: 56px;
  height: 56px;
  border-radius: 16px;
  overflow: hidden;
  background: var(--bg-elevated);
  border: 1px solid var(--border-soft);
}

.rank-card__logo img,
.review-card__logo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.rank-card__name,
.review-card__name {
  margin: 0;
  font-size: 1.05rem;
  letter-spacing: -0.02em;
}

.rank-card__meta,
.review-card__meta {
  margin-top: 2px;
  color: var(--text-muted);
  font-size: 0.86rem;
}

.rank-card__score,
.review-card__score {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 5px;
  min-width: 74px;
  min-height: 42px;
  padding: 10px 14px;
  border-radius: 22px;
  border: 1px solid rgba(176, 245, 78, 0.48);
  background:
    linear-gradient(180deg, var(--card-accent-soft, rgba(189, 238, 0, 0.3)), rgba(255, 255, 255, 0.08)),
    rgba(8, 16, 34, 0.86);
  color: #f7fcff;
  font-weight: 900;
  letter-spacing: 0.01em;
  line-height: 1;
  white-space: nowrap;
  font-variant-numeric: tabular-nums;
  box-shadow:
    0 10px 22px rgba(157, 236, 55, 0.28),
    0 0 0 1px rgba(179, 250, 94, 0.1),
    inset 0 1px 0 rgba(255, 255, 255, 0.24);
}

.rank-card__score span {
  display: block;
  color: rgba(231, 241, 255, 0.95);
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.rank-card__score strong {
  display: block;
  font-size: 1.24rem;
  line-height: 1;
  color: #f7fdff;
  text-shadow:
    0 1px 8px rgba(0, 0, 0, 0.3),
    0 0 10px rgba(157, 236, 55, 0.22);
}

.rank-card__badges {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-top: 8px;
}

.rank-card__badge {
  display: inline-flex;
  align-items: center;
  min-height: 24px;
  padding: 0 9px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.07);
  color: var(--text-secondary);
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.02em;
  white-space: nowrap;
}

.table-subline {
  display: block;
  margin-top: 4px;
  max-width: 34ch;
  color: var(--text-muted);
  font-size: 0.74rem;
  line-height: 1.35;
  font-weight: 500;
}

.rank-card__mobile-score {
  color: #f6fdff;
  font-size: 0.98rem;
  font-weight: 900;
  letter-spacing: -0.01em;
  white-space: nowrap;
  font-variant-numeric: tabular-nums;
  text-shadow: 0 1px 6px rgba(0, 0, 0, 0.22);
}

.rank-card__rail {
  display: grid;
  gap: 10px;
  padding: 14px;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid var(--border-soft);
}

.rank-card__rail-head,
.rank-card__info-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
}

.rank-card__rail-label,
.rank-card__info-title {
  color: var(--text-secondary);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.rank-card__rail-count,
.rank-card__info-count {
  color: var(--text-muted);
  font-size: 0.72rem;
  font-weight: 700;
}

.rank-card__details {
  display: grid;
  gap: 10px;
}

.rank-card__details-summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  min-height: 44px;
  padding: 0 14px;
  border-radius: 14px;
  background: rgba(0, 187, 255, 0.06);
  border: 1px solid rgba(0, 187, 255, 0.12);
  color: var(--text-primary);
  cursor: pointer;
  list-style: none;
  font-weight: 800;
}

.rank-card__details-summary::-webkit-details-marker {
  display: none;
}

.rank-card__details[open] .rank-card__details-summary {
  background: rgba(189, 238, 0, 0.08);
  border-color: rgba(189, 238, 0, 0.16);
}

.rank-card__details-icon {
  color: var(--brand-primary);
}

.rank-card__expanded {
  display: grid;
  gap: 10px;
}

.rank-card__info-section {
  display: grid;
  gap: 10px;
  padding: 14px;
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid var(--border-soft);
}

.rank-card__info-list {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.rank-card__info-list .tag {
  min-height: 26px;
  padding: 0 10px;
  font-size: 0.74rem;
}

.rank-card__facts,
.review-card__facts,
.intent-card__facts {
  display: grid;
  gap: 8px;
  grid-template-columns: 1fr;
}

.fact {
  padding: 10px 12px;
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.035);
  border: 1px solid var(--border-soft);
}

.fact__label {
  display: block;
  color: var(--text-muted);
  font-size: 0.74rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.fact__value {
  display: block;
  margin-top: 3px;
  font-size: 0.94rem;
  font-weight: 700;
}

.rank-card__tags,
.review-card__tags,
.intent-card__tags,
.tag-row {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.tag {
  display: inline-flex;
  align-items: center;
  min-height: 28px;
  padding: 0 10px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.04);
  color: var(--text-secondary);
  font-size: 0.8rem;
  font-weight: 700;
}

.rank-card__actions,
.review-card__actions,
.hero-actions,
.intent-card__actions,
.page-actions,
.footer-actions,
.card-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.btn-primary,
.btn-secondary,
.btn-ghost {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: var(--cta-h);
  padding: 0 16px;
  border-radius: 14px;
  font-weight: 800;
  letter-spacing: -0.01em;
  transition: transform 160ms ease, border-color 160ms ease, background-color 160ms ease, color 160ms ease, opacity 160ms ease;
}

.btn-primary {
  background: linear-gradient(135deg, var(--brand-primary), var(--brand-secondary) 54%, var(--brand-info));
  color: var(--brand-ink);
  box-shadow: var(--shadow-pop);
}

.btn-secondary {
  background: rgba(0, 187, 255, 0.06);
  border: 1px solid rgba(0, 187, 255, 0.16);
  color: var(--text-primary);
}

.home .rank-card,
.home .review-card,
.home .intent-card,
.home .quiz-card,
.home .faq-item,
.home .trust-item {
  box-shadow:
    0 16px 36px rgba(1, 8, 20, 0.3),
    inset 0 1px 0 rgba(255, 255, 255, 0.1),
    inset 0 -1px 0 rgba(8, 13, 24, 0.6);
}

.home #top-picks .rank-card__fineprint,
.home #rankings .rank-card__fineprint {
  display: none;
}

.btn-ghost {
  background: transparent;
  border: 1px solid transparent;
  color: var(--text-secondary);
}

.btn-primary:hover {
  box-shadow: 0 20px 48px rgba(0, 199, 177, 0.28);
  filter: saturate(1.04);
}

.btn-secondary:hover,
.btn-ghost:hover {
  background: rgba(255, 255, 255, 0.07);
}

.btn-primary:active,
.btn-secondary:active,
.btn-ghost:active,
.chip:active,
.mobile-actions a:active,
.mobile-actions button:active {
  transform: translateY(0);
}

.chip {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 0 14px;
  border-radius: 999px;
  background: var(--bg-elevated);
  border: 1px solid var(--border-soft);
  color: var(--text-secondary);
  font-weight: 700;
  white-space: nowrap;
  transition: transform 160ms ease, background 160ms ease, color 160ms ease, border-color 160ms ease, box-shadow 160ms ease;
}

.chip:hover {
  transform: translateY(-1px);
  border-color: rgba(0, 187, 255, 0.18);
  box-shadow: 0 10px 22px rgba(0, 0, 0, 0.16);
}

.chip.is-active {
  background: linear-gradient(135deg, var(--brand-primary), var(--brand-secondary) 58%, var(--brand-info));
  border-color: rgba(0, 187, 255, 0.26);
  color: var(--brand-ink);
}

.chip-row,
.filter-row,
.payment-row,
.provider-row,
.link-row {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.chip-row--scroll,
.filter-row--scroll,
.payment-row--scroll,
.provider-row--scroll {
  flex-wrap: nowrap;
  overflow-x: auto;
  overflow-y: hidden;
  overscroll-behavior-x: contain;
  -webkit-overflow-scrolling: touch;
  scroll-snap-type: x proximity;
  scroll-padding-inline: 2px;
  padding-top: 2px;
  padding-bottom: 7px;
  scrollbar-width: none;
}

.provider-row--scroll {
  padding-bottom: 8px;
  scrollbar-width: thin;
  scrollbar-color: rgba(109, 170, 214, 0.56) rgba(255, 255, 255, 0.08);
}

.provider-row--scroll > * {
  scroll-snap-align: start;
}

.chip-row--scroll .chip:hover,
.filter-row--scroll .chip:hover {
  transform: none;
}

.chip-row--scroll::-webkit-scrollbar,
.filter-row--scroll::-webkit-scrollbar,
.payment-row--scroll::-webkit-scrollbar {
  display: none;
}

.provider-row--scroll::-webkit-scrollbar {
  height: 8px;
}

.provider-row--scroll::-webkit-scrollbar-track {
  background: rgba(255, 255, 255, 0.06);
  border-radius: 999px;
}

.provider-row--scroll::-webkit-scrollbar-thumb {
  background:
    linear-gradient(90deg, rgba(189, 238, 0, 0.72), rgba(0, 187, 255, 0.7));
  border-radius: 999px;
}

.provider-row--scroll::-webkit-scrollbar-thumb:hover {
  background:
    linear-gradient(90deg, rgba(189, 238, 0, 0.84), rgba(0, 187, 255, 0.82));
}

@media (hover: hover) and (pointer: fine) {
  .provider-row--scroll {
    cursor: grab;
  }

  .provider-row--scroll.is-dragging {
    cursor: grabbing;
  }
}

.rank-card__expanded .provider-row {
  gap: 10px;
  align-items: stretch;
}

.rank-card__expanded .provider-pill {
  position: relative;
  display: grid;
  grid-template-rows: 50px auto;
  justify-items: center;
  align-content: start;
  gap: 8px;
  flex: 0 0 auto;
  min-width: 94px;
  min-height: 110px;
  padding: 9px 8px 10px;
  border-radius: 14px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.06), rgba(255, 255, 255, 0.012)),
    rgba(12, 20, 38, 0.7);
  border: 1px solid rgba(255, 255, 255, 0.12);
}

.rank-card__expanded .provider-pill img {
  width: 44px;
  height: 44px;
  padding: 3px;
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  display: block;
  margin-inline: auto;
  box-sizing: border-box;
  object-fit: contain;
  object-position: center;
}

.rank-card__expanded .provider-pill::after {
  content: attr(data-provider);
  display: -webkit-box;
  max-width: 78px;
  min-height: 2.52em;
  color: rgba(233, 240, 255, 0.9);
  font-size: 0.69rem;
  line-height: 1.26;
  text-align: center;
  font-weight: 700;
  letter-spacing: 0.01em;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  overflow: hidden;
  text-transform: none;
}

.coin-pill {
  display: grid;
  place-items: center;
  flex: 0 0 auto;
  position: relative;
  overflow: hidden;
  width: 52px;
  height: 52px;
  padding: 5px;
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid var(--border-soft);
  color: #eef4ff;
  font-weight: 800;
  letter-spacing: 0.02em;
  text-transform: uppercase;
}

.coin-pill img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: contain;
  opacity: 0;
  transition: opacity 160ms ease;
}

.coin-pill::before {
  content: attr(data-symbol);
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 6px;
  border-radius: inherit;
  background:
    radial-gradient(circle at 20% 24%, rgba(255, 255, 255, 0.1), transparent 45%),
    linear-gradient(145deg, rgba(0, 187, 255, 0.22), rgba(189, 238, 0, 0.2));
  font-size: 0.72rem;
  line-height: 1;
  opacity: 0.96;
  transition: opacity 160ms ease;
}

.coin-pill.is-loaded::before {
  opacity: 0;
}

.coin-pill.is-loaded img {
  opacity: 1;
}

.coin-pill.is-fallback::before {
  opacity: 1;
}

.coin-pill.is-fallback img {
  display: none;
}

.mini-panel {
  padding: 14px;
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.035);
  border: 1px solid var(--border-soft);
}

.inline-sep {
  width: 1px;
  align-self: stretch;
  background: var(--border-soft);
}

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

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

.faq-item {
  overflow: clip;
  border-radius: 16px;
  border: 1px solid rgba(128, 170, 220, 0.24);
  background:
    radial-gradient(circle at 92% 10%, rgba(0, 187, 255, 0.11), transparent 34%),
    linear-gradient(165deg, rgba(17, 30, 52, 0.86), rgba(9, 16, 32, 0.92));
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.06),
    0 10px 24px rgba(2, 8, 18, 0.24);
  transition: border-color 180ms ease, box-shadow 180ms ease, background 180ms ease;
}

.faq-item:hover {
  border-color: rgba(163, 211, 250, 0.38);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.08),
    0 14px 28px rgba(2, 8, 18, 0.3);
}

.faq-item[data-open="true"] {
  border-color: rgba(189, 238, 0, 0.34);
  background:
    radial-gradient(circle at 92% 10%, rgba(189, 238, 0, 0.12), transparent 36%),
    linear-gradient(165deg, rgba(18, 32, 55, 0.9), rgba(9, 17, 33, 0.94));
}

.accordion-trigger {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: center;
  gap: 12px;
  width: 100%;
  min-height: 58px;
  padding: 12px 16px;
  text-align: left;
  font-weight: 800;
  font-size: 0.98rem;
  line-height: 1.34;
}

.accordion-trigger > span:first-child {
  min-width: 0;
  overflow-wrap: anywhere;
}

.accordion-trigger > span:last-child {
  position: relative;
  width: 28px;
  height: 28px;
  border-radius: 9px;
  display: grid;
  place-items: center;
  flex: 0 0 auto;
  font-size: 0;
  border: 1px solid rgba(122, 214, 233, 0.34);
  background: rgba(0, 187, 255, 0.12);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.08);
}

.accordion-trigger > span:last-child::before {
  content: "+";
  font-size: 1rem;
  line-height: 1;
  font-weight: 800;
  color: rgba(200, 240, 255, 0.97);
}

.faq-item[data-open="true"] .accordion-trigger > span:last-child {
  border-color: rgba(189, 238, 0, 0.44);
  background: rgba(189, 238, 0, 0.17);
}

.faq-item[data-open="true"] .accordion-trigger > span:last-child::before {
  content: "−";
  transform: translateY(-1px);
  color: rgba(232, 255, 176, 0.98);
}

.accordion-panel {
  display: grid;
  gap: 10px;
  padding: 0 16px 16px;
  color: var(--text-secondary);
  line-height: 1.56;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  margin-top: -1px;
}

.accordion-panel[hidden] {
  display: none;
}

.accordion-panel p {
  margin: 0;
}

.table-scroll {
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  border-radius: 18px;
  border: 1px solid var(--border-soft);
  background: rgba(255, 255, 255, 0.02);
  scrollbar-width: none;
}

.table-scroll::-webkit-scrollbar {
  display: none;
}

.table-scroll table {
  width: 100%;
  border-collapse: collapse;
  min-width: 960px;
}

.table-scroll th,
.table-scroll td {
  padding: 12px 10px;
  border-bottom: 1px solid var(--border-soft);
  text-align: left;
  vertical-align: top;
}

.table-scroll th {
  color: var(--text-muted);
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.table-scroll caption {
  caption-side: top;
  padding: 2px 4px 12px;
  color: var(--text-muted);
  text-align: left;
  font-size: 0.9rem;
  line-height: 1.35;
}

.table-scroll--comparison .compare-table caption {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.compare-table {
  border-spacing: 0;
}

.compare-table thead th {
  position: sticky;
  top: 0;
  z-index: 4;
  background: rgba(17, 21, 37, 0.96);
  backdrop-filter: blur(10px);
}

.compare-table tbody tr:nth-child(odd) td,
.compare-table tbody tr:nth-child(odd) th[scope="row"] {
  background: rgba(255, 255, 255, 0.018);
}

.compare-table tbody tr:hover td,
.compare-table tbody tr:hover th[scope="row"] {
  background: rgba(0, 199, 177, 0.06);
}

.compare-table tbody th[scope="row"] {
  position: sticky;
  left: 0;
  z-index: 3;
  background: rgba(17, 21, 37, 0.98);
}

@media (min-width: 700px) {
  .table-scroll--comparison {
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    background: rgba(11, 18, 37, 0.72);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.03);
  }

  .table-scroll--comparison .compare-table thead th {
    background: rgba(8, 16, 33, 0.92);
    backdrop-filter: none;
  }

  .table-scroll--comparison .compare-table tbody tr:nth-child(odd) td,
  .table-scroll--comparison .compare-table tbody tr:nth-child(odd) th[scope="row"] {
    background: rgba(255, 255, 255, 0.02);
  }
}

.table-rank {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 64px;
  min-height: 42px;
  padding: 0 14px;
  border-radius: 999px;
  border: 1px solid rgba(176, 245, 78, 0.5);
  background: linear-gradient(135deg, rgba(189, 238, 0, 0.34), rgba(0, 199, 177, 0.28));
  color: #f7fdff;
  font-weight: 900;
  font-size: 1rem;
  letter-spacing: 0.01em;
  line-height: 1;
  white-space: nowrap;
  font-variant-numeric: tabular-nums;
  box-shadow:
    0 8px 18px rgba(0, 0, 0, 0.24),
    0 0 0 1px rgba(179, 250, 94, 0.1),
    inset 0 1px 0 rgba(255, 255, 255, 0.26);
}

.table-entity {
  display: flex;
  align-items: center;
  gap: 11px;
  min-width: 0;
}

.table-entity__logo {
  flex: 0 0 auto;
  width: 42px;
  height: 42px;
  border-radius: 13px;
  overflow: hidden;
  border: 1px solid var(--border-soft);
  background: rgba(255, 255, 255, 0.03);
}

.table-entity__logo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.table-entity strong {
  display: block;
  font-size: 0.96rem;
  line-height: 1.2;
}

.table-entity span {
  display: block;
  color: var(--text-muted);
  font-size: 0.82rem;
}

.table-chip-row {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}

.table-chip {
  display: inline-flex;
  align-items: center;
  min-height: 24px;
  padding: 0 8px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.04);
  color: var(--text-secondary);
  font-size: 0.74rem;
  font-weight: 700;
}

.table-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.table-actions .btn-primary,
.table-actions .btn-secondary {
  min-height: 44px;
  padding-inline: 12px;
  font-size: 0.82rem;
}

.table-block {
  display: grid;
  gap: 22px;
  padding-top: 16px;
}

.table-note {
  margin: 0;
  color: var(--text-muted);
  font-size: 0.88rem;
}

.empty-state {
  padding: 16px;
  border-radius: 16px;
  border: 1px dashed rgba(0, 187, 255, 0.2);
  background: rgba(255, 255, 255, 0.03);
  color: var(--text-secondary);
  text-align: center;
}

.compare-table--facts {
  min-width: 760px;
}

.table-v1 tbody th[scope="row"],
.table-v1 tbody td {
  line-height: 1.45;
  text-wrap: pretty;
  overflow-wrap: anywhere;
  vertical-align: top;
}

.table-v1 td[data-label="Best for"],
.table-v1 td[data-label="Why it wins"],
.table-v1 td[data-label="Why it matters"] {
  max-width: 36ch;
}

.table-v1 td[data-label="Bonuses"],
.table-v1 td[data-label="Languages"],
.table-v1 td[data-label="Value"] {
  max-width: 42ch;
}

.table-v1 .table-subline {
  margin-top: 4px;
  max-width: 42ch;
  line-height: 1.38;
  text-wrap: pretty;
  overflow-wrap: anywhere;
}

.site-footer {
  position: relative;
  margin-top: clamp(20px, 2.8vw, 34px);
  padding: clamp(18px, 2.6vw, 30px) 0 calc(88px + env(safe-area-inset-bottom));
  margin-bottom: 78px;
  border-top: 1px solid rgba(130, 180, 230, 0.3);
  background:
    radial-gradient(circle at 8% 0%, rgba(0, 187, 255, 0.12), transparent 38%),
    radial-gradient(circle at 92% 100%, rgba(189, 238, 0, 0.1), transparent 42%),
    linear-gradient(180deg, rgba(11, 17, 32, 0.9), rgba(8, 13, 26, 0.98));
  overflow: clip;
}

.site-footer::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    linear-gradient(90deg, rgba(189, 238, 0, 0.18), rgba(0, 199, 177, 0.14), rgba(0, 187, 255, 0.2));
  opacity: 0.26;
}

.site-footer__inner {
  position: relative;
  z-index: 1;
  display: grid;
  gap: clamp(14px, 2vw, 22px);
}

.footer-top {
  display: grid;
  gap: clamp(12px, 1.6vw, 18px);
  grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr);
}

.footer-brand {
  display: grid;
  gap: 12px;
  padding: clamp(14px, 1.8vw, 18px);
  border-radius: 18px;
  border: 1px solid rgba(145, 184, 224, 0.24);
  background:
    radial-gradient(circle at top right, rgba(0, 187, 255, 0.12), transparent 38%),
    linear-gradient(160deg, rgba(19, 30, 53, 0.86), rgba(10, 18, 34, 0.92));
}

.footer-brand .brand {
  display: inline-flex;
  align-items: center;
  min-height: 44px;
}

.footer-copy {
  margin: 0;
  color: rgba(214, 227, 245, 0.9);
  max-width: 62ch;
}

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

.footer-insights li {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 8px;
  align-items: start;
  color: rgba(190, 210, 236, 0.92);
  font-size: 0.9rem;
  line-height: 1.45;
}

.footer-insights li::before {
  content: "";
  width: 6px;
  height: 6px;
  margin-top: 0.52em;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--brand-primary), var(--brand-secondary));
}

.footer-insights a {
  display: inline-flex;
  align-items: center;
  min-height: 40px;
  padding-block: 4px;
  color: rgba(220, 240, 255, 0.96);
  text-decoration: underline;
  text-decoration-color: rgba(0, 187, 255, 0.35);
  text-underline-offset: 3px;
}

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

.footer-language {
  display: flex;
  justify-content: flex-end;
}

.footer-language .lang-switcher {
  width: auto;
}

.footer-language .lang-switcher__select {
  min-width: 74px;
}

.footer-links {
  display: grid;
  gap: 7px;
  padding: 12px;
  border-radius: 15px;
  border: 1px solid rgba(145, 184, 224, 0.2);
  background:
    linear-gradient(165deg, rgba(17, 27, 48, 0.88), rgba(9, 16, 31, 0.92));
}

.footer-links strong {
  font-size: 0.82rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: rgba(175, 205, 236, 0.95);
  margin-bottom: 2px;
}

.footer-links a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
  min-height: 40px;
  padding: 6px 8px;
  border-radius: 10px;
  color: rgba(213, 227, 244, 0.9);
  text-decoration: none;
  transition: background 180ms ease, color 180ms ease, transform 180ms ease;
}

.footer-links a::after {
  content: "→";
  color: rgba(122, 212, 230, 0.72);
  transform: translateX(-2px);
  transition: transform 180ms ease, color 180ms ease;
}

.footer-links a:hover {
  color: #f4fbff;
  background: rgba(0, 187, 255, 0.1);
  transform: translateX(1px);
}

.footer-links a:hover::after {
  transform: translateX(0);
  color: rgba(177, 236, 255, 0.95);
}

.footer-utility {
  display: grid;
  gap: 12px;
  padding: clamp(14px, 1.8vw, 20px);
  border-radius: 18px;
  border: 1px solid rgba(145, 184, 224, 0.24);
  background:
    radial-gradient(circle at top left, rgba(189, 238, 0, 0.08), transparent 34%),
    linear-gradient(165deg, rgba(17, 27, 48, 0.9), rgba(9, 15, 29, 0.95));
}

.footer-utility__kicker {
  margin: 0;
  font-size: 0.72rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(153, 190, 224, 0.82);
}

.footer-utility__title {
  margin: 0;
  font-size: clamp(1rem, 1.6vw, 1.2rem);
  line-height: 1.2;
  color: rgba(238, 246, 255, 0.98);
}

.footer-utility__intro {
  margin: 0;
  color: rgba(205, 221, 242, 0.9);
  line-height: 1.5;
}

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

.footer-cta {
  display: grid;
  gap: 3px;
  min-height: 44px;
  padding: 10px 12px;
  border-radius: 12px;
  border: 1px solid rgba(145, 184, 224, 0.2);
  background: rgba(255, 255, 255, 0.025);
  color: rgba(224, 237, 252, 0.94);
  text-decoration: none;
  transition: transform 180ms ease, border-color 180ms ease, background 180ms ease;
}

.footer-cta strong {
  font-size: 0.89rem;
  line-height: 1.2;
}

.footer-cta span {
  font-size: 0.76rem;
  color: rgba(177, 202, 229, 0.95);
  line-height: 1.35;
}

.footer-cta:hover {
  transform: translateY(-1px);
  border-color: rgba(0, 187, 255, 0.34);
  background: rgba(0, 187, 255, 0.08);
}

.footer-cta--primary {
  border-color: rgba(154, 223, 70, 0.4);
  background: linear-gradient(138deg, rgba(189, 238, 0, 0.2), rgba(0, 187, 255, 0.12));
}

.footer-chip-cloud {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.footer-chip {
  display: inline-flex;
  align-items: center;
  min-height: 40px;
  padding: 0 11px;
  border-radius: 999px;
  border: 1px solid rgba(145, 184, 224, 0.2);
  color: rgba(211, 226, 245, 0.94);
  text-decoration: none;
  background: rgba(255, 255, 255, 0.03);
  font-size: 0.81rem;
  line-height: 1;
  transition: border-color 180ms ease, color 180ms ease, background 180ms ease;
}

.footer-chip:hover {
  color: #effaff;
  border-color: rgba(0, 187, 255, 0.36);
  background: rgba(0, 187, 255, 0.12);
}

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

.footer-stat {
  display: grid;
  gap: 4px;
  padding: 10px 12px;
  border-radius: 12px;
  border: 1px solid rgba(145, 184, 224, 0.18);
  background: rgba(5, 10, 20, 0.25);
}

.footer-stat__label {
  margin: 0;
  color: rgba(156, 190, 221, 0.9);
  font-size: 0.73rem;
  letter-spacing: 0.03em;
  text-transform: uppercase;
}

.footer-stat__value {
  margin: 0;
  color: rgba(234, 244, 255, 0.98);
  font-size: 0.9rem;
  line-height: 1.35;
}

.footer-note {
  margin: 0;
  padding-top: 12px;
  border-top: 1px solid rgba(145, 184, 224, 0.2);
  color: rgba(173, 196, 222, 0.9);
  font-size: 0.83rem;
  line-height: 1.45;
}

.footer-note__updated {
  display: inline-block;
  margin-left: 6px;
  color: rgba(203, 222, 244, 0.95);
}

@media (max-width: 1024px) {
  .footer-actions {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 899px) {
  .footer-top {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 699px) {
  .site-footer {
    padding-top: 18px;
  }

  .footer-brand,
  .footer-links,
  .footer-utility {
    border-radius: 16px;
  }

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

  .footer-note__updated {
    display: block;
    margin: 6px 0 0;
  }
}

.mobile-actions {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 80;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 8px;
  padding: 8px var(--page-pad) calc(8px + env(safe-area-inset-bottom));
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  background: linear-gradient(180deg, rgba(17, 21, 37, 0), rgba(17, 21, 37, 0.92) 22%, rgba(17, 21, 37, 0.98));
  backdrop-filter: blur(12px);
  transition: transform 220ms ease, opacity 220ms ease;
}

body.mobile-actions-hidden .mobile-actions {
  transform: translateY(calc(100% + 14px));
  opacity: 0.2;
  pointer-events: none;
}

.mobile-actions a,
.mobile-actions button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 0 8px;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid var(--border-soft);
  color: var(--text-primary);
  font-size: 0.78rem;
  font-weight: 700;
  box-shadow: 0 12px 26px rgba(0, 0, 0, 0.16);
  transition: transform 160ms ease, border-color 160ms ease, background 160ms ease, box-shadow 160ms ease;
}

.mobile-actions a:hover,
.mobile-actions button:hover {
  transform: translateY(-1px);
  border-color: rgba(0, 187, 255, 0.2);
}

.mobile-actions .cta-primary {
  background: linear-gradient(135deg, var(--brand-primary), var(--brand-info));
  color: var(--brand-ink);
}

.install-toast {
  position: fixed;
  left: max(12px, env(safe-area-inset-left));
  right: max(12px, env(safe-area-inset-right));
  bottom: calc(14px + env(safe-area-inset-bottom));
  z-index: 132;
  display: grid;
  gap: 10px;
  padding: 12px;
  border-radius: 16px;
  border: 1px solid rgba(188, 238, 0, 0.28);
  background:
    radial-gradient(circle at 10% 0, rgba(189, 238, 0, 0.16), transparent 52%),
    linear-gradient(145deg, rgba(16, 24, 44, 0.92), rgba(10, 16, 31, 0.94));
  box-shadow:
    0 20px 44px rgba(4, 8, 18, 0.58),
    0 0 0 1px rgba(120, 216, 235, 0.15) inset;
  backdrop-filter: blur(14px);
  opacity: 0;
  transform: translateY(16px);
  pointer-events: none;
  transition: transform 200ms ease, opacity 200ms ease;
}

.install-toast.is-visible {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}

.install-toast__head {
  display: flex;
  align-items: center;
  gap: 8px;
}

.install-toast__badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 38px;
  min-height: 24px;
  padding: 0 9px;
  border-radius: 999px;
  background: rgba(0, 187, 255, 0.16);
  border: 1px solid rgba(0, 187, 255, 0.28);
  color: #a3eaff;
  font-size: 0.7rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.07em;
}

.install-toast__title {
  font-family: var(--font-display);
  font-size: 0.95rem;
  line-height: 1.2;
  color: var(--text-primary);
}

.install-toast__body {
  margin: 0;
  color: var(--text-secondary);
  font-size: 0.83rem;
  line-height: 1.35;
}

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

.install-toast__btn {
  min-height: 38px;
  border-radius: 11px;
  border: 1px solid transparent;
  font-size: 0.8rem;
  font-weight: 800;
  cursor: pointer;
  transition: transform 140ms ease, border-color 140ms ease, background 140ms ease;
}

.install-toast__btn:hover {
  transform: translateY(-1px);
}

.install-toast__btn--primary {
  color: #0d1824;
  background: linear-gradient(135deg, var(--brand-primary), var(--brand-secondary) 65%, var(--brand-info));
  box-shadow: 0 10px 24px rgba(0, 187, 255, 0.18);
}

.install-toast__btn--ghost {
  color: var(--text-primary);
  border-color: rgba(255, 255, 255, 0.18);
  background: rgba(255, 255, 255, 0.06);
}

body.has-mobile-actions:not(.mobile-actions-hidden) .install-toast {
  bottom: calc(88px + env(safe-area-inset-bottom));
}

body.has-mobile-actions main {
  padding-bottom: calc(92px + env(safe-area-inset-bottom));
}

.scroll-top {
  --scroll-progress: 0;
  --scroll-radius: 16px;
  position: fixed;
  right: max(12px, env(safe-area-inset-right));
  bottom: calc(14px + env(safe-area-inset-bottom));
  z-index: 135;
  width: 54px;
  height: 54px;
  display: grid;
  place-items: center;
  padding: 0;
  border-radius: var(--scroll-radius);
  border: 1px solid rgba(166, 206, 241, 0.46);
  color: rgba(235, 246, 255, 0.98);
  background: linear-gradient(160deg, rgba(19, 33, 55, 0.82), rgba(10, 20, 39, 0.88));
  box-shadow:
    0 12px 24px rgba(2, 9, 22, 0.34),
    inset 0 1px 0 rgba(255, 255, 255, 0.16);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  cursor: pointer;
  opacity: 0;
  pointer-events: none;
  transform: translateY(14px) scale(0.9);
  transition: opacity 220ms ease, transform 220ms ease, border-color 200ms ease, box-shadow 200ms ease, color 180ms ease, background 200ms ease;
  isolation: isolate;
  overflow: hidden;
}

.scroll-top::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background: linear-gradient(140deg, rgba(189, 238, 0, 0.2), rgba(0, 187, 255, 0.18));
  opacity: 0.24;
  pointer-events: none;
}

.scroll-top::after {
  content: "";
  position: absolute;
  inset: 1px;
  border-radius: calc(var(--scroll-radius) - 1px);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0) 48%),
    linear-gradient(150deg, rgba(16, 30, 52, 0.84), rgba(9, 17, 34, 0.86));
  border: 1px solid rgba(255, 255, 255, 0.12);
  z-index: -1;
  pointer-events: none;
}

.scroll-top__icon {
  position: relative;
  z-index: 1;
  display: grid;
  place-items: center;
  width: 24px;
  height: 24px;
}

.scroll-top__icon svg {
  display: block;
  width: 100%;
  height: 100%;
  shape-rendering: geometricPrecision;
}

.scroll-top.is-visible {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0) scale(1);
}

.scroll-top:hover {
  transform: translateY(-2px) scale(1.01);
  color: #f2fbff;
  border-color: rgba(177, 236, 255, 0.72);
  background: linear-gradient(160deg, rgba(23, 38, 62, 0.88), rgba(12, 23, 44, 0.9));
  box-shadow:
    0 16px 30px rgba(2, 9, 22, 0.42),
    0 0 0 1px rgba(177, 236, 255, 0.2) inset;
}

.scroll-top:active {
  transform: translateY(0) scale(0.97);
}

.scroll-top:focus-visible {
  outline: none;
  box-shadow:
    var(--focus-ring),
    0 12px 24px rgba(2, 9, 22, 0.38);
}

.scroll-top--lite {
  border-color: rgba(174, 214, 244, 0.48);
  background: linear-gradient(160deg, rgba(20, 35, 58, 0.8), rgba(10, 19, 37, 0.84));
  box-shadow:
    0 10px 20px rgba(2, 9, 22, 0.28),
    inset 0 1px 0 rgba(255, 255, 255, 0.14);
}

body.has-mobile-actions:not(.mobile-actions-hidden) .scroll-top {
  bottom: calc(88px + env(safe-area-inset-bottom));
}

.mobile-only {
  display: block;
}

.desktop-only {
  display: none;
}

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

.muted {
  color: var(--text-muted);
}

.sr-announcement {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
}

.reveal {
  opacity: 1;
  transform: none;
  transition: opacity 240ms ease, transform 240ms ease;
  will-change: auto;
}

.reveal.is-visible {
  opacity: 1;
  transform: none;
}

@media (max-width: 699px) {
  .reveal {
    opacity: 1;
    transform: none;
    transition: none;
    will-change: auto;
  }
}

@keyframes ticker-scroll {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-50%);
  }
}

@media (min-width: 700px) {
  :root {
    --header-h: 64px;
    --ticker-h: 36px;
  }

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

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

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

  .rank-card__top {
    align-items: flex-start;
  }

  .rank-card__details {
    padding-top: 2px;
  }

  .mobile-actions {
    display: none;
  }

  .mobile-only {
    display: none;
  }

  .desktop-only {
    display: block;
  }

  .site-footer {
    padding-bottom: 28px;
    margin-bottom: 0;
  }

  .scroll-top {
    --scroll-radius: 18px;
    right: 18px;
    bottom: 18px;
    width: 58px;
    height: 58px;
  }

  .scroll-top__icon {
    width: 25px;
    height: 25px;
  }

  .install-toast {
    left: auto;
    right: 18px;
    width: min(420px, calc(100vw - 36px));
    bottom: 18px;
  }

  body.has-mobile-actions:not(.mobile-actions-hidden) .install-toast {
    bottom: 18px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .ticker__track {
    animation: none;
  }

  .reveal,
  .reveal.is-visible,
  .mobile-actions,
  .nav-drawer__panel,
  .install-toast,
  .search-panel,
  .rank-card,
  .review-card,
  .intent-card,
  .best-page__step,
  .btn-primary,
  .btn-secondary,
  .btn-ghost,
  .chip {
    transition: none;
    transform: none;
    opacity: 1;
  }

  .scroll-top,
  .scroll-top.is-visible {
    transition: none;
  }
}

@media (min-width: 900px) {
  .section-title {
    font-size: clamp(1.8rem, 2.2vw, 3rem);
  }

  .rank-card {
    padding: 22px;
  }
}

@media (max-width: 699px) {
  a.intent-card {
    min-height: 64px;
  }

  .best-page .ticker,
  .reviews-page .ticker,
  .content-page .ticker {
    display: none;
  }

  .best-page .app-header,
  .reviews-page .app-header,
  .content-page .app-header {
    top: 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    background: rgba(9, 15, 30, 0.94);
    backdrop-filter: blur(14px);
  }

  .best-page main,
  .reviews-page main,
  .content-page main {
    display: grid;
    gap: 12px;
    padding-bottom: calc(96px + env(safe-area-inset-bottom));
  }

  .best-page main > .page-section,
  .reviews-page main > .page-section,
  .content-page main > .page-section {
    padding-block: 0;
  }

  .best-page main > .page-section > .section-shell,
  .reviews-page main > .page-section > .section-shell,
  .content-page main > .page-section > .section-shell {
    width: auto;
    margin-inline: 12px;
  }

  .best-page .section-title,
  .reviews-page .section-title,
  .content-page .section-title {
    font-size: clamp(1.2rem, 5.5vw, 1.5rem);
    line-height: 1.08;
    letter-spacing: -0.03em;
  }

  .best-page .section-lead,
  .reviews-page .section-lead,
  .content-page .section-lead {
    font-size: 1rem;
    line-height: 1.5;
  }

  .rank-card__expanded .provider-row {
    gap: 10px;
  }

  .rank-card__expanded .provider-row--scroll {
    padding-bottom: 9px;
  }

  .rank-card__details[open] .rank-card__expanded {
    margin-top: 8px;
  }

  .rank-card__expanded .provider-pill {
    min-width: 86px;
    min-height: 98px;
    grid-template-rows: 42px auto;
    gap: 6px;
    padding: 7px 6px 8px;
    border-radius: 12px;
  }

  .rank-card__expanded .provider-pill img {
    width: 36px;
    height: 36px;
    padding: 3px;
    border-radius: 9px;
  }

  .rank-card__expanded .provider-pill::after {
    max-width: 72px;
    font-size: 0.63rem;
  }

  .best-page .hero__kicker,
  .reviews-page .hero__kicker,
  .content-page .hero__kicker {
    margin-bottom: 2px;
  }

  .best-page .mobile-actions,
  .reviews-page .mobile-actions,
  .content-page .mobile-actions {
    display: grid !important;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 120;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 8px;
    padding: 10px 12px calc(10px + env(safe-area-inset-bottom));
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    background: rgba(8, 14, 28, 0.96);
    backdrop-filter: blur(16px);
  }

  .best-page .mobile-actions button,
  .best-page .mobile-actions a,
  .reviews-page .mobile-actions button,
  .reviews-page .mobile-actions a,
  .content-page .mobile-actions button,
  .content-page .mobile-actions a {
    min-height: 44px;
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    background: rgba(255, 255, 255, 0.04);
    color: rgba(255, 255, 255, 0.9);
    font-size: 0.78rem;
    font-weight: 700;
    box-shadow: none;
  }

  .best-page .mobile-actions .cta-primary,
  .reviews-page .mobile-actions .cta-primary,
  .content-page .mobile-actions .cta-primary {
    border-color: rgba(25, 211, 215, 0.24);
    background: linear-gradient(135deg, #9dec37, #19d3d7);
    color: #07131f;
  }
}

@supports (content-visibility: auto) {
  @media (max-width: 699px) {
    main > .page-section:not(.hero),
    main > section.page-section:not(.hero) {
      content-visibility: auto;
      contain-intrinsic-size: 1px 720px;
    }
  }
}

@media (max-width: 699px) {
  .ticker,
  .app-header,
  .search-panel,
  .mobile-actions,
  .install-toast,
  .scroll-top,
  .nav-drawer__backdrop {
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
  }

  .ticker__track {
    will-change: auto;
    animation-duration: 40s;
  }

  .mobile-actions a,
  .mobile-actions button {
    box-shadow: none;
  }

  .scroll-top {
    box-shadow: 0 10px 20px rgba(1, 7, 18, 0.32);
  }

  .scroll-top::before {
    display: none;
  }

  .scroll-top::after {
    inset: 0;
    border-radius: inherit;
    border-color: rgba(255, 255, 255, 0.1);
  }

  .scroll-top--lite {
    transition: opacity 180ms ease, transform 180ms ease;
  }
}

@media (max-width: 479px) {
  .trust-strip__meta {
    grid-template-columns: 1fr;
  }

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

  .search-panel__top {
    flex-direction: column;
  }

  .search-panel__meta {
    align-items: stretch;
  }

  .search-panel__meta .btn-secondary {
    width: 100%;
  }
}

@media (max-width: 379px) {
  .brand {
    gap: 8px;
  }

  .brand__tagline {
    display: none;
  }

  .brand__name {
    font-size: 0.95rem;
  }

  .header-actions {
    gap: 6px;
  }

  .icon-btn,
  .menu-btn,
  .lang-switcher__select {
    padding-inline: 10px;
  }

  .lang-switcher__select {
    min-width: 56px;
    font-size: 0.76rem;
    letter-spacing: 0.02em;
    padding-right: 22px;
    background-position: 0 0, right 8px center;
  }

  .scroll-top {
    --scroll-radius: 14px;
    width: 50px;
    height: 50px;
  }

  .scroll-top__icon {
    width: 22px;
    height: 22px;
  }
}

.app-header .brand__tagline {
  display: none;
}

#google_translate_element {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(1px, 1px, 1px, 1px);
  clip-path: inset(50%);
}

body > .skiptranslate,
iframe.goog-te-banner-frame {
  display: none !important;
}

body {
  top: 0 !important;
}

.rank-card,
.panel,
.quiz-card,
.faq-item,
.content-card,
.review-card,
.intent-card,
.checklist-card,
.hero-card,
.review-page__panel,
.content-page__section,
.content-page__callout,
.review-page__verdict,
.best-page__step,
.best-page__note {
  background:
    linear-gradient(168deg, rgba(21, 31, 54, 0.9), rgba(10, 16, 31, 0.95)),
    var(--bg-surface);
  border-color: rgba(132, 171, 216, 0.2);
  box-shadow:
    0 12px 26px rgba(2, 8, 20, 0.22),
    inset 0 1px 0 rgba(255, 255, 255, 0.06);
}

a.rank-card:hover,
a.review-card:hover,
a.intent-card:hover,
.rank-card:hover,
.best-page__step:hover {
  transform: translateY(-2px);
  border-color: rgba(124, 196, 240, 0.34);
  box-shadow:
    0 18px 36px rgba(0, 0, 0, 0.26),
    inset 0 1px 0 rgba(255, 255, 255, 0.09);
}

.rank-card__rail,
.rank-card__info-section,
.fact {
  background: rgba(255, 255, 255, 0.026);
  border-color: rgba(255, 255, 255, 0.12);
}

.table-scroll--comparison {
  border-radius: 18px;
  overflow: auto;
}

.table-scroll--comparison .compare-table thead th:first-child {
  border-top-left-radius: 14px;
  padding-left: 16px;
}

.table-scroll--comparison .compare-table thead th:last-child {
  border-top-right-radius: 14px;
  padding-right: 16px;
}

.table-scroll--comparison .compare-table tbody th[scope="row"] {
  border-right: 1px solid rgba(255, 255, 255, 0.06);
}

.scroll-top {
  border-color: rgba(166, 206, 241, 0.44);
  box-shadow:
    0 12px 24px rgba(2, 9, 22, 0.34),
    inset 0 1px 0 rgba(255, 255, 255, 0.14);
}

.scroll-top::before {
  opacity: 0.24;
}

.best-page main,
.reviews-page main,
.content-page main {
  display: grid;
  gap: clamp(14px, 2vw, 24px);
  padding: clamp(8px, 1.2vw, 14px) 0 clamp(40px, 4.8vw, 60px);
}

.best-page main > .page-section,
.reviews-page main > .page-section,
.content-page main > .page-section {
  padding-block: 0;
}

.best-page main > .page-section > .section-shell,
.reviews-page main > .page-section > .section-shell,
.content-page main > .page-section > .section-shell {
  padding-inline: clamp(16px, 2.1vw, 28px);
}

.rank-card__meta,
.review-card__meta,
.review-page__panel p,
.review-page__panel li,
.review-page__verdict p,
.best-page__step-copy,
.content-page__hero p,
.content-page__section p,
.content-page__section li {
  line-height: 1.58;
  text-wrap: pretty;
}

@media (max-width: 699px) {
  .best-page main,
  .reviews-page main,
  .content-page main {
    gap: 14px;
  }

  .best-page main > .page-section > .section-shell,
  .reviews-page main > .page-section > .section-shell,
  .content-page main > .page-section > .section-shell {
    margin-inline: 12px;
    padding-inline: 12px;
  }
}

.originals-snapshot-grid,
.originals-review-grid {
  display: grid;
  gap: clamp(12px, 1.6vw, 18px);
}

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

.originals-review-grid {
  grid-template-columns: minmax(0, 1.4fr) minmax(280px, 0.9fr);
  align-items: start;
}

.originals-snapshot-card {
  margin: 0;
  display: grid;
  gap: 10px;
}

.originals-snapshot-card--single {
  max-width: 100%;
}

.originals-snapshot-frame {
  position: relative;
  overflow: hidden;
  border-radius: 24px;
  padding: 1px;
  background:
    linear-gradient(135deg, rgba(189, 238, 0, 0.9), rgba(0, 199, 177, 0.38), rgba(0, 187, 255, 0.34)),
    linear-gradient(180deg, rgba(13, 19, 33, 0.98), rgba(8, 12, 22, 0.98));
  box-shadow:
    0 20px 52px rgba(2, 8, 18, 0.38),
    inset 0 1px 0 rgba(255, 255, 255, 0.08);
}

.originals-snapshot-frame::before,
.originals-snapshot-frame::after {
  content: '';
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.originals-snapshot-frame::before {
  background:
    radial-gradient(circle at top left, rgba(255, 255, 255, 0.14), transparent 32%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.04), transparent 22%);
  mix-blend-mode: screen;
}

.originals-snapshot-frame::after {
  inset: 12px;
  border-radius: 18px;
  border: 1px solid rgba(255, 255, 255, 0.06);
}

.originals-snapshot-frame img {
  display: block;
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  border-radius: 23px;
}

.originals-snapshot-badge {
  position: absolute;
  top: 14px;
  left: 14px;
  z-index: 1;
  display: inline-flex;
  align-items: center;
  min-height: 30px;
  padding: 0 10px;
  border-radius: 999px;
  background: rgba(7, 12, 22, 0.72);
  border: 1px solid rgba(255, 255, 255, 0.08);
  color: rgba(245, 250, 255, 0.94);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  backdrop-filter: blur(14px);
}

.originals-snapshot-overlay {
  position: absolute;
  right: 14px;
  bottom: 14px;
  z-index: 1;
  max-width: min(58%, 260px);
  padding: 9px 12px;
  border-radius: 14px;
  background: rgba(7, 12, 22, 0.7);
  border: 1px solid rgba(255, 255, 255, 0.08);
  color: rgba(227, 237, 247, 0.95);
  font-size: 0.84rem;
  line-height: 1.45;
  backdrop-filter: blur(16px);
}

.originals-snapshot-copy {
  margin: 0;
  padding: 0 2px;
}

.originals-snapshot-copy strong {
  display: block;
  color: rgba(242, 248, 255, 0.98);
  font-size: 0.98rem;
  line-height: 1.3;
}

.originals-snapshot-copy p {
  margin: 4px 0 0;
  color: rgba(173, 189, 207, 0.95);
  line-height: 1.55;
}

@media (max-width: 899px) {
  .originals-snapshot-grid,
  .originals-review-grid {
    grid-template-columns: 1fr;
  }

  .originals-snapshot-overlay {
    max-width: 72%;
  }
}

@media (max-width: 699px) {
  .originals-snapshot-frame {
    border-radius: 20px;
  }

  .originals-snapshot-frame img {
    border-radius: 19px;
  }

  .originals-snapshot-badge {
    top: 12px;
    left: 12px;
  }

  .originals-snapshot-overlay {
    right: 12px;
    bottom: 12px;
    max-width: 78%;
  }
}

/* Global calibration layer: keep every shared surface readable and centered. */
:where(
  .rank-card,
  .review-card,
  .intent-card,
  .panel,
  .quiz-card,
  .faq-item,
  .content-card,
  .review-page__panel,
  .review-page__verdict,
  .content-page__section,
  .content-page__callout,
  .best-page__step,
  .best-page__note,
  .trust-item,
  .hero-card,
  .checklist-card,
  .link-hub__item,
  .best-page__link,
  .originals-snapshot-card
) {
  width: 100%;
  max-width: 100%;
  box-sizing: border-box;
  justify-self: stretch;
}

:where(
  .best-page__aside,
  .best-page__link-grid,
  .content-page__article,
  .review-page__two-col,
  .review-page__content,
  .review-page__sidebar,
  .review-page__content > *,
  .link-hub__grid,
  .originals-review-grid,
  .originals-snapshot-grid,
  .table-block
) {
  min-width: 0;
  align-items: start;
}

:where(
  .best-page__aside,
  .best-page__link-grid,
  .content-page__article,
  .review-page__two-col,
  .review-page__content,
  .review-page__sidebar,
  .link-hub__grid,
  .originals-review-grid,
  .originals-snapshot-grid,
  .table-block
) > * {
  min-width: 0;
}

:where(
  .rank-card,
  .review-card,
  .intent-card,
  .panel,
  .quiz-card,
  .faq-item,
  .content-card,
  .review-page__panel,
  .review-page__verdict,
  .content-page__section,
  .content-page__callout,
  .best-page__step,
  .best-page__note,
  .trust-item,
  .hero-card,
  .checklist-card,
  .link-hub__item,
  .best-page__link,
  .originals-snapshot-card
) :where(p, li, span, strong, em, small) {
  min-width: 0;
  overflow-wrap: anywhere;
  word-break: normal;
  hyphens: auto;
}

:where(h1, h2, h3, h4, h5, h6, .section-title, .page-title) {
  text-wrap: balance;
}

:where(.table-scroll, .table-scroll--comparison) {
  width: 100%;
  max-width: 100%;
  justify-self: stretch;
}

:where(.table-scroll table, .table-scroll--comparison table) {
  width: 100%;
  min-width: 0;
  box-sizing: border-box;
}

:where(.table-scroll th, .table-scroll td, .compare-table th, .compare-table td) {
  overflow-wrap: anywhere;
  word-break: normal;
  hyphens: auto;
}

@media (max-width: 699px) {
  .best-page main,
  .reviews-page main,
  .content-page main {
    gap: 12px;
  }

  .best-page main > .page-section > .section-shell,
  .reviews-page main > .page-section > .section-shell,
  .content-page main > .page-section > .section-shell {
    margin-inline: 12px;
    width: auto;
    padding-inline: 12px;
  }

  :where(
    .best-page__aside,
    .best-page__link-grid,
    .content-page__article,
    .review-page__two-col,
    .review-page__content,
    .link-hub__grid,
    .originals-review-grid,
    .originals-snapshot-grid,
    .table-block
  ) {
    gap: 12px;
  }

  :where(
    .rank-card,
    .review-card,
    .intent-card,
    .panel,
    .quiz-card,
    .faq-item,
    .content-card,
    .review-page__panel,
    .review-page__verdict,
    .content-page__section,
    .content-page__callout,
    .best-page__step,
    .best-page__note,
    .trust-item,
    .hero-card,
    .checklist-card,
    .link-hub__item,
    .best-page__link,
    .originals-snapshot-card
  ) {
    border-radius: 16px;
  }

  :where(.table-scroll, .table-scroll--comparison) {
    border-radius: 14px;
  }
}

/* Mobile tap-target pass: keep primary controls and footer links thumb-friendly. */
@media (max-width: 699px) {
  .chip,
  .sort-btn {
    min-height: 40px;
  }

  .btn-primary,
  .btn-secondary {
    min-height: 40px;
  }

  .footer-links a {
    display: flex;
    align-items: center;
    min-height: 40px;
    padding-block: 6px;
  }
}

:where(main [id]) {
  scroll-margin-top: calc(var(--ticker-h) + var(--header-h) + 16px);
}

.trust-strip {
  padding-block: clamp(14px, 2.2vw, 22px);
}

.trust-strip__bar {
  display: grid;
  gap: 14px;
  padding: clamp(14px, 2vw, 22px);
  border-radius: 20px;
  border: 1px solid rgba(148, 216, 244, 0.24);
  background:
    radial-gradient(circle at 6% -18%, rgba(189, 238, 0, 0.14), transparent 46%),
    radial-gradient(circle at 92% 10%, rgba(0, 187, 255, 0.14), transparent 40%),
    linear-gradient(170deg, rgba(17, 29, 52, 0.9), rgba(9, 15, 31, 0.94));
  box-shadow:
    0 16px 30px rgba(2, 8, 18, 0.28),
    inset 0 1px 0 rgba(255, 255, 255, 0.07);
}

.trust-strip__intro h2 {
  margin: 0;
  font-size: clamp(1.1rem, 2vw, 1.55rem);
  line-height: 1.2;
  letter-spacing: -0.02em;
}

.trust-strip__intro p {
  margin: 8px 0 0;
  color: var(--text-secondary);
}

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

.trust-item {
  display: grid;
  gap: 4px;
  min-height: 68px;
  padding: 11px 12px;
  border-radius: 14px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(255, 255, 255, 0.04);
}

.trust-item span {
  color: var(--text-muted);
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-weight: 700;
}

.trust-item strong {
  color: var(--text-primary);
  font-size: 0.93rem;
  line-height: 1.32;
}

.trust-strip__links {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.trust-strip__links a {
  display: inline-flex;
  align-items: center;
  min-height: 36px;
  padding: 0 12px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  background: rgba(255, 255, 255, 0.05);
  color: rgba(240, 248, 255, 0.95);
  font-size: 0.8rem;
  font-weight: 700;
  transition: transform 160ms ease, border-color 160ms ease, background 160ms ease;
}

.trust-strip__links a:hover,
.trust-strip__links a:focus-visible {
  transform: translateY(-1px);
  border-color: rgba(189, 238, 0, 0.38);
  background: rgba(189, 238, 0, 0.1);
}

.page-toc {
  padding-block: clamp(10px, 1.8vw, 18px);
}

.page-toc__panel {
  display: grid;
  gap: 10px;
  padding: clamp(14px, 2vw, 20px);
  border-radius: 18px;
  border: 1px solid rgba(123, 205, 238, 0.22);
  background:
    radial-gradient(circle at 94% -8%, rgba(0, 199, 177, 0.15), transparent 40%),
    linear-gradient(165deg, rgba(14, 24, 44, 0.9), rgba(8, 13, 26, 0.94));
}

.page-toc__kicker {
  margin: 0;
  color: #9fe9ff;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

.page-toc__panel h2 {
  margin: 0;
  font-size: clamp(1.05rem, 1.8vw, 1.35rem);
}

.page-toc__panel p {
  margin: 0;
  color: var(--text-secondary);
}

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

.page-toc__list a {
  display: inline-flex;
  align-items: center;
  min-height: 40px;
  padding: 0 12px;
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(255, 255, 255, 0.04);
  color: var(--text-primary);
  font-size: 0.88rem;
  font-weight: 700;
}

.page-toc__list a:hover,
.page-toc__list a:focus-visible {
  border-color: rgba(0, 187, 255, 0.35);
  background: rgba(0, 187, 255, 0.1);
}

.decision-cta {
  padding-block: clamp(16px, 2.4vw, 24px);
}

.decision-cta__panel {
  display: grid;
  gap: 12px;
  padding: clamp(16px, 2.4vw, 24px);
  border-radius: 20px;
  border: 1px solid rgba(189, 238, 0, 0.26);
  background:
    radial-gradient(circle at 8% -16%, rgba(189, 238, 0, 0.16), transparent 46%),
    radial-gradient(circle at 90% 12%, rgba(0, 187, 255, 0.16), transparent 44%),
    linear-gradient(170deg, rgba(18, 30, 54, 0.9), rgba(9, 16, 31, 0.95));
}

.decision-cta__panel h2 {
  margin: 0;
  font-size: clamp(1.2rem, 2.2vw, 1.8rem);
  line-height: 1.2;
}

.decision-cta__panel p {
  margin: 0;
  color: var(--text-secondary);
}

.decision-cta__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.decision-cta__actions .btn-primary,
.decision-cta__actions .btn-secondary {
  min-height: 42px;
}

.decision-cta__note {
  color: var(--text-muted);
  font-size: 0.82rem;
}

@media (max-width: 699px) {
  :where(main [id]) {
    scroll-margin-top: calc(var(--header-h) + 14px);
  }

  .trust-strip__meta,
  .page-toc__list {
    grid-template-columns: 1fr;
  }

  .mobile-actions a,
  .mobile-actions button {
    min-height: 44px;
    font-size: 0.76rem;
  }

  .decision-cta__actions {
    display: grid;
    grid-template-columns: 1fr;
  }

  .decision-cta__actions .btn-primary,
  .decision-cta__actions .btn-secondary {
    width: 100%;
    min-height: 44px;
  }
}
