/* UK Spin Quarters — shared tokens + BEM-ish components */
:root {
  --sand: #f4ede3;
  --sand-deep: #e8dfd2;
  --sand-soft: #faf6f0;
  --brown: #3c2a1e;
  --brown-soft: #5a4334;
  --sage: #6f8f6a;
  --sage-deep: #557352;
  --sage-tint: rgba(111, 143, 106, 0.14);
  --ink: #2a211a;
  --muted: #6b5c50;
  --line: rgba(60, 42, 30, 0.14);
  --white: #fffdf9;
  --aurora-1: rgba(111, 143, 106, 0.28);
  --aurora-2: rgba(196, 148, 120, 0.22);
  --aurora-3: rgba(140, 160, 190, 0.18);
  --space-1: 0.25rem;
  --space-2: 0.5rem;
  --space-3: 0.75rem;
  --space-4: 1rem;
  --space-5: 1.5rem;
  --space-6: 2rem;
  --space-7: 3rem;
  --space-8: 4.5rem;
  --space-9: 6rem;
  --radius: 1.25rem;
  --radius-sm: 0.75rem;
  --max: 42rem;
  --max-wide: 56rem;
  --font-display: "Zilla Slab", "Rockwell", "Georgia", serif;
  --font-body: "Source Sans 3", "Segoe UI", "Helvetica Neue", sans-serif;
  --font-mono: "IBM Plex Mono", "Consolas", monospace;
  --shadow-float: 0 18px 50px rgba(60, 42, 30, 0.1);
}

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

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: var(--font-body);
  font-size: 1.0625rem;
  line-height: 1.65;
  color: var(--ink);
  background: var(--sand);
  -webkit-font-smoothing: antialiased;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  color: var(--sage-deep);
  text-decoration: none;
  font-weight: 600;
}

a::before {
  content: "· ";
  color: var(--sage);
  font-weight: 700;
}

a.btn::before,
a.site-logo::before,
a.nav__link::before,
a.cta::before,
a.card-action__btn::before,
.footer a::before,
.age-bar a::before,
.cookie-banner a::before,
.safety-inline a::before,
.ranked-card__visit::before,
.duel a::before,
.toc a::before,
.review-hub__item::before,
.review-hub__item a::before {
  content: none;
}

.review-hub__item {
  text-decoration: none;
  color: inherit;
}

.review-hub__item:hover {
  text-decoration: none;
}

a:hover {
  text-decoration: underline;
  text-underline-offset: 0.18em;
}

p {
  margin: 0 0 var(--space-4);
  max-width: 70ch;
}

h1,
h2,
h3,
h4 {
  font-family: var(--font-display);
  font-weight: 700;
  line-height: 1.15;
  color: var(--brown);
  margin: 0 0 var(--space-4);
}

ul,
ol {
  padding-left: 0;
  margin: 0 0 var(--space-5);
  list-style: none;
}

ul li,
ol li {
  position: relative;
  padding-left: 1.4rem;
  margin-bottom: var(--space-2);
}

ul li::before {
  content: "—";
  position: absolute;
  left: 0;
  color: var(--sage);
  font-weight: 600;
}

ol {
  counter-reset: item;
}

ol li {
  counter-increment: item;
  padding-left: 2rem;
}

ol li::before {
  content: counter(item);
  position: absolute;
  left: 0;
  width: 1.4rem;
  height: 1.4rem;
  border-radius: 50%;
  background: var(--sage-tint);
  color: var(--sage-deep);
  font-size: 0.75rem;
  font-weight: 700;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  top: 0.15rem;
  font-family: var(--font-mono);
}

.u-tabular {
  font-variant-numeric: tabular-nums;
  font-family: var(--font-mono);
  font-size: 0.95em;
}

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

.wrap {
  width: min(100% - 2rem, var(--max-wide));
  margin-inline: auto;
}

.wrap--narrow {
  width: min(100% - 2rem, var(--max));
}

/* Two-tone split: header band vs body */
.page-shell {
  background: var(--sand);
  min-height: 100vh;
  padding-bottom: 5.5rem;
}

.header-band {
  background:
    radial-gradient(ellipse 80% 60% at 15% 20%, var(--aurora-1), transparent 55%),
    radial-gradient(ellipse 70% 50% at 85% 10%, var(--aurora-2), transparent 50%),
    radial-gradient(ellipse 60% 45% at 50% 80%, var(--aurora-3), transparent 55%),
    var(--sand-deep);
  position: relative;
  overflow: hidden;
}

.header-band::after {
  content: "";
  position: absolute;
  inset: auto 0 -2px 0;
  height: 4rem;
  background: linear-gradient(to bottom, transparent, var(--sand));
  pointer-events: none;
}

/* Sticky compact nav — appears after hero */
.nav-sticky {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 40;
  transform: translateY(-110%);
  transition: transform 0.35s ease;
  background: rgba(244, 237, 227, 0.92);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--line);
}

.nav-sticky.is-visible {
  transform: translateY(0);
}

.nav-sticky__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-4);
  width: min(100% - 2rem, var(--max-wide));
  margin-inline: auto;
  padding: 0.65rem 0;
}

.nav-sticky__links {
  display: flex;
  flex-wrap: wrap;
  gap: 0.35rem 1rem;
  justify-content: flex-end;
}

.nav__link {
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--brown);
  text-decoration: none;
}

.nav__link:hover {
  color: var(--sage-deep);
  text-decoration: none;
}

.nav__link.is-active {
  color: var(--sage-deep);
  box-shadow: inset 0 -2px 0 var(--sage);
}

.site-logo {
  display: inline-flex;
  align-items: center;
  gap: 0.65rem;
  text-decoration: none;
  color: var(--brown);
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.05rem;
  letter-spacing: -0.01em;
}

.site-logo:hover {
  text-decoration: none;
}

.site-logo__mark {
  width: 2rem;
  height: 2rem;
  flex-shrink: 0;
}

.site-logo--lg .site-logo__mark {
  width: 2.75rem;
  height: 2.75rem;
}

.site-logo--lg {
  font-size: 1.35rem;
}

/* Hero — poster-style */
.hero {
  padding: var(--space-7) 0 var(--space-8);
  position: relative;
  z-index: 1;
}

.hero__kicker {
  font-size: 0.75rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--sage-deep);
  font-weight: 700;
  margin-bottom: var(--space-4);
}

.hero__title {
  font-size: clamp(2.4rem, 7vw, 4.4rem);
  letter-spacing: -0.02em;
  max-width: 14ch;
  margin-bottom: var(--space-5);
}

.hero__answer {
  font-size: 1.2rem;
  color: var(--brown-soft);
  max-width: 38ch;
  margin-bottom: var(--space-5);
}

.hero__notice {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-3);
  align-items: center;
  font-size: 0.9rem;
  color: var(--muted);
  max-width: 48ch;
}

.badge-18 {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 2.4rem;
  height: 2.4rem;
  border: 1.5px solid var(--sage);
  color: var(--sage-deep);
  border-radius: 999px;
  font-family: var(--font-mono);
  font-weight: 700;
  font-size: 0.85rem;
}

.independence {
  background: var(--white);
  border-radius: var(--radius);
  border-left: 4px solid var(--sage);
  padding: var(--space-4) var(--space-5);
  box-shadow: var(--shadow-float);
  margin-top: var(--space-6);
  max-width: 48rem;
}

.independence p {
  margin: 0;
  font-size: 0.95rem;
  color: var(--brown-soft);
}

/* Credibility strip */
.cred {
  padding: var(--space-7) 0 var(--space-6);
}

.cred__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-4);
}

.cred__item {
  background: var(--white);
  border-radius: var(--radius);
  border-left: 4px solid var(--sage);
  padding: var(--space-5);
  box-shadow: var(--shadow-float);
  text-align: left;
}

.cred__num {
  font-family: var(--font-mono);
  font-variant-numeric: tabular-nums;
  font-size: 1.85rem;
  font-weight: 700;
  color: var(--brown);
  display: block;
  margin-bottom: var(--space-2);
}

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

.updated {
  font-size: 0.85rem;
  color: var(--muted);
  margin-top: var(--space-4);
  font-family: var(--font-mono);
}

/* Sections */
.section {
  padding: var(--space-8) 0;
  position: relative;
}

.section--tight {
  padding: var(--space-6) 0;
}

.section__label {
  font-size: 0.72rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--sage-deep);
  font-weight: 700;
  margin-bottom: var(--space-3);
}

.section__title {
  font-size: clamp(1.75rem, 4vw, 2.6rem);
  max-width: 18ch;
}

.section__lead {
  color: var(--brown-soft);
  margin-bottom: var(--space-6);
}

/* Aurora ambient band */
.band-aurora {
  position: relative;
  background:
    radial-gradient(ellipse 70% 80% at 10% 30%, var(--aurora-1), transparent 60%),
    radial-gradient(ellipse 60% 70% at 90% 70%, var(--aurora-2), transparent 55%),
    radial-gradient(ellipse 50% 50% at 50% 50%, var(--aurora-3), transparent 60%),
    var(--sand-soft);
}

/* Reveal motion */
.reveal {
  opacity: 0;
  transform: translateY(1.25rem);
  clip-path: inset(8% 0 0 0);
  transition: opacity 0.7s ease, transform 0.7s ease, clip-path 0.8s ease;
}

.reveal.is-in {
  opacity: 1;
  transform: none;
  clip-path: inset(0 0 0 0);
}

@media (prefers-reduced-motion: reduce) {
  .reveal {
    opacity: 1;
    transform: none;
    clip-path: none;
    transition: none;
  }
  .nav-sticky {
    transition: none;
  }
  .cta__chevron {
    transition: none !important;
  }
}

/* Ranked showcase */
.ranked {
  display: flex;
  flex-direction: column;
  gap: var(--space-5);
  margin-top: var(--space-6);
}

.ranked-card {
  display: grid;
  grid-template-columns: 1fr;
  background: var(--white);
  border-radius: var(--radius);
  box-shadow: var(--shadow-float);
  border-left: 4px solid var(--sage);
  overflow: hidden;
  position: relative;
}

@media (min-width: 800px) {
  .ranked-card {
    grid-template-columns: 1.4fr 0.85fr;
  }
}

.ranked-card--overlap {
  margin-top: -2.5rem;
  z-index: 2;
}

.ranked-card__facts {
  padding: var(--space-5) var(--space-5) var(--space-5) var(--space-6);
}

.ranked-card__action {
  padding: var(--space-5);
  background: linear-gradient(160deg, rgba(111, 143, 106, 0.1), rgba(244, 237, 227, 0.6));
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: var(--space-4);
  border-top: 1px solid var(--line);
}

@media (min-width: 800px) {
  .ranked-card__action {
    border-top: 0;
    border-left: 1px solid var(--line);
  }
}

.ranked-card__top {
  display: flex;
  align-items: flex-start;
  gap: var(--space-4);
  margin-bottom: var(--space-4);
}

.ranked-card__num {
  font-family: var(--font-display);
  font-size: clamp(2.8rem, 6vw, 4rem);
  line-height: 0.9;
  color: var(--sage);
  font-weight: 700;
  min-width: 2.5ch;
}

.ranked-card__logo {
  width: 4.5rem;
  height: 3rem;
  object-fit: contain;
  object-position: left center;
  background: var(--sand-soft);
  border-radius: var(--radius-sm);
  padding: 0.35rem 0.5rem;
}

.ranked-card__name {
  font-family: var(--font-display);
  font-size: 1.45rem;
  margin: 0 0 var(--space-2);
}

.ranked-card__desc {
  margin: 0 0 var(--space-4);
  color: var(--brown-soft);
  font-size: 1rem;
}

.badge-row {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-2);
  margin-bottom: var(--space-4);
}

.badge {
  display: inline-flex;
  align-items: center;
  padding: 0.28rem 0.7rem;
  border: 1.5px solid var(--sage);
  border-radius: 999px;
  color: var(--sage-deep);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  background: transparent;
}

.score {
  display: flex;
  align-items: baseline;
  gap: 0.35rem;
  margin-bottom: var(--space-3);
}

.score__value {
  font-family: var(--font-mono);
  font-variant-numeric: tabular-nums;
  font-size: 2rem;
  font-weight: 700;
  color: var(--brown);
}

.score__of {
  font-family: var(--font-mono);
  font-size: 0.9rem;
  color: var(--muted);
}

.licence-block {
  font-size: 0.82rem;
  color: var(--muted);
  line-height: 1.5;
}

.licence-block p {
  margin: 0 0 0.35rem;
  max-width: none;
}

.licence-block a {
  font-weight: 600;
}

.stats-table {
  width: 100%;
  border-collapse: collapse;
  margin: var(--space-4) 0;
  font-size: 0.9rem;
}

.stats-table th,
.stats-table td {
  text-align: left;
  padding: 0.45rem 0;
  border-bottom: 1px solid var(--line);
  font-variant-numeric: tabular-nums;
}

.stats-table th {
  font-weight: 600;
  color: var(--muted);
  width: 45%;
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.stats-table td {
  font-family: var(--font-mono);
  font-size: 0.85rem;
  text-align: right;
  color: var(--brown);
}

.cta {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 1rem;
  color: var(--sage-deep);
  text-decoration: none;
  background: none;
  border: 0;
  padding: 0.35rem 0;
  cursor: pointer;
}

.cta:hover {
  text-decoration: none;
  color: var(--brown);
}

.cta__chevron {
  display: inline-block;
  transition: transform 0.25s ease;
}

.cta:hover .cta__chevron {
  transform: translateX(0.35rem);
}

.cta-note {
  font-size: 0.75rem;
  color: var(--muted);
  margin: var(--space-2) 0 0;
}

.affiliate-note {
  font-size: 0.9rem;
  color: var(--muted);
  background: var(--white);
  border-radius: var(--radius);
  border-left: 4px solid var(--brown-soft);
  padding: var(--space-4) var(--space-5);
  margin: var(--space-6) 0;
  box-shadow: var(--shadow-float);
}

/* Head-to-head duels */
.duels {
  display: flex;
  flex-direction: column;
  gap: var(--space-5);
}

.duel {
  background: var(--white);
  border-radius: var(--radius);
  border-left: 4px solid var(--sage);
  padding: var(--space-5);
  box-shadow: var(--shadow-float);
}

.duel__title {
  font-size: 1.25rem;
  margin-bottom: var(--space-2);
}

.duel__meta {
  font-size: 0.85rem;
  color: var(--muted);
  margin-bottom: var(--space-4);
  font-family: var(--font-mono);
}

.duel__grid {
  display: grid;
  gap: var(--space-4);
}

@media (min-width: 700px) {
  .duel__grid {
    grid-template-columns: 1fr auto 1fr;
    align-items: start;
  }
}

.duel__vs {
  font-family: var(--font-display);
  font-weight: 700;
  color: var(--sage);
  text-align: center;
  padding-top: 1.5rem;
}

.duel__side h4 {
  font-size: 1.1rem;
  margin-bottom: var(--space-2);
}

.duel__side p {
  font-size: 0.95rem;
  color: var(--brown-soft);
  margin: 0;
}

/* Method / timeline signature */
.method-timeline {
  display: grid;
  gap: var(--space-4);
  margin: var(--space-6) 0;
}

@media (min-width: 700px) {
  .method-timeline {
    grid-template-columns: repeat(3, 1fr);
  }
}

.method-step {
  background: var(--white);
  border-radius: var(--radius);
  border-left: 4px solid var(--sage);
  padding: var(--space-5);
  box-shadow: var(--shadow-float);
  position: relative;
}

.method-step__n {
  font-family: var(--font-mono);
  font-variant-numeric: tabular-nums;
  font-size: 0.8rem;
  color: var(--sage-deep);
  font-weight: 700;
  letter-spacing: 0.08em;
  margin-bottom: var(--space-2);
  display: block;
}

.method-step h3 {
  font-size: 1.15rem;
  margin-bottom: var(--space-2);
}

.method-step p {
  margin: 0;
  font-size: 0.95rem;
  color: var(--brown-soft);
}

/* Compact page timeline */
.timeline {
  border-left: 3px solid var(--sage);
  padding-left: var(--space-5);
  margin: var(--space-6) 0;
}

.timeline__item {
  position: relative;
  padding-bottom: var(--space-5);
}

.timeline__item::before {
  content: "";
  position: absolute;
  left: calc(-1.35rem - 3px);
  top: 0.35rem;
  width: 0.7rem;
  height: 0.7rem;
  border-radius: 50%;
  background: var(--sage);
  border: 2px solid var(--sand);
}

.timeline__year {
  font-family: var(--font-mono);
  font-variant-numeric: tabular-nums;
  font-weight: 700;
  color: var(--sage-deep);
  font-size: 0.9rem;
  display: block;
  margin-bottom: var(--space-1);
}

.timeline__item h3 {
  font-size: 1.15rem;
  margin-bottom: var(--space-2);
}

.timeline__item p {
  margin: 0;
  color: var(--brown-soft);
}

/* Glossary */
.glossary {
  display: grid;
  gap: var(--space-4);
}

.glossary__item {
  background: var(--white);
  border-radius: var(--radius-sm);
  border-left: 4px solid var(--sage);
  padding: var(--space-4) var(--space-5);
}

.glossary__term {
  font-family: var(--font-display);
  font-weight: 700;
  margin: 0 0 var(--space-1);
  font-size: 1.05rem;
}

.glossary__def {
  margin: 0;
  font-size: 0.95rem;
  color: var(--brown-soft);
}

/* FAQ — grouped under headings, always visible */
.faq-group {
  margin-bottom: var(--space-7);
}

.faq-group__title {
  font-size: 1rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--sage-deep);
  margin-bottom: var(--space-4);
}

.faq-block {
  margin-bottom: var(--space-5);
}

.faq-block h3 {
  font-size: 1.25rem;
  margin-bottom: var(--space-3);
}

.faq-block p {
  color: var(--brown-soft);
}

/* Framed images */
.frame {
  border: 1.5px solid var(--brown);
  border-radius: var(--radius-sm);
  overflow: hidden;
  background: var(--sand-deep);
}

.frame img {
  width: 100%;
  display: block;
}

.frame--offset {
  box-shadow: 12px 12px 0 var(--sage-tint);
  margin-bottom: var(--space-5);
}

.figure {
  margin: var(--space-6) 0;
}

.figure figcaption {
  font-size: 0.85rem;
  color: var(--muted);
  margin-top: var(--space-2);
  font-family: var(--font-mono);
}

/* Safety / age — bottom integrated strip */
.age-bar {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 50;
  background: var(--brown);
  color: var(--sand);
  font-size: 0.8rem;
  line-height: 1.4;
}

.age-bar__inner {
  width: min(100% - 1.5rem, var(--max-wide));
  margin-inline: auto;
  padding: 0.55rem 0;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.5rem 1.25rem;
}

.age-bar strong {
  font-family: var(--font-mono);
  letter-spacing: 0.04em;
}

.age-bar a {
  color: #c5d9c2;
  font-weight: 600;
}

.age-bar a:hover {
  color: var(--sand);
}

.safety-inline {
  display: flex;
  flex-wrap: wrap;
  gap: 0.35rem 0.85rem;
  align-items: center;
  border-left: 1px solid rgba(244, 237, 227, 0.25);
  padding-left: 1rem;
}

.safety-inline span {
  opacity: 0.7;
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

/* Cookie banner */
.cookie-banner {
  position: fixed;
  bottom: 3.6rem;
  left: 1rem;
  right: 1rem;
  z-index: 55;
  max-width: 28rem;
  margin-left: auto;
  background: var(--white);
  border-radius: var(--radius);
  border-left: 4px solid var(--sage);
  padding: var(--space-4) var(--space-5);
  box-shadow: var(--shadow-float);
  display: none;
}

.cookie-banner.is-open {
  display: block;
}

.cookie-banner p {
  font-size: 0.9rem;
  margin-bottom: var(--space-3);
  color: var(--brown-soft);
}

.cookie-banner__actions {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-3);
  align-items: center;
}

/* Footer — oversized wordmark */
.footer {
  background: var(--sand-deep);
  padding: var(--space-8) 0 var(--space-7);
  margin-top: var(--space-6);
}

.footer__grid {
  display: grid;
  gap: var(--space-6);
}

@media (min-width: 800px) {
  .footer__grid {
    grid-template-columns: 1.2fr 1fr;
  }
}

.footer__brand-statement {
  color: var(--brown-soft);
  font-size: 0.95rem;
  max-width: 36ch;
}

.footer__cols {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--space-5);
}

.footer__col h3 {
  font-size: 0.72rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--sage-deep);
  margin-bottom: var(--space-3);
}

.footer__col ul li {
  padding-left: 0;
  margin-bottom: 0.4rem;
}

.footer__col ul li::before {
  content: none;
}

.footer__col a {
  font-size: 0.9rem;
  color: var(--brown);
  font-weight: 600;
}

.footer__col a:hover {
  color: var(--sage-deep);
}

.footer__wordmark {
  margin-top: var(--space-8);
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 10vw, 5.5rem);
  line-height: 0.9;
  color: var(--brown);
  letter-spacing: -0.03em;
  opacity: 0.9;
}

.footer__legal {
  margin-top: var(--space-5);
  font-size: 0.8rem;
  color: var(--muted);
  max-width: 70ch;
}

/* Inner pages */
.page-hero {
  padding: var(--space-7) 0 var(--space-6);
}

.page-hero h1 {
  font-size: clamp(2rem, 5vw, 3.2rem);
  max-width: 16ch;
}

.prose {
  max-width: var(--max);
}

.prose h2 {
  font-size: 1.6rem;
  margin-top: var(--space-7);
}

.prose h3 {
  font-size: 1.2rem;
  margin-top: var(--space-5);
}

.breadcrumb {
  font-size: 0.8rem;
  color: var(--muted);
  margin-bottom: var(--space-4);
  font-family: var(--font-mono);
}

.breadcrumb a {
  color: var(--muted);
  font-weight: 600;
}

.review-hub {
  display: flex;
  flex-direction: column;
  gap: var(--space-4);
}

.review-hub__item {
  background: var(--white);
  border-radius: var(--radius);
  border-left: 4px solid var(--sage);
  padding: var(--space-5);
  box-shadow: var(--shadow-float);
  display: grid;
  gap: var(--space-3);
}

@media (min-width: 700px) {
  .review-hub__item {
    grid-template-columns: 5rem 1fr auto;
    align-items: center;
  }
}

.review-hub__item img {
  width: 4.5rem;
  height: 3rem;
  object-fit: contain;
}

.review-hub__score {
  font-family: var(--font-mono);
  font-variant-numeric: tabular-nums;
  font-weight: 700;
  font-size: 1.25rem;
  color: var(--brown);
  white-space: nowrap;
}

.contact-box {
  background: var(--white);
  border-radius: var(--radius);
  border-left: 4px solid var(--sage);
  padding: var(--space-5);
  box-shadow: var(--shadow-float);
  margin: var(--space-5) 0;
}

.contact-box a {
  font-size: 1.15rem;
}

.disclaimer {
  font-size: 0.85rem;
  color: var(--muted);
  padding: var(--space-5) 0;
}

/* Back to top */
.back-top {
  position: fixed;
  right: 1rem;
  bottom: 4.5rem;
  z-index: 45;
  width: 2.75rem;
  height: 2.75rem;
  border-radius: 999px;
  border: 1.5px solid var(--sage);
  background: var(--white);
  color: var(--sage-deep);
  font-size: 1.1rem;
  cursor: pointer;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.25s ease;
  box-shadow: var(--shadow-float);
}

.back-top.is-visible {
  opacity: 1;
  pointer-events: auto;
}

.logo-fallback {
  width: 4.5rem;
  height: 3rem;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--sand-deep);
  border-radius: var(--radius-sm);
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.7rem;
  color: var(--brown);
  text-align: center;
  padding: 0.25rem;
}

/* Utility hero logo row (no sticky yet) */
.top-mark {
  padding: var(--space-5) 0 0;
  position: relative;
  z-index: 1;
}

.top-mark__row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: var(--space-4);
}

.top-mark__links {
  display: none;
  gap: 1rem;
  flex-wrap: wrap;
}

@media (min-width: 900px) {
  .top-mark__links {
    display: flex;
  }
}

.menu-toggle {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  background: none;
  border: 1.5px solid var(--brown);
  border-radius: 999px;
  padding: 0.4rem 0.85rem;
  font-weight: 700;
  font-size: 0.8rem;
  color: var(--brown);
  cursor: pointer;
}

@media (min-width: 900px) {
  .menu-toggle {
    display: none;
  }
}

.mobile-panel {
  display: none;
  padding: var(--space-4) 0 var(--space-2);
}

.mobile-panel.is-open {
  display: block;
}

.mobile-panel a {
  display: block;
  padding: 0.45rem 0;
  color: var(--brown);
  font-weight: 600;
}

.mobile-panel a::before {
  content: "· ";
  color: var(--sage);
}

/* SVG aurora placeholder art */
.aurora-art {
  width: 100%;
  height: auto;
  display: block;
}

@media (max-width: 640px) {
  .cred__grid {
    grid-template-columns: 1fr;
  }
  .safety-inline {
    border-left: 0;
    padding-left: 0;
    width: 100%;
  }
  .ranked-card__num {
    min-width: 1.8ch;
  }
}
