/* ============================================================
   Tomboly — design system.
   Every colour is from the Phase-1 audit (original/design-tokens.md).
   Band structure follows the documented skeleton mapping
   (analyse/skelett-abgleich.md); the look stays calm: no coloured
   strips over cards, no carnival badges.
   Mobile first: base 390px, scale up at 900px.
   ============================================================ */

:root {
  /* brand */
  --cyan: #00B8F5;
  --cyan-deep: #0099CC;
  --orange: #FFAC2C;
  --orange-deep: #E69402;

  /* ink */
  --ink: #111827;
  --navy: #0E1A2B;
  --body: #374151;
  --mid: #4B5563;
  --muted: #6B7280;
  --faint: #9CA3AF;

  /* surfaces */
  --paper: #FFFFFF;
  --wash: #F9FAFB;
  --line: #E5E7EB;
  --line-soft: #F3F4F6;
  --blue-tint: #EFF6FF;

  /* signals */
  --green: #16A34A;
  --green-dot: #4ADE80;

  --cyan-05: rgba(0, 184, 245, .05);
  --cyan-10: rgba(0, 184, 245, .10);
  --orange-10: rgba(255, 172, 44, .10);

  --grad-cyan: linear-gradient(to right, #00B8F5, #0099CC);
  --grad-orange: linear-gradient(to right, #FFAC2C, #E69402);

  --font-display: "Montserrat", "Trebuchet MS", sans-serif;
  --font-text: "Inter", "Helvetica Neue", Arial, sans-serif;

  --radius-card: 16px;
  --radius-big: 22px;
  --radius-input: 12px;

  --shadow-pop: 0 10px 30px rgba(14, 26, 43, .14);
  --shadow-bar: 0 -6px 24px rgba(14, 26, 43, .12);
  --shadow-down: 0 6px 24px rgba(14, 26, 43, .10);

  --container: 1160px;
  --gutter: 20px;
  --tap: 44px;
  --header-h: 97px; /* ribbon 40 + bar 57 */
}

/* ---------- reset ---------- */
*, *::before, *::after { box-sizing: border-box; }
[hidden] { display: none !important; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: var(--font-text);
  font-size: 16px;
  line-height: 1.55;
  color: var(--body);
  background: var(--paper);
}
img { max-width: 100%; display: block; }
a { color: var(--cyan-deep); text-decoration: none; }
a:focus-visible, button:focus-visible, input:focus-visible, select:focus-visible, summary:focus-visible {
  outline: 3px solid var(--cyan);
  outline-offset: 2px;
  border-radius: 4px;
}
button { font: inherit; cursor: pointer; border: 0; background: none; padding: 0; color: inherit; }
h1, h2, h3, h4 { font-family: var(--font-display); color: var(--ink); margin: 0; }
p { margin: 0; }
ul, ol { margin: 0; padding: 0; list-style: none; }
dl, dd { margin: 0; }
::selection { background: var(--cyan); color: #fff; }

.container { max-width: var(--container); margin: 0 auto; padding-left: var(--gutter); padding-right: var(--gutter); }
.visually-hidden { position: absolute; width: 1px; height: 1px; margin: -1px; overflow: hidden; clip: rect(0 0 0 0); white-space: nowrap; }

/* ---------- type ---------- */
.display { font-size: clamp(30px, 8vw, 52px); line-height: 1.06; font-weight: 800; letter-spacing: -0.02em; }
.h2 { font-size: clamp(23px, 5.8vw, 32px); line-height: 1.15; font-weight: 800; letter-spacing: -0.015em; }
.h2-sec { font-size: clamp(20px, 5.4vw, 28px); }
.h1-page { font-size: clamp(26px, 7vw, 38px); }
.h3 { font-size: clamp(18px, 4.8vw, 22px); line-height: 1.25; font-weight: 700; }
.h4 { font-size: 16.5px; line-height: 1.3; font-weight: 700; }
.eyebrow {
  font-family: var(--font-display);
  font-size: 12.5px;
  font-weight: 700;
  letter-spacing: .09em;
  text-transform: uppercase;
  color: var(--cyan-deep);
}
.lead { font-size: clamp(16px, 4.2vw, 18.5px); line-height: 1.55; color: var(--mid); }
.micro { font-size: 12.5px; }
.num { font-variant-numeric: tabular-nums; }

/* ---------- buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: var(--tap);
  padding: 11px 24px;
  border-radius: 999px;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 15.5px;
  line-height: 1.2;
  transition: transform .12s ease, box-shadow .12s ease, opacity .12s ease;
  -webkit-tap-highlight-color: transparent;
}
.btn:active { transform: scale(.97); }
.btn[disabled] { opacity: .4; pointer-events: none; box-shadow: none; }
.btn-primary { background: var(--grad-cyan); color: #fff; }
.btn-primary:hover { box-shadow: 0 6px 18px rgba(0, 184, 245, .35); }
.btn-ghost { background: var(--paper); color: var(--ink); border: 2px solid var(--line); }
.btn-ghost:hover { border-color: var(--cyan); color: var(--cyan-deep); }
.btn-block { width: 100%; }
.btn-big { padding: 14px 28px; font-size: 17px; }
.link-arrow {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  min-height: var(--tap);
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 14.5px;
  color: var(--cyan-deep);
  white-space: nowrap;
}
.link-arrow::after { content: "→"; }

/* icon button (header account / cart, card cart) */
.icon-btn {
  position: relative;
  width: var(--tap); height: var(--tap);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 12px;
  color: var(--ink);
}
.icon-btn:hover { background: var(--line-soft); }
.cart-count {
  position: absolute;
  top: 2px; right: 0;
  min-width: 18px; height: 18px;
  padding: 0 4px;
  display: grid;
  place-items: center;
  border-radius: 999px;
  background: var(--grad-orange);
  color: #fff;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 11px;
}

/* ============================================================
   G1/G2 — ribbon + header (promo ribbon over 57px bar)
   ============================================================ */
.site-top { position: sticky; top: 0; z-index: 60; }
.ribbon {
  background: var(--navy);
  color: #fff;
  font-size: 12.5px;
  line-height: 1.3;
  text-align: center;
  padding: 11px var(--gutter);
  min-height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
}
.ribbon strong { font-weight: 700; color: var(--orange); }
.ribbon { white-space: nowrap; overflow: hidden; text-overflow: ellipsis; display: block; padding-top: 8px; }
.ribbon a { color: #fff; text-decoration: underline; text-underline-offset: 2px; display: inline-block; padding: 9px 2px; margin: -9px 0; }
.site-header {
  background: var(--paper);
  border-bottom: 1px solid var(--line);
}
.site-header .container {
  display: flex;
  align-items: center;
  gap: 6px;
  height: 57px;
}
.logo { display: inline-flex; align-items: center; min-height: var(--tap); margin-right: auto; }
.logo img { height: 30px; width: auto; }
.main-nav { display: none; }

/* ---------- G3 menu sheet (sales shelf) ---------- */
.sheet {
  position: fixed;
  inset: 0;
  z-index: 80;
  background: var(--paper);
  display: none;
  flex-direction: column;
  overflow-y: auto;
  padding: 10px var(--gutter) calc(28px + env(safe-area-inset-bottom));
}
.sheet.open { display: flex; }
.sheet-top { display: flex; align-items: center; justify-content: space-between; margin-bottom: 6px; }
.sheet-close {
  width: var(--tap); height: var(--tap);
  display: grid; place-items: center;
  border-radius: 12px;
  font-size: 18px;
  color: var(--ink);
}
.sheet-close:hover { background: var(--line-soft); }
.sheet h3 {
  font-size: 12.5px;
  letter-spacing: .09em;
  text-transform: uppercase;
  color: var(--muted);
  margin: 18px 0 8px;
}
.sheet-feature {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 10px 12px;
  border: 1px solid var(--line);
  border-radius: var(--radius-card);
  margin-bottom: 8px;
}
.sheet-feature img { width: 52px; height: 52px; object-fit: contain; flex: none; background: var(--wash); border-radius: 10px; padding: 4px; }
.sheet-feature .sf-name { font-family: var(--font-display); font-weight: 700; font-size: 14.5px; color: var(--ink); line-height: 1.25; }
.sheet-feature .sf-ends { font-size: 12.5px; color: var(--orange-deep); font-weight: 700; }
.sheet-feature .btn { margin-left: auto; padding: 8px 16px; min-height: 38px; font-size: 13.5px; flex: none; }
.sheet-cats { display: grid; gap: 2px; }
.sheet-cats a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: var(--tap);
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 16px;
  color: var(--ink);
  border-bottom: 1px solid var(--line-soft);
}
.sheet-cats .count { font-family: var(--font-text); font-weight: 500; font-size: 13.5px; color: var(--muted); }
.sheet-menu { display: grid; gap: 2px; }
.sheet-menu a {
  display: flex;
  align-items: center;
  min-height: var(--tap);
  font-size: 15.5px;
  color: var(--mid);
}
.sheet .micro { margin-top: 16px; color: var(--muted); }

/* ============================================================
   D1s — countdown bar under the header (detail + instant win)
   ============================================================ */
.endsbar {
  background: var(--navy);
  color: #fff;
  font-size: 13.5px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 30px;
  padding: 4px var(--gutter);
}
.endsbar .num { color: var(--orange); font-weight: 700; letter-spacing: .04em; }

/* ============================================================
   H1 — hero carousel — dark stage (BOTB energy)
   Uploaded banner/product images are opaque and bring their own
   background colour; the vignette fades any of them into the stage.
   ============================================================ */
.hero-car { position: relative; }
.hero-car.dark {
  background:
    radial-gradient(90% 60% at 50% 0%, rgba(0, 184, 245, .14), transparent 60%),
    linear-gradient(180deg, #10203A 0%, #0B1524 55%, #080F1A 100%);
  color: #fff;
  overflow: hidden;
}
.hero-car.dark::before { /* neon light bars, left + right */
  content: "";
  position: absolute; inset: 0;
  background:
    linear-gradient(180deg, rgba(0, 184, 245, .55), rgba(0, 184, 245, 0) 70%) 5% 0 / 3px 72% no-repeat,
    linear-gradient(180deg, rgba(255, 172, 44, .45), rgba(255, 172, 44, 0) 65%) 12% 0 / 2px 56% no-repeat,
    linear-gradient(180deg, rgba(0, 184, 245, .32), rgba(0, 184, 245, 0) 60%) 19% 0 / 2px 42% no-repeat,
    linear-gradient(180deg, rgba(255, 172, 44, .5), rgba(255, 172, 44, 0) 70%) 81% 0 / 2px 52% no-repeat,
    linear-gradient(180deg, rgba(0, 184, 245, .5), rgba(0, 184, 245, 0) 72%) 89% 0 / 3px 68% no-repeat,
    linear-gradient(180deg, rgba(0, 184, 245, .3), rgba(0, 184, 245, 0) 55%) 96% 0 / 2px 40% no-repeat;
  filter: blur(1px);
  pointer-events: none;
}
.hero-track {
  display: flex;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
  position: relative;
}
.hero-track::-webkit-scrollbar { display: none; }
/* Carousel motion is driven by JS (fixed 300ms ease); keep any inherited
   native smooth-scroll from fighting the per-frame scrollLeft animation. */
.hero-track, .gal-track, .ws-track, .ss-track { scroll-behavior: auto; }
.hero-slide {
  flex: 0 0 100%;
  scroll-snap-align: start;
  padding: 30px var(--gutter) 14px;
  display: grid;
  justify-items: center;
  text-align: center;
  gap: 4px;
}
.hs-copy { display: grid; gap: 4px; justify-items: center; }

/* the stage: opaque image panel + vignette + stickers */
.hs-stage { position: relative; width: auto; align-self: stretch; margin: 0 calc(-1 * var(--gutter)) 8px; }
.hs-stage::before { /* spotlight glow behind the panel */
  content: "";
  position: absolute; inset: -8% -6%;
  background: radial-gradient(60% 55% at 50% 45%, rgba(0, 184, 245, .30), transparent 72%);
  filter: blur(8px);
}
.hs-media {
  position: relative;
  height: min(84vw, 350px);
  border-radius: 0;
  overflow: hidden;
}
.hs-media img { width: 100%; height: 100%; object-fit: cover; object-position: 50% 58%; display: block; filter: brightness(1.06) saturate(1.04); }
.hs-media.contain img { object-fit: contain; padding: 34px; }
/* Banner slides: the whole photo is a clickable link to the slide's target. */
.hs-media-link { display: block; width: 100%; height: 100%; text-decoration: none; cursor: pointer; }
.hs-media-link:focus-visible { outline: 3px solid var(--orange); outline-offset: -3px; }
.hs-media::after { /* light frame: fade the uploaded image's edges into the stage */
  content: "";
  position: absolute; inset: 0;
  background:
    radial-gradient(150% 130% at 50% 44%, transparent 58%, rgba(8, 15, 26, .5) 100%),
    linear-gradient(180deg, rgba(8, 15, 26, .1), transparent 16% 76%, rgba(8, 15, 26, .66) 100%);
}

/* rotated price tag — real volume price, real strike price */
.hs-tag {
  position: absolute; top: -6px; left: 10px; z-index: 2;
  transform: rotate(-8deg);
  background: #FFD43B;
  color: var(--ink);
  border-radius: 10px;
  padding: 8px 14px 8px 22px;
  display: grid;
  grid-template-columns: auto auto;
  justify-items: start;
  align-items: end;
  column-gap: 7px;
  line-height: 1;
  box-shadow: 0 10px 24px rgba(0, 0, 0, .45);
}
.hs-tag::before { /* punched hole */
  content: "";
  position: absolute; left: 8px; top: 50%;
  width: 7px; height: 7px;
  transform: translateY(-50%);
  border-radius: 50%;
  background: #0B1524;
  box-shadow: 0 0 0 2px rgba(255, 255, 255, .65);
}
.hs-tag .tg-k { grid-column: 1 / -1; font-size: 10px; font-weight: 800; text-transform: uppercase; letter-spacing: .09em; margin-bottom: 3px; }
.hs-tag .tg-b { font-family: var(--font-display); font-weight: 800; font-size: 27px; letter-spacing: -0.01em; }
.hs-tag s { font-size: 12.5px; font-weight: 700; color: rgba(17, 24, 39, .55); padding-bottom: 2px; }

/* cash-alternative medal */
.hs-medal {
  position: absolute; right: 12px; bottom: -16px; z-index: 2;
  width: 98px; height: 98px;
  border-radius: 50%;
  transform: rotate(7deg);
  display: grid;
  place-content: center;
  gap: 2px;
  text-align: center;
  background: radial-gradient(circle at 30% 25%, #FFC85E, #E69402 62%, #B87400);
  box-shadow: 0 12px 26px rgba(0, 0, 0, .5), inset 0 0 0 3px rgba(255, 255, 255, .85), inset 0 0 0 6px rgba(184, 116, 0, .9);
  color: #3A2500;
}
.hs-medal .md-v { font-family: var(--font-display); font-weight: 800; font-size: 17px; }
.hs-medal .md-l { font-size: 8.5px; font-weight: 800; text-transform: uppercase; letter-spacing: .1em; max-width: 72px; }

/* diagonal ribbon */
.hs-ribbon {
  position: absolute; top: 30px; left: -44px; right: -44px; z-index: 2;
  transform: rotate(-13deg);
  background: rgba(8, 15, 26, .9);
  border-top: 1px solid rgba(255, 255, 255, .28);
  border-bottom: 1px solid rgba(255, 255, 255, .28);
  color: #fff;
  font-family: var(--font-display);
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: .38em;
  font-size: 13px;
  text-align: center;
  padding: 8px 0 8px .38em;
}

.hs-chip {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 4px 12px;
  border-radius: 999px;
  border: 1px solid var(--line);
  background: var(--paper);
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 12px;
  color: var(--orange-deep);
}
/* Once the draw deadline passes the chip drops "Closes" and reads "Drawing now". */
.hs-chip.is-drawing .chip-lead { display: none; }
.hero-car.dark .hs-chip {
  border: 1.5px solid var(--orange);
  background: transparent;
  color: var(--orange);
  text-transform: uppercase;
  letter-spacing: .12em;
  font-size: 11px;
  padding: 4px 12px;
}
.hero-slide h2 { font-size: clamp(24px, 6.6vw, 34px); line-height: 1.1; letter-spacing: -0.015em; }
.hero-car.dark .hero-slide h2 {
  color: #fff;
  font-size: clamp(22px, 6.2vw, 44px);
  line-height: 1.05;
  letter-spacing: -0.005em;
  text-transform: uppercase;
  font-weight: 800;
}
.hero-slide .hs-sub { font-size: 14.5px; color: var(--mid); max-width: 34ch; }
.hero-car.dark .hs-sub { color: rgba(255, 255, 255, .85); max-width: 44ch; font-size: 13.5px; line-height: 1.45; }

.hs-cta { display: flex; gap: 10px; margin-top: 6px; align-items: stretch; justify-content: center; }
.btn.btn-hero {
  border: 1.5px solid rgba(255, 255, 255, .92);
  color: #fff;
  background: transparent;
  text-transform: uppercase;
  letter-spacing: .13em;
  font-size: 13px;
  font-weight: 700;
  padding: 11px 22px;
  border-radius: 12px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
}
.btn.btn-hero:hover { background: rgba(255, 255, 255, .12); }
.btn.btn-hero .chev { color: var(--orange); font-size: 17px; line-height: 1; }
.btn-hcart {
  width: 50px;
  border-radius: 12px;
  background: var(--grad-orange);
  color: #fff;
  display: grid;
  place-items: center;
  box-shadow: 0 8px 18px rgba(230, 148, 2, .35);
}
.btn-hcart:hover { filter: brightness(1.06); }

.hero-dots { display: flex; justify-content: center; gap: 0; padding: 0; }
.hero-dots button {
  position: relative;
  width: 40px; height: 40px;
  border-radius: 50%;
  padding: 0;
}
.hero-dots button::after {
  content: "";
  position: absolute;
  inset: 16px;
  border-radius: 50%;
  background: var(--line);
}
.hero-dots button[aria-current="true"]::after { background: var(--cyan-deep); }
.hero-car.dark .hero-dots button::after { background: rgba(255, 255, 255, .28); }
.hero-car.dark .hero-dots button[aria-current="true"]::after { background: var(--orange); }

/* stats + drawn-live strip on the stage */
.hero-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 6px;
  padding: 10px var(--gutter) 2px;
  border-top: 1px solid rgba(255, 255, 255, .14);
  position: relative;
}
.hero-stats > div { display: flex; gap: 9px; align-items: center; justify-content: center; }
.hero-stats svg { color: var(--orange); flex: none; }
.hero-stats .st-v { display: block; font-family: var(--font-display); font-weight: 800; font-size: 14px; color: #fff; }
.hero-stats .st-l { display: block; font-size: 10px; color: rgba(255, 255, 255, .6); }
.hero-press {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  padding: 4px var(--gutter) 12px;
  flex-wrap: wrap;
  position: relative;
}
.hero-press .hp-k { font-size: 10px; letter-spacing: .18em; text-transform: uppercase; color: rgba(255, 255, 255, .5); font-weight: 700; }
.hero-press .hp-logos { display: flex; gap: 20px; }
.hero-press b { font-family: var(--font-display); font-weight: 800; font-size: 13.5px; color: rgba(255, 255, 255, .55); }

/* hot-band energy variants (home) */
.hot-band.dark { background: linear-gradient(135deg, #10203A, #080F1A); border-color: transparent; color: #fff; }
.hot-band.dark h3 { color: #fff; }
.hot-band.dark .hb-sub { color: rgba(255, 255, 255, .78); }
.hot-band.dark .hb-kick { color: var(--orange); }
.hot-band.fire { background: linear-gradient(120deg, #FFF3E0, #FFE0B0); border-color: #F2CE93; }
.hot-band.fire .hb-kick { color: var(--orange-deep); }

/* ============================================================
   H2 — sticky category tab bar
   ============================================================ */
.tabbar {
  position: sticky;
  top: var(--header-h);
  z-index: 40;
  background: var(--paper);
  box-shadow: var(--shadow-down);
}
.tabbar-track {
  display: flex;
  gap: 4px;
  overflow-x: auto;
  scrollbar-width: none;
  padding: 0 var(--gutter);
}
.tabbar-track::-webkit-scrollbar { display: none; }
.tabbar a {
  display: inline-flex;
  align-items: center;
  min-height: 48px;
  padding: 0 12px;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 14px;
  color: var(--mid);
  border-bottom: 3px solid transparent;
  white-space: nowrap;
}
.tabbar a[aria-current="true"] { color: var(--cyan-deep); border-bottom-color: var(--cyan); }
.tabbar.icons a { display: inline-flex; align-items: center; gap: 7px; }
.tabbar.icons a svg { color: var(--orange); flex: none; }

/* ============================================================
   H3 / D12s — winner ticker (placeholder band, E3)
   ============================================================ */
.ticker-ph { background: var(--wash); border-bottom: 1px solid var(--line-soft); }
.ticker-ph .container {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 6px 14px;
  padding-top: 14px;
  padding-bottom: 14px;
}
.ticker-ph .tp-label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 13px;
  letter-spacing: .07em;
  text-transform: uppercase;
  color: var(--ink);
}
.ticker-ph .dot { width: 8px; height: 8px; border-radius: 50%; background: var(--green-dot); animation: pulse 1.6s infinite; }
@keyframes pulse { 50% { opacity: .35; } }


.ticker-ph .container { flex-wrap: wrap; }
.ticker-ph .tk-head {
  width: 100%;
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 10px;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 23px;
  color: var(--ink);
  line-height: 1.1;
}
.ticker-ph .tk-count { font-family: var(--font-text); font-weight: 500; font-size: 12.5px; color: var(--muted); text-align: right; flex: none; }
.ticker-ph .tk-count strong { color: var(--orange-deep); font-weight: 800; }
.tk-head em, .h2 em, .h2-sec em { font-style: italic; color: var(--cyan-deep); }

/* ============================================================
   band scaffolding (H4–H9, W3 …)
   ============================================================ */
.band { padding: 30px 0 26px; }
[id] { scroll-margin-top: calc(var(--header-h) + 58px); }
.band.wash { background: var(--wash); }
.band-head { display: flex; align-items: baseline; justify-content: space-between; gap: 12px; }
.band-head .bh-sub { font-size: 13.5px; color: var(--muted); margin-top: 4px; }
.grid2 { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; margin-top: 16px; }

/* 3-step strip inside FEATURED (H4) */
.step-strip {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
  margin-top: 14px;
  padding: 12px 10px;
  border: 1px solid var(--line);
  border-radius: var(--radius-card);
  background: var(--paper);
}
.step-strip .ss-item { display: grid; justify-items: center; gap: 4px; text-align: center; color: inherit; min-height: 44px; align-content: start; }
.step-strip .ss-n {
  width: 26px; height: 26px;
  display: grid; place-items: center;
  border-radius: 50%;
  background: var(--cyan-10);
  color: var(--cyan-deep);
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 13px;
}
.step-strip .ss-t { font-family: var(--font-display); font-weight: 700; font-size: 12.5px; color: var(--ink); line-height: 1.25; }

/* ============================================================
   raffle card (home + category grids) — BOTB card anatomy, calm skin
   ============================================================ */
.rc {
  position: relative;
  display: flex;
  flex-direction: column;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--radius-card);
  overflow: hidden;
}
.rc-chip {
  position: absolute;
  top: 8px; left: 8px;
  z-index: 2;
  padding: 4px 10px;
  border-radius: 999px;
  background: var(--grad-orange);
  border: 0;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 11px;
  color: #fff;
}
.rc-media { background: var(--wash); padding: 16px 12px 10px; }
.rc-media img { width: 100%; aspect-ratio: 4 / 3; object-fit: contain; }
.rc-body { padding: 10px 12px 12px; display: flex; flex-direction: column; flex: 1; }
.rc-body.pad-chip { padding-top: 40px; }
.rc-tile { padding: 12px; display: grid; gap: 2px; }
.rc-tile .rc-title { font-family: var(--font-display); }
.rc-brand { display: block; font-family: var(--font-display); font-weight: 800; color: var(--ink); }
.rc-model { display: block; font-family: var(--font-text); font-weight: 500; font-size: 13px; color: var(--muted); line-height: 1.35; min-height: 35px; }
.rc-cat { font-size: 11px; letter-spacing: .08em; text-transform: uppercase; color: var(--muted); font-weight: 600; }
.rc-title { font-size: 14.5px; line-height: 1.25; margin-top: 2px; min-height: 36px; }
.rc-title a { color: var(--ink); }
.rc-title a::after { content: ""; position: absolute; inset: 0; }
.rc-value { font-size: 12.5px; color: var(--muted); margin-top: 3px; }
.rc-value strong { color: var(--ink); font-weight: 600; }
.rc-pricelab { margin-top: 8px; font-size: 10.5px; letter-spacing: .08em; text-transform: uppercase; color: var(--muted); }
.rc-price { font-family: var(--font-display); font-weight: 800; font-size: 19px; color: var(--ink); line-height: 1.15; }
.rc-price .from { font-family: var(--font-text); font-weight: 500; font-size: 11.5px; color: var(--muted); }
.rc-meter { margin-top: 8px; min-height: 34px; }
.rc-compact .rc-meter { min-height: 24px; margin-top: 6px; }
.rc-compact .rc-media img { aspect-ratio: 16 / 11; }
.rc-compact .rc-head { padding-bottom: 0; }
.rc-compact .rc-title { font-size: 16px; }
.rc-compact .rc-rule { border: 0; border-top: 1px solid var(--line-soft); margin: 8px 0 6px; width: 100%; }
.rc-compact .rc-foot { padding-top: 0; }
.rc-compact .rc-foot .rc-actions { align-items: center; }
.rc-compact .rc-price { flex: 1; }
.rc-actions { position: relative; z-index: 2; display: flex; gap: 8px; margin-top: auto; padding-top: 10px; }
.rc-actions .btn { flex: 1; padding: 9px 6px; min-height: 44px; font-size: 13.5px; white-space: nowrap; }
.rc-cart {
  flex: none;
  width: 44px; height: 44px;
  display: grid; place-items: center;
  border-radius: 999px;
  background: var(--grad-cyan);
  color: #fff;
}

/* progress + time fallback (D2) */
.progress .p-track { height: 7px; border-radius: 999px; background: var(--line); overflow: hidden; }
.progress .p-fill { height: 100%; border-radius: 999px; background: var(--grad-cyan); }
.progress.hot .p-fill { background: var(--grad-orange); }
.progress .p-label {
  display: flex;
  justify-content: space-between;
  gap: 8px;
  margin-top: 4px;
  font-size: 11.5px;
  color: var(--muted);
}
.progress .p-label strong { color: var(--ink); font-weight: 600; }
.progress .p-label .hot-note { color: var(--orange-deep); font-weight: 700; }
.p-time { display: flex; align-items: center; gap: 6px; font-size: 12px; color: var(--muted); }
.p-time .num { font-weight: 700; color: var(--orange-deep); }
.p-time .num:empty { display: none; }
.jsonly { display: none; }
html.js .jsonly { display: inline; }
html.js .nojs { display: none; }

/* H12 — hot band (one highlighted raffle, wide) */
.hot-band {
  display: grid;
  grid-template-columns: 108px 1fr;
  gap: 14px;
  align-items: center;
  padding: 14px;
  border: 1px solid var(--line);
  border-radius: var(--radius-big);
  background: var(--paper);
  margin-top: 16px;
  position: relative;
}
.hot-band img { width: 108px; height: 92px; object-fit: contain; background: var(--wash); border-radius: 12px; padding: 8px; }
.hot-band .hb-kick { font-size: 11px; letter-spacing: .08em; text-transform: uppercase; color: var(--orange-deep); font-weight: 700; }
.hot-band h3 { font-size: 17px; margin-top: 2px; }
.hot-band .hb-sub { font-size: 12.5px; color: var(--muted); margin-top: 2px; }
.hot-band .btn { position: relative; z-index: 2; }
.hot-band > a.hb-link::after { content: ""; position: absolute; inset: 0; }

/* H11 — why band */
.why-band { border-top: 1px solid var(--line-soft); }
.why-list { display: grid; gap: 10px; margin-top: 14px; }
.why-list li { display: flex; gap: 10px; font-size: 14px; color: var(--mid); align-items: flex-start; }
.why-list .tick { color: var(--green); font-weight: 800; flex: none; }
.why-list strong { color: var(--ink); font-weight: 600; }

/* ============================================================
   D4s — metric strip (current facts, N3)
   ============================================================ */
.metrics {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 6px;
  padding: 10px var(--gutter);
  border-bottom: 1px solid var(--line-soft);
  background: var(--paper);
}
.metrics .m-item { text-align: center; }
.metrics .m-v { font-family: var(--font-display); font-weight: 800; font-size: 14px; color: var(--ink); line-height: 1.2; }
.metrics .m-l { font-size: 10.5px; color: var(--muted); line-height: 1.25; }

/* ============================================================
   D2s/D3s — gallery carousel + trust placeholder strip
   ============================================================ */
.gal { position: relative; background: var(--wash); }
.gal-track {
  display: flex;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scrollbar-width: none;
}
.gal-track::-webkit-scrollbar { display: none; }
.gal-item { flex: 0 0 100%; scroll-snap-align: start; padding: 14px 16px; }
.gal-item img { width: 100%; aspect-ratio: 16 / 10; object-fit: contain; }
.gal-counter {
  position: absolute;
  left: 12px; bottom: 12px;
  padding: 2px 10px;
  border-radius: 999px;
  background: rgba(14, 26, 43, .72);
  color: #fff;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 12px;
}
.gal-badge {
  position: absolute;
  top: 10px; right: 12px;
  padding: 4px 10px;
  border-radius: 999px;
  background: var(--paper);
  border: 1px solid var(--line);
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 11px;
  color: var(--cyan-deep);
  box-shadow: var(--shadow-down);
}
.trust-ph {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 48px;
  padding: 8px var(--gutter);
  background: var(--navy);
  color: var(--faint);
  font-size: 12.5px;
  text-align: center;
}
.trust-ph .stars { color: var(--orange); letter-spacing: 3px; font-size: 14px; }
.trust-ph .ph-tag {
  border: 1px dashed rgba(255, 255, 255, .35);
  border-radius: 8px;
  padding: 2px 8px;
  font-size: 10.5px;
  letter-spacing: .06em;
  text-transform: uppercase;
}

/* ============================================================
   D5s/D6s — title block + price row
   ============================================================ */
.dt-title { padding-top: 16px; }
.dt-title h1 { font-size: clamp(24px, 6.6vw, 36px); line-height: 1.12; letter-spacing: -0.015em; display: inline; }
.info-btn {
  position: relative;
  display: inline-grid;
  place-items: center;
  width: 32px; height: 32px;
  margin-left: 8px;
  vertical-align: 4px;
  border-radius: 50%;
  background: var(--line-soft);
  color: var(--mid);
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 13px;
}
.info-btn::after { content: ""; position: absolute; inset: -7px; border-radius: 50%; }
.info-btn[aria-expanded="true"] { background: var(--cyan-10); color: var(--cyan-deep); }
.dt-cash { margin-top: 8px; font-family: var(--font-display); font-weight: 700; font-size: 15px; color: var(--ink); letter-spacing: .01em; }
.dt-cash .amount { color: var(--cyan-deep); }
.dt-desc {
  white-space: pre-line;
  margin-top: 12px;
  padding: 12px 14px;
  background: var(--wash);
  border: 1px solid var(--line-soft);
  border-radius: var(--radius-card);
  font-size: 14px;
  line-height: 1.6;
  color: var(--mid);
}
.price-row { padding-top: 14px; padding-bottom: 4px; }
.price-row .pr-price { font-family: var(--font-display); font-weight: 800; font-size: 30px; line-height: 1; color: var(--ink); }
.price-row .pr-per { font-size: 14px; font-weight: 600; color: var(--muted); }
.price-row .pr-tier { display: block; margin-top: 4px; font-size: 12.5px; font-weight: 600; color: var(--cyan-deep); }
.price-row .pr-meter { margin-top: 10px; max-width: 420px; }

/* ============================================================
   D7s — fixed ENTER NOW bar (from scroll 0)
   ============================================================ */
.enterbar {
  position: fixed;
  left: 0; right: 0; bottom: 0;
  z-index: 50;
  background: var(--paper);
  border-top: 1px solid var(--line);
  box-shadow: var(--shadow-bar);
  padding: 9px var(--gutter) calc(9px + env(safe-area-inset-bottom));
  display: flex;
  align-items: center;
  gap: 14px;
}
.enterbar .eb-info { min-width: 0; }
.enterbar .eb-lead { font-family: var(--font-display); font-weight: 800; font-size: 15px; color: var(--ink); white-space: nowrap; }
.enterbar .eb-ends { font-size: 12.5px; color: var(--muted); white-space: nowrap; }
.enterbar .eb-ends .num { color: var(--orange-deep); font-weight: 700; }
.enterbar .btn { flex: 1; min-height: 46px; }
body:has(.enterbar) { padding-bottom: calc(82px + env(safe-area-inset-bottom)); }

/* ============================================================
   G4 — dismissible bottom promo bar (home, winners, instant)
   ============================================================ */
.promobar {
  position: fixed;
  left: 0; right: 0; bottom: 0;
  z-index: 50;
  color: #fff;
  background: linear-gradient(100deg, #E8420A, #F97316 55%, var(--orange-deep));
  padding: 10px var(--gutter) calc(10px + env(safe-area-inset-bottom));
  display: grid;
  gap: 8px;
  box-shadow: var(--shadow-bar);
  max-width: 100%;
  overflow: hidden; /* never let children escape the viewport */
  box-sizing: border-box;
}
.promobar .pb-row { display: flex; align-items: center; gap: 10px; justify-content: space-between; flex-wrap: wrap; row-gap: 8px; min-width: 0; }
.promobar .pb-txt {
  min-width: 0;
  /* basis 0 (not auto): a long raffle title must SHRINK and ellipsise rather than
     push the dismiss "✕" onto a second line (where space-between parks it left). */
  flex: 1 1 0;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 13.5px;
  text-transform: uppercase;
  letter-spacing: .02em;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.pb-cells { display: flex; align-items: center; gap: 4px; flex-wrap: wrap; min-width: 0; }
.pb-cells .cell {
  display: grid;
  justify-items: center;
  background: rgba(8, 8, 10, .8);
  border-radius: 8px;
  padding: 5px 0 4px;
  width: 47px;
}
.pb-cells b { font-family: var(--font-display); font-weight: 800; font-size: 17px; line-height: 1; color: #fff; font-variant-numeric: tabular-nums; }
.pb-cells i { font-style: normal; font-size: 8px; text-transform: uppercase; letter-spacing: .08em; color: rgba(255, 255, 255, .65); margin-top: 2px; }
.pb-cells .sep { font-weight: 800; color: rgba(255, 255, 255, .75); }
.btn.btn-pb {
  background: #fff;
  color: #C2410C;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: .06em;
  font-size: 13px;
  padding: 12px 18px;
  border-radius: 10px;
  flex: none;
  min-height: 44px;
}
.btn.btn-pb:hover { background: #FFF4EA; }
.promobar .pb-close {
  flex: none;
  width: 40px; height: 40px;
  display: grid; place-items: center;
  border-radius: 10px;
  color: #fff;
  font-size: 15px;
}
.promobar .pb-close:hover { background: rgba(255, 255, 255, .15); }
body:has(.promobar:not([hidden])) { padding-bottom: calc(118px + env(safe-area-inset-bottom)); }

/* Narrow screens: keep the countdown + CTA inside the viewport. */
@media (max-width: 430px) {
  .promobar .pb-row { gap: 8px; }
  .pb-cells { gap: 3px; }
  .pb-cells .cell { width: 40px; padding: 4px 0 3px; }
  .pb-cells b { font-size: 15px; }
  .pb-cells .sep { font-size: 13px; }
  .btn.btn-pb { padding: 10px 12px; font-size: 12px; min-height: 40px; }
  .promobar .pb-txt { font-size: 12.5px; }
}

/* ============================================================
   D8s — ticket sheet (modal)
   ============================================================ */
.modal-scrim {
  position: fixed;
  inset: 0;
  z-index: 90;
  background: rgba(14, 26, 43, .55);
  display: none;
  align-items: flex-end;
  justify-content: center;
}
.modal-scrim.open, .modal-scrim:target { display: flex; }
.modal {
  position: relative;
  width: 100%;
  max-width: 480px;
  max-height: 92vh;
  overflow-y: auto;
  background: var(--paper);
  border-radius: 22px 22px 0 0;
  padding: 20px 20px calc(22px + env(safe-area-inset-bottom));
}
@media (min-width: 640px) {
  .modal-scrim { align-items: center; padding: 20px; }
  .modal { border-radius: 22px; padding: 28px; }
}
.m-close {
  position: absolute;
  top: 10px; right: 10px;
  width: var(--tap); height: var(--tap);
  display: grid; place-items: center;
  border-radius: 12px;
  font-size: 17px;
  color: var(--muted);
}
.m-close:hover { background: var(--line-soft); color: var(--ink); }

.modal h2 { font-size: 21px; margin-bottom: 10px; }


.sheet-tabs {
  display: grid;
  grid-template-columns: 1fr 1fr;
  border-bottom: 1.5px solid var(--line);
  margin-bottom: 14px;
}
.sheet-tabs button {
  min-height: var(--tap);
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 14.5px;
  color: var(--muted);
  border-bottom: 3px solid transparent;
  margin-bottom: -1.5px;
}
.sheet-tabs button[aria-selected="true"] { color: var(--cyan-deep); border-bottom-color: var(--cyan); }

.sheet-prize {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 10px 12px;
  margin-bottom: 12px;
  background: var(--wash);
  border-radius: 12px;
  font-size: 12.5px;
  color: var(--muted);
  line-height: 1.4;
}
.sheet-prize img { width: 44px; height: 44px; object-fit: contain; flex: none; }
.sheet-prize strong { font-family: var(--font-display); font-size: 14px; color: var(--ink); }
.sheet-prize .sp-price { margin-left: auto; text-align: right; flex: none; }
.sheet-prize .sp-now { font-family: var(--font-display); font-weight: 800; font-size: 16px; color: var(--ink); }
.sheet-prize .sp-was { font-size: 12px; color: var(--faint); text-decoration: line-through; }
.sheet-prize .sp-off { display: block; font-size: 11.5px; font-weight: 700; color: var(--green); }

.qty-line { display: flex; align-items: center; gap: 10px; margin-bottom: 6px; }
.qty-line .ql-label { font-family: var(--font-display); font-weight: 700; font-size: 14px; color: var(--ink); }
.qty-wrap { display: grid; grid-template-columns: 74px 1fr; gap: 10px; align-items: center; }
.qty-wrap input[type="number"] {
  min-height: 46px;
  border-radius: 12px;
  border: 1.5px solid var(--line);
  text-align: center;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 18px;
  color: var(--ink);
  width: 100%;
}
.qty-wrap input[type="number"]:focus { border-color: var(--cyan); outline: none; }
.qty-slider { display: grid; grid-template-columns: 46px 1fr 46px; gap: 8px; align-items: center; }
.qty-slider button {
  width: 46px; height: 46px;
  border-radius: 12px;
  border: 1.5px solid var(--line);
  font-size: 22px;
  font-weight: 700;
  color: var(--ink);
  background: var(--paper);
}
.qty-slider button:disabled { opacity: .35; cursor: not-allowed; }
input[type="range"] {
  -webkit-appearance: none;
  width: 100%;
  height: 30px;
  background: transparent;
}
input[type="range"]::-webkit-slider-runnable-track { height: 6px; border-radius: 999px; background: var(--line); }
input[type="range"]::-webkit-slider-thumb {
  -webkit-appearance: none;
  width: 24px; height: 24px;
  margin-top: -9px;
  border-radius: 50%;
  background: var(--cyan);
  border: 3px solid #fff;
  box-shadow: 0 1px 4px rgba(14, 26, 43, .3);
}
input[type="range"]::-moz-range-track { height: 6px; border-radius: 999px; background: var(--line); }
input[type="range"]::-moz-range-thumb { width: 20px; height: 20px; border-radius: 50%; background: var(--cyan); border: 3px solid #fff; }

.quick-label { margin: 12px 0 6px; font-size: 12px; letter-spacing: .07em; text-transform: uppercase; color: var(--muted); font-weight: 600; }
.qty-grid { display: grid; grid-template-columns: repeat(5, 1fr); gap: 7px; }
.qty-btn {
  position: relative;
  display: grid;
  align-content: center;
  gap: 1px;
  min-height: 56px;
  padding: 6px 2px;
  border-radius: 12px;
  border: 1.5px solid var(--line);
  background: var(--paper);
  color: var(--ink);
}
.qty-btn .qb-n { font-family: var(--font-display); font-weight: 800; font-size: 16px; line-height: 1.1; }
.qty-btn .qb-sub { font-size: 10px; font-weight: 600; color: var(--muted); }
.qty-btn .qb-flag {
  position: absolute;
  left: 50%; top: -8px;
  transform: translateX(-50%);
  white-space: nowrap;
  padding: 1px 7px;
  border-radius: 999px;
  background: var(--paper);
  border: 1px solid var(--green);
  color: var(--green);
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 9.5px;
}
.qty-btn[aria-pressed="true"] { border-color: var(--cyan); background: var(--cyan-05); }
.qty-btn.is-best { border-color: rgba(22, 163, 74, .45); }
.qty-odds { margin-top: 10px; font-size: 12.5px; color: var(--muted); text-align: center; }

.sheet-total {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin: 12px 0 12px;
  padding: 12px 14px;
  border-radius: 12px;
  background: var(--wash);
  border: 1px solid var(--line);
}
.st-left { display: grid; gap: 2px; min-width: 0; }
.st-unit { font-size: 12.5px; color: var(--mid); }
.st-unit span { font-family: var(--font-display); font-weight: 700; color: var(--ink); }
.st-unit s { color: var(--faint); margin-left: 2px; }
.st-save { font-size: 12px; font-weight: 700; color: var(--green); min-height: 16px; }
.st-right { text-align: right; flex: none; }
.st-label { display: block; font-size: 11px; letter-spacing: .06em; text-transform: uppercase; color: var(--muted); }
.st-amount { font-family: var(--font-display); font-weight: 800; font-size: 23px; color: var(--ink); line-height: 1.1; }
.m-note { font-size: 12.5px; color: var(--muted); margin-top: 12px; }
.m-note a { color: var(--mid); text-decoration: underline; text-underline-offset: 2px; }

.postal-pane p { font-size: 14px; color: var(--mid); line-height: 1.6; margin-bottom: 10px; }
.postal-pane .address {
  padding: 12px 14px;
  background: var(--wash);
  border: 1px solid var(--line);
  border-radius: 12px;
  font-size: 13.5px;
  color: var(--ink);
  line-height: 1.55;
  margin-bottom: 10px;
}
/* Task Z — the "Postal entry" pane now carries the FULL Free Postal Entry wording,
   so it needs the legal-page typography for headings, lists and the quoted
   statement. The modal itself already scrolls (max-height: 92vh; overflow-y: auto). */
.postal-pane h3 { font-family: var(--font-display); font-weight: 800; font-size: 16.5px; color: var(--ink); margin: 0 0 8px; }
.postal-pane h4 { font-family: var(--font-display); font-weight: 700; font-size: 15px; color: var(--ink); margin: 18px 0 6px; }
.postal-pane ul { list-style: disc; padding-left: 22px; margin: 0 0 12px; }
.postal-pane li { font-size: 14px; line-height: 1.6; color: var(--mid); margin-bottom: 4px; }
.postal-pane blockquote {
  border-left: 3px solid var(--orange);
  background: var(--wash);
  margin: 12px 0;
  padding: 10px 14px;
  font-size: 14px;
  font-style: italic;
  color: var(--mid);
}
.postal-pane .address strong { font-weight: 700; }
.postal-pane > :last-child { margin-bottom: 0; }

/* ============================================================
   D9s — cart overlay (drops from under the header)
   ============================================================ */
.cart-scrim {
  position: fixed;
  inset: 0;
  z-index: 70;
  background: rgba(14, 26, 43, .45);
  display: none;
}
.cart-scrim.open { display: block; }
.cart-panel {
  position: fixed;
  top: var(--header-h);
  left: 0; right: 0;
  z-index: 75;
  max-height: calc(100vh - var(--header-h) - 20px);
  overflow-y: auto;
  background: var(--paper);
  border-bottom-left-radius: 18px;
  border-bottom-right-radius: 18px;
  box-shadow: var(--shadow-pop);
  display: none;
}
.cart-panel.open { display: block; }
.cart-group {
  padding: 10px var(--gutter);
  background: var(--blue-tint);
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 13px;
  letter-spacing: .07em;
  text-transform: uppercase;
  color: var(--cyan-deep);
}
.cart-item {
  display: grid;
  grid-template-columns: 40px 48px 1fr auto;
  gap: 10px;
  align-items: center;
  padding: 12px var(--gutter);
  border-bottom: 1px solid var(--line-soft);
}
.cart-item .ci-remove {
  width: 40px; height: 40px;
  display: grid; place-items: center;
  border-radius: 10px;
  color: var(--muted);
  font-size: 15px;
}
.cart-item .ci-remove:hover { background: var(--line-soft); color: var(--ink); }
.cart-item img { width: 48px; height: 48px; object-fit: contain; background: var(--wash); border-radius: 10px; padding: 4px; }
.cart-item .ci-name { font-family: var(--font-display); font-weight: 700; font-size: 13.5px; color: var(--ink); line-height: 1.25; }
.cart-item .ci-ends { font-size: 11.5px; color: var(--muted); }
.cart-item .ci-right { display: grid; justify-items: end; gap: 4px; }
.cart-item .ci-step { display: flex; align-items: center; gap: 6px; }
.cart-item .ci-step button {
  width: 40px; height: 40px;
  border-radius: 10px;
  border: 1.5px solid var(--line);
  font-weight: 700;
  font-size: 16px;
  color: var(--ink);
}
.cart-item .ci-step .ci-qty {
  width: 52px;
  min-height: 40px;
  text-align: center;
  border: 1.5px solid var(--line);
  border-radius: 9px;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 14px;
  color: var(--ink);
}
.cart-item .ci-line { font-size: 12px; color: var(--muted); }
.cart-summary-label {
  padding: 8px var(--gutter);
  background: var(--mid);
  color: #fff;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 12.5px;
  letter-spacing: .08em;
  text-transform: uppercase;
}
.cart-total {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px var(--gutter) 4px;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 17px;
  color: var(--ink);
}
.cart-foot { padding: 10px var(--gutter) 16px; }
.cart-empty { padding: 26px var(--gutter); text-align: center; color: var(--muted); font-size: 14px; }

/* ============================================================
   I7 — instant-win prize table
   ============================================================ */
.iw-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
  padding: 12px 14px;
  border: 1px solid var(--line);
  border-radius: var(--radius-card);
  background: var(--paper);
  margin-top: 12px;
}
.iw-stats .s-v { font-family: var(--font-display); font-weight: 800; font-size: 16px; color: var(--ink); }
.iw-stats .s-l { font-size: 11px; color: var(--muted); }
.iw-tile {
  position: relative;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--radius-card);
  padding: 12px;
  display: flex;
  flex-direction: column;
}
.iw-tile .iw-flash {
  position: absolute;
  top: 0; right: 0;
  width: 30px; height: 30px;
  display: grid; place-items: center;
  border-bottom-left-radius: 12px;
  border-top-right-radius: 15px;
  background: var(--cyan-10);
  color: var(--cyan-deep);
  font-size: 13px;
}
.iw-tile .iw-media { height: 84px; display: grid; place-items: center; margin-bottom: 8px; }
.iw-tile .iw-media img { max-height: 84px; object-fit: contain; }
.iw-tile .iw-credit {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 24px;
  color: var(--cyan-deep);
}
.iw-tile .iw-val { font-family: var(--font-display); font-weight: 800; font-size: 16.5px; color: var(--ink); }
.iw-tile .iw-name { font-size: 12px; color: var(--muted); margin-top: 1px; }
.iw-tile .iw-counts {
  display: flex;
  justify-content: space-between;
  margin-top: 8px;
  padding-top: 8px;
  border-top: 1px dashed var(--line);
  font-size: 11.5px;
  color: var(--muted);
}
.iw-tile .iw-counts strong { display: block; font-family: var(--font-display); font-size: 14px; color: var(--ink); }


/* ============================================================
   W1/W3 — winners
   ============================================================ */
.win-tabs {
  position: sticky;
  top: var(--header-h);
  z-index: 40;
  background: var(--paper);
  box-shadow: var(--shadow-down);
}
.win-card {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--radius-card);
  overflow: hidden;
}
.win-card .wc-media {
  position: relative;
  aspect-ratio: 16 / 9;
  background: var(--wash);
  display: grid;
  place-items: center;
  border-bottom: 1px dashed var(--line);
}
.win-card .wc-media img { max-height: 70%; max-width: 60%; object-fit: contain; opacity: .35; }
.win-card .wc-tag {
  position: absolute;
  inset: auto 8px 8px 8px;
  padding: 4px 8px;
  border-radius: 8px;
  border: 1px dashed var(--faint);
  background: rgba(255, 255, 255, .85);
  font-size: 10.5px;
  letter-spacing: .05em;
  text-transform: uppercase;
  color: var(--muted);
  text-align: center;
}
.win-card .wc-body { padding: 10px 12px 12px; }
.win-card .wc-name { font-family: var(--font-display); font-weight: 800; font-size: 14px; color: var(--faint); }
.win-card .wc-prize { font-size: 12.5px; color: var(--ink); font-weight: 600; margin-top: 2px; line-height: 1.3; }
.win-card .wc-date { font-size: 11.5px; color: var(--muted); margin-top: 4px; }
.win-card .wc-link { display: inline-flex; align-items: center; min-height: 34px; font-family: var(--font-display); font-weight: 700; font-size: 12.5px; color: var(--faint); }

/* ============================================================
   T2/T3 — reviews page
   ============================================================ */
.review-high {
  margin-top: 14px;
  padding: 18px 16px;
  border: 1px dashed var(--faint);
  border-radius: var(--radius-big);
  background: var(--wash);
  text-align: center;
}
.review-high .rh-stars { font-size: 22px; letter-spacing: 6px; color: var(--faint); }
.review-high .rh-line { margin-top: 6px; font-size: 13.5px; color: var(--muted); max-width: 40ch; margin-left: auto; margin-right: auto; }
.review-high .ph-tag {
  display: inline-block;
  margin-top: 10px;
  border: 1px dashed var(--faint);
  border-radius: 8px;
  padding: 2px 10px;
  font-size: 10.5px;
  letter-spacing: .06em;
  text-transform: uppercase;
  color: var(--muted);
}
.ph-tag {
  display: inline-block;
  margin-top: 10px;
  border: 1px dashed var(--faint);
  border-radius: 8px;
  padding: 2px 10px;
  font-size: 10.5px;
  letter-spacing: .06em;
  text-transform: uppercase;
  color: var(--muted);
}
.ph-tag { display: inline-block; margin-top: 8px; }
.tst-unit {
  display: grid;
  gap: 0;
  border: 1px solid var(--line);
  border-radius: var(--radius-card);
  overflow: hidden;
  margin-top: 14px;
  background: var(--paper);
}
.tst-unit .tu-media {
  height: 150px;
  background: var(--wash);
  border-bottom: 1px dashed var(--line);
  display: grid;
  place-items: center;
}
.tst-unit .tu-media img { max-height: 70%; max-width: 55%; object-fit: contain; opacity: .35; }
.tst-unit .tu-body { padding: 12px 14px 14px; }
.tst-unit .tu-name { font-family: var(--font-display); font-weight: 800; font-size: 14px; color: var(--faint); letter-spacing: .04em; }
.tst-unit .tu-prize { font-size: 13px; font-weight: 600; color: var(--ink); margin-top: 2px; }
.tst-unit .tu-quote { margin-top: 8px; font-size: 13px; color: var(--muted); font-style: italic; }

/* ============================================================
   P1 — about sub-menu row
   ============================================================ */
.submenu { border-bottom: 1px solid var(--line-soft); background: var(--paper); }
.submenu-track {
  display: flex;
  gap: 2px;
  overflow-x: auto;
  scrollbar-width: none;
  padding: 0 var(--gutter);
}
.submenu-track::-webkit-scrollbar { display: none; }
.submenu a {
  display: inline-flex;
  align-items: center;
  min-height: 46px;
  padding: 0 12px;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 14px;
  color: var(--mid);
  white-space: nowrap;
  border-bottom: 3px solid transparent;
}
.submenu a[aria-current="page"] { color: var(--cyan-deep); border-bottom-color: var(--cyan); }

/* ---------- FAQ groups ---------- */
.faq-group { margin-top: 22px; }
.faq-group > h3 { font-size: 13px; letter-spacing: .08em; text-transform: uppercase; color: var(--muted); margin-bottom: 8px; }
.faq { display: grid; gap: 8px; }
.faq details {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--radius-card);
  overflow: hidden;
}
.faq summary {
  list-style: none;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  min-height: 52px;
  padding: 10px 14px;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 14.5px;
  color: var(--ink);
  cursor: pointer;
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after { content: "+"; font-size: 19px; color: var(--cyan-deep); flex: none; }
.faq details[open] summary::after { content: "–"; }
.faq .faq-body { padding: 0 14px 14px; font-size: 14px; color: var(--mid); line-height: 1.6; }
.faq .faq-body a { text-decoration: underline; text-underline-offset: 2px; }

/* ---------- P4 — route explainers ---------- */
.route {
  margin-top: 18px;
  border: 1px solid var(--line);
  border-radius: var(--radius-big);
  background: var(--paper);
  padding: 16px;
}
.route .rt-kick { font-size: 11px; letter-spacing: .08em; text-transform: uppercase; color: var(--cyan-deep); font-weight: 700; }
.route h3 { margin-top: 2px; }
.route ol { margin-top: 12px; display: grid; gap: 12px; counter-reset: step; }
.route ol li { display: grid; grid-template-columns: 30px 1fr; gap: 12px; counter-increment: step; }
.route ol li::before {
  content: counter(step);
  width: 30px; height: 30px;
  display: grid; place-items: center;
  border-radius: 50%;
  background: var(--cyan-10);
  color: var(--cyan-deep);
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 14px;
}
.route ol .rs-t { font-family: var(--font-display); font-weight: 700; font-size: 14.5px; color: var(--ink); }
.route ol .rs-d { font-size: 13.5px; color: var(--mid); line-height: 1.5; margin-top: 2px; }

/* ---------- prose (policy, legal) ---------- */
.prose { max-width: 720px; }
.prose h2 { font-size: 20px; margin: 26px 0 8px; }
.prose h3 { font-size: 16.5px; margin: 18px 0 6px; }
.prose p { margin-bottom: 10px; font-size: 15px; line-height: 1.65; color: var(--mid); }
.prose ul { list-style: disc; padding-left: 22px; margin-bottom: 12px; }
.prose li { font-size: 15px; line-height: 1.6; color: var(--mid); margin-bottom: 4px; }
/* Free postal entry page: acceptance quote + the printable form template. */
.prose blockquote {
  border-left: 3px solid var(--orange);
  background: var(--wash);
  margin: 12px 0;
  padding: 10px 16px;
  font-style: italic;
  color: var(--mid);
}
.prose .address {
  background: var(--wash);
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 14px 16px;
  margin: 12px 0;
  font-size: 15px;
  line-height: 1.6;
  color: var(--mid);
}
.postal-form {
  background: var(--wash);
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 16px 18px;
  margin: 14px 0;
}
.postal-form p { margin: 10px 0; font-size: 15px; color: var(--mid); }
.postal-form p:first-child { margin-top: 0; }
.postal-form p:last-child { margin-bottom: 0; }
.org-list { display: grid; gap: 10px; margin: 10px 0 16px; }
.org-list li {
  border: 1px solid var(--line);
  border-radius: var(--radius-card);
  padding: 12px 14px;
  list-style: none;
}
.org-list .org-n { font-family: var(--font-display); font-weight: 700; font-size: 14.5px; color: var(--ink); }
.org-list .org-d { font-size: 13.5px; color: var(--muted); margin-top: 2px; }

/* ---------- forms (contact, auth, checkout) ---------- */
.form-grid { display: grid; gap: 12px; margin-top: 14px; max-width: 460px; }
.form-grid.cols2 { grid-template-columns: 1fr 1fr; }
.form-grid.cols2 > .span2 { grid-column: 1 / -1; }
.field label { display: block; font-size: 13px; font-weight: 600; color: var(--ink); margin-bottom: 4px; }
.field input, .field textarea, .field select {
  width: 100%;
  min-height: 46px;
  padding: 10px 12px;
  border: 1.5px solid var(--line);
  border-radius: var(--radius-input);
  font: inherit;
  color: var(--ink);
  background: var(--paper);
}
.field textarea { min-height: 110px; resize: vertical; }
.field input:focus, .field textarea:focus { border-color: var(--cyan); outline: none; }
.form-ack {
  margin-top: 12px;
  padding: 12px 14px;
  border-radius: 12px;
  background: rgba(22, 163, 74, .08);
  border: 1px solid rgba(22, 163, 74, .3);
  color: var(--ink);
  font-size: 14px;
}
.check { display: flex; gap: 10px; align-items: flex-start; font-size: 13.5px; color: var(--mid); }
.check input { width: 18px; height: 18px; margin-top: 2px; flex: none; }

/* ---------- L1 — auth pages (no site header) ---------- */
.auth-tabs {
  display: grid;
  grid-template-columns: 1fr 1fr;
  border-bottom: 1.5px solid var(--line);
}
.auth-tabs a {
  display: grid;
  place-items: center;
  min-height: 56px;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 16px;
  color: var(--muted);
  border-bottom: 3px solid transparent;
  margin-bottom: -1.5px;
}
.auth-tabs a[aria-current="page"] { color: var(--cyan-deep); border-bottom-color: var(--cyan); }
.auth-wrap { padding: 22px var(--gutter) 34px; max-width: 460px; margin: 0 auto; }
.auth-wrap .reward-line {
  padding: 12px 14px;
  border-radius: 12px;
  background: var(--cyan-05);
  border: 1px solid var(--cyan);
  font-size: 13.5px;
  color: var(--ink);
  margin-bottom: 16px;
}
.social-opts { display: grid; gap: 10px; margin: 16px 0; }
.social-opts button {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 48px;
  border: 1.5px solid var(--line);
  border-radius: 999px;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 14.5px;
  color: var(--ink);
}
.social-opts button:hover { border-color: var(--cyan); }
.or-line {
  display: flex;
  align-items: center;
  gap: 12px;
  color: var(--muted);
  font-size: 13px;
  margin: 14px 0;
}
.or-line::before, .or-line::after { content: ""; flex: 1; height: 1px; background: var(--line); }

/* ---------- checkout page ---------- */
.co-step { max-width: 520px; margin: 0 auto; }
.co-summary {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: var(--cyan-05);
  border: 1px solid var(--cyan);
  border-radius: 12px;
  padding: 12px 14px;
  margin: 14px 0 18px;
  font-family: var(--font-display);
  font-weight: 700;
  color: var(--ink);
}
.co-lines { display: grid; gap: 6px; margin: 12px 0; }
.co-lines li { display: flex; justify-content: space-between; gap: 10px; font-size: 14px; color: var(--mid); }
.co-lines li strong { color: var(--ink); font-weight: 600; }
.answers { display: grid; gap: 10px; }
.answer-btn {
  display: flex;
  align-items: center;
  gap: 12px;
  min-height: 54px;
  padding: 10px 14px;
  border: 1.5px solid var(--line);
  border-radius: 14px;
  background: var(--paper);
  font-size: 15px;
  font-weight: 600;
  color: var(--ink);
  text-align: left;
}
.answer-btn .key {
  width: 30px; height: 30px;
  display: grid; place-items: center;
  flex: none;
  border-radius: 9px;
  background: var(--line-soft);
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 14px;
  color: var(--mid);
}
.answer-btn:hover { border-color: var(--cyan); }
.answer-btn.right { border-color: var(--green); background: rgba(22, 163, 74, .06); }
.answer-btn.right .key { background: var(--green); color: #fff; }
.answer-btn.wrong { border-color: var(--orange-deep); background: var(--orange-10); }
.pay-options { display: grid; gap: 10px; }

/* Checkout primary CTA — "ENTER NOW >>" (white on orange; darkens + zooms
   sideways on hover). Sized to the content, not a full-width block. */
.btn.co-cta {
  width: auto;
  align-self: flex-start;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: var(--orange);
  color: #fff;
  font-family: var(--font-display);
  font-weight: 800;
  letter-spacing: .05em;
  font-size: 15px;
  padding: 14px 26px;
  min-height: 46px;
  border-radius: 12px;
  transform-origin: left center;
  transition: background .18s ease, transform .18s ease, box-shadow .18s ease;
}
.btn.co-cta:hover,
.btn.co-cta:focus-visible {
  background: var(--orange-deep);
  transform: scale(1.04);
  box-shadow: 0 8px 20px rgba(230, 148, 2, .35);
}
.btn.co-cta:active { transform: scale(1.01); }
.pay-btn {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 14px;
  min-height: 66px;
  border: 1.5px solid var(--line);
  border-radius: 14px;
  background: var(--paper);
  text-align: left;
}
.pay-btn:hover { border-color: var(--cyan); }
.pay-btn .pb-icon {
  width: 42px; height: 42px;
  flex: none;
  display: grid; place-items: center;
  border-radius: 12px;
  background: var(--cyan-05);
  color: var(--cyan-deep);
}
.pay-btn .pb-title { font-family: var(--font-display); font-weight: 700; font-size: 15px; color: var(--ink); }
.pay-btn .pb-sub { font-size: 13px; color: var(--muted); }
.pay-marks { display: flex; gap: 6px; flex-wrap: wrap; margin-top: 4px; }
.pay-marks span {
  font-size: 11px;
  font-weight: 700;
  color: var(--mid);
  border: 1px solid var(--line);
  border-radius: 6px;
  padding: 2px 7px;
  background: var(--wash);
}
.m-success { text-align: center; padding: 12px 0 4px; }
.m-success .ok-ring {
  width: 66px; height: 66px;
  margin: 0 auto 16px;
  display: grid; place-items: center;
  border-radius: 50%;
  background: rgba(22, 163, 74, .1);
  color: var(--green);
  font-size: 30px;
  font-weight: 800;
}

/* ---------- account (kept) ---------- */
.acct-tabs { display: flex; gap: 4px; overflow-x: auto; padding-bottom: 2px; }
.acct-tabs a {
  display: inline-flex;
  align-items: center;
  min-height: var(--tap);
  padding: 0 14px;
  border-radius: 999px;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 14px;
  color: var(--mid);
  white-space: nowrap;
}
.acct-tabs a[aria-current="page"] { background: var(--cyan-10); color: var(--cyan-deep); }
.stat-cards { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; margin-top: 14px; }
.stat-card { border: 1px solid var(--line); border-radius: var(--radius-card); padding: 12px 14px; }
.stat-card .sc-num { font-family: var(--font-display); font-weight: 800; font-size: 22px; color: var(--ink); }
.stat-card .sc-label { font-size: 12.5px; color: var(--muted); }



/* ============================================================
   G5–G10 — footer, five bands like BOTB
   ============================================================ */
.site-footer { background: var(--navy); color: var(--faint); margin-top: 48px; }
.site-footer a { color: #fff; }
.site-footer a:hover { text-decoration: underline; text-underline-offset: 3px; }
.f-top {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px 10px;
  padding: 26px 0;
  border-bottom: 1px solid rgba(255, 255, 255, .12);
}
.f-top .ft-v { font-family: var(--font-display); font-weight: 800; font-size: 17px; color: #fff; }
.f-top .ft-l { font-size: 12px; color: var(--faint); }
.f-desc { padding: 24px 0 6px; }
.f-desc h3 { color: #fff; font-size: 14px; letter-spacing: .06em; text-transform: uppercase; margin-bottom: 10px; }
.f-desc p { font-size: 13px; line-height: 1.6; margin-bottom: 10px; }
.f-follow { padding: 12px 0 22px; border-bottom: 1px solid rgba(255, 255, 255, .12); }
.f-follow h4 { color: #fff; font-size: 13px; letter-spacing: .06em; text-transform: uppercase; margin-bottom: 10px; }
.f-social { display: flex; gap: 10px; }
.f-social a {
  width: var(--tap); height: var(--tap);
  display: grid; place-items: center;
  border-radius: 12px;
  background: rgba(255, 255, 255, .08);
}
.f-social a:hover { background: rgba(255, 255, 255, .16); text-decoration: none; }
.f-nav { padding: 8px 0 18px; border-bottom: 1px solid rgba(255, 255, 255, .12); }
.f-nav details { border-bottom: 1px solid rgba(255, 255, 255, .1); }
.f-nav summary {
  list-style: none;
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 50px;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 14.5px;
  color: #fff;
  cursor: pointer;
}
.f-nav summary::-webkit-details-marker { display: none; }
.f-nav summary::after { content: "+"; color: var(--faint); font-size: 18px; }
.f-nav details[open] summary::after { content: "–"; }
.f-nav ul { padding: 0 0 12px; display: grid; gap: 2px; }
.f-nav ul a { display: inline-flex; align-items: center; min-height: var(--tap); font-size: 14px; color: var(--faint); }
.f-nav ul .count { color: var(--muted); font-size: 12.5px; margin-left: 6px; }
.f-safeplay {
  display: flex;
  gap: 14px;
  align-items: flex-start;
  padding: 18px 0;
  border-bottom: 1px solid rgba(255, 255, 255, .12);
}
.badge-18 {
  display: inline-grid;
  place-items: center;
  width: 40px; height: 40px;
  border-radius: 50%;
  border: 2px solid var(--orange);
  color: var(--orange);
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 13px;
  flex: none;
}
.f-safeplay p { font-size: 12.5px; line-height: 1.55; }
.f-full { padding: 16px 0 26px; font-size: 12px; }
.f-full p { margin-bottom: 6px; }




/* ---------- category page toolbar (K4) ---------- */
.wizard-strip {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 0;
  font-size: 13px;
  color: var(--muted);
}
.wizard-strip .wz-n {
  width: 30px; height: 30px;
  display: grid; place-items: center;
  border-radius: 50%;
  border: 2px solid var(--cyan);
  color: var(--cyan-deep);
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 12px;
  flex: none;
}
.wizard-strip strong { color: var(--ink); font-family: var(--font-display); font-size: 14px; }
.cat-banner {
  position: relative;
  border-radius: var(--radius-card);
  background: var(--navy);
  color: #fff;
  padding: 16px;
  display: grid;
  grid-template-columns: 1fr 96px;
  gap: 10px;
  align-items: center;
  overflow: hidden;
  margin: 4px 0 12px;
}
.cat-banner .cb-kick { font-size: 11px; letter-spacing: .08em; text-transform: uppercase; color: var(--orange); font-weight: 700; }
.cat-banner h2 { color: #fff; font-size: 18px; margin-top: 2px; }
.cat-banner .cb-sub { font-size: 12.5px; color: var(--faint); margin-top: 2px; }
.cat-banner img { width: 96px; height: 84px; object-fit: contain; background: rgba(255,255,255,.06); border-radius: 12px; padding: 6px; }
.cat-banner > a::after { content: ""; position: absolute; inset: 0; }
.toolbar { display: flex; gap: 8px; margin: 6px 0 4px; }
.toolbar .field { flex: 1; }
.toolbar input[type="search"] {
  width: 100%;
  min-height: 44px;
  padding: 8px 12px;
  border: 1.5px solid var(--line);
  border-radius: var(--radius-input);
  font: inherit;
}
.toolbar select {
  min-height: 44px;
  border: 1.5px solid var(--line);
  border-radius: var(--radius-input);
  padding: 0 10px;
  font: inherit;
  color: var(--ink);
  background: var(--paper);
  max-width: 46vw;
}
.view-count { font-size: 13px; color: var(--muted); margin: 8px 0 2px; }
.inline-note {
  grid-column: 1 / -1;
  display: block;
  padding: 12px 14px;
  border: 1px solid var(--line);
  border-radius: var(--radius-card);
  background: var(--blue-tint);
  font-size: 13px;
  color: var(--ink);
}
.inline-note a { text-decoration: underline; text-underline-offset: 2px; }

/* ---------- desktop ---------- */
@media (min-width: 900px) {
  .logo img { height: 36px; }
  .main-nav { display: flex; gap: 2px; margin-right: 8px; }
  .main-nav a {
    display: inline-flex;
    align-items: center;
    min-height: var(--tap);
    padding: 0 14px;
    border-radius: 999px;
    font-family: var(--font-display);
    font-weight: 600;
    font-size: 15px;
    color: var(--mid);
  }
  .main-nav a:hover { color: var(--ink); background: var(--line-soft); }
  .main-nav a[aria-current="page"] { color: var(--cyan-deep); }
  .grid2 { grid-template-columns: repeat(4, 1fr); gap: 16px; }
  .hero-slide {
    grid-template-columns: minmax(0, 1fr) minmax(0, 1.05fr);
    align-items: center;
    column-gap: 48px;
    text-align: left;
    justify-items: start;
    padding: 46px max(var(--gutter), calc((100% - 1160px) / 2)) 50px;
  }
  .hs-copy { grid-column: 1; grid-row: 1; justify-items: start; gap: 8px; }
  .hs-stage { grid-column: 2; grid-row: 1; width: 100%; max-width: 640px; justify-self: end; margin: 0; }
  .hs-media { height: 430px; border-radius: 18px; }
  .hs-cta { justify-content: flex-start; }
  .hero-car.dark .hero-slide h2 { font-size: clamp(34px, 3.6vw, 52px); }
  .hero-car.dark .hs-sub { font-size: 14.5px; }
  .hero-slide { padding-bottom: 40px; }
  .ws-card { flex-basis: 340px; }
  .ss-track .spot-card { flex-basis: 100%; }
  .hero-stats { grid-template-columns: repeat(3, minmax(0, 260px)); justify-content: center; }
  .metrics { grid-template-columns: repeat(4, minmax(0, 220px)); justify-content: center; }
  .f-top { grid-template-columns: repeat(4, 1fr); }
  .cart-panel { left: auto; right: 24px; width: 420px; border-radius: 18px; top: calc(var(--header-h) + 8px); }
  .enterbar { left: auto; right: 24px; bottom: 24px; width: 380px; border-radius: var(--radius-card); border: 1px solid var(--line); }
  body:has(.enterbar) { padding-bottom: 0; }
  .promobar { left: auto; right: 24px; bottom: 24px; width: 470px; border-radius: var(--radius-card); }
  body:has(.promobar:not([hidden])) { padding-bottom: 0; }
  .gal-item img { aspect-ratio: 16 / 9; max-height: 430px; }

  .iw-grid-desk { grid-template-columns: repeat(4, 1fr); }
  .tst-unit { grid-template-columns: 300px 1fr; }
  .tst-unit .tu-media { height: auto; border-bottom: 0; border-right: 1px dashed var(--line); }
}

/* ---------- reduced motion ---------- */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation: none !important; transition: none !important; }
  html { scroll-behavior: auto; }
}

/* ============================================================
   Sample winners, reviews, ticker feed, prize details
   ============================================================ */
.tk-feed { min-width: 0; flex: 1; }
.tk-item { font-size: 13px; color: var(--mid); }
.tk-item strong { color: var(--ink); }
.wc-av { border-radius: 50%; flex: none; }

/* winner slider under the hero (BOTB-style cards, auto-advancing) */
.win-slider { padding: 4px 0 0; }
.ws-track {
  display: flex;
  gap: 10px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
  padding: 0 var(--gutter);
}
.ws-track::-webkit-scrollbar { display: none; }
.ws-card {
  position: relative;
  flex: 0 0 82%;
  scroll-snap-align: center;
  display: flex;
  gap: 12px;
  align-items: center;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--radius-card);
  padding: 10px 12px 10px 10px;
  min-width: 0;
}
.ws-thumb { width: 86px; height: 86px; border-radius: 12px; object-fit: cover; flex: none; background: #0B1524; }
.ws-body { min-width: 0; }
.ws-body .wc-name { font-family: var(--font-display); font-weight: 700; font-size: 14.5px; color: var(--ink); }
.ws-body .wc-prize { font-size: 13px; font-weight: 600; color: var(--body); }
.ws-pills { display: flex; gap: 6px; margin-top: 6px; flex-wrap: wrap; }
.pill {
  display: inline-block;
  padding: 3px 9px;
  border-radius: 8px;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 12px;
  line-height: 1.4;
}
.pill.navy { background: var(--navy); color: #fff; }
.pill.green { background: #DCFCE7; color: #166534; }
.ws-card .wc-chip { top: -8px; left: auto; right: 10px; }
.hero-dots.small { padding: 2px 0 8px; }
.hero-dots.small button { width: 32px; height: 32px; }
.hero-dots.small button::after { inset: 13px; }

/* spotlight slider */
.spot-slider { margin-bottom: 4px; }
.ss-track {
  display: flex;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
}
.ss-track::-webkit-scrollbar { display: none; }
.ss-track .spot-card { flex: 0 0 100%; scroll-snap-align: start; margin-bottom: 0; }
.wc-chip {
  position: absolute; top: 8px; left: 8px;
  padding: 4px 10px;
  border-radius: 999px;
  background: var(--grad-orange);
  color: #fff;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 11px;
}
.win-card.sw .wc-media { position: relative; aspect-ratio: 3 / 2; border-bottom: 1px solid var(--line-soft); background: #0B1524; display: block; }
.win-card.sw .wc-media img { width: 100%; height: 100%; max-width: none; max-height: none; object-fit: cover; display: block; opacity: 1; }
.win-card.sw .wc-body { padding: 12px 14px 14px; }
.win-card.sw .wc-name { color: var(--ink); font-family: var(--font-display); font-weight: 700; font-size: 15px; }
.win-card.sw .wc-prize { color: var(--body); font-size: 13px; font-weight: 600; }
.win-card.sw .wc-link { color: var(--cyan-deep); font-weight: 600; font-size: 13px; }
.wc-winner { display: flex; gap: 10px; align-items: center; margin-bottom: 6px; }
.wc-town { color: var(--muted); font-weight: 500; font-size: 12.5px; }
.wc-how { font-size: 12.5px; color: var(--mid); margin-bottom: 6px; }
.spot-card {
  display: grid;
  border: 1px solid var(--line);
  border-radius: var(--radius-big);
  overflow: hidden;
  background: var(--paper);
  margin-bottom: 10px;
}
.spot-card .sp-media { position: relative; }
.spot-card .sp-media img { width: 100%; aspect-ratio: 2 / 1; object-fit: cover; display: block; }
.spot-card .sp-body { padding: 12px 14px 14px; }
.sp-quote { font-size: 13.5px; color: var(--body); font-style: italic; margin: 6px 0 0; }
.review-high.live { display: grid; justify-items: center; gap: 4px; }
.review-high .rh-score { font-family: var(--font-display); font-weight: 800; font-size: 44px; color: var(--ink); line-height: 1; }
.review-high .rh-score span { font-size: 20px; color: var(--muted); font-weight: 700; }
.tst-unit.rev .tu-media.rev { display: grid; place-items: center; padding: 18px 0 4px; height: auto; aspect-ratio: auto; border-bottom: 0; background: transparent; }
.tst-unit.rev .tu-media.rev img { width: 64px; height: 64px; max-width: none; max-height: none; border-radius: 50%; opacity: 1; }
.tst-unit.rev .tu-name { color: var(--ink); letter-spacing: 0; font-size: 15px; }
.review-high.live .rh-stars { color: var(--orange); }
/* testimonial slots that use stage imagery show it full-colour */
.tst-unit .tu-media img[src*="stage-"] { max-width: 100%; max-height: none; width: 100%; height: 100%; object-fit: cover; opacity: .55; }
.tu-date { font-size: 12px; color: var(--muted); font-weight: 500; }
.tu-prize .stars { color: var(--orange); letter-spacing: 2px; }
.iw-winlist { list-style: none; padding: 0; margin: 12px 0 0; display: grid; gap: 8px; }
.iw-winlist li { display: flex; gap: 10px; align-items: center; background: var(--paper); border: 1px solid var(--line); border-radius: 12px; padding: 9px 12px; font-size: 13.5px; color: var(--mid); }
.iw-winlist strong { color: var(--ink); }
.iw-winlist .iwl-t { margin-left: auto; font-size: 12px; color: var(--muted); flex: none; }
.pd-desc { font-size: 15px; color: var(--body); max-width: 62ch; margin-bottom: 12px; }
.pd-incl { list-style: none; padding: 0; margin: 0 0 16px; display: grid; gap: 7px; }
.pd-incl li { display: flex; gap: 9px; font-size: 14px; color: var(--body); align-items: baseline; }
.pd-incl .tick { color: var(--green); font-weight: 700; }
.spec-table { width: 100%; border-collapse: collapse; font-size: 13.5px; }
.spec-table th, .spec-table td { text-align: left; padding: 9px 10px; border-top: 1px solid var(--line-soft); vertical-align: top; }
.spec-table tr:last-child th, .spec-table tr:last-child td { border-bottom: 1px solid var(--line-soft); }
.spec-table th { color: var(--muted); font-weight: 600; white-space: nowrap; width: 34%; }
.spec-table td { color: var(--body); }
@media (min-width: 900px) {
  .spot-card { grid-template-columns: 1.1fr 1fr; }
  .spot-card .sp-media img { height: 100%; aspect-ratio: auto; }
  .spec-table th { width: 220px; }
}
