/* ==========================================================================
   Lucky Spin (lukyspingame.com) - site.css
   Direction: follows the luckyspins.com reference. Charcoal slabs and
   sunflower-yellow bands, Bitter slab display type, square-cornered boxes.
   Signature ornament: faceted triangle tessellation (yellow bands) and a
   four-facet tile glyph. Shape lock: all-sharp 2-6px radii everywhere.
   ========================================================================== */

:root {
  --brand: #fbcd2b;
  --brand-dark: #e2ad0e;
  --brand-light: #ffe27a;
  --accent: #d83939;
  --accent-warm: #ef7d2d;
  --accent-soft: #fbe4e1;

  --ink: #1f1f1f;
  --bg: #f6f6f6;
  --bg-card: #ffffff;
  --bg-elevated: #ffffff;
  --bg-panel: #2f2f2f;

  --text: #2f2f2f;
  --text-muted: #555555;
  --text-dim: #7e7e7e;
  --text-on-dark: #f6f3ea;

  --border: rgba(47, 47, 47, .12);
  --border-strong: rgba(47, 47, 47, .28);
  --border-soft: rgba(47, 47, 47, .06);

  --font-heading: "Bitter", Georgia, serif;
  --font-body: "Mulish", "Segoe UI", system-ui, sans-serif;

  /* Sharp system, taken from the reference's square boxes. */
  --r-sm: 2px;
  --r-md: 4px;
  --r-lg: 5px;
  --r-xl: 6px;
  --r-pill: 999px;
  --card-radius: 4px;

  --shadow-soft: 0 1px 2px rgba(47, 38, 10, .06), 0 4px 14px rgba(47, 38, 10, .06);
  --shadow-card: 0 1px 2px rgba(47, 38, 10, .08), 0 12px 28px -8px rgba(47, 38, 10, .16);
  --shadow-card-hover: 0 2px 4px rgba(47, 38, 10, .1), 0 22px 40px -10px rgba(47, 38, 10, .26);
  --shadow-cta: 0 3px 0 var(--brand-dark), 0 10px 22px -8px rgba(226, 173, 14, .55);

  --container: 1200px;
  --container-wide: 1320px;
  --header-top-h: 2.25rem;
  --header-main-h: 4.5rem;
  --header-h: calc(var(--header-top-h) + var(--header-main-h));

  --ease: cubic-bezier(.16, 1, .3, 1);
  --tess: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='120' height='104' viewBox='0 0 120 104'%3E%3Cpath d='M0 0h60L30 52z' fill='%23fff' fill-opacity='.22'/%3E%3Cpath d='M60 0h60L90 52z' fill='%23000' fill-opacity='.05'/%3E%3Cpath d='M30 52h60L60 0z' fill='%23fff' fill-opacity='.08'/%3E%3Cpath d='M0 104h60L30 52z' fill='%23000' fill-opacity='.06'/%3E%3Cpath d='M60 104h60L90 52z' fill='%23fff' fill-opacity='.18'/%3E%3Cpath d='M30 52h60l-30 52z' fill='%23000' fill-opacity='.03'/%3E%3C/svg%3E");
}

/* ---------- base ---------- */
*, *::before, *::after { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; scroll-padding-top: calc(var(--header-h) + 1rem); }
body {
  margin: 0;
  background: var(--bg);
  color: var(--text);
  font-family: var(--font-body);
  font-size: 1.0625rem;
  line-height: 1.7;
  overflow-x: hidden;
}
body.nav-open { overflow: hidden; }
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; }
p a, li a { color: var(--accent); text-decoration-thickness: 1px; text-underline-offset: 3px; }
p a:hover, li a:hover { color: var(--ink); }
h1, h2, h3, h4 { font-family: var(--font-heading); color: var(--ink); line-height: 1.18; margin: 0 0 .6em; letter-spacing: -.01em; }
h1 { font-size: clamp(2rem, 1.2rem + 2.6vw, 3.1rem); font-weight: 800; }
h2 { font-size: clamp(1.55rem, 1.1rem + 1.4vw, 2.2rem); font-weight: 800; }
h3 { font-size: clamp(1.15rem, 1rem + .45vw, 1.35rem); font-weight: 700; }
h4 { font-size: .95rem; }
p { margin: 0 0 1em; }
strong { font-weight: 800; color: var(--ink); }
:focus-visible { outline: 3px solid var(--accent); outline-offset: 3px; }

.container { width: 100%; max-width: var(--container); margin: 0 auto; padding: 0 1.5rem; }

.skip-link { position: absolute; left: 1rem; top: -4rem; z-index: 200; background: var(--brand); color: var(--ink); padding: .6rem 1rem; font-weight: 800; }
.skip-link:focus { top: .5rem; }
[dir="rtl"] .skip-link { left: auto; right: 1rem; }

/* ---------- buttons (three CTA variants) ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: .5rem;
  min-height: 3rem; padding: .7rem 1.5rem;
  font-family: var(--font-heading); font-weight: 800; font-size: 1.02rem; line-height: 1.1;
  text-decoration: none; white-space: nowrap;
  border: 2px solid transparent; border-radius: var(--r-md);
  cursor: pointer;
  transition: transform .25s var(--ease), box-shadow .25s var(--ease), background-color .2s, color .2s;
}
.btn:active { transform: translateY(1px) scale(.98); }
.btn--sm { min-height: 2.6rem; padding: .5rem 1.1rem; font-size: .95rem; }
.btn--lg { min-height: 3.4rem; padding: .85rem 1.9rem; font-size: 1.1rem; }
/* 1. primary: sunflower on charcoal text */
.btn--primary { background: var(--brand); color: var(--ink); box-shadow: var(--shadow-cta); }
.btn--primary:hover { background: var(--brand-light); transform: translateY(-2px); }
/* 2. dark: charcoal slab with yellow label */
.btn--dark { background: var(--bg-panel); color: var(--brand); box-shadow: 0 3px 0 #111; }
.btn--dark:hover { background: var(--ink); transform: translateY(-2px); }
/* 3. ghost: yellow outline on dark */
.btn--ghost { background: transparent; color: var(--text-on-dark); border-color: rgba(251, 205, 43, .7); }
.btn--ghost:hover { background: rgba(251, 205, 43, .12); color: var(--brand); }
.btn--ghost-dark { background: transparent; color: var(--ink); border-color: var(--border-strong); }
.btn--ghost-dark:hover { border-color: var(--ink); }

.text-link { display: inline-flex; align-items: center; gap: .4rem; font-family: var(--font-heading); font-weight: 800; color: var(--ink); text-decoration: none; border-bottom: 2px solid var(--brand); padding-bottom: 2px; }
.text-link:hover { border-color: var(--accent); }
.text-link i { transition: transform .25s var(--ease); }
.text-link:hover i { transform: translateX(3px); }

.kicker { display: inline-block; font-family: var(--font-body); font-weight: 800; font-size: .74rem; letter-spacing: .18em; text-transform: uppercase; color: var(--accent); }

/* ---------- header ---------- */
.site-header { position: sticky; top: 0; z-index: 100; }
.header-top { background: #161616; color: #cfcac0; font-size: .8rem; height: var(--header-top-h); }
.header-top__inner { height: 100%; display: flex; align-items: center; justify-content: space-between; gap: 1rem; }
.header-top__trust { margin: 0; display: flex; align-items: center; gap: .55rem; font-weight: 700; letter-spacing: .04em; white-space: nowrap; }
.pulse-dot { width: 8px; height: 8px; border-radius: 50%; background: var(--brand); box-shadow: 0 0 0 0 rgba(251, 205, 43, .6); animation: pulse 2.4s infinite; }
@keyframes pulse { 0% { box-shadow: 0 0 0 0 rgba(251, 205, 43, .55); } 70% { box-shadow: 0 0 0 8px rgba(251, 205, 43, 0); } 100% { box-shadow: 0 0 0 0 rgba(251, 205, 43, 0); } }
.header-top__links { display: flex; gap: 1.25rem; }
.header-top__links a { text-decoration: none; font-weight: 700; }
.header-top__links a:hover { color: var(--brand); }

.header-main { background: var(--bg-panel); height: var(--header-main-h); transition: box-shadow .3s; }
.site-header.is-scrolled .header-main { box-shadow: 0 10px 24px -12px rgba(0, 0, 0, .55); }
.header-main__inner { height: 100%; display: flex; align-items: center; gap: 2rem; }
.brand { flex: none; display: flex; align-items: center; }
.brand img { height: 30px; width: auto; object-fit: contain; }
.primary-nav { position: relative; margin-left: auto; }
.primary-nav ul { list-style: none; margin: 0; padding: 0; display: flex; gap: 1.75rem; }
.primary-nav ul a {
  display: block; padding: .6rem 0; text-decoration: none;
  font-family: var(--font-heading); font-weight: 800; font-size: .95rem; letter-spacing: .03em; text-transform: uppercase;
  color: var(--brand);
}
.primary-nav ul a:hover, .primary-nav ul a.active { color: #fff; }
.nav-indicator { position: absolute; left: 0; bottom: 0; height: 3px; width: 0; background: var(--brand); transition: transform .35s var(--ease), width .35s var(--ease), opacity .2s; opacity: 0; pointer-events: none; }
.primary-nav__extra { display: none; }
.header-cta { flex: none; }
.burger { display: none; width: 44px; height: 44px; background: transparent; border: 0; padding: 10px; cursor: pointer; flex: none; }
.burger span { display: block; height: 3px; background: var(--brand); margin: 5px 0; transition: transform .3s var(--ease), opacity .2s; }
.burger[aria-expanded="true"] span:nth-child(1) { transform: translateY(8px) rotate(45deg); }
.burger[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.burger[aria-expanded="true"] span:nth-child(3) { transform: translateY(-8px) rotate(-45deg); }

/* ---------- home hero: boxed centre slab over full-bleed art ---------- */
.hero { position: relative; isolation: isolate; background: radial-gradient(ellipse at 50% 40%, #6b5410 0%, #2a2410 45%, #161616 100%); padding-bottom: 5.5rem; overflow: hidden; }
.hero__art { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; z-index: -2; }
.hero::after {
  content: ""; position: absolute; inset: 0; z-index: -1;
  background:
    radial-gradient(ellipse 60% 55% at 50% 55%, rgba(22, 22, 22, .55), transparent 70%),
    linear-gradient(180deg, rgba(22, 22, 22, .15) 0%, rgba(22, 22, 22, .35) 60%, rgba(246, 246, 246, 0) 100%);
}
.hero__rail { background: var(--brand); }
.hero__rail-inner { display: flex; justify-content: center; gap: 2rem; min-height: 2.6rem; align-items: center; flex-wrap: wrap; }
.hero__rail a { display: inline-flex; align-items: center; gap: .45rem; font-family: var(--font-heading); font-weight: 800; font-size: .92rem; color: var(--ink); text-decoration: none; padding: .35rem 0; }
.hero__rail a:hover { color: var(--accent); }
.hero__rail i { font-size: 1.1rem; }
.hero__stage { padding-top: clamp(2.5rem, 6vw, 5rem); }

.slab { position: relative; background: var(--bg-panel); color: var(--text-on-dark); border-radius: var(--r-md); box-shadow: 0 30px 60px -20px rgba(0, 0, 0, .6); }
.slab::before { content: ""; z-index: 2; position: absolute; left: 0; right: 0; top: 0; height: 5px; background: linear-gradient(90deg, var(--brand), var(--brand-light) 50%, var(--brand)); border-radius: var(--r-md) var(--r-md) 0 0; }
.slab h1 { color: #fff; }
.slab--hero { display: grid; grid-template-columns: 150px minmax(0, 1fr) 150px; align-items: stretch; overflow: hidden; }
.slab__copy { padding: clamp(2rem, 4vw, 3.25rem) clamp(1.25rem, 3vw, 2.5rem); text-align: center; }
.slab__copy h1 { font-size: clamp(1.9rem, 1.2rem + 2.2vw, 2.9rem); }
.slab__sub { color: #d9d5cb; font-size: 1.05rem; margin: 0 auto 1.6rem; }
.slab__ctas { display: flex; flex-wrap: wrap; gap: .85rem; justify-content: center; }

/* italic accent word with a translucent marker underline (D3.3) */
.highlight {
  font-style: italic; color: var(--brand);
  line-height: 1.1; padding-bottom: .08em;
  background: linear-gradient(transparent 68%, rgba(251, 205, 43, .28) 68%, rgba(251, 205, 43, .28) 92%, transparent 92%);
  -webkit-box-decoration-break: clone; box-decoration-break: clone;
}

/* twin coin cascades inside the slab edges (decorative, aria-hidden) */
.coin-cascade { position: relative; overflow: hidden; background: repeating-linear-gradient(135deg, #2a2a2a 0 14px, #333 14px 28px); }
.coin-cascade--left { border-right: 1px solid rgba(251, 205, 43, .18); }
.coin-cascade--right { border-left: 1px solid rgba(251, 205, 43, .18); }
.coin-cascade span {
  position: absolute; left: 50%; width: 58px; height: 58px; margin-left: -29px; border-radius: 50%;
  background:
    radial-gradient(circle at 50% 50%, transparent 38%, rgba(0, 0, 0, .18) 39%, transparent 42%),
    radial-gradient(circle at 34% 30%, #fff6c9 0 12%, transparent 30%),
    radial-gradient(circle, var(--brand-light) 0 55%, var(--brand) 56% 78%, var(--brand-dark) 79%);
  box-shadow: 0 6px 0 #9c7607, 0 12px 16px rgba(0, 0, 0, .45);
  top: -70px;
  animation: coin-fall 7s linear infinite;
}
.coin-cascade span:nth-child(1) { animation-delay: 0s; transform: translateX(-18px); }
.coin-cascade span:nth-child(2) { animation-delay: -1s; transform: translateX(16px) scale(.8); }
.coin-cascade span:nth-child(3) { animation-delay: -2s; transform: translateX(-6px) scale(.9); }
.coin-cascade span:nth-child(4) { animation-delay: -3s; transform: translateX(22px) scale(.7); }
.coin-cascade span:nth-child(5) { animation-delay: -4s; transform: translateX(-22px) scale(.85); }
.coin-cascade span:nth-child(6) { animation-delay: -5s; transform: translateX(8px); }
.coin-cascade span:nth-child(7) { animation-delay: -6s; transform: translateX(-10px) scale(.75); }
.coin-cascade--right span { animation-duration: 8s; }
@keyframes coin-fall { from { top: -70px; } to { top: 100%; } }

/* ---------- hero-bridge stat strip: normal flow, overlaps the hero ---------- */
.stat-strip {
  position: relative; z-index: 2; list-style: none; margin: -3.25rem 0 0; padding: 0;
  display: grid; grid-template-columns: repeat(4, minmax(0, 1fr));
  background: var(--brand); border-radius: var(--r-md); box-shadow: var(--shadow-card);
  background-image: var(--tess); background-size: 120px 104px;
}
.stat-strip li { padding: 1.2rem 1.35rem; border-left: 1px solid rgba(31, 31, 31, .14); min-width: 0; }
.stat-strip li:first-child { border-left: 0; }
.stat-strip strong { display: block; font-family: var(--font-heading); font-size: clamp(1.2rem, 1rem + .8vw, 1.6rem); line-height: 1.15; }
.stat-strip span { display: block; font-size: .88rem; font-weight: 700; color: #3d3620; line-height: 1.35; margin-top: .2rem; }

/* ---------- sections ---------- */
.section { padding: clamp(3rem, 6vw, 5rem) 0; }
.section--tight { padding: 2.5rem 0 clamp(2rem, 4vw, 3rem); }
.section + .section:not([class*="home-"]):not(.section--faq):not(.section--divider) { padding-top: 0; }
.section--divider { padding: 0 0 clamp(3rem, 6vw, 5rem); }
.section-head { margin: 0 0 1.75rem; }
.section-head h2 { margin-bottom: .45em; }
.section-head > p { color: var(--text-muted); }
.section-head--center { text-align: center; }
.section-intro { margin-bottom: 1.5rem; }

/* four-facet tile glyph: the site's signature ornament */
.ornament {
  display: inline-block; width: 30px; height: 30px; flex: none;
  background: conic-gradient(from 45deg, var(--brand) 0 25%, var(--brand-dark) 0 50%, var(--brand-light) 0 75%, #f0bb17 0);
  clip-path: polygon(50% 0, 100% 50%, 50% 100%, 0 50%);
}

/* ---------- cards ---------- */
.plain-card, .tile, .intro-block {
  position: relative; overflow: hidden;
  background: var(--bg-card); border: 1px solid var(--border); border-radius: var(--card-radius);
  box-shadow: var(--shadow-card);
}
.plain-card::before, .tile::before, .intro-block::before {
  content: ""; position: absolute; left: 0; right: 0; top: 0; height: 5px;
  background: linear-gradient(90deg, var(--brand) 0%, var(--brand-light) 60%, var(--accent-warm) 100%);
}
.plain-card::after, .tile::after {
  content: "LS"; position: absolute; right: .9rem; bottom: -.35em; pointer-events: none;
  font-family: var(--font-heading); font-style: italic; font-weight: 800; font-size: 5.5rem; line-height: 1;
  color: rgba(47, 47, 47, .045); transition: color .35s var(--ease);
}
.plain-card:hover::after, .tile:hover::after { color: rgba(251, 205, 43, .3); }
.plain-card { padding: clamp(1.6rem, 3.5vw, 2.6rem); margin: 0 auto; }
.plain-card > :last-child { margin-bottom: 0; }
.intro-block { padding: clamp(1.4rem, 3vw, 2rem) clamp(1.6rem, 3.5vw, 2.6rem); font-size: 1.1rem; }
.intro-block > :last-child { margin-bottom: 0; }

.tile { padding: 1.8rem 1.6rem 2rem; transition: transform .35s var(--ease), box-shadow .35s var(--ease); }
.tile:hover { transform: translateY(-4px); box-shadow: var(--shadow-card-hover); }
.tile > :last-child { margin-bottom: 0; }
.tile ul { padding-left: 1.2rem; }

.floor-grid { display: grid; gap: 1.25rem; }
.floor-grid--cols-1 { grid-template-columns: minmax(0, 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)); }

/* R4b rich tiles: one column, H4 kickers, list items as sub-cards */
.floor-grid--rich { grid-template-columns: minmax(0, 1fr); }
.floor-grid--rich .tile { padding: 2.4rem; }
.floor-grid--rich h4 {
  font-family: var(--font-body); font-size: .78rem; font-weight: 800; letter-spacing: .18em; text-transform: uppercase;
  color: var(--ink); border-top: 2px solid var(--brand); padding-top: .9rem; margin: 1.6rem 0 .9rem;
}
.floor-grid--rich ul { list-style: none; padding: 0; margin: 0 0 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;
}
.floor-grid--rich li::before { content: ""; position: absolute; left: 0; top: 0; bottom: 0; width: 3px; background: linear-gradient(180deg, var(--brand), var(--accent)); }

/* feature check-list: gold tick circles, golden panel, gold left border */
.feature-check-list { list-style: none; padding: 0; margin: 0 0 1.2rem; display: grid; gap: .75rem; }
.feature-check-list li { position: relative; padding-left: 2.2rem; }
.feature-check-list li::before {
  content: ""; position: absolute; left: 0; top: .2rem; width: 1.45rem; height: 1.45rem; border-radius: 50%;
  background: var(--brand) url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath d='M5 12.5l4.5 4.5L19 7.5' fill='none' stroke='%231f1f1f' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E") center / 70% no-repeat;
  box-shadow: 0 2px 0 var(--brand-dark);
}
.feature-check-list--plain {
  background: linear-gradient(135deg, #fff8dc 0%, #fff1bd 100%);
  border-left: 4px solid var(--brand); border-radius: var(--r-md);
  padding: 1.4rem 1.5rem; margin: 0 0 1.2rem;
}
.feature-check-list--plain > :last-child { margin-bottom: 0; }

/* split layout */
.split-layout { display: grid; grid-template-columns: minmax(0, 1.1fr) minmax(0, .9fr); gap: clamp(1.5rem, 4vw, 3.25rem); align-items: center; }
.split-layout--flip .split-copy { order: 2; }
.split-layout:not(:has(.split-media)) { grid-template-columns: minmax(0, 1fr); }
.split-media { margin: 0; position: relative; }
.split-media img { width: 100%; aspect-ratio: 4 / 3; object-fit: cover; border-radius: var(--r-xl); box-shadow: var(--shadow-card); border: 1px solid var(--border); }
.split-media::before { content: ""; position: absolute; inset: 14px -14px -14px 14px; background: var(--brand); background-image: var(--tess); background-size: 120px 104px; border-radius: var(--r-xl); z-index: -1; }
.split-layout--flip .split-media::before { inset: 14px 14px -14px -14px; }

/* R5b image divider: contained 4:3 figure + decorative aside */
.image-divider { margin: 0; display: grid; grid-template-columns: minmax(0, 1.35fr) minmax(0, 1fr); gap: 0; border-radius: var(--r-xl); overflow: hidden; box-shadow: var(--shadow-card); border: 1px solid var(--border); background: var(--bg-panel); }
.image-divider__media img { width: 100%; height: 100%; aspect-ratio: 4 / 3; object-fit: cover; }
.image-divider__aside { display: flex; flex-direction: column; justify-content: center; gap: .9rem; padding: clamp(1.5rem, 4vw, 3rem); color: var(--text-on-dark); background: var(--bg-panel); background-image: linear-gradient(160deg, rgba(251, 205, 43, .08), transparent 60%); }
.image-divider__aside .kicker { color: var(--brand); }
.image-divider__title { font-family: var(--font-heading); font-weight: 700; font-style: italic; font-size: clamp(1.1rem, 1rem + .5vw, 1.4rem); line-height: 1.3; color: #fff; }

/* ---------- inner page hero ---------- */
.page-hero { position: relative; isolation: isolate; padding: clamp(3rem, 7vw, 5.5rem) 0; background: radial-gradient(ellipse at 50% 30%, #5d4a12, #1b1b1b 70%); overflow: hidden; }
.page-hero__art { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; z-index: -2; }
.page-hero::after { content: ""; position: absolute; inset: 0; z-index: -1; background: linear-gradient(180deg, rgba(22, 22, 22, .25), rgba(22, 22, 22, .55)); }
.slab--page { padding: clamp(1.8rem, 4vw, 3rem) clamp(1.4rem, 4vw, 3rem); text-align: center; }
.slab--page h1 { font-size: clamp(1.7rem, 1.1rem + 2vw, 2.6rem); }
.crumbs { display: flex; justify-content: center; gap: .5rem; font-size: .85rem; font-weight: 700; color: #bcb7aa; margin-bottom: 1rem; }
.crumbs a { color: var(--brand); text-decoration: none; }
.page-meta { font-size: .9rem; color: #bcb7aa; margin: 0 0 1.5rem; }
.page-meta-author { color: var(--brand); font-weight: 800; }

/* ---------- home: secure (charcoal art-deco band) ---------- */
.home-secure { background: var(--bg-panel); color: var(--text-on-dark); margin-top: clamp(3rem, 6vw, 4.5rem); }
.home-secure h2 { color: #fff; }
.home-secure .section-head > p { color: #d0cbc0; }
.deco-grid { list-style: none; margin: 0; padding: 0; display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 1rem; }
.deco-grid li {
  position: relative; text-align: center; padding: 2rem 1rem 1.6rem;
  border: 1px solid rgba(251, 205, 43, .28); border-radius: var(--r-md);
  background: linear-gradient(180deg, rgba(251, 205, 43, .07), transparent 70%);
}
.deco-grid li::before, .deco-grid li::after { content: ""; position: absolute; left: 50%; width: 46px; height: 3px; margin-left: -23px; background: var(--brand); }
.deco-grid li::before { top: -2px; }
.deco-grid li::after { bottom: -2px; width: 18px; margin-left: -9px; }
.deco-grid i { font-size: 2.4rem; color: var(--brand); }
.deco-grid strong { display: block; color: #fff; font-family: var(--font-heading); font-size: 1.1rem; margin: .6rem 0 .15rem; }
.deco-grid span { font-size: .9rem; color: #bdb8ad; }

/* ---------- home: intro (prose + link rail) ---------- */
.home-intro__grid { display: grid; grid-template-columns: minmax(0, 1.5fr) minmax(0, 1fr); gap: clamp(1.5rem, 4vw, 3.5rem); align-items: start; }
.floor-rail { list-style: none; margin: 0; padding: 0; background: var(--bg-card); border: 1px solid var(--border); border-radius: var(--card-radius); box-shadow: var(--shadow-card); overflow: hidden; }
.floor-rail li + li { border-top: 1px solid var(--border-soft); }
.floor-rail a { color: var(--ink); display: grid; grid-template-columns: auto 1fr auto; align-items: center; gap: .9rem; padding: 1rem 1.25rem; text-decoration: none; font-family: var(--font-heading); font-weight: 700; transition: background-color .2s, padding .3s var(--ease); }
.floor-rail a i:first-child { font-size: 1.35rem; width: 2.3rem; height: 2.3rem; display: grid; place-items: center; background: var(--brand); border-radius: var(--r-sm); }
.floor-rail a i:last-child { color: var(--text-dim); }
.floor-rail a:hover { background: #fff8dc; padding-left: 1.5rem; }
.floor-rail a:hover i:last-child { color: var(--accent); }

/* ---------- home: floor bento ---------- */
.home-floor { background: #fff; border-top: 1px solid var(--border-soft); border-bottom: 1px solid var(--border-soft); }
.bento-floor { display: grid; grid-template-columns: minmax(0, 1.25fr) minmax(0, 1fr); grid-template-rows: auto auto; gap: 1.25rem; }
.bento-tile { position: relative; overflow: hidden; border-radius: var(--card-radius); padding: 1.9rem; box-shadow: var(--shadow-card); transition: transform .35s var(--ease), box-shadow .35s var(--ease); }
.bento-tile:hover { transform: translateY(-4px); box-shadow: var(--shadow-card-hover); }
.bento-tile > p { margin-bottom: 1.2rem; }
.bento-tile--hero { grid-row: span 2; padding: 0; background: var(--bg-panel); color: var(--text-on-dark); display: flex; flex-direction: column; }
.bento-tile--hero img { width: 100%; aspect-ratio: 4 / 3; object-fit: cover; }
.bento-tile--hero .bento-tile__body { padding: 1.9rem; }
.bento-tile--hero h3 { color: #fff; }
.bento-tile--hero .text-link { color: var(--brand); }
.bento-tile--felt { background: var(--brand); background-image: var(--tess); background-size: 120px 104px; }
.bento-tile--signal { background: var(--bg); border: 1px solid var(--border); border-top: 5px solid var(--accent); }
.bento-tile__glyph { position: absolute; right: 1rem; bottom: .6rem; font-size: 4.5rem; opacity: .14; pointer-events: none; }

/* ---------- home: game lobby (tabbed category shelves, reference lobby art) ---------- */
.home-lobby { background: #fff; padding-top: 0; }
.lobby-head h2 { margin-bottom: 1rem; }
.lobby-tabs { display: flex; gap: .25rem; overflow-x: auto; scrollbar-width: none; background: var(--brand); border-radius: var(--r-md); padding: .35rem; margin-bottom: 1.25rem; }
.lobby-tabs::-webkit-scrollbar { display: none; }
.lobby-tab { flex: none; border: 0; background: transparent; color: var(--ink); cursor: pointer; font-family: var(--font-heading); font-weight: 800; font-size: .95rem; padding: .6rem 1.15rem; border-radius: var(--r-sm); transition: background-color .2s, color .2s; }
.lobby-tab:hover { background: rgba(31, 31, 31, .08); }
.lobby-tab[aria-selected="true"] { background: var(--bg-panel); color: var(--brand); }
.js .lobby-panel[data-inactive] { display: none; }
.lobby-panel + .lobby-panel { margin-top: 2rem; }
.js .lobby-panel + .lobby-panel { margin-top: 0; }
.lobby-shelf { list-style: none; margin: 0; padding: 0; display: grid; grid-template-columns: repeat(7, minmax(0, 1fr)); gap: 1rem; }
.game-tile { display: block; text-decoration: none; color: var(--ink); }
.game-tile__art { position: relative; display: block; overflow: hidden; border-radius: var(--r-md); aspect-ratio: 164 / 197; background: var(--bg-panel); box-shadow: var(--shadow-soft); }
.game-tile__art img { width: 100%; height: 100%; object-fit: cover; transition: transform .45s var(--ease), filter .3s; }
.game-tile__art i { position: absolute; left: 50%; top: 50%; width: 3.2rem; height: 3.2rem; margin: -1.6rem 0 0 -1.6rem; display: grid; place-items: center; border-radius: 50%; background: var(--brand); color: var(--ink); font-size: 1.3rem; opacity: 0; transform: scale(.7); transition: opacity .25s, transform .35s var(--ease); box-shadow: 0 6px 16px rgba(0, 0, 0, .45); }
.game-tile:hover .game-tile__art img, .game-tile:focus-visible .game-tile__art img { transform: scale(1.06); filter: brightness(.7); }
.game-tile:hover .game-tile__art i, .game-tile:focus-visible .game-tile__art i { opacity: 1; transform: none; }
.game-tile__name { display: block; margin-top: .55rem; font-family: var(--font-heading); font-weight: 700; font-size: .92rem; line-height: 1.25; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.game-tile__provider { display: block; font-size: .8rem; color: var(--text-dim); font-weight: 600; }
.lobby-more { display: inline-flex; align-items: center; gap: .4rem; margin-top: 1.1rem; padding: .55rem 1rem; background: var(--bg); border: 1px solid var(--border); border-radius: var(--r-sm); font-family: var(--font-heading); font-weight: 800; font-size: .9rem; color: var(--ink); text-decoration: none; }
.lobby-more:hover { background: var(--brand); border-color: var(--brand); }

/* ---------- home: app card (reference mobile-app block) ---------- */
.home-live { background: #fff; padding-top: 0; }
.app-card {
  position: relative; overflow: hidden; isolation: isolate;
  display: grid; grid-template-columns: minmax(0, 1.05fr) minmax(0, .95fr); align-items: end; gap: 1rem;
  border-radius: var(--r-xl); background: #1c1c1c url("/assets/images/brand/app-bg.jpg") right center / cover no-repeat;
  box-shadow: var(--shadow-card);
}
.app-card::before { content: ""; position: absolute; inset: 0; z-index: -1; background: linear-gradient(90deg, rgba(20, 20, 20, .92) 0%, rgba(20, 20, 20, .7) 45%, rgba(20, 20, 20, 0) 70%); }
.app-card__copy { padding: clamp(2rem, 4.5vw, 3.5rem); align-self: center; color: #d6d1c6; }
.app-card__copy h2 { color: var(--brand); font-size: clamp(1.5rem, 1.1rem + 1.2vw, 2.1rem); }
.app-card__ticks { list-style: none; margin: 1.5rem 0; padding: 1.1rem 1.35rem; display: grid; gap: .6rem; background: rgba(38, 38, 38, .92); border-radius: var(--r-md); }
.app-card__ticks li { position: relative; padding-left: 1.9rem; color: #fff; font-family: var(--font-heading); font-weight: 700; font-size: 1rem; line-height: 1.4; }
.app-card__ticks li::before { content: ""; position: absolute; left: 0; top: .28rem; width: 1.1rem; height: .6rem; border-left: 2.5px solid var(--brand); border-bottom: 2.5px solid var(--brand); transform: rotate(-45deg); transform-origin: 30% 60%; }
.app-card__ctas { display: flex; flex-wrap: wrap; align-items: center; gap: 1.25rem; }
.app-card__ctas .btn i { font-size: 1.3rem; }
.text-link--light { color: #fff; }
.app-card__phone { margin: 0; align-self: stretch; display: flex; align-items: flex-end; justify-content: center; padding-right: clamp(1rem, 3vw, 2.5rem); }
.app-card__phone img { width: 100%; max-width: 480px; height: auto; margin-top: 3rem; filter: drop-shadow(0 24px 30px rgba(0, 0, 0, .5)); }

/* ---------- home: rewards bento on a yellow band ---------- */
.home-rewards { background: var(--brand); background-image: var(--tess); background-size: 120px 104px; }
.rewards-bento { display: grid; grid-template-columns: minmax(0, 1.4fr) minmax(0, 1fr) minmax(0, .8fr); grid-template-areas: "welcome tip art" "vip vip art"; gap: 1.25rem; }
.rewards-card { position: relative; margin: 0; border-radius: var(--card-radius); padding: 1.9rem; background: var(--bg-panel); color: var(--text-on-dark); box-shadow: 0 18px 34px -16px rgba(60, 45, 0, .55); }
.rewards-card h2 { color: #fff; font-size: clamp(1.35rem, 1.05rem + 1vw, 1.8rem); }
.rewards-card p { color: #d6d1c6; }
.rewards-card > :last-child { margin-bottom: 0; }
.rewards-card--welcome { grid-area: welcome; border-top: 5px solid var(--accent); }
.rewards-card--tip { grid-area: tip; background: #fff; color: var(--text); }
.rewards-card--tip p { color: var(--text-muted); }
.rewards-card--tip i { font-size: 2rem; color: var(--accent); display: block; margin-bottom: .6rem; }
.rewards-card--art { grid-area: art; padding: 0; overflow: hidden; background: var(--bg-panel); }
.rewards-card--art img { width: 100%; height: 100%; object-fit: cover; min-height: 100%; }
.rewards-card--vip { grid-area: vip; background: #1a1a1a; border: 2px solid var(--ink); }
.rewards-card--vip::after { content: "VIP"; position: absolute; right: 1.2rem; bottom: -.2em; font-family: var(--font-heading); font-style: italic; font-weight: 800; font-size: 6rem; line-height: 1; color: rgba(251, 205, 43, .08); pointer-events: none; }
.rewards-card__cols { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 1.5rem; }
.rewards-card__cols p { margin: 0; }

/* ---------- home: join band (tessellated) ---------- */
.home-join { background: linear-gradient(135deg, #f6c518, #fbd84a 50%, #f0b90f); background-image: var(--tess), linear-gradient(135deg, #f6c518, #fbd84a 50%, #f0b90f); background-size: 180px 156px, auto; }
.join-card { background: var(--bg-panel); color: var(--text-on-dark); border-radius: var(--r-md); padding: clamp(2rem, 5vw, 3.25rem); text-align: center; box-shadow: 0 24px 44px -18px rgba(60, 45, 0, .6); position: relative; overflow: hidden; }
.join-card::before { content: ""; position: absolute; left: 0; right: 0; top: 0; height: 5px; background: var(--brand); }
.join-card h2 { color: #fff; }
.join-card p { color: #d6d1c6; margin-bottom: 1.6rem; }

/* ---------- home: support editorial card ---------- */
.support-card { position: relative; overflow: hidden; display: grid; grid-template-columns: minmax(0, 1.2fr) minmax(0, 1fr); background: var(--bg-card); border: 1px solid var(--border); border-radius: var(--card-radius); box-shadow: var(--shadow-card); }
.support-card--plain { grid-template-columns: minmax(0, 1fr); }
.support-card__mark { position: absolute; left: 1rem; bottom: -.28em; font-family: var(--font-heading); font-style: italic; font-weight: 800; font-size: clamp(6rem, 16vw, 12rem); line-height: 1; color: rgba(251, 205, 43, .22); pointer-events: none; white-space: nowrap; }
.support-card__copy { position: relative; padding: clamp(1.8rem, 4vw, 3rem); border-left: 5px solid var(--brand); }
.support-card__media { margin: 0; }
.support-card__media img { width: 100%; height: 100%; object-fit: cover; aspect-ratio: 4 / 3; }
.support-card__ways { list-style: none; padding: 0; margin: 0 0 1.5rem; display: flex; flex-wrap: wrap; gap: .6rem; }
.support-card__ways li { display: inline-flex; align-items: center; gap: .4rem; padding: .45rem .9rem; background: var(--bg); border: 1px solid var(--border); border-radius: var(--r-sm); font-weight: 800; font-size: .9rem; }
.support-card__ways i { color: var(--accent); }

/* ---------- FAQ on a yellow band ---------- */
.section--faq { background: var(--brand); background-image: var(--tess); background-size: 120px 104px; }
.faq-list { display: grid; gap: .6rem; margin: 0 auto; }
.faq-item { background: #fff; border: 1px solid rgba(31, 31, 31, .12); border-radius: var(--r-md); transition: transform .3s var(--ease), box-shadow .3s var(--ease); }
.faq-item[open] { transform: translateY(-2px); box-shadow: 0 16px 30px -16px rgba(60, 45, 0, .45); }
.faq-item summary { list-style: none; cursor: pointer; display: flex; align-items: center; justify-content: space-between; gap: 1rem; padding: 1.05rem 1.3rem; font-family: var(--font-heading); font-weight: 700; font-size: 1.05rem; color: var(--ink); }
.faq-item summary::-webkit-details-marker { display: none; }
.faq-icon { position: relative; flex: none; width: 28px; height: 28px; border-radius: 50%; background: var(--brand); transition: transform .35s var(--ease), background-color .2s; }
.faq-icon::before, .faq-icon::after { content: ""; position: absolute; left: 50%; top: 50%; width: 12px; height: 2.5px; margin: -1.25px 0 0 -6px; background: var(--ink); }
.faq-icon::after { transform: rotate(90deg); }
.faq-item[open] .faq-icon { transform: rotate(135deg); background: var(--accent); }
.faq-item[open] .faq-icon::before, .faq-item[open] .faq-icon::after { background: #fff; }
.faq-answer { padding: 0 1.3rem 1.2rem; color: var(--text-muted); }
.faq-answer p { margin: 0; }

/* ---------- footer ---------- */
.site-footer { background: #1b1b1b; color: #c9c4b8; padding-bottom: 1.5rem; }
.site-footer { margin-top: 0; padding-top: 1px; }
.footer-cta {
  position: relative; overflow: hidden; display: grid; grid-template-columns: minmax(0, 1fr) auto; gap: 1.5rem; align-items: center;
  margin-top: -2.75rem; padding: clamp(1.6rem, 4vw, 2.4rem) clamp(1.5rem, 4vw, 2.6rem);
  border: 3px solid var(--ink); z-index: 3;
  background: var(--brand); background-image: var(--tess); background-size: 120px 104px; color: var(--ink);
  border-radius: var(--r-md); box-shadow: 0 20px 40px -18px rgba(0, 0, 0, .7);
}
.footer-cta__mark { position: absolute; right: -.5rem; bottom: -.35em; font-family: var(--font-heading); font-style: italic; font-weight: 800; font-size: clamp(4rem, 11vw, 8rem); line-height: 1; color: rgba(31, 31, 31, .08); white-space: nowrap; pointer-events: none; }
.footer-cta__copy { position: relative; }
.footer-cta__title { font-family: var(--font-heading); font-weight: 800; font-size: clamp(1.3rem, 1rem + 1vw, 1.8rem); line-height: 1.2; margin: 0 0 .35rem; color: var(--ink); }
.footer-cta__copy p:last-child { margin: 0; font-weight: 700; color: #3d3620; }
.footer-cta .btn { position: relative; }
.footer-grid { display: grid; grid-template-columns: minmax(0, 1.5fr) repeat(3, minmax(0, 1fr)); gap: 2rem; padding: 3rem 0 2rem; }
.footer-brand p { font-size: .95rem; margin: 1rem 0; }
.footer-logo img { height: 40px; width: auto; object-fit: contain; }
.pay-pills { list-style: none; display: flex; flex-wrap: wrap; gap: .45rem; padding: 0; margin: 0; }
.pay-pills li { padding: .3rem .7rem; border: 1px solid rgba(251, 205, 43, .4); border-radius: var(--r-sm); font-size: .8rem; font-weight: 800; color: var(--brand); }
.footer-col__title { position: relative; font-family: var(--font-heading); font-style: italic; font-weight: 700; font-size: 1.1rem; color: #fff; margin: 0 0 1rem; padding-bottom: .5rem; }
.footer-col__title::after { content: ""; position: absolute; left: 0; bottom: 0; width: 28px; height: 3px; background: var(--brand); }
.footer-col ul { list-style: none; padding: 0; margin: 0; display: grid; gap: .5rem; }
.footer-col a { color: #c9c4b8; text-decoration: none; font-size: .95rem; }
.footer-col a:hover { color: var(--brand); }
.trust-pills { list-style: none; display: flex; flex-wrap: wrap; gap: .6rem; padding: 1.25rem 0; margin: 0; border-top: 1px solid rgba(255, 255, 255, .08); }
.trust-pills li { display: inline-flex; align-items: center; gap: .45rem; padding: .4rem .85rem; background: #252525; border-radius: var(--r-sm); font-size: .85rem; font-weight: 700; }
.trust-pills i { color: var(--brand); }
.footer-base { display: grid; gap: .3rem; padding-top: 1.1rem; border-top: 1px solid rgba(255, 255, 255, .08); font-size: .82rem; color: #8f8a80; }
.footer-base p { margin: 0; }

/* ---------- 404 ---------- */
.not-found__card { position: relative; text-align: center; padding: clamp(2rem, 5vw, 3.5rem); background: #fff; border: 1px solid var(--border); border-radius: var(--card-radius); box-shadow: var(--shadow-card); }
.not-found__code {
  margin: 0; font-family: var(--font-heading); font-style: italic; font-weight: 800; line-height: .95;
  font-size: clamp(8rem, 22vw, 16rem);
  background: linear-gradient(135deg, var(--brand) 0%, var(--brand-dark) 45%, var(--accent) 100%);
  -webkit-background-clip: text; background-clip: text; color: transparent;
}

/* ---------- reveal motion ---------- */
.js .reveal { opacity: 0; transform: translateY(18px); transition: opacity .6s var(--ease), transform .6s var(--ease); transition-delay: var(--reveal-delay, 0ms); }
.js .reveal.is-visible { opacity: 1; transform: none; }

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation: none !important; transition: none !important; scroll-behavior: auto !important; }
  .js .reveal { opacity: 1; transform: none; }
  .coin-cascade span { top: auto; }
  .coin-cascade span:nth-child(1) { top: 6%; }
  .coin-cascade span:nth-child(2) { top: 20%; }
  .coin-cascade span:nth-child(3) { top: 34%; }
  .coin-cascade span:nth-child(4) { top: 48%; }
  .coin-cascade span:nth-child(5) { top: 62%; }
  .coin-cascade span:nth-child(6) { top: 76%; }
  .coin-cascade span:nth-child(7) { top: 88%; }
}

/* ---------- Urdu mirror (RTL) ---------- */
[dir="rtl"] body, [dir="rtl"] { font-family: "Noto Nastaliq Urdu", var(--font-body); }
[dir="rtl"] body { line-height: 2.1; }
[dir="rtl"] h1, [dir="rtl"] h2, [dir="rtl"] h3, [dir="rtl"] .footer-cta__title, [dir="rtl"] .faq-item summary, [dir="rtl"] .stat-strip strong { font-family: "Noto Nastaliq Urdu", var(--font-heading); line-height: 1.9; letter-spacing: 0; }
[dir="rtl"] .highlight { font-style: normal; }
[dir="rtl"] .primary-nav { margin-left: 0; margin-right: auto; }
[dir="rtl"] .primary-nav ul a { text-transform: none; }
[dir="rtl"] .stat-strip li { border-left: 0; border-right: 1px solid rgba(31, 31, 31, .14); }
[dir="rtl"] .stat-strip li:first-child { border-right: 0; }
[dir="rtl"] .footer-col__title::after { left: auto; right: 0; }

/* ---------- breakpoints ---------- */
@media (max-width: 1100px) {
  .lobby-shelf { grid-template-columns: none; grid-auto-flow: column; grid-auto-columns: minmax(150px, 18%); overflow-x: auto; scroll-snap-type: x mandatory; padding-bottom: .5rem; scrollbar-width: thin; }
  .lobby-shelf li { scroll-snap-align: start; }
  .header-main__inner { gap: 1.25rem; }
  .primary-nav ul { gap: 1.1rem; }
  .primary-nav ul a { font-size: .85rem; }
  .floor-grid--cols-4 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .deco-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .slab--hero { grid-template-columns: 96px minmax(0, 1fr) 96px; }
  .coin-cascade span { width: 44px; height: 44px; margin-left: -22px; }
}

@media (max-width: 900px) {
  .header-top__links { display: none; }
  .header-top__trust { margin: 0 auto; }
  .burger { display: block; margin-left: .25rem; }
  [dir="rtl"] .burger { margin-left: 0; margin-right: .25rem; }
  .header-main__inner { gap: .75rem; }
  .header-cta { margin-left: auto; }
  [dir="rtl"] .header-cta { margin-left: 0; margin-right: auto; }
  .primary-nav {
    position: fixed; inset: var(--header-h) 0 0 0; margin: 0; z-index: 99;
    background: rgba(28, 28, 28, .94); -webkit-backdrop-filter: blur(14px); backdrop-filter: blur(14px);
    padding: 2rem 1.5rem; overflow-y: auto;
    opacity: 0; visibility: hidden; transform: translateY(-8px);
    transition: opacity .3s var(--ease), transform .3s var(--ease), visibility .3s;
  }
  .primary-nav.is-open { opacity: 1; visibility: visible; transform: none; }
  .primary-nav ul { flex-direction: column; gap: 0; }
  .primary-nav ul a { font-size: 1.5rem; padding: .8rem 0; border-bottom: 1px solid rgba(255, 255, 255, .08); }
  .primary-nav__extra { display: flex; flex-wrap: wrap; gap: .6rem 1.4rem; margin-top: 1.5rem; }
  .primary-nav__extra a { color: #d9d4c9; text-decoration: none; font-weight: 700; }
  .nav-indicator { display: none; }

  .floor-grid--cols-3 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .split-layout, .home-intro__grid, .support-card, .app-card { grid-template-columns: minmax(0, 1fr); }
  .app-card::before { background: linear-gradient(180deg, rgba(20, 20, 20, .9) 0%, rgba(20, 20, 20, .75) 60%, rgba(20, 20, 20, .35) 100%); }
  .app-card__phone img { margin-top: 0; width: 78%; }
  .lobby-shelf { grid-auto-columns: 30%; }
  .split-layout--flip .split-copy { order: 0; }
  .image-divider { grid-template-columns: minmax(0, 1fr); }
  .stat-strip { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .stat-strip li:nth-child(3) { border-left: 0; }
  .stat-strip li:nth-child(n+3) { border-top: 1px solid rgba(31, 31, 31, .14); }
  .bento-floor { grid-template-columns: minmax(0, 1fr); }
  .bento-tile--hero { grid-row: auto; }
  .rewards-bento { grid-template-columns: minmax(0, 1fr) minmax(0, 1fr); grid-template-areas: "welcome welcome" "tip art" "vip vip"; }
  .footer-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); }
  .footer-brand { grid-column: 1 / -1; }
}

@media (max-width: 700px) {
  .slab--hero { grid-template-columns: minmax(0, 1fr); }
  .coin-cascade { display: none; }
  .hero__rail-inner { justify-content: flex-start; flex-wrap: nowrap; overflow-x: auto; gap: 1.4rem; scrollbar-width: none; }
  .hero__rail-inner::-webkit-scrollbar { display: none; }
  .hero__rail a { flex: none; }
  .rewards-card__cols { grid-template-columns: minmax(0, 1fr); }
  .footer-cta { grid-template-columns: minmax(0, 1fr); }
}

@media (max-width: 560px) {
  .lobby-shelf { grid-auto-columns: 42%; }
  body { font-size: 1rem; }
  .container { padding: 0 1rem; }
  .floor-grid--cols-2, .floor-grid--cols-3, .floor-grid--cols-4, .deco-grid { grid-template-columns: minmax(0, 1fr); }
  .rewards-bento { grid-template-columns: minmax(0, 1fr); grid-template-areas: "welcome" "art" "tip" "vip"; }
  .rewards-card--art img { aspect-ratio: 4 / 3; height: auto; }
  .header-cta { display: none; }
  .burger { margin-left: auto; }
  [dir="rtl"] .burger { margin-right: auto; margin-left: 0; }
  .footer-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .floor-grid--rich .tile { padding: 1.6rem 1.25rem; }
  .split-media::before { display: none; }
  .btn--lg { padding: .8rem 1.3rem; }
  .slab__ctas .btn { width: 100%; }
}

@media (max-width: 480px) {
  .header-top__trust { font-size: .72rem; }
  .brand img { height: 24px; }
  .stat-strip li { padding: 1rem; }
  .footer-grid { grid-template-columns: minmax(0, 1fr); }
}
