/* ==========================================================================
   MeridianReview — design system
   Visual language: stacked rounded dark panels, deep violet grounds, a single
   mint accent, tight grotesk type. Never a white page background.
   ========================================================================== */

:root {
  /* Grounds */
  --bg: #0a0610;
  --bg-2: #100a19;
  --panel: #171021;
  --panel-2: #1e1529;

  /* Violet family */
  --v-900: #1d0733;
  --v-800: #2a0a4a;
  --v-700: #380d63;
  --v-600: #4a117f;
  --v-500: #5c17a0;
  --v-400: #7a2fc4;

  /* Accent */
  --mint: #8cf9bc;
  --mint-600: #5ee49b;
  --mint-ink: #04240f;

  /* Warn / age */
  --age: #ff5a6a;

  /* Type */
  --text: #f2edf9;
  --muted: #a596bb;
  --dim: #7d6e93;

  /* Lines & shadow */
  --line: rgba(255, 255, 255, 0.09);
  --line-2: rgba(255, 255, 255, 0.16);
  --shadow: 0 24px 60px -24px rgba(0, 0, 0, 0.85);

  /* Geometry */
  --r-xl: 30px;
  --r-lg: 22px;
  --r-md: 14px;
  --r-pill: 999px;
  --gutter: clamp(16px, 4vw, 30px);
  --shell: 1240px;

  --sans: "Archivo", "Segoe UI", -apple-system, BlinkMacSystemFont, Roboto,
    Helvetica, Arial, sans-serif;
}

/* --------------------------------------------------------------- reset -- */

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

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

body {
  margin: 0;
  background: var(--bg);
  color: var(--text);
  font-family: var(--sans);
  font-size: 16.5px;
  line-height: 1.65;
  font-weight: 400;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

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

a {
  color: var(--mint);
  text-decoration: none;
}

a:hover {
  text-decoration: underline;
  text-underline-offset: 3px;
}

h1,
h2,
h3,
h4 {
  margin: 0 0 0.5em;
  font-weight: 800;
  line-height: 1.08;
  letter-spacing: -0.025em;
  text-wrap: balance;
}

p {
  margin: 0 0 1.05em;
}

p:last-child {
  margin-bottom: 0;
}

ul,
ol {
  margin: 0 0 1.05em;
  padding-left: 1.15em;
}

li {
  margin-bottom: 0.45em;
}

hr {
  border: 0;
  border-top: 1px solid var(--line);
  margin: 2.4rem 0;
}

:focus-visible {
  outline: 2px solid var(--mint);
  outline-offset: 3px;
  border-radius: 6px;
}

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

.skip {
  position: absolute;
  left: -9999px;
  top: 0;
  z-index: 200;
  background: var(--mint);
  color: var(--mint-ink);
  padding: 12px 20px;
  border-radius: 0 0 12px 0;
  font-weight: 700;
}

.skip:focus {
  left: 0;
}

/* -------------------------------------------------------------- layout -- */

.shell {
  width: 100%;
  max-width: var(--shell);
  margin-inline: auto;
  padding-inline: var(--gutter);
}

.shell--narrow {
  max-width: 860px;
}

/* Stacked rounded panels, inset from the viewport edge */
.stack {
  --gap: clamp(8px, 1.6vw, 18px);
  padding: 0 var(--gap) var(--gap);
}

.stack > main > .panel,
.stack > main > .hero,
.stack > .footer {
  margin-bottom: var(--gap);
}

.stack > main > *:last-child,
.stack > .footer:last-child {
  margin-bottom: 0;
}

.panel {
  border-radius: var(--r-xl);
  overflow: hidden;
  position: relative;
  padding: clamp(44px, 7vw, 96px) 0;
}

.panel--flat {
  background: var(--bg-2);
}

.panel--ink {
  background: var(--panel);
}

.panel--violet {
  background: linear-gradient(168deg, var(--v-700) 0%, var(--v-900) 82%);
}

.panel--violet-bright {
  background: linear-gradient(150deg, var(--v-500) 0%, var(--v-700) 100%);
}

.panel--tight {
  padding: clamp(30px, 4.5vw, 56px) 0;
}

.grain::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  opacity: 0.5;
  background-image: radial-gradient(
    rgba(255, 255, 255, 0.045) 1px,
    transparent 1px
  );
  background-size: 3px 3px;
}

/* ----------------------------------------------------------- eyebrow ---- */

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 11.5px;
  font-weight: 700;
  letter-spacing: 0.19em;
  text-transform: uppercase;
  color: var(--mint);
  margin-bottom: 18px;
}

.eyebrow::before {
  content: "";
  width: 20px;
  height: 1px;
  background: var(--mint);
  opacity: 0.7;
}

.eyebrow--plain::before {
  display: none;
}

.lede {
  font-size: clamp(15.5px, 1.5vw, 18px);
  color: var(--muted);
  max-width: 62ch;
}

.section-title {
  font-size: clamp(26px, 3.3vw, 40px);
}

.section-title em {
  font-style: italic;
  color: var(--mint);
}

.head-row {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 28px;
  flex-wrap: wrap;
  margin-bottom: clamp(26px, 3.5vw, 44px);
}

.head-row > div {
  max-width: 62ch;
}

/* -------------------------------------------------------------- topbar -- */

.agebar {
  background: var(--v-600);
  color: #f3e9ff;
  font-size: 12px;
  letter-spacing: 0.05em;
}

.agebar__in {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px 22px;
  flex-wrap: wrap;
  padding: 9px var(--gutter);
  text-align: center;
  max-width: var(--shell);
  margin-inline: auto;
}

.agebar a {
  color: #fff;
  text-decoration: underline;
  text-underline-offset: 2px;
}

.agebar span {
  display: inline-flex;
  align-items: center;
  gap: 7px;
}

/* 18+ roundel */
.age18 {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 26px;
  height: 26px;
  flex: 0 0 26px;
  border-radius: 50%;
  background: var(--age);
  color: #fff;
  font-size: 10.5px;
  font-weight: 800;
  letter-spacing: 0.01em;
  line-height: 1;
}

.age18--lg {
  width: 46px;
  height: 46px;
  flex-basis: 46px;
  font-size: 16px;
}

.age18--outline {
  background: transparent;
  border: 2px solid var(--age);
  color: var(--age);
}

/* ---------------------------------------------------------------- nav --- */

.nav {
  position: sticky;
  top: 0;
  z-index: 90;
  background: rgba(10, 6, 16, 0.86);
  backdrop-filter: saturate(150%) blur(14px);
  border-bottom: 1px solid var(--line);
}

.nav__in {
  display: flex;
  align-items: center;
  gap: 20px;
  height: 68px;
  max-width: var(--shell);
  margin-inline: auto;
  padding-inline: var(--gutter);
}

.brandmark {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--text);
  font-weight: 800;
  font-size: 20px;
  letter-spacing: -0.045em;
  text-decoration: none;
  flex: 0 0 auto;
}

.brandmark:hover {
  text-decoration: none;
}

.nav__links {
  display: flex;
  align-items: center;
  gap: 4px;
  margin-left: auto;
}

.nav__links a {
  color: var(--muted);
  font-size: 14.5px;
  font-weight: 500;
  padding: 8px 13px;
  border-radius: var(--r-pill);
  text-decoration: none;
  transition: color 0.15s ease, background 0.15s ease;
}

.nav__links a:hover,
.nav__links a.is-active {
  color: var(--text);
  background: rgba(255, 255, 255, 0.07);
  text-decoration: none;
}

.nav__right {
  display: flex;
  align-items: center;
  gap: 12px;
  flex: 0 0 auto;
}

.nav__toggle {
  display: none;
  background: transparent;
  border: 1px solid var(--line-2);
  color: var(--text);
  width: 42px;
  height: 40px;
  border-radius: 12px;
  cursor: pointer;
  padding: 0;
  align-items: center;
  justify-content: center;
}

.nav__toggle span {
  display: block;
  width: 17px;
  height: 1.8px;
  background: currentColor;
  box-shadow: 0 -5px 0 currentColor, 0 5px 0 currentColor;
}

@media (max-width: 940px) {
  .nav__links {
    position: fixed;
    inset: 68px 0 auto;
    flex-direction: column;
    align-items: stretch;
    gap: 2px;
    background: var(--panel);
    border-bottom: 1px solid var(--line);
    padding: 14px var(--gutter) 22px;
    margin: 0;
    display: none;
  }

  .nav__links.is-open {
    display: flex;
  }

  .nav__links a {
    padding: 12px 14px;
    font-size: 16px;
  }

  .nav__right {
    margin-left: auto;
  }

  .nav__toggle {
    display: inline-flex;
  }

  .nav .btn--sm {
    display: none;
  }
}

/* ------------------------------------------------------------- buttons -- */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  padding: 14px 26px;
  border-radius: var(--r-pill);
  font-weight: 700;
  font-size: 15px;
  letter-spacing: -0.01em;
  border: 1px solid transparent;
  cursor: pointer;
  text-decoration: none;
  transition: transform 0.14s ease, background 0.14s ease, border-color 0.14s ease;
  font-family: inherit;
}

.btn:hover {
  text-decoration: none;
  transform: translateY(-1px);
}

.btn--primary {
  background: var(--mint);
  color: var(--mint-ink);
}

.btn--primary:hover {
  background: #a4ffcc;
}

.btn--ghost {
  background: rgba(255, 255, 255, 0.05);
  border-color: var(--line-2);
  color: var(--text);
}

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

.btn--sm {
  padding: 10px 18px;
  font-size: 13.5px;
}

.btn--lg {
  padding: 16px 32px;
  font-size: 16px;
}

.btn--block {
  width: 100%;
}

.btn__ext {
  font-size: 15px;
  line-height: 1;
  transform: translateY(-1px);
}

.btn-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: center;
}

/* ---------------------------------------------------------------- hero -- */

.hero {
  position: relative;
  border-radius: var(--r-xl);
  overflow: hidden;
  background: radial-gradient(
      120% 100% at 88% 8%,
      rgba(122, 47, 196, 0.55) 0%,
      transparent 58%
    ),
    linear-gradient(158deg, #330c59 0%, #16062a 62%, #0d0518 100%);
  border: 1px solid rgba(255, 255, 255, 0.07);
}

/* Oversized faded wordmark behind the hero copy, as on the reference */
.hero__ghost {
  position: absolute;
  left: -2%;
  bottom: -14%;
  font-size: clamp(150px, 27vw, 380px);
  font-weight: 800;
  font-style: italic;
  letter-spacing: -0.06em;
  line-height: 0.78;
  color: rgba(255, 255, 255, 0.035);
  pointer-events: none;
  user-select: none;
  white-space: nowrap;
}

.hero__in {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1.02fr) minmax(0, 0.98fr);
  gap: clamp(28px, 4vw, 60px);
  align-items: center;
  padding: clamp(38px, 5.2vw, 66px) clamp(24px, 4.4vw, 62px);
}

/* Deliberately restrained hero type — no oversized display headline */
.hero h1 {
  font-size: clamp(25px, 2.9vw, 37px);
  line-height: 1.14;
  margin-bottom: 14px;
}

.hero h1 em {
  font-style: italic;
  color: var(--mint);
}

.hero__copy p {
  color: #cdc0e0;
  font-size: 15.5px;
  max-width: 46ch;
}

.hero__meta {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 18px;
  margin-top: 22px;
  font-size: 12.5px;
  color: var(--dim);
}

.hero__meta span {
  display: inline-flex;
  align-items: center;
  gap: 7px;
}

.tick {
  color: var(--mint);
  font-weight: 800;
}

/* Hero right-hand stack of brand cards */
.hero__cards {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.pick {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  gap: 16px;
  align-items: center;
  padding: 15px 17px;
  border-radius: var(--r-lg);
  background: rgba(255, 255, 255, 0.055);
  border: 1px solid var(--line);
  transition: border-color 0.16s ease, background 0.16s ease;
}

.pick:hover {
  border-color: var(--line-2);
  background: rgba(255, 255, 255, 0.085);
}

.pick__logo {
  width: 104px;
  height: 46px;
  border-radius: 11px;
  display: grid;
  place-items: center;
  padding: 6px 8px;
  flex: 0 0 auto;
}

.pick__logo img {
  max-height: 100%;
  width: auto;
  object-fit: contain;
}

.pick__name {
  font-weight: 700;
  font-size: 15px;
  letter-spacing: -0.02em;
}

.pick__note {
  font-size: 12.5px;
  color: var(--dim);
  line-height: 1.45;
}

.pick__score {
  font-size: 18px;
  font-weight: 800;
  color: var(--mint);
  letter-spacing: -0.03em;
}

.pick__score small {
  font-size: 11px;
  color: var(--dim);
  font-weight: 600;
}

@media (max-width: 900px) {
  .hero__in {
    grid-template-columns: 1fr;
  }
}

/* --------------------------------------------------------------- cards -- */

.grid {
  display: grid;
  gap: 14px;
}

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

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

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

@media (max-width: 980px) {
  .grid--4 {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .grid--3 {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 660px) {
  .grid--2,
  .grid--3,
  .grid--4 {
    grid-template-columns: 1fr;
  }
}

.card {
  background: rgba(255, 255, 255, 0.045);
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  padding: clamp(20px, 2.4vw, 28px);
}

.card--violet {
  background: linear-gradient(160deg, rgba(122, 47, 196, 0.28), rgba(56, 13, 99, 0.3));
}

:where(.card) h3 {
  font-size: 17.5px;
  margin-bottom: 8px;
}

:where(.card) p {
  color: var(--muted);
  font-size: 14.5px;
}

.card__num {
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.14em;
  color: var(--mint);
  display: block;
  margin-bottom: 14px;
}

.icard {
  text-align: left;
}

.icard__glyph {
  width: 44px;
  height: 44px;
  border-radius: 13px;
  display: grid;
  place-items: center;
  background: rgba(140, 249, 188, 0.12);
  border: 1px solid rgba(140, 249, 188, 0.24);
  margin-bottom: 16px;
}

:where(.icard__glyph) svg {
  width: 21px;
  height: 21px;
  stroke: var(--mint);
  fill: none;
  stroke-width: 1.7;
  stroke-linecap: round;
  stroke-linejoin: round;
}

/* --------------------------------------------------------- brand cards -- */

.bcard {
  display: grid;
  grid-template-columns: minmax(0, 300px) minmax(0, 1fr);
  gap: clamp(20px, 3vw, 40px);
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid var(--line);
  border-radius: var(--r-xl);
  padding: clamp(20px, 2.8vw, 32px);
  position: relative;
  overflow: hidden;
}

.bcard::before {
  content: "";
  position: absolute;
  inset: 0 auto 0 0;
  width: 3px;
  background: var(--brand-accent, var(--mint));
}

.bcard__aside {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.bcard__logo {
  border-radius: var(--r-md);
  padding: 22px 20px;
  display: grid;
  place-items: center;
  min-height: 108px;
  border: 1px solid var(--line);
}

.bcard__logo img {
  max-height: 62px;
  width: auto;
  object-fit: contain;
}

.bcard__rank {
  position: absolute;
  top: 0;
  right: 0;
  background: var(--brand-accent, var(--mint));
  color: #100a19;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 7px 16px;
  border-radius: 0 var(--r-xl) 0 var(--r-md);
}

.bcard h3 {
  font-size: clamp(21px, 2.3vw, 27px);
  margin-bottom: 6px;
}

.bcard__tag {
  color: var(--mint);
  font-size: 13.5px;
  font-weight: 600;
  margin-bottom: 14px;
}

:where(.bcard__body) p {
  color: var(--muted);
  font-size: 14.8px;
}

.scorechip {
  display: flex;
  align-items: baseline;
  gap: 8px;
  justify-content: center;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid var(--line);
  border-radius: var(--r-md);
  padding: 12px;
}

.scorechip b {
  font-size: 27px;
  font-weight: 800;
  letter-spacing: -0.04em;
  color: var(--mint);
}

.scorechip span {
  font-size: 12px;
  color: var(--dim);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  font-weight: 700;
}

.stars {
  letter-spacing: 2px;
  color: var(--mint);
  font-size: 13px;
}

.stars i {
  font-style: normal;
  opacity: 0.28;
}

/* ------------------------------------------------------------- licence -- */

.licence {
  background: linear-gradient(160deg, rgba(140, 249, 188, 0.07), rgba(255, 255, 255, 0.02));
  border: 1px solid rgba(140, 249, 188, 0.2);
  border-radius: var(--r-lg);
  padding: clamp(20px, 2.6vw, 30px);
}

.licence__title {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--mint);
  margin-bottom: 18px;
}

.licence__title svg {
  width: 17px;
  height: 17px;
  stroke: var(--mint);
  fill: none;
  stroke-width: 1.8;
}

.deflist {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(210px, 1fr));
  gap: 16px 26px;
  margin: 0;
}

.deflist > div {
  min-width: 0;
}

.deflist dt {
  font-size: 11.5px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--dim);
  font-weight: 700;
  margin-bottom: 4px;
}

:where(.deflist) dd {
  margin: 0;
  font-size: 14.5px;
  font-weight: 600;
  color: var(--text);
  word-break: break-word;
}

.mono {
  font-family: ui-monospace, "Cascadia Mono", Consolas, monospace;
  font-size: 13.5px;
  letter-spacing: 0.01em;
  background: rgba(255, 255, 255, 0.07);
  border-radius: 7px;
  padding: 2px 8px;
  display: inline-block;
}

/* ---------------------------------------------------------------- meter - */

.meters {
  display: grid;
  gap: 13px;
}

.meter__top {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 12px;
  font-size: 13.5px;
  margin-bottom: 6px;
}

.meter__top b {
  color: var(--mint);
  font-weight: 700;
}

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

.meter__track {
  height: 6px;
  border-radius: var(--r-pill);
  background: rgba(255, 255, 255, 0.08);
  overflow: hidden;
}

.meter__fill {
  height: 100%;
  border-radius: var(--r-pill);
  background: linear-gradient(90deg, var(--mint-600), var(--mint));
}

/* ----------------------------------------------------------- pros/cons -- */

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

:where(.pclist) li {
  display: grid;
  grid-template-columns: 20px minmax(0, 1fr);
  gap: 11px;
  font-size: 14.5px;
  color: var(--muted);
  margin: 0;
}

.pclist li::before {
  font-weight: 800;
  line-height: 1.5;
}

.pclist--pro li::before {
  content: "+";
  color: var(--mint);
  font-size: 17px;
}

.pclist--con li::before {
  content: "–";
  color: #ff8fa0;
  font-size: 17px;
}

/* ---------------------------------------------------------------- prose - */

.prose {
  font-size: 16.5px;
  color: #d8cfe6;
}

.prose h2 {
  font-size: clamp(21px, 2.4vw, 28px);
  color: var(--text);
  margin-top: 2.2em;
}

.prose h2:first-child {
  margin-top: 0;
}

.prose h3 {
  font-size: 18.5px;
  color: var(--text);
  margin-top: 1.9em;
}

.prose a {
  text-decoration: underline;
  text-underline-offset: 3px;
}

.prose strong {
  color: var(--text);
  font-weight: 700;
}

.prose ul li::marker {
  color: var(--mint);
}

.prose table {
  width: 100%;
  border-collapse: collapse;
  margin: 1.4em 0;
  font-size: 14.5px;
}

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

.prose th {
  color: var(--text);
  font-size: 12px;
  letter-spacing: 0.09em;
  text-transform: uppercase;
  font-weight: 700;
}

.table-wrap {
  overflow-x: auto;
  border-radius: var(--r-md);
}

.callout {
  border-left: 3px solid var(--mint);
  background: rgba(140, 249, 188, 0.06);
  border-radius: 0 var(--r-md) var(--r-md) 0;
  padding: 18px 22px;
  margin: 1.8em 0;
  font-size: 15px;
}

.callout--age {
  border-left-color: var(--age);
  background: rgba(255, 90, 106, 0.08);
}

.updated {
  font-size: 12.5px;
  color: var(--dim);
  letter-spacing: 0.05em;
}

/* ----------------------------------------------------------- wordmark --- */

.wordmark {
  text-align: center;
  font-size: clamp(64px, 15vw, 210px);
  font-weight: 800;
  font-style: italic;
  letter-spacing: -0.055em;
  line-height: 0.86;
  color: #f7f1ff;
  margin: 0;
}

.wordmark + p {
  text-align: center;
  color: rgba(255, 255, 255, 0.62);
  max-width: 54ch;
  margin: 22px auto 0;
  font-size: 15.5px;
}

/* ------------------------------------------------------------- statement */

.statement {
  text-align: center;
  max-width: 24ch;
  margin-inline: auto;
  font-size: clamp(24px, 3.6vw, 44px);
  font-weight: 700;
  line-height: 1.14;
  letter-spacing: -0.03em;
}

.statement em {
  font-style: italic;
  color: var(--mint);
}

/* ------------------------------------------------------------- accordion */

.acc {
  border-top: 1px solid var(--line);
}

.acc details {
  border-bottom: 1px solid var(--line);
}

.acc summary {
  cursor: pointer;
  list-style: none;
  padding: 20px 44px 20px 0;
  font-weight: 600;
  font-size: 16px;
  position: relative;
  color: var(--text);
}

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

.acc summary::after {
  content: "";
  position: absolute;
  right: 8px;
  top: 26px;
  width: 11px;
  height: 11px;
  border-right: 2px solid var(--mint);
  border-bottom: 2px solid var(--mint);
  transform: rotate(45deg);
  transition: transform 0.2s ease;
}

.acc details[open] summary::after {
  transform: rotate(-135deg);
  top: 30px;
}

.acc summary:hover {
  color: var(--mint);
}

.acc__body {
  padding: 0 44px 22px 0;
  color: var(--muted);
  font-size: 15px;
  max-width: 82ch;
}

/* ----------------------------------------------------------------- form - */

.field {
  margin-bottom: 18px;
}

.field label {
  display: block;
  font-size: 12.5px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 8px;
}

.field input,
.field select,
.field textarea {
  width: 100%;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid var(--line-2);
  border-radius: var(--r-md);
  color: var(--text);
  font: inherit;
  font-size: 15.5px;
  padding: 13px 16px;
}

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

.field input::placeholder,
.field textarea::placeholder {
  color: var(--dim);
}

.field input:focus,
.field select:focus,
.field textarea:focus {
  border-color: var(--mint);
  outline: none;
}

.check {
  display: grid;
  grid-template-columns: 20px minmax(0, 1fr);
  gap: 12px;
  align-items: start;
  font-size: 14px;
  color: var(--muted);
  margin-bottom: 22px;
}

.check input {
  width: 18px;
  height: 18px;
  margin-top: 2px;
  accent-color: var(--mint);
}

.notice {
  border-radius: var(--r-md);
  padding: 15px 18px;
  font-size: 14.5px;
  margin-bottom: 22px;
}

.notice--ok {
  background: rgba(140, 249, 188, 0.11);
  border: 1px solid rgba(140, 249, 188, 0.32);
  color: #cfffe4;
}

.notice--err {
  background: rgba(255, 90, 106, 0.11);
  border: 1px solid rgba(255, 90, 106, 0.34);
  color: #ffd6da;
}

/* --------------------------------------------------------------- footer - */

.footer {
  background: var(--panel);
  border-radius: var(--r-xl);
  padding: clamp(40px, 5vw, 66px) 0 26px;
  position: relative;
  overflow: hidden;
}

.footer__grid {
  display: grid;
  grid-template-columns: minmax(0, 1.5fr) repeat(3, minmax(0, 1fr));
  gap: clamp(26px, 3.4vw, 48px);
  padding-bottom: 40px;
  border-bottom: 1px solid var(--line);
}

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

@media (max-width: 560px) {
  .footer__grid {
    grid-template-columns: 1fr;
  }
}

.footer h2,
.footer h4 {
  font-size: 11.5px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--dim);
  font-weight: 800;
  margin-bottom: 16px;
}

.footer ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer ul li {
  margin-bottom: 9px;
}

.footer ul a,
.footer .plainlink {
  color: var(--muted);
  font-size: 14.5px;
  text-decoration: none;
}

.footer ul a:hover,
.footer .plainlink:hover {
  color: var(--mint);
}

:where(.footer__about) p {
  color: var(--muted);
  font-size: 14.5px;
  max-width: 40ch;
  margin-top: 16px;
}

/* Support-organisation badges */
.orgs {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  padding: 32px 0;
  border-bottom: 1px solid var(--line);
  align-items: stretch;
}

.org {
  display: flex;
  align-items: center;
  gap: 13px;
  padding: 12px 18px;
  border: 1px solid var(--line-2);
  border-radius: var(--r-md);
  background: rgba(255, 255, 255, 0.035);
  text-decoration: none;
  transition: border-color 0.16s ease, background 0.16s ease;
  min-width: 0;
}

.org:hover {
  border-color: var(--mint);
  background: rgba(140, 249, 188, 0.07);
  text-decoration: none;
}

.org svg {
  flex: 0 0 auto;
  height: 30px;
  width: auto;
}

.org__txt {
  display: flex;
  flex-direction: column;
  line-height: 1.25;
  min-width: 0;
}

.org__txt b {
  font-size: 13.5px;
  color: var(--text);
  font-weight: 700;
  letter-spacing: -0.01em;
}

.org__txt span {
  font-size: 11.5px;
  color: var(--dim);
}

.footer__legal {
  padding-top: 26px;
  display: flex;
  flex-wrap: wrap;
  gap: 18px 28px;
  justify-content: space-between;
  align-items: flex-start;
}

:where(.footer__legal) p {
  font-size: 12.5px;
  color: var(--dim);
  max-width: 74ch;
  line-height: 1.65;
}

.footer__age {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 16px 20px;
  border: 1px solid rgba(255, 90, 106, 0.4);
  background: rgba(255, 90, 106, 0.07);
  border-radius: var(--r-md);
  margin: 26px 0 0;
}

.footer__age p {
  margin: 0;
  font-size: 13.5px;
  color: #ffd9de;
}

.footer__age strong {
  color: #fff;
}

.footer__word {
  font-size: clamp(52px, 13vw, 172px);
  font-weight: 800;
  font-style: italic;
  letter-spacing: -0.055em;
  line-height: 0.8;
  color: rgba(255, 255, 255, 0.045);
  text-align: center;
  margin: 34px 0 -14px;
  user-select: none;
  pointer-events: none;
}

/* --------------------------------------------------------- cookie modal - */

.cookie {
  position: fixed;
  left: clamp(12px, 2vw, 22px);
  bottom: clamp(12px, 2vw, 22px);
  z-index: 120;
  width: min(430px, calc(100vw - 24px));
  background: linear-gradient(158deg, #2c0b4d 0%, #170a26 100%);
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: var(--r-lg);
  box-shadow: var(--shadow);
  padding: 22px 22px 20px;
  transform: translateY(14px);
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.28s ease, transform 0.28s ease, visibility 0.28s;
}

.cookie.is-visible {
  opacity: 1;
  transform: translateY(0);
  visibility: visible;
}

.cookie h2 {
  font-size: 17px;
  margin-bottom: 8px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.cookie h2 svg {
  width: 19px;
  height: 19px;
  stroke: var(--mint);
  fill: none;
  stroke-width: 1.7;
}

.cookie p {
  font-size: 13.6px;
  color: #c6b8d9;
  margin-bottom: 16px;
}

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

.cookie__actions .btn {
  flex: 1 1 auto;
  padding: 12px 18px;
  font-size: 14px;
}

.cookie__link {
  display: inline-block;
  margin-top: 13px;
  font-size: 12.5px;
  color: var(--dim);
  text-decoration: underline;
  text-underline-offset: 3px;
}

.cookie__link:hover {
  color: var(--mint);
}

/* ----------------------------------------------------------- utilities -- */

.center {
  text-align: center;
}

.mt-0 {
  margin-top: 0;
}

.mb-0 {
  margin-bottom: 0;
}

.mt-l {
  margin-top: clamp(26px, 3.4vw, 44px);
}

.mt-m {
  margin-top: 22px;
}

.crumbs {
  font-size: 12.5px;
  color: var(--dim);
  margin-bottom: 18px;
}

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

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

.tags li {
  margin: 0;
  font-size: 12.5px;
  color: var(--muted);
  border: 1px solid var(--line);
  border-radius: var(--r-pill);
  padding: 6px 14px;
  background: rgba(255, 255, 255, 0.03);
}

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

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

/* ==========================================================================
   Component + utility classes
   These exist because the Content Security Policy forbids inline style
   attributes. Anything that would once have been style="..." lives here.
   ========================================================================== */

/* ------------------------------------------------------- brand palettes -- */

.brand--gatobet {
  --brand-accent: #ff7a1a;
  --brand-logo-bg: #111015;
}

.brand--jesterbet {
  --brand-accent: #d4af57;
  --brand-logo-bg: #0f0d14;
}

.bcard__logo,
.pick__logo {
  background: var(--brand-logo-bg, #111015);
}

.bcard__logo--hero {
  border-radius: var(--r-lg);
}

/* ------------------------------------------------------------- typography */

.stat__n {
  font-size: clamp(30px, 3.6vw, 44px);
  font-weight: 800;
  letter-spacing: -0.04em;
  color: var(--mint);
  line-height: 1;
}

.stat__l {
  color: var(--muted);
  font-size: 14px;
  margin: 6px 0 0;
}

/* Small all-caps label above a block of content */
.kicker {
  font-size: 11.5px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--mint);
  font-weight: 800;
  margin-bottom: 12px;
}

.kicker--dim {
  color: var(--dim);
}

.kicker--con {
  color: #ff8fa0;
}

.kicker--wide {
  letter-spacing: 0.16em;
  margin: 32px 0 -18px;
}

/* Key-fact tiles */
.microlabel {
  font-size: 12px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--dim);
  margin-bottom: 10px;
  line-height: 1.35;
}

.factval {
  color: var(--text);
  font-size: 19px;
  font-weight: 700;
  margin: 0;
}

.factval--sm {
  font-size: 15px;
  font-weight: 600;
}

.bignum {
  font-size: 22px;
  color: var(--mint);
  font-weight: 800;
  margin: 6px 0 10px;
  letter-spacing: -0.03em;
}

.contact-val {
  margin: 10px 0 0;
  font-size: 16px;
}

.contact-val--addr {
  font-size: 15px;
  color: var(--text);
}

.finetext {
  font-size: 11.5px;
  color: var(--dim);
  line-height: 1.5;
  margin: 4px 2px 0;
}

.finetext--center {
  margin: 0;
  text-align: center;
}

.note {
  font-size: 12.5px;
  color: var(--dim);
  margin-top: 16px;
}

.note--sm {
  font-size: 13px;
  margin-top: 10px;
}

.note--mid {
  font-size: 13.5px;
  margin-top: 8px;
}

.mono--xs {
  font-size: 11px;
}

.h-mid {
  font-size: clamp(22px, 2.5vw, 30px);
}

.accent {
  color: var(--mint);
}

.accent--strong {
  color: var(--mint);
  font-size: 17px;
}

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

.soft {
  font-weight: 500;
}

/* Text sitting on a violet ground */
.on-violet {
  color: rgba(255, 255, 255, 0.82);
}

.on-violet-dim {
  color: rgba(255, 255, 255, 0.72);
}

.on-violet-faint {
  color: rgba(255, 255, 255, 0.5);
}

.on-violet a,
.on-violet-dim a,
.on-violet-faint a,
.link-white {
  color: #fff;
}

.centered-copy {
  max-width: 52ch;
  margin: 0 auto 24px;
  color: rgba(255, 255, 255, 0.7);
}

.centered-copy--wide {
  max-width: 56ch;
  margin: 26px auto 0;
  text-align: center;
  font-size: 15.5px;
  color: rgba(255, 255, 255, 0.66);
}

.legalnote {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.5);
  margin-top: 22px;
}

/* ----------------------------------------------------------- measure ---- */

.measure-20 { max-width: 20ch; }
.measure-22 { max-width: 22ch; }
.measure-24 { max-width: 24ch; }
.measure-26 { max-width: 26ch; }
.measure-center { margin-inline: auto; }

/* ------------------------------------------------------------- spacing -- */

.flush { margin: 0; }
.mt-s { margin-top: 8px; }
.mt-xs { margin-top: 6px; }
.mb-s { margin-bottom: 18px; }
.mb-m { margin-bottom: 22px; }
.section-gap { margin-bottom: clamp(34px, 4.5vw, 56px); }

.gap-12 { gap: 12px; }
.gap-16 { gap: 16px; }
.gap-wide { gap: clamp(24px, 4vw, 56px); }

.center-row { justify-content: center; }

.plainblock {
  text-decoration: none;
  color: inherit;
}

.plainblock:hover {
  text-decoration: none;
}

.float-badge {
  float: left;
  margin: 2px 16px 8px 0;
}

/* Vertical rhythm for the inline pick cards in the hero */
.pick__name,
.pick__note {
  display: block;
}

/* -------------------------------------------------- meter width helpers -- */
.w-0{width:0%}
.w-2{width:2%}
.w-4{width:4%}
.w-6{width:6%}
.w-8{width:8%}
.w-10{width:10%}
.w-12{width:12%}
.w-14{width:14%}
.w-16{width:16%}
.w-18{width:18%}
.w-20{width:20%}
.w-22{width:22%}
.w-24{width:24%}
.w-26{width:26%}
.w-28{width:28%}
.w-30{width:30%}
.w-32{width:32%}
.w-34{width:34%}
.w-36{width:36%}
.w-38{width:38%}
.w-40{width:40%}
.w-42{width:42%}
.w-44{width:44%}
.w-46{width:46%}
.w-48{width:48%}
.w-50{width:50%}
.w-52{width:52%}
.w-54{width:54%}
.w-56{width:56%}
.w-58{width:58%}
.w-60{width:60%}
.w-62{width:62%}
.w-64{width:64%}
.w-66{width:66%}
.w-68{width:68%}
.w-70{width:70%}
.w-72{width:72%}
.w-74{width:74%}
.w-76{width:76%}
.w-78{width:78%}
.w-80{width:80%}
.w-82{width:82%}
.w-84{width:84%}
.w-86{width:86%}
.w-88{width:88%}
.w-90{width:90%}
.w-92{width:92%}
.w-94{width:94%}
.w-96{width:96%}
.w-98{width:98%}
.w-100{width:100%}


/* Eyebrow variant for the negative column */
.eyebrow--con {
  color: #ff8fa0;
}

.eyebrow--con::before {
  background: #ff8fa0;
}

/* ==========================================================================
   Responsive corrections
   Flex items that are themselves nowrap flex containers resolve their
   automatic minimum size to max-content, which is what forces a horizontal
   scrollbar on narrow viewports. Each rule below releases one of those.
   ========================================================================== */

.agebar__in > span {
  flex-wrap: wrap;
  justify-content: center;
  min-width: 0;
}

.hero__meta span {
  flex-wrap: wrap;
  min-width: 0;
}

.footer__age p,
.pick > span,
.card,
.grid > *,
.head-row > div {
  min-width: 0;
}

.table-wrap {
  max-width: 100%;
}

.deflist {
  grid-template-columns: repeat(auto-fit, minmax(min(210px, 100%), 1fr));
}

/* Brand cards go single-column well before the aside column gets squeezed */
@media (max-width: 760px) {
  .bcard {
    grid-template-columns: 1fr;
  }

  .bcard__rank {
    border-radius: 0 var(--r-xl) 0 var(--r-md);
  }
}

@media (max-width: 480px) {
  .hero h1 {
    font-size: 23px;
  }

  .hero__ghost {
    font-size: 120px;
  }

  .pick {
    grid-template-columns: auto minmax(0, 1fr);
    row-gap: 10px;
  }

  .pick__score {
    grid-column: 2;
    text-align: right;
  }

  .agebar__in {
    gap: 6px 14px;
  }
}

/* A control that reads as a link but is a real button, so it works the way a
   button works for keyboard and assistive tech. Used for "Cookie settings",
   which performs an action rather than navigating anywhere. */
.linkbtn {
  background: none;
  border: 0;
  padding: 0;
  margin: 0;
  font: inherit;
  color: var(--muted);
  cursor: pointer;
  text-align: left;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.linkbtn:hover {
  color: var(--mint);
}

.footer .linkbtn {
  font-size: 14.5px;
  text-decoration: none;
}

.footer .linkbtn:hover {
  text-decoration: none;
}

.prose .linkbtn {
  color: var(--mint);
}
