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

:root {
  --bg-dark: #0f1b22;
  --bg-dark-soft: #13202a;
  --bg-section-dark: #172732;
  --bg-light: #f5efe6;
  --bg-panel: #f3ebdd;
  --gold: #e0a93b;
  --gold-hover: #ffc95c;
  --gold-dark: #c8942f;
  --emerald: #20c997;
  --emerald-deep: #0c6b5d;
  --text-light: #f7f4ee;
  --text-soft: #c9c2b8;
  --text-body: #d8d2c8;
  --text-dark: #1e1e1a;
  --text-dark-soft: #6e6a63;
  --midnight: var(--bg-dark);
  --midnight-soft: var(--bg-dark-soft);
  --midnight-card: var(--bg-section-dark);
  --cyan: var(--emerald);
  --cyan-dim: var(--emerald-deep);
  --cyan-glow: rgba(32, 201, 151, 0.16);
  --amber: var(--gold);
  --amber-dim: var(--gold-dark);
  --amber-glow: rgba(224, 169, 59, 0.18);
  --text: var(--text-light);
  --bg-page: var(--bg-light);
  --line: rgba(32, 201, 151, 0.18);
  --line-dark: rgba(255, 255, 255, 0.1);
  --font-display: "Outfit", system-ui, sans-serif;
  --font-body: "IBM Plex Sans", system-ui, sans-serif;
  --max: 1140px;
  --prose: 680px;
  --faq-max: 1000px;
  --gutter: clamp(1rem, 3vw, 1.5rem);
  --header-h: 60px;
  --scroll-pad: 76px;
  --radius: 10px;
  --radius-pill: 999px;
  --geo-clip: polygon(0 0, 100% 0, 100% calc(100% - 12px), calc(100% - 12px) 100%, 0 100%);
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: var(--scroll-pad);
}

section[id] {
  scroll-margin-top: var(--scroll-pad);
}

body {
  margin: 0;
  font-family: var(--font-body);
  font-size: 1.0625rem;
  line-height: 1.65;
  color: var(--text-dark);
  background: var(--bg-page);
  overflow-x: hidden;
}

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

a {
  color: var(--emerald-deep);
  text-underline-offset: 3px;
}

a:hover {
  color: var(--emerald);
}

.layout {
  width: min(var(--max), 100% - var(--gutter) * 2);
  margin-inline: auto;
}

.skip-link {
  position: absolute;
  left: -9999px;
  top: 0;
  z-index: 9999;
  padding: 0.5rem 1rem;
  background: var(--cyan);
  color: var(--midnight);
  font-weight: 600;
  text-decoration: none;
}

.skip-link:focus {
  left: 0;
}

.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;
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.35rem;
  padding: 0.72rem 1.35rem;
  border-radius: var(--radius-pill);
  font-family: var(--font-body);
  font-size: 0.92rem;
  font-weight: 700;
  line-height: 1.2;
  text-decoration: none;
  border: 1px solid transparent;
  cursor: pointer;
  transition: background 0.2s, color 0.2s, border-color 0.2s, transform 0.15s;
}

.btn--primary {
  background: linear-gradient(180deg, var(--gold-hover) 0%, var(--gold) 100%);
  color: var(--text-dark);
  box-shadow: 0 4px 18px rgba(224, 169, 59, 0.35);
}

.btn--primary:hover {
  background: var(--gold-hover);
  color: var(--text-dark);
  transform: translateY(-1px);
}

.btn--secondary {
  background: rgba(23, 39, 50, 0.55);
  color: var(--text-light);
  border-color: rgba(247, 244, 238, 0.28);
}

.btn--secondary:hover {
  background: rgba(23, 39, 50, 0.82);
  color: var(--text-light);
  border-color: rgba(224, 169, 59, 0.45);
}

.btn--sm {
  padding: 0.45rem 0.95rem;
  font-size: 0.78rem;
}

.header-cta {
  display: none;
}

.hero-affiliate-note {
  margin: 0.75rem 0 0;
  max-width: 36rem;
  font-size: 0.78rem;
  line-height: 1.45;
  color: rgba(247, 244, 238, 0.78);
}

/* Header */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  height: var(--header-h);
  background: rgba(15, 27, 34, 0.94);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--line-dark);
  transition: box-shadow 0.2s;
}

.site-header.is-scrolled {
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.25);
}

.header-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: var(--header-h);
  gap: 1rem;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 1rem;
  color: var(--text);
  text-decoration: none;
  letter-spacing: -0.01em;
  transition: color 0.2s;
}

.brand:hover {
  color: var(--text-light);
}

.brand-mark {
  flex-shrink: 0;
  border-radius: 6px;
  box-shadow: 0 0 0 1px rgba(224, 169, 59, 0.14);
}

.brand em {
  font-style: normal;
  color: var(--gold);
  transition: color 0.2s;
}

.brand:hover em {
  color: var(--gold-hover);
}

.header-meta {
  display: flex;
  align-items: center;
  gap: 0.65rem 0.85rem;
}

.age-badge {
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  padding: 0.2rem 0.45rem;
  border: 1px solid var(--amber);
  color: var(--amber);
  clip-path: polygon(0 0, calc(100% - 4px) 0, 100% 4px, 100% 100%, 4px 100%, 0 calc(100% - 4px));
}

.nav-toggle {
  display: none;
  font-family: var(--font-body);
  font-size: 0.82rem;
  font-weight: 600;
  padding: 0.35rem 0.65rem;
  border: 1px solid var(--line-dark);
  background: var(--midnight-soft);
  color: var(--text);
  cursor: pointer;
  clip-path: polygon(0 0, calc(100% - 6px) 0, 100% 6px, 100% 100%, 6px 100%, 0 calc(100% - 6px));
}

.site-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 0.15rem 1rem;
}

.site-nav a {
  font-size: 0.82rem;
  font-weight: 500;
  color: var(--text-soft);
  text-decoration: none;
  transition: color 0.2s;
}

.site-nav a:hover,
.site-nav a:focus-visible {
  color: var(--gold-hover);
}

.nav-cta {
  display: none;
  margin-top: 0.5rem;
  width: 100%;
}

@media (min-width: 861px) {
  .header-cta {
    display: inline-flex;
  }
}

@media (max-width: 860px) {
  .nav-toggle {
    display: block;
  }

  .site-nav {
    display: none;
    position: absolute;
    top: var(--header-h);
    right: var(--gutter);
    left: var(--gutter);
    flex-direction: column;
    padding: 0.75rem 1rem;
    background: var(--midnight-soft);
    border: 1px solid var(--line-dark);
    clip-path: var(--geo-clip);
  }

  .site-nav.is-open {
    display: flex;
  }

  .site-nav.is-open .nav-cta {
    display: inline-flex;
  }
}

/* Hero — split layout (MaxWin-style) */
.hero-temple {
  position: relative;
  color: var(--text-light);
  overflow-x: clip;
  background: var(--bg-dark);
}

.hero-temple::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 62% 58% at 12% 28%, rgba(32, 201, 151, 0.14), transparent 58%),
    radial-gradient(ellipse 48% 42% at 88% 18%, rgba(224, 169, 59, 0.12), transparent 52%),
    linear-gradient(180deg, var(--bg-dark-soft) 0%, var(--bg-dark) 100%);
  pointer-events: none;
}

.hero-temple__grid {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(420px, 560px);
  align-items: center;
  gap: clamp(2rem, 4vw, 3rem);
  padding: clamp(2.25rem, 5vw, 4rem) 0 clamp(1.5rem, 3vw, 2.25rem);
}

.hero-temple__copy {
  max-width: 560px;
}

.hero-temple__visual {
  position: relative;
  width: 100%;
  max-width: 560px;
  margin: 0;
  justify-self: end;
  aspect-ratio: 4 / 3;
  overflow: hidden;
  border-radius: 12px;
  box-shadow: 0 24px 48px rgba(0, 0, 0, 0.42);
}

.hero-temple__glow {
  position: absolute;
  inset: 0;
  z-index: 0;
  background: radial-gradient(
    ellipse 88% 78% at 50% 50%,
    rgba(32, 201, 151, 0.28) 0%,
    rgba(224, 169, 59, 0.12) 42%,
    transparent 72%
  );
  pointer-events: none;
}

.hero-temple__visual picture {
  position: relative;
  z-index: 1;
  display: block;
  width: 100%;
  height: 100%;
}

.hero-temple__visual img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.hero-kicker {
  margin: 0 0 0.75rem;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--emerald);
}

.hero-temple h1 {
  margin: 0 0 1rem;
  font-family: var(--font-display);
  font-size: clamp(1.85rem, 4.35vw, 2.85rem);
  font-weight: 700;
  line-height: 1.12;
  letter-spacing: -0.02em;
  text-wrap: balance;
  max-width: 16ch;
}

.hero-lead {
  margin: 0 0 1.35rem;
  max-width: 560px;
  font-size: 1.05rem;
  line-height: 1.65;
  color: var(--text-soft);
}

.hero-temple__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  align-items: center;
}

.hero-meta {
  margin: 1rem 0 0;
  font-size: 0.82rem;
  color: rgba(247, 244, 238, 0.72);
}

/* Stat strip */
.stat-strip {
  position: relative;
  z-index: 1;
  padding: 0 0 1.75rem;
}

.stat-strip__grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 0.5rem;
  margin: 0;
  padding: 0;
  list-style: none;
}

.stat-tile {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 0.85rem 0.5rem;
  background: rgba(23, 39, 50, 0.82);
  border: 1px solid rgba(224, 169, 59, 0.22);
  border-radius: var(--radius);
  backdrop-filter: blur(8px);
}

.stat-tile__label {
  display: block;
  margin-bottom: 0.2rem;
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--gold);
}

.stat-tile__value {
  display: block;
  font-family: var(--font-display);
  font-size: 0.92rem;
  font-weight: 600;
  color: var(--text);
}

@media (max-width: 1100px) {
  .hero-temple__grid {
    grid-template-columns: 1fr;
    gap: clamp(1.25rem, 3vw, 1.75rem);
    padding: clamp(2rem, 5vw, 2.75rem) 0 clamp(1.25rem, 3vw, 1.75rem);
  }

  .hero-temple__copy {
    max-width: none;
  }

  .hero-temple__visual {
    justify-self: start;
    max-width: 100%;
    margin-top: 1.5rem;
  }

  .hero-temple h1 {
    max-width: none;
    font-size: clamp(2rem, 4.8vw, 2.75rem);
  }
}

@media (max-width: 720px) {
  .stat-strip__grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .stat-strip__grid li:last-child {
    grid-column: 1 / -1;
  }
}

/* Sections */
.section {
  padding: 3.25rem 0;
}

#faq.section {
  padding-bottom: 2.5rem;
}

.section--alt {
  background: var(--bg-panel);
  border-block: 1px solid rgba(30, 30, 26, 0.06);
}

.section--dark {
  background: var(--bg-section-dark);
  color: var(--text-light);
}

.section--dark .section-head h2 {
  color: var(--text-light);
}

.section--dark .section-lead,
.section--dark .prose p,
.section--dark .gold-meter__row,
.section--dark .gold-callout {
  color: var(--text-soft);
}

.section--dark .gold-meter__bar {
  background: rgba(255, 255, 255, 0.1);
}

.section--dark .gold-meter__mult {
  color: var(--gold-hover);
}

.section--dark .mod-geo {
  background: rgba(15, 27, 34, 0.55);
  border-color: rgba(224, 169, 59, 0.15);
}

/* CTA band */
.cta-band {
  padding: 2.75rem 0;
  background: linear-gradient(135deg, var(--bg-dark-soft) 0%, var(--emerald-deep) 100%);
  color: var(--text-light);
  border-block: 1px solid rgba(224, 169, 59, 0.2);
}

.cta-band__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
}

.cta-band__copy h2 {
  margin: 0 0 0.45rem;
  font-family: var(--font-display);
  font-size: clamp(1.25rem, 2.5vw, 1.55rem);
  font-weight: 700;
  color: var(--text-light);
}

.cta-band__copy p {
  margin: 0;
  max-width: 36rem;
  font-size: 0.92rem;
  line-height: 1.55;
  color: var(--text-soft);
}

.cta-band .btn--primary {
  flex-shrink: 0;
}

@media (max-width: 720px) {
  .cta-band__inner {
    flex-direction: column;
    align-items: flex-start;
  }

  .cta-band .btn--primary {
    width: 100%;
  }
}

.section-head {
  margin-bottom: 1.25rem;
}

.section-head h2 {
  margin: 0 0 0.35rem;
  font-family: var(--font-display);
  font-size: clamp(1.35rem, 2.8vw, 1.75rem);
  font-weight: 700;
  letter-spacing: -0.02em;
  color: var(--text-dark);
}

.section-lead {
  margin: 0;
  color: var(--text-dark-soft);
  font-size: 0.98rem;
  max-width: var(--prose);
}

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

.prose p {
  margin: 0 0 1rem;
  color: var(--text-dark-soft);
}

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

/* Technical snapshot */
.tech-snapshot {
  padding: 2.5rem 0 2.75rem;
  background: var(--bg-panel);
}

.tech-snapshot .section-head h2 {
  color: var(--text-dark);
}

.geo-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.75rem;
}

.geo-card {
  padding: 1.1rem 1rem;
  background: #fff;
  border: 1px solid rgba(224, 169, 59, 0.18);
  border-radius: var(--radius);
  box-shadow: 0 4px 16px rgba(15, 27, 34, 0.06);
}

.geo-card__label {
  display: block;
  margin-bottom: 0.35rem;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--cyan-dim);
}

.geo-card__value {
  margin: 0;
  font-family: var(--font-display);
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--text-dark);
}

.geo-card__note {
  margin: 0.35rem 0 0;
  font-size: 0.82rem;
  color: var(--text-dark-soft);
}

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

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

/* Steps */
.step-geo {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.75rem;
  margin: 1.5rem 0 0;
  padding: 0;
  list-style: none;
}

.step-geo li {
  position: relative;
  padding: 1rem 0.85rem 1rem 2.5rem;
  background: var(--bg-panel);
  border: 1px solid rgba(15, 23, 42, 0.08);
  font-size: 0.92rem;
  color: var(--text-dark-soft);
  clip-path: polygon(0 0, calc(100% - 8px) 0, 100% 8px, 100% 100%, 0 100%);
}

.step-geo__num {
  position: absolute;
  left: 0.75rem;
  top: 0.85rem;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.85rem;
  color: var(--amber);
}

@media (max-width: 640px) {
  .step-geo {
    grid-template-columns: 1fr;
  }
}

/* Board mechanics */
.board-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  align-items: center;
}

.board-layout__figure {
  margin: 0;
}

.board-layout__figure img {
  clip-path: polygon(0 0, calc(100% - 14px) 0, 100% 14px, 100% 100%, 14px 100%, 0 calc(100% - 14px));
  border: 1px solid rgba(34, 211, 238, 0.15);
}

.board-facts {
  display: grid;
  gap: 0.5rem;
  margin: 1rem 0 0;
  padding: 0;
  list-style: none;
}

.board-facts li {
  display: flex;
  align-items: baseline;
  gap: 0.5rem;
  padding: 0.55rem 0.75rem;
  background: rgba(34, 211, 238, 0.06);
  font-size: 0.9rem;
  clip-path: polygon(0 0, calc(100% - 6px) 0, 100% 6px, 100% 100%, 0 100%);
}

.board-facts strong {
  color: var(--cyan-dim);
  font-weight: 600;
  min-width: 5.5rem;
}

@media (max-width: 768px) {
  .board-layout {
    grid-template-columns: 1fr;
  }
}

/* Modifiers */
.mod-geo-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 0.5rem;
  margin: 1.25rem 0 0;
  padding: 0;
  list-style: none;
}

.mod-geo {
  padding: 0.85rem 0.65rem;
  text-align: center;
  background: var(--midnight-card);
  border: 1px solid var(--line);
  clip-path: polygon(0 0, calc(100% - 6px) 0, 100% 6px, 100% 100%, 6px 100%, 0 calc(100% - 6px));
}

.mod-geo__gem {
  display: block;
  width: 14px;
  height: 14px;
  margin: 0 auto 0.4rem;
  clip-path: polygon(50% 0%, 100% 38%, 82% 100%, 18% 100%, 0% 38%);
}

.mod-nuclear .mod-geo__gem { background: #3b82f6; }
.mod-wild .mod-geo__gem { background: #ec4899; }
.mod-squares .mod-geo__gem { background: #a16207; }
.mod-colossal .mod-geo__gem { background: #ef4444; }
.mod-lucky .mod-geo__gem { background: #22c55e; }

.mod-geo strong {
  display: block;
  font-family: var(--font-display);
  font-size: 0.78rem;
  color: var(--text);
  margin-bottom: 0.25rem;
}

.mod-geo p {
  margin: 0;
  font-size: 0.72rem;
  line-height: 1.4;
  color: var(--text-soft);
}

@media (max-width: 900px) {
  .mod-geo-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 520px) {
  .mod-geo-grid {
    grid-template-columns: 1fr 1fr;
  }
}

/* Gold Fever */
.gold-panel {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 2rem;
  align-items: start;
}

.gold-meter {
  display: grid;
  gap: 0.45rem;
  margin: 1.25rem 0;
}

.gold-meter__row {
  display: grid;
  grid-template-columns: 2.5rem 1fr 2.5rem;
  align-items: center;
  gap: 0.5rem;
  font-family: var(--font-display);
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--text-dark-soft);
}

.gold-meter__bar {
  height: 8px;
  background: rgba(15, 23, 42, 0.08);
  clip-path: polygon(0 0, calc(100% - 4px) 0, 100% 4px, 100% 100%, 0 100%);
  overflow: hidden;
}

.gold-meter__fill {
  display: block;
  height: 100%;
  background: linear-gradient(90deg, var(--amber-dim), var(--amber));
}

.gold-meter__row:nth-child(1) .gold-meter__fill { width: 20%; }
.gold-meter__row:nth-child(2) .gold-meter__fill { width: 35%; }
.gold-meter__row:nth-child(3) .gold-meter__fill { width: 50%; }
.gold-meter__row:nth-child(4) .gold-meter__fill { width: 70%; }
.gold-meter__row:nth-child(5) .gold-meter__fill { width: 100%; }

.gold-meter__mult {
  text-align: right;
  color: var(--amber-dim);
}

.gold-callout {
  padding: 1rem 1.1rem;
  background: rgba(245, 158, 11, 0.08);
  border-left: 3px solid var(--amber);
  font-size: 0.92rem;
  color: var(--text-dark-soft);
}

@media (max-width: 768px) {
  .gold-panel {
    grid-template-columns: 1fr;
  }
}

/* Gameplay traits */
.trait-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.65rem;
  margin: 0;
  padding: 0;
  list-style: none;
}

.trait-grid li {
  padding: 0.9rem 1rem 1rem;
  background: #fff;
  border: 1px solid rgba(15, 27, 34, 0.11);
  border-radius: var(--radius);
  box-shadow: 0 2px 10px rgba(15, 27, 34, 0.05);
}

.trait-grid h3 {
  position: relative;
  margin: 0 0 0.45rem;
  padding: 0.15rem 0 0.5rem;
  font-family: var(--font-display);
  font-size: 0.93rem;
  font-weight: 600;
  color: var(--text-dark);
  border-bottom: 1px solid rgba(15, 27, 34, 0.07);
}

.trait-grid h3::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 2.25rem;
  height: 2px;
  background: linear-gradient(90deg, var(--gold) 0%, var(--emerald) 100%);
  border-radius: 1px;
}

.trait-grid p {
  margin: 0;
  font-size: 0.88rem;
  line-height: 1.55;
  color: var(--text-dark-soft);
}

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

/* RTP block */
.rtp-table-wrap {
  overflow-x: auto;
  margin: 1.25rem 0;
}

.rtp-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.9rem;
}

.rtp-table th,
.rtp-table td {
  padding: 0.65rem 0.85rem;
  text-align: left;
  border-bottom: 1px solid rgba(15, 23, 42, 0.08);
}

.rtp-table th {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 0.78rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--cyan-dim);
  background: rgba(34, 211, 238, 0.06);
}

.rtp-table td {
  color: var(--text-dark-soft);
}

.rtp-note {
  margin: 0.75rem 0 0;
  padding: 0.75rem 1rem;
  font-size: 0.88rem;
  color: var(--text-dark-soft);
  background: rgba(34, 211, 238, 0.05);
  border: 1px solid rgba(34, 211, 238, 0.12);
}

/* Pros/cons */
.verdict-geo {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
  margin-top: 1.25rem;
}

.verdict-col {
  padding: 1.15rem 1.1rem;
  clip-path: polygon(0 0, calc(100% - 12px) 0, 100% 12px, 100% 100%, 0 100%);
}

.verdict-col h3 {
  margin: 0 0 0.65rem;
  font-family: var(--font-display);
  font-size: 0.95rem;
  font-weight: 600;
}

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

.verdict-col li {
  position: relative;
  padding-left: 1.1rem;
  margin-bottom: 0.45rem;
  font-size: 0.88rem;
  color: var(--text-dark-soft);
}

.verdict-col li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.45em;
  width: 6px;
  height: 6px;
  clip-path: polygon(50% 0%, 100% 50%, 50% 100%, 0% 50%);
}

.verdict-yes {
  background: rgba(34, 211, 238, 0.07);
  border: 1px solid rgba(34, 211, 238, 0.18);
}

.verdict-yes h3 { color: var(--cyan-dim); }
.verdict-yes li::before { background: var(--cyan); }

.verdict-no {
  background: rgba(245, 158, 11, 0.07);
  border: 1px solid rgba(245, 158, 11, 0.18);
}

.verdict-no h3 { color: var(--amber-dim); }
.verdict-no li::before { background: var(--amber); }

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

/* Demo box */
.demo-box {
  padding: 1.35rem 1.5rem;
  background: var(--bg-section-dark);
  color: var(--text-soft);
  border-radius: var(--radius);
  border: 1px solid rgba(224, 169, 59, 0.2);
}

.demo-box h2 {
  margin: 0 0 0.5rem;
  font-family: var(--font-display);
  font-size: 1.15rem;
  color: var(--text);
}

.demo-box p {
  margin: 0 0 0.75rem;
  font-size: 0.92rem;
}

.demo-box a {
  color: var(--emerald);
}

.demo-box ul {
  margin: 0;
  padding-left: 1.1rem;
  font-size: 0.88rem;
}

/* FAQ */
.faq-list {
  margin: 0;
  padding: 0;
  list-style: none;
  max-width: min(var(--faq-max), 100%);
}

@media (min-width: 861px) {
  .faq-list {
    max-width: var(--faq-max);
  }
}

.faq-item {
  border-bottom: 1px solid rgba(15, 23, 42, 0.08);
}

.faq-q {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  padding: 1rem 0;
  border: 0;
  background: none;
  font-family: var(--font-display);
  font-size: 0.98rem;
  font-weight: 600;
  text-align: left;
  color: var(--text-dark);
  cursor: pointer;
}

.faq-q::after {
  content: "+";
  flex-shrink: 0;
  margin-left: 1rem;
  font-size: 1.2rem;
  font-weight: 400;
  color: var(--cyan-dim);
  transition: transform 0.2s;
}

.faq-item.is-open .faq-q::after {
  transform: rotate(45deg);
}

.faq-a {
  display: none;
  padding: 0 0 1rem;
  font-size: 0.92rem;
  color: var(--text-dark-soft);
  line-height: 1.6;
}

.faq-item.is-open .faq-a {
  display: block;
}

/* Methodology strip */
.method-strip {
  padding: 2.5rem 0;
  background: var(--midnight-soft);
  color: var(--text-soft);
}

.method-strip h2 {
  margin: 0 0 0.75rem;
  font-family: var(--font-display);
  font-size: 1.25rem;
  color: var(--text);
}

.method-strip p {
  margin: 0 0 0.75rem;
  max-width: var(--prose);
  font-size: 0.92rem;
}

.method-strip a {
  color: var(--cyan);
}

.method-links {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem 1rem;
  margin-top: 1rem;
}

.method-links a {
  font-size: 0.88rem;
  font-weight: 500;
  text-decoration: none;
  padding: 0.35rem 0.65rem;
  border: 1px solid var(--line);
  clip-path: polygon(0 0, calc(100% - 5px) 0, 100% 5px, 100% 100%, 5px 100%, 0 calc(100% - 5px));
}

/* Footer — minimal (MaxWin-style) */
.site-footer {
  position: relative;
  overflow: hidden;
  color: var(--text-soft);
  background:
    radial-gradient(circle at 6% 18%, rgba(32, 201, 151, 0.08), transparent 18rem),
    radial-gradient(circle at 90% 0%, rgba(224, 169, 59, 0.08), transparent 22rem),
    linear-gradient(145deg, var(--bg-dark-soft), var(--bg-dark) 62%);
  border-top: 2px solid rgba(224, 169, 59, 0.55);
}

.site-footer::before {
  position: absolute;
  inset: 0;
  content: "";
  background-image:
    linear-gradient(rgba(32, 201, 151, 0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(32, 201, 151, 0.035) 1px, transparent 1px);
  background-size: 2.75rem 2.75rem;
  mask-image: linear-gradient(to bottom, #000, transparent 78%);
  pointer-events: none;
}

.footer-minimal {
  position: relative;
  display: grid;
  width: min(calc(100% - 2rem), 77.5rem);
  min-height: 12.5rem;
  gap: 0.65rem;
  place-content: center;
  place-items: center;
  margin-inline: auto;
  padding-block: 1.4rem;
  text-align: center;
}

.footer-age {
  display: grid;
  width: 2.35rem;
  height: 2.35rem;
  flex: none;
  place-items: center;
  margin-bottom: 0.15rem;
  color: var(--text-dark);
  background: var(--gold);
  border-radius: 50%;
  font-size: 0.78rem;
  font-weight: 900;
}

.footer-inline-nav {
  display: flex;
  max-width: 68rem;
  flex-wrap: wrap;
  gap: 0.3rem 0.55rem;
  align-items: center;
  justify-content: center;
}

.footer-inline-nav a {
  color: #dfe1e9;
  font-size: 0.78rem;
  font-weight: 700;
  text-decoration-color: rgba(224, 169, 59, 0.42);
}

.footer-inline-nav a:hover {
  color: var(--gold-hover);
}

.footer-inline-nav span {
  color: rgba(224, 169, 59, 0.5);
  font-size: 0.72rem;
}

.footer-responsible-copy,
.footer-meta-copy {
  max-width: 58rem;
  margin: 0;
  color: #b8bac7;
  font-size: 0.75rem;
  line-height: 1.45;
}

.footer-meta-copy {
  color: #8f92a3;
  font-size: 0.7rem;
}
