/* ==========================================================================
   1xBet Bolivia — Design System
   Senior-grade static site: tokens → base → layout → components → utilities
   ========================================================================== */

/* ---------- Design tokens ---------- */
:root {
  /* Brand palette: azul / amarillo / verde sobre fondo negro premium */
  --c-black: #060811;
  --c-black-soft: #0b0e1c;
  --c-surface: #10152a;
  --c-surface-2: #161d38;
  --c-surface-3: #1c2444;
  --c-border: rgba(255, 255, 255, 0.08);
  --c-border-strong: rgba(255, 255, 255, 0.14);

  --c-blue-300: #86a6ff;
  --c-blue-400: #5b82ff;
  --c-blue-500: #3763ff;
  --c-blue-600: #2447d6;
  --c-blue-900: #0d1c52;

  --c-yellow-300: #ffe08a;
  --c-yellow-400: #ffc93c;
  --c-yellow-500: #ffb400;
  --c-yellow-600: #e69800;

  --c-green-300: #7be8b4;
  --c-green-400: #35d488;
  --c-green-500: #1cb872;
  --c-green-600: #0f9b5e;

  --c-red-400: #ff6b6b;

  --c-text: #f2f4fb;
  --c-text-muted: #aab2cc;
  --c-text-dim: #7680a0;

  --font-display: "Sora", "Segoe UI", system-ui, -apple-system, sans-serif;
  --font-body: "Inter", "Segoe UI", system-ui, -apple-system, sans-serif;

  --container: 1240px;
  --radius-sm: 10px;
  --radius-md: 16px;
  --radius-lg: 24px;
  --radius-pill: 999px;

  --shadow-card: 0 20px 50px -20px rgba(0, 0, 0, 0.6);
  --shadow-glow-blue: 0 0 0 1px rgba(55, 99, 255, 0.35), 0 20px 45px -18px rgba(55, 99, 255, 0.45);
  --shadow-glow-yellow: 0 12px 30px -10px rgba(255, 180, 0, 0.55);

  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

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

* {
  margin: 0;
  padding: 0;
}

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

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

body {
  background: var(--c-black);
  color: var(--c-text);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

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

img {
  height: auto;
}

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

ul,
ol {
  list-style: none;
}

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

button {
  background: none;
  border: none;
  cursor: pointer;
}

table {
  border-collapse: collapse;
  width: 100%;
}

h1,
h2,
h3,
h4 {
  font-family: var(--font-display);
  line-height: 1.15;
  font-weight: 700;
  letter-spacing: -0.01em;
}

h1 {
  font-size: clamp(2.1rem, 1.5rem + 2.6vw, 3.6rem);
}

h2 {
  font-size: clamp(1.7rem, 1.3rem + 1.8vw, 2.6rem);
}

h3 {
  font-size: clamp(1.25rem, 1.1rem + 0.7vw, 1.6rem);
}

h4 {
  font-size: 1.05rem;
}

p {
  color: var(--c-text-muted);
}

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

/* Focus visibility for keyboard navigation */
:focus-visible {
  outline: 2px solid var(--c-yellow-400);
  outline-offset: 3px;
  border-radius: 4px;
}

::selection {
  background: var(--c-blue-500);
  color: #fff;
}

/* Skip link */
.skip-link {
  position: absolute;
  left: 1rem;
  top: -60px;
  background: var(--c-yellow-400);
  color: #14140a;
  padding: 0.7rem 1.2rem;
  border-radius: var(--radius-sm);
  font-weight: 700;
  z-index: 1000;
  transition: top 0.2s var(--ease);
}

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

/* ---------- Layout ---------- */
.container {
  width: 100%;
  max-width: var(--container);
  margin-inline: auto;
  padding-inline: 1.25rem;
}

section {
  position: relative;
}

.section {
  padding-block: clamp(3rem, 2.4rem + 3vw, 6rem);
}

.section--tight {
  padding-block: clamp(2rem, 1.6rem + 2vw, 3.5rem);
}

.section-head {
  max-width: 720px;
  margin-bottom: clamp(2rem, 1.6rem + 2vw, 3rem);
}

.section-head--center {
  margin-inline: auto;
  text-align: center;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-family: var(--font-display);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.09em;
  text-transform: uppercase;
  color: var(--c-yellow-400);
  margin-bottom: 0.9rem;
}

.eyebrow::before {
  content: "";
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--c-yellow-400);
  box-shadow: 0 0 0 4px rgba(255, 201, 60, 0.18);
}

.section-head h2 {
  margin-bottom: 0.85rem;
}

.section-head p {
  font-size: 1.05rem;
}

.grid {
  display: grid;
  gap: 1.5rem;
}

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

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

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

@media (min-width: 640px) {
  .grid--4 {
    grid-template-columns: repeat(2, 1fr);
  }
}

.bg-alt {
  background: linear-gradient(180deg, transparent, rgba(16, 21, 42, 0.55) 12%, rgba(16, 21, 42, 0.55) 88%, transparent);
}

/* Decorative background glow blobs (glassmorphism accent) */
.glow {
  position: absolute;
  border-radius: 50%;
  filter: blur(90px);
  opacity: 0.35;
  z-index: 0;
  pointer-events: none;
}

.glow--blue {
  background: var(--c-blue-500);
}

.glow--yellow {
  background: var(--c-yellow-500);
}

.glow--green {
  background: var(--c-green-500);
}

/* ---------- Buttons ---------- */
.btn {
  --pad-y: 0.9rem;
  --pad-x: 1.7rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: var(--pad-y) var(--pad-x);
  border-radius: var(--radius-pill);
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.98rem;
  text-align: center;
  white-space: nowrap;
  transition: transform 0.2s var(--ease), box-shadow 0.2s var(--ease), background 0.2s var(--ease);
  border: 1px solid transparent;
}

.btn:hover {
  transform: translateY(-2px);
}

.btn:active {
  transform: translateY(0);
}

.btn--primary {
  background: linear-gradient(135deg, var(--c-yellow-400), var(--c-yellow-500));
  color: #191305;
  box-shadow: var(--shadow-glow-yellow);
}

.btn--primary:hover {
  box-shadow: 0 16px 38px -10px rgba(255, 180, 0, 0.7);
}

.btn--secondary {
  background: rgba(255, 255, 255, 0.04);
  color: var(--c-text);
  border-color: var(--c-border-strong);
  backdrop-filter: blur(6px);
}

.btn--secondary:hover {
  border-color: var(--c-blue-400);
  background: rgba(55, 99, 255, 0.12);
}

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

.btn--lg {
  --pad-y: 1.05rem;
  --pad-x: 2.2rem;
  font-size: 1.05rem;
}

.btn--sm {
  --pad-y: 0.6rem;
  --pad-x: 1.2rem;
  font-size: 0.88rem;
}

/* ---------- Header ---------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  padding-block: 1.1rem;
  background: rgba(6, 8, 17, 0.7);
  backdrop-filter: blur(14px) saturate(140%);
  border-bottom: 1px solid transparent;
  transition: border-color 0.3s var(--ease), padding 0.3s var(--ease), background 0.3s var(--ease);
}

.site-header.is-scrolled {
  border-bottom-color: var(--c-border);
  padding-block: 0.7rem;
  background: rgba(6, 8, 17, 0.92);
}

.site-header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.brand {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1.15rem;
  color: var(--c-text);
  flex-shrink: 0;
}

.brand img {
  height: 30px;
  width: auto;
}

.main-nav {
  display: flex;
  align-items: center;
  gap: 0.4rem;
}

.main-nav a:not(.btn) {
  display: inline-block;
  padding: 0.55rem 0.9rem;
  border-radius: var(--radius-pill);
  font-size: 0.94rem;
  font-weight: 600;
  color: var(--c-text-muted);
  transition: background 0.2s var(--ease), color 0.2s var(--ease);
}

.main-nav a:not(.btn):hover,
.main-nav a[aria-current="page"] {
  color: var(--c-text);
  background: rgba(255, 255, 255, 0.06);
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 0.7rem;
}

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 0.5rem;
  border-radius: var(--radius-sm);
  z-index: 110;
}

.nav-toggle span {
  width: 22px;
  height: 2px;
  background: var(--c-text);
  border-radius: 2px;
  transition: transform 0.25s var(--ease), opacity 0.25s var(--ease);
}

@media (max-width: 940px) {
  .main-nav {
    position: fixed;
    inset: 0 0 0 30%;
    flex-direction: column;
    align-items: stretch;
    justify-content: center;
    gap: 0.3rem;
    padding: 2rem 1.5rem;
    background: rgba(8, 10, 20, 0.98);
    backdrop-filter: blur(20px);
    border-left: 1px solid var(--c-border);
    transform: translateX(100%);
    transition: transform 0.35s var(--ease);
  }

  .main-nav[data-open="true"] {
    transform: translateX(0);
  }

  .main-nav a:not(.btn) {
    font-size: 1.1rem;
    padding: 0.9rem 1rem;
  }

  .nav-toggle {
    display: inline-flex;
  }

  .nav-toggle[aria-expanded="true"] span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
  }

  .nav-toggle[aria-expanded="true"] span:nth-child(2) {
    opacity: 0;
  }

  .nav-toggle[aria-expanded="true"] span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
  }

  .header-actions .btn--secondary {
    display: none;
  }
}

.nav-scrim {
  display: none;
}

@media (max-width: 940px) {
  .nav-scrim[data-open="true"] {
    display: block;
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.5);
    z-index: 99;
  }
}

/* ---------- Breadcrumbs ---------- */
.breadcrumbs {
  padding-block: 1.1rem;
  font-size: 0.85rem;
  color: var(--c-text-dim);
}

.breadcrumbs ol {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.4rem;
}

.breadcrumbs a {
  color: var(--c-text-dim);
  transition: color 0.2s var(--ease);
}

.breadcrumbs a:hover {
  color: var(--c-yellow-400);
}

.breadcrumbs li:not(:last-child)::after {
  content: "/";
  margin-left: 0.4rem;
  color: var(--c-text-dim);
  opacity: 0.5;
}

.breadcrumbs li[aria-current="page"] {
  color: var(--c-text-muted);
}

/* ---------- Hero ---------- */
.hero {
  padding-block: clamp(2.5rem, 2rem + 2.5vw, 4.5rem) clamp(3rem, 2rem + 4vw, 5rem);
  overflow: clip;
}

.hero .container {
  display: grid;
  gap: clamp(2rem, 1.5rem + 2vw, 3.5rem);
  align-items: center;
  position: relative;
  z-index: 1;
}

@media (min-width: 980px) {
  .hero .container {
    grid-template-columns: 1.05fr 0.95fr;
  }
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.45rem 0.9rem;
  border-radius: var(--radius-pill);
  background: rgba(53, 212, 136, 0.12);
  border: 1px solid rgba(53, 212, 136, 0.35);
  color: var(--c-green-300);
  font-size: 0.82rem;
  font-weight: 700;
  margin-bottom: 1.2rem;
}

.hero-badge .dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--c-green-400);
  box-shadow: 0 0 0 3px rgba(53, 212, 136, 0.25);
  animation: pulse 1.8s infinite;
}

@keyframes pulse {
  0%,
  100% {
    opacity: 1;
  }
  50% {
    opacity: 0.35;
  }
}

.hero h1 {
  margin-bottom: 1.1rem;
}

.hero h1 span {
  background: linear-gradient(100deg, var(--c-yellow-300), var(--c-yellow-500) 60%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.hero-lead {
  font-size: 1.12rem;
  max-width: 54ch;
  margin-bottom: 1.8rem;
}

.hero-ctas {
  display: flex;
  flex-wrap: wrap;
  gap: 0.9rem;
  margin-bottom: 1.8rem;
}

.hero-points {
  display: grid;
  gap: 0.7rem;
}

@media (min-width: 560px) {
  .hero-points {
    grid-template-columns: repeat(2, 1fr);
  }
}

.hero-points li {
  display: flex;
  align-items: flex-start;
  gap: 0.6rem;
  font-size: 0.92rem;
  color: var(--c-text-muted);
}

.hero-points li svg {
  flex-shrink: 0;
  margin-top: 0.15rem;
  color: var(--c-green-400);
}

.hero-visual {
  position: relative;
}

.hero-visual .frame {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--c-border-strong);
  box-shadow: var(--shadow-card);
}

.hero-visual img {
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
}

.floating-card {
  position: absolute;
  padding: 0.9rem 1.1rem;
  border-radius: var(--radius-md);
  background: rgba(16, 21, 42, 0.85);
  border: 1px solid var(--c-border-strong);
  backdrop-filter: blur(16px);
  box-shadow: var(--shadow-card);
  font-size: 0.85rem;
  display: flex;
  align-items: center;
  gap: 0.7rem;
  animation: floaty 5s var(--ease) infinite;
}

.floating-card strong {
  display: block;
  font-family: var(--font-display);
  font-size: 1rem;
}

.floating-card--1 {
  bottom: -1.2rem;
  left: -1rem;
}

.floating-card--2 {
  top: -1.2rem;
  right: -0.8rem;
  animation-delay: 1.4s;
}

@keyframes floaty {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-9px);
  }
}

.floating-card .ico {
  width: 34px;
  height: 34px;
  border-radius: 10px;
  display: grid;
  place-items: center;
  flex-shrink: 0;
}

.floating-card--1 .ico {
  background: rgba(255, 201, 60, 0.18);
  color: var(--c-yellow-400);
}

.floating-card--2 .ico {
  background: rgba(53, 212, 136, 0.18);
  color: var(--c-green-400);
}

@media (max-width: 560px) {
  .floating-card {
    display: none;
  }
}

/* ---------- Rating / quick-info card ---------- */
.rating-card {
  display: grid;
  gap: 1.4rem;
  padding: 1.6rem;
  border-radius: var(--radius-lg);
  background: linear-gradient(160deg, var(--c-surface), var(--c-surface-2));
  border: 1px solid var(--c-border-strong);
  box-shadow: var(--shadow-card);
}

@media (min-width: 760px) {
  .rating-card {
    grid-template-columns: auto 1fr auto;
    align-items: center;
  }
}

.rating-card__brand {
  display: flex;
  align-items: center;
  gap: 0.9rem;
}

.rating-card__brand img {
  height: 34px;
  width: auto;
}

.stars {
  color: var(--c-yellow-400);
  letter-spacing: 0.1em;
  font-size: 1.05rem;
}

.rating-score {
  font-family: var(--font-display);
  font-weight: 800;
  color: var(--c-text);
}

.rating-card__stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
  text-align: center;
  padding-inline: 1rem;
  border-inline: 1px solid var(--c-border);
}

@media (max-width: 759px) {
  .rating-card__stats {
    border-inline: none;
    border-block: 1px solid var(--c-border);
    padding-block: 1rem;
    padding-inline: 0;
  }
}

.rating-card__stats .num {
  display: block;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1.15rem;
  color: var(--c-green-400);
}

.rating-card__stats .lbl {
  font-size: 0.78rem;
  color: var(--c-text-dim);
}

/* ---------- Trust strip ---------- */
.trust-strip {
  display: flex;
  flex-wrap: wrap;
  gap: 1.6rem 2.2rem;
  align-items: center;
  justify-content: center;
  padding-block: 1.6rem;
  border-block: 1px solid var(--c-border);
}

.trust-strip img {
  height: 26px;
  width: auto;
  opacity: 0.75;
  filter: grayscale(1) brightness(1.6);
  transition: opacity 0.2s var(--ease), filter 0.2s var(--ease);
}

.trust-strip img:hover {
  opacity: 1;
  filter: none;
}

/* ---------- Stats / counters ---------- */
.stat-card {
  padding: 1.6rem;
  border-radius: var(--radius-md);
  background: var(--c-surface);
  border: 1px solid var(--c-border);
  text-align: center;
  transition: transform 0.25s var(--ease), border-color 0.25s var(--ease);
}

.stat-card:hover {
  transform: translateY(-4px);
  border-color: var(--c-blue-400);
}

.stat-card .num {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(1.7rem, 1.4rem + 1vw, 2.3rem);
  background: linear-gradient(120deg, var(--c-yellow-300), var(--c-green-300));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.stat-card .lbl {
  margin-top: 0.35rem;
  font-size: 0.9rem;
  color: var(--c-text-muted);
}

/* ---------- Generic cards ---------- */
.card {
  padding: 1.7rem;
  border-radius: var(--radius-md);
  background: var(--c-surface);
  border: 1px solid var(--c-border);
  transition: transform 0.3s var(--ease), border-color 0.3s var(--ease), box-shadow 0.3s var(--ease);
}

.card:hover {
  transform: translateY(-5px);
  border-color: var(--c-border-strong);
  box-shadow: var(--shadow-card);
}

.card .ico {
  width: 46px;
  height: 46px;
  border-radius: 13px;
  display: grid;
  place-items: center;
  margin-bottom: 1rem;
  background: rgba(55, 99, 255, 0.15);
  color: var(--c-blue-300);
}

.card h3 {
  margin-bottom: 0.55rem;
}

.card p {
  font-size: 0.94rem;
}

/* Advantages / disadvantages */
.pros-cons {
  display: grid;
  gap: 1.5rem;
}

@media (min-width: 760px) {
  .pros-cons {
    grid-template-columns: repeat(2, 1fr);
  }
}

.pros-cons .card ul {
  display: grid;
  gap: 0.8rem;
}

.pros-cons .card li {
  display: flex;
  gap: 0.65rem;
  align-items: flex-start;
  font-size: 0.95rem;
  color: var(--c-text-muted);
}

.pros-cons .card li svg {
  flex-shrink: 0;
  margin-top: 0.2rem;
}

.card--pros {
  border-top: 3px solid var(--c-green-400);
}

.card--pros li svg {
  color: var(--c-green-400);
}

.card--cons {
  border-top: 3px solid var(--c-yellow-500);
}

.card--cons li svg {
  color: var(--c-yellow-500);
}

/* Game / payment icon grid */
.tile {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 0.7rem;
  padding: 1.4rem 1rem;
  border-radius: var(--radius-md);
  background: var(--c-surface);
  border: 1px solid var(--c-border);
  transition: transform 0.25s var(--ease), border-color 0.25s var(--ease);
}

.tile:hover {
  transform: translateY(-4px);
  border-color: var(--c-green-400);
}

.tile .ico {
  width: 48px;
  height: 48px;
  display: grid;
  place-items: center;
  border-radius: 12px;
  background: rgba(53, 212, 136, 0.15);
  color: var(--c-green-300);
}

.tile span {
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--c-text);
}

/* Game showcase card (slots) */
.game-card {
  border-radius: var(--radius-md);
  overflow: hidden;
  background: var(--c-surface);
  border: 1px solid var(--c-border);
  transition: transform 0.3s var(--ease), border-color 0.3s var(--ease);
  display: flex;
  flex-direction: column;
}

.game-card:hover {
  transform: translateY(-5px);
  border-color: var(--c-yellow-400);
}

.game-card__media {
  aspect-ratio: 4 / 3;
  background: linear-gradient(160deg, var(--c-surface-2), var(--c-black-soft));
  display: grid;
  place-items: center;
  padding: 1.4rem;
}

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

.game-card__body {
  padding: 1.1rem 1.2rem 1.4rem;
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
  flex: 1;
}

.game-card__meta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem;
}

.pill {
  display: inline-flex;
  align-items: center;
  padding: 0.28rem 0.7rem;
  border-radius: var(--radius-pill);
  font-size: 0.74rem;
  font-weight: 700;
  background: rgba(255, 255, 255, 0.06);
  color: var(--c-text-muted);
  border: 1px solid var(--c-border);
}

.pill--green {
  color: var(--c-green-300);
  background: rgba(53, 212, 136, 0.12);
  border-color: rgba(53, 212, 136, 0.3);
}

.pill--yellow {
  color: var(--c-yellow-400);
  background: rgba(255, 201, 60, 0.12);
  border-color: rgba(255, 201, 60, 0.3);
}

.pill--blue {
  color: var(--c-blue-300);
  background: rgba(55, 99, 255, 0.14);
  border-color: rgba(55, 99, 255, 0.3);
}

/* Compact game grid (homepage teaser) */
.game-grid--compact {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
}

@media (min-width: 560px) {
  .game-grid--compact {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (min-width: 900px) {
  .game-grid--compact {
    grid-template-columns: repeat(4, 1fr);
  }
}

.game-card--compact .game-card__media {
  aspect-ratio: 16 / 10;
  padding: 0.9rem;
}

.game-card--compact .game-card__media img {
  max-height: 52px;
  width: auto;
}

.game-card--compact .game-card__body {
  padding: 0.8rem 0.9rem 1rem;
  gap: 0.4rem;
}

.game-card--compact h3 {
  font-size: 0.92rem;
}

.game-card--compact .game-card__desc {
  font-size: 0.78rem;
  color: var(--c-text-dim);
  line-height: 1.45;
}

.game-card--compact .game-card__meta .pill {
  font-size: 0.66rem;
  padding: 0.2rem 0.5rem;
}

/* ---------- Live activity ticker ---------- */
.live-feed {
  border-radius: var(--radius-lg);
  border: 1px solid var(--c-border);
  background: var(--c-surface);
  overflow: hidden;
}

.live-feed__head {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  padding: 1.1rem 1.4rem;
  border-bottom: 1px solid var(--c-border);
  font-weight: 700;
  font-family: var(--font-display);
  font-size: 0.95rem;
}

.live-feed__head .dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--c-green-400);
  box-shadow: 0 0 0 4px rgba(53, 212, 136, 0.2);
  animation: pulse 1.8s infinite;
}

.live-feed__list {
  display: flex;
  flex-direction: column;
  max-height: 300px;
  overflow: hidden;
}

.live-feed__list li {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  padding: 0.85rem 1.4rem;
  font-size: 0.88rem;
  color: var(--c-text-muted);
  border-bottom: 1px solid var(--c-border);
  animation: fadeIn 0.6s var(--ease) both;
}

.live-feed__list li:last-child {
  border-bottom: none;
}

.live-feed__list .avatar {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  flex-shrink: 0;
  display: grid;
  place-items: center;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.78rem;
  color: #0a0c16;
}

.live-feed__list b {
  color: var(--c-text);
}

.live-feed__list .amt {
  margin-left: auto;
  font-family: var(--font-display);
  font-weight: 700;
  color: var(--c-green-400);
  white-space: nowrap;
}

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(6px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.live-feed__note {
  padding: 0.8rem 1.4rem;
  font-size: 0.74rem;
  color: var(--c-text-dim);
  border-top: 1px solid var(--c-border);
}

/* ---------- Reviews / testimonials ---------- */
.review-card {
  padding: 1.6rem;
  border-radius: var(--radius-md);
  background: var(--c-surface);
  border: 1px solid var(--c-border);
  display: flex;
  flex-direction: column;
  gap: 0.9rem;
}

.review-card__top {
  display: flex;
  align-items: center;
  gap: 0.8rem;
}

.review-card__avatar {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  font-family: var(--font-display);
  font-weight: 700;
  color: #0a0c16;
  flex-shrink: 0;
}

.review-card__name {
  font-weight: 700;
  color: var(--c-text);
  font-size: 0.94rem;
}

.review-card__loc {
  font-size: 0.78rem;
  color: var(--c-text-dim);
}

.review-card p {
  font-size: 0.92rem;
}

/* ---------- Tables ---------- */
.table-wrap {
  overflow-x: auto;
  border-radius: var(--radius-md);
  border: 1px solid var(--c-border);
}

.data-table {
  min-width: 560px;
}

.data-table th,
.data-table td {
  padding: 0.95rem 1.2rem;
  text-align: left;
  font-size: 0.92rem;
  border-bottom: 1px solid var(--c-border);
}

.data-table th {
  font-family: var(--font-display);
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--c-text-dim);
  background: var(--c-black-soft);
}

.data-table tbody tr:hover {
  background: rgba(255, 255, 255, 0.03);
}

.data-table tbody tr:last-child td {
  border-bottom: none;
}

.data-table td strong {
  color: var(--c-yellow-400);
}

.data-table .yes {
  color: var(--c-green-400);
  font-weight: 700;
}

.data-table .no {
  color: var(--c-text-dim);
}

/* ---------- FAQ (native details/summary) ---------- */
.faq {
  display: grid;
  gap: 0.85rem;
}

.faq-item {
  border: 1px solid var(--c-border);
  border-radius: var(--radius-md);
  background: var(--c-surface);
  overflow: hidden;
}

.faq-item[open] {
  border-color: var(--c-border-strong);
}

.faq-item summary {
  list-style: none;
  cursor: pointer;
  padding: 1.15rem 1.3rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 1rem;
  color: var(--c-text);
}

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

.faq-item summary::after {
  content: "+";
  font-size: 1.4rem;
  font-weight: 400;
  color: var(--c-yellow-400);
  flex-shrink: 0;
  transition: transform 0.25s var(--ease);
}

.faq-item[open] summary::after {
  transform: rotate(45deg);
}

.faq-item .faq-body {
  padding: 0 1.3rem 1.3rem;
  font-size: 0.94rem;
}

.faq-item .faq-body p + p {
  margin-top: 0.7rem;
}

/* ---------- Steps ---------- */
.steps {
  display: grid;
  gap: 1.4rem;
  counter-reset: step;
}

@media (min-width: 760px) {
  .steps--4 {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1080px) {
  .steps--4 {
    grid-template-columns: repeat(4, 1fr);
  }
  .steps--5 {
    grid-template-columns: repeat(3, 1fr);
  }
}

.step {
  position: relative;
  padding: 1.6rem 1.4rem 1.4rem;
  border-radius: var(--radius-md);
  background: var(--c-surface);
  border: 1px solid var(--c-border);
  counter-increment: step;
}

.step::before {
  content: counter(step);
  display: inline-grid;
  place-items: center;
  width: 34px;
  height: 34px;
  border-radius: 10px;
  background: linear-gradient(135deg, var(--c-yellow-400), var(--c-yellow-600));
  color: #191305;
  font-family: var(--font-display);
  font-weight: 800;
  margin-bottom: 0.9rem;
}

.step h3 {
  margin-bottom: 0.4rem;
  font-size: 1.1rem;
}

.step p {
  font-size: 0.9rem;
}

/* ---------- CTA banner ---------- */
.cta-banner {
  border-radius: var(--radius-lg);
  padding: clamp(2rem, 1.6rem + 2vw, 3.2rem);
  background: linear-gradient(120deg, var(--c-blue-900), var(--c-black-soft) 60%);
  border: 1px solid var(--c-border-strong);
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 1.6rem;
  position: relative;
  overflow: hidden;
}

.cta-banner__text h2 {
  margin-bottom: 0.5rem;
}

.cta-banner__text p {
  max-width: 46ch;
}

/* ---------- Definition / summary boxes (GEO) ---------- */
.definition {
  padding: 1.4rem 1.6rem;
  border-left: 3px solid var(--c-blue-400);
  background: var(--c-surface);
  border-radius: 0 var(--radius-md) var(--radius-md) 0;
  margin-block: 1.6rem;
}

.definition strong {
  color: var(--c-blue-300);
  font-family: var(--font-display);
  display: block;
  margin-bottom: 0.3rem;
  font-size: 0.82rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.summary-box {
  padding: 1.5rem 1.7rem;
  border-radius: var(--radius-md);
  background: linear-gradient(160deg, var(--c-surface), var(--c-surface-2));
  border: 1px solid var(--c-border-strong);
  margin-block: 1.8rem;
}

.summary-box h3 {
  margin-bottom: 0.7rem;
}

.summary-box ul {
  display: grid;
  gap: 0.55rem;
}

.summary-box li {
  padding-left: 1.4rem;
  position: relative;
  font-size: 0.94rem;
  color: var(--c-text-muted);
}

.summary-box li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.5rem;
  width: 7px;
  height: 7px;
  border-radius: 2px;
  background: var(--c-yellow-400);
}

/* ---------- Article typography (content pages) ---------- */
.article {
  max-width: 780px;
  margin-inline: auto;
}

.article > * + * {
  margin-top: 1.3rem;
}

.article h2 {
  margin-top: 2.6rem;
  padding-top: 0.2rem;
}

.article h3 {
  margin-top: 1.8rem;
}

.article ul,
.article ol {
  display: grid;
  gap: 0.6rem;
  padding-left: 0;
}

.article ul li,
.article ol li {
  padding-left: 1.5rem;
  position: relative;
  color: var(--c-text-muted);
}

.article ul li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.55rem;
  width: 7px;
  height: 7px;
  border-radius: 2px;
  background: var(--c-green-400);
}

.article ol {
  counter-reset: olc;
}

.article ol li::before {
  counter-increment: olc;
  content: counter(olc);
  position: absolute;
  left: 0;
  top: 0;
  color: var(--c-yellow-400);
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.85rem;
}

.article figure {
  margin-block: 2rem;
}

.article figcaption {
  margin-top: 0.6rem;
  font-size: 0.82rem;
  color: var(--c-text-dim);
  text-align: center;
}

.article table {
  margin-block: 0.5rem;
}

.byline {
  display: flex;
  align-items: center;
  gap: 0.9rem;
  padding-block: 1.4rem;
  margin-bottom: 0.6rem;
  border-bottom: 1px solid var(--c-border);
}

.byline img {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  object-fit: cover;
}

.byline .name {
  font-weight: 700;
  color: var(--c-text);
  font-size: 0.94rem;
}

.byline .meta {
  font-size: 0.8rem;
  color: var(--c-text-dim);
}

/* Table of contents for long-form pages */
.toc {
  padding: 1.4rem 1.6rem;
  border-radius: var(--radius-md);
  background: var(--c-surface);
  border: 1px solid var(--c-border);
  margin-block: 1.8rem;
}

.toc summary {
  cursor: pointer;
  font-family: var(--font-display);
  font-weight: 700;
}

.toc ol {
  margin-top: 1rem;
  display: grid;
  gap: 0.5rem;
  counter-reset: tocc;
}

.toc a {
  color: var(--c-text-muted);
  font-size: 0.92rem;
  transition: color 0.2s var(--ease);
}

.toc a:hover {
  color: var(--c-yellow-400);
}

/* ---------- Footer ---------- */
.site-footer {
  border-top: 1px solid var(--c-border);
  padding-block: 3.5rem 1.8rem;
  background: var(--c-black-soft);
}

.footer-grid {
  display: grid;
  gap: 2.4rem;
  margin-bottom: 2.6rem;
}

@media (min-width: 720px) {
  .footer-grid {
    grid-template-columns: 1.3fr repeat(3, 1fr);
  }
}

.footer-brand p {
  font-size: 0.88rem;
  max-width: 34ch;
  margin-top: 0.8rem;
}

.footer-col h4 {
  color: var(--c-text);
  margin-bottom: 1rem;
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.footer-col ul {
  display: grid;
  gap: 0.65rem;
}

.footer-col a {
  font-size: 0.9rem;
  color: var(--c-text-muted);
  transition: color 0.2s var(--ease);
}

.footer-col a:hover {
  color: var(--c-yellow-400);
}

.footer-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 1.4rem;
  align-items: center;
  padding-block: 1.8rem;
  border-top: 1px solid var(--c-border);
}

.footer-badges img {
  height: 24px;
  width: auto;
  opacity: 0.7;
}

.footer-legal {
  padding-top: 1.8rem;
  border-top: 1px solid var(--c-border);
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 1rem;
  font-size: 0.8rem;
  color: var(--c-text-dim);
}

.footer-legal p {
  font-size: 0.8rem;
  max-width: 70ch;
}

.age-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 34px;
  height: 34px;
  border-radius: 8px;
  border: 1.5px solid var(--c-text-dim);
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 0.85rem;
  flex-shrink: 0;
}

/* ---------- Scroll reveal ---------- */
[data-reveal] {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.7s var(--ease), transform 0.7s var(--ease);
}

[data-reveal].is-visible {
  opacity: 1;
  transform: translateY(0);
}

@media (prefers-reduced-motion: reduce) {
  [data-reveal] {
    opacity: 1;
    transform: none;
  }
}

/* ---------- Utilities ---------- */
.text-center {
  text-align: center;
}

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

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

.flex-center {
  display: flex;
  align-items: center;
  justify-content: center;
}

.tag-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}
