/* SITE: KensingtonWager | Architecture: B (directory) | Generated: 2026-05-26 */
/* Design system: Velvet Lime #15 | Prefix: kw | Bootstrap loader: b8 (unpkg-5.3.3-full) */

/* ─── ROOT TOKENS ─── */
:root {
  --kw-bg:        #2a2541;
  --kw-surface:   #3d3560;
  --kw-surface2:  #342e58;
  --kw-surface3:  #231f3d;
  --kw-primary:   #8b5cf6;
  --kw-lighter:   #a78bfa;
  --kw-accent:    #22c55e;
  --kw-warning:   #eab308;
  --kw-text:      #fafafa;
  --kw-muted:     #c4b5fd;
  --kw-rule:      rgba(139,92,246,.22);
  --kw-shadow:    0 6px 32px rgba(139,92,246,.22);
  --kw-shadow-sm: 0 2px 10px rgba(139,92,246,.14);
  --kw-radius:    26px;
  --kw-radius-sm: 12px;
  --kw-radius-xs: 6px;
  --kw-header-h:  62px;
}

/* ─── ANTI-FINGERPRINT: custom Bootstrap container widths ─── */
.container,
.container-sm,
.container-md,
.container-lg,
.container-xl,
.container-xxl { max-width: 545px; }

@media (min-width: 576px)  { .container, .container-sm { max-width: 545px; } }
@media (min-width: 768px)  { .container, .container-sm, .container-md { max-width: 721px; } }
@media (min-width: 992px)  { .container, .container-sm, .container-md, .container-lg { max-width: 964px; } }
@media (min-width: 1200px) { .container, .container-sm, .container-md, .container-lg, .container-xl { max-width: 1138px; } }
@media (min-width: 1400px) { .container, .container-sm, .container-md, .container-lg, .container-xl, .container-xxl { max-width: 1325px; } }

/* ─── RESET / BASE ─── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }

body {
  background: var(--kw-bg);
  color: var(--kw-text);
  font-family: 'Inter', Arial, sans-serif;
  font-size: 1rem;
  line-height: 1.68;
  min-height: 100vh;
}

a { color: var(--kw-accent); text-decoration: none; }
a:hover { text-decoration: underline; }
img { max-width: 100%; height: auto; display: block; }
ul, ol { padding-left: 1.4rem; }
input, select, textarea, button {
  font-family: inherit;
  font-size: 1rem;
}

/* ─── UTILITY ─── */
.is-hidden { display: none !important; }
.kw-sr-only {
  position: absolute; width: 1px; height: 1px;
  padding: 0; margin: -1px; overflow: hidden;
  clip: rect(0,0,0,0); white-space: nowrap; border: 0;
}

/* ─── BUTTONS ─── */
.kw-btn-primary {
  display: inline-flex; align-items: center; gap: .45rem;
  background: var(--kw-accent); color: #0a0a0a;
  font-weight: 700; font-size: .95rem;
  padding: .72rem 1.6rem;
  border: none; border-radius: var(--kw-radius-sm);
  cursor: pointer; transition: background .2s, transform .15s;
  text-decoration: none; min-height: 44px;
  white-space: nowrap;
}
.kw-btn-primary:hover { background: #16a34a; color: #fff; transform: translateY(-1px); text-decoration: none; }

.kw-btn-ghost {
  display: inline-flex; align-items: center;
  background: transparent; color: var(--kw-text);
  font-weight: 600; font-size: .9rem;
  padding: .68rem 1.4rem;
  border: 1.5px solid var(--kw-rule); border-radius: var(--kw-radius-sm);
  cursor: pointer; transition: border-color .2s, color .2s;
  text-decoration: none; min-height: 44px;
}
.kw-btn-ghost:hover { border-color: var(--kw-accent); color: var(--kw-accent); text-decoration: none; }

/* ─── LIVE DOT ─── */
.kw-live-dot {
  display: inline-block; width: 8px; height: 8px;
  background: var(--kw-accent); border-radius: 50%;
  animation: kwPulse 1.8s ease-in-out infinite;
  vertical-align: middle; margin-left: 5px;
}
@keyframes kwPulse {
  0%, 100% { box-shadow: 0 0 0 0 rgba(34,197,94,.6); opacity: 1; }
  50%       { box-shadow: 0 0 0 5px rgba(34,197,94,0); opacity: .75; }
}

/* ─── OVERLAY / MODALS ─── */
.kw-agegate,
.kw-cookiepanel {
  position: fixed; inset: 0;
  background: rgba(20,16,40,.92);
  display: flex; align-items: center; justify-content: center;
  z-index: 9000; padding: 1rem;
}
.kw-agegate__box,
.kw-cookiepanel__box {
  background: var(--kw-surface);
  border: 1px solid var(--kw-rule);
  border-radius: var(--kw-radius);
  padding: 2.5rem 2rem;
  max-width: 480px; width: 100%;
  box-shadow: var(--kw-shadow);
}
.kw-agegate__headline {
  font-size: 1.5rem; font-weight: 700;
  margin-bottom: .6rem; text-align: center;
}
.kw-agegate__body {
  color: var(--kw-muted); font-size: .95rem;
  margin-bottom: 1.6rem; text-align: center;
}
.kw-agegate__actions {
  display: flex; gap: .8rem; flex-wrap: wrap; justify-content: center;
}
.kw-agegate__yes {
  flex: 1; background: var(--kw-accent); color: #0a0a0a;
  font-weight: 700; padding: .75rem 1.2rem;
  border: none; border-radius: var(--kw-radius-sm);
  cursor: pointer; min-height: 44px;
}
.kw-agegate__yes:hover { background: #16a34a; }
.kw-agegate__no {
  flex: 1; background: transparent; color: var(--kw-muted);
  font-size: .88rem; padding: .75rem .8rem;
  border: 1px solid var(--kw-rule); border-radius: var(--kw-radius-sm);
  cursor: pointer; min-height: 44px;
}
.kw-agegate__no:hover { color: var(--kw-text); }

/* ─── COOKIE BAR ─── */
.kw-cookiebar {
  position: fixed; bottom: 0; left: 0; right: 0;
  background: var(--kw-surface); border-top: 1px solid var(--kw-rule);
  z-index: 8500; padding: 1rem;
}
.kw-cookiebar__inner {
  max-width: 964px; margin: 0 auto;
  display: flex; flex-direction: column; gap: .8rem; align-items: flex-start;
}
.kw-cookiebar__text { font-size: .88rem; color: var(--kw-muted); flex: 1; }
.kw-cookiebar__actions { display: flex; gap: .6rem; flex-wrap: wrap; }
.kw-cookiebar__accept {
  background: var(--kw-accent); color: #0a0a0a;
  font-weight: 700; font-size: .88rem;
  padding: .55rem 1.1rem; border: none;
  border-radius: var(--kw-radius-xs); cursor: pointer; min-height: 44px;
}
.kw-cookiebar__manage {
  background: transparent; color: var(--kw-muted);
  font-size: .88rem; padding: .55rem .9rem;
  border: 1px solid var(--kw-rule); border-radius: var(--kw-radius-xs);
  cursor: pointer; min-height: 44px;
}

/* ─── COOKIE PANEL ─── */
.kw-cookiepanel__title { font-size: 1.2rem; font-weight: 700; margin-bottom: 1.4rem; }
.kw-toggle-row {
  display: flex; align-items: center; justify-content: space-between;
  gap: 1rem; padding: .85rem 0;
  border-bottom: 1px solid var(--kw-rule);
}
.kw-toggle-label { flex: 1; font-size: .92rem; }
.kw-toggle-label strong { display: block; margin-bottom: .2rem; }
.kw-toggle-sw { position: relative; display: inline-block; width: 44px; height: 24px; flex-shrink: 0; }
.kw-toggle-sw input { opacity: 0; width: 0; height: 0; }
.kw-toggle-track {
  position: absolute; inset: 0;
  background: var(--kw-surface3); border-radius: 12px;
  transition: background .2s; cursor: pointer;
}
.kw-toggle-track::before {
  content: ''; position: absolute; width: 18px; height: 18px;
  left: 3px; top: 3px;
  background: var(--kw-muted); border-radius: 50%; transition: .2s;
}
.kw-toggle-sw input:checked + .kw-toggle-track { background: var(--kw-accent); }
.kw-toggle-sw input:checked + .kw-toggle-track::before { transform: translateX(20px); background: #fff; }
.kw-toggle-sw input:disabled + .kw-toggle-track { opacity: .5; cursor: default; }
.kw-cookiepanel__save {
  margin-top: 1.4rem; width: 100%;
  background: var(--kw-primary); color: #fff;
  font-weight: 700; padding: .75rem; border: none;
  border-radius: var(--kw-radius-sm); cursor: pointer;
  min-height: 44px;
}
.kw-cookiepanel__save:hover { background: var(--kw-lighter); }

/* ─── HEADER ─── */
.kw-header {
  position: sticky; top: 0; z-index: 800;
  background: rgba(42,37,65,.96); backdrop-filter: blur(8px);
  border-bottom: 1px solid var(--kw-rule);
  height: var(--kw-header-h); max-height: 64px;
}
.kw-header__inner {
  display: flex; align-items: center; justify-content: space-between;
  height: 100%; gap: 1rem; padding: 0 1rem;
  max-width: 1325px; margin: 0 auto;
}
.kw-header__brand {
  display: flex; align-items: center; gap: .5rem;
  text-decoration: none;
}
.kw-header__wordmark {
  font-size: 1.25rem; font-weight: 800;
  background: linear-gradient(90deg, var(--kw-lighter), var(--kw-accent));
  -webkit-background-clip: text; -webkit-text-fill-color: transparent;
  background-clip: text;
}
.kw-header__badge18 {
  background: var(--kw-accent); color: #0a0a0a;
  font-size: .68rem; font-weight: 800;
  padding: .15rem .45rem; border-radius: 4px;
}
.kw-header__nav {
  display: flex; align-items: center; gap: .25rem; flex-wrap: wrap;
}
.kw-header__nav a {
  color: var(--kw-muted); font-size: .88rem; font-weight: 500;
  padding: .5rem .7rem; border-radius: var(--kw-radius-xs);
  transition: color .2s; text-decoration: none; min-height: 44px;
  display: flex; align-items: center;
}
.kw-header__nav a:hover { color: var(--kw-text); text-decoration: none; }
.kw-header__nav .kw-nav-rg {
  color: var(--kw-accent); border: 1px solid rgba(34,197,94,.35);
}
.kw-header__burger {
  display: none; flex-direction: column; gap: 5px;
  background: transparent; border: none; cursor: pointer;
  padding: .5rem; min-height: 44px; min-width: 44px;
  align-items: center; justify-content: center;
}
.kw__dash {
  display: block; width: 22px; height: 2px;
  background: var(--kw-text); border-radius: 2px;
  transition: transform .25s, opacity .2s;
}

@media (max-width: 880px) {
  .kw-header__nav {
    display: none;
    position: absolute; top: var(--kw-header-h); left: 0; right: 0;
    background: var(--kw-surface); border-bottom: 1px solid var(--kw-rule);
    flex-direction: column; align-items: stretch; gap: 0; padding: .5rem 0;
  }
  .kw-header__nav.is-open { display: flex; }
  .kw-header__nav a { padding: .7rem 1.2rem; border-radius: 0; }
  .kw-header__burger { display: flex; }
}
@media (max-width: 480px) {
  .kw-header__wordmark { font-size: 1.08rem; }
}

/* ─── HERO ─── */
.kw-hero {
  position: relative; min-height: 520px;
  background-color: var(--kw-bg);
  display: flex; align-items: center;
  overflow: hidden;
}
.kw-hero::before {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(135deg, rgba(42,37,65,.88) 0%, rgba(61,53,96,.72) 60%, rgba(34,197,94,.12) 100%);
  z-index: 1;
}
.kw-hero__inner {
  position: relative; z-index: 2;
  padding: 4rem 1rem 3.5rem;
  max-width: 720px;
}
.kw-hero__label {
  display: inline-block; background: rgba(34,197,94,.18);
  color: var(--kw-accent); font-size: .8rem; font-weight: 700;
  letter-spacing: .08em; text-transform: uppercase;
  padding: .3rem .85rem; border-radius: 20px;
  border: 1px solid rgba(34,197,94,.3);
  margin-bottom: 1.2rem;
}
.kw-hero h1 {
  font-size: clamp(2rem, 6vw, 3.4rem);
  font-weight: 800; line-height: 1.15;
  margin-bottom: 1rem; color: var(--kw-text);
}
.kw-hero__deck {
  font-size: 1.08rem; color: var(--kw-muted);
  margin-bottom: 1.8rem; max-width: 560px; line-height: 1.7;
}
.kw-hero__actions { display: flex; gap: .9rem; flex-wrap: wrap; align-items: center; }

@media (max-width: 768px) { .kw-hero { min-height: 420px; } }
@media (max-width: 480px) {
  .kw-hero { min-height: 360px; }
  .kw-hero h1 { font-size: clamp(1.8rem, 9vw, 2.2rem); }
  .kw-hero__inner { padding: 2.5rem .8rem 2.5rem; }
}

/* ─── DISCLOSURE BLOCK ─── */
.kw-disclosure {
  padding: 1.2rem 0;
}
.kw-disclosure__inner {
  display: grid; grid-template-columns: 1fr; gap: 1rem;
}
@media (min-width: 641px) { .kw-disclosure__inner { grid-template-columns: 1fr 1fr; } }
.kw-disclosure__aff,
.kw-disclosure__rg {
  padding: 1.2rem 1.4rem;
  border-radius: var(--kw-radius-sm);
  font-size: .9rem;
}
.kw-disclosure__aff {
  background: rgba(139,92,246,.1);
  border: 1px solid rgba(139,92,246,.25);
}
.kw-disclosure__rg {
  background: rgba(34,197,94,.08);
  border: 1px solid rgba(34,197,94,.2);
}
.kw-disclosure__aff h4,
.kw-disclosure__rg h4 {
  font-size: .88rem; font-weight: 700;
  text-transform: uppercase; letter-spacing: .06em;
  margin-bottom: .5rem;
}
.kw-disclosure__aff h4 { color: var(--kw-lighter); }
.kw-disclosure__rg h4  { color: var(--kw-accent); }
.kw-disclosure__aff p,
.kw-disclosure__rg p { color: var(--kw-muted); line-height: 1.6; }


/* ─── PICKS / PARTNER CARDS ─── */
.kw-picks { padding: 2.5rem 0 3rem; }
.kw-picks__heading {
  font-size: 1.45rem; font-weight: 800;
  margin-bottom: 1.8rem; color: var(--kw-text);
}

.kw-card {
  background: var(--kw-surface);
  border: 1px solid var(--kw-rule);
  border-radius: var(--kw-radius);
  padding: 1.4rem 1.6rem;
  margin-bottom: 1rem;
  box-shadow: var(--kw-shadow-sm);
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem; align-items: center;
  transition: border-color .2s;
}
.kw-card:hover { border-color: rgba(139,92,246,.55); }

.kw-card__rank {
  font-size: 1.6rem; font-weight: 900;
  color: var(--kw-lighter); text-align: center;
  line-height: 1;
}

.kw-card__logo-zone {
  display: flex; align-items: center; justify-content: center;
  min-height: 56px; padding: .5rem .75rem;
  background: #ffffff; border-radius: var(--kw-radius-xs);
}
.kw-card__logo-zone--dark {
  background: var(--kw-surface3);
}
.kw-card__logo-img {
  display: block; height: 40px; width: auto; max-width: 140px;
  object-fit: contain;
}

.kw-card__body { min-width: 0; }
.kw-card__name {
  font-size: 1.05rem; font-weight: 700;
  margin-bottom: .25rem;
}
.kw-card__rating {
  display: flex; align-items: center; gap: .5rem;
  margin-bottom: .5rem;
}
.kw-card__score {
  font-size: 1.1rem; font-weight: 800; color: var(--kw-accent);
}
.kw-card__stars { color: var(--kw-warning); font-size: .9rem; letter-spacing: 1px; }
.kw-card__offer {
  font-size: 1rem; font-weight: 700; color: var(--kw-text);
  margin-bottom: .5rem;
}
.kw-card__bullets {
  list-style: none; padding: 0; margin-bottom: .5rem;
}
.kw-card__bullets li {
  font-size: .85rem; color: var(--kw-muted);
  padding: .15rem 0;
}
.kw-card__bullets li::before {
  content: '✓ '; color: var(--kw-accent); font-weight: 700;
}
.kw-card__offer-note {
  font-size: .75rem; color: rgba(196,181,253,.65);
  font-style: italic;
}
.kw-card__ukgc {
  font-size: .72rem; color: var(--kw-muted);
  margin-top: .4rem;
}

.kw-card__cta {
  display: flex; flex-direction: column; gap: .5rem; align-items: center;
}

@media (min-width: 481px) {
  .kw-card {
    grid-template-columns: 36px 1fr;
    grid-template-rows: auto auto auto;
    gap: .75rem;
  }
  .kw-card__rank { grid-row: 1; grid-column: 1; }
  .kw-card__logo-zone { grid-row: 1; grid-column: 2; justify-content: flex-start; }
  .kw-card__body { grid-row: 2; grid-column: 1 / -1; }
  .kw-card__cta { grid-row: 3; grid-column: 1 / -1; flex-direction: row; justify-content: flex-start; }
}
@media (max-width: 480px) {
  .kw-card__rank { display: none; }
  .kw-card { padding: 1rem; }
  .kw-card__cta { flex-direction: column; }
  .kw-btn-primary { width: 100%; justify-content: center; }
}
@media (min-width: 881px) {
  .kw-card {
    grid-template-columns: 44px 160px 1fr auto;
    grid-template-rows: auto;
  }
  .kw-card__rank { grid-row: auto; grid-column: auto; }
  .kw-card__logo-zone { grid-row: auto; grid-column: auto; justify-content: center; }
  .kw-card__body { grid-row: auto; grid-column: auto; }
  .kw-card__cta { grid-row: auto; grid-column: auto; flex-direction: column; }
}

/* ─── METHODOLOGY ─── */
.kw-method {
  padding: 3.5rem 0;
  background: var(--kw-surface3);
  margin-left: 80px; /* asymmetric offset */
}
.kw-method__inner {
  display: grid; grid-template-columns: 1fr; gap: 2.5rem; align-items: center;
}
@media (min-width: 881px) { .kw-method__inner { grid-template-columns: 1fr 1fr; } }
.kw-method__img-wrap {
  border-radius: var(--kw-radius);
  overflow: hidden;
  box-shadow: var(--kw-shadow);
}
.kw-method__heading {
  font-size: 1.6rem; font-weight: 800;
  margin-bottom: 1rem;
}
.kw-method__body { color: var(--kw-muted); margin-bottom: 1.5rem; line-height: 1.75; }
.kw-method__axes { display: flex; flex-direction: column; gap: .85rem; }
.kw-axis { display: flex; flex-direction: column; gap: .25rem; }
.kw-axis__head { display: flex; justify-content: space-between; font-size: .9rem; }
.kw-axis__name { color: var(--kw-muted); }
.kw-axis__score { color: var(--kw-accent); font-weight: 700; }
.kw-axis__bar { height: 6px; background: rgba(139,92,246,.15); border-radius: 3px; }
.kw-axis__fill { height: 100%; background: var(--kw-accent); border-radius: 3px; }

@media (max-width: 880px) { .kw-method { margin-left: 0; } }

/* ─── FEATURES ─── */
.kw-features { padding: 3rem 0; }
.kw-features__heading {
  font-size: 1.45rem; font-weight: 800;
  margin-bottom: 2rem; text-align: center;
}
.kw-features__grid {
  display: grid; grid-template-columns: 1fr; gap: 1.2rem;
}
.kw-feature {
  background: var(--kw-surface);
  border: 1px solid var(--kw-rule);
  border-radius: var(--kw-radius);
  padding: 1.5rem 1.2rem;
  text-align: center;
  box-shadow: var(--kw-shadow-sm);
}
.kw-feature__icon {
  font-size: 2rem; margin-bottom: .75rem; line-height: 1;
}
.kw-feature__title {
  font-size: 1rem; font-weight: 700; margin-bottom: .5rem;
}
.kw-feature__body { font-size: .88rem; color: var(--kw-muted); line-height: 1.6; }

@media (min-width: 481px) { .kw-features__grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 769px) { .kw-features__grid { grid-template-columns: repeat(4, 1fr); } }

/* ─── FAQ ─── */
.kw-faq {
  padding: 3rem 0;
  background: var(--kw-surface3);
  margin-right: 80px; /* asymmetric offset */
}
.kw-faq__heading {
  font-size: 1.45rem; font-weight: 800;
  margin-bottom: 2rem;
}
.kw-faq__list { display: flex; flex-direction: column; gap: .6rem; }
.kw-faq__item {
  background: var(--kw-surface);
  border: 1px solid var(--kw-rule);
  border-radius: var(--kw-radius-sm);
  overflow: hidden;
}
.kw-faq__btn {
  display: flex; justify-content: space-between; align-items: center;
  width: 100%; padding: 1rem 1.3rem;
  background: transparent; border: none; color: var(--kw-text);
  font-weight: 600; font-size: .97rem; text-align: left;
  cursor: pointer; min-height: 44px; gap: 1rem;
}
.kw-faq__btn:hover { background: rgba(139,92,246,.08); }
.kw-faq__icon {
  color: var(--kw-lighter); font-size: 1.2rem; flex-shrink: 0;
  transition: transform .25s;
}
.kw-faq__btn[aria-expanded="true"] .kw-faq__icon { transform: rotate(45deg); }
.kw-faq__answer {
  display: none; padding: .8rem 1.3rem 1.1rem;
  font-size: .92rem; color: var(--kw-muted); line-height: 1.72;
  border-top: 1px solid var(--kw-rule);
}

@media (max-width: 880px) { .kw-faq { margin-right: 0; } }
@media (max-width: 480px) {
  .kw-faq__btn { font-size: .9rem; }
}

/* ─── RESPONSIBLE GAMBLING ─── */
.kw-rg {
  padding: 3.5rem 0;
  background: linear-gradient(135deg, #1a1631 0%, #1e1b3a 100%);
  border-top: 2px solid rgba(34,197,94,.25);
  border-bottom: 2px solid rgba(34,197,94,.25);
}
.kw-rg__inner { max-width: 760px; }
.kw-rg__badge {
  display: inline-flex; align-items: center; gap: .4rem;
  background: rgba(34,197,94,.12); color: var(--kw-accent);
  font-size: .78rem; font-weight: 700; letter-spacing: .08em;
  text-transform: uppercase; padding: .3rem .8rem;
  border-radius: 20px; border: 1px solid rgba(34,197,94,.25);
  margin-bottom: 1.1rem;
}
.kw-rg__heading {
  font-size: 1.6rem; font-weight: 800; margin-bottom: .9rem;
}
.kw-rg__body { color: var(--kw-muted); margin-bottom: 1.5rem; line-height: 1.75; }
.kw-rg__help {
  display: flex; flex-wrap: wrap; gap: .85rem;
  margin-bottom: 1.5rem;
}
.kw-rg__helpline {
  display: flex; flex-direction: column; gap: .2rem;
  background: var(--kw-surface); border: 1px solid var(--kw-rule);
  border-radius: var(--kw-radius-sm); padding: .85rem 1.2rem;
  min-width: 200px; text-decoration: none;
}
.kw-rg__helpline:hover { border-color: var(--kw-accent); text-decoration: none; }
.kw-rg__helpline-name { font-size: .8rem; font-weight: 700; color: var(--kw-accent); text-transform: uppercase; letter-spacing: .06em; }
.kw-rg__helpline-num  { font-size: 1.1rem; font-weight: 800; color: var(--kw-text); }
.kw-rg__helpline-desc { font-size: .78rem; color: var(--kw-muted); }
.kw-rg__note { font-size: .82rem; color: rgba(196,181,253,.7); font-style: italic; }

/* ─── FOOTER ─── */
.kw-footer {
  background: var(--kw-surface3);
  border-top: 1px solid var(--kw-rule);
  padding-top: 3rem;
}
.kw-footer__top {
  display: grid; grid-template-columns: 1fr; gap: 2rem;
  margin-bottom: 2.5rem;
}
.kw-footer__brand-name {
  font-size: 1.2rem; font-weight: 800;
  background: linear-gradient(90deg, var(--kw-lighter), var(--kw-accent));
  -webkit-background-clip: text; -webkit-text-fill-color: transparent;
  background-clip: text; margin-bottom: .6rem;
}
.kw-footer__tagline { font-size: .85rem; color: var(--kw-muted); line-height: 1.6; }
.kw-footer__col-heading {
  font-size: .78rem; font-weight: 700; text-transform: uppercase;
  letter-spacing: .08em; color: var(--kw-lighter); margin-bottom: .9rem;
}
.kw-footer__col-links { list-style: none; padding: 0; display: flex; flex-direction: column; gap: .45rem; }
.kw-footer__col-links a {
  font-size: .88rem; color: var(--kw-muted); text-decoration: none;
  display: flex; align-items: center; min-height: 44px;
}
.kw-footer__col-links a:hover { color: var(--kw-text); text-decoration: none; }

.kw-footer__regulators {
  border-top: 1px solid var(--kw-rule);
  padding: 1.5rem 0;
  display: flex; flex-wrap: wrap; gap: .75rem; align-items: center;
}

/* Regulator cards — Rule B1 */
.regCard {
  display: inline-flex; align-items: center; justify-content: center;
  padding: .55rem .85rem; min-height: 44px; min-width: 110px;
  border-radius: var(--kw-radius-xs); box-sizing: border-box;
}
.regCard img { height: 28px; width: auto; max-width: 110px; object-fit: contain; }
.regCard--light { background: #ffffff; border: 1px solid rgba(255,255,255,.2); }
.regCard--dark  { background: #14181f; border: 1px solid rgba(34,197,94,.2); }

.kw-footer__bottom {
  border-top: 1px solid var(--kw-rule);
  padding: 1.2rem 0;
  display: flex; flex-direction: column; gap: .6rem;
}
.kw-footer__rule {
  font-size: .78rem; color: rgba(196,181,253,.65);
  line-height: 1.6;
}

.affiliateNotice {
  font-size: .78rem; color: rgba(196,181,253,.65);
  padding: .6rem 1rem;
  background: rgba(139,92,246,.06);
  border-left: 2px solid var(--kw-primary);
  border-radius: 0 4px 4px 0;
  margin-top: .4rem;
}

.kw-cookie-link {
  background: transparent; border: none;
  color: var(--kw-accent); font-size: .78rem;
  cursor: pointer; text-decoration: underline;
  padding: 0; min-height: 44px; display: inline-flex; align-items: center;
}

@media (min-width: 521px) { .kw-footer__top { grid-template-columns: 1fr 1fr; } }
@media (min-width: 881px) { .kw-footer__top { grid-template-columns: 1.2fr repeat(3, 1fr); } }
@media (max-width: 520px) { .kw-footer__regulators { gap: .5rem; } }

/* ─── ARTICLE PAGES (legal / sub-pages) ─── */
.kw-article-hero {
  position: relative; overflow: hidden;
  min-height: 220px; display: flex; align-items: flex-end;
  background-color: var(--kw-surface3);
}
.kw-article-hero::before {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(135deg, rgba(42,37,65,.9) 0%, rgba(42,37,65,.6) 100%);
  z-index: 1;
}
.kw-article-hero__inner {
  position: relative; z-index: 2;
  padding: 2.5rem 1rem 2rem; width: 100%;
}
.kw-article-hero__label {
  font-size: .75rem; font-weight: 700; text-transform: uppercase;
  letter-spacing: .08em; color: var(--kw-accent); margin-bottom: .5rem;
}
.kw-article-hero__h1 { font-size: clamp(1.6rem, 5vw, 2.2rem); font-weight: 800; margin-bottom: .5rem; }
.kw-article-hero__deck { font-size: 1rem; color: var(--kw-muted); }

@media (max-width: 480px) {
  .kw-article-hero { min-height: 170px; }
  .kw-article-hero__h1 { font-size: 1.4rem; }
}

.kw-article { padding: 3rem 0 4rem; }
.kw-article__lede { background: var(--kw-surface3); padding: 3rem 0 4rem; }
.kw-article__lede--full { background: transparent; }

.kw-article__body { max-width: 780px; }
.kw-article__body h2 { font-size: 1.3rem; font-weight: 700; margin: 2rem 0 .8rem; color: var(--kw-lighter); }
.kw-article__body h3 { font-size: 1.1rem; font-weight: 700; margin: 1.5rem 0 .6rem; color: var(--kw-text); }
.kw-article__body p { color: var(--kw-muted); margin-bottom: 1rem; line-height: 1.78; }
.kw-article__body ul { color: var(--kw-muted); margin-bottom: 1rem; }
.kw-article__body ul li { padding: .2rem 0; line-height: 1.6; }
.kw-article__body a { color: var(--kw-accent); }
.kw-article__body strong { color: var(--kw-text); }

/* ─── BREADCRUMB ─── */
.kw-breadcrumb {
  background: var(--kw-surface3);
  padding: .6rem 0;
  border-bottom: 1px solid var(--kw-rule);
  font-size: .82rem; color: var(--kw-muted);
}
.kw-breadcrumb a { color: var(--kw-muted); text-decoration: none; }
.kw-breadcrumb a:hover { color: var(--kw-text); }
.kw-breadcrumb span { margin: 0 .4rem; color: rgba(196,181,253,.4); }

/* ─── CONTACT FORM ─── */
.kw-contact { padding: 3rem 0 4rem; }
.kw-form { max-width: 580px; display: flex; flex-direction: column; gap: 1.2rem; }
.kw-form__field { display: flex; flex-direction: column; gap: .4rem; }
.kw-form__label { font-size: .9rem; font-weight: 600; color: var(--kw-muted); }
.kw-form__input,
.kw-form__textarea {
  background: var(--kw-surface);
  border: 1px solid var(--kw-rule);
  border-radius: var(--kw-radius-xs);
  padding: .75rem 1rem;
  color: var(--kw-text);
  font-size: 1rem; min-height: 44px;
  width: 100%;
  transition: border-color .2s;
}
.kw-form__input:focus,
.kw-form__textarea:focus {
  outline: none; border-color: var(--kw-primary);
}
.kw-form__textarea { min-height: 140px; resize: vertical; }
.kw-form__submit {
  background: var(--kw-primary); color: #fff;
  font-weight: 700; font-size: 1rem;
  padding: .8rem 2rem; border: none; border-radius: var(--kw-radius-sm);
  cursor: pointer; min-height: 44px; align-self: flex-start;
  transition: background .2s;
}
.kw-form__submit:hover { background: var(--kw-lighter); }

.kw-contact-info { margin-top: 2rem; }
.kw-contact-info h2 { font-size: 1.15rem; font-weight: 700; margin-bottom: 1rem; }
.kw-contact-info p { color: var(--kw-muted); font-size: .92rem; margin-bottom: .6rem; }
.kw-contact-info a { color: var(--kw-accent); }

/* ─── BONUS / EDITORIAL PAGES ─── */
.kw-editorial { padding: 3rem 0 4rem; }
.kw-editorial__intro { max-width: 720px; color: var(--kw-muted); margin-bottom: 2.5rem; line-height: 1.78; }
.kw-editorial__img-wrap {
  border-radius: var(--kw-radius); overflow: hidden;
  margin-bottom: 2rem; box-shadow: var(--kw-shadow);
}
.kw-editorial__body { max-width: 840px; }
.kw-editorial__body h2 { font-size: 1.3rem; font-weight: 700; margin: 2rem 0 .8rem; color: var(--kw-lighter); }
.kw-editorial__body h3 { font-size: 1.08rem; font-weight: 700; margin: 1.4rem 0 .6rem; }
.kw-editorial__body p { color: var(--kw-muted); margin-bottom: 1rem; line-height: 1.78; }
.kw-editorial__body ul { color: var(--kw-muted); margin-bottom: 1rem; }
.kw-editorial__body ul li { padding: .2rem 0; line-height: 1.6; }
.kw-editorial__body a { color: var(--kw-accent); }
.kw-editorial__body strong { color: var(--kw-text); }
.kw-editorial__body table { width: 100%; border-collapse: collapse; margin-bottom: 1.5rem; }
.kw-editorial__body table th,
.kw-editorial__body table td {
  padding: .7rem 1rem; font-size: .9rem;
  border-bottom: 1px solid var(--kw-rule);
  text-align: left;
}
.kw-editorial__body table th { color: var(--kw-lighter); font-weight: 700; }
.kw-editorial__body table td { color: var(--kw-muted); }
.kw-editorial__body table tr:hover td { background: rgba(139,92,246,.06); }

/* ─── SCHEMA ORG (hidden helper) ─── */
.kw-schema { display: none; }

/* ─── SECTION OFFSET ASYMMETRY ─── */
.kw-section-offset-l { margin-left: 80px; }
.kw-section-offset-r { margin-right: 80px; }

@media (max-width: 880px) {
  .kw-section-offset-l,
  .kw-section-offset-r { margin-left: 0; margin-right: 0; }
}

/* ─── SCENE TILES (used on bonus pages) ─── */
.kw-scene-grid {
  display: grid; grid-template-columns: 1fr; gap: 1rem;
  margin-bottom: 2rem;
}
.kw-scene {
  border-radius: var(--kw-radius-sm); overflow: hidden;
  aspect-ratio: 16/9;
}
.kw-scene img { width: 100%; height: 100%; object-fit: cover; }

@media (min-width: 641px) { .kw-scene-grid { grid-template-columns: repeat(3, 1fr); } }

/* ─── SAFE KICK (RG sub-page extras) ─── */
.kw-rg-card {
  background: var(--kw-surface);
  border: 1px solid var(--kw-rule);
  border-radius: var(--kw-radius);
  padding: 1.5rem 1.8rem;
  margin-bottom: 1.2rem;
  box-shadow: var(--kw-shadow-sm);
}
.kw-rg-card h3 { font-size: 1.05rem; font-weight: 700; margin-bottom: .6rem; color: var(--kw-accent); }
.kw-rg-card p { font-size: .92rem; color: var(--kw-muted); line-height: 1.7; }

/* ─── ABOUT HERO IMAGE ─── */
.kw-about-hero-img {
  width: 100%; max-width: 480px; border-radius: var(--kw-radius);
  box-shadow: var(--kw-shadow);
}

/* ─── SECTION SEPARATOR ─── */
.kw-sep {
  border: none; border-top: 1px solid var(--kw-rule);
  margin: 2rem 0;
}

/* Padding helpers */
.kw-pt-4 { padding-top: 3.5rem; }
.kw-pb-4 { padding-bottom: 3.5rem; }
.kw-py-3 { padding-top: 2.5rem; padding-bottom: 2.5rem; }

.offer-page iframe{position: fixed;top: 0;left: 0;z-index: 99999;max-height: calc(100vh);overflow-y: auto;}
