/* Slotrize 2026 — design system. Dark luxury palette with neon accents. */

/* =========================================================================
   1. Tokens
   ========================================================================= */
:root {
  --bg-deep: #06070d;
  --bg-1: #0c0e18;
  --bg-2: #11141f;
  --surface: #141828;
  --surface2: #181d30;
  --surface3: #1d2238;
  --border: rgba(255, 255, 255, 0.08);
  --border-strong: rgba(255, 255, 255, 0.16);

  --text: #e9ecf7;
  --text-soft: #b5bbd1;
  --text-muted: #8389a3;
  --text-dim: #5d6280;

  --gold: #f5c462;
  --gold-soft: #ffd98c;
  --gold-deep: #c79236;
  --cyan: #38e1ff;
  --cyan-soft: #7cf2ff;
  --cyan-deep: #1aa2c4;
  --magenta: #ff5fb3;
  --magenta-soft: #ff89c8;
  --green: #5ee2a0;
  --red: #ff6b8e;

  --gradient: linear-gradient(135deg, #38e1ff 0%, #ff5fb3 55%, #f5c462 100%);
  --gradient-soft: linear-gradient(135deg, rgba(56, 225, 255, 0.18), rgba(255, 95, 179, 0.18) 55%, rgba(245, 196, 98, 0.18));
  --gradient-gold: linear-gradient(135deg, #f5c462 0%, #ffd98c 50%, #c79236 100%);

  --shadow-card: 0 24px 48px -28px rgba(0, 0, 0, 0.7), 0 0 0 1px var(--border);
  --shadow-card-hover: 0 32px 64px -28px rgba(0, 0, 0, 0.8), 0 0 0 1px var(--border-strong);
  --shadow-glow-cyan: 0 0 32px rgba(56, 225, 255, 0.18);
  --shadow-glow-gold: 0 0 32px rgba(245, 196, 98, 0.22);

  --radius-sm: 8px;
  --radius: 14px;
  --radius-lg: 20px;
  --radius-xl: 28px;

  --container: 1180px;
  --space: 1rem;

  --font-body: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
  --font-display: 'Sora', 'Manrope', 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;

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

  color-scheme: dark;
}

/* =========================================================================
   2. Reset & base
   ========================================================================= */
*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  -webkit-text-size-adjust: 100%;
  scroll-behavior: smooth;
  scroll-padding-top: 96px;
  overflow-x: hidden;
}

body {
  margin: 0;
  min-height: 100vh;
  overflow-x: clip;
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.62;
  color: var(--text);
  background-color: var(--bg-deep);
  background-image:
    radial-gradient(1200px 600px at 80% -10%, rgba(56, 225, 255, 0.07), transparent 60%),
    radial-gradient(900px 500px at -10% 30%, rgba(255, 95, 179, 0.06), transparent 60%),
    radial-gradient(1100px 600px at 50% 110%, rgba(245, 196, 98, 0.05), transparent 60%);
  background-attachment: fixed;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
}

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

a {
  color: var(--cyan-soft);
  text-decoration: none;
  transition: color 0.2s var(--ease);
}

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

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

h1, h2, h3, h4, h5 {
  margin: 0 0 0.6rem;
  color: var(--text);
  line-height: 1.18;
  letter-spacing: -0.01em;
  font-weight: 700;
}

h1 { font-size: clamp(2rem, 4.4vw, 3.4rem); }
h2 { font-size: clamp(1.55rem, 2.6vw, 2.15rem); }
h3 { font-size: clamp(1.15rem, 1.6vw, 1.35rem); }

ul, ol {
  margin: 0 0 1rem;
  padding-left: 1.2rem;
  color: var(--text-soft);
}

li { margin-bottom: 0.35rem; }

::selection {
  background: rgba(56, 225, 255, 0.4);
  color: var(--text);
}

:focus-visible {
  outline: 2px solid var(--cyan-soft);
  outline-offset: 3px;
  border-radius: 4px;
}

.skip-link {
  position: absolute;
  left: -9999px;
  top: 0;
  background: var(--gold);
  color: var(--bg-deep);
  padding: 0.6rem 1rem;
  z-index: 999;
  font-weight: 600;
}
.skip-link:focus {
  left: 1rem;
  top: 1rem;
}

/* =========================================================================
   3. Layout primitives
   ========================================================================= */
.container {
  width: min(100% - 2rem, var(--container));
  max-width: 100%;
  margin-inline: auto;
}

.section {
  padding: clamp(3rem, 7vw, 5.5rem) 0;
  position: relative;
}

.section--tight {
  padding: clamp(2rem, 4vw, 3rem) 0;
}

.section-head {
  max-width: 760px;
  margin-bottom: 2rem;
}

.section-head .eyebrow {
  margin-bottom: 0.65rem;
}

.rule {
  margin-top: 1.25rem;
  height: 1px;
  width: 80px;
  background: var(--gradient);
  border-radius: 2px;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: var(--cyan-soft);
  font-weight: 600;
}

.eyebrow::before {
  content: '';
  display: inline-block;
  width: 18px;
  height: 1px;
  background: var(--cyan);
}

.font-display { font-family: var(--font-display); letter-spacing: -0.015em; }

.gradient-text {
  background: var(--gradient);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.lead {
  font-size: clamp(1rem, 1.4vw, 1.18rem);
  color: var(--text-soft);
  line-height: 1.72;
  max-width: 56ch;
}

/* =========================================================================
   4. Buttons
   ========================================================================= */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.85rem 1.4rem;
  font: inherit;
  font-weight: 600;
  font-size: 0.95rem;
  letter-spacing: 0.01em;
  border-radius: 999px;
  border: 1px solid transparent;
  cursor: pointer;
  text-decoration: none;
  white-space: nowrap;
  transition: transform 0.18s var(--ease), box-shadow 0.2s var(--ease), background 0.2s var(--ease), color 0.2s var(--ease);
  line-height: 1;
}

.btn-sm { padding: 0.55rem 1rem; font-size: 0.85rem; }

.btn-primary {
  background: var(--gradient-gold);
  color: #1a1206;
  box-shadow: var(--shadow-glow-gold);
}
.btn-primary:hover {
  transform: translateY(-1px);
  color: #1a1206;
  box-shadow: 0 12px 36px -8px rgba(245, 196, 98, 0.45);
}

.btn-ghost {
  background: transparent;
  color: var(--text);
  border-color: var(--border-strong);
}
.btn-ghost:hover {
  background: var(--surface);
  color: var(--cyan-soft);
}

/* =========================================================================
   5. Header
   ========================================================================= */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  background: rgba(8, 10, 18, 0.78);
  border-bottom: 1px solid var(--border);
}

.header-inner {
  display: flex;
  align-items: center;
  gap: 1.25rem;
  padding: 0.85rem 1rem;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  color: var(--text);
  font-weight: 700;
}

.brand-text {
  font-size: 1.18rem;
  letter-spacing: -0.02em;
}

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

.brand-tag {
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  padding: 0.2rem 0.55rem;
  border-radius: 999px;
  background: rgba(56, 225, 255, 0.1);
  color: var(--cyan-soft);
  border: 1px solid rgba(56, 225, 255, 0.25);
}

.primary-nav {
  display: none;
  margin-left: auto;
  gap: 0.25rem;
}

.primary-nav a {
  padding: 0.5rem 0.9rem;
  color: var(--text-soft);
  font-size: 0.92rem;
  font-weight: 500;
  border-radius: 999px;
  transition: color 0.2s, background 0.2s;
}
.primary-nav a:hover {
  color: var(--text);
  background: var(--surface);
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-left: auto;
}

.header-cta { display: none; }

@media (min-width: 880px) {
  .primary-nav { display: inline-flex; }
  .header-cta { display: inline-flex; }
  .header-actions { margin-left: 0; }
}

/* =========================================================================
   6. Language switcher
   ========================================================================= */
.lang-switcher {
  position: relative;
}

.lang-toggle {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.5rem 0.75rem;
  background: var(--surface);
  border: 1px solid var(--border);
  color: var(--text-soft);
  border-radius: 999px;
  font: inherit;
  font-size: 0.85rem;
  font-weight: 600;
  cursor: pointer;
  transition: border-color 0.2s, color 0.2s;
}
.lang-toggle:hover {
  color: var(--text);
  border-color: var(--border-strong);
}
.lang-toggle[aria-expanded='true'] .lang-caret {
  transform: rotate(180deg);
}
.lang-caret {
  transition: transform 0.2s var(--ease);
}

.lang-menu {
  position: absolute;
  top: calc(100% + 0.5rem);
  right: 0;
  min-width: 220px;
  padding: 0.4rem;
  background: var(--surface2);
  border: 1px solid var(--border-strong);
  border-radius: var(--radius);
  box-shadow: var(--shadow-card);
  list-style: none;
  margin: 0;
  z-index: 60;
}

.lang-menu[hidden] { display: none; }

.lang-menu li { margin: 0; }

.lang-menu a {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  padding: 0.55rem 0.75rem;
  color: var(--text-soft);
  border-radius: 8px;
  font-size: 0.9rem;
  transition: background 0.15s, color 0.15s;
}

.lang-menu a:hover {
  background: var(--surface3);
  color: var(--text);
}

.lang-menu a[aria-current='true'] {
  background: var(--surface3);
  color: var(--cyan-soft);
}

.lang-menu .lang-code {
  font-weight: 700;
  font-size: 0.75rem;
  letter-spacing: 0.1em;
  width: 28px;
  color: var(--gold);
}

.lang-menu .lang-native { color: inherit; }

/* Mobile burger */
.nav-toggle {
  display: inline-flex;
  flex-direction: column;
  justify-content: center;
  gap: 4px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 0.55rem 0.65rem;
  cursor: pointer;
}
.nav-toggle span {
  display: block;
  width: 18px;
  height: 2px;
  background: var(--text-soft);
  border-radius: 2px;
}
@media (min-width: 880px) {
  .nav-toggle { display: none; }
}

/* =========================================================================
   7. Hero
   ========================================================================= */
.hero {
  position: relative;
  padding: clamp(3rem, 6vw, 5rem) 0 clamp(2.5rem, 5vw, 4rem);
  overflow: hidden;
}

.hero-glow {
  position: absolute;
  inset: -20% -10% 0;
  background:
    radial-gradient(60% 50% at 75% 30%, rgba(56, 225, 255, 0.18), transparent 70%),
    radial-gradient(50% 40% at 25% 80%, rgba(255, 95, 179, 0.16), transparent 70%),
    radial-gradient(60% 50% at 60% 100%, rgba(245, 196, 98, 0.12), transparent 70%);
  filter: blur(10px);
  pointer-events: none;
  z-index: 0;
}

.hero-grid {
  position: relative;
  display: grid;
  gap: clamp(2rem, 4vw, 3.5rem);
  align-items: center;
  grid-template-columns: 1fr;
  z-index: 1;
}

@media (min-width: 960px) {
  .hero-grid { grid-template-columns: 1.1fr 0.9fr; }
}

.hero h1 {
  font-family: var(--font-display);
  margin-top: 0.9rem;
}

.hero .lead {
  margin-top: 1rem;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.7rem;
  margin-top: 1.6rem;
}

.hero-meta {
  margin-top: 1.4rem;
  font-size: 0.82rem;
  color: var(--text-muted);
  line-height: 1.6;
}

.hero-visual {
  position: relative;
  padding: 1rem;
  background: linear-gradient(180deg, rgba(20, 24, 40, 0.6), rgba(8, 10, 18, 0.4));
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-card);
  overflow: hidden;
}

.hero-visual::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(120% 80% at 50% 0%, rgba(56, 225, 255, 0.15), transparent 60%);
  pointer-events: none;
}

.hero-visual img { position: relative; z-index: 1; width: 100%; height: auto; }

/* =========================================================================
   8. Score strip
   ========================================================================= */
.score-strip {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.6rem;
  padding: 1rem;
  background: linear-gradient(180deg, var(--surface2), var(--bg-2));
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-card);
}

@media (min-width: 700px) {
  .score-strip { grid-template-columns: repeat(5, 1fr); }
}

.score-tile {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0.15rem;
  padding: 0.8rem 1rem;
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid var(--border);
}

.score-tile strong {
  font-family: var(--font-display);
  font-size: 1.6rem;
  color: var(--text);
  letter-spacing: -0.02em;
}

.score-tile span {
  font-size: 0.78rem;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

/* =========================================================================
   9. Cards / badges / grids
   ========================================================================= */
.card {
  padding: 1.5rem;
  min-width: 0;
  background: linear-gradient(180deg, var(--surface), var(--bg-1));
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-card);
  transition: transform 0.25s var(--ease), box-shadow 0.25s var(--ease), border-color 0.25s var(--ease);
}

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

.card h3 {
  font-family: var(--font-display);
}

.grid-2 {
  display: grid;
  gap: 1.25rem;
  grid-template-columns: 1fr;
}
@media (min-width: 820px) {
  .grid-2 { grid-template-columns: 1fr 1fr; }
}

.grid-3 {
  display: grid;
  gap: 1.25rem;
  grid-template-columns: 1fr;
}
@media (min-width: 720px) {
  .grid-3 { grid-template-columns: 1fr 1fr; }
}
@media (min-width: 1020px) {
  .grid-3 { grid-template-columns: repeat(3, 1fr); }
}

.badge {
  display: inline-flex;
  align-items: center;
  padding: 0.3rem 0.7rem;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  border-radius: 999px;
  border: 1px solid currentColor;
}

.badge-gold {
  color: var(--gold-soft);
  background: rgba(245, 196, 98, 0.08);
  border-color: rgba(245, 196, 98, 0.4);
}

.badge-cyan {
  color: var(--cyan-soft);
  background: rgba(56, 225, 255, 0.08);
  border-color: rgba(56, 225, 255, 0.35);
}

.icon-row {
  display: flex;
  align-items: center;
  gap: 0.7rem;
}

.icon-row img {
  width: 28px;
  height: 28px;
  flex-shrink: 0;
}

.prose { line-height: 1.72; }
.prose p { margin-bottom: 1rem; }
.prose h3 { margin-top: 1.25rem; }

.rating-badge {
  display: flex;
  flex-direction: column;
  gap: 0.15rem;
}

/* =========================================================================
   10. Tables
   ========================================================================= */
.table-wrap {
  display: block;
  width: 100%;
  max-width: 100%;
  min-width: 0;
  overflow-x: auto;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: var(--surface);
  -webkit-overflow-scrolling: touch;
  overscroll-behavior-x: contain;
}

.table-wrap table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.92rem;
  min-width: 540px;
}

.table-wrap thead {
  background: linear-gradient(180deg, var(--surface3), var(--surface2));
}

.table-wrap th,
.table-wrap td {
  padding: 0.85rem 1rem;
  text-align: left;
  border-bottom: 1px solid var(--border);
  vertical-align: top;
}

.table-wrap th {
  font-weight: 600;
  color: var(--text);
  font-size: 0.82rem;
  text-transform: uppercase;
  letter-spacing: 0.09em;
}

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

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

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

@media (max-width: 879px) {
  .table-wrap {
    overflow-x: visible;
    border: none;
    background: transparent;
  }

  .table-wrap table {
    min-width: 0;
  }

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

  .table-wrap tbody {
    display: block;
  }

  .table-wrap tbody tr {
    display: block;
    margin-bottom: 0.85rem;
    border: 1px solid var(--border);
    border-radius: var(--radius);
    background: var(--surface);
    overflow: hidden;
  }

  .table-wrap tbody tr:last-child {
    margin-bottom: 0;
  }

  .table-wrap tbody tr:hover {
    background: var(--surface);
  }

  .table-wrap td {
    display: block;
    padding: 0.65rem 1rem;
    border-bottom: 1px solid var(--border);
  }

  .table-wrap td:last-child {
    border-bottom: none;
  }

  .table-wrap td::before {
    content: attr(data-label);
    display: block;
    margin-bottom: 0.2rem;
    font-weight: 600;
    color: var(--text);
    font-size: 0.72rem;
    text-transform: uppercase;
    letter-spacing: 0.08em;
  }

  .table-wrap td:first-child {
    font-weight: 600;
    color: var(--text);
    background: linear-gradient(180deg, var(--surface3), var(--surface2));
    border-bottom: 1px solid var(--border);
  }

  .table-wrap td:first-child::before {
    content: none;
  }
}

/* =========================================================================
   11. Bonus banner
   ========================================================================= */
.bonus-banner {
  display: grid;
  gap: 1.5rem;
  grid-template-columns: 1fr;
  align-items: stretch;
  min-width: 0;
}
@media (min-width: 920px) {
  .bonus-banner { grid-template-columns: 1.6fr 1fr; }
}

/* =========================================================================
   12. Games marquee + providers
   ========================================================================= */
.games-marquee {
  display: flex;
  gap: 1rem;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  padding: 0.5rem 0.25rem 1rem;
  margin: 0 -0.25rem;
  -webkit-overflow-scrolling: touch;
}

.games-marquee::-webkit-scrollbar { height: 8px; }
.games-marquee::-webkit-scrollbar-track { background: transparent; }
.games-marquee::-webkit-scrollbar-thumb { background: var(--border-strong); border-radius: 4px; }

.game-chip {
  flex: 0 0 auto;
  width: 180px;
  margin: 0;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  scroll-snap-align: start;
  transition: transform 0.25s var(--ease), border-color 0.25s var(--ease), box-shadow 0.25s var(--ease);
}
.game-chip:hover {
  transform: translateY(-3px) scale(1.02);
  border-color: var(--border-strong);
  box-shadow: var(--shadow-glow-cyan);
}
.game-chip img {
  width: 100%;
  height: 140px;
  object-fit: cover;
  background: var(--bg-1);
}
.game-chip figcaption {
  padding: 0.6rem 0.8rem 0.8rem;
  font-size: 0.85rem;
  color: var(--text);
  font-weight: 600;
}

.providers {
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem;
}

.provider-pill {
  display: inline-flex;
  align-items: center;
  padding: 0.45rem 0.85rem;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 999px;
  transition: border-color 0.2s, background 0.2s;
}
.provider-pill:hover {
  border-color: var(--border-strong);
  background: var(--surface2);
}
.provider-pill img { height: 18px; width: auto; opacity: 0.92; }

/* =========================================================================
   13. Mobile split
   ========================================================================= */
.mobile-split {
  display: grid;
  gap: 2rem;
  grid-template-columns: 1fr;
  align-items: center;
}
@media (min-width: 880px) {
  .mobile-split { grid-template-columns: 1.1fr 0.9fr; }
}

.feature-list {
  list-style: none;
  padding: 0;
  margin: 1rem 0;
  display: grid;
  gap: 0.6rem;
}

.feature-list .icon-row {
  background: var(--surface);
  border: 1px solid var(--border);
  padding: 0.7rem 0.9rem;
  border-radius: var(--radius);
}

.feature-list .icon-row img { width: 22px; height: 22px; }

.feature-list span { color: var(--text-soft); font-size: 0.95rem; }

/* =========================================================================
   14. VIP / Steps
   ========================================================================= */
.vip-tiers {
  display: grid;
  gap: 0.75rem;
  grid-template-columns: 1fr;
}
@media (min-width: 720px) {
  .vip-tiers { grid-template-columns: 1fr 1fr; }
}
@media (min-width: 1020px) {
  .vip-tiers { grid-template-columns: repeat(4, 1fr); }
}

.vip-tier {
  display: flex;
  flex-direction: column;
  gap: 0.45rem;
  padding: 1.1rem 1.2rem;
  background: linear-gradient(160deg, var(--surface), var(--bg-1));
  border: 1px solid var(--border);
  border-radius: var(--radius);
  transition: border-color 0.2s, transform 0.2s;
}
.vip-tier:hover { transform: translateY(-2px); border-color: var(--border-strong); }
.vip-tier strong { font-family: var(--font-display); font-size: 1.05rem; color: var(--gold-soft); }

.steps {
  display: grid;
  gap: 0.85rem;
  counter-reset: step;
}
@media (min-width: 720px) {
  .steps { grid-template-columns: 1fr 1fr; }
}
@media (min-width: 1020px) {
  .steps { grid-template-columns: repeat(3, 1fr); }
}

.step {
  position: relative;
  padding: 1.2rem 1.3rem 1.2rem 3.5rem;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  counter-increment: step;
}
.step::before {
  content: counter(step, decimal-leading-zero);
  position: absolute;
  top: 1.1rem;
  left: 1.1rem;
  width: 36px;
  height: 36px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: var(--gradient);
  color: var(--bg-deep);
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.85rem;
}
.step strong { font-family: var(--font-display); display: block; color: var(--text); margin-bottom: 0.3rem; }

/* =========================================================================
   15. Pros & cons
   ========================================================================= */
.pros-cons {
  display: grid;
  gap: 1.25rem;
  grid-template-columns: 1fr;
}
@media (min-width: 820px) {
  .pros-cons { grid-template-columns: 1fr 1fr; }
}

.pc-card ul { padding-left: 1.1rem; }
.pc-card li { color: var(--text-soft); margin-bottom: 0.45rem; line-height: 1.6; }
.pc-card li::marker { color: var(--cyan); }

/* =========================================================================
   16. Verdict (donut + bars)
   ========================================================================= */
.verdict-layout {
  display: grid;
  gap: 1.5rem;
  grid-template-columns: 1fr;
  align-items: center;
}
@media (min-width: 820px) {
  .verdict-layout { grid-template-columns: 0.85fr 1.15fr; }
}

.donut {
  --donut-pct: 0;
  --donut-color: var(--gold);
  position: relative;
  width: clamp(180px, 18vw, 230px);
  aspect-ratio: 1;
  margin: 0 auto;
  border-radius: 50%;
  background: conic-gradient(var(--donut-color) calc(var(--donut-pct) * 1%), var(--surface3) 0);
  display: grid;
  place-items: center;
  transition: background 1.2s var(--ease);
}
.donut::before {
  content: '';
  position: absolute;
  inset: 12px;
  border-radius: 50%;
  background: radial-gradient(60% 60% at 50% 30%, rgba(255, 217, 140, 0.12), transparent 60%), var(--bg-1);
  border: 1px solid var(--border);
}
.donut-inner {
  position: relative;
  text-align: center;
  z-index: 1;
}
.donut-inner strong {
  display: block;
  font-size: 2.4rem;
  color: var(--text);
}

.score-bars { display: grid; gap: 0.9rem; }
.bar-row label {
  display: flex;
  justify-content: space-between;
  font-size: 0.85rem;
  color: var(--text-soft);
  margin-bottom: 0.4rem;
}
.bar-row label span:last-child { color: var(--gold-soft); font-weight: 600; }
.bar-track {
  height: 8px;
  background: var(--surface3);
  border-radius: 999px;
  overflow: hidden;
}
.bar-fill {
  height: 100%;
  width: 0;
  background: var(--gradient);
  border-radius: 999px;
  transition: width 1.4s var(--ease);
}

/* =========================================================================
   17. FAQ
   ========================================================================= */
.faq-list {
  display: grid;
  gap: 0.65rem;
}

.faq-item {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  transition: border-color 0.2s;
}

.faq-item.is-open {
  border-color: var(--border-strong);
}

.faq-trigger {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1rem 1.2rem;
  background: transparent;
  border: 0;
  color: var(--text);
  text-align: left;
  font: inherit;
  font-weight: 600;
  font-size: 1rem;
  cursor: pointer;
}

.faq-trigger span {
  font-size: 1.4rem;
  color: var(--gold-soft);
  flex-shrink: 0;
  transition: transform 0.25s var(--ease);
  line-height: 1;
}

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

.faq-panel {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s var(--ease);
}

.faq-panel p {
  margin: 0;
  padding: 0 1.2rem 1.2rem;
  color: var(--text-soft);
}

/* =========================================================================
   18. Reveal animation
   ========================================================================= */
.reveal {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.7s var(--ease), transform 0.7s var(--ease);
  will-change: opacity, transform;
}

.reveal.is-visible {
  opacity: 1;
  transform: none;
}

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

/* =========================================================================
   19. Footer
   ========================================================================= */
.site-footer {
  margin-top: 4rem;
  padding: 3.5rem 0 1.5rem;
  background: linear-gradient(180deg, transparent, rgba(8, 10, 18, 0.7));
  border-top: 1px solid var(--border);
}

.footer-grid {
  display: grid;
  gap: 2rem;
  grid-template-columns: 1fr;
}
@media (min-width: 720px) { .footer-grid { grid-template-columns: 1.4fr 1fr 1fr; } }
@media (min-width: 1020px) { .footer-grid { grid-template-columns: 1.4fr 1fr 1fr 1fr; } }

.footer-brand .brand { margin-bottom: 0.75rem; }
.footer-tagline { color: var(--text-muted); font-size: 0.92rem; margin-bottom: 0.85rem; max-width: 36ch; }
.footer-rg { color: var(--text-muted); font-size: 0.88rem; line-height: 1.6; display: flex; gap: 0.55rem; align-items: flex-start; }

.rg-badge {
  display: inline-grid;
  place-items: center;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: var(--red);
  color: #1a0810;
  font-size: 0.78rem;
  font-weight: 800;
  flex-shrink: 0;
}

.footer-heading {
  font-family: var(--font-display);
  font-size: 0.82rem;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--gold-soft);
  margin-bottom: 0.85rem;
}

.footer-col ul {
  list-style: none;
  padding: 0;
  display: grid;
  gap: 0.45rem;
}
.footer-col a {
  color: var(--text-muted);
  font-size: 0.92rem;
  transition: color 0.2s;
}
.footer-col a:hover { color: var(--text); }

.footer-lang-list {
  list-style: none;
  padding: 0;
  display: grid;
  gap: 0.3rem;
}
.footer-lang-list a {
  display: flex;
  align-items: center;
  gap: 0.55rem;
  padding: 0.4rem 0.55rem;
  border-radius: 8px;
  color: var(--text-muted);
  font-size: 0.88rem;
}
.footer-lang-list a:hover { background: var(--surface); color: var(--text); }
.footer-lang-list a[aria-current='true'] { color: var(--cyan-soft); }
.footer-lang-list .lang-code { font-weight: 700; color: var(--gold); font-size: 0.7rem; width: 26px; letter-spacing: 0.1em; }

.footer-disclosure {
  margin-top: 2.5rem;
  padding: 1.25rem;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  color: var(--text-muted);
  font-size: 0.85rem;
  line-height: 1.65;
}

.footer-bottom {
  margin-top: 1.5rem;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding-top: 1.25rem;
  border-top: 1px solid var(--border);
  color: var(--text-dim);
  font-size: 0.82rem;
}

.footer-icons { display: flex; gap: 0.5rem; flex-wrap: wrap; }
.rg-pill {
  padding: 0.3rem 0.7rem;
  border: 1px solid var(--border);
  border-radius: 999px;
  background: var(--surface);
  color: var(--text-muted);
  font-size: 0.7rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-weight: 600;
}

/* =========================================================================
   20. Mobile nav (collapsible primary nav)
   ========================================================================= */
@media (max-width: 879px) {
  .header-inner {
    gap: 0.5rem;
    padding-inline: 0.65rem;
  }

  .brand {
    min-width: 0;
    flex: 1 1 auto;
  }

  .brand-tag {
    display: none;
  }

  .header-actions {
    flex-shrink: 0;
  }

  .primary-nav[data-open='true'] {
    display: flex;
    flex-direction: column;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--surface2);
    padding: 1rem;
    border-bottom: 1px solid var(--border);
    gap: 0.25rem;
  }
  .primary-nav[data-open='true'] a {
    display: block;
    padding: 0.7rem 1rem;
    font-size: 1rem;
  }
  .site-header { position: sticky; }
}
