/* ============================================================
   OX Game Casino — site.css
   Palette: electric royal blue (dominant) + casino gold (accent)
   Type:    Fraunces (display) + Plus Jakarta Sans (body)
   Signature ornament: diamond pip ◆ + sparkle ✦ + slot-reel chips
   ------------------------------------------------------------
   SHARED CONTENT WIDTH: every bounded element shares one
   container (--container 1200px / 1.5rem padding). Cards,
   lists, grids, dividers span the full container width.
   No typographic-comfort max-widths on cards/lists.
   ============================================================ */

/* ---------- 1. Tokens ---------- */
:root {
  /* Colors */
  --brand:         #1f6fe5;
  --brand-dark:    #0a1b3d;
  --brand-light:   #6fb3ff;
  --brand-deep:    #04122b;
  --accent:        #f7b81e;
  --accent-warm:   #e2920f;
  --accent-soft:   #ffe7ad;

  --bg:            #f4f7fe;
  --bg-card:       #ffffff;
  --bg-elevated:   #ffffff;
  --bg-panel:      #06152f;
  --bg-panel-2:    #0b2249;

  --text:          #0c1830;
  --text-muted:    #4a5876;
  --text-dim:      #8a96ad;
  --text-on-dark:  #eaf1ff;
  --text-on-dark-dim: rgba(234, 241, 255, 0.66);

  --border:        #e2e9f5;
  --border-strong: #c9d6ec;
  --border-soft:   #eef3fb;

  /* Signature gradients */
  --stripe:        linear-gradient(90deg, var(--accent) 0%, var(--accent-warm) 38%, var(--brand) 100%);
  --grad-brand:    linear-gradient(135deg, #2b7cf0 0%, #1450b6 100%);
  --grad-gold:     linear-gradient(135deg, #ffd35e 0%, #f7b81e 48%, #e2920f 100%);
  --grad-panel:    radial-gradient(1200px 600px at 12% -10%, #123a7e 0%, transparent 55%),
                   radial-gradient(900px 500px at 100% 0%, #0d2a5e 0%, transparent 50%),
                   linear-gradient(180deg, #06152f 0%, #050f24 100%);

  /* Typography */
  --font-body:    'Plus Jakarta Sans', system-ui, -apple-system, Segoe UI, 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 */
  --shadow-soft:        0 2px 10px rgba(10, 27, 61, 0.06);
  --shadow-card:        0 10px 24px -12px rgba(10, 27, 61, 0.22), 0 2px 6px rgba(10, 27, 61, 0.06);
  --shadow-card-hover:  0 26px 50px -18px rgba(10, 27, 61, 0.34), 0 6px 14px rgba(10, 27, 61, 0.10);
  --shadow-cta:         0 14px 30px -10px rgba(226, 146, 15, 0.55), 0 4px 10px rgba(226, 146, 15, 0.30);

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

/* ---------- 2. Reset / base ---------- */
*, *::before, *::after { box-sizing: border-box; }
* { margin: 0; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
body {
  font-family: var(--font-body);
  font-size: 17px;
  line-height: 1.65;
  color: var(--text);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}
img, svg { display: block; max-width: 100%; }
a { color: var(--brand); text-decoration: none; }
a:hover { color: var(--brand-dark); }
ul, ol { padding-left: 1.2rem; }
button { font: inherit; cursor: pointer; }
:focus-visible { outline: 3px solid var(--brand); outline-offset: 2px; border-radius: 4px; }

/* Atmospheric body wash */
body::before {
  content: "";
  position: fixed; inset: 0; z-index: -1; pointer-events: none;
  background:
    radial-gradient(800px 480px at 90% -5%, rgba(31, 111, 229, 0.08), transparent 60%),
    radial-gradient(700px 460px at -8% 12%, rgba(247, 184, 30, 0.07), transparent 60%);
}

/* ---------- 3. Typography ---------- */
h1, h2, h3, h4 { font-family: var(--font-heading); font-weight: 600; line-height: 1.1; color: var(--brand-dark); letter-spacing: -0.01em; }
h1 { font-size: clamp(2.2rem, 5.2vw, 3.7rem); font-weight: 600; }
h2 { font-size: clamp(1.7rem, 3.6vw, 2.6rem); }
h3 { font-size: clamp(1.18rem, 2vw, 1.4rem); }
h4 { font-size: 1.02rem; }
p { color: var(--text-muted); }
strong { color: var(--text); font-weight: 700; }
.highlight {
  font-style: italic; font-family: var(--font-heading); color: var(--brand);
  position: relative; white-space: nowrap;
}
.highlight::after {
  content: ""; position: absolute; left: -2%; right: -2%; bottom: 0.08em; height: 0.42em; z-index: -1;
  background: linear-gradient(90deg, rgba(247, 184, 30, 0.55), rgba(247, 184, 30, 0.28));
  border-radius: 4px; transform: rotate(-0.6deg);
}

/* ---------- 4. Layout primitives ---------- */
.container { width: 100%; max-width: var(--container); margin-inline: auto; padding-inline: var(--gutter); }
.section { padding: 40px 0; position: relative; }
.section--tight { padding: 22px 0; }
.section-head { margin-bottom: 2.5rem; }
.section-head--center { text-align: center; }
.section-head--center .section-head-inner { max-width: 60ch; margin-inline: auto; } /* typography only */
.section-head p { margin-top: 0.85rem; font-size: 1.05rem; }
.section-head .section-head-inner { max-width: 64ch; } /* readable measure for HEAD TEXT ONLY */

.kicker {
  display: inline-flex; align-items: center; gap: 0.5rem;
  font-family: var(--font-body); font-weight: 700; font-size: 0.74rem;
  letter-spacing: 0.2em; text-transform: uppercase; color: var(--accent-warm);
  margin-bottom: 0.85rem;
}
.kicker::before { content: "◆"; color: var(--accent); font-size: 0.7em; }
.kicker--ondark { color: var(--accent); }

/* Reveal-on-scroll: hidden state only applies when JS is active, so
   content is always visible without JS (SEO / no-JS / accessibility). */
.js .reveal { opacity: 0; transform: translateY(22px); transition: opacity .6s ease, transform .6s ease; }
.js .reveal.is-visible { opacity: 1; transform: none; }

/* ---------- 5. Buttons ---------- */
.btn-primary, .btn-secondary, .btn-ghost {
  display: inline-flex; align-items: center; justify-content: center; gap: 0.5rem;
  font-weight: 700; font-size: 0.98rem; padding: 0.85rem 1.6rem; border-radius: var(--r-pill);
  border: 1.5px solid transparent; transition: transform .18s ease, box-shadow .25s ease, background .25s ease, color .2s ease;
  white-space: nowrap; cursor: pointer; line-height: 1;
}
.btn-primary { background: var(--grad-gold); color: #3a2400; box-shadow: var(--shadow-cta); }
.btn-primary:hover { transform: translateY(-2px); color: #3a2400; box-shadow: 0 20px 40px -12px rgba(226,146,15,.62); }
.btn-secondary { background: var(--brand); color: #fff; box-shadow: 0 10px 24px -12px rgba(31,111,229,.6); }
.btn-secondary:hover { transform: translateY(-2px); color: #fff; background: #1657c0; }
.btn-ghost { background: transparent; color: var(--brand-dark); border-color: var(--border-strong); }
.btn-ghost:hover { border-color: var(--brand); color: var(--brand); transform: translateY(-2px); }
.btn-ondark { color: var(--text-on-dark); border-color: rgba(234,241,255,.28); }
.btn-ondark:hover { border-color: var(--accent); color: var(--accent); }
.btn-lg { padding: 1.05rem 2.1rem; font-size: 1.05rem; }
.btn-block { width: 100%; }

/* ---------- 6. Header (2-row sticky dark) ---------- */
.site-header { position: sticky; top: 0; z-index: 100; background: var(--bg-panel); }
.header-top {
  background: var(--brand-deep);
  border-bottom: 1px solid rgba(255,255,255,.06);
  font-size: 0.8rem; height: var(--header-top-h);
  display: flex; align-items: center;
}
.header-top .container { display: flex; align-items: center; justify-content: space-between; gap: 1rem; }
.trust-line { display: flex; align-items: center; gap: 0.55rem; color: var(--text-on-dark-dim); font-weight: 600; letter-spacing: .02em; }
.trust-line .pulse-dot { width: 9px; height: 9px; border-radius: 50%; background: var(--accent); box-shadow: 0 0 0 0 rgba(247,184,30,.6); animation: pulse 2.4s infinite; }
@keyframes pulse { 0%{box-shadow:0 0 0 0 rgba(247,184,30,.55);} 70%{box-shadow:0 0 0 8px rgba(247,184,30,0);} 100%{box-shadow:0 0 0 0 rgba(247,184,30,0);} }
.util-nav { display: flex; gap: 1.25rem; }
.util-nav a { color: var(--text-on-dark-dim); font-weight: 600; }
.util-nav a:hover { color: var(--accent-soft); }

.header-main {
  background: var(--bg-panel);
  border-bottom: 1px solid rgba(255,255,255,.07);
  height: var(--header-main-h);
  display: flex; align-items: center;
  transition: height .25s ease, box-shadow .25s ease;
}
.header-main .container { display: flex; align-items: center; gap: 1.5rem; }
.brand-logo { display: inline-flex; align-items: center; gap: 0.6rem; flex-shrink: 0; }
.brand-logo img { height: 62px; width: auto; object-fit: contain; transition: height .25s ease; }
.is-scrolled .header-main { height: 4.5rem; box-shadow: 0 10px 30px -16px rgba(0,0,0,.6); }
.is-scrolled .brand-logo img { height: 52px; }

.primary-nav { display: flex; align-items: center; gap: 0.35rem; margin-left: auto; position: relative; }
.primary-nav a {
  color: var(--text-on-dark-dim); font-weight: 600; font-size: 0.96rem;
  padding: 0.5rem 0.85rem; border-radius: var(--r-sm); position: relative; transition: color .2s ease;
}
.primary-nav a:hover, .primary-nav a.active { color: var(--text-on-dark); }
.nav-indicator {
  position: absolute; bottom: -2px; height: 3px; border-radius: 3px;
  background: var(--grad-gold); transition: left .3s cubic-bezier(.4,0,.2,1), width .3s cubic-bezier(.4,0,.2,1);
  opacity: 0; pointer-events: none;
}
.header-cta { margin-left: 0.75rem; display: flex; align-items: center; gap: 0.5rem; }

/* Burger */
.nav-toggle { display: none; width: 44px; height: 44px; border: 0; background: transparent; margin-left: auto; position: relative; z-index: 130; }
.nav-toggle span { position: absolute; left: 10px; right: 10px; height: 2.5px; background: var(--text-on-dark); border-radius: 2px; transition: transform .3s ease, opacity .2s 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; }
body.nav-open .nav-toggle span:nth-child(1){ top:21px; transform: rotate(45deg); }
body.nav-open .nav-toggle span:nth-child(2){ opacity: 0; }
body.nav-open .nav-toggle span:nth-child(3){ top:21px; transform: rotate(-45deg); }

/* ---------- 7. Mobile nav overlay ---------- */
.mobile-nav {
  position: fixed; inset: 0; z-index: 120;
  background: var(--grad-panel);
  backdrop-filter: blur(8px);
  display: flex; flex-direction: column; justify-content: center; gap: 0.5rem;
  padding: 6rem 2rem 3rem; transform: translateY(-100%);
  transition: transform .4s cubic-bezier(.65,0,.35,1); visibility: hidden;
}
body.nav-open .mobile-nav { transform: translateY(0); visibility: visible; }
.mobile-nav a { color: var(--text-on-dark); font-family: var(--font-heading); font-size: 1.7rem; padding: 0.5rem 0; border-bottom: 1px solid rgba(255,255,255,.08); }
.mobile-nav a:hover { color: var(--accent); }
.mobile-nav .mobile-cta { margin-top: 1.5rem; }
.mobile-nav .mobile-util { margin-top: 1.5rem; display: flex; flex-wrap: wrap; gap: 1rem; }
.mobile-nav .mobile-util a { font-family: var(--font-body); font-size: 0.95rem; color: var(--text-on-dark-dim); border: 0; padding: 0; }

/* ---------- 8. Hero (asymmetric editorial) ---------- */
.hero { position: relative; background: var(--grad-panel); color: var(--text-on-dark); overflow: hidden; }
.hero-bg { position: absolute; inset: 0; z-index: 0; opacity: .26; }
.hero-bg img { width: 100%; height: 100%; object-fit: cover; }
.hero-bg::after { content:""; position:absolute; inset:0; background: linear-gradient(90deg, #06152f 18%, rgba(6,21,47,.35) 100%); }
.hero-inner {
  position: relative; z-index: 1;
  display: grid; grid-template-columns: 1.05fr 0.95fr; gap: 2.5rem; align-items: center;
  padding-block: clamp(3.2rem, 7vw, 6rem);
}
.hero-content { max-width: 36rem; }
.hero .kicker { color: var(--accent); }
.hero h1 { color: #fff; margin-bottom: 1.1rem; }
.hero .lead { color: var(--text-on-dark-dim); font-size: 1.15rem; max-width: 34rem; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 0.9rem; margin-top: 1.8rem; }
.hero-proof { display: flex; align-items: center; gap: 0.85rem; margin-top: 1.8rem; padding: 0.6rem 1rem 0.6rem 0.6rem; background: rgba(255,255,255,.06); border: 1px solid rgba(255,255,255,.1); border-radius: var(--r-pill); width: max-content; max-width: 100%; }
.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(--grad-gold); }
.hero-proof .chip:first-child { margin-left: 0; background: var(--grad-brand); }
.hero-proof .chip:nth-child(3){ background: linear-gradient(135deg,#7bdcb5,#18c29c); }
.hero-proof .text { font-size: 0.9rem; color: var(--text-on-dark-dim); }
.hero-proof .text strong { color: var(--text-on-dark); }

/* Hero art — premium fanned "winning hand" + poker-chip stack */
.hero-art { position: relative; min-height: 430px; display: flex; align-items: center; justify-content: center; }
.hero-art-glow {
  position: absolute; width: 380px; height: 380px; border-radius: 50%; z-index: 0;
  background: radial-gradient(circle, rgba(247,184,30,.30), rgba(31,111,229,.14) 52%, transparent 72%);
  filter: blur(8px); animation: glowpulse 6s ease-in-out infinite;
}
@keyframes glowpulse { 0%,100%{transform:scale(1);opacity:.8;} 50%{transform:scale(1.09);opacity:1;} }
.hero-art-spark { position: absolute; color: var(--accent); z-index: 6; opacity: .85; text-shadow: 0 0 14px rgba(247,184,30,.75); animation: twinkle 3.6s ease-in-out infinite; }
.hero-art-spark--a { top: 3%; left: 14%; font-size: 1.5rem; }
.hero-art-spark--b { bottom: 8%; left: 4%; font-size: 1rem; animation-delay: .8s; }
.hero-art-spark--c { top: 20%; right: 4%; font-size: 2rem; animation-delay: 1.7s; }
@keyframes twinkle { 0%,100%{opacity:.25;transform:scale(.8) rotate(0);} 50%{opacity:1;transform:scale(1.15) rotate(22deg);} }

.card-fan { position: relative; z-index: 2; width: 320px; height: 330px; animation: fanfloat 6s ease-in-out 1s infinite; }
@keyframes fanfloat { 0%,100%{transform:translateY(0);} 50%{transform:translateY(-9px);} }
.pcard {
  position: absolute; left: 50%; bottom: 12%; width: 152px; height: 214px; margin-left: -76px;
  border-radius: 16px; transform-origin: 50% 125%; padding: 12px 14px;
  background: linear-gradient(158deg, #ffffff 0%, #eef3fc 58%, #e3ecfa 100%);
  box-shadow: 0 28px 54px -16px rgba(4,12,30,.7), 0 6px 14px rgba(4,12,30,.4);
  border: 1px solid rgba(255,255,255,.9);
  animation: dealIn .75s cubic-bezier(.2,.8,.25,1) backwards;
}
.pcard::after { content:""; position:absolute; inset:6px; border-radius:11px; border:1.5px solid rgba(247,184,30,.5); pointer-events:none; }
.pcard .sheen { position:absolute; inset:0; border-radius:16px; pointer-events:none; background: linear-gradient(132deg, rgba(255,255,255,.6) 0%, rgba(255,255,255,0) 40%); }
.pcard .corner { position:absolute; font-family: var(--font-body); font-weight:800; font-size:1rem; line-height:.92; text-align:center; }
.pcard .corner small { display:block; font-size:1.05rem; }
.pcard .corner.tl { top:9px; left:12px; }
.pcard .corner.br { bottom:9px; right:12px; transform:rotate(180deg); }
.pcard .pip { position:absolute; left:50%; top:50%; transform:translate(-50%,-50%); font-size:5rem; line-height:1; }
.pcard--spade   { color:#0c1830; transform:rotate(-24deg) translateY(6px);  z-index:1; animation-delay:.05s; }
.pcard--heart   { color:#d6203c; transform:rotate(0deg)   translateY(-18px); z-index:3; animation-delay:.2s; }
.pcard--diamond { color:#d6203c; transform:rotate(24deg)  translateY(6px);  z-index:2; animation-delay:.35s; }
@keyframes dealIn { from { opacity:0; transform: translateY(70px) rotate(-4deg) scale(.92); } }

.chip-stack { position: absolute; right: 0; bottom: 4%; z-index: 5; }
.poker-chip {
  position: relative; width: 132px; height: 132px; border-radius: 50%;
  background: radial-gradient(circle at 36% 30%, #ffe487, #f7b81e 46%, #df8d0b 100%);
  box-shadow: 0 24px 48px -10px rgba(226,146,15,.6), 0 7px 0 -3px #c9810c, 0 13px 0 -6px #b9760b, inset 0 2px 7px rgba(255,255,255,.55);
  display: flex; flex-direction: column; align-items: center; justify-content: center; text-align: center; color: #3a2400;
}
.poker-chip::before { content:""; position:absolute; inset:9px; border-radius:50%; border:3px dashed rgba(255,255,255,.85); }
.poker-chip::after  { content:""; position:absolute; inset:21px; border-radius:50%; background: radial-gradient(circle at 40% 34%, #fff3cf, #f4b524); box-shadow: inset 0 0 0 2px rgba(58,36,0,.12); }
.poker-chip .num { position:relative; z-index:1; font-family: var(--font-heading); font-size: 1.8rem; font-weight:700; line-height:1; }
.poker-chip .lbl { position:relative; z-index:1; font-size:.55rem; font-weight:800; text-transform:uppercase; letter-spacing:.1em; margin-top:3px; }

/* ---------- 9. Hero stat strip bridge ---------- */
.hero-bridge { position: relative; z-index: 5; }
.hero-stats-strip {
  margin-top: -3.25rem; position: relative;
  display: grid; grid-template-columns: repeat(4, minmax(0,1fr));
  background: var(--bg-card); border: 1px solid var(--border);
  border-radius: var(--card-radius); overflow: hidden; box-shadow: var(--shadow-card);
}
.hero-stats-strip::before { content:""; position:absolute; top:0; left:0; right:0; height:4px; background: var(--stripe); z-index:3; }
.stat-tile { padding: 1.7rem 1.25rem 1.5rem; text-align: center; position: relative; transition: background .25s ease; }
.stat-tile + .stat-tile { box-shadow: inset 1px 0 0 var(--border); }
.stat-tile + .stat-tile::after { content:"◆"; position:absolute; left:0; top:50%; transform:translate(-50%,-50%); color:var(--accent); font-size:.6rem; background:var(--bg-card); padding:7px 2px; line-height:1; }
.stat-tile:hover { background: linear-gradient(180deg, #ffffff, #f3f8ff); }
.stat-ico { display:inline-flex; align-items:center; justify-content:center; width:46px; height:46px; border-radius:14px; margin-bottom:.7rem; font-size:1.3rem; background: linear-gradient(140deg, rgba(31,111,229,.13), rgba(247,184,30,.18)); border:1px solid var(--border-soft); }
.stat-num { display:block; font-family: var(--font-heading); font-size: clamp(1.8rem,3vw,2.35rem); font-weight:700; line-height:1; background: linear-gradient(118deg, var(--brand) 28%, var(--accent-warm)); -webkit-background-clip:text; background-clip:text; color:transparent; }
.stat-num em { font-style:normal; -webkit-text-fill-color: var(--accent-warm); }
.stat-label { display:block; margin-top:.5rem; font-size:.82rem; font-weight:700; color: var(--text-muted); letter-spacing:.02em; }

/* ---------- 10. Cards (universal) ---------- */
.card, .plain-card, .support-card, .tile, .floor-grid--rich .rich-tile,
.security-cell, .reward-card, .split-card, .image-divider .img-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--card-radius);
  box-shadow: var(--shadow-card);
  position: relative; overflow: hidden;
}
.card-stripe::before, .plain-card::before, .support-card::before, .tile::before,
.reward-card::before, .split-card::before {
  content: ""; position: absolute; top: 0; left: 0; right: 0; height: 5px; background: var(--stripe);
}
.card-watermark, .plain-card > .wm, .support-card > .wm, .tile > .wm, .reward-card > .wm {
  position: absolute; right: -0.2rem; bottom: -1.5rem; font-family: var(--font-heading); font-style: italic;
  font-size: 6rem; font-weight: 600; color: rgba(31,111,229,.05); pointer-events: none; transition: color .3s ease; line-height: 1;
}
.tile:hover > .wm, .reward-card:hover > .wm { color: rgba(247,184,30,.12); }

/* ---------- 11. Section wrappers (full-width container) ---------- */
.builder-section { padding: 40px 0; }
.builder-section .container > * { width: 100%; }

/* plain-card / intro-block — FULL container width (no narrow measure) */
.plain-card, .intro-block, .support-card {
  width: 100%; margin-inline: auto;
  padding: clamp(1.8rem, 3.2vw, 2.8rem);
}
.plain-card p + p, .intro-block p + p, .support-card p + p { margin-top: 1rem; }
.plain-card > h2, .plain-card > h3 { margin-bottom: 0.85rem; }
.intro-block { background: linear-gradient(180deg, #ffffff, #f7faff); }
.intro-block .lede-eyebrow { margin-bottom: 0.6rem; }

/* Floor grids (column variants — R3) */
.floor-grid { display: grid; gap: 1.25rem; width: 100%; }
.floor-grid--cols-1 { grid-template-columns: 1fr; }
.floor-grid--cols-2 { grid-template-columns: repeat(2, 1fr); }
.floor-grid--cols-3 { grid-template-columns: repeat(3, 1fr); }
.floor-grid--cols-4 { grid-template-columns: repeat(4, 1fr); }
.floor-grid .tile { padding: 1.6rem 1.5rem 1.9rem; transition: transform .22s ease, box-shadow .28s ease; }
.floor-grid .tile:hover { transform: translateY(-4px); box-shadow: var(--shadow-card-hover); }
.floor-grid .tile h3 { margin-bottom: 0.5rem; }
.floor-grid .tile h3 a { color: var(--brand-dark); }
.floor-grid .tile h3 a:hover { color: var(--brand); }
.floor-grid .tile p { font-size: 0.97rem; }
.floor-grid .tile .tile-link { display: inline-flex; align-items: center; gap: 0.35rem; margin-top: 0.9rem; font-weight: 700; font-size: 0.9rem; color: var(--brand); }
.floor-grid .tile .tile-link::after { content: "→"; transition: transform .2s ease; }
.floor-grid .tile:hover .tile-link::after { transform: translateX(4px); }

/* Floor grid — RICH variant (R4b) FULL WIDTH */
.floor-grid--rich { grid-template-columns: 1fr; width: 100%; margin-inline: auto; }
.floor-grid--rich .rich-tile { padding: clamp(1.8rem, 3vw, 2.4rem); }
.floor-grid--rich .rich-tile > h3 { font-size: clamp(1.3rem,2.4vw,1.7rem); margin-bottom: 0.6rem; }
.floor-grid--rich .rich-tile > p { margin-bottom: 0.4rem; }
.floor-grid--rich .rich-tile h4 {
  text-transform: uppercase; letter-spacing: 0.18em; font-family: var(--font-body); font-weight: 800;
  font-size: 0.78rem; color: var(--brand-dark); border-top: 2px solid var(--brand);
  padding-top: 0.9rem; margin-top: 1.6rem; margin-bottom: 0.9rem;
}
.floor-grid--rich .rich-tile ul, .floor-grid--rich .rich-tile ol { list-style: none; padding: 0; display: grid; gap: 0.7rem; }
.floor-grid--rich .rich-tile li {
  background: var(--bg); border: 1px solid var(--border); border-radius: var(--r-md);
  padding: 1rem 1.15rem 1rem 1.45rem; position: relative; color: var(--text); overflow: hidden;
}
.floor-grid--rich .rich-tile li::before { content: ""; position: absolute; left: 0; top: 0; bottom: 0; width: 3px; background: linear-gradient(180deg, var(--accent), var(--brand)); }

/* ---------- 12. Split layout ---------- */
.split-layout { display: grid; grid-template-columns: 1fr 1fr; gap: 1.5rem; width: 100%; align-items: stretch; }
.split-layout--rev .split-media { order: 2; }
.split-card { padding: clamp(1.8rem, 3vw, 2.6rem); display: flex; flex-direction: column; justify-content: center; }
.split-media { border-radius: var(--card-radius); overflow: hidden; border: 1px solid var(--border); box-shadow: var(--shadow-card); min-height: 320px; }
.split-media img { width: 100%; height: 100%; object-fit: cover; }
.split-card h2, .split-card h3 { margin-bottom: 0.9rem; }

/* ---------- 13. Feature check-list ---------- */
.feature-check-list { list-style: none; padding: clamp(1.6rem,2.8vw,2.2rem); display: grid; gap: 1rem; width: 100%;
  background: linear-gradient(135deg, rgba(247,184,30,.10), rgba(247,184,30,.03));
  border: 1px solid var(--accent-soft); border-left: 4px solid var(--accent); border-radius: var(--card-radius); }
.feature-check-list--plain { margin-inline: auto; }
.feature-check-list li { position: relative; padding-left: 2.4rem; color: var(--text); }
.feature-check-list li::before {
  content: "✓"; position: absolute; left: 0; top: 0; width: 1.7rem; height: 1.7rem; border-radius: 50%;
  background: var(--grad-gold); color: #3a2400; font-weight: 800; font-size: 0.9rem;
  display: flex; align-items: center; justify-content: center; box-shadow: 0 4px 10px -3px rgba(226,146,15,.5);
}
.feature-check-list li strong { display: block; }

/* ---------- 14. Security grid (art-deco 4-up) ---------- */
.security-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.1rem; width: 100%; }
.security-cell {
  padding: 1.8rem 1.4rem; text-align: center; background: var(--brand-dark); color: var(--text-on-dark);
  border: 1px solid rgba(255,255,255,.08); position: relative;
}
.security-cell::before { content: ""; position: absolute; inset: 0; background:
  radial-gradient(120px 80px at 50% 0%, rgba(247,184,30,.16), transparent 70%); }
.security-cell .deco-frame { position: absolute; inset: 10px; border: 1px solid rgba(247,184,30,.28); border-radius: 10px; pointer-events: none; }
.security-cell .deco-frame::before, .security-cell .deco-frame::after { content: "◆"; position: absolute; color: var(--accent); font-size: .7rem; left: 50%; transform: translateX(-50%); }
.security-cell .deco-frame::before { top: -6px; } .security-cell .deco-frame::after { bottom: -6px; }
.security-cell .sec-ico { font-size: 1.7rem; margin-bottom: 0.6rem; position: relative; }
.security-cell h3, .security-cell h4 { color: #fff; font-size: 1.05rem; margin-bottom: 0.4rem; position: relative; }
.security-cell p { color: var(--text-on-dark-dim); font-size: 0.9rem; position: relative; }

/* ---------- 15. Rewards bento ---------- */
.rewards-bento { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.1rem; width: 100%; grid-auto-rows: 1fr; }
.reward-card { padding: 1.7rem 1.5rem; }
.reward-card h3 { margin-bottom: 0.4rem; }
.reward-card p { font-size: 0.96rem; }
.reward-card--welcome { grid-column: 1; grid-row: 1 / span 2; background: var(--grad-brand); color: #fff; display: flex; flex-direction: column; justify-content: space-between; }
.reward-card--welcome::before { background: var(--grad-gold); }
.reward-card--welcome h3, .reward-card--welcome .wm { color: #fff; }
.reward-card--welcome p { color: rgba(255,255,255,.85); }
.reward-card--welcome .welcome-badge { font-family: var(--font-heading); font-size: 2.6rem; font-weight: 700; color: var(--accent); }
.reward-card--vip { grid-column: 2 / -1; grid-row: 2; background: var(--brand-dark); color: #fff; display: flex; flex-wrap: wrap; align-items: center; justify-content: space-between; gap: 1rem; }
.reward-card--vip::before { background: var(--grad-gold); }
.reward-card--vip h3, .reward-card--vip .wm { color: #fff; }
.reward-card--vip p { color: var(--text-on-dark-dim); max-width: 48ch; }
/* keep bold labels legible on coloured reward cards */
.reward-card--welcome strong, .reward-card--vip strong { color: #fff; }

/* ---------- 16. Support card ---------- */
.support-card { text-align: center; background: linear-gradient(180deg, #ffffff, #f6f9ff); }
.support-card .wm-big {
  position: absolute; left: 50%; top: 52%; transform: translate(-50%,-50%); font-family: var(--font-heading);
  font-style: italic; font-weight: 600; font-size: clamp(7rem, 22vw, 16rem); color: rgba(31,111,229,.045);
  pointer-events: none; z-index: 0; line-height: 1; white-space: nowrap;
}
.support-card > * { position: relative; z-index: 1; }
.support-card h2 { margin-bottom: 1rem; }
.support-card .support-actions { display: flex; flex-wrap: wrap; gap: 0.9rem; justify-content: center; margin-top: 1.6rem; }

/* ---------- 17. Image divider (contained 2-col — R5b, FULL container width) ---------- */
.image-divider { display: grid; grid-template-columns: 1.2fr 0.8fr; gap: 1.5rem; align-items: center; width: 100%; margin-inline: auto; }
.image-divider .img-card { aspect-ratio: 4 / 3; border-radius: var(--r-xl); }
.image-divider .img-card img { width: 100%; height: 100%; object-fit: cover; }
.image-divider .img-aside { padding-left: 0.5rem; }
.image-divider .img-aside .num { display: none; }
.image-divider .img-aside h3 { font-size: clamp(1.3rem,2.5vw,1.8rem); }

/* ---------- 18. Page hero (inner pages) ---------- */
.page-hero { background: var(--grad-panel); color: var(--text-on-dark); padding: clamp(2.6rem,5vw,4rem) 0 clamp(2.2rem,4vw,3.2rem); position: relative; overflow: hidden; }
.page-hero::after { content: "◆"; position: absolute; right: 4%; top: 30%; font-size: 9rem; color: rgba(247,184,30,.06); }
.breadcrumb { display: flex; flex-wrap: wrap; gap: 0.4rem; font-size: 0.82rem; color: var(--text-on-dark-dim); margin-bottom: 1rem; }
.breadcrumb a { color: var(--text-on-dark-dim); }
.breadcrumb a:hover { color: var(--accent); }
.breadcrumb .sep { opacity: .5; }
.page-hero h1 { color: #fff; max-width: 22ch; }
.page-hero .page-sub { color: var(--text-on-dark-dim); font-size: 1.12rem; margin-top: 0.9rem; max-width: 60ch; }
.page-meta { margin-top: 1rem; font-size: 0.85rem; color: var(--text-on-dark-dim); display: flex; flex-wrap: wrap; gap: 0.4rem; align-items: center; }
.page-meta .page-meta-author { color: var(--accent-soft); font-weight: 600; }
.page-meta time { color: var(--text-on-dark-dim); }

/* ---------- 19. FAQ accordion (FULL width) ---------- */
.faq-section { padding: clamp(2.6rem,5vw,4.2rem) 0; }
.faq-list { width: 100%; margin-inline: auto; display: grid; gap: 0.85rem; }
.faq-item { background: var(--bg-card); border: 1px solid var(--border); border-radius: var(--r-md); box-shadow: var(--shadow-soft); transition: box-shadow .25s ease, transform .2s ease; overflow: hidden; }
.faq-item[open] { box-shadow: var(--shadow-card); }
.faq-item summary { list-style: none; cursor: pointer; display: flex; align-items: center; justify-content: space-between; gap: 1rem; padding: 1.1rem 1.4rem; font-family: var(--font-heading); font-size: 1.08rem; font-weight: 600; color: var(--brand-dark); }
.faq-item summary::-webkit-details-marker { display: none; }
.faq-q { flex: 1; }
.faq-icon { flex-shrink: 0; width: 28px; height: 28px; border-radius: 50%; border: 1.5px solid var(--accent); color: var(--accent-warm); display: flex; align-items: center; justify-content: center; position: relative; transition: transform .3s ease, background .25s ease; }
.faq-icon::before, .faq-icon::after { content: ""; position: absolute; background: currentColor; border-radius: 2px; }
.faq-icon::before { width: 12px; height: 2px; } .faq-icon::after { width: 2px; height: 12px; transition: transform .3s ease; }
.faq-item[open] .faq-icon { background: var(--grad-gold); color: #3a2400; transform: rotate(180deg); }
.faq-item[open] .faq-icon::after { transform: scaleY(0); }
.faq-answer { padding: 0 1.4rem 1.25rem; }
.faq-answer p { color: var(--text-muted); }
.faq-answer p + p { margin-top: 0.7rem; }

/* ---------- 20. Footer (redesigned) ---------- */
.site-footer { position: relative; background: var(--grad-panel); color: var(--text-on-dark); margin-top: 0; }

/* Gold CTA card — sits inside the dark footer with breathing room above */
.footer-cta-wrap { position: relative; padding-top: clamp(3.25rem, 6vw, 4.5rem); }
.footer-cta {
  position: relative;
  background: radial-gradient(120% 160% at 0% 0%, #ffd968 0%, #f7b81e 45%, #e2920f 100%);
  color: #3a2400; border-radius: var(--r-xl);
  padding: clamp(2rem,4vw,3rem) clamp(1.5rem,4vw,3.25rem); overflow: hidden;
  box-shadow: 0 36px 70px -26px rgba(226,146,15,.6); border: 1px solid rgba(255,255,255,.4);
  display: flex; flex-wrap: wrap; align-items: center; justify-content: space-between; gap: 1.5rem; width: 100%;
}
.footer-cta::before { content:""; position:absolute; inset:0; pointer-events:none;
  background: radial-gradient(circle at 88% 120%, rgba(255,255,255,.5), transparent 42%); }
.footer-cta .wm-brand { position: absolute; right: -0.6rem; bottom: -3.4rem; font-family: var(--font-heading); font-style: italic; font-weight: 700; font-size: clamp(6rem,15vw,11rem); color: rgba(58,36,0,.10); pointer-events: none; line-height: 1; }
.footer-cta-chip { position:absolute; left: 50%; top: -26px; width:52px; height:52px; border-radius:50%; background: var(--brand-dark); color: var(--accent); display:flex; align-items:center; justify-content:center; font-size:1.4rem; box-shadow:0 10px 22px -8px rgba(0,0,0,.5); border:3px dashed rgba(247,184,30,.6); transform:translateX(-50%); }
.footer-cta-text { position: relative; }
.footer-cta-kicker { display:inline-block; font-size:.72rem; font-weight:800; letter-spacing:.2em; text-transform:uppercase; color:#7a4d00; margin-bottom:.4rem; }
.footer-cta h2 { color: #241500; position: relative; max-width: 20ch; }
.footer-cta p { color: rgba(58,36,0,.82); position: relative; margin-top:.35rem; }
.footer-cta .footer-cta-actions { display: flex; flex-wrap: wrap; gap: 0.85rem; position: relative; }
.footer-cta .btn-secondary { background: var(--brand-dark); color: #fff; box-shadow: 0 12px 26px -12px rgba(0,0,0,.5); }
.footer-cta .btn-ghost { border-color: rgba(58,36,0,.45); color: #241500; }
.footer-cta .btn-ghost:hover { border-color: var(--brand-dark); color: var(--brand-dark); }

/* Signature diamond ribbon */
.footer-ribbon { height: 16px; margin-top: .5rem;
  background-image: radial-gradient(var(--accent) 1.6px, transparent 2px);
  background-size: 26px 16px; background-position: center; background-repeat: repeat-x; opacity:.4; }

.footer-main { padding: 1.25rem 0 2.5rem; position: relative; overflow: hidden; }
.footer-wm { position:absolute; left:50%; bottom:-2.6rem; transform:translateX(-50%); font-family:var(--font-heading); font-style:italic; font-weight:700; font-size:clamp(7rem,20vw,15rem); color:rgba(255,255,255,.028); white-space:nowrap; pointer-events:none; letter-spacing:-.02em; }
.footer-grid { display: grid; grid-template-columns: 1.5fr 1fr 1fr 1fr; gap: 2.5rem 2rem; width: 100%; position: relative; }
.footer-brand { position: relative; padding-left: 1.1rem; }
.footer-brand::before { content:""; position:absolute; left:0; top:6px; bottom:6px; width:3px; border-radius:3px; background: var(--grad-gold); }
.footer-brand img { height: 84px; width: auto; object-fit: contain; }
.footer-brand .footer-tagline { color: var(--text-on-dark-dim); margin-top: 0.9rem; max-width: 36ch; font-size: 0.95rem; }
.footer-pay-label { display:block; font-size:.66rem; font-weight:800; letter-spacing:.16em; text-transform:uppercase; color: var(--accent-soft); margin:1.2rem 0 .55rem; }
.payment-pills { display: flex; flex-wrap: wrap; gap: 0.5rem; }
.payment-pills span { font-size: 0.72rem; font-weight: 700; letter-spacing: .02em; padding: 0.4rem 0.75rem; border-radius: var(--r-pill); background: rgba(255,255,255,.06); border: 1px solid rgba(255,255,255,.13); color: var(--text-on-dark); }
.footer-age { display:inline-flex; align-items:center; gap:.45rem; margin-top:1.1rem; font-size:.78rem; font-weight:700; color:var(--accent-soft); border:1px solid rgba(247,184,30,.4); border-radius:var(--r-pill); padding:.35rem .8rem; }
.footer-age::before { content:"18+"; font-weight:800; color:#3a2400; background:var(--grad-gold); border-radius:var(--r-pill); padding:.05rem .4rem; font-size:.7rem; }
.footer-col h4 { color: #fff; font-style: italic; font-size: 1.18rem; margin-bottom: 1rem; position: relative; padding-bottom: 0.5rem; }
.footer-col h4::after { content: ""; position: absolute; left: 0; bottom: 0; width: 30px; height: 3px; border-radius: 3px; background: var(--grad-gold); }
.footer-col ul { list-style: none; padding: 0; display: grid; gap: 0.15rem; }
.footer-col a { display:inline-flex; align-items:center; color: var(--text-on-dark-dim); font-size: 0.95rem; padding: .28rem 0 .28rem 0; position: relative; transition: color .2s ease, padding-left .2s ease; }
.footer-col a::before { content:"◆"; color: var(--accent); font-size:.5em; position:absolute; left:0; top:50%; transform:translateY(-50%) translateX(-8px); opacity:0; transition: opacity .2s ease, transform .2s ease; }
.footer-col a:hover { color: var(--accent-soft); padding-left: 16px; }
.footer-col a:hover::before { opacity:1; transform:translateY(-50%) translateX(0); }

.footer-trust { border-top: 1px solid rgba(255,255,255,.08); padding: 1.15rem 0; }
.footer-trust .container { display: flex; flex-wrap: wrap; gap: 1.5rem; justify-content: center; }
.footer-trust .trust-pill { display: inline-flex; align-items: center; gap: 0.45rem; font-size: 0.82rem; font-weight: 600; color: var(--text-on-dark-dim); }
.footer-trust .trust-pill::before { content: "◆"; color: var(--accent); font-size: .65em; }

.footer-bottom { border-top: 1px solid rgba(255,255,255,.08); padding: 1.3rem 0 2rem; }
.footer-bottom .container { display: flex; flex-wrap: wrap; gap: 0.6rem 1.5rem; justify-content: space-between; align-items: center; }
.footer-bottom p { font-size: 0.82rem; color: var(--text-on-dark-dim); }
.footer-bottom .rg-disclaimer { font-style: italic; max-width: 60ch; }
.footer-bottom .footer-bottom-left { display:flex; flex-wrap:wrap; align-items:center; gap:.5rem .9rem; }
.footer-bottom .age-badge { font-weight: 800; color: var(--accent); border: 1.5px solid var(--accent); border-radius: var(--r-pill); padding: 0.1rem 0.55rem; font-size: 0.78rem; }
.footer-totop { display:inline-flex; align-items:center; gap:.4rem; font-weight:700; font-size:.82rem; color:var(--text-on-dark-dim); }
.footer-totop:hover { color: var(--accent-soft); }
.footer-totop::after { content:"↑"; display:inline-flex; align-items:center; justify-content:center; width:26px; height:26px; border-radius:50%; border:1px solid rgba(255,255,255,.2); }

/* ---------- 21. 404 ---------- */
.err-404 { min-height: 70vh; display: flex; flex-direction: column; align-items: center; justify-content: center; text-align: center; padding: 4rem var(--gutter); }
.err-404 .glyph { font-family: var(--font-heading); font-style: italic; font-weight: 700; font-size: clamp(8rem, 22vw, 18rem); line-height: 0.9;
  background: var(--stripe); -webkit-background-clip: text; background-clip: text; color: transparent; }
.err-404 h1 { margin: 0.5rem 0 0.8rem; }
.err-404 p { max-width: 48ch; margin-bottom: 1.6rem; }
.err-404 .err-actions { display: flex; flex-wrap: wrap; gap: 0.85rem; justify-content: center; }

/* ---------- 22. Intro chips (home why-list) ---------- */
.chip-list { list-style: none; padding: 0; display: flex; flex-wrap: wrap; gap: 0.7rem; margin-top: 1.3rem; }
.chip-list li { display: inline-flex; align-items: center; gap: 0.5rem; background: var(--bg-card); border: 1px solid var(--border); border-radius: var(--r-pill); padding: 0.6rem 1.1rem; font-weight: 600; font-size: 0.95rem; color: var(--text); box-shadow: var(--shadow-soft); }
.chip-list li::before { content: "✦"; color: var(--accent); }

/* ---------- 23. Bento floor (home signature) ---------- */
.bento-floor { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.1rem; width: 100%; grid-auto-rows: 1fr; }
.bento-tile { position: relative; overflow: hidden; border-radius: var(--card-radius); border: 1px solid var(--border); background: var(--bg-card); box-shadow: var(--shadow-card); padding: 1.7rem 1.5rem 1.9rem; transition: transform .22s ease, box-shadow .28s ease; display: flex; flex-direction: column; }
.bento-tile::before { content: ""; position: absolute; top: 0; left: 0; right: 0; height: 5px; background: var(--stripe); }
.bento-tile:hover { transform: translateY(-5px); box-shadow: var(--shadow-card-hover); }
.bento-tile .bento-ico { font-size: 1.9rem; margin-bottom: 0.7rem; }
.bento-tile h3 { margin-bottom: 0.45rem; }
.bento-tile h3 a { color: var(--brand-dark); } .bento-tile:hover h3 a { color: var(--brand); }
.bento-tile p { font-size: 0.95rem; flex: 1; }
.bento-tile .tile-link { display: inline-flex; align-items: center; gap: 0.35rem; margin-top: 1rem; font-weight: 700; font-size: 0.88rem; color: var(--brand); }
.bento-tile .tile-link::after { content: "→"; transition: transform .2s ease; }
.bento-tile:hover .tile-link::after { transform: translateX(4px); }
.bento-tile--feature { grid-column: span 2; background: var(--grad-panel); color: var(--text-on-dark); }
.bento-tile--feature h3 a, .bento-tile--feature h3 { color: #fff; }
.bento-tile--feature p { color: var(--text-on-dark-dim); }
.bento-tile--feature .wm { position: absolute; right: -.5rem; bottom: -2rem; font-family: var(--font-heading); font-style: italic; font-size: 7rem; color: rgba(255,255,255,.05); }

/* ---------- 24. Responsive ---------- */
@media (max-width: 1100px) {
  .hero-inner { grid-template-columns: 1fr; }
  .hero-art { min-height: 300px; max-width: 460px; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 1.5rem 2rem; }
  .footer-brand { grid-column: 1 / -1; }
}
@media (max-width: 900px) {
  .primary-nav, .header-cta { display: none; }
  .nav-toggle { display: block; }
  .floor-grid--cols-3, .floor-grid--cols-4 { grid-template-columns: repeat(2, 1fr); }
  .security-grid { grid-template-columns: repeat(2, 1fr); }
  .rewards-bento, .bento-floor { grid-template-columns: repeat(2, 1fr); }
  .bento-tile--feature { grid-column: span 2; }
  .reward-card--welcome { grid-column: 1 / -1; grid-row: auto; }
  .reward-card--vip { grid-column: 1 / -1; grid-row: auto; }
  .split-layout { grid-template-columns: 1fr; }
  .split-layout--rev .split-media { order: 0; }
  .split-media { min-height: 240px; }
  .image-divider { grid-template-columns: 1fr; }
  .hero-stats-strip { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 700px) {
  body { font-size: 16px; }
  .header-top .util-nav { display: none; }
  .footer-cta { flex-direction: column; align-items: flex-start; }
  .footer-bottom .container { flex-direction: column; align-items: flex-start; }
}
@media (max-width: 560px) {
  .floor-grid--cols-2, .floor-grid--cols-3, .floor-grid--cols-4 { grid-template-columns: 1fr; }
  .security-grid, .rewards-bento, .bento-floor { grid-template-columns: 1fr; }
  .bento-tile--feature, .reward-card--vip { grid-column: 1 / -1; }
  .hero-stats-strip { grid-template-columns: 1fr 1fr; }
  .hero-art { display: none; }
  .footer-grid { grid-template-columns: 1fr; }
}
@media (max-width: 480px) {
  .hero-actions .btn-primary, .hero-actions .btn-secondary { width: 100%; }
  .hero-proof { width: 100%; }
}

/* ---------- 25. RTL (Punjabi / Shahmukhi mirror) ---------- */
[dir="rtl"] { text-align: right; }
[dir="rtl"] ul, [dir="rtl"] ol { padding-left: 0; padding-right: 1.2rem; }
[dir="rtl"] .feature-check-list li { padding-left: 0; padding-right: 2.4rem; }
[dir="rtl"] .feature-check-list li::before { left: auto; right: 0; }
[dir="rtl"] .feature-check-list { border-left: none; border-right: 4px solid var(--accent); }
[dir="rtl"] .floor-grid--rich .rich-tile li { padding: 1rem 1.45rem 1rem 1.15rem; }
[dir="rtl"] .floor-grid--rich .rich-tile li::before { left: auto; right: 0; }
[dir="rtl"] .primary-nav { margin-left: 0; margin-right: auto; }
[dir="rtl"] .kicker { letter-spacing: 0; }
[dir="rtl"] .hero-content { max-width: none; }
[dir="rtl"] .lang-note { font-family: var(--font-body); }

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

/* ---------- 27. Utilities ---------- */
.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; }
.text-center { text-align: center; }
.mt-0 { margin-top: 0; }
