/* =====================================================================
   777 Games — Casino brand site
   Palette: deep casino red + gold leaf on warm cream (light theme),
            dark warm panels for header/footer.
   Personality: playful, vibrant, editorial. Fraunces + Plus Jakarta Sans.

   SHARED CONTENT WIDTH (hard rule):
   Every bounded element shares the SAME left/right edges as the header
   logo+nav+CTA row. One container width (--container = 1200px) and one
   horizontal padding (--pad-x = 1.5rem). Cards, lists, grids, dividers,
   FAQ items, footer columns all FILL the container — no narrower
   max-width, no centered empty gutters, no overflow. Section heads keep
   an inner typographic max-width only for the kicker/h2/sub text itself.
   ===================================================================== */

:root {
  /* Colors */
  --brand:        #d11f27;
  --brand-dark:   #7c1015;
  --brand-light:  #ef4a52;
  --accent:       #f4b32c;   /* gold */
  --accent-warm:  #e8902a;   /* amber-orange */
  --accent-soft:  #f7d98a;   /* pale gold */

  --bg:           #fbf6ee;
  --bg-card:      #ffffff;
  --bg-elevated:  #fffdf9;
  --bg-panel:     #190f30;   /* deep aubergine — header / hero / footer */
  --bg-panel-2:   #110a22;

  /* neon brand secondaries (from the real casino banners) */
  --violet:       #7b2ff7;
  --violet-soft:  #a06bff;
  --neon-pink:    #e23aa0;

  --text:         #211a14;
  --text-muted:   #5f564d;
  --text-dim:     #8a8076;
  --text-on-dark: #fbf1e1;

  --border:       #ece2d3;
  --border-strong:#d9cab4;
  --border-soft:  #f2e9da;

  /* Typography */
  --font-body:    'Plus Jakarta Sans', system-ui, -apple-system, sans-serif;
  --font-heading: 'Fraunces', Georgia, 'Times New Roman', serif;

  /* Radius */
  --r-sm: 8px; --r-md: 14px; --r-lg: 20px; --r-xl: 28px; --r-pill: 999px;
  --card-radius: 18px;

  /* Shadows (warm, two-layer) */
  --shadow-soft:       0 1px 2px rgba(124,16,21,.05), 0 6px 18px rgba(124,16,21,.06);
  --shadow-card:       0 2px 6px rgba(124,16,21,.07), 0 18px 40px rgba(33,26,20,.08);
  --shadow-card-hover: 0 6px 16px rgba(124,16,21,.12), 0 28px 60px rgba(33,26,20,.14);
  --shadow-cta:        0 10px 26px rgba(209,31,39,.30);

  /* Layout */
  --container:      1200px;
  --container-wide: 1320px;
  --pad-x:          1.5rem;
  --header-top-h:   2.25rem;
  --header-main-h:  4.5rem;
  --header-h:       calc(var(--header-top-h) + var(--header-main-h));
}

/* ---------- reset ---------- */
*, *::before, *::after { box-sizing: border-box; }
* { margin: 0; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
@media (prefers-reduced-motion: reduce) { html { scroll-behavior: auto; } }

body {
  counter-reset: img-div;
  font-family: var(--font-body);
  font-size: 1rem;
  line-height: 1.65;
  color: var(--text);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}

/* layered atmosphere */
body::before {
  content: "";
  position: fixed; inset: 0;
  z-index: -1;
  background:
    radial-gradient(900px 600px at 8% -8%, rgba(244,179,44,.16), transparent 60%),
    radial-gradient(900px 700px at 105% 0%, rgba(209,31,39,.10), transparent 55%),
    radial-gradient(1000px 800px at 50% 120%, rgba(232,144,42,.08), transparent 60%);
}

img { max-width: 100%; display: block; }
a { color: var(--brand); text-decoration: none; }
a:hover { color: var(--brand-dark); }
ul, ol { padding-left: 1.2rem; }

h1, h2, h3, h4 {
  font-family: var(--font-heading);
  font-weight: 600;
  line-height: 1.12;
  letter-spacing: -0.01em;
  color: var(--text);
}
h1 { font-size: clamp(2.1rem, 5.2vw, 3.6rem); }
h2 { font-size: clamp(1.6rem, 3.4vw, 2.5rem); }
h3 { font-size: clamp(1.25rem, 2.2vw, 1.6rem); }
h4 { font-size: 1.05rem; }

::selection { background: var(--accent-soft); color: var(--brand-dark); }

/* =====================================================================
   THE shared container — single source of truth for page edges
   ===================================================================== */
.container {
  width: 100%;
  max-width: var(--container);
  margin-inline: auto;
  padding-inline: var(--pad-x);
}

/* Generic section rhythm — capped so the gap between two sections is ≤ 80px */
.section { padding-block: clamp(1.75rem, 3.5vw, 2.5rem); }

/* Section head — the ONLY place an inner typographic max-width is allowed */
.section-head { max-width: 760px; margin: 0 0 2.2rem; }
.section-head.is-centered { margin-inline: auto; text-align: center; }
.kicker {
  display: inline-block;
  font-family: var(--font-body);
  font-weight: 700;
  font-size: .74rem;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--brand);
  margin-bottom: .7rem;
}
.section-head p { color: var(--text-muted); margin-top: .7rem; font-size: 1.05rem; }
.highlight {
  font-style: italic;
  position: relative;
  white-space: nowrap;
}
.highlight::after {
  content: "";
  position: absolute; left: -2%; right: -2%; bottom: .06em; height: .42em;
  background: linear-gradient(90deg, rgba(244,179,44,.55), rgba(232,144,42,.35));
  z-index: -1; border-radius: 3px;
}

/* =====================================================================
   Buttons
   ===================================================================== */
.btn-primary, .btn-secondary, .btn-ghost {
  display: inline-flex; align-items: center; gap: .5rem;
  font-family: var(--font-body); font-weight: 700;
  font-size: .95rem; letter-spacing: .01em;
  padding: .85rem 1.5rem; border-radius: var(--r-pill);
  cursor: pointer; border: 1px solid transparent;
  transition: transform .18s ease, box-shadow .25s ease, background .25s ease, color .2s ease;
  white-space: nowrap;
}
.btn-primary {
  color: #fff;
  background: linear-gradient(135deg, var(--brand-light), var(--brand) 55%, var(--brand-dark));
  box-shadow: var(--shadow-cta);
}
.btn-primary:hover { color: #fff; transform: translateY(-2px); box-shadow: 0 16px 34px rgba(209,31,39,.42); }
.btn-secondary {
  color: var(--brand-dark);
  background: linear-gradient(135deg, var(--accent), var(--accent-warm));
  box-shadow: 0 10px 24px rgba(232,144,42,.28);
}
.btn-secondary:hover { color: var(--brand-dark); transform: translateY(-2px); box-shadow: 0 16px 32px rgba(232,144,42,.4); }
.btn-ghost {
  color: var(--text-on-dark);
  border-color: rgba(251,241,225,.28);
  background: rgba(251,241,225,.04);
}
.btn-ghost:hover { color: var(--text-on-dark); border-color: var(--accent); background: rgba(244,179,44,.12); }

/* =====================================================================
   Header — sticky 2-row, both rows dark (logo is colourful)
   ===================================================================== */
.site-header {
  position: sticky; top: 0; z-index: 100;
  background: linear-gradient(180deg, rgba(25,15,48,.96), rgba(17,10,34,.96));
  backdrop-filter: blur(12px); -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid transparent;
  border-image: linear-gradient(90deg, transparent, rgba(244,179,44,.55), rgba(226,58,160,.4), transparent) 1;
  transition: box-shadow .3s ease, background .3s ease;
}
.site-header.is-scrolled { box-shadow: 0 14px 40px rgba(0,0,0,.45); }

.header-top {
  background: rgba(0,0,0,.22);
  border-bottom: 1px solid rgba(251,241,225,.06);
  font-size: .78rem;
}
.header-top .container {
  height: var(--header-top-h);
  display: flex; align-items: center; justify-content: space-between; gap: 1rem;
}
.header-top .trust {
  display: inline-flex; align-items: center; gap: .55rem;
  color: rgba(251,241,225,.7); letter-spacing: .03em; font-weight: 500;
}
.trust-dot {
  width: 8px; height: 8px; border-radius: 50%;
  background: var(--accent);
  box-shadow: 0 0 0 0 rgba(244,179,44,.6);
  animation: pulseDot 2.2s infinite;
}
@keyframes pulseDot {
  0% { box-shadow: 0 0 0 0 rgba(244,179,44,.55); }
  70% { box-shadow: 0 0 0 7px rgba(244,179,44,0); }
  100% { box-shadow: 0 0 0 0 rgba(244,179,44,0); }
}
.header-top .util-links { display: flex; align-items: center; gap: 1.1rem; }
.header-top .util-links a { color: rgba(251,241,225,.64); font-weight: 600; transition: color .2s ease; }
.header-top .util-links a:hover { color: var(--accent-soft); }
.header-top .lang-pill {
  padding: .12rem .6rem; border-radius: var(--r-pill);
  border: 1px solid rgba(244,179,44,.4); color: var(--accent-soft) !important;
}
.header-top .lang-pill:hover { background: rgba(244,179,44,.14); }

.header-main { position: relative; }
.header-main .container {
  height: var(--header-main-h);
  display: flex; align-items: center; gap: 1.5rem;
  transition: height .3s ease;
}
.brand-logo { display: inline-flex; align-items: center; flex-shrink: 0; }
.brand-logo img {
  height: 44px; width: auto; object-fit: contain;
  filter: drop-shadow(0 4px 14px rgba(226,58,160,.45));
}
.site-header.is-scrolled .header-main .container { height: 3.9rem; }

.primary-nav { display: flex; align-items: center; gap: .15rem; margin-left: auto; position: relative; }
.primary-nav > a {
  position: relative; padding: .55rem .9rem; border-radius: var(--r-sm);
  color: rgba(251,241,225,.84); font-weight: 600; font-size: .94rem;
  transition: color .2s ease;
}
.primary-nav > a:hover, .primary-nav > a.active { color: #fff; }
.nav-indicator {
  position: absolute; bottom: 4px; left: 0; height: 3px; width: 0;
  background: linear-gradient(90deg, var(--accent), var(--neon-pink));
  border-radius: 3px; box-shadow: 0 0 12px rgba(244,179,44,.7);
  transition: transform .3s ease, width .3s ease; opacity: 0;
}
.header-cta { display: flex; align-items: center; margin-left: .5rem; }

/* glowing gold coin CTA */
.cta-coin {
  display: inline-flex; align-items: center; gap: .55rem;
  padding: .5rem .55rem .5rem .55rem; border-radius: var(--r-pill);
  background: linear-gradient(135deg, #fff3cf, var(--accent) 45%, var(--accent-warm));
  color: var(--brand-dark); font-weight: 800; font-size: .94rem;
  box-shadow: 0 8px 22px rgba(244,179,44,.45);
  transition: transform .18s ease, box-shadow .25s ease;
}
.cta-coin:hover { color: var(--brand-dark); transform: translateY(-2px); box-shadow: 0 12px 30px rgba(244,179,44,.6); }
.cta-coin .cta-chip {
  display: inline-flex; align-items: center; justify-content: center;
  width: 28px; height: 28px; border-radius: 50%;
  background: radial-gradient(circle at 35% 30%, #fff, var(--accent-warm));
  border: 1.5px dashed rgba(124,16,21,.45); font-size: .85rem; font-weight: 800;
}
.cta-coin .cta-text { padding-right: .5rem; }
.header-cta-mobile { display: none; }

/* burger */
.nav-toggle {
  display: none; margin-left: auto;
  width: 44px; height: 44px; border: none; background: transparent; cursor: pointer;
  position: relative; z-index: 130;
}
.nav-toggle span {
  position: absolute; left: 9px; right: 9px; height: 2px; border-radius: 2px;
  background: var(--accent-soft); transition: transform .3s ease, opacity .25s ease, top .3s ease;
}
.nav-toggle span:nth-child(1) { top: 15px; }
.nav-toggle span:nth-child(2) { top: 21px; }
.nav-toggle span:nth-child(3) { top: 27px; }
.nav-open .nav-toggle span:nth-child(1) { top: 21px; transform: rotate(45deg); }
.nav-open .nav-toggle span:nth-child(2) { opacity: 0; }
.nav-open .nav-toggle span:nth-child(3) { top: 21px; transform: rotate(-45deg); }

/* =====================================================================
   Hero — asymmetric editorial
   ===================================================================== */
/* Immersive dark hero with a real brand banner as the background image */
.hero {
  position: relative; isolation: isolate;
  background: var(--bg-panel);
  padding-block: clamp(3.5rem, 8vw, 6.5rem) clamp(4rem, 8vw, 6.5rem);
  overflow: hidden;
}
.hero-media {
  position: absolute; inset: 0; z-index: -2;
  background-image: var(--hero-img);
  background-size: cover;
  background-position: center right;
}
/* legibility scrim: opaque on the left where the text sits, clear on the right */
.hero-glow {
  position: absolute; inset: 0; z-index: -1;
  background:
    linear-gradient(90deg, var(--bg-panel) 8%, rgba(25,15,48,.86) 34%, rgba(25,15,48,.35) 60%, rgba(25,15,48,.12) 100%),
    linear-gradient(0deg, var(--bg-panel) 0%, rgba(25,15,48,0) 26%),
    radial-gradient(60% 80% at 12% 30%, rgba(123,47,247,.4), transparent 70%);
}
.hero-content { max-width: 600px; color: var(--text-on-dark); }
.hero-badge {
  display: inline-flex; align-items: center; gap: .5rem;
  padding: .4rem .9rem; border-radius: var(--r-pill);
  background: rgba(255,255,255,.06); border: 1px solid rgba(244,179,44,.4);
  color: var(--accent-soft); font-size: .76rem; font-weight: 700;
  letter-spacing: .12em; text-transform: uppercase;
}
.hero-badge .dot { width: 7px; height: 7px; border-radius: 50%; background: var(--neon-pink); box-shadow: 0 0 8px var(--neon-pink); }
.hero-content h1 {
  margin: 1rem 0 1.1rem; color: #fff;
  text-shadow: 0 2px 30px rgba(0,0,0,.45);
  font-size: clamp(2.3rem, 5.4vw, 3.9rem);
}
.hero-content .highlight { color: var(--accent); font-style: italic; }
.hero-content .highlight::after { background: linear-gradient(90deg, rgba(244,179,44,.45), rgba(226,58,160,.35)); }
.hero-content .lead { font-size: 1.15rem; color: rgba(251,241,225,.86); max-width: 36rem; }
.hero-actions { display: flex; flex-wrap: wrap; gap: .85rem; margin-top: 1.9rem; }
.hero-trust {
  list-style: none; padding: 0; margin: 1.7rem 0 0;
  display: flex; flex-wrap: wrap; gap: .65rem 1.4rem;
}
.hero-trust li { display: inline-flex; align-items: center; gap: .5rem; font-size: .9rem; font-weight: 600; color: rgba(251,241,225,.9); }
.hero-trust .ht-ico { font-size: 1.05rem; filter: drop-shadow(0 0 6px rgba(244,179,44,.5)); }
.hero-proof { display: flex; align-items: center; gap: .75rem; margin-top: 1.6rem; }
.hero-proof .stack { display: inline-flex; }
.hero-proof .chip {
  width: 30px; height: 30px; border-radius: 50%;
  border: 2px solid var(--bg-panel); margin-left: -10px;
  background: linear-gradient(135deg, var(--accent), var(--neon-pink));
}
.hero-proof .chip:first-child { margin-left: 0; }
.hero-proof .text { font-size: .92rem; color: rgba(251,241,225,.7); }
.hero-proof .text strong { color: #fff; }

/* =====================================================================
   Hero-bridge stat strip — normal flow, overlaps hero via negative margin
   ===================================================================== */
.hero-bridge { position: relative; z-index: 2; margin-top: -2.75rem; }
.hero-stats-strip {
  display: grid; grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: .9rem;
}
.hero-stats-strip .stat {
  position: relative; overflow: hidden;
  display: flex; flex-direction: column; align-items: center; text-align: center;
  background: linear-gradient(180deg, #fff, var(--bg-elevated));
  border: 1px solid var(--border); border-radius: var(--r-lg);
  padding: 1.5rem 1rem 1.3rem;
  box-shadow: var(--shadow-card);
  transition: transform .25s ease, box-shadow .3s ease, border-color .3s ease;
}
/* gold→neon top accent ties the four tokens together */
.hero-stats-strip .stat::before {
  content: ""; position: absolute; top: 0; left: 0; right: 0; height: 3px;
  background: linear-gradient(90deg, var(--accent), var(--neon-pink) 60%, var(--violet));
}
.hero-stats-strip .stat:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-card-hover), 0 0 0 1px rgba(244,179,44,.35);
  border-color: rgba(244,179,44,.55);
}
.hero-stats-strip .stat-ico {
  display: inline-flex; align-items: center; justify-content: center;
  width: 48px; height: 48px; border-radius: 50%; margin-bottom: .8rem; font-size: 1.3rem;
  background: radial-gradient(circle at 35% 28%, #fff6db, var(--accent) 72%);
  border: 2px solid #fff;
  box-shadow: 0 6px 16px rgba(244,179,44,.4), inset 0 0 0 1px rgba(232,144,42,.5);
}
.hero-stats-strip .num {
  font-family: var(--font-heading); font-weight: 600; font-size: clamp(1.7rem, 2.4vw, 2.1rem); line-height: 1;
  background: linear-gradient(135deg, var(--brand), var(--accent-warm));
  -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent;
}
.hero-stats-strip .lbl { display: block; margin-top: .5rem; font-size: .82rem; color: var(--text-muted); font-weight: 600; }

/* =====================================================================
   Universal card
   ===================================================================== */
.card, .plain-card, .support-card, .floor-grid--rich .floor-tile,
.bento-item, .security-item, .rewards-item, .split-card {
  position: relative;
  background:
    linear-gradient(180deg, #fff, var(--bg-elevated)) padding-box;
  border: 1px solid var(--border);
  border-radius: var(--card-radius);
  box-shadow: var(--shadow-card);
  overflow: hidden;
  transition: transform .28s ease, box-shadow .3s ease, border-color .3s ease;
}
/* animated neon-gold top line — hidden at rest, glides in on hover */
.card::before, .plain-card::before, .support-card::before,
.floor-grid--rich .floor-tile::before,
.bento-item::before, .security-item::before, .rewards-item::before, .split-card::before {
  content: ""; position: absolute; top: 0; left: 0; right: 0; height: 3px;
  background: linear-gradient(90deg, var(--accent), var(--neon-pink) 55%, var(--violet));
  transform: scaleX(0); transform-origin: left; opacity: 0;
  transition: transform .35s ease, opacity .25s ease;
}
/* soft corner sheen */
.card::after, .plain-card::after,
.bento-item::after, .security-item::after, .rewards-item::after, .split-card::after {
  content: ""; position: absolute; top: -40%; right: -30%;
  width: 60%; height: 80%; border-radius: 50%;
  background: radial-gradient(circle, rgba(244,179,44,.10), transparent 70%);
  pointer-events: none; opacity: 0; transition: opacity .35s ease;
}
.card:hover, .plain-card:hover, .floor-grid--rich .floor-tile:hover,
.bento-item:hover, .security-item:hover, .rewards-item:hover, .split-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-card-hover), 0 0 0 1px rgba(244,179,44,.35);
  border-color: rgba(244,179,44,.55);
}
.card:hover::before, .plain-card:hover::before, .floor-grid--rich .floor-tile:hover::before,
.bento-item:hover::before, .security-item:hover::before, .rewards-item:hover::before, .split-card:hover::before {
  transform: scaleX(1); opacity: 1;
}
.card:hover::after, .plain-card:hover::after,
.bento-item:hover::after, .security-item:hover::after, .rewards-item:hover::after, .split-card:hover::after {
  opacity: 1;
}

/* =====================================================================
   Builder section layouts — ALL span full container width
   ===================================================================== */

/* intro-block (leftover lede paragraphs) */
.intro-block {
  width: 100%;
  background: linear-gradient(135deg, #fff, var(--bg-elevated));
  border: 1px solid var(--border); border-left: 4px solid var(--accent);
  border-radius: var(--card-radius); padding: clamp(1.5rem, 3vw, 2.4rem);
  box-shadow: var(--shadow-soft);
}
.intro-block p { color: var(--text-muted); font-size: 1.08rem; }
.intro-block p + p { margin-top: 1rem; }

/* plain-card — editorial; fills width, NOT a narrow reading column */
.plain-card {
  width: 100%;
  padding: clamp(1.6rem, 3.4vw, 2.6rem);
}
.plain-card > * + * { margin-top: 1rem; }
.plain-card p { color: var(--text-muted); }
.plain-card h3 { color: var(--text); margin-top: 1.4rem; }

/* floor-grid (H3 subsections, no nested) — columns by item count */
.floor-grid { width: 100%; display: grid; gap: 1.25rem; }
.floor-grid--cols-1 { grid-template-columns: 1fr; }
.floor-grid--cols-2 { grid-template-columns: repeat(2, minmax(0,1fr)); }
.floor-grid--cols-3 { grid-template-columns: repeat(3, minmax(0,1fr)); }
.floor-grid--cols-4 { grid-template-columns: repeat(4, minmax(0,1fr)); }
.floor-tile {
  position: relative; overflow: hidden;
  background: linear-gradient(180deg, #fff, var(--bg-elevated)); border: 1px solid var(--border);
  border-radius: var(--card-radius); padding: 1.7rem; box-shadow: var(--shadow-soft);
  transition: transform .28s ease, box-shadow .3s ease, border-color .3s ease;
}
.floor-tile::before { content: ""; position: absolute; top: 0; left: 0; right: 0; height: 3px;
  background: linear-gradient(90deg, var(--accent), var(--neon-pink) 55%, var(--violet));
  transform: scaleX(0); transform-origin: left; opacity: 0;
  transition: transform .35s ease, opacity .25s ease; }
.floor-tile:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-card-hover), 0 0 0 1px rgba(244,179,44,.35);
  border-color: rgba(244,179,44,.55);
}
.floor-tile:hover::before { transform: scaleX(1); opacity: 1; }
.floor-tile h3 { margin-bottom: .6rem; }
.floor-tile p { color: var(--text-muted); }
.floor-tile p + p { margin-top: .7rem; }

/* floor-grid--rich — single column, sub-cards + bold dividers (R4b) */
.floor-grid--rich { width: 100%; display: grid; grid-template-columns: 1fr; gap: 1.5rem; }
.floor-grid--rich .floor-tile { padding: clamp(1.7rem, 3vw, 2.4rem); }
.floor-grid--rich .floor-tile h4 {
  margin-top: 1.6rem; padding-top: 1rem;
  border-top: 2px solid var(--brand);
  text-transform: uppercase; letter-spacing: .18em; font-size: .82rem;
  font-family: var(--font-body); font-weight: 800; color: var(--brand-dark);
}
.floor-grid--rich .floor-tile h4:first-of-type { margin-top: 1.1rem; }
.floor-grid--rich ul, .floor-grid--rich ol { list-style: none; padding-left: 0; margin-top: 1rem; display: grid; gap: .7rem; }
.floor-grid--rich li {
  position: relative; background: var(--bg);
  border: 1px solid var(--border); border-radius: var(--r-md);
  padding: 1rem 1.15rem 1rem 1.45rem; overflow: hidden; color: var(--text-muted);
}
.floor-grid--rich li::before {
  content: ""; position: absolute; left: 0; top: 0; bottom: 0; width: 3px;
  background: linear-gradient(180deg, var(--accent), var(--brand-light));
}
.floor-grid--rich li strong { color: var(--text); }
.floor-grid--rich .floor-tile > p { color: var(--text-muted); }
.floor-grid--rich .floor-tile > p + p { margin-top: .8rem; }

/* split-layout — list + atmospheric image */
.split-layout { width: 100%; display: grid; grid-template-columns: 1.05fr .95fr; gap: 2rem; align-items: center; }
.split-layout.is-reversed .split-media { order: 2; }
.split-body > * + * { margin-top: 1rem; }
.split-body p { color: var(--text-muted); }
.split-media {
  position: relative; border-radius: var(--r-xl); overflow: hidden;
  border: 1px solid var(--border); box-shadow: var(--shadow-card); aspect-ratio: 4/3;
}
.split-media img { width: 100%; height: 100%; object-fit: cover; }

/* feature-check-list — gold ticks, golden panel, gold left border */
.feature-check-list {
  width: 100%; list-style: none; padding: clamp(1.4rem, 3vw, 2.2rem); margin: 0;
  display: grid; gap: .9rem;
  background: linear-gradient(135deg, rgba(244,179,44,.10), rgba(232,144,42,.05));
  border: 1px solid var(--border); border-left: 4px solid var(--accent);
  border-radius: var(--card-radius); box-shadow: var(--shadow-soft);
}
.feature-check-list li { position: relative; padding-left: 2.2rem; color: var(--text); }
.feature-check-list li strong { color: var(--text); }
.feature-check-list li::before {
  content: "✓"; position: absolute; left: 0; top: .05em;
  width: 1.5rem; height: 1.5rem; border-radius: 50%;
  background: linear-gradient(135deg, var(--accent), var(--accent-warm));
  color: var(--brand-dark); font-weight: 800; font-size: .8rem;
  display: flex; align-items: center; justify-content: center;
}
.feature-check-list--plain { background: linear-gradient(135deg, rgba(244,179,44,.08), rgba(232,144,42,.04)); }

/* =====================================================================
   Image divider — contained 2-col figure (R5b), NOT full-bleed banner
   But still spans the shared container width.
   ===================================================================== */
.image-divider {
  counter-increment: img-div;
  width: 100%;
  display: grid; grid-template-columns: 1.5fr 1fr; gap: 1.75rem; align-items: center;
}
.image-divider .img-card {
  border-radius: var(--r-xl); overflow: hidden; aspect-ratio: 4/3;
  border: 1px solid var(--border); box-shadow: var(--shadow-card);
}
.image-divider .img-card img { width: 100%; height: 100%; object-fit: cover; }
.image-divider .img-aside { padding: .5rem 0; }
.image-divider .img-aside::before {
  content: counter(img-div, decimal-leading-zero);
  display: block; font-family: var(--font-heading); font-weight: 600;
  font-size: 3.2rem; line-height: 1; color: rgba(209,31,39,.18);
}
.image-divider .img-kicker {
  display: block; margin: .6rem 0 .4rem;
  font-size: .72rem; letter-spacing: .2em; text-transform: uppercase; font-weight: 700; color: var(--brand);
}
.image-divider .img-aside h3 { font-size: 1.3rem; }

/* =====================================================================
   FAQ accordion — full container width
   ===================================================================== */
.faq-section { padding-block: clamp(1.75rem, 3.5vw, 2.5rem); }
.faq-list { width: 100%; display: grid; gap: .8rem; }
.faq-item {
  background: var(--bg-card); border: 1px solid var(--border);
  border-radius: var(--r-md); overflow: hidden; transition: box-shadow .25s ease, transform .2s ease;
}
.faq-item[open] { box-shadow: var(--shadow-card); transform: translateY(-1px); }
.faq-item summary {
  list-style: none; cursor: pointer; display: flex; align-items: center; justify-content: space-between;
  gap: 1rem; padding: 1.15rem 1.4rem; font-family: var(--font-heading); font-weight: 600; font-size: 1.1rem;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-q { color: var(--text); }
.faq-icon { position: relative; flex-shrink: 0; width: 24px; height: 24px; }
.faq-icon::before, .faq-icon::after {
  content: ""; position: absolute; background: var(--brand);
  transition: transform .3s ease; border-radius: 2px;
}
.faq-icon::before { top: 11px; left: 4px; right: 4px; height: 2px; }
.faq-icon::after  { left: 11px; top: 4px; bottom: 4px; width: 2px; }
.faq-item[open] .faq-icon::after { transform: rotate(90deg); opacity: 0; }
.faq-item[open] .faq-icon::before { background: var(--accent-warm); }
.faq-answer { padding: 0 1.4rem 1.3rem; }
.faq-answer p { color: var(--text-muted); }
.faq-answer p + p { margin-top: .7rem; }

/* =====================================================================
   Page hero (inner pages + about)
   ===================================================================== */
.page-hero { padding-block: clamp(2.6rem, 5vw, 4rem) clamp(1.6rem, 3vw, 2.4rem); }
.breadcrumb { font-size: .82rem; color: var(--text-dim); margin-bottom: 1rem; }
.breadcrumb a { color: var(--text-muted); font-weight: 600; }
.breadcrumb span { margin: 0 .4rem; }
.page-hero h1 { margin-bottom: .9rem; }
.page-hero .page-sub { font-size: 1.15rem; color: var(--text-muted); max-width: 46rem; }
.page-meta { margin-top: 1rem; font-size: .85rem; color: var(--text-dim); }
.page-meta-author { font-weight: 700; color: var(--text-muted); }

/* immersive media variant — generated banner behind a dark scrim */
.page-hero--media {
  position: relative; isolation: isolate; overflow: hidden;
  background: var(--bg-panel);
  padding-block: clamp(3rem, 6vw, 5rem) clamp(2.25rem, 4vw, 3rem);
}
.page-hero--media .hero-media { background-position: center; }
.page-hero--media .hero-glow {
  background:
    linear-gradient(180deg, rgba(25,15,48,.74), rgba(17,10,34,.86)),
    radial-gradient(75% 130% at 15% 10%, rgba(123,47,247,.4), transparent 70%);
}
.page-hero--media .breadcrumb { color: rgba(251,241,225,.6); }
.page-hero--media .breadcrumb a { color: rgba(251,241,225,.82); }
.page-hero--media .breadcrumb a:hover { color: var(--accent-soft); }
.page-hero--media h1 { color: #fff; text-shadow: 0 2px 26px rgba(0,0,0,.5); }
.page-hero--media .page-sub { color: rgba(251,241,225,.86); }
.page-hero--media .page-meta { color: rgba(251,241,225,.6); }
.page-hero--media .page-meta-author { color: var(--accent-soft); }

/* =====================================================================
   Homepage bespoke sections
   ===================================================================== */
.bento-floor { width: 100%; display: grid; grid-template-columns: repeat(3, minmax(0,1fr)); gap: 1.25rem; }
.bento-item { padding: 1.7rem; }
.bento-item h3 { margin-bottom: .5rem; }
.bento-item p { color: var(--text-muted); }
.bento-item ul { color: var(--text-muted); margin-top: .6rem; }

.security-grid { width: 100%; display: grid; grid-template-columns: repeat(4, minmax(0,1fr)); gap: 1.1rem; }
.security-item { padding: 1.6rem 1.3rem; text-align: center; }
.security-item .deco-ring {
  width: 56px; height: 56px; margin: 0 auto 1rem; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  background: linear-gradient(135deg, rgba(244,179,44,.18), rgba(209,31,39,.12));
  border: 2px solid var(--accent); color: var(--brand); font-size: 1.4rem;
}
.security-item h3 { font-size: 1.1rem; margin-bottom: .4rem; }
.security-item p { color: var(--text-muted); font-size: .92rem; }

.rewards-bento { width: 100%; display: grid; grid-template-columns: repeat(3, minmax(0,1fr)); gap: 1.25rem; }
.rewards-item { padding: 1.7rem; }
.rewards-item h3 { margin-bottom: .5rem; }
.rewards-item p { color: var(--text-muted); }
.rewards-item--welcome {
  grid-column: span 1; grid-row: span 1;
  background: linear-gradient(150deg, #fff, #fff3e0);
}
.rewards-item--vip {
  grid-column: 1 / -1;
  display: flex; flex-wrap: wrap; align-items: center; justify-content: space-between; gap: 1rem;
  background: linear-gradient(120deg, var(--bg-panel), var(--bg-panel-2));
  color: var(--text-on-dark);
}
.rewards-item--vip::before { background: linear-gradient(90deg, var(--accent), var(--accent-warm)); }
.rewards-item--vip h3 { color: #fff; }
.rewards-item--vip p { color: rgba(251,241,225,.78); }

.support-card {
  width: 100%; padding: clamp(2rem, 5vw, 3.2rem); text-align: center;
  background: linear-gradient(135deg, #fff, var(--bg-elevated));
}
.support-card[data-watermark]::after {
  content: attr(data-watermark);
  position: absolute; left: 50%; bottom: -1.5rem; transform: translateX(-50%);
  font-family: var(--font-heading); font-style: italic; font-weight: 600;
  font-size: 9rem; line-height: 1; color: rgba(123,47,247,.07);
  pointer-events: none; z-index: 0;
}
.support-card h2 { position: relative; z-index: 1; }
.support-card p { position: relative; z-index: 1; color: var(--text-muted); max-width: 44rem; margin-inline: auto; margin-top: 1rem; }
.support-card .hero-actions { justify-content: center; }

/* =====================================================================
   Footer — editorial, overlapping CTA card
   ===================================================================== */
.site-footer { position: relative; margin-top: clamp(1.75rem, 3.5vw, 2.5rem); color: var(--text-on-dark); }

/* overlapping neon-gold CTA panel */
.footer-cta {
  position: relative; z-index: 2;
  background: linear-gradient(120deg, #ffe6a8, var(--accent) 42%, var(--accent-warm));
  border-radius: var(--r-xl); padding: clamp(2rem, 5vw, 3.2rem);
  box-shadow: 0 24px 60px rgba(232,144,42,.4), inset 0 0 0 1px rgba(255,255,255,.35);
  display: flex; flex-wrap: wrap; align-items: center; justify-content: space-between; gap: 1.5rem;
  overflow: hidden; transform: translateY(50%);
}
.footer-cta::before {
  content: ""; position: absolute; inset: 0; z-index: 0; pointer-events: none;
  background: radial-gradient(40% 120% at 88% 0%, rgba(226,58,160,.35), transparent 70%);
}
.footer-cta::after {
  content: "777"; position: absolute; right: 1.5rem; bottom: -3.5rem; z-index: 0;
  font-family: var(--font-heading); font-style: italic; font-weight: 600; font-size: 12rem;
  color: rgba(124,16,21,.12); pointer-events: none;
}
.footer-cta-copy { position: relative; z-index: 1; }
.footer-cta-kicker {
  display: inline-block; font-size: .72rem; font-weight: 800; letter-spacing: .2em;
  text-transform: uppercase; color: var(--brand-dark); opacity: .8; margin-bottom: .4rem;
}
.footer-cta h2 { color: var(--brand-dark); max-width: 32rem; }
.footer-cta .footer-cta-actions { position: relative; z-index: 1; display: flex; gap: .8rem; flex-wrap: wrap; }
.footer-cta .btn-primary { background: linear-gradient(135deg, var(--brand-dark), #2a0a0d); box-shadow: 0 10px 24px rgba(0,0,0,.3); }
.footer-cta .btn-ghost { color: var(--brand-dark); border-color: rgba(124,16,21,.4); }
.footer-cta .btn-ghost:hover { color: var(--brand-dark); background: rgba(124,16,21,.08); border-color: var(--brand-dark); }

/* aubergine link map with soft gold glow */
.footer-body {
  position: relative; overflow: hidden;
  background: var(--bg-panel);
  padding-top: calc(clamp(2rem, 5vw, 3.2rem) + 6rem); padding-bottom: 2.2rem;
}
.footer-body::before {
  content: ""; position: absolute; top: -10%; left: 50%; transform: translateX(-50%);
  width: 80%; height: 320px; pointer-events: none;
  background: radial-gradient(60% 100% at 50% 0%, rgba(123,47,247,.28), transparent 70%);
}
.footer-grid { position: relative; display: grid; grid-template-columns: 1.5fr repeat(3, 1fr); gap: 2rem; }
.footer-brand img { height: 48px; width: auto; object-fit: contain; filter: drop-shadow(0 4px 16px rgba(226,58,160,.4)); }
.footer-brand p { margin-top: 1.1rem; color: rgba(251,241,225,.64); font-size: .92rem; max-width: 30rem; }
.payment-pills { display: flex; flex-wrap: wrap; gap: .5rem; margin-top: 1.2rem; }
.payment-pills span {
  font-size: .72rem; font-weight: 700; letter-spacing: .04em;
  padding: .38rem .72rem; border-radius: var(--r-pill);
  background: rgba(255,255,255,.05); border: 1px solid rgba(251,241,225,.14); color: var(--accent-soft);
}
.footer-col h4 {
  font-family: var(--font-heading); font-style: italic; font-size: 1.1rem; color: #fff;
  margin-bottom: 1.1rem; padding-bottom: .55rem; position: relative;
}
.footer-col h4::after { content: ""; position: absolute; left: 0; bottom: 0; width: 32px; height: 2px;
  background: linear-gradient(90deg, var(--accent), var(--neon-pink)); border-radius: 2px; }
.footer-col ul { list-style: none; padding: 0; display: grid; gap: .65rem; }
.footer-col a {
  position: relative; color: rgba(251,241,225,.7); font-size: .92rem;
  transition: color .2s ease, padding-left .2s ease;
}
.footer-col a:hover { color: var(--accent-soft); padding-left: .35rem; }

.footer-trust {
  position: relative;
  display: flex; flex-wrap: wrap; gap: 1rem 1.5rem; align-items: center; justify-content: center;
  margin-top: 2.6rem; padding-top: 1.8rem; border-top: 1px solid rgba(251,241,225,.1);
}
.footer-trust span { display: inline-flex; align-items: center; gap: .45rem; font-size: .82rem; color: rgba(251,241,225,.66); font-weight: 600; }
.footer-trust span::before { content: ""; width: 7px; height: 7px; border-radius: 50%; background: var(--accent); box-shadow: 0 0 6px rgba(244,179,44,.6); }

.footer-bottom {
  position: relative;
  display: flex; flex-wrap: wrap; gap: .5rem; justify-content: space-between; align-items: center;
  margin-top: 1.6rem; padding-top: 1.2rem; border-top: 1px solid rgba(251,241,225,.08);
  font-size: .8rem; color: rgba(251,241,225,.5);
}
.footer-bottom em { font-style: italic; }

/* =====================================================================
   404
   ===================================================================== */
.err-404 { text-align: center; padding-block: clamp(3rem, 9vw, 7rem); }
.err-404 .glyph {
  font-family: var(--font-heading); font-style: italic; font-weight: 600;
  font-size: clamp(8rem, 22vw, 16rem); line-height: .9;
  background: linear-gradient(135deg, var(--brand), var(--accent-warm));
  -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent;
}
.err-404 p { color: var(--text-muted); margin: 1rem auto 1.8rem; max-width: 34rem; }

/* =====================================================================
   Reveal on scroll
   ===================================================================== */
.reveal { opacity: 0; transform: translateY(24px); transition: opacity .6s ease, transform .6s ease; }
.reveal.is-visible { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; transition: none; }
}

/* =====================================================================
   Responsive
   ===================================================================== */
@media (max-width: 1100px) {
  .footer-grid { grid-template-columns: 1fr 1fr 1fr; }
  .footer-brand { grid-column: 1 / -1; }
}
@media (max-width: 900px) {
  .header-top .util-links { display: none; }
  .primary-nav, .header-cta { display: none; }
  .nav-toggle { display: block; }

  /* full-screen overlay nav */
  .primary-nav.is-open {
    display: flex; flex-direction: column; align-items: flex-start; gap: .4rem;
    position: fixed; inset: 0; z-index: 120; margin: 0;
    padding: calc(var(--header-h) + 1.5rem) var(--pad-x) 2rem;
    background: linear-gradient(180deg, rgba(25,15,48,.98), rgba(17,10,34,.98));
    backdrop-filter: blur(16px);
  }
  .primary-nav.is-open > a { font-size: 1.4rem; padding: .6rem 0; color: #fff; }
  .primary-nav.is-open .header-cta-mobile { display: block; margin-top: 1.2rem; }
  .header-cta-mobile .btn-primary { font-size: 1.05rem; }
  .nav-indicator { display: none; }

  .hero-content { max-width: 100%; }
  .hero-media { background-position: center 20%; opacity: .5; }
  .hero-glow { background:
    linear-gradient(90deg, var(--bg-panel) 0%, rgba(25,15,48,.78) 55%, rgba(25,15,48,.55) 100%),
    linear-gradient(0deg, var(--bg-panel) 4%, rgba(25,15,48,0) 40%); }
  .hero-stats-strip { grid-template-columns: repeat(2, minmax(0,1fr)); }

  .floor-grid--cols-3, .floor-grid--cols-4 { grid-template-columns: repeat(2, minmax(0,1fr)); }
  .bento-floor, .rewards-bento { grid-template-columns: repeat(2, minmax(0,1fr)); }
  .security-grid { grid-template-columns: repeat(2, minmax(0,1fr)); }
  .split-layout { grid-template-columns: 1fr; }
  .split-layout.is-reversed .split-media { order: 0; }
  .image-divider { grid-template-columns: 1fr; }
  .footer-cta { transform: translateY(40%); text-align: center; justify-content: center; }
}
@media (max-width: 700px) {
  .footer-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 560px) {
  .floor-grid--cols-2, .floor-grid--cols-3, .floor-grid--cols-4 { grid-template-columns: 1fr; }
  .bento-floor, .rewards-bento, .security-grid { grid-template-columns: 1fr; }
  .hero-stats-strip { grid-template-columns: 1fr 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .rewards-item--vip { flex-direction: column; align-items: flex-start; text-align: left; }
}
@media (max-width: 480px) {
  h1 { font-size: 2rem; }
}
