/* ============================================================================
   Play Lottery India — Design System
   ----------------------------------------------------------------------------
   Palette : Deep Navy #003366 · Saffron Gold #F4A300 · Sky Blue #007BFF
             Silver Metallic #C0C0C0 · Clean White #FFFFFF
   Type    : Playfair Display (display serif) · Plus Jakarta Sans (body)
             · Caveat (handwritten annotation)
   Signature: silver-gold guilloche chevron band + star kickers
   ============================================================================ */

:root {
  /* Brand */
  --brand:           #003366;
  --brand-dark:      #001f3f;
  --brand-mid:       #0a4d8a;
  --brand-light:     #1769b5;

  /* Saffron gold – luck, prosperity */
  --accent:          #f4a300;
  --accent-warm:     #ffb733;
  --accent-deep:     #c78400;
  --accent-soft:     #ffe0a0;

  /* Sky blue – tech / modern */
  --sky:             #007bff;
  --sky-soft:        #b3d7ff;

  /* Silver metallic */
  --silver:          #c0c0c0;
  --silver-soft:     #e8e8e8;
  --silver-deep:     #9ba4ad;

  /* Surfaces */
  --bg:              #ffffff;
  --bg-cream:        #faf1dc;
  --bg-elevated:     #f5f8fc;
  --bg-panel:        #eaf1fa;
  --bg-dark:         #003366;
  --bg-dark-2:       #001f3f;
  --bg-ink:          #06152a;

  /* Text */
  --text:            #001f3f;
  --text-muted:      #3a5a85;
  --text-dim:        #7288a5;
  --text-inverse:    #ffffff;
  --text-inverse-mu: rgba(255,255,255,0.78);

  /* Borders */
  --border:          rgba(0,51,102,0.14);
  --border-strong:   rgba(0,51,102,0.28);
  --border-soft:     rgba(0,51,102,0.06);
  --border-gold:     rgba(244,163,0,0.42);
  --border-silver:   rgba(192,192,192,0.46);

  /* Shadows */
  --shadow-sm: 0 1px 2px rgba(0,31,63,0.06);
  --shadow-md: 0 6px 22px -10px rgba(0,31,63,0.22), 0 2px 4px rgba(0,31,63,0.06);
  --shadow-lg: 0 24px 60px -24px rgba(0,31,63,0.28), 0 6px 16px rgba(0,31,63,0.08);
  --shadow-xl: 0 40px 90px -32px rgba(0,31,63,0.36);

  /* Fonts */
  --font-display: 'Playfair Display', 'Times New Roman', serif;
  --font-body:    'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', system-ui, sans-serif;
  --font-script:  'Caveat', cursive;

  /* Metrics */
  --container:     1200px;
  --radius-sm:     2px;
  --radius-md:     4px;
  --radius-lg:     8px;
  --radius-pill:   999px;
}

/* ---------- Reset & base ---------- */
*,*::before,*::after { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.55;
  color: var(--text);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}

body::before {
  content: '';
  position: fixed; inset: 0;
  pointer-events: none; z-index: 0;
  background:
    radial-gradient(900px 700px at 110% -10%, rgba(244,163,0,0.10), transparent 60%),
    radial-gradient(700px 600px at -10% 30%, rgba(0,123,255,0.08), transparent 60%),
    radial-gradient(1200px 900px at 50% 120%, rgba(0,51,102,0.07), transparent 60%);
}

img { max-width: 100%; display: block; }
a { color: var(--brand); text-decoration: none; transition: color .2s ease; }
a:hover { color: var(--accent-deep); }

h1, h2, h3, h4 {
  font-family: var(--font-display);
  font-weight: 600;
  color: var(--text);
  margin: 0 0 .6rem;
  letter-spacing: -0.01em;
}
h1 { font-size: clamp(2rem, 4.2vw, 3.5rem); line-height: 1.1; }
h2 { font-size: clamp(1.6rem, 2.8vw, 2.4rem); line-height: 1.2; }
h3 { font-size: clamp(1.2rem, 1.8vw, 1.5rem); line-height: 1.3; }
em, i { font-style: italic; color: var(--accent-deep); }

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

ul, ol { margin: 0 0 1rem; padding-left: 1.25rem; }

.container {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 1.5rem;
  position: relative;
  z-index: 1;
}

/* ---------- Accessibility / motion ---------- */
@media (prefers-reduced-motion: reduce) {
  *,*::before,*::after { animation-duration: .01ms !important; transition-duration: .01ms !important; }
}

:focus-visible {
  outline: 3px solid var(--accent);
  outline-offset: 3px;
}

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

/* ============================================================================
   HEADER — non-floating, full-width sticky bar
   ============================================================================ */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: #fff;
  border-bottom: 1px solid var(--border);
  box-shadow: 0 1px 0 rgba(0,31,63,0.04);
  transition: box-shadow .25s ease;
}
.site-header::before {
  /* thin gold accent strip along the top */
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--accent) 0%, var(--accent-warm) 50%, var(--accent) 100%);
}
.site-header.is-scrolled {
  box-shadow: var(--shadow-md);
}
.site-header .header-inner {
  display: grid;
  grid-template-columns: auto 1fr auto auto;
  align-items: center;
  gap: 1rem;
  padding: .85rem 1.5rem;
  max-width: var(--container);
  margin: 0 auto;
}
.site-header.is-scrolled .header-inner { padding: .65rem 1.5rem; }

.site-logo { display: flex; align-items: center; gap: .75rem; }
.site-logo img {
  height: 56px;
  width: auto;
  object-fit: contain;
  transition: height .25s ease;
}
.site-header.is-scrolled .site-logo img { height: 48px; }

/* Nav — centered, holds only Reviews dropdown */
.site-nav {
  display: flex; align-items: center; justify-content: center;
  position: relative;
}
.site-nav ul {
  list-style: none; margin: 0; padding: 0;
  display: flex; gap: .25rem;
}
.site-nav .nav-item { position: relative; }
.site-nav a.nav-parent {
  font-family: var(--font-body);
  font-weight: 600;
  font-size: .95rem;
  color: var(--text);
  letter-spacing: 0.01em;
  padding: .55rem 1.1rem .55rem 1.25rem;
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  border-radius: var(--radius-pill);
  border: 1px solid var(--border);
  background: rgba(255,255,255,0.6);
  transition: color .18s ease, background .2s ease, border-color .2s ease;
}
.site-nav a.nav-parent:hover,
.site-nav a.nav-parent[aria-expanded="true"],
.nav-item--has-submenu:hover .nav-parent,
.nav-item--has-submenu:focus-within .nav-parent,
.nav-item--has-submenu.is-open .nav-parent {
  background: linear-gradient(135deg, rgba(244,163,0,0.18) 0%, rgba(0,123,255,0.08) 100%);
  border-color: var(--border-gold);
  color: var(--brand);
}
.site-nav a.nav-parent::after {
  content: '';
  width: 6px; height: 6px;
  margin-left: .15rem;
  border: 2px solid currentColor;
  border-top: 0; border-left: 0;
  transform: rotate(45deg) translateY(-2px);
  opacity: .7;
  transition: transform .2s ease;
}
.nav-item--has-submenu.is-open .nav-parent::after,
.nav-item--has-submenu:hover .nav-parent::after {
  transform: rotate(-135deg) translateY(-2px);
}
.nav-parent-count {
  display: inline-flex; align-items: center; justify-content: center;
  min-width: 1.4rem; height: 1.4rem;
  padding: 0 .4rem;
  background: var(--brand);
  color: var(--accent-warm);
  font-size: .72rem;
  font-weight: 700;
  border-radius: var(--radius-pill);
  letter-spacing: 0;
}

.header-cta,
.header-cta-play {
  white-space: nowrap;
}
/* Hide the mobile-drawer clone on desktop */
.site-nav > .header-cta-play { display: none; }

/* Nav indicator (visual accent only, kept out of the way) */
.nav-indicator {
  position: absolute;
  bottom: -2px;
  height: 2px;
  background: var(--accent);
  border-radius: 2px;
  transition: left .28s ease, width .28s ease, opacity .2s ease;
  opacity: 0;
  pointer-events: none;
}
.nav-indicator.is-visible { opacity: 0; } /* hidden — one-nav layout */

/* ---------- Reviews submenu — mega panel ---------- */
.nav-item--has-submenu { position: relative; }
.nav-item--has-submenu::after {
  /* R13: transparent bridge between trigger and panel */
  content: '';
  position: absolute;
  top: 100%;
  left: -.75rem; right: -.75rem;
  height: 1.1rem;
  pointer-events: auto;
}
.nav-submenu {
  position: absolute;
  top: calc(100% + 1rem);
  left: 50%;
  transform: translateX(-50%) translateY(12px);
  width: min(760px, 92vw);
  background: rgba(255,255,255,0.98);
  backdrop-filter: blur(22px);
  border: 1px solid var(--border);
  border-top: 3px solid var(--accent);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-xl);
  padding: 1.5rem 1.5rem 1.25rem;
  opacity: 0;
  visibility: hidden;
  transition: opacity .2s ease, transform .28s cubic-bezier(.16,1,.3,1), visibility .2s ease;
  z-index: 10;
}
.nav-submenu::before {
  content: '';
  position: absolute;
  top: -8px; left: 50%;
  transform: translateX(-50%) rotate(45deg);
  width: 14px; height: 14px;
  background: rgba(255,255,255,0.98);
  border-left: 1px solid var(--border);
  border-top: 3px solid var(--accent);
}
.nav-item--has-submenu:hover .nav-submenu,
.nav-item--has-submenu:focus-within .nav-submenu,
.nav-item--has-submenu.is-open .nav-submenu {
  opacity: 1; visibility: visible;
  transform: translateX(-50%) translateY(0);
}
.nav-submenu .submenu-head {
  padding: 0 .25rem 1rem;
  border-bottom: 1px dashed var(--border);
  margin-bottom: 1rem;
}
.nav-submenu .submenu-head h3 {
  font-family: var(--font-display);
  font-size: 1.25rem;
  margin: .25rem 0 .25rem;
}
.nav-submenu .submenu-head p {
  font-size: .85rem;
  color: var(--text-muted);
  margin: 0;
}
.nav-submenu .submenu-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: .35rem .75rem;
}
.nav-submenu a {
  display: grid !important;
  grid-template-columns: 2.25rem 44px 1fr;
  align-items: center;
  gap: .6rem;
  padding: .55rem .7rem !important;
  border-radius: var(--radius-sm);
  color: var(--text);
  border: 1px solid transparent;
  transition: background .2s ease, border-color .2s ease, transform .2s ease;
}
.nav-submenu a:hover {
  background: linear-gradient(135deg, rgba(244,163,0,0.10), rgba(0,123,255,0.05));
  border-color: var(--border-gold);
  transform: translateX(2px);
}
.nav-submenu .sub-rank {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.1rem;
  color: var(--accent-deep);
  line-height: 1;
  text-align: center;
}
.nav-submenu .sub-logo {
  background: linear-gradient(135deg, var(--bg-cream), #fff6dc);
  border: 1px solid var(--border-gold);
  border-radius: var(--radius-sm);
  padding: .25rem;
  display: flex; align-items: center; justify-content: center;
  height: 36px;
}
.nav-submenu .sub-logo img {
  max-height: 28px; max-width: 100%; object-fit: contain;
}
.nav-submenu .sub-body {
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: .5rem;
  min-width: 0;
}
.nav-submenu .sub-label {
  font-size: .9rem; font-weight: 600;
  white-space: nowrap; overflow: hidden; text-overflow: ellipsis;
}
.nav-submenu .sub-meta {
  font-size: .8rem;
  color: var(--text-muted);
  font-family: var(--font-display);
  font-weight: 600;
  display: inline-flex; align-items: center; gap: .15rem;
}
.nav-submenu .sub-meta .star { font-size: .9rem; }

/* Header CTA */
.btn {
  display: inline-flex; align-items: center; justify-content: center;
  gap: .45rem;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: .95rem;
  letter-spacing: 0.01em;
  padding: .75rem 1.35rem;
  border-radius: var(--radius-md);
  text-decoration: none;
  border: 1px solid transparent;
  cursor: pointer;
  transition: transform .18s ease, box-shadow .2s ease, background .25s ease, color .2s ease;
  white-space: nowrap;
  position: relative;
  overflow: hidden;
}
.btn-primary {
  background: linear-gradient(135deg, var(--accent) 0%, var(--accent-warm) 100%);
  color: var(--brand-dark);
  box-shadow: 0 2px 8px rgba(244,163,0,0.3), inset 0 1px 0 rgba(255,255,255,0.4);
}
.btn-primary:hover {
  transform: translateY(-1px);
  box-shadow: 0 10px 28px -8px rgba(244,163,0,0.5), inset 0 1px 0 rgba(255,255,255,0.5);
  color: var(--brand-dark);
}
.btn-secondary {
  background: transparent;
  color: var(--brand);
  border-color: var(--brand);
}
.btn-secondary:hover {
  background: var(--brand);
  color: var(--text-inverse);
}
.btn-ghost {
  background: rgba(255,255,255,0.92);
  color: var(--brand-dark);
  border-color: var(--border-gold);
}
.btn-ghost:hover {
  background: var(--bg-cream);
}
.btn--sm { padding: .55rem 1rem; font-size: .88rem; }
.btn--lg { padding: .95rem 1.75rem; font-size: 1rem; }

/* Play Now (source-locked; never data-cta-roll) */
.btn-play {
  background: linear-gradient(135deg, var(--accent) 0%, var(--accent-warm) 100%);
  color: var(--brand-dark);
  font-weight: 700;
  box-shadow: 0 4px 14px rgba(244,163,0,0.35), inset 0 1px 0 rgba(255,255,255,0.4);
}
.btn-play:hover {
  transform: translateY(-1px);
  box-shadow: 0 10px 28px -8px rgba(244,163,0,0.5), inset 0 1px 0 rgba(255,255,255,0.5);
  color: var(--brand-dark);
}

/* Mobile menu toggle */
.menu-toggle {
  display: none;
  background: none; border: 0; cursor: pointer;
  width: 44px; height: 44px;
  padding: 0;
  color: var(--brand);
}
.menu-toggle span {
  display: block;
  height: 2px;
  background: currentColor;
  margin: 5px auto;
  width: 22px;
  transition: transform .25s ease, opacity .2s ease;
  transform-origin: center;
}
.menu-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.menu-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.menu-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ---------- Mobile nav behaviour ---------- */
@media (max-width: 900px) {
  .menu-toggle { display: inline-block; }
  .site-nav {
    position: fixed;
    top: 0; left: 0; right: 0; bottom: 0;
    background: rgba(255,255,255,0.98);
    backdrop-filter: blur(24px);
    padding: 5rem 2rem 2rem;
    transform: translateX(100%);
    transition: transform .32s ease;
    overflow-y: auto;
    display: block;
  }
  .site-nav.is-open { transform: translateX(0); }
  .site-nav ul { flex-direction: column; gap: 0; }
  .site-nav a {
    padding: 1rem 0 !important;
    font-size: 1.1rem;
    display: block !important;
    border-bottom: 1px solid var(--border-soft);
    grid-template-columns: 1fr !important;
  }
  body.has-mobile-nav { overflow: hidden; }

  /* Submenu expands inline on mobile */
  .nav-submenu {
    position: static;
    transform: none;
    box-shadow: none;
    border: 0;
    border-top: 1px solid var(--border-soft);
    border-radius: 0;
    padding: 0 0 .5rem 0;
    min-width: 0;
    opacity: 1;
    visibility: visible;
    display: none;
    background: transparent;
    backdrop-filter: none;
  }
  .nav-submenu::before { display: none; }
  .nav-item--has-submenu.is-open .nav-submenu { display: block; }
  .nav-item--has-submenu::after { display: none; }
  .nav-submenu .submenu-grid { grid-template-columns: 1fr; }
  .nav-submenu a { font-size: .95rem; padding: .65rem .25rem !important; }
  .nav-submenu a .sub-logo { height: 32px; }

  .site-header .header-inner > .btn { display: none; }
  .site-nav > .header-cta-play {
    display: inline-flex !important;
    margin-top: 1.25rem;
    width: 100%;
  }
}

/* ============================================================================
   HERO — asymmetric editorial with integrated stats + feature card + motif
   ============================================================================ */
.hero {
  position: relative;
  min-height: 0;
  padding: 4rem 0 2rem;
  display: flex;
  align-items: center;
  background:
    linear-gradient(135deg, var(--bg-dark-2) 0%, var(--brand) 55%, var(--brand-mid) 100%);
  color: var(--text-inverse);
  overflow: hidden;
  isolation: isolate;
}
.hero-bg-img {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  opacity: .2;
  z-index: -3;
}
.hero::before {
  /* layered radial lighting */
  content: '';
  position: absolute; inset: 0;
  background:
    radial-gradient(60% 60% at 85% 20%, rgba(244,163,0,0.30), transparent 65%),
    radial-gradient(70% 60% at 0% 100%, rgba(0,123,255,0.22), transparent 65%),
    radial-gradient(90% 80% at 50% 50%, rgba(0,31,63,0.5), transparent 70%);
  z-index: -2;
}
.hero::after {
  /* subtle star-dot mesh */
  content: '';
  position: absolute; inset: 0;
  background:
    radial-gradient(circle at 20px 20px, rgba(244,163,0,0.14) 1px, transparent 1.5px),
    radial-gradient(circle at 60px 60px, rgba(255,255,255,0.08) 1px, transparent 1.5px);
  background-size: 80px 80px, 80px 80px;
  background-position: 0 0, 40px 40px;
  opacity: .45;
  z-index: -1;
  mix-blend-mode: screen;
}

.hero .container { max-width: 1220px; position: relative; z-index: 2; }

.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.35fr) minmax(0, 1fr);
  gap: 3.5rem;
  align-items: center;
}

.hero-copy { max-width: 620px; }
.hero-eyebrow {
  display: inline-flex; align-items: center; gap: .55rem;
  font-family: var(--font-body);
  font-size: .75rem;
  text-transform: uppercase;
  letter-spacing: .2em;
  color: var(--accent-warm);
  border: 1px solid rgba(244,163,0,0.4);
  padding: .4rem .85rem;
  border-radius: var(--radius-pill);
  background: rgba(244,163,0,0.1);
  margin-bottom: 1rem;
  backdrop-filter: blur(8px);
}
.hero-eyebrow .dot {
  width: 6px; height: 6px; background: var(--accent); border-radius: 50%;
  box-shadow: 0 0 0 4px rgba(244,163,0,0.3);
  animation: pulse 2s ease infinite;
}
@keyframes pulse {
  0%,100% { box-shadow: 0 0 0 4px rgba(244,163,0,0.3); }
  50%     { box-shadow: 0 0 0 7px rgba(244,163,0,0); }
}

.hero h1 {
  color: var(--text-inverse);
  font-size: clamp(2.5rem, 5.2vw, 4.6rem);
  line-height: 1.04;
  letter-spacing: -0.02em;
  margin-bottom: 1rem;
  font-weight: 600;
}
.hero h1 em {
  color: var(--accent-warm);
  font-style: italic;
  position: relative;
  display: inline-block;
}
.hero h1 em::after {
  content: '';
  position: absolute;
  left: 0; right: 0; bottom: -.05em;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--accent) 20%, var(--accent) 80%, transparent);
  opacity: .55;
}
.hero-lede {
  font-size: 1.08rem;
  line-height: 1.6;
  color: rgba(255,255,255,0.82);
  max-width: 560px;
  margin-bottom: 1.5rem;
}
.hero-ctas {
  display: flex; flex-wrap: wrap; gap: .75rem;
  margin-bottom: 1.25rem;
}
.hero-ctas .btn-ghost {
  background: rgba(255,255,255,0.08);
  color: var(--text-inverse);
  border-color: rgba(255,255,255,0.25);
  backdrop-filter: blur(10px);
}
.hero-ctas .btn-ghost:hover {
  background: rgba(255,255,255,0.14);
  border-color: rgba(244,163,0,0.6);
}

/* Stats integrated into hero (not a bridge strip) */
.hero-rail {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: .85rem 1.5rem;
  padding-top: 1rem;
  border-top: 1px solid rgba(255,255,255,0.15);
}
.hero-rail-item {
  display: flex; flex-direction: column; gap: .1rem;
}
.hero-rail-num {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: clamp(1.8rem, 3vw, 2.4rem);
  line-height: 1;
  color: var(--accent-warm);
  font-style: italic;
  letter-spacing: -0.01em;
}
.hero-rail-num span {
  color: rgba(255,255,255,0.5);
  font-style: normal;
  margin: 0 .05em;
  font-weight: 400;
}
.hero-rail-label {
  font-size: .78rem;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.62);
  font-weight: 500;
  line-height: 1.3;
  margin-top: .35rem;
}

/* Decorative orbit — lottery balls + stars */
.hero-orbit {
  position: absolute;
  right: -4%; top: 10%;
  width: 48%; height: 80%;
  pointer-events: none;
  z-index: 1;
  opacity: .9;
}
.hero-ball {
  position: absolute;
  width: 64px; height: 64px;
  border-radius: 50%;
  background: radial-gradient(circle at 30% 30%, #fff 0%, var(--accent-warm) 45%, var(--accent-deep) 100%);
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-display);
  font-weight: 700;
  color: var(--brand-dark);
  box-shadow: 0 10px 30px -10px rgba(244,163,0,0.6), inset -4px -4px 10px rgba(0,0,0,0.18), inset 3px 3px 8px rgba(255,255,255,0.5);
  animation: float 7s ease-in-out infinite;
}
.hero-ball span { line-height: 1; }
.hero-ball--1 { width: 56px; height: 56px; top: 8%;  right: 12%; font-size: 1.05rem; animation-delay: -1s;   }
.hero-ball--2 { width: 86px; height: 86px; top: 36%; right: 58%; font-size: 1.5rem;  animation-delay: -3.5s; background: radial-gradient(circle at 30% 30%, #fff 0%, var(--silver-soft) 40%, var(--silver) 100%); }
.hero-ball--3 { width: 72px; height: 72px; top: 55%; right: 8%;  font-size: 1.25rem; animation-delay: -5s;   }
.hero-ball--4 { width: 48px; height: 48px; top: 78%; right: 38%; font-size: .95rem;  animation-delay: -2s;   background: radial-gradient(circle at 30% 30%, #fff 0%, var(--sky-soft) 40%, var(--sky) 100%); color: #fff; }

@keyframes float {
  0%,100% { transform: translateY(0) rotate(0deg); }
  50%     { transform: translateY(-14px) rotate(6deg); }
}

.hero-star {
  position: absolute;
  color: var(--accent-warm);
  filter: drop-shadow(0 4px 14px rgba(244,163,0,0.6));
  opacity: .9;
  animation: twinkle 3.5s ease-in-out infinite;
  fill: currentColor;
}
.hero-star--1 { width: 28px; height: 28px; top: 18%; right: 42%; animation-delay: -.5s; }
.hero-star--2 { width: 18px; height: 18px; top: 62%; right: 72%; animation-delay: -2s; }
.hero-star--3 { width: 22px; height: 22px; top: 86%; right: 18%; animation-delay: -1.2s; }

@keyframes twinkle {
  0%,100% { opacity: .4; transform: scale(.85); }
  50%     { opacity: 1;  transform: scale(1.05); }
}

/* Feature card — #1 pinned next to the headline */
.hero-feature {
  position: relative;
  z-index: 3;
  padding-top: 1rem;
}
.hero-feature-ribbon {
  position: absolute;
  top: -.5rem; left: 50%;
  transform: translateX(-50%);
  background: linear-gradient(135deg, var(--accent) 0%, var(--accent-warm) 100%);
  color: var(--brand-dark);
  font-family: var(--font-body);
  font-weight: 700;
  font-size: .74rem;
  letter-spacing: .14em;
  text-transform: uppercase;
  padding: .45rem 1rem;
  border-radius: var(--radius-pill);
  box-shadow: 0 8px 24px -4px rgba(244,163,0,0.5);
  white-space: nowrap;
  z-index: 4;
}
.hero-feature-card {
  background: linear-gradient(180deg, #ffffff 0%, #fffbed 100%);
  border: 1px solid var(--border-gold);
  border-radius: var(--radius-md);
  padding: 2.25rem 1.75rem 1.75rem;
  text-align: center;
  box-shadow: 0 40px 80px -30px rgba(0,0,0,0.45), 0 10px 30px -10px rgba(244,163,0,0.3);
  position: relative;
  overflow: hidden;
}
.hero-feature-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0; height: 4px;
  background: linear-gradient(90deg, var(--accent) 0%, var(--accent-warm) 50%, var(--accent) 100%);
}
.hero-feature-card::after {
  content: '';
  position: absolute;
  top: -40%; right: -40%;
  width: 80%; height: 80%;
  background: radial-gradient(circle, rgba(244,163,0,0.15), transparent 70%);
  pointer-events: none;
}
.hero-feature-logo {
  background: linear-gradient(135deg, var(--bg-cream) 0%, #fff6dc 100%);
  border: 1px solid var(--border-gold);
  border-radius: var(--radius-sm);
  padding: .75rem 1rem;
  height: 80px;
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 1rem;
  max-width: 220px;
  position: relative;
  z-index: 1;
}
.hero-feature-logo img { max-height: 48px; max-width: 100%; object-fit: contain; }
.hero-feature-name {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.25rem;
  color: var(--text);
  display: block;
  margin-bottom: .5rem;
  position: relative;
  z-index: 1;
}
.hero-feature-rating {
  display: flex; align-items: center; justify-content: center; gap: .75rem;
  margin-bottom: 1rem;
  position: relative;
  z-index: 1;
}
.hero-feature-score {
  font-family: var(--font-display);
  font-weight: 700;
  color: var(--brand);
  font-size: 1.35rem;
}
.hero-feature-score span { color: var(--text-dim); font-weight: 400; font-size: 1rem; }
.hero-feature-bonus {
  font-size: .92rem;
  color: var(--text-muted);
  margin-bottom: 1.25rem;
  line-height: 1.45;
  position: relative;
  z-index: 1;
}
.hero-feature-actions {
  display: flex; flex-direction: column; gap: .6rem; align-items: center;
  position: relative;
  z-index: 1;
}
.hero-feature-actions .btn-play { width: 100%; }
.hero-feature-read {
  font-size: .82rem;
  font-weight: 600;
  color: var(--brand);
  text-decoration: none;
}
.hero-feature-read:hover { color: var(--accent-deep); }

@media (max-width: 900px) {
  .hero { padding: 6rem 0 2.5rem; min-height: 0; }
  .hero-grid { grid-template-columns: 1fr; gap: 2rem; }
  .hero-orbit { display: none; }
  .hero-feature { max-width: 420px; margin: 0 auto; }
  .hero-rail { grid-template-columns: repeat(2, 1fr); gap: 1rem; }
}

/* ============================================================================
   TOP-RATED PODIUM + RUNNERS
   ============================================================================ */
.top-rated {
  padding: 2rem 0 1.5rem;
  position: relative;
}
.section-heading {
  text-align: center;
  margin-bottom: 1.25rem;
  position: relative;
}
.section-eyebrow {
  display: inline-block;
  font-size: .78rem;
  text-transform: uppercase;
  letter-spacing: .2em;
  color: var(--accent-deep);
  margin-bottom: .6rem;
  position: relative;
  padding: 0 1.5rem;
}
.section-eyebrow::before, .section-eyebrow::after {
  content: '';
  position: absolute; top: 50%;
  width: 1rem; height: 1px;
  background: var(--accent);
}
.section-eyebrow::before { left: 0; }
.section-eyebrow::after  { right: 0; }
.section-heading h2 {
  font-size: clamp(1.75rem, 3vw, 2.5rem);
  margin-bottom: .5rem;
}
.section-heading h2 em { color: var(--accent-deep); }

.scribble {
  display: inline-block;
  font-family: var(--font-script);
  font-size: 1.6rem;
  color: var(--accent-deep);
  position: relative;
  transform: rotate(-4deg);
  margin-top: .25rem;
}
.scribble svg {
  position: absolute;
  left: -56px; top: 6px;
  width: 48px; height: 32px;
  color: var(--accent);
}

/* ---------- Podium — giant display-serif numeral as the hero element ---------- */
.podium {
  display: grid;
  grid-template-columns: 1fr 1.12fr 1fr;
  gap: 1.5rem;
  align-items: end;
  margin-bottom: 1.5rem;
}
.podium-card {
  position: relative;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 2rem 1.5rem 1.5rem;
  box-shadow: var(--shadow-md);
  transition: transform .3s ease, box-shadow .3s ease;
  display: flex; flex-direction: column;
  overflow: hidden;
  min-height: 0;
  text-align: center;
}
.podium-card--featured { padding-top: 3.25rem; }
.podium-card::before {
  /* subtle gold hairline top accent */
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0; height: 3px;
  background: linear-gradient(90deg, transparent, var(--accent) 30%, var(--accent) 70%, transparent);
}
.podium-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
}
.podium-numeral {
  position: absolute;
  top: -.5rem; left: .75rem;
  font-family: var(--font-display);
  font-style: italic;
  font-weight: 700;
  font-size: 7rem;
  line-height: 1;
  color: rgba(0,51,102,0.08);
  pointer-events: none;
  user-select: none;
  letter-spacing: -.03em;
  z-index: 0;
}
.podium-card > * { position: relative; z-index: 1; }

.podium-card--featured {
  transform: translateY(-1.25rem);
  background:
    linear-gradient(180deg, #ffffff 0%, #fefaf0 100%);
  border: 1px solid var(--accent);
  box-shadow:
    0 40px 90px -30px rgba(244,163,0,0.5),
    0 12px 30px -12px rgba(0,51,102,0.2);
}
.podium-card--featured::before {
  height: 4px;
  background: linear-gradient(90deg, var(--accent) 0%, var(--accent-warm) 50%, var(--accent) 100%);
}
.podium-card--featured::after {
  /* gold sheen overlay */
  content: '';
  position: absolute;
  top: -30%; right: -30%;
  width: 60%; height: 60%;
  background: radial-gradient(circle, rgba(244,163,0,0.18), transparent 70%);
  pointer-events: none;
}
.podium-card--featured:hover { transform: translateY(-1.5rem); }
.podium-card--featured .podium-numeral {
  color: rgba(244,163,0,0.28);
}

.podium-ribbon {
  position: absolute;
  top: .9rem; left: 50%;
  transform: translateX(-50%);
  background: linear-gradient(135deg, var(--accent) 0%, var(--accent-warm) 100%);
  color: var(--brand-dark);
  font-family: var(--font-body);
  font-weight: 700;
  font-size: .72rem;
  letter-spacing: .14em;
  text-transform: uppercase;
  padding: .4rem .9rem;
  border-radius: var(--radius-pill);
  box-shadow: 0 6px 14px -4px rgba(244,163,0,0.45);
  white-space: nowrap;
  display: inline-flex; align-items: center; gap: .4rem;
  z-index: 3;
}
.podium-ribbon .crown { width: 16px; height: 10px; color: var(--brand-dark); }

/* Big centered logo "hero" — the focal point of the card */
.podium-logo-hero {
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: 220px;
  height: 130px;
  margin: 0 auto 1rem;
  padding: 1rem 1.25rem;
  background: linear-gradient(135deg, var(--bg-cream) 0%, #fff6dc 100%);
  border: 1px solid var(--border-gold);
  border-radius: var(--radius-md);
  box-shadow:
    0 14px 34px -14px rgba(244,163,0,0.35),
    inset 0 1px 0 rgba(255,255,255,0.6);
  display: flex; align-items: center; justify-content: center;
}
.podium-logo-hero::before {
  /* soft gold glow behind the plate */
  content: '';
  position: absolute;
  inset: -14px;
  border-radius: var(--radius-md);
  background: radial-gradient(closest-side, rgba(244,163,0,0.25), transparent 70%);
  z-index: -1;
  filter: blur(6px);
}
.podium-logo-hero img {
  max-height: 90px;
  max-width: 100%;
  object-fit: contain;
  width: auto;
}
.podium-card--featured .podium-logo-hero {
  max-width: 240px;
  height: 150px;
  box-shadow:
    0 22px 50px -18px rgba(244,163,0,0.55),
    inset 0 1px 0 rgba(255,255,255,0.7);
}
.podium-card--featured .podium-logo-hero img {
  max-height: 110px;
}

/* keep the legacy .logo-plate class usable for CTA-strip etc. */
.logo-plate {
  background: linear-gradient(135deg, var(--bg-cream) 0%, #fff6dc 100%);
  border: 1px solid var(--border-gold);
  border-radius: var(--radius-sm);
  padding: .65rem .85rem;
  display: flex; align-items: center; justify-content: center;
}
.logo-plate img { max-height: 46px; max-width: 100%; object-fit: contain; width: auto; }

.podium-name {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.45rem;
  line-height: 1.15;
  color: var(--text);
  text-align: center;
  display: block;
  margin-bottom: .3rem;
}
.podium-card--featured .podium-name { font-size: 1.6rem; }

.podium-rating {
  display: flex; align-items: center; justify-content: center; gap: .5rem;
  margin-bottom: .85rem;
}
.podium-score {
  font-family: var(--font-display);
  font-weight: 700;
  color: var(--brand);
  font-size: 1.05rem;
}

.podium-bonus {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 1rem;
  line-height: 1.35;
  color: var(--text);
  margin: 0 0 .85rem;
  text-align: center;
  flex: 1;
}
.podium-stats {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: .5rem;
  margin: 0 0 .85rem;
  padding: .65rem 0;
  border-top: 1px dashed var(--border);
  border-bottom: 1px dashed var(--border);
}
.podium-stats div {
  text-align: center;
  font-size: .82rem;
}
.podium-stats strong {
  display: block;
  font-family: var(--font-display);
  font-weight: 700;
  color: var(--brand);
  font-size: 1.1rem;
  margin-bottom: .15rem;
}
.podium-stats span {
  color: var(--text-muted);
  font-size: .7rem;
  text-transform: uppercase;
  letter-spacing: .1em;
}
.podium-actions {
  display: flex; flex-direction: column; gap: .4rem;
  align-items: center;
}
.podium-card .btn-play { width: 100%; }
.podium-read {
  font-size: .85rem;
  color: var(--brand);
  font-weight: 600;
  text-decoration: none;
}
.podium-read:hover { color: var(--accent-deep); }
.podium-read span { transition: margin .2s ease; display: inline-block; }
.podium-read:hover span { margin-left: .25rem; }

@media (max-width: 900px) {
  .podium { grid-template-columns: 1fr; gap: 1.25rem; }
  .podium-card { min-height: 0; padding: 3rem 1.5rem 1.5rem; }
  .podium-card--featured { transform: none; order: -1; }
  .podium-card--featured:hover { transform: translateY(-4px); }
}

/* ---------- Runners — band layout with big side rank ---------- */
.runners {
  display: flex; flex-direction: column; gap: .6rem;
  margin-top: .5rem;
}
.runner {
  display: grid;
  grid-template-columns: 5rem 180px 1fr auto auto;
  align-items: center;
  gap: 1.25rem;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: .75rem 1.25rem .75rem 0;
  box-shadow: var(--shadow-sm);
  transition: transform .2s ease, box-shadow .25s ease, border-color .2s ease;
  position: relative;
  overflow: hidden;
}
.runner::before {
  /* gold side rail on hover */
  content: '';
  position: absolute;
  top: 0; left: 0; bottom: 0;
  width: 4px;
  background: var(--silver-soft);
  transition: background .25s ease, width .25s ease;
}
.runner:hover {
  transform: translateX(3px);
  box-shadow: var(--shadow-md);
  border-color: var(--border-gold);
}
.runner:hover::before {
  background: linear-gradient(180deg, var(--accent), var(--accent-warm));
  width: 4px;
}

.runner-rank {
  font-family: var(--font-display);
  font-style: italic;
  font-weight: 700;
  font-size: 3rem;
  line-height: 1;
  color: var(--brand);
  letter-spacing: -.03em;
  padding-left: 1.25rem;
  display: flex; align-items: baseline; gap: .1rem;
}
.runner-rank span {
  font-size: 1.15rem;
  color: var(--accent);
  font-style: normal;
  font-weight: 500;
}
.runner-logo {
  height: 56px;
  display: flex; align-items: center;
  background: linear-gradient(135deg, var(--bg-cream) 0%, #fff6dc 100%);
  border: 1px solid var(--border-gold);
  border-radius: var(--radius-sm);
  padding: .4rem .75rem;
  justify-content: center;
}
.runner-logo img { max-height: 38px; max-width: 150px; object-fit: contain; }
.runner-meta { display: grid; gap: .25rem; min-width: 0; }
.runner-name {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.15rem;
  color: var(--text);
  line-height: 1.2;
}
.runner-rating {
  display: flex; align-items: center; gap: .5rem;
}
.runner-score {
  font-family: var(--font-display);
  font-weight: 700;
  color: var(--brand);
  font-size: .9rem;
}
.runner-bonus {
  font-size: .85rem;
  color: var(--text-muted);
}
.runner-stats {
  display: flex; align-items: center; gap: 1.5rem;
  padding: 0 1rem;
  border-left: 1px dashed var(--border);
  border-right: 1px dashed var(--border);
}
.runner-stats div { text-align: center; }
.runner-stats strong {
  display: block;
  font-family: var(--font-display);
  font-weight: 700;
  color: var(--brand);
  font-size: 1rem;
  line-height: 1;
}
.runner-stats span {
  font-size: .7rem;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: .1em;
}
.runner-cta {
  display: flex; gap: .5rem; align-items: center;
}

@media (max-width: 1100px) {
  .runner { grid-template-columns: 4rem 140px 1fr auto; gap: 1rem; padding-right: 1rem; }
  .runner-stats { display: none; }
  .runner-rank { font-size: 2.4rem; padding-left: 1rem; }
  .runner-logo { height: 48px; }
  .runner-logo img { max-height: 32px; max-width: 120px; }
}
@media (max-width: 720px) {
  .runner {
    grid-template-columns: 3.5rem 1fr;
    grid-template-rows: auto auto;
    gap: .85rem 1rem;
    padding: 1rem;
  }
  .runner-rank { font-size: 2rem; padding-left: .5rem; }
  .runner-logo { grid-column: 2; grid-row: 1; max-width: 150px; justify-self: start; }
  .runner-meta { grid-column: 1 / -1; grid-row: 2; }
  .runner-cta { grid-column: 1 / -1; grid-row: 3; }
  .runner-cta .btn { flex: 1; }
}

/* ============================================================================
   STARS (CSS-only rating display)
   ============================================================================ */
.stars {
  display: inline-flex; gap: .08rem;
  line-height: 1;
}
.star {
  font-size: 1.1rem;
  line-height: 1;
  letter-spacing: 0;
}
.star--full  { color: var(--accent); }
.star--half  { color: rgba(0,31,63,0.16); position: relative; }
.star--half::before {
  content: '\2605';
  position: absolute;
  left: 0; top: 0;
  width: 50%;
  overflow: hidden;
  color: var(--accent);
}
.star--empty { color: rgba(0,31,63,0.16); }

.stars--lg .star { font-size: 1.4rem; }

/* ============================================================================
   HOME FLOOR — casino bento
   ============================================================================ */
.home-floor {
  padding: 2rem 0;
  position: relative;
}
.home-floor::before {
  /* silver-gold guilloche band signature */
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 28px;
  background:
    linear-gradient(90deg,
      transparent 0%,
      rgba(244,163,0,0.6) 20%,
      rgba(192,192,192,0.8) 50%,
      rgba(244,163,0,0.6) 80%,
      transparent 100%);
  mask: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='40' height='28' viewBox='0 0 40 28'><path d='M0 14 L10 6 L20 14 L30 6 L40 14 L40 22 L30 14 L20 22 L10 14 L0 22 Z' fill='black'/></svg>") repeat-x center/40px 28px;
  -webkit-mask: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='40' height='28' viewBox='0 0 40 28'><path d='M0 14 L10 6 L20 14 L30 6 L40 14 L40 22 L30 14 L20 22 L10 14 L0 22 Z' fill='black'/></svg>") repeat-x center/40px 28px;
  opacity: .8;
}
.bento {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  grid-auto-rows: minmax(200px, auto);
  gap: .75rem;
}
.floor-tile {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 1.5rem 1.5rem;
  position: relative;
  overflow: hidden;
  transition: transform .28s ease, box-shadow .28s ease, border-color .25s ease;
  display: flex; flex-direction: column;
  gap: .5rem;
  box-shadow: var(--shadow-sm);
}
.floor-tile::before {
  /* gold hairline top accent */
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0; height: 2px;
  background: linear-gradient(90deg, transparent, var(--accent) 30%, var(--accent) 70%, transparent);
  opacity: .7;
  transition: opacity .25s ease;
}
.floor-tile[data-mono]::after {
  content: attr(data-mono);
  position: absolute;
  right: -.25rem; bottom: -2rem;
  font-family: var(--font-display);
  font-style: italic;
  font-weight: 700;
  font-size: clamp(8rem, 15vw, 14rem);
  color: rgba(0,51,102,0.05);
  line-height: 1;
  pointer-events: none;
  user-select: none;
  z-index: 0;
}
/* L-corner hairline (top-right decorative) */
.tile-corner {
  position: absolute;
  top: .75rem; right: .75rem;
  width: 18px; height: 18px;
  border-top: 1.5px solid var(--accent);
  border-right: 1.5px solid var(--accent);
  opacity: .4;
  transition: opacity .25s ease, width .25s ease, height .25s ease;
  pointer-events: none;
  z-index: 2;
}
.floor-tile:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
  border-color: var(--border-gold);
}
.floor-tile:hover::before { opacity: 1; }
.floor-tile:hover .tile-corner { opacity: .85; width: 26px; height: 26px; }
.floor-tile > * { position: relative; z-index: 1; }

.tile-kicker {
  font-size: .72rem;
  text-transform: uppercase;
  letter-spacing: .18em;
  color: var(--accent-deep);
  font-weight: 600;
}
.floor-tile h3 {
  font-size: 1.35rem;
  line-height: 1.25;
  margin: 0;
}
.floor-tile p {
  color: var(--text-muted);
  font-size: .95rem;
  line-height: 1.55;
}
.floor-tile .tile-read {
  margin-top: auto;
  font-size: .85rem;
  font-weight: 600;
  color: var(--brand);
  text-decoration: none;
}
.floor-tile .tile-read::after { content: ' ›'; transition: margin .2s ease; }
.floor-tile .tile-read:hover::after { margin-left: .3rem; }

.bento-tile--feature  { grid-column: span 3; grid-row: span 2; }
.bento-tile--wide     { grid-column: span 3; }
.bento-tile--narrow   { grid-column: span 2; }
.bento-tile--narrow3  { grid-column: span 3; }
.bento-tile--full     { grid-column: span 6; }
.bento-tile--sq       { grid-column: span 2; }

@media (max-width: 1000px) {
  .bento { grid-template-columns: repeat(2, 1fr); }
  .bento-tile--feature { grid-column: span 2; grid-row: span 1; }
  .bento-tile--wide,
  .bento-tile--narrow,
  .bento-tile--narrow3,
  .bento-tile--sq,
  .bento-tile--full { grid-column: span 2; }
}
@media (max-width: 560px) {
  .bento { grid-template-columns: 1fr; }
  .bento > * { grid-column: 1 / -1 !important; }
}

/* ============================================================================
   HOME-INTRO / glyph + CTA pair
   ============================================================================ */
.home-intro {
  padding: 2rem 0 .5rem;
  text-align: center;
}
.glyph-section {
  position: relative;
  max-width: 760px;
  margin: 0 auto;
  padding-top: .25rem;
}
.home-intro h2 em { color: var(--accent-deep); }
.home-intro .intro-lede {
  font-size: 1.1rem;
  color: var(--text-muted);
  margin-top: 1rem;
  line-height: 1.7;
}
.home-intro-ctas {
  display: flex; justify-content: center; flex-wrap: wrap; gap: .75rem;
  margin-top: 1.25rem;
}

/* ============================================================================
   SPLIT LAYOUT (feature check-list + image)
   ============================================================================ */
.split-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2.25rem;
  align-items: center;
  padding: 2rem 0;
  position: relative;
}
.split-layout::before {
  content: '';
  position: absolute;
  top: 0; left: 50%;
  transform: translateX(-50%);
  width: 60px; height: 2px;
  background: var(--accent);
}
.split-layout--reverse .split-media { order: 2; }
.split-layout .split-media {
  position: relative;
  aspect-ratio: 4 / 5;
  overflow: hidden;
  border-radius: var(--radius-md);
  background: linear-gradient(135deg, var(--brand) 0%, var(--brand-mid) 100%);
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--border-gold);
}
.split-layout .split-media img {
  width: 100%; height: 100%;
  object-fit: cover;
}
.split-layout .split-media::after {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(180deg, transparent 60%, rgba(0,31,63,0.25));
  pointer-events: none;
}
.split-layout .split-copy h2 { margin-bottom: 1.25rem; }
.split-layout .split-copy p { color: var(--text-muted); max-width: 560px; }

@media (max-width: 860px) {
  .split-layout { grid-template-columns: 1fr; gap: 2rem; padding: 2.5rem 0; }
  .split-layout--reverse .split-media { order: 0; }
  .split-layout .split-media { max-width: 420px; margin: 0 auto; }
}

/* ============================================================================
   FEATURE CHECK-LIST (R10: block li, not grid)
   ============================================================================ */
.feature-check-list {
  list-style: none;
  padding: 0;
  margin: 1.5rem 0 0;
  background: linear-gradient(180deg, #fff 0%, #fefaf0 100%);
  border: 1px solid var(--border-gold);
  border-top: 2px solid var(--accent);
  border-radius: var(--radius-md);
  padding: 1.25rem 1.5rem;
}
.feature-check-list li {
  /* R10: block flow, with absolute checkmark in left gutter */
  display: block;
  position: relative;
  padding: .75rem 0 .75rem 2.3rem;
  border-bottom: 1px dashed var(--border);
  color: var(--text);
  font-size: .95rem;
  line-height: 1.55;
}
.feature-check-list li:last-child { border-bottom: 0; }
.feature-check-list li::before {
  content: '';
  position: absolute;
  left: 0; top: 1rem;
  width: 22px; height: 22px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--accent) 0%, var(--accent-warm) 100%);
  box-shadow: 0 2px 4px rgba(244,163,0,0.3);
}
.feature-check-list li::after {
  content: '';
  position: absolute;
  left: 6px; top: 1.3rem;
  width: 10px; height: 5px;
  border-left: 2px solid var(--brand-dark);
  border-bottom: 2px solid var(--brand-dark);
  transform: rotate(-45deg);
}
.feature-check-list li strong {
  color: var(--brand);
  font-weight: 700;
}

/* Plain variant — each li is its own bordered card */
.feature-check-list--plain {
  list-style: none; padding: 0; margin: 1.5rem 0 0;
  display: grid;
  gap: .75rem;
  background: transparent;
  border: 0;
}
.feature-check-list--plain li {
  background: #fff;
  border: 1px solid var(--border);
  border-left: 3px solid var(--accent);
  border-radius: var(--radius-sm);
  padding: 1rem 1.25rem 1rem 3rem;
  position: relative;
  display: block;
  box-shadow: var(--shadow-sm);
}
.feature-check-list--plain li::before {
  content: '';
  position: absolute;
  left: .8rem; top: 1rem;
  width: 22px; height: 22px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--accent) 0%, var(--accent-warm) 100%);
  box-shadow: 0 2px 4px rgba(244,163,0,0.3);
}
.feature-check-list--plain li::after {
  content: '';
  position: absolute;
  left: 1.18rem; top: 1.3rem;
  width: 10px; height: 5px;
  border-left: 2px solid var(--brand-dark);
  border-bottom: 2px solid var(--brand-dark);
  transform: rotate(-45deg);
}
.feature-check-list--plain li strong {
  display: inline;
  color: var(--brand);
  font-weight: 700;
}

/* ============================================================================
   FLOOR GRID (H2 with H3 children)
   ============================================================================ */
.content-section { padding: 1.5rem 0; }
.content-section.plain-card { padding: 1.25rem 0; }
.content-section > .container > h2 {
  text-align: center;
  margin-bottom: 1rem;
}
.content-section .section-lede {
  text-align: center;
  max-width: 720px; margin: 0 auto 1.25rem;
  color: var(--text-muted);
}

.floor-grid {
  display: grid;
  gap: 1rem;
  position: relative;
}
.floor-grid[data-items="1"] { grid-template-columns: 1fr; }
.floor-grid[data-items="2"] { grid-template-columns: repeat(2, 1fr); }
.floor-grid[data-items="3"] { grid-template-columns: repeat(3, 1fr); }
.floor-grid[data-items="4"] { grid-template-columns: repeat(4, 1fr); }
.floor-grid[data-items="5"],
.floor-grid[data-items="6"] { grid-template-columns: repeat(3, 1fr); }
.floor-grid[data-items="7"],
.floor-grid[data-items="8"],
.floor-grid[data-items="9"],
.floor-grid[data-items="10"],
.floor-grid[data-items="11"],
.floor-grid[data-items="12"] { grid-template-columns: repeat(4, 1fr); }

@media (max-width: 900px) {
  .floor-grid[data-items="3"],
  .floor-grid[data-items="4"],
  .floor-grid[data-items="5"],
  .floor-grid[data-items="6"],
  .floor-grid[data-items="7"],
  .floor-grid[data-items="8"],
  .floor-grid[data-items="9"],
  .floor-grid[data-items="10"],
  .floor-grid[data-items="11"],
  .floor-grid[data-items="12"] {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 560px) {
  .floor-grid { grid-template-columns: 1fr !important; }
}

/* ============================================================================
   PLAIN CARD (paragraph-only section)
   ============================================================================ */
.plain-card .card-body {
  background: #fff;
  border: 1px solid var(--border);
  border-top: 2px solid var(--accent);
  border-radius: var(--radius-md);
  padding: 1.5rem 1.75rem;
  box-shadow: var(--shadow-md);
  max-width: 860px;
  margin: 0 auto;
  text-align: center;
  position: relative;
}
.plain-card .card-body p {
  color: var(--text-muted);
  max-width: 720px;
  margin-left: auto; margin-right: auto;
  font-size: 1.02rem;
}
.plain-card .card-body h2 { margin-bottom: 1rem; }

/* ============================================================================
   IMAGE DIVIDER (R11: inside .container)
   ============================================================================ */
.image-divider {
  position: relative;
  margin: 1rem 0;
  aspect-ratio: 21/9;
  border-radius: var(--radius-md);
  overflow: hidden;
  border-top: 2px solid var(--accent);
  box-shadow: var(--shadow-md);
  background: linear-gradient(135deg, var(--brand) 0%, var(--brand-mid) 100%);
}
.image-divider img {
  width: 100%; height: 100%;
  object-fit: cover;
}
.image-divider::after {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(180deg, transparent 50%, rgba(0,31,63,0.45));
  pointer-events: none;
}

/* ============================================================================
   REVIEW HERO (inner page)
   ============================================================================ */
.review-hero {
  position: relative;
  padding: 3rem 0 1rem;
  background: linear-gradient(135deg, var(--bg-dark-2) 0%, var(--brand) 60%, var(--brand-mid) 100%);
  color: var(--text-inverse);
  overflow: hidden;
  isolation: isolate;
}
.review-hero::before {
  content: '';
  position: absolute; inset: 0;
  background:
    radial-gradient(60% 50% at 90% 10%, rgba(244,163,0,0.22), transparent 70%),
    radial-gradient(70% 60% at 10% 90%, rgba(0,123,255,0.18), transparent 70%);
  z-index: -1;
}
.review-hero::after {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 20px 20px, rgba(244,163,0,0.12) 1px, transparent 1.5px),
    radial-gradient(circle at 60px 60px, rgba(0,123,255,0.1) 1px, transparent 1.5px);
  background-size: 80px 80px, 80px 80px;
  background-position: 0 0, 40px 40px;
  opacity: .35;
  z-index: -1;
}
.breadcrumb {
  font-size: .82rem;
  color: rgba(255,255,255,0.6);
  margin-bottom: 1.25rem;
}
.breadcrumb a { color: rgba(255,255,255,0.8); }
.breadcrumb a:hover { color: var(--accent-warm); }
.breadcrumb .sep { margin: 0 .35rem; opacity: .6; }

.review-hero h1 {
  color: var(--text-inverse);
  display: flex; flex-wrap: wrap; align-items: center; gap: 1rem;
  font-size: clamp(2rem, 4vw, 3rem);
  margin-bottom: 1rem;
}
.rating-badge {
  display: inline-flex; align-items: center; gap: .35rem;
  background: linear-gradient(135deg, var(--accent) 0%, var(--accent-warm) 100%);
  color: var(--brand-dark);
  font-family: var(--font-body);
  font-weight: 700;
  font-size: .95rem;
  padding: .35rem .75rem;
  border-radius: var(--radius-pill);
  letter-spacing: 0;
  line-height: 1;
  box-shadow: 0 4px 12px rgba(244,163,0,0.35);
}
.rating-badge .star--full { color: var(--brand-dark); font-size: 1rem; }

.review-byline {
  display: flex; align-items: center; gap: .85rem;
  margin: 1rem 0 1.25rem;
  padding: .85rem 1rem;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.14);
  border-radius: var(--radius-md);
  backdrop-filter: blur(10px);
  max-width: 460px;
}
.byline-avatar {
  width: 48px; height: 48px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid var(--accent);
  box-shadow: 0 4px 10px rgba(0,0,0,0.2);
}
.byline-meta {
  flex: 1;
  line-height: 1.25;
}
.byline-name {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 1rem;
  display: flex; align-items: center; gap: .4rem;
}
.byline-check {
  width: 16px; height: 16px;
  display: inline-block;
  background: var(--accent);
  border-radius: 50%;
  position: relative;
}
.byline-check::after {
  content: '';
  position: absolute;
  left: 4px; top: 6px;
  width: 7px; height: 4px;
  border-left: 2px solid var(--brand-dark);
  border-bottom: 2px solid var(--brand-dark);
  transform: rotate(-45deg);
}
.byline-role {
  font-size: .82rem;
  color: rgba(255,255,255,0.72);
}

.review-hero-lede {
  max-width: 720px;
  color: rgba(255,255,255,0.85);
  font-size: 1.05rem;
  line-height: 1.6;
}

/* ---------- Cream CTA strip (R6: logos on cream plate) ---------- */
.review-cta-strip {
  margin-top: 2rem;
  background: linear-gradient(135deg, #faf1dc 0%, #fff6dc 100%);
  border: 1px solid var(--border-gold);
  border-top: 2px solid var(--accent);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-md);
  overflow: hidden;
}
.cta-strip-body {
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 1.5rem;
  align-items: center;
  padding: 1.25rem 1.5rem;
}
.cta-strip-logo {
  height: 64px;
  display: flex; align-items: center;
}
.cta-strip-logo img {
  max-height: 48px; max-width: 170px;
  object-fit: contain;
}
.cta-strip-body .cta-offer-kicker {
  font-size: .72rem;
  text-transform: uppercase;
  letter-spacing: .18em;
  color: var(--accent-deep);
  font-weight: 600;
  display: block;
  margin-bottom: .15rem;
}
.cta-strip-body .cta-offer-text {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 1.15rem;
  line-height: 1.3;
  color: var(--text);
}
.visitor-bar {
  padding: .65rem 1.5rem;
  background: rgba(0,51,102,0.06);
  border-top: 1px solid var(--border);
  font-size: .82rem;
  color: var(--text-muted);
  display: flex; align-items: center; gap: .65rem;
}
.visitor-dot {
  width: 8px; height: 8px;
  background: #22c55e;
  border-radius: 50%;
  box-shadow: 0 0 0 4px rgba(34,197,94,0.2);
  animation: pulse-green 2.4s ease infinite;
}
@keyframes pulse-green {
  0%,100% { box-shadow: 0 0 0 4px rgba(34,197,94,0.2); }
  50%     { box-shadow: 0 0 0 7px rgba(34,197,94,0); }
}

@media (max-width: 720px) {
  .cta-strip-body { grid-template-columns: 1fr; text-align: center; }
  .cta-strip-logo { justify-content: center; }
  .cta-strip-body .btn-play { width: 100%; }
}

/* ============================================================================
   EDITOR'S VERDICT
   ============================================================================ */
.verdict {
  padding: 1.5rem 0;
}
.verdict-card {
  background: #fff;
  border: 1px solid var(--border);
  border-top: 3px solid var(--accent);
  border-radius: var(--radius-md);
  padding: 1.5rem 1.75rem;
  box-shadow: var(--shadow-md);
  display: grid;
  grid-template-columns: 1.3fr 1fr;
  gap: 2.5rem;
  align-items: start;
}
.verdict-head {
  grid-column: 1 / -1;
  border-bottom: 1px solid var(--border-soft);
  padding-bottom: 1.25rem;
  margin-bottom: 0;
}
.verdict-head .section-eyebrow { margin-left: 0; padding-left: 0; padding-right: 1.5rem; }
.verdict-head .section-eyebrow::before { display: none; }
.verdict-head h2 { text-align: left; font-size: clamp(1.4rem, 2.5vw, 1.9rem); margin-bottom: 0; }
.verdict-head h2 em { color: var(--accent-deep); }

.rating-list { display: flex; flex-direction: column; gap: .6rem; }
.rating-row {
  display: grid;
  grid-template-columns: 1fr auto auto;
  align-items: center;
  gap: 1rem;
  padding: .75rem 0;
  border-bottom: 1px dashed var(--border);
  font-size: .95rem;
}
.rating-row:last-child { border-bottom: 0; }
.rating-row .row-label { color: var(--text); font-weight: 500; }
.rating-row .row-value {
  font-family: var(--font-display); font-weight: 700;
  color: var(--brand);
}
.rating-row--overall {
  padding: 1rem 1.25rem;
  margin-bottom: .5rem;
  background: linear-gradient(135deg, var(--bg-cream) 0%, #fff6dc 100%);
  border: 1px solid var(--border-gold);
  border-radius: var(--radius-sm);
}
.rating-row--overall .row-label {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.1rem;
}
.rating-row--overall .row-value {
  font-size: 1.35rem;
}
.rating-row--overall .stars--lg .star { font-size: 1.5rem; }

.verdict-note {
  background: var(--bg-elevated);
  border: 1px solid var(--border);
  border-left: 3px solid var(--accent);
  border-radius: var(--radius-sm);
  padding: 1.5rem 1.75rem;
  position: relative;
  font-family: var(--font-display);
  font-style: italic;
  font-size: 1.05rem;
  line-height: 1.6;
  color: var(--text);
}
.verdict-note::before {
  content: '\201C';
  position: absolute;
  top: -.5rem; left: 1rem;
  font-family: var(--font-display);
  font-size: 3.5rem;
  color: var(--accent);
  line-height: 1;
}
.verdict-note cite {
  display: block;
  margin-top: 1rem;
  font-style: normal;
  font-size: .82rem;
  color: var(--text-muted);
  font-family: var(--font-body);
}

@media (max-width: 860px) {
  .verdict-card { grid-template-columns: 1fr; gap: 1.5rem; }
}

/* ============================================================================
   ART-DECO SECURITY / TRUST CARD
   ============================================================================ */
.home-secure {
  padding: 2rem 0;
}
.trust-card {
  position: relative;
  background: linear-gradient(135deg, #fff 0%, var(--bg-elevated) 100%);
  border: 1px solid var(--border);
  border-top: 2px solid var(--accent);
  border-radius: var(--radius-md);
  padding: 1.5rem 1.75rem;
  box-shadow: var(--shadow-md);
  overflow: hidden;
}
.trust-card::before {
  /* diagonal gold sweep */
  content: '';
  position: absolute;
  top: -50%; left: -50%;
  width: 200%; height: 200%;
  background: linear-gradient(45deg, transparent 45%, rgba(244,163,0,0.08) 50%, transparent 55%);
  transition: transform .9s ease;
  pointer-events: none;
}
.trust-card:hover::before { transform: translateX(30%); }

/* Starry variant — uses gen-divider.jpg as background, inverts to light text */
.trust-card--starry {
  background-color: var(--brand-dark);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  border: 1px solid var(--border-gold);
  border-top: 2px solid var(--accent);
  padding: 2.25rem 2rem;
  color: var(--text-inverse);
  box-shadow: 0 20px 50px -20px rgba(0,31,63,0.5), inset 0 0 0 1px rgba(244,163,0,0.15);
}
.trust-card--starry::before {
  background: rgba(0,20,45,0.75);
  top: 0; left: 0;
  width: 100%; height: 100%;
  mix-blend-mode: normal;
}
.trust-card--starry:hover::before {
  transform: none; /* don't slide the overlay */
}
.trust-card--starry .section-eyebrow { color: var(--accent-warm); }
.trust-card--starry .section-eyebrow::before,
.trust-card--starry .section-eyebrow::after { background: var(--accent); }
.trust-card--starry h2 { color: #fff; }
.trust-card--starry h2 em { color: var(--accent-warm); }
.trust-card--starry .trust-lede {
  text-align: center;
  max-width: 720px;
  margin: 0 auto 1.5rem;
  color: #fff;
}
.trust-card--starry .trust-item p {
  color: #fff;
}
.trust-card--starry .trust-item strong {
  color: var(--accent-warm);
}
.trust-card--starry .trust-item svg {
  color: var(--accent-warm);
  filter: drop-shadow(0 4px 12px rgba(244,163,0,0.4));
}
.trust-card--starry .accred-corner { border-color: var(--accent-warm); }
.accred-corner {
  position: absolute;
  width: 32px; height: 32px;
  border-color: var(--accent);
  border-style: solid;
  border-width: 0;
  transition: all .35s ease;
}
.accred-corner--tl { top: 12px; left: 12px; border-top-width: 2px; border-left-width: 2px; }
.accred-corner--tr { top: 12px; right: 12px; border-top-width: 2px; border-right-width: 2px; }
.accred-corner--bl { bottom: 12px; left: 12px; border-bottom-width: 2px; border-left-width: 2px; }
.accred-corner--br { bottom: 12px; right: 12px; border-bottom-width: 2px; border-right-width: 2px; }
.trust-card:hover .accred-corner { width: 50px; height: 50px; }

.trust-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
  margin-top: 1rem;
  position: relative;
}
.trust-item {
  text-align: center;
  padding: .5rem .5rem;
}
.trust-item svg {
  width: 36px; height: 36px;
  color: var(--accent);
  margin-bottom: .5rem;
}
.trust-item h3 {
  font-size: .95rem;
  margin-bottom: .35rem;
  font-family: var(--font-display);
}
.trust-item p { font-size: .85rem; color: var(--text-muted); margin: 0; }

@media (max-width: 720px) {
  .trust-grid { grid-template-columns: repeat(2, 1fr); gap: 1rem; }
  .trust-card { padding: 2rem; }
}

/* ============================================================================
   HOME-LIVE (split-layout wrapper)
   ============================================================================ */
.home-live { padding: .5rem 0 1.5rem; }

/* ============================================================================
   HOME-REWARDS bento
   ============================================================================ */
.home-rewards { padding: 2rem 0; }
.rewards-bento {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  grid-auto-rows: minmax(160px, auto);
  gap: .75rem;
}
.rewards-tile {
  background: #fff;
  border: 1px solid var(--border);
  border-top: 2px solid var(--accent);
  border-radius: var(--radius-sm);
  padding: 1.25rem;
  position: relative;
  overflow: hidden;
  transition: transform .2s ease;
}
.rewards-tile:hover { transform: translateY(-2px); }
.rewards-tile .tile-kicker { margin-bottom: .5rem; }
.rewards-tile h3 { font-size: 1.2rem; margin-bottom: .5rem; }
.rewards-tile p { color: var(--text-muted); font-size: .92rem; }
.rewards-welcome  { grid-column: span 3; background: linear-gradient(135deg, #fff 0%, #fefaf0 100%); }
.rewards-cashback { grid-column: span 3; }
.rewards-free     { grid-column: span 6; }
.rewards-weekly   { grid-column: span 3; }
.rewards-loyalty  { grid-column: span 3; }
.rewards-vip {
  grid-column: span 6;
  background: linear-gradient(135deg, var(--brand) 0%, var(--brand-mid) 100%);
  color: var(--text-inverse);
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 1rem;
  align-items: center;
  padding: 1.25rem 1.5rem;
  border-top-color: var(--accent);
}
.rewards-vip h3, .rewards-vip p { color: var(--text-inverse); }
.rewards-vip .tile-kicker { color: var(--accent-warm); }
.rewards-vip p { color: rgba(255,255,255,0.82); }

@media (max-width: 1000px) {
  .rewards-bento { grid-template-columns: repeat(2, 1fr); }
  .rewards-welcome { grid-column: span 2; grid-row: span 1; }
  .rewards-cashback, .rewards-free, .rewards-weekly, .rewards-loyalty { grid-column: span 2; }
  .rewards-vip { grid-column: span 2; grid-template-columns: 1fr; text-align: center; }
}
@media (max-width: 560px) {
  .rewards-bento { grid-template-columns: 1fr; }
  .rewards-bento > * { grid-column: 1 / -1 !important; }
}

/* ============================================================================
   HOME-SUPPORT (centered editorial card)
   ============================================================================ */
.home-support { padding: 2rem 0 2.5rem; }
.support-card {
  position: relative;
  background: #fff;
  border: 1px solid var(--border);
  border-top: 3px solid var(--accent);
  border-radius: var(--radius-md);
  padding: 1.75rem 1.75rem;
  text-align: center;
  box-shadow: var(--shadow-md);
  max-width: 900px;
  margin: 0 auto;
  overflow: hidden;
}
.support-card::before {
  content: '24/7';
  position: absolute;
  right: -1rem; bottom: -2rem;
  font-family: var(--font-display);
  font-style: italic;
  font-weight: 700;
  font-size: 14rem;
  color: rgba(0,51,102,0.04);
  line-height: 1;
  pointer-events: none;
}
.support-card h2 { position: relative; }
.support-card p {
  color: var(--text-muted);
  max-width: 680px; margin: 1rem auto;
  position: relative;
}
.support-card .btn { margin-top: 1rem; position: relative; }

/* ============================================================================
   CONTENT SECTIONS — intro block, etc.
   ============================================================================ */
.intro-block {
  padding: .75rem 0 .25rem;
}
.intro-block .glyph-section {
  padding-top: 1.25rem;
  text-align: center;
}
.intro-block p {
  font-size: 1.05rem;
  color: var(--text-muted);
  line-height: 1.7;
}

/* ============================================================================
   FOOTER — editorial 2-pane lede + all-reviews pills grid
   ============================================================================ */
.site-footer {
  position: relative;
  background: linear-gradient(180deg, var(--brand-dark) 0%, var(--bg-ink) 100%);
  color: rgba(255,255,255,0.78);
  padding: 0 0 1rem;
  margin-top: 1.5rem;
  overflow: hidden;
}
/* Star + line signature band */
.footer-band {
  padding: 1rem 0;
  border-bottom: 1px solid rgba(255,255,255,0.08);
  display: flex; justify-content: center;
  overflow: hidden;
}
.footer-band-inner {
  display: flex; align-items: center; gap: 1.25rem;
  width: 100%;
  max-width: 1100px;
  padding: 0 1.5rem;
}
.footer-band-star {
  width: 22px; height: 22px;
  color: var(--accent);
  fill: currentColor;
  flex-shrink: 0;
  filter: drop-shadow(0 2px 6px rgba(244,163,0,0.35));
}
.footer-band-line {
  flex: 1;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(244,163,0,0.5), transparent);
}

/* LEDE: 2-column brand + responsible gaming */
.footer-lede {
  display: grid;
  grid-template-columns: 1.1fr 1.4fr;
  gap: 2rem;
  padding: 1.75rem 0 1.5rem;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
.footer-brand .site-logo img {
  height: 72px;
  width: auto;
  background: rgba(255,255,255,0.95);
  padding: .5rem .75rem;
  border-radius: var(--radius-sm);
  border: 1px solid var(--border-gold);
  box-shadow: 0 10px 24px -10px rgba(0,0,0,0.4);
}
.footer-tagline {
  font-size: 1rem;
  line-height: 1.55;
  color: rgba(255,255,255,0.75);
  margin: .85rem 0 1.25rem;
  max-width: 420px;
}
.footer-cta { min-width: 200px; }

.footer-responsible .section-eyebrow {
  color: var(--accent-warm);
  padding-left: 1.5rem;
  margin-left: 0;
}
.footer-responsible .section-eyebrow::before { display: none; }
.footer-responsible h4 {
  font-family: var(--font-display);
  font-size: clamp(1.35rem, 2vw, 1.7rem);
  color: var(--text-inverse);
  margin: .5rem 0 .75rem;
  line-height: 1.25;
  letter-spacing: -0.01em;
}
.footer-responsible p {
  font-size: .92rem;
  line-height: 1.55;
  color: rgba(255,255,255,0.68);
  margin-bottom: 1rem;
  max-width: 560px;
}
.footer-badges {
  list-style: none;
  padding: 0; margin: 0;
  display: flex; flex-wrap: wrap;
  gap: .5rem .75rem;
}
.footer-badges li {
  display: inline-flex; align-items: center; gap: .5rem;
  padding: .55rem .9rem;
  border: 1px solid rgba(244,163,0,0.25);
  background: rgba(244,163,0,0.06);
  border-radius: var(--radius-pill);
  font-size: .82rem;
  color: rgba(255,255,255,0.85);
  letter-spacing: 0.01em;
}
.footer-badge-ico svg {
  width: 18px; height: 18px;
  color: var(--accent-warm);
  display: block;
}

/* REVIEWS grid: pill cards with rank + logo + name + rating */
.footer-reviews {
  padding: 1.5rem 0 1.25rem;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
.footer-reviews-head {
  text-align: center;
  margin-bottom: 1rem;
}
.footer-reviews-head .section-eyebrow { color: var(--accent-warm); }
.footer-reviews-head h4 {
  font-family: var(--font-display);
  font-size: clamp(1.35rem, 2vw, 1.7rem);
  color: var(--text-inverse);
  margin: .25rem 0 0;
  font-weight: 600;
  letter-spacing: -0.01em;
}
.footer-reviews-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
  gap: .75rem;
}
.footer-review-pill {
  display: grid;
  grid-template-columns: 1.75rem 44px 1fr auto;
  align-items: center;
  gap: .75rem;
  padding: .65rem .9rem;
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: var(--radius-md);
  color: rgba(255,255,255,0.85);
  text-decoration: none;
  transition: background .2s ease, border-color .2s ease, transform .2s ease;
}
.footer-review-pill:hover {
  background: rgba(244,163,0,0.08);
  border-color: var(--border-gold);
  transform: translateY(-2px);
  color: var(--text-inverse);
}
.footer-review-rank {
  font-family: var(--font-display);
  font-weight: 700;
  color: var(--accent-warm);
  font-size: 1rem;
  line-height: 1;
  font-style: italic;
}
.footer-review-logo {
  background: linear-gradient(135deg, var(--bg-cream) 0%, #fff6dc 100%);
  border: 1px solid var(--border-gold);
  border-radius: var(--radius-sm);
  padding: .2rem;
  display: flex; align-items: center; justify-content: center;
  height: 34px;
}
.footer-review-logo img {
  max-height: 26px; max-width: 100%; object-fit: contain;
}
.footer-review-name {
  font-size: .9rem;
  font-weight: 600;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.footer-review-rating {
  display: inline-flex; align-items: center; gap: .2rem;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: .85rem;
  color: var(--accent-warm);
}
.footer-review-rating .star { font-size: .85rem; color: var(--accent); }

/* BOTTOM — single line: copyright / sep / note */
.footer-bottom {
  padding: 1rem 0 0;
  text-align: center;
  font-size: .85rem;
  color: rgba(255,255,255,0.6);
  font-family: var(--font-display);
  display: flex; justify-content: center; align-items: center; gap: .75rem;
  flex-wrap: wrap;
}
.footer-sep { color: var(--accent); font-size: 1.2rem; line-height: 1; }
.footer-note { font-style: italic; }

@media (max-width: 900px) {
  .footer-lede { grid-template-columns: 1fr; gap: 1.75rem; padding: 2rem 0 1.75rem; }
}

/* ============================================================================
   404
   ============================================================================ */
.not-found {
  padding: 8rem 0;
  text-align: center;
  min-height: 60vh;
  display: flex; align-items: center;
}
.not-found h1 {
  font-size: clamp(4rem, 10vw, 8rem);
  color: var(--accent);
  font-style: italic;
}
.not-found p { max-width: 500px; margin: 1rem auto 2rem; color: var(--text-muted); }

/* ============================================================================
   REVEAL-ON-SCROLL
   ============================================================================ */
.reveal {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity .6s ease, transform .6s ease;
}
.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

/* ============================================================================
   UTILITIES
   ============================================================================ */
.center { text-align: center; }
.mt-3  { margin-top: 3rem; }
.mb-3  { margin-bottom: 3rem; }
