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

:root {
  --bg: #f4f0e7;
  --bg-card: #fcfaf5;
  --bg-dark: #101512;
  --bg-hero: #0f1612;
  --text: #201d18;
  --text-hero: #e8ece8;
  --muted: #5a5349;
  --muted-hero: #a8b0a6;
  --gold: #b9832e;
  --gold-light: #d4a853;
  --gold-glow: rgba(185, 131, 46, 0.45);
  --emerald: #079b68;
  --emerald-bright: #10b981;
  --ruby: #c41e3a;
  --sapphire: #2563eb;
  --amethyst: #7c3aed;
  --line: rgba(185, 131, 46, 0.22);
  --line-dark: rgba(255, 255, 255, 0.08);
  --font-sans: "DM Sans", system-ui, sans-serif;
  --font-serif: "Lora", Georgia, serif;
  --layout-max: 1180px;
  --copy-max: 880px;
  --gutter: 24px;
  --section-pad: 56px;
  --section-pad-sm: 48px;
  --card-pad-y: 0.75rem;
  --card-pad-x: 0.85rem;
  --card-gap: 12px;
  --header-h: 48px;
  --scroll-offset: 72px;
}

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

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

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

body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 0;
  opacity: 0.35;
  background:
    radial-gradient(circle at 8% 12%, rgba(7, 155, 104, 0.05), transparent 28%),
    radial-gradient(circle at 92% 88%, rgba(185, 131, 46, 0.06), transparent 24%);
}

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

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

a:hover {
  color: #057a52;
}

.layout-container {
  max-width: var(--layout-max);
  margin-inline: auto;
  padding-inline: var(--gutter);
}

.skip-link {
  position: absolute;
  left: -9999px;
  top: 0;
  z-index: 9999;
  background: var(--emerald);
  color: #fff;
  padding: 0.5rem 1rem;
}

.skip-link:focus {
  left: 1rem;
  top: 1rem;
}

/* ── Header ── */
.site-header {
  position: sticky;
  top: 0;
  z-index: 200;
  height: var(--header-h);
  background: rgba(16, 21, 18, 0.88);
  border-bottom: 1px solid var(--line-dark);
  transition: background 0.25s, box-shadow 0.25s, backdrop-filter 0.25s;
}

.site-header.is-scrolled {
  background: rgba(16, 21, 18, 0.96);
  backdrop-filter: blur(12px);
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.35);
}

.header-inner {
  height: 100%;
  display: flex;
  align-items: center;
  gap: 0.65rem;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-weight: 600;
  font-size: 0.9rem;
  color: var(--text-hero);
  text-decoration: none;
  letter-spacing: 0.02em;
}

.brand span {
  color: var(--emerald-bright);
}

.brand-gem {
  width: 11px;
  height: 11px;
  background: linear-gradient(135deg, #34d399, var(--emerald));
  transform: rotate(45deg);
  box-shadow: 0 0 10px rgba(16, 185, 129, 0.55);
  flex-shrink: 0;
}

.header-age {
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  color: var(--gold-light);
  border: 1px solid rgba(212, 168, 83, 0.35);
  border-radius: 4px;
  padding: 0.12rem 0.35rem;
  line-height: 1.2;
}

.site-nav {
  margin-left: auto;
  display: flex;
  flex-wrap: wrap;
  gap: 0.05rem;
  justify-content: flex-end;
}

.site-nav a {
  color: var(--muted-hero);
  text-decoration: none;
  font-size: 0.8rem;
  padding: 0.28rem 0.5rem;
  border-radius: 6px;
  transition: color 0.2s, background 0.2s;
}

.site-nav a:hover {
  color: var(--gold-light);
  background: rgba(185, 131, 46, 0.1);
}

.nav-toggle {
  display: none;
  margin-left: auto;
  border: 1px solid var(--line-dark);
  background: rgba(255, 255, 255, 0.04);
  color: var(--text-hero);
  border-radius: 6px;
  padding: 0.28rem 0.55rem;
  font: inherit;
  font-size: 0.82rem;
  cursor: pointer;
}

/* ── Hero shell (preserved) ── */
.hero-shell {
  position: relative;
  z-index: 1;
  background: linear-gradient(145deg, #0c1210 0%, var(--bg-hero) 40%, #121a14 100%);
  padding-bottom: 2.25rem;
}

.hero-shell::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background-image:
    linear-gradient(rgba(7, 155, 104, 0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(7, 155, 104, 0.04) 1px, transparent 1px);
  background-size: 40px 40px;
  mask-image: linear-gradient(180deg, rgba(0, 0, 0, 0.5), transparent 85%);
}

.hero-shell::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    radial-gradient(ellipse 50% 40% at 85% 35%, rgba(185, 131, 46, 0.12), transparent 60%),
    radial-gradient(ellipse 30% 25% at 15% 70%, rgba(7, 155, 104, 0.08), transparent 50%);
}

.hero-stack {
  position: relative;
  z-index: 2;
}

.hero {
  position: relative;
  padding: 1.5rem 0 3.75rem;
  display: grid;
  grid-template-columns: 5fr 7fr;
  gap: clamp(40px, 5vw, 80px);
  align-items: center;
}

.eyebrow {
  margin: 0 0 0.65rem;
  font-size: 0.68rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold-light);
  font-weight: 600;
}

.hero h1 {
  font-family: var(--font-serif);
  font-size: clamp(1.65rem, 3.5vw, 2.35rem);
  font-weight: 600;
  line-height: 1.15;
  margin: 0 0 0.85rem;
  color: #f5f7f4;
}

.h1-sub {
  display: block;
  font-size: 0.88em;
  font-weight: 500;
  color: #d7d5cc;
  margin-top: 0.15em;
}

.hero-lead {
  margin: 0 0 0.75rem;
  color: var(--muted-hero);
  font-size: 1rem;
  line-height: 1.65;
  max-width: 38ch;
}

.hero-lead strong {
  color: var(--emerald-bright);
  font-weight: 600;
}

.hero-byline {
  margin: 0 0 1.15rem;
  font-size: 0.82rem;
  color: rgba(168, 176, 166, 0.85);
}

.btn-primary {
  display: inline-flex;
  align-items: center;
  padding: 0.5rem 1rem 0.5rem 0.85rem;
  background: linear-gradient(135deg, var(--emerald) 0%, #057a52 100%);
  color: #fff;
  text-decoration: none;
  font-weight: 600;
  font-size: 0.88rem;
  border-radius: 8px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: 0 4px 20px rgba(7, 155, 104, 0.35);
  transition: transform 0.2s, box-shadow 0.2s;
}

button.btn-primary {
  appearance: none;
  cursor: default;
  font-family: inherit;
  line-height: inherit;
}

button.btn-primary[aria-disabled="true"]:hover {
  transform: none;
  box-shadow: 0 4px 20px rgba(7, 155, 104, 0.35);
}

.btn-primary:hover {
  color: #fff;
  transform: translateY(-1px);
  box-shadow: 0 6px 24px rgba(7, 155, 104, 0.45);
}

.hero-visual {
  position: relative;
  margin: 0;
  align-self: center;
}

.hero-glow {
  position: absolute;
  inset: -8% -6%;
  background: radial-gradient(ellipse 70% 60% at 50% 45%, var(--gold-glow), transparent 68%);
  filter: blur(20px);
  z-index: 0;
  pointer-events: none;
}

.hero-picture {
  position: relative;
  z-index: 1;
  display: block;
  clip-path: polygon(0 4%, 100% 0, 100% 96%, 0 100%);
  mask-image: linear-gradient(to right, transparent 0%, #000 8%, #000 96%, transparent 100%),
    linear-gradient(to bottom, transparent 0%, #000 6%, #000 94%, transparent 100%);
  mask-composite: intersect;
  -webkit-mask-composite: source-in;
}

.hero-picture img {
  width: 100%;
  aspect-ratio: 1672 / 941;
  object-fit: cover;
  object-position: center 20%;
  filter: saturate(1.06) contrast(1.06);
}

.spec-panel {
  position: relative;
  z-index: 10;
  width: 100%;
  margin: -2.75rem 0 0;
  background: rgba(16, 21, 18, 0.94);
  border: 1px solid rgba(185, 131, 46, 0.28);
  border-radius: 10px;
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.35);
}

.spec-panel dl {
  margin: 0;
  display: flex;
  overflow-x: auto;
  scrollbar-width: none;
}

.spec-panel dl::-webkit-scrollbar {
  display: none;
}

.spec-panel div {
  flex: 1 0 auto;
  min-width: 0;
  padding: 0.75rem 1rem;
  text-align: center;
  border-right: 1px solid var(--line-dark);
}

.spec-panel div:last-child {
  border-right: none;
}

.spec-panel dt {
  font-size: 0.65rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--muted-hero);
  margin-bottom: 0.2rem;
}

.spec-panel dd {
  margin: 0;
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--text-hero);
  white-space: nowrap;
}

/* ══════════════════════════════════════
   BODY — global grid + alignment polish
   ══════════════════════════════════════ */

.section {
  position: relative;
  z-index: 1;
  padding-block: var(--section-pad);
  margin: 0;
  border-top: 1px solid rgba(185, 131, 46, 0.12);
}

.section .layout-container > h2,
.section h2 {
  font-family: var(--font-serif);
  font-size: clamp(1.75rem, 2.4vw, 2rem);
  font-weight: 600;
  line-height: 1.25;
  margin: 0 0 0.85rem;
  padding: 0;
  color: var(--text);
}

.section p {
  margin: 0 0 0.65rem;
  padding: 0;
  color: var(--muted);
  font-size: 1.0625rem;
  line-height: 1.6;
  max-width: var(--copy-max);
}

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

/* Veredito */
.verdict-section {
  margin-top: -20px;
  padding-block: var(--section-pad);
  background: linear-gradient(180deg, #ede8de 0%, var(--bg) 100%);
  border-top: 1px solid rgba(185, 131, 46, 0.28);
}

.verdict-head {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0.5rem;
  margin-bottom: 0.75rem;
}

.verdict-head h2 {
  margin: 0;
}

.verdict-text {
  margin-bottom: 1.25rem;
}

.verdict-tags {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem;
}

.verdict-tags li {
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 0.22rem 0.55rem;
  border-radius: 999px;
  background: rgba(7, 155, 104, 0.1);
  color: var(--emerald);
  border: 1px solid rgba(7, 155, 104, 0.2);
}

.audience-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0;
  align-items: stretch;
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 12px;
  overflow: hidden;
}

.audience-col {
  display: flex;
  flex-direction: column;
  padding: var(--card-pad-y) var(--card-pad-x);
}

.audience-yes {
  background: rgba(7, 155, 104, 0.05);
}

.audience-no {
  background: rgba(217, 119, 6, 0.04);
  border-left: 1px solid var(--line);
}

.audience-col h2 {
  font-family: var(--font-sans);
  font-size: 0.88rem;
  font-weight: 700;
  margin: 0 0 0.45rem;
}

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

.audience-col li {
  display: flex;
  align-items: flex-start;
  gap: 0.4rem;
  margin-bottom: 0.25rem;
  font-size: 0.9rem;
  line-height: 1.5;
  color: var(--muted);
}

.aud-icon {
  flex-shrink: 0;
  width: 13px;
  height: 13px;
  margin-top: 0.18rem;
  border-radius: 50%;
  position: relative;
}

.aud-icon-yes {
  background: rgba(7, 155, 104, 0.15);
  border: 1px solid var(--emerald);
}

.aud-icon-yes::after {
  content: "";
  position: absolute;
  left: 3px;
  top: 2px;
  width: 4px;
  height: 6px;
  border: solid var(--emerald);
  border-width: 0 2px 2px 0;
  transform: rotate(45deg);
}

.aud-icon-no {
  background: rgba(196, 30, 58, 0.1);
  border: 1px solid var(--ruby);
}

.aud-icon-no::before,
.aud-icon-no::after {
  content: "";
  position: absolute;
  left: 5px;
  top: 2px;
  width: 2px;
  height: 7px;
  background: var(--ruby);
}

.aud-icon-no::before {
  transform: rotate(45deg);
}

.aud-icon-no::after {
  transform: rotate(-45deg);
}

/* Como funciona */
.how-block h2 {
  margin-bottom: 0.75rem;
}

.how-block p:last-of-type {
  margin-bottom: 1.25rem;
}

.steps-row {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: var(--card-gap);
  align-items: stretch;
  width: 100%;
}

.steps-row li {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
  height: 100%;
  padding: var(--card-pad-y) var(--card-pad-x);
  background: var(--bg-card);
  border: 1px solid var(--line);
  border-radius: 12px;
  font-size: 0.92rem;
  line-height: 1.5;
  color: var(--text);
}

.step-num {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 1.35rem;
  height: 1.35rem;
  font-size: 0.68rem;
  font-weight: 700;
  color: var(--gold);
  border: 1px solid rgba(185, 131, 46, 0.35);
  border-radius: 50%;
  background: rgba(185, 131, 46, 0.08);
}

/* Modifiers — 5 equal columns desktop */
#modificadores {
  background: rgba(252, 250, 245, 0.55);
}

.modifier-grid {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: var(--card-gap);
  align-items: stretch;
  width: 100%;
}

.mod-card {
  display: flex;
  flex-direction: column;
  height: 100%;
  min-height: 130px;
  padding: var(--card-pad-y) var(--card-pad-x);
  background: var(--bg-card);
  border-radius: 12px;
  border: 1px solid var(--line);
  border-top-width: 2px;
}

.mod-gem {
  display: block;
  width: 9px;
  height: 9px;
  margin-bottom: 0.3rem;
  transform: rotate(45deg);
  background: var(--mod-color, var(--emerald));
}

.mod-num {
  display: block;
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  color: var(--muted);
  margin-bottom: 0.15rem;
}

.mod-card strong {
  display: block;
  font-size: 0.8rem;
  color: var(--text);
  margin-bottom: 0.2rem;
  line-height: 1.2;
  min-height: 2.4em;
}

.mod-card p {
  margin: 0;
  font-size: 0.78rem;
  line-height: 1.4;
  color: var(--muted);
  max-width: none;
  flex: 1;
}

.mod-nuclear {
  border-top-color: var(--sapphire);
  --mod-color: var(--sapphire);
}

.mod-wild {
  border-top-color: #db2777;
  --mod-color: #db2777;
}

.mod-squares {
  border-top-color: #d97706;
  --mod-color: #d97706;
}

.mod-colossal {
  border-top-color: var(--ruby);
  --mod-color: var(--ruby);
}

.mod-lucky {
  border-top-color: var(--emerald-bright);
  --mod-color: var(--emerald-bright);
}

/* Gold Fever */
.gold-panel {
  width: 100%;
  padding: 2.25rem;
  background: linear-gradient(135deg, rgba(16, 21, 18, 0.035) 0%, rgba(7, 155, 104, 0.05) 100%);
  border: 1px solid rgba(185, 131, 46, 0.28);
  border-radius: 14px;
}

.gold-layout {
  display: grid;
  grid-template-columns: 45fr 55fr;
  gap: 24px;
  align-items: start;
}

.gold-copy p {
  max-width: none;
  margin-bottom: 0.55rem;
  font-size: 1rem;
  line-height: 1.58;
}

.gold-footnote {
  margin: 0;
  font-size: 0.85rem;
  line-height: 1.52;
  color: var(--muted);
}

.fever-track {
  position: relative;
  width: 100%;
  padding: 0.25rem 0;
}

.fever-rail {
  position: absolute;
  top: 0.95rem;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--gold-light), var(--gold), var(--gold-light));
  border-radius: 2px;
  z-index: 0;
}

.fever-steps {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  justify-content: space-between;
  position: relative;
  z-index: 1;
}

.fever-steps li {
  text-align: center;
  min-width: 0;
}

.fever-dot {
  display: block;
  width: 10px;
  height: 10px;
  margin: 0 auto 0.35rem;
  transform: rotate(45deg);
  background: var(--bg-card);
  border: 2px solid var(--emerald);
}

.fever-step-max .fever-dot {
  border-color: var(--gold);
  background: var(--gold-light);
}

.fever-th {
  display: block;
  font-size: 0.68rem;
  color: var(--muted);
  margin-bottom: 0.1rem;
}

.fever-mult {
  display: block;
  font-size: 0.92rem;
  font-weight: 700;
  color: var(--emerald);
}

.fever-step-max .fever-mult {
  color: var(--gold);
}

/* RTP / Demo */
#rtp-demo h2 {
  margin-bottom: 1rem;
}

.rtp-stats-row {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: var(--card-gap);
  align-items: stretch;
  width: 100%;
  margin-bottom: var(--card-gap);
}

.rtp-stat {
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-height: 4.25rem;
  padding: var(--card-pad-y) var(--card-pad-x);
  background: var(--bg-card);
  border: 1px solid var(--line);
  border-radius: 12px;
  border-top: 2px solid var(--gold);
  text-align: center;
}

.rtp-label {
  display: block;
  font-size: 0.65rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--muted);
  margin-bottom: 0.15rem;
}

.rtp-value {
  display: block;
  font-size: 1rem;
  font-weight: 700;
  color: var(--text);
}

.rtp-demo-block {
  width: 100%;
  padding: var(--card-pad-y) var(--card-pad-x);
  background: var(--bg-card);
  border: 1px solid var(--line);
  border-radius: 12px;
}

.rtp-demo-title {
  margin: 0 0 0.5rem;
  font-size: 0.92rem;
  font-weight: 700;
  color: var(--text);
}

.rtp-demo-block > p:first-of-type {
  margin: 0 0 0.65rem;
}

.rtp-note {
  margin: 0;
  font-size: 0.85rem;
  line-height: 1.52;
}

.rtp-note em {
  display: block;
  margin-top: 0.3rem;
  font-style: normal;
  font-size: 0.8rem;
  opacity: 0.85;
}

/* FAQ — full container width */
.faq-section {
  padding-bottom: var(--section-pad-sm);
}

.faq-section h2 {
  margin-bottom: 0.75rem;
}

.faq-list {
  width: 100%;
  border-top: 1px solid var(--line);
}

.faq-item {
  border-bottom: 1px solid var(--line);
}

.faq-q {
  width: 100%;
  text-align: left;
  background: none;
  border: none;
  color: var(--text);
  font: inherit;
  font-weight: 600;
  font-size: 0.95rem;
  min-height: 56px;
  padding: 0.65rem 0;
  margin: 0;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 0.65rem;
}

.faq-q:hover {
  color: var(--emerald);
}

.faq-q::after {
  content: "+";
  display: flex;
  align-items: center;
  justify-content: center;
  width: 1.25rem;
  height: 1.25rem;
  border-radius: 50%;
  border: 1px solid var(--line);
  color: var(--emerald);
  font-size: 0.9rem;
  line-height: 1;
  flex-shrink: 0;
}

.faq-item.is-open .faq-q::after {
  content: "−";
}

.faq-a {
  display: none;
  padding-bottom: 0.6rem;
}

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

.faq-a p {
  margin: 0;
  font-size: 0.92rem;
  max-width: none;
}

/* Footer — compact */
.site-footer {
  position: relative;
  z-index: 1;
  color: var(--muted-hero);
  background: var(--bg-dark);
  border-top: 1px solid var(--line-dark);
  padding-block: 2.75rem 2rem;
}

.footer-compact {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 2rem 3rem;
  align-items: start;
}

.footer-col-main {
  display: grid;
  gap: 0.55rem;
}

.footer-col-links {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 0.45rem;
  padding-top: 0.1rem;
}

.footer-links-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.35rem 1rem;
  justify-content: flex-end;
}

.footer-brand-row {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.55rem;
}

.footer-brand {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-weight: 600;
  font-size: 0.86rem;
  color: var(--text-hero);
  text-decoration: none;
}

.footer-brand span {
  color: var(--emerald-bright);
}

.footer-age-pill {
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  color: var(--gold-light);
  border: 1px solid rgba(212, 168, 83, 0.35);
  border-radius: 4px;
  padding: 0.12rem 0.35rem;
  line-height: 1.2;
}

.footer-disclaimer {
  margin: 0;
  max-width: 42rem;
  font-size: 0.78rem;
  line-height: 1.45;
  color: var(--muted-hero);
}

.footer-col-links a {
  color: #dfe1e9;
  font-size: 0.78rem;
  font-weight: 650;
  text-decoration: none;
  white-space: nowrap;
}

.footer-col-links a:hover {
  color: var(--gold-light);
}

.footer-rg-line {
  margin: 0;
  max-width: 42rem;
  font-size: 0.74rem;
  line-height: 1.45;
  color: #b8bac7;
}

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

/* ── Responsive ── */
@media (max-width: 1100px) {
  .modifier-grid {
    grid-template-columns: repeat(6, minmax(0, 1fr));
    gap: 10px;
  }

  .modifier-grid .mod-card:nth-child(1) {
    grid-column: 1 / 3;
  }

  .modifier-grid .mod-card:nth-child(2) {
    grid-column: 3 / 5;
  }

  .modifier-grid .mod-card:nth-child(3) {
    grid-column: 5 / 7;
  }

  .modifier-grid .mod-card:nth-child(4) {
    grid-column: 2 / 4;
  }

  .modifier-grid .mod-card:nth-child(5) {
    grid-column: 4 / 6;
  }
}

@media (max-width: 900px) {
  .hero {
    grid-template-columns: 1fr;
    padding-bottom: 2.75rem;
    gap: 1rem;
  }

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

  .hero h1 {
    font-size: min(2.5rem, 40px);
  }

  .btn-primary {
    display: flex;
    width: 100%;
    justify-content: center;
  }

  .spec-panel {
    margin-top: -2rem;
  }

  .gold-layout,
  .rtp-stats-row,
  .steps-row {
    grid-template-columns: 1fr;
  }

  .site-footer {
    padding-block: 2.25rem 1.75rem;
  }

  .footer-compact {
    grid-template-columns: 1fr;
    gap: 1.25rem;
  }

  .footer-col-links {
    align-items: flex-start;
  }

  .footer-links-row {
    justify-content: flex-start;
  }

  .audience-no {
    border-left: none;
    border-top: 1px solid var(--line);
  }

  .header-age {
    margin-left: auto;
    margin-right: 0.5rem;
  }

  .nav-toggle {
    display: block;
    margin-left: 0;
  }

  .site-nav {
    display: none;
    position: absolute;
    top: var(--header-h);
    left: 0;
    right: 0;
    flex-direction: column;
    background: rgba(16, 21, 18, 0.98);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid var(--line-dark);
    padding: 0.65rem var(--gutter) 0.85rem;
    margin-left: 0;
  }

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

  .site-nav a {
    padding: 0.45rem 0;
  }
}

@media (max-width: 560px) {
  :root {
    --section-pad: 48px;
    --section-pad-sm: 40px;
  }

  .modifier-grid,
  .modifier-grid .mod-card:nth-child(n) {
    grid-template-columns: 1fr;
    grid-column: auto;
  }

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

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

  .spec-panel div {
    border-right: none;
    border-bottom: 1px solid var(--line-dark);
    padding: 0.65rem 0.75rem;
  }

  .spec-panel div:nth-child(odd) {
    border-right: 1px solid var(--line-dark);
  }

  .spec-panel div:nth-last-child(-n + 2):nth-child(odd) {
    border-bottom: none;
  }

  .spec-panel div:last-child {
    grid-column: 1 / -1;
    border-right: none;
    border-bottom: none;
  }

  .spec-panel {
    margin-top: -1.5rem;
  }

  .hero-shell {
    padding-bottom: 1.25rem;
  }

  .gold-panel {
    padding: 1.25rem;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  .btn-primary,
  .site-header {
    transition: none;
  }

  .btn-primary:hover {
    transform: none;
  }
}
