/* =====================================================================
   Diwa Win — "Electric Midnight" vibrant casino theme
   Dominant: electric violet→magenta  ·  Warm gold + teal pops
   Fonts: Bricolage Grotesque (display) + Plus Jakarta Sans (body)
   Width discipline: ONE shared content width (var(--container)) everywhere.
   ===================================================================== */

:root {
  /* Colours — "brand" = electric violet, "accent" = magenta */
  --brand:        #7C5CFF;   /* electric violet */
  --brand-dark:   #5B3FE0;   /* deep violet */
  --brand-light:  #B4A0FF;   /* light violet */
  --accent:       #FF3D81;   /* magenta / pink */
  --accent-warm:  #FFB13D;   /* warm gold-amber (India warmth) */
  --accent-soft:  #FFE3EE;   /* soft pink-cream */
  --pop:          #25E0B0;   /* teal/mint pop */
  --gold:         #F5B83D;   /* gold accent */
  --india-green:  #25E0B0;   /* tricolor accent (mapped to pop) */

  --bg:           #0A1322;   /* deep midnight teal-navy (page) */
  --bg-card:      #121E33;   /* card surface */
  --bg-elevated:  #18294224; /* glassy elevated (low-opacity) */
  --bg-panel:     #0B1424;   /* header / footer */

  --text:         #EAF1FB;
  --text-muted:   #A7B6CF;
  --text-dim:     #6C7C97;
  --text-on-dark: #FFFFFF;

  --border:        rgba(124,92,255,0.22);
  --border-strong: rgba(255,61,129,0.45);
  --border-soft:   rgba(255,255,255,0.08);

  /* Typography */
  --font-body:    'Plus Jakarta Sans', system-ui, -apple-system, sans-serif;
  --font-heading: 'Bricolage Grotesque', 'Plus Jakarta Sans', system-ui, sans-serif;

  /* Radius */
  --r-sm: 10px; --r-md: 16px; --r-lg: 22px; --r-xl: 30px; --r-pill: 999px;
  --card-radius: 22px;

  /* Shadows / glows */
  --shadow-soft:        0 2px 12px rgba(0,0,0,0.4);
  --shadow-card:        0 24px 50px -26px rgba(0,0,0,0.7), 0 0 0 1px var(--border-soft) inset;
  --shadow-card-hover:  0 30px 64px -24px rgba(124,92,255,0.4), 0 0 0 1px var(--border-strong) inset;
  --shadow-cta:         0 16px 36px -12px rgba(255,61,129,0.55);
  --glow-violet:        0 0 40px -8px rgba(124,92,255,0.55);

  /* Layout */
  --container:      1200px;
  --container-wide: 1320px;
  --header-top-h:   2.25rem;
  --header-main-h:  4.7rem;
  --header-h:       calc(var(--header-top-h) + var(--header-main-h));

  /* Gradients — reused site-wide (recolour everything) */
  --gold-grad:   linear-gradient(120deg, #FFD27A 0%, #F5B83D 50%, #FF9F1C 100%);
  --fire-grad:   linear-gradient(120deg, var(--brand) 0%, var(--accent) 100%);
  --pop-grad:    linear-gradient(120deg, var(--pop) 0%, var(--brand) 100%);
  --tricolor:    linear-gradient(90deg, var(--accent-warm) 0%, #fff7ec 50%, var(--pop) 100%);
}

/* ---------- Reset / base ---------- */
*,*::before,*::after { box-sizing: border-box; }
* { margin: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  font-family: var(--font-body);
  color: var(--text);
  background: var(--bg);
  line-height: 1.65;
  font-size: 1rem;
  letter-spacing: 0.005em;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
/* Atmospheric layered gradients — electric violet / magenta / teal */
body::before {
  content: ""; position: fixed; inset: 0; z-index: -2; pointer-events: none;
  background:
    radial-gradient(1100px 720px at 86% -10%, rgba(255,61,129,0.22), transparent 60%),
    radial-gradient(950px 650px at -8% 4%, rgba(124,92,255,0.22), transparent 58%),
    radial-gradient(1000px 820px at 50% 120%, rgba(37,224,176,0.12), transparent 60%),
    var(--bg);
}
/* soft dotted texture */
body::after {
  content: ""; position: fixed; inset: 0; z-index: -1; pointer-events: none; opacity: .5;
  background-image: radial-gradient(rgba(255,255,255,0.035) 1px, transparent 1px);
  background-size: 26px 26px;
}

img { max-width: 100%; display: block; height: auto; }
a { color: var(--brand-light); text-decoration: none; transition: color .2s ease; }
a:hover { color: var(--accent); }
button { font: inherit; cursor: pointer; }
::selection { background: rgba(124,92,255,0.45); color: #fff; }
:focus-visible { outline: 2px solid var(--accent); outline-offset: 3px; border-radius: 4px; }

h1,h2,h3,h4 { font-family: var(--font-heading); font-weight: 700; line-height: 1.08; color: var(--text-on-dark); letter-spacing: -0.02em; }
h1 { font-size: clamp(2.4rem, 5.4vw, 4.2rem); }
h2 { font-size: clamp(1.7rem, 3.2vw, 2.6rem); }
h3 { font-size: clamp(1.2rem, 2vw, 1.55rem); }
h4 { font-size: 1.05rem; }
p { color: var(--text-muted); }
strong { color: var(--text); font-weight: 700; }

/* ---------- Shared container = the ONE content width ---------- */
.container {
  width: 100%;
  max-width: var(--container);
  margin-inline: auto;
  padding-inline: 1.5rem;
}

/* ---------- Buttons + 3 CTA colour variants ---------- */
.btn-primary,.btn-secondary,.btn-ghost {
  display: inline-flex; align-items: center; justify-content: center; gap: .5rem;
  font-family: var(--font-body); font-weight: 700; font-size: .98rem;
  padding: .82rem 1.5rem; border-radius: var(--r-pill); border: 1px solid transparent;
  transition: transform .18s ease, box-shadow .22s ease, background .22s ease, color .2s ease;
  text-align: center; white-space: nowrap; cursor: pointer; line-height: 1;
}
.btn-primary {
  background: var(--fire-grad); color: #fff; box-shadow: var(--shadow-cta);
  background-size: 160% 160%; letter-spacing: .01em;
}
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 22px 44px -12px rgba(255,61,129,0.7); color:#fff; background-position: 100% 0; }
.btn-secondary {
  background: rgba(255,255,255,0.05); color: var(--text-on-dark); border-color: var(--border-strong);
  backdrop-filter: blur(6px);
}
.btn-secondary:hover { transform: translateY(-2px); border-color: var(--accent); color: #fff; background: rgba(124,92,255,0.14); }
.btn-ghost { background: transparent; color: var(--text); border-color: var(--border-soft); }
.btn-ghost:hover { border-color: var(--accent); color: var(--accent); }

/* Rotated CTA colour variants (set by JS via data index) */
.btn-primary.cta-v0 { background: var(--fire-grad); color: #fff; }
.btn-primary.cta-v1 { background: var(--gold-grad); color: #2a1605; box-shadow: 0 16px 32px -12px rgba(245,184,61,0.5); }
.btn-primary.cta-v2 { background: var(--pop-grad); color: #04201a; box-shadow: 0 16px 32px -12px rgba(37,224,176,0.5); }

/* ---------- Kicker / section heads / highlight ---------- */
.kicker {
  display: inline-flex; align-items: center; gap: .5rem;
  font-family: var(--font-body); font-weight: 800; font-size: .74rem;
  letter-spacing: .2em; text-transform: uppercase; color: var(--brand-light);
}
.kicker::before { content: ""; width: 26px; height: 3px; background: var(--fire-grad); border-radius: 3px; }
.kicker.kicker--center::after { content: ""; width: 26px; height: 3px; background: var(--fire-grad); border-radius: 3px; }

.highlight {
  font-family: inherit; font-weight: 800; position: relative; white-space: nowrap; padding: 0 .04em;
  background: var(--fire-grad); -webkit-background-clip: text; background-clip: text; color: transparent;
}
.highlight::after {
  content: ""; position: absolute; left: -.02em; right: -.02em; bottom: .02em; height: .26em;
  background: var(--fire-grad); opacity: .28;
  border-radius: 6px; z-index: -1;
}

.section { padding: clamp(3.2rem, 6vw, 5.5rem) 0; position: relative; }
.section--tight { padding: clamp(2.2rem, 4vw, 3.5rem) 0; }
.section-head { max-width: 760px; margin: 0 0 2.4rem; }
.section-head.center { margin-left: auto; margin-right: auto; text-align: center; }
.section-head .kicker { margin-bottom: .9rem; }
.section-head h2 { margin-bottom: .7rem; }
.section-head p { font-size: 1.06rem; color: var(--text-muted); }

/* =====================================================================
   HEADER — sticky 2-row, both rows dark
   ===================================================================== */
.site-header { position: sticky; top: 0; z-index: 100; }
.header-top {
  background: rgba(8,15,28,0.85); backdrop-filter: blur(10px); border-bottom: 1px solid var(--border-soft);
  font-size: .8rem; color: var(--text-dim);
}
.header-top .container { display: flex; align-items: center; justify-content: space-between; height: var(--header-top-h); gap: 1rem; }
.header-top .trust-note { display: inline-flex; align-items: center; gap: .55rem; letter-spacing: .04em; }
.live-dot { width: 8px; height: 8px; border-radius: 50%; background: var(--accent); box-shadow: 0 0 0 0 rgba(255,61,129,0.6); animation: pulse 2.2s infinite; }
@keyframes pulse { 0%{box-shadow:0 0 0 0 rgba(255,61,129,.55);} 70%{box-shadow:0 0 0 9px rgba(255,61,129,0);} 100%{box-shadow:0 0 0 0 rgba(255,61,129,0);} }
.header-top .util-nav { display: flex; gap: 1.3rem; }
.header-top .util-nav a { color: var(--text-dim); font-weight: 600; }
.header-top .util-nav a:hover { color: var(--brand-light); }

/* glassy main bar */
.header-main { background: rgba(11,20,36,0.72); backdrop-filter: blur(18px) saturate(140%); border-bottom: 1px solid var(--border-soft); transition: box-shadow .25s ease, background .25s ease; }
.header-main .container { display: flex; align-items: center; justify-content: space-between; height: var(--header-main-h); gap: 1.5rem; }
.site-header.is-scrolled .header-main { background: rgba(9,16,29,0.92); box-shadow: 0 16px 40px -22px rgba(0,0,0,0.95), 0 1px 0 var(--border) inset; }

.brand-logo { display: inline-flex; align-items: center; flex: 0 0 auto; }
.brand-logo img { height: 44px; width: auto; object-fit: contain; display: block; }

.primary-nav { display: flex; align-items: center; gap: .15rem; position: relative; margin-inline: auto; }
.primary-nav a {
  position: relative; color: rgba(234,241,251,0.78); font-weight: 600; font-size: .95rem;
  padding: .55rem .9rem; border-radius: var(--r-pill); transition: color .2s ease, background .2s ease;
}
.primary-nav a:hover { color: #fff; background: rgba(124,92,255,0.14); }
.primary-nav a.active { color: var(--brand-light); }
.nav-indicator {
  position: absolute; bottom: 4px; height: 3px; background: var(--fire-grad); border-radius: 3px;
  transition: left .3s cubic-bezier(.4,0,.2,1), width .3s cubic-bezier(.4,0,.2,1); opacity: 0; pointer-events: none;
}
.header-actions { display: flex; align-items: center; gap: .7rem; flex: 0 0 auto; }
.header-actions .btn-primary { padding: .7rem 1.3rem; }

/* Burger */
.nav-toggle { display: none; width: 46px; height: 46px; border: 1px solid var(--border); border-radius: var(--r-md); background: rgba(124,92,255,0.08); position: relative; }
.nav-toggle span,.nav-toggle span::before,.nav-toggle span::after { content:""; position:absolute; left:50%; top:50%; width:20px; height:2px; background: var(--brand-light); border-radius:2px; transform: translate(-50%,-50%); transition: transform .25s ease, opacity .2s ease; }
.nav-toggle span::before { transform: translate(-50%,-8px); }
.nav-toggle span::after  { transform: translate(-50%,6px); }
body.nav-open .nav-toggle span { background: transparent; }
body.nav-open .nav-toggle span::before { transform: translate(-50%,-50%) rotate(45deg); background: var(--accent); }
body.nav-open .nav-toggle span::after  { transform: translate(-50%,-50%) rotate(-45deg); background: var(--accent); }

/* Mobile overlay */
.mobile-nav { position: fixed; inset: 0; z-index: 99; background: rgba(10,19,34,0.97); backdrop-filter: blur(16px); display: flex; flex-direction: column; justify-content: center; align-items: center; gap: .4rem; opacity: 0; visibility: hidden; transition: opacity .3s ease, visibility .3s ease; padding: 2rem; }
body.nav-open .mobile-nav { opacity: 1; visibility: visible; }
.mobile-nav a { font-family: var(--font-heading); font-weight: 700; font-size: 1.7rem; color: var(--text-on-dark); padding: .35rem 1rem; }
.mobile-nav a:hover { color: var(--accent); }
.mobile-nav .btn-primary { margin-top: 1.2rem; font-size: 1.05rem; }
.mobile-nav .mn-util { margin-top: 1.4rem; display: flex; flex-wrap: wrap; gap: 1rem; justify-content: center; }
.mobile-nav .mn-util a { font-family: var(--font-body); font-size: .95rem; color: var(--text-dim); }

/* =====================================================================
   HERO — asymmetric editorial
   ===================================================================== */
.hero { position: relative; padding: clamp(2.6rem,5vw,4.4rem) 0 clamp(4rem,7vw,6rem); overflow: hidden; }
.hero-bg { position: absolute; inset: 0; z-index: -1; }
.hero-bg img { width: 100%; height: 100%; object-fit: cover; opacity: .28; }
.hero-bg::after { content:""; position:absolute; inset:0; background: linear-gradient(180deg, rgba(10,19,34,.55), var(--bg) 94%); }
.hero-inner { display: grid; grid-template-columns: 1.15fr 0.85fr; gap: clamp(2rem,4vw,4rem); align-items: center; }
.hero-content { max-width: 620px; }
.hero .kicker { margin-bottom: 1.1rem; }
.hero h1 { margin-bottom: 1.2rem; }
.hero .lead { font-size: clamp(1.05rem,1.5vw,1.22rem); color: var(--text-muted); margin-bottom: 1.8rem; max-width: 560px; }
.hero-actions { display: flex; flex-wrap: wrap; gap: .8rem; margin-bottom: 1.8rem; }
.hero-proof { display: inline-flex; align-items: center; gap: .85rem; padding: .55rem .95rem .55rem .6rem; background: rgba(255,255,255,0.04); border: 1px solid var(--border); border-radius: var(--r-pill); }
.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: var(--fire-grad); }
.hero-proof .chip:first-child { margin-left: 0; }
.hero-proof .chip:nth-child(2) { background: var(--pop-grad); }
.hero-proof .chip:nth-child(3) { background: var(--gold-grad); }
.hero-proof .text { font-size: .9rem; color: var(--text-muted); }
.hero-proof .text strong { color: var(--text); }

/* Hero art — glowing image medallion + floating chip + sparkles (no playing cards) */
.hero-art { position: relative; min-height: 460px; display: flex; align-items: center; justify-content: center; }
.hero-art-glow {
  position: absolute; width: 92%; aspect-ratio: 1; border-radius: 50%; z-index: 0;
  background: radial-gradient(circle at 50% 45%, rgba(124,92,255,0.5), rgba(255,61,129,0.28) 45%, transparent 70%);
  filter: blur(18px); animation: glowpulse 6s ease-in-out infinite;
}
.hero-art-figure {
  position: relative; z-index: 2; width: min(100%, 440px); aspect-ratio: 1; border-radius: 32px; overflow: hidden;
  border: 1px solid var(--border-strong); box-shadow: 0 40px 80px -30px rgba(124,92,255,0.6), 0 0 0 1px var(--border) inset;
  animation: floaty 7s ease-in-out infinite;
}
.hero-art-figure img { width: 100%; height: 100%; object-fit: cover; }
.hero-art-chip {
  position: absolute; z-index: 4; right: 0; bottom: 8%; width: 124px; height: 124px; border-radius: 50%;
  background: var(--fire-grad); display: flex; flex-direction: column; align-items: center; justify-content: center;
  color: #fff; text-align: center; box-shadow: 0 18px 40px -10px rgba(255,61,129,.7); border: 3px solid rgba(255,255,255,.18);
  animation: floaty 5s ease-in-out infinite;
}
.hero-art-chip .num { font-family: var(--font-heading); font-weight: 800; font-size: 1.8rem; line-height: 1; }
.hero-art-chip .lbl { font-size: .6rem; font-weight: 800; text-transform: uppercase; letter-spacing: .1em; margin-top: 3px; opacity: .9; }
.hero-art-badge {
  position: absolute; z-index: 4; left: -2%; top: 12%; display: inline-flex; align-items: center; gap: .5rem;
  background: rgba(11,20,36,0.85); backdrop-filter: blur(8px); border: 1px solid var(--border-strong);
  color: var(--text); font-weight: 700; font-size: .82rem; padding: .55rem .9rem; border-radius: var(--r-pill);
  box-shadow: var(--shadow-soft); animation: floaty 6s ease-in-out infinite .5s;
}
.hero-art-badge .dot { width: 9px; height: 9px; border-radius: 50%; background: var(--pop); box-shadow: 0 0 10px var(--pop); }
.hero-art-spark { position: absolute; z-index: 3; color: var(--accent); font-size: 1.4rem; animation: twinkle 3s ease-in-out infinite; }
.hero-art-spark--a { top: 4%; left: 14%; color: var(--brand-light); }
.hero-art-spark--b { top: 22%; right: 4%; font-size: 1.1rem; color: var(--accent); animation-delay: .8s; }
.hero-art-spark--c { bottom: 8%; left: 2%; color: var(--pop); animation-delay: 1.5s; }
@keyframes floaty { 0%,100%{transform: translateY(0);} 50%{transform: translateY(-12px);} }
@keyframes glowpulse { 0%,100%{opacity:.7; transform: scale(.97);} 50%{opacity:1; transform: scale(1.03);} }
@keyframes twinkle { 0%,100%{opacity:.3; transform: scale(.85);} 50%{opacity:1; transform: scale(1.1);} }

/* =====================================================================
   HERO-BRIDGE stat strip (normal flow, overlaps hero)
   ===================================================================== */
.hero-bridge { margin-top: -3.25rem; position: relative; z-index: 5; }
.hero-stats-strip { display: grid; grid-template-columns: repeat(4, minmax(0,1fr)); gap: 1rem; }
.hero-stats-strip .stat {
  position: relative; padding: 1.5rem 1.3rem; text-align: left; border-radius: var(--r-lg);
  background: linear-gradient(160deg, rgba(124,92,255,0.14), var(--bg-card));
  border: 1px solid var(--border); box-shadow: var(--shadow-card); overflow: hidden;
  transition: transform .22s ease, box-shadow .25s ease;
}
.hero-stats-strip .stat::before { content:""; position:absolute; top:-30px; right:-30px; width:90px; height:90px; border-radius:50%; background: var(--fire-grad); opacity:.18; filter: blur(6px); }
.hero-stats-strip .stat:hover { transform: translateY(-4px); box-shadow: var(--shadow-card-hover); }
.hero-stats-strip .stat .num { display: block; position: relative; font-family: var(--font-heading); font-weight: 800; font-size: clamp(1.7rem,2.6vw,2.3rem); background: var(--fire-grad); -webkit-background-clip: text; background-clip: text; color: transparent; line-height: 1; }
.hero-stats-strip .stat .lbl { display: block; position: relative; font-size: .82rem; color: var(--text-muted); margin-top: .5rem; letter-spacing: .02em; font-weight: 600; }

/* =====================================================================
   UNIVERSAL CARD treatment
   ===================================================================== */
.card, .plain-card, .support-card, .floor-tile, .bento-cell, .sec-cell, .reward-cell, .split-card, .image-divider, .intro-block, .blog-card {
  position: relative; background: var(--bg-card); border: 1px solid var(--border);
  border-radius: var(--card-radius); box-shadow: var(--shadow-card); overflow: hidden;
}
/* soft gradient orb in the top-right corner (new card signature) */
.card::before, .plain-card::before, .support-card::before, .floor-tile::before, .bento-cell::before, .sec-cell::before, .reward-cell::before, .split-card::before, .intro-block::before, .blog-card::before {
  content: ""; position: absolute; top: -40px; right: -40px; width: 130px; height: 130px; border-radius: 50%;
  background: var(--fire-grad); opacity: .14; filter: blur(8px); z-index: 0; transition: opacity .3s ease, transform .3s ease;
}
.has-watermark:hover::before, .floor-tile:hover::before, .bento-cell:hover::before, .reward-cell:hover::before, .blog-card:hover::before { opacity: .26; transform: scale(1.15); }
.floor-tile:hover, .bento-cell:hover, .sec-cell:hover, .reward-cell:hover, .blog-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-card-hover); }
.floor-tile, .bento-cell, .sec-cell, .reward-cell, .blog-card { transition: transform .22s ease, box-shadow .25s ease; }

/* ---------- plain-card / intro-block / support-card (full width) ---------- */
.plain-card { width: 100%; margin: 0 auto; padding: clamp(1.8rem,3vw,2.6rem); }
.plain-card > * { position: relative; z-index: 1; }
.plain-card h3 { margin-bottom: .8rem; }
.plain-card p + p { margin-top: 1rem; }
.plain-card p { color: var(--text-muted); }

.intro-block { width: 100%; margin: 0 auto; padding: clamp(1.8rem,3vw,2.4rem) clamp(1.8rem,3vw,2.8rem); }
.intro-block > * { position: relative; z-index: 1; }
.intro-block p { color: var(--text); font-size: 1.08rem; }
.intro-block p + p { margin-top: 1rem; }

.support-card { width: 100%; margin: 0 auto; padding: clamp(2rem,4vw,3.4rem); text-align: center; }
.support-card > * { position: relative; z-index: 1; }
.support-card h3 { font-size: clamp(1.5rem,3vw,2.2rem); margin-bottom: .9rem; }
.support-card p { max-width: 720px; margin: 0 auto 1rem; color: var(--text-muted); }
.support-card .hero-actions { justify-content: center; margin-top: 1.4rem; margin-bottom: 0; }

/* =====================================================================
   FLOOR-GRID (builder card grids) — R3 columns
   ===================================================================== */
.floor-grid { display: grid; gap: 1.3rem; width: 100%; }
.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 { padding: 1.7rem 1.6rem; }
.floor-tile > * { position: relative; z-index: 1; }
.floor-tile h3 { margin-bottom: .6rem; color: var(--text-on-dark); }
.floor-tile h3 .tile-no { font-size: .85rem; color: var(--brand); margin-right: .35rem; }
.floor-tile p { color: var(--text-muted); font-size: .98rem; }
.floor-tile p + p { margin-top: .7rem; }

/* ---------- floor-grid--rich (sub-cards + bold dividers, full width) ---------- */
.floor-grid--rich { grid-template-columns: 1fr; width: 100%; margin: 0 auto; gap: 1.3rem; }
.floor-grid--rich .floor-tile { padding: clamp(1.8rem,3vw,2.4rem); }
.floor-grid--rich .floor-tile h3 { font-size: clamp(1.3rem,2.2vw,1.7rem); margin-bottom: 1rem; }
.rich-sub { margin-top: 1.5rem; }
.rich-sub h4 {
  text-transform: uppercase; letter-spacing: .18em; font-size: .8rem; font-family: var(--font-body); font-weight: 800;
  color: var(--brand-light); border-top: 2px solid var(--brand); padding-top: .9rem; margin-bottom: 1rem;
}
.rich-list { list-style: none; padding: 0; display: grid; gap: .7rem; }
.rich-list li {
  position: relative; background: var(--bg); border: 1px solid var(--border-soft); border-radius: var(--r-md);
  padding: 1rem 1.15rem 1rem 1.45rem; color: var(--text-muted); font-size: .96rem;
}
.rich-list li::before { content: ""; position: absolute; left: 0; top: 10px; bottom: 10px; width: 3px; border-radius: 3px; background: linear-gradient(180deg, var(--brand), var(--accent)); }
.rich-list li strong { color: var(--text); }
.floor-tile .plain-prose p { color: var(--text-muted); }
.floor-tile .plain-prose p + p { margin-top: .7rem; }

/* =====================================================================
   FEATURE CHECK-LIST (gold ticks, golden panel, gold left border)
   ===================================================================== */
.feature-check-list, .feature-check-list--plain {
  width: 100%; list-style: none; padding: clamp(1.6rem,3vw,2.2rem) clamp(1.6rem,3vw,2.2rem) clamp(1.6rem,3vw,2.2rem) clamp(1.8rem,3vw,2.6rem);
  background: linear-gradient(135deg, rgba(124,92,255,0.14), rgba(255,61,129,0.06));
  border: 1px solid var(--border); border-left: 4px solid var(--brand); border-radius: var(--card-radius);
  display: grid; gap: 1rem; box-shadow: var(--shadow-card);
}
.feature-check-list li, .feature-check-list--plain li {
  position: relative; padding-left: 2.4rem; color: var(--text); line-height: 1.6;
}
.feature-check-list li::before, .feature-check-list--plain li::before {
  content: "✓"; position: absolute; left: 0; top: 1px; width: 1.6rem; height: 1.6rem; border-radius: 50%;
  background: var(--gold-grad); color: #2a1605; font-weight: 800; font-size: .85rem;
  display: flex; align-items: center; justify-content: center; box-shadow: 0 4px 10px -4px rgba(233,185,73,.6);
}
.feature-check-list li strong, .feature-check-list--plain li strong { color: var(--text-on-dark); }

/* =====================================================================
   SPLIT-LAYOUT (list + atmospheric image)
   ===================================================================== */
.split-layout { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(1.4rem,3vw,2.4rem); align-items: stretch; width: 100%; }
.split-layout .split-media { border-radius: var(--card-radius); overflow: hidden; border: 1px solid var(--border); box-shadow: var(--shadow-card); min-height: 280px; position: relative; }
.split-layout .split-media img { width: 100%; height: 100%; object-fit: cover; }
.split-layout .split-body { align-self: center; }
.split-layout.split-layout--rev .split-media { order: 2; }
.split-layout .feature-check-list { margin: 0; }
.split-layout .split-body > p { margin-bottom: 1.1rem; color: var(--text-muted); }

/* =====================================================================
   IMAGE-DIVIDER (contained editorial figure, full container width)
   ===================================================================== */
.image-divider { width: 100%; margin: 0 auto; display: grid; grid-template-columns: 1.4fr 1fr; gap: 0; align-items: stretch; }
.image-divider .id-figure { position: relative; }
.image-divider .id-figure img { width: 100%; height: 100%; object-fit: cover; aspect-ratio: 4/3; }
.image-divider .id-aside { padding: clamp(1.6rem,3vw,2.6rem); display: flex; flex-direction: column; justify-content: center; gap: .5rem; position: relative; z-index: 1; }
.image-divider .id-aside .id-kicker { font-size: .74rem; text-transform: uppercase; letter-spacing: .2em; color: var(--brand); font-weight: 800; }
.image-divider .id-aside h3 { font-size: 1.3rem; }

/* =====================================================================
   HOME — bespoke sections
   ===================================================================== */
/* Bento floor */
.bento-floor { display: grid; grid-template-columns: repeat(6,1fr); gap: 1.2rem; width: 100%; }
.bento-cell { padding: 1.7rem; grid-column: span 2; }
.bento-cell > * { position: relative; z-index: 1; }
.bento-cell .bento-icon { font-size: 1.6rem; margin-bottom: .6rem; display: block; }
.bento-cell h3 { margin-bottom: .5rem; }
.bento-cell p { font-size: .96rem; color: var(--text-muted); }
.bento-cell--wide { grid-column: span 3; }
.bento-cell--feature { grid-column: span 3; background: linear-gradient(150deg, var(--bg-elevated), var(--bg-card)); }

/* Security art-deco 4-up */
.security-grid { display: grid; grid-template-columns: repeat(4,minmax(0,1fr)); gap: 1.2rem; width: 100%; }
.sec-cell { padding: 1.8rem 1.5rem; text-align: center; }
.sec-cell > * { position: relative; z-index: 1; }
.sec-cell .sec-deco { width: 58px; height: 58px; margin: 0 auto 1rem; border-radius: 16px; transform: rotate(45deg); background: linear-gradient(135deg, rgba(124,92,255,0.28), rgba(255,61,129,0.18)); border: 1px solid var(--border-strong); display: flex; align-items: center; justify-content: center; }
.sec-cell .sec-deco span { transform: rotate(-45deg); font-size: 1.5rem; }
.sec-cell h3 { font-size: 1.12rem; margin-bottom: .45rem; }
.sec-cell p { font-size: .9rem; color: var(--text-muted); }

/* Rewards bento */
.rewards-bento { display: grid; grid-template-columns: repeat(3,1fr); gap: 1.2rem; width: 100%; }
.reward-cell { padding: 1.7rem; }
.reward-cell > * { position: relative; z-index: 1; }
.reward-cell h3 { margin-bottom: .5rem; }
.reward-cell p { font-size: .95rem; color: var(--text-muted); }
.reward-cell .reward-amt { font-family: var(--font-heading); font-weight: 700; font-size: 1.8rem; background: var(--gold-grad); -webkit-background-clip: text; background-clip: text; color: transparent; display: block; margin-bottom: .3rem; }
.reward-cell--welcome { grid-column: span 1; grid-row: span 2; background: linear-gradient(160deg, rgba(124,92,255,0.2), var(--bg-card)); }
.reward-cell--vip { grid-column: 1 / -1; background: linear-gradient(120deg, var(--bg-elevated), var(--bg-card)); display: flex; flex-wrap: wrap; align-items: center; justify-content: space-between; gap: 1rem; }
.reward-cell--vip .vip-copy { max-width: 70%; }

/* =====================================================================
   FAQ accordion
   ===================================================================== */
.faq-list { width: 100%; display: grid; gap: .85rem; }
.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, border-color .2s ease; }
.faq-item[open] { box-shadow: var(--shadow-card); border-color: var(--border-strong); 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-weight: 700; color: var(--text-on-dark); }
.faq-item summary::-webkit-details-marker { display: none; }
.faq-q { font-size: 1.02rem; }
.faq-icon { flex: 0 0 auto; width: 26px; height: 26px; position: relative; }
.faq-icon::before, .faq-icon::after { content:""; position:absolute; left:50%; top:50%; background: var(--brand); border-radius: 2px; transition: transform .25s ease; }
.faq-icon::before { width: 13px; height: 2px; transform: translate(-50%,-50%); }
.faq-icon::after { width: 2px; height: 13px; transform: translate(-50%,-50%); }
.faq-item[open] .faq-icon::after { transform: translate(-50%,-50%) rotate(90deg); opacity: 0; }
.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)
   ===================================================================== */
.page-hero { padding: clamp(2.4rem,5vw,4rem) 0 clamp(1.6rem,3vw,2.4rem); position: relative; }
.breadcrumb { font-size: .82rem; color: var(--text-dim); margin-bottom: 1rem; display: flex; gap: .5rem; flex-wrap: wrap; }
.breadcrumb a { color: var(--text-dim); }
.breadcrumb a:hover { color: var(--brand); }
.breadcrumb .sep { opacity: .5; }
.page-hero h1 { margin-bottom: .9rem; max-width: 18ch; }
.page-hero .page-sub { font-size: clamp(1.05rem,1.5vw,1.18rem); color: var(--text-muted); max-width: 760px; }
.page-meta { font-size: .82rem; color: var(--text-dim); margin-top: 1rem; display: flex; gap: .5rem; flex-wrap: wrap; align-items: center; }
.page-meta .page-meta-author { color: var(--brand-light); font-weight: 600; }

/* intro-block region spacing on inner pages */
.section .intro-block + .intro-block { margin-top: 1.2rem; }

/* =====================================================================
   FOOTER
   ===================================================================== */
.site-footer { position: relative; margin-top: clamp(4rem,8vw,7rem); background: var(--bg-panel); border-top: 1px solid var(--border); }
.footer-cta { width: 100%; max-width: var(--container); margin: -5rem auto 2.6rem; padding-inline: 1.5rem; position: relative; }
.footer-cta-card { position: relative; overflow: hidden; background: var(--fire-grad); border-radius: var(--r-xl); padding: clamp(2rem,4vw,3.2rem); display: flex; flex-wrap: wrap; align-items: center; justify-content: space-between; gap: 1.4rem; box-shadow: 0 34px 70px -28px rgba(255,61,129,.6); }
.footer-cta-card::after { content: ""; position: absolute; right: -60px; top: -60px; width: 260px; height: 260px; border-radius: 50%; background: radial-gradient(circle, rgba(255,255,255,0.28), transparent 70%); pointer-events: none; }
.footer-cta-card .fc-copy { position: relative; z-index: 1; }
.footer-cta-card h2 { color: #fff; margin-bottom: .35rem; }
.footer-cta-card p { color: rgba(255,255,255,0.9); font-weight: 600; }
.footer-cta-card .hero-actions { margin: 0; position: relative; z-index: 1; }
.footer-cta-card .btn-primary { background: #fff; color: var(--brand-dark); box-shadow: 0 14px 26px -12px rgba(0,0,0,.5); }
.footer-cta-card .btn-primary:hover { color: var(--accent); background:#fff; }
.footer-cta-card .btn-secondary { background: rgba(255,255,255,0.14); color: #fff; border-color: rgba(255,255,255,0.5); }
.footer-cta-card .btn-secondary:hover { color: #fff; border-color: #fff; background: rgba(255,255,255,0.22); }

.footer-main { padding-bottom: 2.4rem; }
.footer-grid { display: grid; grid-template-columns: 1.6fr 1fr 1fr 1fr; gap: 2rem; padding-bottom: 2.4rem; border-bottom: 1px solid var(--border-soft); }
.footer-brand .brand-logo img { height: 40px; }
.footer-brand p { margin: 1rem 0 1.2rem; color: var(--text-dim); font-size: .92rem; max-width: 34ch; }
.pay-pills { display: flex; flex-wrap: wrap; gap: .5rem; }
.pay-pills span { font-size: .72rem; font-weight: 700; letter-spacing: .04em; color: var(--text-muted); border: 1px solid var(--border); border-radius: var(--r-pill); padding: .3rem .7rem; background: rgba(255,255,255,0.02); }
.footer-col h4 { font-family: var(--font-heading); font-weight: 700; font-size: 1.1rem; color: var(--text-on-dark); margin-bottom: 1rem; position: relative; padding-bottom: .5rem; }
.footer-col h4::after { content:""; position:absolute; left:0; bottom:0; width: 28px; height: 3px; background: var(--fire-grad); border-radius: 3px; }
.footer-col ul { list-style: none; padding: 0; display: grid; gap: .55rem; }
.footer-col a { color: var(--text-dim); font-size: .92rem; }
.footer-col a:hover { color: var(--brand-light); }

.trust-row { display: flex; flex-wrap: wrap; gap: .8rem; padding: 1.6rem 0; justify-content: center; border-bottom: 1px solid var(--border-soft); }
.trust-row .trust-pill { font-size: .78rem; font-weight: 700; letter-spacing: .05em; color: var(--text-muted); border: 1px solid var(--border); border-radius: var(--r-pill); padding: .42rem .9rem; display: inline-flex; align-items: center; gap: .4rem; }
.trust-row .trust-pill .dot { width: 7px; height: 7px; border-radius: 50%; background: var(--pop); box-shadow: 0 0 8px var(--pop); }
.footer-bottom { display: flex; flex-wrap: wrap; align-items: center; justify-content: space-between; gap: .6rem; padding: 1.4rem 0 2.2rem; }
.footer-bottom .copy { font-size: .82rem; color: var(--text-dim); }
.footer-bottom .rg-note { font-size: .85rem; color: var(--text-dim); }

/* =====================================================================
   404
   ===================================================================== */
.err-404 { min-height: 60vh; display: flex; flex-direction: column; align-items: center; justify-content: center; text-align: center; padding: 4rem 0; }
.err-404 .glyph { font-family: var(--font-heading); font-weight: 800; font-size: clamp(8rem,22vw,18rem); line-height: .85; background: var(--fire-grad); -webkit-background-clip: text; background-clip: text; color: transparent; }
.err-404 h1 { margin: .5rem 0 .8rem; }
.err-404 p { color: var(--text-muted); max-width: 460px; margin: 0 auto 1.6rem; }

/* =====================================================================
   Blog listing
   ===================================================================== */
.blog-grid { display: grid; grid-template-columns: repeat(2,minmax(0,1fr)); gap: 1.4rem; width: 100%; }
.blog-card { padding: 1.9rem; display: flex; flex-direction: column; gap: .7rem; }
.blog-card > * { position: relative; z-index: 1; }
.blog-card .bc-kicker { font-size: .74rem; text-transform: uppercase; letter-spacing: .18em; color: var(--brand); font-weight: 800; }
.blog-card h2 { font-size: 1.4rem; }
.blog-card p { color: var(--text-muted); font-size: .96rem; flex: 1; }
.blog-card .bc-link { color: var(--brand-light); font-weight: 700; font-size: .92rem; }

/* =====================================================================
   Reveal on scroll
   ===================================================================== */
.reveal { transition: opacity .6s ease, transform .6s ease; }
html.js .reveal { opacity: 0; transform: translateY(22px); }
html.js .reveal.is-visible { opacity: 1; transform: none; }

/* =====================================================================
   RESPONSIVE
   ===================================================================== */
@media (max-width: 1100px) {
  .hero-inner { grid-template-columns: 1.1fr .9fr; }
  .footer-grid { grid-template-columns: 1.4fr 1fr 1fr; }
  .footer-col--last { grid-column: span 3; }
}
@media (max-width: 900px) {
  .primary-nav, .header-actions .btn-primary { display: none; }
  .nav-toggle { display: inline-flex; }
  .hero-inner { grid-template-columns: 1fr; }
  .hero-art { height: 320px; order: -1; }
  .floor-grid--cols-3, .floor-grid--cols-4 { grid-template-columns: repeat(2,minmax(0,1fr)); }
  .security-grid { grid-template-columns: repeat(2,minmax(0,1fr)); }
  .bento-cell, .bento-cell--wide, .bento-cell--feature { grid-column: span 3; }
  .rewards-bento { grid-template-columns: repeat(2,1fr); }
  .reward-cell--welcome { grid-column: span 2; grid-row: auto; }
  .split-layout { grid-template-columns: 1fr; }
  .split-layout.split-layout--rev .split-media { order: 0; }
  .hero-stats-strip { grid-template-columns: repeat(2,1fr); }
  .hero-stats-strip .stat:nth-child(3) { border-left: none; }
  .hero-stats-strip .stat:nth-child(n+3) { border-top: 1px solid var(--border-soft); }
}
@media (max-width: 700px) {
  .header-top .util-nav { display: none; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .footer-brand { grid-column: span 2; }
  .footer-col--last { grid-column: span 2; }
  .image-divider { grid-template-columns: 1fr; }
  .image-divider .id-figure img { aspect-ratio: 16/9; }
  .reward-cell--vip { flex-direction: column; align-items: flex-start; }
  .reward-cell--vip .vip-copy { max-width: 100%; }
}
@media (max-width: 560px) {
  .floor-grid--cols-2, .floor-grid--cols-3, .floor-grid--cols-4 { grid-template-columns: 1fr; }
  .security-grid { grid-template-columns: 1fr; }
  .bento-floor { grid-template-columns: 1fr; }
  .bento-cell, .bento-cell--wide, .bento-cell--feature { grid-column: span 1; }
  .rewards-bento { grid-template-columns: 1fr; }
  .reward-cell--welcome, .reward-cell--vip { grid-column: span 1; }
  .blog-grid { grid-template-columns: 1fr; }
  .hero-art-card { width: 116px; height: 166px; font-size: 2.6rem; }
  .footer-cta-card { flex-direction: column; align-items: flex-start; text-align: left; }
}
@media (max-width: 480px) {
  .hero-stats-strip { grid-template-columns: 1fr 1fr; }
  h1 { font-size: 2.1rem; }
  .hero-art { height: 260px; }
}

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