/* Twin Casino — site-fr4-enligne — style.css
   Namespace: tw- (classes), --tw- (custom properties)
   Palette family: navy #0a1226 / royal-azure #1f6fd6 (NOT FR3's #101A2E / #2E6BFF)
   Fonts: Bricolage Grotesque (display) + Manrope (body)
   Layout: full-width single-column + horizontal chip-nav (NO left sidebar/rail) */

:root {
  --tw-bg: #0a1226;
  --tw-bg-deep: #060a17;
  --tw-surface: #131c33;
  --tw-surface-2: #182444;
  --tw-surface-3: #1d2c52;
  --tw-line: #263457;
  --tw-line-soft: #1c2846;
  --tw-ink: #f2f5fc;
  --tw-ink-dim: #a7b4d4;
  --tw-ink-mute: #7c88ac;
  --tw-accent: #1f6fd6;
  --tw-accent-2: #4f9ce8;
  --tw-accent-deep: #164f9c;
  --tw-accent-rgb: 31, 111, 214;
  --tw-gold: #f2b73c;
  --tw-gold-rgb: 242, 183, 60;
  --tw-cta: #1f6fd6;
  --tw-cta-hover: #185eb8;
  --tw-ok: #34c77b;

  --tw-ff-display: "Bricolage Grotesque", sans-serif;
  --tw-ff-body: "Manrope", sans-serif;

  --tw-fs-body: 1rem;
  --tw-fs-small: 0.82rem;
  --tw-fs-card: 1.18rem;
  --tw-fs-h2: clamp(1.5rem, 1.15rem + 1.6vw, 2.05rem);
  --tw-fs-hero: clamp(1.9rem, 1.3rem + 3vw, 2.8rem);
  --tw-lh: 1.6;

  --tw-r-xs: 6px;
  --tw-r-sm: 12px;
  --tw-r-md: 20px;
  --tw-r-lg: 28px;
  --tw-r-pill: 999px;

  --tw-head-h: 68px;
  --tw-chipnav-h: 52px;
  --tw-gap-section: 72px;
  --tw-gap-section-mob: 46px;
  --tw-gap: 24px;

  --tw-ease-1: cubic-bezier(0.19, 1, 0.22, 1);
  --tw-ease-2: cubic-bezier(0.6, 0.04, 0.3, 1);
  --tw-t1: 140ms;
  --tw-t2: 240ms;
  --tw-t3: 380ms;
}

*, *::before, *::after { box-sizing: border-box; }
* { margin: 0; }

html {
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--tw-head-h) + var(--tw-chipnav-h) + 20px);
}

body {
  background: var(--tw-bg);
  background-image:
    radial-gradient(900px 620px at 88% -6%, rgba(31, 111, 214, 0.20), transparent 62%),
    radial-gradient(680px 520px at 4% 30%, rgba(242, 183, 60, 0.08), transparent 60%);
  background-attachment: fixed;
  color: var(--tw-ink);
  font-family: var(--tw-ff-body);
  font-size: var(--tw-fs-body);
  line-height: var(--tw-lh);
  -webkit-font-smoothing: antialiased;
  overflow-x: clip;
}

img, svg, video { display: block; max-width: 100%; }
img { height: auto; }
button { background: transparent; border: 0; padding: 0; font: inherit; color: inherit; cursor: pointer; }
a { color: var(--tw-accent-2); text-decoration: none; }
ul, ol { padding-left: 1.4em; }

:focus-visible {
  outline: none;
  box-shadow: 0 0 0 2px var(--tw-bg), 0 0 0 4px var(--tw-accent-2);
}

::selection { background: rgba(var(--tw-accent-rgb), 0.35); }

::-webkit-scrollbar { width: 10px; height: 10px; }
::-webkit-scrollbar-track { background: var(--tw-bg-deep); }
::-webkit-scrollbar-thumb { background: var(--tw-line); border-radius: 5px; }
::-webkit-scrollbar-thumb:hover { background: var(--tw-ink-mute); }

.tw-nowrap { white-space: nowrap; }

.tw-shell {
  max-width: 1240px;
  margin-inline: auto;
  padding-inline: 18px;
}
@media (min-width: 768px) { .tw-shell { padding-inline: 28px; } }

.tw-skip {
  position: absolute; left: 8px; top: 8px; z-index: 300;
  padding: 10px 18px; border-radius: var(--tw-r-xs);
  background: var(--tw-cta); color: #fff;
  transform: translateY(-200%);
  transition: transform var(--tw-t1) var(--tw-ease-1);
}
.tw-skip:focus-visible { transform: translateY(0); }

/* ============ HEADER (no sidebar/rail — flat sticky bar) ============ */
.tw-masthead {
  position: sticky; top: 0; z-index: 220;
  background: rgba(6, 10, 23, 0.88);
  -webkit-backdrop-filter: blur(12px); backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--tw-line-soft);
}
.tw-masthead__row {
  display: flex; align-items: center; gap: 12px;
  min-height: var(--tw-head-h);
}
.tw-masthead__brand {
  display: inline-flex; align-items: center; gap: 8px; flex-shrink: 0;
  min-height: 44px; padding-block: 4px;
  transition: transform var(--tw-t2) var(--tw-ease-2);
}
.tw-masthead__brand:hover { transform: translateY(-1px) scale(1.02); }
.tw-masthead__brand img { height: 26px; width: auto; object-fit: contain; }

.tw-masthead__pill {
  display: none; align-items: center; gap: 6px;
  padding: 4px 11px; border-radius: var(--tw-r-pill);
  border: 1px solid var(--tw-line); font-size: var(--tw-fs-small); color: var(--tw-ink-dim);
}
.tw-masthead__pill-dot {
  width: 7px; height: 7px; border-radius: 50%; background: var(--tw-ok);
  animation: tw-pulse-dot 1.5s ease-in-out infinite;
}
@keyframes tw-pulse-dot {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.45; transform: scale(0.75); }
}

.tw-masthead__actions { margin-left: auto; display: flex; align-items: center; gap: 10px; }

.tw-btn {
  display: inline-flex; align-items: center; justify-content: center; white-space: nowrap;
  min-height: 44px; padding: 8px 18px; border-radius: var(--tw-r-xs);
  background: var(--tw-cta); color: #fff; font-weight: 700; font-size: 0.9rem;
  transition: background var(--tw-t2) var(--tw-ease-2), transform var(--tw-t2) var(--tw-ease-2);
}
.tw-btn:hover { background: var(--tw-cta-hover); transform: translateY(-1px); }

.tw-btn--pulse {
  position: relative;
  animation: tw-pulse-glow 2s var(--tw-ease-2) infinite;
}
.tw-btn--pulse:hover { animation: none; }
@keyframes tw-pulse-glow {
  0%, 100% { box-shadow: 0 0 0 0 rgba(var(--tw-accent-rgb), 0.55); }
  70% { box-shadow: 0 0 0 13px rgba(var(--tw-accent-rgb), 0); }
}

.tw-burger {
  width: 44px; height: 44px; flex-shrink: 0;
  display: inline-flex; flex-direction: column; justify-content: center; gap: 5px;
  padding: 10px 11px; border-radius: var(--tw-r-xs);
  transition: background var(--tw-t1) var(--tw-ease-2);
}
.tw-burger:hover { background: var(--tw-surface); }
.tw-burger span {
  display: block; height: 2px; border-radius: var(--tw-r-pill);
  background: var(--tw-ink);
  transition: transform var(--tw-t2) var(--tw-ease-2), opacity var(--tw-t2) var(--tw-ease-2);
}
.tw-burger span:nth-child(1) { width: 100%; }
.tw-burger span:nth-child(2) { width: 70%; }
.tw-burger span:nth-child(3) { width: 85%; }
.tw-burger[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.tw-burger[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.tw-burger[aria-expanded="true"] span:nth-child(3) { width: 100%; transform: translateY(-7px) rotate(-45deg); }

@media (min-width: 768px) {
  .tw-masthead__brand img { height: 30px; }
  .tw-masthead__pill { display: inline-flex; }
  .tw-btn { min-height: 44px; padding: 10px 24px; font-size: 0.95rem; }
}
@media (min-width: 1024px) { .tw-burger { display: none; } }

/* ---- mobile drop-panel (NOT a left sidebar; a top drop-sheet under header) ---- */
.tw-dropsheet {
  position: fixed; left: 0; right: 0; top: var(--tw-head-h);
  z-index: 210;
  background: var(--tw-bg-deep);
  border-bottom: 1px solid var(--tw-line-soft);
  max-height: 0; overflow: hidden;
  transition: max-height var(--tw-t3) var(--tw-ease-2);
}
.tw-dropsheet.is-open { max-height: 70vh; overflow-y: auto; }
.tw-dropsheet__inner { padding: 18px; display: flex; flex-direction: column; gap: 4px; }
.tw-dropsheet__link {
  display: flex; align-items: center; min-height: 46px; padding-inline: 10px;
  border-radius: var(--tw-r-xs); color: var(--tw-ink); font-weight: 600;
  transition: background var(--tw-t1) var(--tw-ease-2);
}
.tw-dropsheet__link:hover { background: var(--tw-surface); }
@media (min-width: 1024px) { .tw-dropsheet { display: none; } }

/* ============ HORIZONTAL CHIP-NAV (replaces FR3's left icon sidebar) ============ */
.tw-chipnav {
  position: sticky; top: var(--tw-head-h); z-index: 190;
  background: rgba(10, 18, 38, 0.92);
  -webkit-backdrop-filter: blur(10px); backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--tw-line-soft);
}
.tw-chipnav__row {
  display: flex; align-items: center; gap: 8px;
  min-height: var(--tw-chipnav-h);
  padding-block: 4px;
  overflow-x: auto; scrollbar-width: none; -ms-overflow-style: none;
  -webkit-overflow-scrolling: touch;
}
.tw-chipnav__row::-webkit-scrollbar { display: none; }
.tw-chip {
  flex: 0 0 auto;
  display: inline-flex; align-items: center; gap: 6px;
  min-height: 44px; padding: 7px 15px;
  border-radius: var(--tw-r-pill);
  border: 1px solid var(--tw-line);
  background: var(--tw-surface);
  color: var(--tw-ink-dim);
  font-size: 0.85rem; font-weight: 600;
  transition: border-color var(--tw-t1) var(--tw-ease-2), color var(--tw-t1) var(--tw-ease-2), background var(--tw-t1) var(--tw-ease-2);
}
.tw-chip:hover, .tw-chip:focus-visible {
  border-color: var(--tw-accent); color: var(--tw-ink); background: var(--tw-surface-2);
}
.tw-chip svg { width: 14px; height: 14px; color: var(--tw-accent-2); flex-shrink: 0; }

/* ============ MAIN STREAM ============ */
.tw-stream { min-width: 0; }
.tw-stream > * + * { margin-block-start: var(--tw-gap-section-mob); }
@media (min-width: 768px) { .tw-stream > * + * { margin-block-start: var(--tw-gap-section); } }

/* ============ HERO — SPLIT PANEL (not full-bleed carousel) ============ */
.tw-hero { position: relative; padding-block-start: 28px; }
.tw-hero__grid {
  display: grid; grid-template-columns: minmax(0, 1fr);
  gap: 26px;
  align-items: stretch;
}
@media (min-width: 960px) {
  .tw-hero__grid { grid-template-columns: minmax(0, 1.08fr) minmax(0, 0.92fr); gap: var(--tw-gap); }
}

.tw-hero__copy {
  display: flex; flex-direction: column; gap: 16px; justify-content: center;
  padding: 30px 26px;
  border-radius: var(--tw-r-lg);
  border: 1px solid var(--tw-line);
  background: linear-gradient(160deg, var(--tw-surface) 0%, var(--tw-surface-2) 100%);
}
@media (min-width: 960px) { .tw-hero__copy { padding: 40px; } }

.tw-hero__eyebrow {
  display: inline-flex; align-items: center; gap: 8px; align-self: flex-start;
  padding: 6px 14px; border-radius: var(--tw-r-pill);
  background: rgba(var(--tw-gold-rgb), 0.14);
  color: var(--tw-gold);
  font-family: var(--tw-ff-display); font-weight: 700; font-size: var(--tw-fs-small);
  letter-spacing: 0.08em; text-transform: uppercase;
}
.tw-hero__title {
  font-family: var(--tw-ff-display); font-weight: 800;
  font-size: var(--tw-fs-hero); line-height: 1.1; letter-spacing: -0.01em;
}
.tw-hero__lede { color: var(--tw-ink-dim); max-width: 54ch; }
.tw-hero__row { display: flex; flex-wrap: wrap; align-items: center; gap: 12px; margin-top: 4px; }
.tw-hero__cta--ghost {
  display: inline-flex; align-items: center; justify-content: center;
  min-height: 46px; padding: 12px 24px; border-radius: var(--tw-r-xs);
  box-shadow: inset 0 0 0 1px var(--tw-line);
  color: var(--tw-ink); font-weight: 700;
  transition: background var(--tw-t2) var(--tw-ease-2), box-shadow var(--tw-t2) var(--tw-ease-2);
}
.tw-hero__cta--ghost:hover { background: var(--tw-surface-3); box-shadow: inset 0 0 0 1px var(--tw-accent); }
.tw-hero__cta--big { min-height: 50px; padding: 13px 30px; font-size: 1rem; }

.tw-hero__meta { display: flex; flex-wrap: wrap; gap: 18px; margin-top: 6px; }
.tw-hero__meta-item { display: flex; flex-direction: column; gap: 2px; }
.tw-hero__meta-num { font-family: var(--tw-ff-display); font-weight: 800; font-size: 1.3rem; color: var(--tw-accent-2); }
.tw-hero__meta-label { font-size: var(--tw-fs-small); color: var(--tw-ink-mute); }

.tw-hero__visual {
  position: relative;
  border-radius: var(--tw-r-lg);
  overflow: hidden;
  border: 1px solid var(--tw-line);
  min-height: 280px;
  display: flex; flex-direction: column; justify-content: flex-end;
}
.tw-hero__visual-img {
  position: absolute; inset: 0; width: 100%; height: 100%;
  object-fit: cover; object-position: 50% 22%;
}
.tw-hero__visual-overlay {
  position: relative; z-index: 1;
  background: linear-gradient(0deg, rgba(6, 10, 23, 0.94) 0%, rgba(6, 10, 23, 0.5) 46%, rgba(6, 10, 23, 0.05) 100%);
  padding: 22px;
  display: flex; flex-direction: column; gap: 8px;
}
.tw-hero__visual-tag {
  align-self: flex-start; padding: 5px 12px; border-radius: var(--tw-r-pill);
  background: rgba(var(--tw-accent-rgb), 0.22); color: var(--tw-accent-2);
  font-family: var(--tw-ff-display); font-weight: 700; font-size: var(--tw-fs-small);
  letter-spacing: 0.06em; text-transform: uppercase;
}
.tw-hero__visual-title { font-family: var(--tw-ff-display); font-weight: 800; font-size: 1.3rem; }
.tw-hero__visual-sub { color: var(--tw-ink-dim); font-size: 0.92rem; max-width: 34ch; }

/* ============ PROSE (copy blocks) ============ */
.tw-prose {
  word-wrap: break-word; overflow-wrap: break-word;
}
.tw-prose :is(h1,h2,h3,p):first-child { margin-top: 0; }
.tw-prose p { margin: 0 0 1.2em; line-height: 1.62; }
.tw-prose strong, .tw-prose b { font-weight: 700; color: var(--tw-ink); }
.tw-prose em, .tw-prose i { font-style: italic; }
.tw-prose h1, .tw-prose h2, .tw-prose h3 { margin: 1.2em 0 0.8em; line-height: 1.28; }
.tw-prose ul, .tw-prose ol { margin: 0 0 1.2em; padding-left: 1.5em; overflow: auto; }
.tw-prose ul { list-style-type: none; }
.tw-prose ul li { position: relative; padding-left: 1.55em; }
.tw-prose ul li::before {
  content: ""; position: absolute; left: 0; top: 0.55em;
  width: 8px; height: 8px; border-radius: 3px;
  background: var(--tw-accent);
  transform: rotate(45deg);
}
.tw-prose ol { list-style-type: decimal; }
.tw-prose li { margin-bottom: 0.5em; list-style-position: outside; color: var(--tw-ink-dim); }
.tw-prose li::marker { color: var(--tw-accent); }
.tw-prose a { color: var(--tw-accent-2); text-decoration: underline; transition: color var(--tw-t1); }
.tw-prose a:hover { color: var(--tw-gold); }
.tw-prose > *:last-child { margin-bottom: 0; }

.tw-prose__table-wrap {
  margin: 2em 0; overflow-x: auto; -webkit-overflow-scrolling: touch;
  scrollbar-width: thin; scrollbar-color: var(--tw-line) var(--tw-bg-deep);
  border-radius: var(--tw-r-sm);
  border: 1px solid var(--tw-line);
}
.tw-prose__table-wrap table {
  width: 100%; min-width: 560px; table-layout: fixed; border-collapse: collapse; font-size: 0.94em;
  background: var(--tw-surface);
}
.tw-prose__table-wrap th, .tw-prose__table-wrap td {
  padding: 0.8em 1.05em; border-bottom: 1px solid var(--tw-line-soft);
  text-align: left; vertical-align: top; overflow-wrap: break-word;
}
.tw-prose__table-wrap th {
  font-weight: 700; background: var(--tw-surface-3); font-family: var(--tw-ff-display);
  color: var(--tw-accent-2);
}
.tw-prose__table-wrap td { color: var(--tw-ink-dim); }
.tw-prose__table-wrap tr:last-child td { border-bottom: none; }

.tw-prose h1 {
  font-family: var(--tw-ff-display); font-weight: 800;
  font-size: clamp(1.7rem, 1.3rem + 2vw, 2.4rem); line-height: 1.15;
}
.tw-prose h2 {
  font-family: var(--tw-ff-display); font-weight: 800; font-size: var(--tw-fs-h2);
  padding-left: 16px; position: relative;
}
.tw-prose h2::before {
  content: ""; position: absolute; left: 0; top: 0.12em; bottom: 0.12em;
  width: 4px; border-radius: var(--tw-r-pill);
  background: linear-gradient(180deg, var(--tw-accent), var(--tw-gold));
}
.tw-prose h3 { font-family: var(--tw-ff-display); font-weight: 700; font-size: 1.24rem; }
.tw-prose p, .tw-prose li { color: var(--tw-ink-dim); }

/* ============ SECTION HEAD (shared) ============ */
.tw-section-head { display: flex; align-items: flex-end; justify-content: space-between; gap: 14px; margin-bottom: 22px; flex-wrap: wrap; }
.tw-section-head__group { display: flex; flex-direction: column; gap: 6px; }
.tw-eyebrow {
  font-family: var(--tw-ff-display); font-weight: 700; font-size: var(--tw-fs-small);
  letter-spacing: 0.1em; text-transform: uppercase; color: var(--tw-accent-2);
}
.tw-section-title { font-family: var(--tw-ff-display); font-weight: 800; font-size: var(--tw-fs-h2); line-height: 1.2; }
.tw-section-head__link {
  color: var(--tw-ink-dim); font-weight: 600; font-size: 0.9rem;
  display: inline-flex; align-items: center; gap: 4px; min-height: 44px;
  transition: color var(--tw-t1) var(--tw-ease-2);
}
.tw-section-head__link:hover { color: var(--tw-accent-2); }

/* ============ SLOT GRID (CSS grid tiles, NOT horizontal rail — divergence from FR3) ============ */
.tw-slotgrid {
  display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 14px;
}
@media (min-width: 560px) { .tw-slotgrid { grid-template-columns: repeat(3, minmax(0, 1fr)); } }
@media (min-width: 860px) { .tw-slotgrid { grid-template-columns: repeat(4, minmax(0, 1fr)); gap: var(--tw-gap); } }
@media (min-width: 1180px) { .tw-slotgrid { grid-template-columns: repeat(6, minmax(0, 1fr)); } }

.tw-slot {
  display: flex; flex-direction: column; color: inherit; text-decoration: none;
}
.tw-slot__frame {
  position: relative; display: block; width: 100%; aspect-ratio: 3/4;
  overflow: hidden; border-radius: var(--tw-r-sm);
  background: var(--tw-surface);
}
.tw-slot__art { width: 100%; height: 100%; object-fit: cover; transition: transform 0.4s var(--tw-ease-1); }
.tw-slot:hover .tw-slot__art, .tw-slot:focus-visible .tw-slot__art { transform: scale(1.07); }
.tw-slot__overlay {
  position: absolute; inset: 0;
  background: linear-gradient(0deg, rgba(6,10,23,0.88) 0%, transparent 55%);
  display: flex; align-items: flex-end; justify-content: center;
  padding-bottom: 10px;
  opacity: 0; transition: opacity var(--tw-t2) var(--tw-ease-2);
}
.tw-slot:hover .tw-slot__overlay, .tw-slot:focus-visible .tw-slot__overlay { opacity: 1; }
.tw-slot__play {
  padding: 6px 14px; border-radius: var(--tw-r-pill);
  background: var(--tw-accent); color: #fff; font-weight: 700; font-size: 0.8rem;
}
.tw-slot__meta { display: flex; flex-direction: column; gap: 2px; padding: 9px 2px 0; }
.tw-slot__name { font-weight: 600; font-size: 0.9rem; line-height: 1.3; }
.tw-slot__provider { font-size: 0.75rem; color: var(--tw-ink-mute); }

/* ============ LIVE-FEATURES (2-col icon list, NOT rail cards — divergence) ============ */
.tw-livegrid { display: grid; grid-template-columns: minmax(0, 1fr); gap: 14px; }
@media (min-width: 640px) { .tw-livegrid { grid-template-columns: repeat(2, minmax(0, 1fr)); } }
.tw-livecard {
  display: flex; gap: 16px; align-items: center;
  padding: 18px; border-radius: var(--tw-r-md);
  border: 1px solid var(--tw-line);
  background: var(--tw-surface);
  transition: border-color var(--tw-t2) var(--tw-ease-2), transform var(--tw-t2) var(--tw-ease-2), background var(--tw-t2) var(--tw-ease-2);
  text-decoration: none; color: inherit;
}
.tw-livecard:hover { border-color: var(--tw-accent); background: var(--tw-surface-2); transform: translateY(-2px); }
.tw-livecard__thumb {
  flex-shrink: 0; width: 76px; height: 76px; border-radius: var(--tw-r-sm);
  overflow: hidden; background: var(--tw-surface-3);
}
.tw-livecard__thumb img { width: 100%; height: 100%; object-fit: cover; }
.tw-livecard__body { display: flex; flex-direction: column; gap: 3px; min-width: 0; }
.tw-livecard__name { font-weight: 700; font-size: 1rem; }
.tw-livecard__desc { font-size: 0.85rem; color: var(--tw-ink-mute); }
.tw-livecard__hint {
  margin-top: 4px; font-size: 0.78rem; font-weight: 700; color: var(--tw-accent-2);
}

/* ============ BONUS COMPARISON TABLE (not 3-card row — divergence from FR3's bonus-matrix) ============ */
.tw-boncompare { overflow-x: auto; border-radius: var(--tw-r-md); border: 1px solid var(--tw-line); }
.tw-boncompare table { width: 100%; min-width: 640px; border-collapse: collapse; background: var(--tw-surface); }
.tw-boncompare thead th {
  padding: 16px 18px; text-align: left; font-family: var(--tw-ff-display);
  background: var(--tw-surface-3); border-bottom: 1px solid var(--tw-line);
}
.tw-boncompare thead th:first-child { color: var(--tw-ink-mute); font-weight: 600; font-size: 0.82rem; text-transform: uppercase; letter-spacing: 0.06em; }
.tw-boncompare__plan { display: flex; flex-direction: column; gap: 4px; }
.tw-boncompare__plan-tag {
  align-self: flex-start; padding: 3px 10px; border-radius: var(--tw-r-pill);
  background: rgba(var(--tw-accent-rgb), 0.32); color: #eaf3ff;
  font-size: 0.76rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.06em;
}
.tw-boncompare__plan-name { font-weight: 800; font-size: 1.05rem; color: var(--tw-ink); }
.tw-boncompare tbody td {
  padding: 14px 18px; border-bottom: 1px solid var(--tw-line-soft);
  color: var(--tw-ink-dim); vertical-align: top;
}
.tw-boncompare tbody tr:last-child td { border-bottom: none; }
.tw-boncompare tbody td:first-child { color: var(--tw-ink-mute); font-weight: 600; font-size: 0.85rem; white-space: nowrap; }
.tw-boncompare__value { color: var(--tw-accent-2); font-weight: 800; font-family: var(--tw-ff-display); }
.tw-boncompare__cta-row td { padding-top: 20px; padding-bottom: 20px; }
.tw-boncompare__cta {
  display: inline-flex; align-items: center; justify-content: center;
  min-height: 44px; padding: 10px 18px; border-radius: var(--tw-r-xs);
  background: var(--tw-cta); color: #fff; font-weight: 700; font-size: 0.86rem; white-space: nowrap;
  transition: background var(--tw-t2) var(--tw-ease-2);
}
.tw-boncompare__cta:hover { background: var(--tw-cta-hover); }

/* ============ MID CTA BAND ============ */
.tw-midcta {
  position: relative; overflow: hidden;
  display: flex; flex-wrap: wrap; align-items: center; justify-content: space-between; gap: 18px;
  padding: 28px 26px;
  border-radius: var(--tw-r-md);
  border: 1px solid rgba(var(--tw-accent-rgb), 0.4);
  background: linear-gradient(120deg, var(--tw-surface) 0%, var(--tw-surface-3) 55%, rgba(var(--tw-gold-rgb), 0.13) 100%);
  background-size: 220% 220%;
  animation: tw-band-shift 22s ease-in-out infinite alternate;
}
@keyframes tw-band-shift {
  0% { background-position: 0% 40%; }
  100% { background-position: 100% 60%; }
}
.tw-midcta__copy { display: flex; flex-direction: column; gap: 4px; max-width: 56ch; }
.tw-midcta__title { font-family: var(--tw-ff-display); font-weight: 800; font-size: 1.22rem; }
.tw-midcta__sub { color: var(--tw-ink-dim); font-size: 0.95rem; }
.tw-midcta__cta {
  display: inline-flex; align-items: center; justify-content: center;
  min-height: 46px; padding: 12px 28px; border-radius: var(--tw-r-xs);
  background: var(--tw-cta); color: #fff; font-weight: 700; white-space: nowrap;
  transition: background var(--tw-t2) var(--tw-ease-2), transform var(--tw-t2) var(--tw-ease-2);
}
.tw-midcta__cta:hover { background: var(--tw-cta-hover); transform: translateY(-1px); }

/* ============ PROVIDERS — static wrap grid (NOT marquee — divergence from FR3) ============ */
.tw-providers { padding: 8px 0; }
.tw-providers__grid {
  display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 10px;
}
@media (min-width: 560px) { .tw-providers__grid { grid-template-columns: repeat(3, minmax(0, 1fr)); } }
@media (min-width: 860px) { .tw-providers__grid { grid-template-columns: repeat(6, minmax(0, 1fr)); gap: var(--tw-gap); } }
.tw-providers__cell {
  display: flex; align-items: center; justify-content: center;
  height: 62px; padding: 10px 14px;
  background: var(--tw-surface); border: 1px solid var(--tw-line); border-radius: var(--tw-r-sm);
  transition: border-color var(--tw-t1) var(--tw-ease-2), background var(--tw-t1) var(--tw-ease-2), transform var(--tw-t1) var(--tw-ease-2);
}
.tw-providers__cell:hover { border-color: var(--tw-accent); background: var(--tw-surface-2); transform: translateY(-2px); }
.tw-providers__cell img { max-width: 100%; max-height: 28px; object-fit: contain; filter: brightness(0) invert(0.86); opacity: 0.86; transition: filter var(--tw-t1), opacity var(--tw-t1); }
.tw-providers__cell:hover img { filter: brightness(0) invert(1); opacity: 1; }

/* ============ PAYMENTS — inline rows list (NOT tile grid — divergence) ============ */
.tw-paylist { display: flex; flex-direction: column; gap: 10px; margin-top: 4px; }
.tw-payrow {
  display: flex; align-items: center; gap: 16px; flex-wrap: wrap;
  padding: 14px 18px; border-radius: var(--tw-r-sm);
  border: 1px solid var(--tw-line); background: var(--tw-surface);
  transition: border-color var(--tw-t1) var(--tw-ease-2);
}
.tw-payrow:hover { border-color: var(--tw-accent); }
.tw-payrow__icon { flex-shrink: 0; width: 56px; height: 32px; display: flex; align-items: center; justify-content: center; }
.tw-payrow__icon img { max-width: 100%; max-height: 26px; object-fit: contain; }
.tw-payrow__name { font-weight: 700; min-width: 130px; }
.tw-payrow__meta { display: flex; gap: 18px; margin-left: auto; flex-wrap: wrap; color: var(--tw-ink-dim); font-size: 0.86rem; }
.tw-payrow__meta b { color: var(--tw-ink); }

/* ============ FAQ ============ */
.tw-prose__qa { display: flex; flex-direction: column; gap: 12px; margin-top: 22px; }
.tw-qa {
  border: 1px solid var(--tw-line); border-radius: var(--tw-r-md);
  background: var(--tw-surface);
  transition: border-color var(--tw-t2) var(--tw-ease-2);
  overflow: hidden;
}
.tw-qa.is-open { border-color: rgba(var(--tw-accent-rgb), 0.55); }
.tw-qa__q {
  position: relative; display: block; width: 100%; text-align: left;
  padding: 17px 54px 17px 20px;
  font-weight: 700; line-height: 1.35; cursor: pointer;
  transition: color var(--tw-t1) var(--tw-ease-2);
}
.tw-qa__q:hover { color: var(--tw-accent-2); }
.tw-qa__q::before, .tw-qa__q::after {
  content: ""; position: absolute; right: 21px; top: calc(17px + 0.675em);
  width: 14px; height: 2px; border-radius: var(--tw-r-pill);
  background: var(--tw-accent);
  transition: transform var(--tw-t2) var(--tw-ease-2);
}
.tw-qa__q::after { transform: translateY(-50%) rotate(90deg); }
.tw-qa__q::before { transform: translateY(-50%); }
.tw-qa.is-open .tw-qa__q::after { transform: translateY(-50%) rotate(0deg); }
.tw-qa__body { padding: 0 20px; }
.tw-qa__a { color: var(--tw-ink-dim); margin: 0; padding-bottom: 18px; }

/* ============ FINAL CTA ============ */
.tw-final {
  position: relative; overflow: hidden;
  padding: 40px 26px; border-radius: var(--tw-r-lg);
  border: 1px solid rgba(var(--tw-accent-rgb), 0.4);
  background:
    radial-gradient(560px 320px at 84% 0%, rgba(var(--tw-gold-rgb), 0.16), transparent 60%),
    linear-gradient(155deg, var(--tw-surface) 0%, var(--tw-surface-3) 100%);
  display: flex; flex-direction: column; align-items: flex-start; gap: 14px;
  text-align: left;
}
@media (min-width: 720px) {
  .tw-final { align-items: center; text-align: center; padding: 52px 40px; }
}
.tw-final__eyebrow {
  padding: 6px 14px; border-radius: var(--tw-r-pill);
  background: rgba(var(--tw-gold-rgb), 0.14); color: var(--tw-gold);
  font-family: var(--tw-ff-display); font-weight: 700; font-size: var(--tw-fs-small);
  letter-spacing: 0.08em; text-transform: uppercase;
}
.tw-final__title { font-family: var(--tw-ff-display); font-weight: 800; font-size: clamp(1.5rem, 1.2rem + 1.6vw, 2rem); max-width: 24ch; }
.tw-final__sub { color: var(--tw-ink-dim); max-width: 52ch; }

/* ============ BACK TO TOP ============ */
.tw-totop {
  position: fixed; right: 18px; bottom: 18px; z-index: 75;
  width: 48px; height: 48px;
  display: inline-flex; align-items: center; justify-content: center;
  background: var(--tw-surface); color: var(--tw-accent-2);
  border: 1px solid var(--tw-line); border-radius: 50%;
  opacity: 0; visibility: hidden; transform: translateY(12px);
  transition: opacity var(--tw-t2), transform var(--tw-t2), visibility 0s var(--tw-t2);
  box-shadow: 0 6px 20px rgba(0,0,0,0.32);
}
.tw-totop.is-visible { opacity: 1; visibility: visible; transform: translateY(0); transition: opacity var(--tw-t2), transform var(--tw-t2), visibility 0s 0s; }
@media (max-width: 767px) { .tw-totop { bottom: 84px; } }

/* ============ STICKY MOBILE BOTTOM CTA ============ */
.tw-stickycta {
  display: none;
  position: fixed; left: 0; right: 0; bottom: 0; z-index: 70;
  padding: 10px 14px calc(10px + env(safe-area-inset-bottom));
  background: rgba(6, 10, 23, 0.95);
  -webkit-backdrop-filter: blur(14px); backdrop-filter: blur(14px);
  border-top: 1px solid var(--tw-line-soft);
  transform: translateY(100%);
  transition: transform var(--tw-t3) var(--tw-ease-2);
}
.tw-stickycta.is-visible { transform: translateY(0); }
.tw-stickycta__row { display: flex; align-items: center; justify-content: space-between; gap: 12px; }
.tw-stickycta__copy { display: flex; flex-direction: column; gap: 2px; min-width: 0; }
.tw-stickycta__copy strong { font-size: 0.92rem; }
.tw-stickycta__copy span { font-size: var(--tw-fs-small); color: var(--tw-ink-dim); white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.tw-stickycta__cta {
  flex-shrink: 0;
  display: inline-flex; align-items: center; justify-content: center;
  min-height: 44px; padding: 10px 20px; border-radius: var(--tw-r-xs);
  background: var(--tw-cta); color: #fff; font-weight: 700;
}
@media (max-width: 767px) {
  .tw-stickycta { display: block; }
  body { padding-bottom: 76px; }
}

/* ============ FOOTER ============ */
.tw-foot {
  margin-block-start: var(--tw-gap-section-mob);
  padding-block: 50px;
  background: var(--tw-bg-deep);
  border-top: 1px solid var(--tw-line-soft);
}
@media (min-width: 768px) { .tw-foot { margin-block-start: var(--tw-gap-section); } }

.tw-foot__grid { display: grid; grid-template-columns: minmax(0, 1fr); gap: 30px; }
@media (min-width: 640px) { .tw-foot__grid { grid-template-columns: repeat(2, minmax(0, 1fr)); } }
@media (min-width: 1024px) { .tw-foot__grid { grid-template-columns: 1.4fr repeat(3, minmax(0, 1fr)); gap: var(--tw-gap); } }

.tw-foot__brand { display: flex; flex-direction: column; gap: 14px; }
.tw-foot__brand img { height: 27px; width: auto; align-self: flex-start; object-fit: contain; }
.tw-foot__about { color: var(--tw-ink-dim); font-size: 0.92rem; max-width: 34ch; }

.tw-foot__col { display: flex; flex-direction: column; gap: 8px; }
.tw-foot__head {
  font-family: var(--tw-ff-display); font-weight: 700; font-size: var(--tw-fs-small);
  letter-spacing: 0.1em; text-transform: uppercase; color: var(--tw-ink-mute); margin-bottom: 4px;
}
.tw-foot__col a { display: inline-flex; align-items: center; min-height: 44px; color: var(--tw-ink); font-size: 0.95rem; padding-block: 3px; transition: color var(--tw-t1) var(--tw-ease-2); }
.tw-foot__col a:hover { color: var(--tw-accent-2); }

.tw-foot__bottom {
  display: flex; flex-wrap: wrap; align-items: center; gap: 14px;
  margin-top: 38px; padding-top: 24px; border-top: 1px solid var(--tw-line-soft);
}
.tw-foot__age {
  width: 40px; height: 40px; flex-shrink: 0;
  display: inline-flex; align-items: center; justify-content: center;
  border-radius: 50%; border: 2px solid var(--tw-accent);
  font-family: var(--tw-ff-display); font-weight: 800; font-size: 0.82rem;
}
.tw-foot__legal { flex: 1 1 260px; min-width: 0; color: var(--tw-ink-mute); font-size: var(--tw-fs-small); }
.tw-foot__copy { color: var(--tw-ink-mute); font-size: var(--tw-fs-small); white-space: nowrap; }

/* ============ REVEAL ON SCROLL ============ */
.tw-reveal { transition: opacity .5s ease, transform .5s ease; }
.js-enabled .tw-reveal { opacity: 0; transform: translateY(18px); }
.js-enabled .tw-reveal.is-visible { opacity: 1; transform: none; }

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
  html { scroll-behavior: auto; }
}

/* force dark base — fix transparent body-bg (white in light mode) */
html{color-scheme:dark;background-color:#0a1226}body{background-color:#0a1226}
