/* ==========================================================================
   Live Casino India

   Palette   : ink (near-black) + bone (off-white) + ONE saturated accent,
               vermilion #ff5a1f. No second accent anywhere on the site.
   Type      : Bricolage Grotesque (display) + Archivo (body). No serif.
               Emphasis is italic/bold of the SAME family, never a second face.
   Radius    : documented 4-step scale, applied everywhere.
                 --r-lg 20px  large plates / hero art
                 --r-md 14px  cards, tiles, media
                 --r-sm 10px  chips, inputs, small surfaces
                 --r-pill     buttons and badges ONLY
   Theme     : dark by default, real light mode via prefers-color-scheme.
               One theme per page load. Sections never invert mid-scroll.
   Motion    : every animation is motivated. No scroll listeners anywhere,
               IntersectionObserver and CSS scroll-driven animation only.
   ========================================================================== */

/* --------------------------------------------------------------------------
   1 · Tokens
   -------------------------------------------------------------------------- */
:root {
  color-scheme: dark light;

  --ink:    #0a0a0c;
  --ink-2:  #101116;
  --ink-3:  #16181d;
  --ink-4:  #1e2128;

  --bone:   #f4f2ee;
  --bone-2: #a9a7a2;
  --bone-3: #74736f;

  --flare:      #ff5a1f;
  --flare-hi:   #ff7c48;
  /* Ink on vermilion is 6.5:1. White on vermilion is only 3.05:1, which
     fails AA for anything below 18.66px bold, so the accent button carries
     dark text, not white. This token never flips with the theme. */
  --on-flare:   #1a0c04;
  /* The accent used AS text. Full vermilion on the light background is
     2.78:1, so light mode drops to a darker tint that clears 4.5:1. */
  --flare-text: #ff5a1f;
  --flare-dim:  rgba(255, 90, 31, .14);
  --flare-line: rgba(255, 90, 31, .34);

  --line:   rgba(244, 242, 238, .09);
  --line-2: rgba(244, 242, 238, .17);

  --r-lg: 20px;
  --r-md: 14px;
  --r-sm: 10px;
  --r-pill: 999px;

  --shadow: 0 1px 2px rgba(0, 0, 0, .4), 0 18px 48px rgba(0, 0, 0, .34);
  --shadow-lift: 0 2px 6px rgba(0, 0, 0, .45), 0 34px 80px rgba(0, 0, 0, .5);

  --font: 'Archivo', ui-sans-serif, system-ui, -apple-system, sans-serif;
  --font-display: 'Bricolage Grotesque', 'Archivo', ui-sans-serif, system-ui, sans-serif;

  --wrap: 1280px;
  --gutter: clamp(1.15rem, 4vw, 3rem);
  --ease: cubic-bezier(.16, 1, .3, 1);
}

@media (prefers-color-scheme: light) {
  :root {
    --ink:    #f6f5f2;
    --ink-2:  #eeece7;
    --ink-3:  #ffffff;
    --ink-4:  #e4e1da;

    --bone:   #131318;
    --bone-2: #55545a;
    --bone-3: #85848a;

    --flare-dim:  rgba(255, 90, 31, .10);
    --flare-line: rgba(255, 90, 31, .40);
    --flare-text: #a83000;

    --line:   rgba(19, 19, 24, .10);
    --line-2: rgba(19, 19, 24, .18);

    --shadow: 0 1px 2px rgba(19, 19, 24, .05), 0 18px 44px rgba(19, 19, 24, .09);
    --shadow-lift: 0 2px 6px rgba(19, 19, 24, .07), 0 34px 72px rgba(19, 19, 24, .14);
  }
}

/* --------------------------------------------------------------------------
   2 · Base
   -------------------------------------------------------------------------- */
*, *::before, *::after { box-sizing: border-box; }

html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: var(--font);
  font-size: 1.0625rem;
  line-height: 1.65;
  font-weight: 400;
  color: var(--bone);
  background: var(--ink);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

img, svg, video { display: block; max-width: 100%; }

a { color: inherit; text-decoration: none; }

h1, h2, h3, h4 {
  font-family: var(--font-display);
  font-weight: 700;
  line-height: 1.06;
  letter-spacing: -.028em;
  margin: 0 0 .5em;
  color: var(--bone);
  text-wrap: balance;
}
h1 { font-size: clamp(2.15rem, 4.4vw, 3.5rem); }
h2 { font-size: clamp(1.85rem, 3.4vw, 2.9rem); }
h3 { font-size: clamp(1.1rem, 1.5vw, 1.3rem); letter-spacing: -.018em; }

/* Emphasis stays in-family: italic of the same face, never a second font.
   Extra leading + reserve so descenders in italic never clip. */
h1 em, h2 em, h3 em {
  font-style: italic;
  color: var(--flare-text);
  line-height: 1.12;
  padding-bottom: .06em;
  display: inline-block;
}

p { margin: 0 0 1.1rem; color: var(--bone-2); }
p:last-child { margin-bottom: 0; }

strong { color: var(--bone); font-weight: 600; }

::selection { background: var(--flare); color: var(--on-flare); }

:focus-visible { outline: 2px solid var(--flare); outline-offset: 3px; border-radius: 2px; }

.wrap {
  width: 100%;
  max-width: var(--wrap);
  margin-inline: auto;
  padding-inline: var(--gutter);
}

.sr {
  position: absolute; width: 1px; height: 1px;
  padding: 0; margin: -1px; overflow: hidden;
  clip: rect(0 0 0 0); white-space: nowrap; border: 0;
}

.section { padding-block: clamp(3.25rem, 6.5vw, 5.5rem); }
.section--tight { padding-block: clamp(2.5rem, 5vw, 4rem); }

/* Eyebrows are rationed to a maximum of one per three sections.
   Most sections get a headline and nothing above it. */
.eyebrow {
  display: block;
  font-family: var(--font);
  font-size: .7rem;
  font-weight: 600;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--flare-text);
  margin-bottom: 1rem;
}

.lede {
  font-size: clamp(1.02rem, 1.4vw, 1.16rem);
  color: var(--bone-2);
  max-width: 62ch;
}

/* Section heading block. The width cap lives here in rem, never as a ch
   value on a wrapper: ch resolves against the wrapper's own font-size, so
   a 30ch wrapper around a 3rem headline is far narrower than it reads. */
.sec-head { max-width: 40rem; margin-bottom: clamp(2rem, 4vw, 3rem); }
.sec-head h2 { margin-bottom: 0; }
.sec-head p { margin-top: .9rem; }
.sec-head--narrow { max-width: 32rem; }

/* --------------------------------------------------------------------------
   3 · Buttons - pill radius, reserved for buttons and badges only
   -------------------------------------------------------------------------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: .5rem;
  padding: .95rem 1.6rem;
  border: 1px solid transparent;
  border-radius: var(--r-pill);
  font-family: var(--font);
  font-size: .9rem;
  font-weight: 600;
  letter-spacing: -.005em;
  line-height: 1;
  white-space: nowrap;          /* CTA labels never wrap */
  cursor: pointer;
  transition: background .22s var(--ease), border-color .22s var(--ease),
              color .22s var(--ease), transform .12s var(--ease);
}
.btn:active { transform: translateY(1px); }

.btn--flare { background: var(--flare); color: var(--on-flare); }
.btn--flare:hover { background: var(--flare-hi); color: var(--on-flare); }

.btn--line {
  background: transparent;
  color: var(--bone);
  border-color: var(--line-2);
}
.btn--line:hover { border-color: var(--flare); color: var(--flare-text); }

/* Over photography: solid scrim so the label always clears contrast. */
.btn--onart {
  background: rgba(10, 10, 12, .62);
  color: #fff;
  border-color: rgba(255, 255, 255, .26);
  -webkit-backdrop-filter: blur(10px);
  backdrop-filter: blur(10px);
}
.btn--onart:hover { background: rgba(10, 10, 12, .82); color: #fff; border-color: rgba(255, 255, 255, .44); }

.btn--sm { padding: .68rem 1.2rem; font-size: .82rem; }
.btn--block { width: 100%; }

/* --------------------------------------------------------------------------
   4 · Header - single line, 68px, condenses via IntersectionObserver
   -------------------------------------------------------------------------- */
.top-sentinel { position: absolute; top: 0; left: 0; width: 1px; height: 1px; }

.site-header {
  position: sticky;
  top: 0;
  z-index: 900;
  background: color-mix(in srgb, var(--ink) 78%, transparent);
  -webkit-backdrop-filter: blur(16px) saturate(150%);
  backdrop-filter: blur(16px) saturate(150%);
  border-bottom: 1px solid transparent;
  transition: border-color .3s var(--ease), background .3s var(--ease);
}
.site-header.is-stuck {
  border-bottom-color: var(--line);
  background: color-mix(in srgb, var(--ink) 94%, transparent);
}

.header-in {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  height: 68px;
  max-width: var(--wrap);
  margin-inline: auto;
  padding-inline: var(--gutter);
}

.brand { display: flex; align-items: center; flex-shrink: 0; }
.brand svg { height: 30px; width: auto; display: block; color: var(--bone); }

.nav { margin-left: auto; }
.nav-list {
  display: flex;
  align-items: center;
  gap: .25rem;
  margin: 0; padding: 0;
  list-style: none;
}
.nav-list > li { position: relative; }
.nav-list > li > a {
  display: block;
  padding: .5rem .72rem;
  font-size: .875rem;
  font-weight: 500;
  color: var(--bone-2);
  border-radius: var(--r-sm);
  transition: color .2s var(--ease);
  white-space: nowrap;
}
.nav-list > li > a:hover,
.nav-list > li > a.active { color: var(--bone); }

/* box-shadow, not ::after: the submenu trigger already owns its ::after for
   the caret, and two rules on one pseudo-element means one of them is lost. */
.nav-list > li > a.active {
  box-shadow: inset 0 -1.5px 0 var(--flare);
  border-radius: 0;
}

.header-cta { flex-shrink: 0; }

.burger {
  display: none;
  width: 40px; height: 40px;
  margin-left: auto;
  background: transparent;
  border: 1px solid var(--line-2);
  border-radius: var(--r-sm);
  cursor: pointer;
  position: relative;
}
.burger span {
  position: absolute;
  left: 11px;
  width: 16px; height: 1.6px;
  background: var(--bone);
  border-radius: 2px;
  transition: transform .3s var(--ease), opacity .2s var(--ease);
}
.burger span:nth-child(1) { top: 14px; }
.burger span:nth-child(2) { top: 19px; }
.burger span:nth-child(3) { top: 24px; }
.burger.is-open span:nth-child(1) { transform: translateY(5px) rotate(45deg); }
.burger.is-open span:nth-child(2) { opacity: 0; }
.burger.is-open span:nth-child(3) { transform: translateY(-5px) rotate(-45deg); }

/* Reviews dropdown, with the transparent bridge that keeps :hover alive
   while the cursor crosses the gap between trigger and panel. */
.has-sub { position: relative; }
.sub-parent::after {
  content: '';
  display: inline-block;
  width: 4.5px; height: 4.5px;
  margin-left: .4rem;
  border-right: 1.4px solid currentColor;
  border-bottom: 1.4px solid currentColor;
  transform: translateY(-2px) rotate(45deg);
  transition: transform .25s var(--ease);
}
.has-sub:hover .sub-parent::after { transform: translateY(0) rotate(225deg); }

.has-sub::after {
  content: '';
  position: absolute;
  top: 100%; left: -1rem; right: -1rem;
  height: 1rem;
  pointer-events: auto;
}

.submenu {
  position: absolute;
  top: calc(100% + .95rem);
  right: 0;
  width: min(560px, 92vw);
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: .2rem;
  margin: 0;
  padding: .6rem;
  list-style: none;
  background: var(--ink-2);
  border: 1px solid var(--line-2);
  border-radius: var(--r-md);
  box-shadow: var(--shadow-lift);
  opacity: 0;
  visibility: hidden;
  transform: translateY(-6px);
  transition: opacity .24s var(--ease), transform .24s var(--ease), visibility .24s;
  z-index: 20;
}
.has-sub:hover .submenu,
.has-sub:focus-within .submenu,
.has-sub.is-open .submenu {
  opacity: 1; visibility: visible; transform: translateY(0);
}

.submenu a {
  display: grid;
  grid-template-columns: 46px 1fr;
  align-items: center;
  gap: .7rem;
  padding: .55rem;
  border-radius: var(--r-sm);
  transition: background .2s var(--ease);
}
.submenu a:hover { background: var(--ink-4); }
.sub-name { font-size: .855rem; font-weight: 500; color: var(--bone); line-height: 1.3; }
.sub-score { display: block; font-size: .74rem; color: var(--flare-text); font-variant-numeric: tabular-nums; }

/* --------------------------------------------------------------------------
   5 · Operator logo plate
       Operator marks come in every possible colour, so each one sits on its
       own light plate. object-fit is contain, never cover: a logo is not a
       photograph and must not be cropped.
   -------------------------------------------------------------------------- */
.plate {
  display: grid;
  place-items: center;
  background: #fbfaf8;
  border: 1px solid rgba(19, 19, 24, .08);
  border-radius: var(--r-sm);
  padding: .5rem .6rem;
  overflow: hidden;
}
.plate img { max-height: 100%; width: auto; max-width: 100%; object-fit: contain; }
.plate--xs { height: 34px; padding: .3rem .38rem; }
.plate--xs img { max-height: 22px; }
.plate--sm { height: 46px; }
.plate--sm img { max-height: 30px; }
.plate--md { height: 62px; }
.plate--md img { max-height: 40px; }
.plate--lg { height: 84px; }
.plate--lg img { max-height: 54px; }

/* --------------------------------------------------------------------------
   6 · Score display - numerals, not star glyphs
   -------------------------------------------------------------------------- */
.score {
  display: inline-flex;
  align-items: baseline;
  gap: .12rem;
  font-family: var(--font-display);
  font-weight: 700;
  font-variant-numeric: tabular-nums;
  letter-spacing: -.03em;
  color: var(--flare-text);
  line-height: 1;
}
.score span { font-size: .58em; color: var(--bone-3); font-weight: 500; }
.score--xl { font-size: clamp(2.6rem, 5vw, 4rem); }
.score--lg { font-size: 1.9rem; }
.score--md { font-size: 1.25rem; }
.score--sm { font-size: 1rem; }

/* Meter: no filled background track, just a thin rule with an accent run. */
.meter {
  position: relative;
  height: 2px;
  background: var(--line);
  border-radius: 2px;
  overflow: hidden;
}
.meter i {
  position: absolute;
  inset: 0 auto 0 0;
  background: var(--flare);
  border-radius: 2px;
}

.chip {
  display: inline-flex;
  align-items: center;
  padding: .28rem .68rem;
  border: 1px solid var(--line-2);
  border-radius: var(--r-pill);
  font-size: .78rem;
  font-weight: 500;
  color: var(--bone-2);
  white-space: nowrap;
}
.chip--flare { border-color: var(--flare-line); color: var(--flare-text); background: var(--flare-dim); }

/* --------------------------------------------------------------------------
   7 · HERO - homepage
       Asymmetric: copy left, a two-plate offset image stack right.
       Load sequence staggers copy then art, which sets reading order.
   -------------------------------------------------------------------------- */
.hero {
  position: relative;
  padding-top: clamp(1.6rem, 3vw, 2.75rem);
  padding-bottom: clamp(2.5rem, 5vw, 4.5rem);
  overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute;
  top: -28vh; right: -12vw;
  width: 76vw; height: 92vh;
  background: radial-gradient(closest-side, var(--flare-dim), transparent 72%);
  pointer-events: none;
  z-index: 0;
}

/* The H1 is verbatim source text and cannot be shortened, so it gets the
   full width above the split rather than being crushed into a column. */
.hero-title {
  position: relative;
  z-index: 1;
  margin-bottom: clamp(1.4rem, 2.6vw, 2.25rem);
}
/* 34ch keeps the 70-character verbatim headline on two lines at desktop.
   Widen this and it drops to one; narrow it and it breaks to three. */
.hero-title h1 {
  font-size: clamp(2.1rem, 4.3vw, 3.45rem);
  max-width: 34ch;
  margin: 0;
}

.hero-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: .92fr 1.08fr;
  gap: clamp(2rem, 5vw, 4.5rem);
  align-items: center;
}
.hero .lede { margin-bottom: 1.9rem; max-width: 40ch; }
.hero-actions { display: flex; flex-wrap: wrap; gap: .7rem; }

/* Two overlapping plates. The inset breaks the main plate's edge, which is
   what gives the hero depth without a fake browser-window mockup. */
.hero-art {
  position: relative;
  aspect-ratio: 4 / 4.3;
  max-height: 52vh;
  justify-self: end;
  width: 100%;
}
.hero-plate {
  position: absolute;
  inset: 0 0 0 14%;
  border-radius: var(--r-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lift);
  background: var(--ink-2);
}
.hero-plate img { width: 100%; height: 100%; object-fit: cover; }

.hero-inset {
  position: absolute;
  left: 0; bottom: 12%;
  width: 42%;
  aspect-ratio: 1;
  border-radius: var(--r-md);
  overflow: hidden;
  border: 1px solid var(--line-2);
  box-shadow: var(--shadow-lift);
  background: var(--ink-2);
}
.hero-inset img { width: 100%; height: 100%; object-fit: cover; }

/* Floating score tag over the art. Real data, not decoration. */
.hero-tag {
  position: absolute;
  right: 6%; top: 8%;
  display: grid;
  gap: .1rem;
  padding: .85rem 1.05rem;
  background: color-mix(in srgb, var(--ink) 82%, transparent);
  -webkit-backdrop-filter: blur(14px);
  backdrop-filter: blur(14px);
  border: 1px solid var(--line-2);
  border-radius: var(--r-md);
  text-align: right;
}
.hero-tag b {
  font-family: var(--font-display);
  font-size: 1.35rem;
  font-weight: 700;
  color: var(--flare);
  font-variant-numeric: tabular-nums;
  line-height: 1;
}
.hero-tag span { font-size: .72rem; color: var(--bone-2); }

/* --------------------------------------------------------------------------
   8 · HERO - inner pages
       Full-bleed art with the H1 sitting in the black left third the image
       prompt deliberately keeps empty.
   -------------------------------------------------------------------------- */
.phero {
  position: relative;
  isolation: isolate;
  padding-top: clamp(2.5rem, 6vw, 5rem);
  padding-bottom: clamp(2rem, 4vw, 3.5rem);
  overflow: hidden;
  background: var(--ink-2);
}
.phero-art { position: absolute; inset: 0; z-index: -2; }
.phero-art img { width: 100%; height: 100%; object-fit: cover; opacity: .55; }
.phero::after {
  content: '';
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    linear-gradient(92deg, var(--ink) 4%, color-mix(in srgb, var(--ink) 86%, transparent) 44%, transparent 88%),
    linear-gradient(0deg, var(--ink) 2%, transparent 46%);
}

.crumbs {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: .4rem;
  margin: 0 0 1.4rem;
  padding: 0;
  list-style: none;
  font-size: .8rem;
  color: var(--bone-3);
}
.crumbs a { color: var(--bone-2); }
.crumbs a:hover { color: var(--flare-text); }
.crumbs li + li::before { content: '/'; margin-right: .4rem; color: var(--bone-3); opacity: .6; }

.phero-head {
  display: flex;
  align-items: flex-start;
  gap: clamp(1rem, 3vw, 2rem);
  max-width: 60rem;
}
.phero-head .plate { flex-shrink: 0; width: 116px; }
.phero h1 { margin-bottom: .9rem; }

.phero-meta {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 1.4rem;
  margin-top: 1.5rem;
}

.byline { display: flex; align-items: center; gap: .65rem; }
.byline-pic {
  width: 40px; height: 40px;
  flex-shrink: 0;
  border-radius: var(--r-pill);
  overflow: hidden;
  border: 1px solid var(--line-2);
  background: var(--ink-4);
}
.byline-pic img { width: 100%; height: 100%; object-fit: cover; }
.byline-name { display: block; font-size: .875rem; font-weight: 600; color: var(--bone); line-height: 1.25; }
.byline-role { display: block; font-size: .78rem; color: var(--bone-3); }

/* Inner-page CTA bar: overlaps the hero's lower edge to tie the two together */
.cta-bar {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: clamp(1rem, 3vw, 2rem);
  margin-top: clamp(1.75rem, 4vw, 2.75rem);
  padding: 1.15rem 1.35rem;
  background: var(--ink-3);
  border: 1px solid var(--line-2);
  border-left: 3px solid var(--flare);
  border-radius: var(--r-md);
  box-shadow: var(--shadow);
}
.cta-bar .plate { width: 108px; }
.cta-bar-label { font-size: .72rem; letter-spacing: .14em; text-transform: uppercase; color: var(--bone-3); display: block; margin-bottom: .2rem; }
.cta-bar-text { font-family: var(--font-display); font-size: clamp(1.02rem, 1.8vw, 1.3rem); font-weight: 700; color: var(--bone); letter-spacing: -.02em; margin: 0; }

/* --------------------------------------------------------------------------
   9 · Ranking - leaderboard family
       One feature card for #1, then compact numbered rows. Deliberately not
       three equal cards.
   -------------------------------------------------------------------------- */
.lead-card {
  position: relative;
  display: grid;
  grid-template-columns: 1.15fr 1fr;
  gap: clamp(1.5rem, 4vw, 3rem);
  align-items: center;
  padding: clamp(1.5rem, 3.5vw, 2.6rem);
  background: var(--ink-3);
  border: 1px solid var(--line-2);
  border-radius: var(--r-lg);
  overflow: hidden;
}
.lead-card::before {
  content: '';
  position: absolute;
  inset: 0 auto 0 0;
  width: 3px;
  background: var(--flare);
}
.lead-rank {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  margin-bottom: 1.1rem;
  font-size: .74rem;
  font-weight: 600;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--flare-text);
}
.lead-card h3 { font-size: clamp(1.5rem, 2.6vw, 2.1rem); margin-bottom: .55rem; }
.lead-stats {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
  margin: 1.5rem 0;
  padding-top: 1.25rem;
  border-top: 1px solid var(--line);
}
.lead-stats dt { font-size: .7rem; letter-spacing: .1em; text-transform: uppercase; color: var(--bone-3); margin-bottom: .3rem; }
.lead-stats dd { margin: 0; font-size: .95rem; font-weight: 600; color: var(--bone); }
.lead-art {
  border-radius: var(--r-md);
  overflow: hidden;
  aspect-ratio: 4 / 3;
  background: var(--ink-2);
}
.lead-art img { width: 100%; height: 100%; object-fit: cover; }
.lead-actions { display: flex; flex-wrap: wrap; gap: .7rem; align-items: center; }

.rank-rows { margin-top: 1.25rem; display: grid; gap: .5rem; }
.rank-row {
  display: grid;
  grid-template-columns: 2.2rem 116px 1fr auto auto;
  align-items: center;
  gap: clamp(.75rem, 2vw, 1.5rem);
  padding: .85rem 1.15rem;
  background: var(--ink-2);
  border: 1px solid var(--line);
  border-radius: var(--r-md);
  transition: border-color .25s var(--ease), background .25s var(--ease), transform .25s var(--ease);
}
.rank-row:hover { border-color: var(--flare-line); background: var(--ink-3); transform: translateX(3px); }
.rank-n {
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 700;
  color: var(--bone-3);
  font-variant-numeric: tabular-nums;
}
.rank-name { font-family: var(--font-display); font-size: 1.02rem; font-weight: 700; color: var(--bone); letter-spacing: -.02em; }
.rank-feat { font-size: .85rem; color: var(--bone-3); margin-top: .1rem; }

/* --------------------------------------------------------------------------
   10 · Bento - mixed tile sizes, some carrying real imagery
   -------------------------------------------------------------------------- */
.bento {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: clamp(.75rem, 1.6vw, 1.15rem);
}
.bento > * { grid-column: span 2; }
.b-3 { grid-column: span 3; }
.b-4 { grid-column: span 4; }
.b-6 { grid-column: span 6; }

.tile {
  position: relative;
  display: flex;
  flex-direction: column;
  padding: clamp(1.2rem, 2.4vw, 1.75rem);
  background: var(--ink-2);
  border: 1px solid var(--line);
  border-radius: var(--r-md);
  overflow: hidden;
  transition: border-color .3s var(--ease), transform .3s var(--ease);
}
.tile:hover { border-color: var(--line-2); transform: translateY(-3px); }
.tile h3 { margin-bottom: .55rem; }
.tile p { font-size: .95rem; margin-bottom: .8rem; }

/* Image-backed tiles: the grid must not be six identical text boxes. */
.tile--art { justify-content: flex-end; min-height: 260px; border-color: transparent; }
.tile--art .tile-bg { position: absolute; inset: 0; z-index: 0; }
.tile--art .tile-bg img { width: 100%; height: 100%; object-fit: cover; }
.tile--art::after {
  content: '';
  position: absolute; inset: 0; z-index: 1;
  background: linear-gradient(0deg, rgba(10, 10, 12, .93) 8%, rgba(10, 10, 12, .5) 48%, rgba(10, 10, 12, .2) 100%);
}
.tile--art > *:not(.tile-bg) { position: relative; z-index: 2; }
.tile--art h3, .tile--art p { color: #fff; }
.tile--art p { color: rgba(255, 255, 255, .78); }

.tile--flare { background: var(--flare-dim); border-color: var(--flare-line); }

/* --------------------------------------------------------------------------
   11 · Split band - image and copy, used at most twice, never three in a row
   -------------------------------------------------------------------------- */
.band {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(1.75rem, 5vw, 4.5rem);
  align-items: center;
}
.band--flip .band-art { order: 2; }
.band-art {
  border-radius: var(--r-lg);
  overflow: hidden;
  aspect-ratio: 4 / 5;
  background: var(--ink-2);
  box-shadow: var(--shadow);
}
.band-art img { width: 100%; height: 100%; object-fit: cover; }
.band-body > :first-child { margin-top: 0; }

/* --------------------------------------------------------------------------
   12 · Check list - block-level items so a compound
        <li><strong>Title:</strong> body</li> flows as one paragraph with the
        marker in the gutter. Grid display would split the strong and the
        trailing text into two grid items and crush the body into a narrow
        second column.
   -------------------------------------------------------------------------- */
.checks, .checks--cards {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: .7rem;
}
.checks li, .checks--cards li {
  display: block;
  position: relative;
  padding-left: 1.9rem;
  font-size: .97rem;
  line-height: 1.62;
  color: var(--bone-2);
}
.checks li::before, .checks--cards li::before {
  content: '';
  position: absolute;
  left: 0; top: .58em;
  width: 7px; height: 7px;
  border-radius: 2px;
  background: var(--flare);
}
.checks li strong, .checks--cards li strong { color: var(--bone); font-weight: 600; }

.checks--cards { gap: .55rem; }
.checks--cards li {
  padding: 1rem 1.25rem 1rem 2.6rem;
  background: var(--ink-2);
  border: 1px solid var(--line);
  border-radius: var(--r-md);
  transition: border-color .25s var(--ease);
}
.checks--cards li:hover { border-color: var(--flare-line); }
.checks--cards li::before { left: 1.25rem; top: 1.35rem; }

.bullets { list-style: none; margin: 0 0 1.1rem; padding: 0; display: grid; gap: .42rem; }
.bullets li { position: relative; padding-left: 1.3rem; color: var(--bone-2); font-size: .97rem; }
.bullets li::before {
  content: '';
  position: absolute; left: .15rem; top: .72em;
  width: 5px; height: 5px; border-radius: 1px;
  background: var(--flare);
  opacity: .85;
}
.bullets li strong { color: var(--bone); }

/* --------------------------------------------------------------------------
   12b · Index - hairline separated editorial list, two columns.
        A distinct family from the bordered cards and the bento tiles, used
        so the casino write-ups do not repeat a shape already on the page.
   -------------------------------------------------------------------------- */
.index-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  column-gap: clamp(2rem, 5vw, 4.5rem);
}
.index-item { padding-block: clamp(1.35rem, 2.5vw, 1.9rem); border-top: 1px solid var(--line); }
.index-item h3 { margin-bottom: .5rem; }
.index-item p { font-size: .95rem; margin: 0; }
@media (max-width: 780px) { .index-grid { grid-template-columns: minmax(0, 1fr); } }

/* --------------------------------------------------------------------------
   13 · Rail - horizontal scroll-snap, used for the trust cards
   -------------------------------------------------------------------------- */
.rail {
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: minmax(260px, 1fr);
  gap: clamp(.75rem, 1.6vw, 1.15rem);
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  padding-bottom: .5rem;
  scrollbar-width: thin;
}
.rail > * { scroll-snap-align: start; }
.rail::-webkit-scrollbar { height: 3px; }
.rail::-webkit-scrollbar-track { background: var(--line); border-radius: 2px; }
.rail::-webkit-scrollbar-thumb { background: var(--flare); border-radius: 2px; }

.rail-card {
  padding: clamp(1.25rem, 2.4vw, 1.75rem);
  background: var(--ink-2);
  border: 1px solid var(--line);
  border-radius: var(--r-md);
}
.rail-card h3 { font-size: 1.05rem; margin-bottom: .5rem; }
.rail-card p { font-size: .92rem; margin: 0; }

/* --------------------------------------------------------------------------
   14 · Verdict
   -------------------------------------------------------------------------- */
.verdict {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: clamp(1.5rem, 4vw, 3rem);
  padding: clamp(1.5rem, 3.5vw, 2.75rem);
  background: var(--ink-2);
  border: 1px solid var(--line-2);
  border-radius: var(--r-lg);
}
.verdict-top {
  display: flex;
  align-items: baseline;
  gap: 1rem;
  padding-bottom: 1.25rem;
  margin-bottom: 1.25rem;
  border-bottom: 1px solid var(--line);
}
.verdict-top .label { font-size: .8rem; color: var(--bone-3); }

.rates { display: grid; gap: 1rem; }
.rate-row { display: grid; grid-template-columns: 1fr auto; gap: .5rem 1rem; align-items: center; }
.rate-row .k { font-size: .9rem; color: var(--bone-2); }
.rate-row .v { font-size: .9rem; font-weight: 600; color: var(--bone); font-variant-numeric: tabular-nums; }
.rate-row .meter { grid-column: 1 / -1; }

.verdict-note {
  align-self: start;
  padding: clamp(1.25rem, 2.5vw, 1.75rem);
  background: var(--ink-3);
  border-radius: var(--r-md);
}
.verdict-note blockquote {
  margin: 0 0 1.1rem;
  font-family: var(--font-display);
  font-size: 1.05rem;
  font-weight: 500;
  line-height: 1.5;
  letter-spacing: -.015em;
  color: var(--bone);
}
.verdict-src { font-size: .74rem; letter-spacing: .05em; color: var(--bone-3); text-transform: uppercase; }

/* --------------------------------------------------------------------------
   15 · Generated content sections
   -------------------------------------------------------------------------- */
.content-section { padding-block: clamp(2.25rem, 4.5vw, 3.5rem); }
.content-section > .wrap > h2 { margin-bottom: 1.5rem; max-width: 22ch; }
.content-section p { max-width: 74ch; }

.grid-auto { display: grid; gap: clamp(.75rem, 1.6vw, 1.15rem); grid-template-columns: repeat(3, minmax(0, 1fr)); }
.grid-auto[data-cols="1"] { grid-template-columns: minmax(0, 1fr); }
.grid-auto[data-cols="2"] { grid-template-columns: repeat(2, minmax(0, 1fr)); }
.grid-auto[data-cols="3"] { grid-template-columns: repeat(3, minmax(0, 1fr)); }
.grid-auto[data-cols="4"] { grid-template-columns: repeat(4, minmax(0, 1fr)); }

.card {
  padding: clamp(1.2rem, 2.4vw, 1.7rem);
  background: var(--ink-2);
  border: 1px solid var(--line);
  border-radius: var(--r-md);
  transition: border-color .3s var(--ease);
}
.card:hover { border-color: var(--line-2); }
.card h3 { margin-bottom: .5rem; }
.card p { font-size: .95rem; }

.statement {
  padding: clamp(1.75rem, 4vw, 3rem);
  background: var(--ink-2);
  border: 1px solid var(--line);
  border-left: 3px solid var(--flare);
  border-radius: var(--r-md);
}
.statement p { max-width: 70ch; }

.intro-block { border-left: 2px solid var(--flare); padding-left: clamp(1.1rem, 2.5vw, 1.9rem); }
.intro-block p:first-of-type { font-size: clamp(1.08rem, 1.8vw, 1.25rem); color: var(--bone); line-height: 1.5; }

.figure {
  border-radius: var(--r-lg);
  overflow: hidden;
  aspect-ratio: 21 / 8;
  background: var(--ink-2);
  margin-block: clamp(1.5rem, 3.5vw, 2.75rem);
}
.figure img { width: 100%; height: 100%; object-fit: cover; }

.faq { display: grid; gap: .5rem; }
.faq-item {
  padding: 1.15rem 1.4rem;
  background: var(--ink-2);
  border: 1px solid var(--line);
  border-radius: var(--r-md);
}
.faq-item h3 { font-size: 1rem; margin-bottom: .4rem; }
.faq-item p { margin: 0; font-size: .93rem; }

/* --------------------------------------------------------------------------
   16 · Footer
   -------------------------------------------------------------------------- */
.site-footer { border-top: 1px solid var(--line); margin-top: clamp(3rem, 7vw, 6rem); }
.footer-grid {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr 1fr;
  gap: clamp(1.75rem, 4vw, 3rem);
  padding-block: clamp(2.75rem, 6vw, 4.5rem);
}
.footer-brand svg { height: 30px; width: auto; margin-bottom: 1.1rem; color: var(--bone); }
.footer-brand p { font-size: .9rem; max-width: 34ch; }

.footer-col h3 {
  font-family: var(--font);
  font-size: .74rem;
  font-weight: 600;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--bone-3);
  margin-bottom: 1rem;
}
.footer-col ul { list-style: none; margin: 0; padding: 0; display: grid; gap: .55rem; }
.footer-col a { font-size: .9rem; color: var(--bone-2); transition: color .2s var(--ease); }
.footer-col a:hover { color: var(--flare-text); }

.footer-legal {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem 2rem;
  align-items: center;
  justify-content: space-between;
  padding-block: 1.5rem 2.5rem;
  border-top: 1px solid var(--line);
}
.footer-legal p { font-size: .8rem; color: var(--bone-3); margin: 0; max-width: 68ch; }
.footer-flags { display: flex; gap: .5rem; flex-wrap: wrap; }

/* --------------------------------------------------------------------------
   17 · 404
   -------------------------------------------------------------------------- */
.err { padding-block: clamp(4rem, 12vw, 9rem); }
.err-code {
  font-family: var(--font-display);
  font-size: clamp(4.5rem, 14vw, 9rem);
  font-weight: 700;
  line-height: .88;
  letter-spacing: -.05em;
  color: var(--flare-text);
  margin-bottom: .3rem;
}

/* --------------------------------------------------------------------------
   18 · Motion
       Every animation below is motivated: entry choreography establishes
       reading order, scroll reveal signals hierarchy, hover states are
       feedback. Nothing loops forever.
   -------------------------------------------------------------------------- */
@keyframes rise {
  from { opacity: 0; transform: translateY(18px); }
  to   { opacity: 1; transform: none; }
}
@keyframes plate-in {
  from { opacity: 0; transform: translateY(26px) scale(.975); }
  to   { opacity: 1; transform: none; }
}

.reveal { opacity: 0; transform: translateY(18px); transition: opacity .7s var(--ease), transform .7s var(--ease); }
.reveal.seen { opacity: 1; transform: none; }

@media (prefers-reduced-motion: no-preference) {
  .hero-in > * { animation: rise .85s var(--ease) backwards; }
  .hero-in > *:nth-child(1) { animation-delay: .05s; }
  .hero-in > *:nth-child(2) { animation-delay: .13s; }
  .hero-in > *:nth-child(3) { animation-delay: .21s; }
  .hero-in > *:nth-child(4) { animation-delay: .29s; }

  .hero-plate { animation: plate-in 1s var(--ease) .16s backwards; }
  .hero-inset { animation: plate-in 1s var(--ease) .34s backwards; }
  .hero-tag   { animation: plate-in 1s var(--ease) .48s backwards; }

  /* Depth on scroll, done with a scroll-driven animation rather than a
     scroll event listener. Silently ignored where unsupported. */
  @supports (animation-timeline: view()) {
    .hero-plate img, .phero-art img {
      animation: drift linear both;
      animation-timeline: view();
      animation-range: entry 0% exit 100%;
    }
    @keyframes drift {
      from { transform: scale(1.08) translateY(-1.5%); }
      to   { transform: scale(1.08) translateY(1.5%); }
    }
  }
}

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

/* --------------------------------------------------------------------------
   19 · Responsive
   -------------------------------------------------------------------------- */
@media (max-width: 1024px) {
  .hero-grid { grid-template-columns: 1fr; gap: 2.5rem; }
  .hero-title h1 { max-width: none; }
  .hero-art { max-height: 56vh; aspect-ratio: 16 / 11; justify-self: stretch; }
  .hero-plate { inset: 0 0 0 10%; }
  .hero-inset { width: 30%; bottom: 8%; }
  .lead-card { grid-template-columns: 1fr; }
  .lead-art { order: -1; aspect-ratio: 16 / 9; }
  .verdict { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 900px) {
  .burger { display: block; }
  .header-cta { display: none; }

  .nav {
    position: fixed;
    inset: 68px 0 0;
    margin: 0;
    padding: 1.5rem var(--gutter) 3rem;
    background: var(--ink);
    overflow-y: auto;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-8px);
    transition: opacity .28s var(--ease), transform .28s var(--ease), visibility .28s;
  }
  .nav.is-open { opacity: 1; visibility: visible; transform: none; }

  .nav-list { flex-direction: column; align-items: stretch; gap: 0; }
  .nav-list > li { border-bottom: 1px solid var(--line); }
  .nav-list > li > a { padding: 1rem .2rem; font-size: 1.05rem; }
  .nav-list > li > a.active::after { display: none; }

  .has-sub::after { display: none; }
  .submenu {
    position: static;
    width: 100%;
    transform: none;
    opacity: 1;
    visibility: visible;
    display: none;
    box-shadow: none;
    background: transparent;
    border: 0;
    padding: 0 0 .75rem;
  }
  .has-sub.is-open .submenu { display: grid; }
  .has-sub:hover .submenu { display: none; }
  .has-sub.is-open:hover .submenu { display: grid; }

  .band, .band--flip .band-art { grid-template-columns: 1fr; order: 0; }
  .band-art { aspect-ratio: 16 / 10; }

  .bento > *, .b-3, .b-4 { grid-column: span 3; }
  .b-6 { grid-column: span 6; }

  .grid-auto[data-cols="3"], .grid-auto[data-cols="4"] { grid-template-columns: repeat(2, minmax(0, 1fr)); }

  .rank-row { grid-template-columns: 1.8rem 1fr auto; row-gap: .6rem; }
  .rank-row .plate { grid-row: 2; grid-column: 1 / 3; width: 116px; }
  .rank-row .btn { grid-row: 2; grid-column: 3; }

  .phero-head { flex-direction: column; }
  .cta-bar { grid-template-columns: 1fr; text-align: left; }
  .cta-bar .btn { justify-self: start; }
}

@media (max-width: 620px) {
  .bento > *, .b-3, .b-4, .b-6 { grid-column: span 6; }
  .grid-auto, .grid-auto[data-cols="2"], .grid-auto[data-cols="3"], .grid-auto[data-cols="4"] { grid-template-columns: minmax(0, 1fr); }
  .lead-stats { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .footer-grid { grid-template-columns: 1fr; }
  .hero-art { aspect-ratio: 4 / 3.4; }
  .hero-inset { width: 36%; }
  .hero-tag { right: 4%; top: 5%; padding: .6rem .8rem; }
  .hero-tag b { font-size: 1.1rem; }
  .submenu { grid-template-columns: 1fr; }
  .verdict-top { flex-wrap: wrap; }
  .footer-legal { flex-direction: column; align-items: flex-start; }
}

@media print {
  .site-header, .site-footer, .phero-art, .cta-bar, .btn { display: none !important; }
  body { background: #fff; color: #000; }
}
