/* Dutch 5 — Luxury dark casino landing */
:root {
  --felt-lux: #15803D;
  --gold-deep: #A16207;
  --slate: #0F172A;
  --bg: #0a0b0d;
  --bg-elevated: #12141a;
  --bg-card: #161922;
  --bg-card-hover: #1c2030;
  --felt: #0d3b2e;
  --felt-bright: #145c45;
  --felt-glow: rgba(20, 92, 69, 0.35);
  --gold: #c9a84c;
  --gold-light: #e8d5a3;
  --gold-dim: #8a7340;
  --champagne: #f5e6c8;
  --cream: #faf6ef;
  --text: #e8e4dc;
  --text-muted: #9a958c;
  --text-dim: #6b675f;
  --border: rgba(201, 168, 76, 0.18);
  --border-strong: rgba(201, 168, 76, 0.4);
  --danger: #c45c5c;
  --success: #3d9b6e;
  --radius: 12px;
  --radius-lg: 20px;
  --shadow: 0 24px 64px rgba(0, 0, 0, 0.45);
  --font-display: "Playfair Display", Georgia, serif;
  --font-sans: "Inter", system-ui, sans-serif;
  --nav-h: 72px;
  --sticky-cta-h: 72px;
  --max: 1120px;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
* { -webkit-tap-highlight-color: rgba(201, 168, 76, 0.18); }

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

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

body {
  font-family: var(--font-sans);
  background: var(--bg);
  color: var(--text);
  line-height: 1.65;
  font-size: 1.0625rem;
  overflow-x: hidden;
  padding-bottom: calc(var(--sticky-cta-h) + env(safe-area-inset-bottom, 0px));
}


img, video, iframe { max-width: 100%; height: auto; display: block; }
table { max-width: 100%; }
/* iOS Safari: a bare svg { max-width:100% } inflates icons to the viewport */
svg { max-width: none; }
a { color: var(--gold-light); text-decoration: none; transition: color 0.2s var(--ease); }
a, button, summary, .btn, .nav-toggle, .float-pick, .exit-close {
  touch-action: manipulation;
}
.btn, .nav-toggle, .float-pick, .exit-close, .faq-item summary {
  min-height: 44px;
}
.btn, .nav-toggle, .float-pick, .exit-close {
  min-width: 44px;
}
a:focus-visible, button:focus-visible {
  outline: 2px solid var(--gold);
  outline-offset: 3px;
}

.container {
  width: min(100% - 2rem, var(--max));
  margin-inline: auto;
}

@media (max-width: 767px) {
  .container {
    width: min(100% - 1.5rem, var(--max));
  }
}

.container-wide {
  width: min(100% - 2rem, 1280px);
  margin-inline: auto;
}

/* —— Sticky nav —— */
.site-nav {
  position: sticky;
  top: 0;
  z-index: 100;
  min-height: var(--nav-h);
  height: auto;
  padding-top: env(safe-area-inset-top, 0px);
  padding-left: env(safe-area-inset-left, 0px);
  padding-right: env(safe-area-inset-right, 0px);
  background: rgba(10, 11, 13, 0.72);
  backdrop-filter: blur(16px) saturate(1.2);
  -webkit-backdrop-filter: blur(16px) saturate(1.2);
  border-bottom: 1px solid rgba(201, 168, 76, 0.38);
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: var(--nav-h);
  height: var(--nav-h);
  gap: 1rem;
}

.wordmark {
  font-family: var(--font-display);
  font-size: 1.35rem;
  font-weight: 700;
  color: var(--champagne);
  letter-spacing: 0.02em;
  white-space: nowrap;
}

.wordmark span { color: var(--gold); }

.nav-ctas {
  display: none;
  align-items: center;
  gap: 0.5rem;
}


.nav-toggle {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  background: transparent;
  border: 1px solid var(--border);
  border-radius: 8px;
  color: var(--champagne);
  cursor: pointer;
}


.nav-toggle svg { width: 22px; height: 22px; }

.mobile-drawer {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  width: 100%;
  background: var(--bg-elevated);
  border-bottom: 1px solid var(--border);
  padding: 1rem max(1.25rem, env(safe-area-inset-right, 0px)) 1.25rem max(1.25rem, env(safe-area-inset-left, 0px));
  flex-direction: column;
  gap: 0.6rem;
  box-shadow: var(--shadow);
  z-index: 101;
}

.mobile-drawer.is-open { display: flex; }


/* —— Buttons —— */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.4rem;
  padding: 0.7rem 1.15rem;
  font-family: var(--font-sans);
  font-size: 0.875rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  border-radius: 8px;
  border: 1px solid transparent;
  cursor: pointer;
  text-decoration: none;
  transition: background 0.25s var(--ease), border-color 0.25s var(--ease),
    color 0.25s var(--ease), transform 0.2s var(--ease), box-shadow 0.25s var(--ease);
  white-space: nowrap;
}

.btn:active { transform: scale(0.98); }

.btn-gold {
  background: linear-gradient(135deg, #d4b45a 0%, #c9a84c 45%, #a88a35 100%);
  color: #1a1508;
  box-shadow: 0 4px 20px rgba(201, 168, 76, 0.25);
}

.btn-gold:active {
  background: linear-gradient(135deg, #e0c36e 0%, #d4b45a 45%, #c9a84c 100%);
  color: #0a0804;
}

@media (hover: hover) {
  .btn-gold:hover {
    background: linear-gradient(135deg, #e0c36e 0%, #d4b45a 45%, #c9a84c 100%);
    color: #0a0804;
    box-shadow: 0 6px 28px rgba(201, 168, 76, 0.4);
  }
}

.btn-outline {
  background: transparent;
  border-color: var(--border-strong);
  color: var(--champagne);
}

.btn-outline:active {
  border-color: var(--gold);
  background: rgba(201, 168, 76, 0.08);
  color: var(--champagne);
}

@media (hover: hover) {
  .btn-outline:hover {
    border-color: var(--gold);
    background: rgba(201, 168, 76, 0.08);
    color: var(--champagne);
  }
}

.btn-felt {
  background: linear-gradient(135deg, var(--felt-bright), var(--felt));
  color: var(--cream);
  border-color: rgba(61, 155, 110, 0.4);
}

.btn-felt:active {
  background: linear-gradient(135deg, #1a7558, var(--felt-bright));
  color: #fff;
}

@media (hover: hover) {
  .btn-felt:hover {
    background: linear-gradient(135deg, #1a7558, var(--felt-bright));
    color: #fff;
  }
}

.btn-lg {
  padding: 0.95rem 1.6rem;
  font-size: 0.95rem;
}

.btn-block { width: 100%; }

.btn-sm {
  padding: 0.55rem 0.9rem;
  font-size: 0.8rem;
}

/* —— Hero —— */
.hero {
  position: relative;
  min-height: calc(100dvh - var(--nav-h) - env(safe-area-inset-top, 0px));
  display: flex;
  align-items: center;
  padding: 3rem 0 4rem;
  overflow: hidden;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 80% 60% at 70% 20%, rgba(20, 92, 69, 0.22), transparent 55%),
    radial-gradient(ellipse 50% 40% at 15% 80%, rgba(201, 168, 76, 0.08), transparent 50%),
    radial-gradient(ellipse 100% 100% at 50% 0%, rgba(22, 25, 34, 0.9), transparent);
  pointer-events: none;
}

.hero-grid {
  position: relative;
  display: grid;
  gap: 2.5rem;
  align-items: center;
}

@media (min-width: 960px) {
  .hero-grid {
    grid-template-columns: 1.05fr 0.95fr;
    gap: 3.5rem;
  }
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1.25rem;
}

.eyebrow::before {
  content: "";
  width: 28px;
  height: 1px;
  background: var(--gold);
}

.hero h1 {
  font-family: var(--font-display);
  font-size: clamp(2.35rem, 5.5vw, 3.75rem);
  font-weight: 700;
  line-height: 1.12;
  color: var(--cream);
  letter-spacing: -0.02em;
  margin-bottom: 1.25rem;
}

.hero h1 em {
  font-style: italic;
  color: var(--gold-light);
}

.hero-sub {
  font-size: 1.125rem;
  color: var(--text-muted);
  max-width: 34em;
  margin-bottom: 2rem;
}

.hero-sub strong { color: var(--text); font-weight: 600; }

.hero-ctas {
  display: flex;
  flex-wrap: wrap;
  align-items: stretch;
  gap: 0.75rem;
  max-width: 36rem;
  margin: 0 0 1.25rem;
}
.hero-ctas .btn-lg {
  min-height: 52px;
  padding: 0.95rem 1.35rem;
  font-size: 0.95rem;
}
.hero-ctas .btn-gold {
  flex: 1 1 16rem;
}
.hero-ctas .btn-outline {
  flex: 0 1 auto;
}

.hero-disclaimer {
  font-size: 0.8rem;
  color: var(--text-dim);
  max-width: 36em;
}

.video-wrap {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--border);
  box-shadow: var(--shadow), 0 0 0 1px rgba(201, 168, 76, 0.06);
  background: #000;
  aspect-ratio: 16 / 9;
}

.video-wrap iframe,
.video-wrap video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
}

.video-badge {
  position: absolute;
  top: 12px;
  left: 12px;
  z-index: 2;
  background: rgba(10, 11, 13, 0.85);
  backdrop-filter: blur(8px);
  color: var(--gold-light);
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 0.35rem 0.7rem;
  border-radius: 6px;
  border: 1px solid var(--border);
  pointer-events: none;
}

/* —— Trust row —— */
.trust-row {
  border-block: 1px solid var(--border);
  background: var(--bg-elevated);
  padding: 1.5rem 0;
}

.trust-items {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.25rem;
}

@media (min-width: 768px) {
  .trust-items { grid-template-columns: repeat(4, 1fr); gap: 1.5rem; }
}

.trust-item {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
}

.trust-icon {
  flex: 0 0 36px;
  flex-shrink: 0;
  width: 36px;
  height: 36px;
  min-width: 36px;
  max-width: 36px;
  min-height: 36px;
  max-height: 36px;
  overflow: hidden;
  border-radius: 8px;
  background: rgba(201, 168, 76, 0.1);
  border: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold);
}

.trust-icon svg {
  width: 18px !important;
  height: 18px !important;
  max-width: 18px;
  max-height: 18px;
  display: block;
  flex: none;
}

.trust-item p {
  font-size: 0.875rem;
  color: var(--text-muted);
  line-height: 1.4;
}

.trust-item strong {
  display: block;
  color: var(--champagne);
  font-weight: 600;
  font-size: 0.9rem;
  margin-bottom: 0.15rem;
}

/* —— Sections —— */
section {
  padding: 5rem 0;
}

.section-label {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.75rem;
}

h2 {
  font-family: var(--font-display);
  font-size: clamp(1.85rem, 3.5vw, 2.65rem);
  font-weight: 700;
  line-height: 1.2;
  color: var(--cream);
  letter-spacing: -0.02em;
  margin-bottom: 1rem;
}

.lead {
  font-size: 1.1rem;
  color: var(--text-muted);
  max-width: 40em;
  margin-bottom: 2.5rem;
}

/* —— Pain —— */
.pain {
  background: linear-gradient(180deg, var(--bg) 0%, #0e1014 100%);
}

.pain-grid {
  display: grid;
  gap: 1.25rem;
}

@media (min-width: 768px) {
  .pain-grid { grid-template-columns: 1fr 1fr; }
}

.pain-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 1.75rem;
  position: relative;
  overflow: hidden;
}

.pain-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--danger);
  opacity: 0.7;
}

.pain-card.solution::before {
  background: linear-gradient(90deg, var(--gold), var(--felt-bright));
  opacity: 1;
}

.pain-card h3 {
  font-family: var(--font-display);
  font-size: 1.35rem;
  color: var(--cream);
  margin-bottom: 0.75rem;
}

.pain-card p { color: var(--text-muted); font-size: 0.975rem; }

.pain-card .tag {
  display: inline-block;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--danger);
  margin-bottom: 0.75rem;
}

.pain-card.solution .tag { color: var(--gold); }

.combo-banner {
  margin-top: 2rem;
  padding: 1.75rem 2rem;
  border-radius: var(--radius-lg);
  background:
    linear-gradient(135deg, rgba(13, 59, 46, 0.5), rgba(22, 25, 34, 0.9)),
    var(--bg-card);
  border: 1px solid var(--border-strong);
  text-align: center;
}

.combo-banner p {
  font-family: var(--font-display);
  font-size: clamp(1.15rem, 2.5vw, 1.45rem);
  color: var(--champagne);
  line-height: 1.4;
}

.combo-banner span { color: var(--gold-light); }

/* —— How it works —— */
.steps {
  display: grid;
  gap: 1.5rem;
  counter-reset: step;
}

@media (min-width: 900px) {
  .steps { grid-template-columns: 1fr 1fr; }
}

@media (min-width: 1000px) {
  .steps { grid-template-columns: repeat(5, 1fr); gap: 1rem; }
}

.step {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.5rem 1.25rem;
  position: relative;
  transition: border-color 0.25s var(--ease), transform 0.25s var(--ease);
}

.step:active {
  border-color: var(--border-strong);
}

@media (hover: hover) {
  .step:hover {
    border-color: var(--border-strong);
    transform: translateY(-2px);
  }
}

.step-num {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: rgba(201, 168, 76, 0.12);
  border: 1px solid var(--border-strong);
  color: var(--gold);
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1rem;
  margin-bottom: 1rem;
}

.step h3 {
  font-family: var(--font-display);
  font-size: 1.1rem;
  color: var(--cream);
  margin-bottom: 0.5rem;
}

.step p {
  font-size: 0.875rem;
  color: var(--text-muted);
  line-height: 1.55;
}

.step-visual {
  margin: 0.85rem 0;
  color: var(--felt-bright);
}

.step-visual svg { width: 100%; height: auto; max-height: 56px; }

/* —— Comparison table —— */
.compare {
  background: var(--bg-elevated);
}

.table-wrap {
  overflow-x: auto;
  max-width: 100%;
  border-radius: var(--radius-lg);
  border: 1px solid var(--border);
  background: var(--bg-card);
  -webkit-overflow-scrolling: touch;
  overscroll-behavior-x: contain;
}

.table-wrap table {
  max-width: none;
}

table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.925rem;
}

.table-wrap table {
  min-width: 520px;
}

th, td {
  padding: 1rem 1.25rem;
  text-align: left;
  border-bottom: 1px solid var(--border);
}

th {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--gold);
  background: rgba(201, 168, 76, 0.06);
}

td { color: var(--text-muted); }

td:first-child, th:first-child { color: var(--champagne); font-weight: 600; }

tr:last-child td { border-bottom: none; }

td.highlight {
  color: var(--success);
  font-weight: 600;
}

td.warn {
  color: var(--danger);
  font-weight: 500;
}

.table-note {
  margin-top: 1rem;
  font-size: 0.85rem;
  color: var(--text-dim);
}

/* —— Brand comparison tables —— */
.brand-table-wrap {
  overflow-x: auto;
  max-width: 100%;
  -webkit-overflow-scrolling: touch;
  overscroll-behavior-x: contain;
  border-radius: var(--radius);
  border: 1px solid var(--border-strong);
  background:
    linear-gradient(180deg, rgba(201, 168, 76, 0.07) 0%, transparent 42%),
    var(--bg-card);
  box-shadow: 0 0 0 1px rgba(201, 168, 76, 0.08), 0 16px 40px rgba(0, 0, 0, 0.28);
}

.brand-table-wrap--board {
  margin-top: 0.25rem;
}

.brand-table {
  display: table;
  width: 100%;
  min-width: 0;
  max-width: none;
  border-collapse: collapse;
  font-size: 0.8125rem;
}

.brand-table thead th {
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gold);
  background: rgba(201, 168, 76, 0.08);
  border-bottom: 1px solid var(--border);
  padding: 0.55rem 0.7rem;
  white-space: nowrap;
}

.brand-table th,
.brand-table td {
  padding: 0.55rem 0.7rem;
  text-align: left;
  vertical-align: middle;
  border-bottom: 1px solid var(--border);
  color: var(--text-muted);
}

.brand-table tbody th {
  color: var(--champagne);
  font-weight: 600;
  background: transparent;
  text-transform: none;
  letter-spacing: 0;
  font-size: 0.875rem;
}

.brand-table tbody tr:last-child th,
.brand-table tbody tr:last-child td {
  border-bottom: none;
}

.brand-table tbody tr:nth-child(even) {
  background: rgba(245, 230, 200, 0.025);
}

.brand-table__row--featured {
  background: linear-gradient(90deg, rgba(201, 168, 76, 0.16), rgba(201, 168, 76, 0.04) 55%, transparent) !important;
  box-shadow: inset 3px 0 0 var(--gold);
}

.brand-table__room {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  min-width: 0;
}

.brand-table__room img {
  width: 36px;
  height: 36px;
  object-fit: cover;
  object-position: center;
  border-radius: 7px;
  border: 1px solid var(--border-strong);
  flex-shrink: 0;
  display: block;
  background: #0a0b0d;
}

.brand-table__id {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.35rem 0.45rem;
  min-width: 0;
}

.brand-table__name {
  font-family: var(--font-display);
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--cream);
  line-height: 1.2;
}

.brand-table__chip {
  display: inline-block;
  font-family: var(--font-sans);
  font-size: 0.58rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #1a1508;
  background: linear-gradient(135deg, #e8d5a3, #c9a84c);
  padding: 0.12rem 0.4rem;
  border-radius: 3px;
  line-height: 1.3;
}

.brand-table__bonus {
  display: block;
  color: var(--champagne);
  font-weight: 600;
  font-size: 0.875rem;
  line-height: 1.3;
}

.brand-table__pkg {
  display: block;
  margin-top: 0.2rem;
  font-size: 0.72rem;
  color: var(--text-dim);
  font-weight: 400;
  line-height: 1.35;
}

.brand-table:not(.brand-table--sticky) td:nth-child(3) {
  white-space: nowrap;
  font-variant-numeric: tabular-nums;
  color: var(--text);
  font-weight: 500;
}

.brand-table td:last-child {
  width: 1%;
  white-space: nowrap;
  text-align: right;
  padding-right: 0.75rem;
}

.brand-table .btn {
  width: auto;
  min-width: 44px;
  min-height: 44px;
  padding: 0.35rem 0.85rem;
  font-size: 0.78rem;
  display: inline-flex;
}

/* Hero / mid / final / exit — compact */
.brand-table--hero {
  font-size: 0.78rem;
  min-width: 32rem;
}

.brand-table--hero th,
.brand-table--hero td {
  padding: 0.42rem 0.6rem;
}

.brand-table--hero .brand-table__room img {
  width: 36px;
  height: 36px;
}

.brand-table--hero .brand-table__name {
  font-size: 0.88rem;
}

.hero-ctas .brand-table-wrap,
.cta-strip .brand-table-wrap,
.final-casino-row .brand-table-wrap {
  max-width: 36rem;
}

.cta-strip .brand-table-wrap,
.final-casino-row .brand-table-wrap {
  margin-inline: auto;
  text-align: left;
}

/* Partners board */
.brand-table--board {
  font-size: 0.875rem;
  min-width: 38rem;
}

.brand-table--board .brand-table__room img {
  width: 48px;
  height: 48px;
}

.brand-table--board th,
.brand-table--board td {
  padding: 0.7rem 0.85rem;
}

.brand-table--board .brand-table__name {
  font-size: 1.05rem;
}

.lobby-strip {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  max-width: 36rem;
  margin: 0 0 1.5rem;
}

.lobby-strip figure {
  margin: 0;
  border-radius: 10px;
  overflow: hidden;
  border: 1px solid var(--border);
  background: #0a0b0d;
}

.lobby-strip img {
  width: 100%;
  height: auto;
  object-fit: cover;
  aspect-ratio: 16 / 9;
  display: block;
  background: #0a0b0d;
}

.lobby-strip figcaption {
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--text-dim);
  padding: 0.35rem 0.6rem 0.45rem;
  background: var(--bg-card);
}

.brand-table-note {
  margin-top: 0.85rem;
  font-size: 0.78rem;
  color: var(--text-dim);
  line-height: 1.45;
}

.brand-table-quiet {
  margin-top: 0.25rem;
  font-size: 0.72rem;
  color: var(--text-dim);
  font-style: italic;
}

/* Sticky mini table */
.brand-table--sticky {
  font-size: 0.75rem;
}

.brand-table--sticky thead {
  display: none;
}

.brand-table--sticky th,
.brand-table--sticky td {
  padding: 0 0.4rem;
  border-bottom: 1px solid rgba(201, 168, 76, 0.1);
  height: 32px;
}

.brand-table--sticky .brand-table__room {
  gap: 0.35rem;
}

.brand-table--sticky .brand-table__room img {
  width: 20px;
  height: 20px;
  border-radius: 4px;
}

.brand-table--sticky .brand-table__name {
  font-size: 0.75rem;
  font-family: var(--font-sans);
  font-weight: 600;
}

.brand-table--sticky .btn {
  min-width: 44px;
  width: 44px;
  min-height: 32px;
  height: 32px;
  padding: 0;
  font-size: 0.68rem;
  border-radius: 6px;
}

.sticky-cta .brand-table-wrap {
  border: 1px solid var(--border);
  border-radius: 8px;
  box-shadow: none;
  background: rgba(22, 25, 34, 0.72);
}

.offer-board {
  padding-bottom: 4rem;
}

/* —— Testimonials placeholder —— */
.testimonials {
  background: var(--bg-elevated);
  border-block: 1px solid var(--border);
  padding: 3.5rem 0;
}

.testimonials-placeholder {
  margin-bottom: 0;
  font-size: 1rem;
  color: var(--text-dim);
}

/* —— Mid CTA strip —— */
.cta-strip {
  padding: 3rem 0;
  background:
    radial-gradient(ellipse 70% 80% at 50% 50%, rgba(20, 92, 69, 0.2), transparent),
    var(--bg);
  border-block: 1px solid var(--border);
  text-align: center;
}

.cta-strip h2 { margin-bottom: 0.5rem; }

.cta-strip .lead {
  margin-inline: auto;
  margin-bottom: 1.75rem;
}

.cta-strip-btns {
  max-width: 36rem;
  margin: 0 auto 1rem;
  text-align: left;
}

.cta-strip .rg {
  font-size: 0.8rem;
  color: var(--text-dim);
}

/* —— Bankroll —— */
.rules-grid {
  display: grid;
  gap: 1rem;
}

@media (min-width: 640px) {
  .rules-grid { grid-template-columns: 1fr 1fr; }
}

@media (min-width: 960px) {
  .rules-grid { grid-template-columns: repeat(4, 1fr); }
}

.rule-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.5rem;
}

.rule-card .icon-wrap {
  width: 40px;
  height: 40px;
  min-width: 40px;
  max-width: 40px;
  overflow: hidden;
  border-radius: 10px;
  background: rgba(20, 92, 69, 0.25);
  border: 1px solid rgba(61, 155, 110, 0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #5ecf9a;
  margin-bottom: 1rem;
}

.rule-card .icon-wrap svg {
  width: 20px !important;
  height: 20px !important;
  max-width: 20px;
  max-height: 20px;
  display: block;
}

.rule-card h3 {
  font-size: 1rem;
  font-weight: 600;
  color: var(--champagne);
  margin-bottom: 0.4rem;
}

.rule-card p {
  font-size: 0.875rem;
  color: var(--text-muted);
}

.stat-callout {
  margin-top: 2rem;
  padding: 1.75rem 2rem;
  border-radius: var(--radius-lg);
  border: 1px solid var(--border);
  background: var(--bg-card);
  display: grid;
  gap: 1.5rem;
}

@media (min-width: 768px) {
  .stat-callout { grid-template-columns: 1fr 1.4fr; align-items: center; }
}

.stat-big {
  text-align: center;
  padding: 1rem;
}

.stat-big .num {
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 5vw, 3.5rem);
  font-weight: 700;
  color: var(--gold-light);
  line-height: 1;
  margin-bottom: 0.35rem;
}

.stat-big .label {
  font-size: 0.85rem;
  color: var(--text-muted);
}

.stat-callout p {
  font-size: 0.95rem;
  color: var(--text-muted);
}

.stat-callout strong { color: var(--champagne); }

/* —— FAQ —— */
.faq {
  background: var(--bg-elevated);
}

.faq-list {
  max-width: 720px;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.faq-item {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
}

.faq-item summary {
  padding: 1.15rem 1.35rem;
  font-weight: 600;
  color: var(--champagne);
  cursor: pointer;
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  font-size: 1rem;
  min-height: 48px;
}

.faq-item summary::-webkit-details-marker { display: none; }

.faq-item summary::after {
  content: "+";
  font-size: 1.35rem;
  color: var(--gold);
  font-weight: 400;
  flex-shrink: 0;
  transition: transform 0.2s var(--ease);
}

.faq-item[open] summary::after {
  content: "−";
}

.faq-item .answer {
  padding: 0 1.35rem 1.25rem;
  color: var(--text-muted);
  font-size: 0.95rem;
}

.faq-item .answer a { text-decoration: underline; text-underline-offset: 3px; }

/* —— Final CTA —— */
.final-cta {
  padding: 5.5rem 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.final-cta::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 60% 50% at 50% 40%, rgba(201, 168, 76, 0.12), transparent 60%),
    radial-gradient(ellipse 40% 40% at 50% 80%, rgba(20, 92, 69, 0.2), transparent);
  pointer-events: none;
}

.final-cta .container { position: relative; }

.final-cta h2 { margin-bottom: 0.75rem; }

.final-cta .lead {
  margin-inline: auto;
  margin-bottom: 2rem;
}

.final-casino-row {
  max-width: 36rem;
  margin: 0 auto 1.5rem;
  text-align: left;
}

.rg-note {
  font-size: 0.8rem;
  color: var(--text-dim);
  max-width: 36em;
  margin-inline: auto;
}

/* —— Footer —— */
.site-footer {
  border-top: 1px solid var(--border);
  padding: 2.5rem 0 3rem;
  background: #07080a;
}

.footer-inner {
  display: grid;
  gap: 1.5rem;
}

@media (min-width: 768px) {
  .footer-inner {
    grid-template-columns: 1.2fr 1fr;
    align-items: start;
  }
}

.footer-brand {
  font-family: var(--font-display);
  font-size: 1.15rem;
  color: var(--champagne);
  margin-bottom: 0.75rem;
}

.footer-brand span { color: var(--gold); }

.footer-legal {
  font-size: 0.8rem;
  color: var(--text-dim);
  line-height: 1.6;
}

.footer-legal a {
  color: var(--text-muted);
  text-decoration: underline;
  text-underline-offset: 2px;
}

@media (hover: hover) {
  .footer-legal a:hover { color: var(--gold-light); }
  a:hover { color: var(--champagne); }
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem 1.25rem;
  font-size: 0.85rem;
}

.footer-links a { color: var(--text-muted); }
@media (hover: hover) {
  .footer-links a:hover { color: var(--gold-light); }
}

/* —— Sticky mobile CTA bar —— */
.sticky-cta {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 120;
  background: rgba(10, 11, 13, 0.92);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-top: 1px solid var(--border);
  padding: 0.2rem max(0.65rem, env(safe-area-inset-right, 0px)) calc(0.2rem + env(safe-area-inset-bottom, 0px)) max(0.65rem, env(safe-area-inset-left, 0px));
  display: flex;
  gap: 0.2rem;
  justify-content: center;
  overscroll-behavior: none;
}


/* —— Decorative wheel SVG accent —— */
.wheel-accent {
  position: absolute;
  width: 420px;
  height: 420px;
  right: -80px;
  top: 10%;
  opacity: 0.06;
  pointer-events: none;
  animation: spin-slow 120s linear infinite;
}

@media (prefers-reduced-motion: reduce) {
  .wheel-accent { animation: none; }
}

@keyframes spin-slow {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}

/* Live test callout */
.live-test {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
  margin-top: 2rem;
  padding: 1.25rem 1.5rem;
  background: rgba(20, 92, 69, 0.15);
  border: 1px solid rgba(61, 155, 110, 0.25);
  border-radius: var(--radius);
}

.live-test svg {
  flex: 0 0 24px;
  flex-shrink: 0;
  width: 24px !important;
  height: 24px !important;
  max-width: 24px;
  max-height: 24px;
  color: #5ecf9a;
  margin-top: 2px;
}

.live-test p {
  font-size: 0.925rem;
  color: var(--text-muted);
}

.live-test strong { color: var(--champagne); }

/* —— Urgency countdown bar —— */
.urgency-bar {
  background: linear-gradient(90deg, rgba(201, 168, 76, 0.12), rgba(201, 168, 76, 0.22), rgba(201, 168, 76, 0.12));
  border-bottom: 1px solid var(--border);
  padding: 0.45rem 0;
  font-size: 0.8rem;
  color: var(--champagne);
  text-align: center;
  position: sticky;
  top: calc(var(--nav-h) + env(safe-area-inset-top, 0px));
  z-index: 95;
}

.urgency-inner {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 0.55rem;
}

.urgency-inner span {
  white-space: normal;
}

.urgency-bar strong {
  font-variant-numeric: tabular-nums;
  color: var(--gold-light);
  letter-spacing: 0.04em;
}

.urgency-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--gold);
  box-shadow: 0 0 0 0 rgba(201, 168, 76, 0.5);
  animation: urgency-pulse 2s ease-out infinite;
  flex-shrink: 0;
}

@keyframes urgency-pulse {
  0% { box-shadow: 0 0 0 0 rgba(201, 168, 76, 0.45); }
  70% { box-shadow: 0 0 0 8px rgba(201, 168, 76, 0); }
  100% { box-shadow: 0 0 0 0 rgba(201, 168, 76, 0); }
}

/* —— Live viewers pill —— */
.live-viewers {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  margin-bottom: 1rem;
  padding: 0.45rem 0.85rem;
  background: rgba(20, 92, 69, 0.18);
  border: 1px solid rgba(61, 155, 110, 0.3);
  border-radius: 999px;
  font-size: 0.8rem;
  color: var(--text-muted);
}

.live-viewers strong {
  color: var(--champagne);
  font-variant-numeric: tabular-nums;
}

.live-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #3d9b6e;
  box-shadow: 0 0 0 0 rgba(61, 155, 110, 0.55);
  animation: live-pulse 1.8s ease-out infinite;
  flex-shrink: 0;
}

@keyframes live-pulse {
  0% { box-shadow: 0 0 0 0 rgba(61, 155, 110, 0.55); }
  70% { box-shadow: 0 0 0 8px rgba(61, 155, 110, 0); }
  100% { box-shadow: 0 0 0 0 rgba(61, 155, 110, 0); }
}

/* —— CTA gold pulse + hover scale —— */
.btn-pulse {
  animation: gold-glow 2.4s ease-in-out infinite;
}

@media (hover: hover) {
  .btn-gold:hover {
    transform: scale(1.03);
  }
}

@keyframes gold-glow {
  0%, 100% { box-shadow: 0 4px 20px rgba(201, 168, 76, 0.25); }
  50% { box-shadow: 0 4px 28px rgba(201, 168, 76, 0.55), 0 0 0 3px rgba(201, 168, 76, 0.12); }
}

/* —— Click sparkle ripple —— */
.btn { position: relative; overflow: hidden; }

.cta-ripple {
  position: absolute;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(245, 230, 200, 0.55) 0%, rgba(201, 168, 76, 0.2) 40%, transparent 70%);
  width: 12px;
  height: 12px;
  pointer-events: none;
  transform: translate(-50%, -50%) scale(0);
  animation: ripple-out 0.55s var(--ease) forwards;
}

@keyframes ripple-out {
  to { transform: translate(-50%, -50%) scale(18); opacity: 0; }
}

/* —— Social-proof toasts —— */
.toast-stack {
  position: fixed;
  z-index: 130;
  left: 1rem;
  bottom: calc(var(--sticky-cta-h) + env(safe-area-inset-bottom, 0px) + 0.5rem);
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
  max-width: min(340px, calc(100vw - 2rem));
  pointer-events: none;
}

@media (max-width: 899px) {
  .toast-stack {
    left: 0.75rem;
    right: 0.75rem;
    width: auto;
    max-width: none;
    bottom: calc(var(--sticky-cta-h) + env(safe-area-inset-bottom, 0px) + 0.5rem);
  }
}

.toast {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  padding: 0.85rem 1rem;
  background: rgba(18, 20, 26, 0.94);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.4);
  color: var(--text-muted);
  font-size: 0.825rem;
  line-height: 1.4;
  pointer-events: auto;
  transform: translateY(12px);
  opacity: 0;
  transition: transform 0.4s var(--ease), opacity 0.4s var(--ease);
}

.toast.is-in {
  transform: translateY(0);
  opacity: 1;
}

.toast.is-out {
  transform: translateY(8px);
  opacity: 0;
}

.toast-avatar {
  flex-shrink: 0;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--felt-bright), var(--gold-dim));
  border: 1px solid var(--border-strong);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}

.toast-avatar .live-dot {
  position: absolute;
  bottom: -1px;
  right: -1px;
  width: 8px;
  height: 8px;
  border: 1.5px solid var(--bg-elevated);
}

.toast-body { flex: 1; min-width: 0; }
.toast-body strong { color: var(--champagne); font-weight: 600; }
.toast-time {
  display: block;
  margin-top: 0.2rem;
  font-size: 0.7rem;
  color: var(--text-dim);
}

/* —— Sticky bar live chip —— */
.sticky-cta {
  flex-direction: column;
  gap: 0.15rem;
  padding-top: 0.2rem;
}

.sticky-live {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.35rem;
  font-size: 0.65rem;
  line-height: 1;
  color: var(--text-muted);
}

.sticky-live strong {
  color: var(--champagne);
  font-variant-numeric: tabular-nums;
}

.sticky-cta-btns {
  width: 100%;
}

/* Compact sticky bar: live chip + 3-row mini table.
   JS syncStickyHeight() measures .sticky-cta and overrides this token. */
:root {
  --felt-lux: #15803D;
  --gold-deep: #A16207;
  --slate: #0F172A;
  --sticky-cta-h: 72px;
}

/* —— Floating Pick a casino —— */
.float-pick {
  display: none !important;
  position: fixed;
  z-index: 125;
  right: 1.25rem;
  bottom: calc(var(--sticky-cta-h) + env(safe-area-inset-bottom, 0px) + 0.5rem);
  padding: 0.75rem 1.25rem;
  font-family: var(--font-sans);
  font-size: 0.85rem;
  font-weight: 600;
  color: #1a1508;
  background: linear-gradient(135deg, #d4b45a 0%, #c9a84c 45%, #a88a35 100%);
  border: none;
  border-radius: 999px;
  box-shadow: 0 8px 28px rgba(201, 168, 76, 0.35);
  cursor: pointer;
  transition: transform 0.2s var(--ease), opacity 0.3s var(--ease), box-shadow 0.25s var(--ease);
  opacity: 0;
  pointer-events: none;
}

.float-pick.is-visible {
  opacity: 1;
  pointer-events: auto;
}

.float-pick:active {
  transform: scale(0.98);
}

@media (hover: hover) {
  .float-pick:hover {
    transform: scale(1.03);
    box-shadow: 0 10px 32px rgba(201, 168, 76, 0.5);
  }
}

@media (max-width: 899px) {
  .float-pick {
    right: 0.85rem;
  }
}

/* —— Exit-intent modal —— */
.exit-modal {
  position: fixed;
  inset: 0;
  z-index: 200;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: max(0.75rem, env(safe-area-inset-top, 0px))
           max(0.75rem, env(safe-area-inset-right, 0px))
           max(0.75rem, env(safe-area-inset-bottom, 0px))
           max(0.75rem, env(safe-area-inset-left, 0px));
  overflow: hidden;
}

.exit-modal[hidden] { display: none; }

.exit-overlay {
  position: absolute;
  inset: 0;
  background: rgba(5, 6, 8, 0.78);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  cursor: pointer;
}

.exit-panel {
  position: relative;
  width: min(100%, 420px);
  max-width: calc(100vw - 1.5rem);
  max-height: min(92vh, 720px);
  overflow-x: hidden;
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
  background: var(--bg-elevated);
  border: 1px solid var(--border-strong);
  border-radius: var(--radius-lg);
  padding: 1.75rem 1rem 1.25rem;
  box-shadow: var(--shadow), 0 0 0 1px rgba(201, 168, 76, 0.08);
  text-align: center;
  box-sizing: border-box;
}

.exit-panel h2 {
  font-size: clamp(1.35rem, 4vw, 1.75rem);
  margin-bottom: 0.5rem;
}

.exit-sub {
  font-size: 0.9rem;
  color: var(--text-muted);
  margin-bottom: 1.15rem;
  padding: 0 0.25rem;
}

.exit-btns {
  margin-bottom: 0.85rem;
  text-align: left;
  max-width: 100%;
  overflow: hidden;
}

.exit-btns .brand-table-wrap {
  max-width: 100%;
  width: 100%;
  overflow: hidden;
  box-sizing: border-box;
}

.exit-btns .brand-table--exit {
  width: 100%;
  min-width: 0 !important;
  max-width: 100%;
  table-layout: fixed;
  font-size: 0.72rem;
}

.exit-btns .brand-table--exit th,
.exit-btns .brand-table--exit td {
  padding: 0.5rem 0.35rem;
  vertical-align: middle;
  overflow-wrap: normal;
  word-break: normal;
}
.exit-btns .brand-table--exit tbody td:nth-child(2) {
  font-size: 0.68rem;
  line-height: 1.25;
  overflow-wrap: anywhere;
}

.exit-btns .brand-table--exit thead th:nth-child(1),
.exit-btns .brand-table--exit tbody th:nth-child(1) {
  width: 34%;
}

.exit-btns .brand-table--exit thead th:nth-child(2),
.exit-btns .brand-table--exit tbody td:nth-child(2) {
  width: 40%;
}

.exit-btns .brand-table--exit thead th:nth-child(3),
.exit-btns .brand-table--exit tbody td:nth-child(3) {
  display: none;
}

.exit-btns .brand-table--exit thead th:nth-child(4),
.exit-btns .brand-table--exit tbody td:nth-child(4) {
  width: 28%;
  text-align: right;
  padding-right: 0.45rem;
}

.exit-btns .brand-table--exit .brand-table__chip {
  display: none;
}

.exit-btns .brand-table--exit .brand-table__name {
  font-size: 0.78rem;
  line-height: 1.2;
  white-space: nowrap;
}

.exit-btns .brand-table--exit .btn {
  min-width: 44px;
  padding: 0.4rem 0.7rem;
  font-size: 0.72rem;
}

.exit-rg {
  font-size: 0.72rem;
  color: var(--text-dim);
  line-height: 1.4;
  padding: 0 0.15rem;
}

.exit-close {
  position: absolute;
  top: 0.55rem;
  right: 0.55rem;
  width: 44px;
  height: 44px;
  border: 1px solid var(--border);
  border-radius: 8px;
  background: transparent;
  color: var(--champagne);
  font-size: 1.35rem;
  line-height: 1;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 1;
}

.exit-close:active {
  border-color: var(--gold);
  background: rgba(201, 168, 76, 0.08);
}

@media (hover: hover) {
  .exit-close:hover {
    border-color: var(--gold);
    background: rgba(201, 168, 76, 0.08);
  }
}

@media (min-width: 480px) {
  .exit-panel {
    width: min(100%, 460px);
    padding: 2rem 1.25rem 1.5rem;
  }
  .exit-btns .brand-table--exit {
    font-size: 0.78rem;
  }
  .exit-btns .brand-table--exit .brand-table__name {
    font-size: 0.88rem;
  }
}

@media (prefers-reduced-motion: reduce) {
  .btn-pulse,
  .live-dot,
  .urgency-dot,
  .toast,
  .cta-ripple {
    animation: none !important;
  }
  .btn-gold:hover { transform: none; }
}

/* —— Mobile layout (iOS Safari + Android Chrome) —— */
@media (max-width: 899px) {
  :root {
  --felt-lux: #15803D;
  --gold-deep: #A16207;
  --slate: #0F172A;
    --sticky-cta-h: 72px;
  }

  .hero {
    min-height: auto;
    padding: 2rem 0 2.25rem;
    align-items: flex-start;
  }

  .hero h1 {
    font-size: clamp(1.7rem, 8.5vw, 2.35rem);
  }

  .hero-sub {
    font-size: 1rem;
  }

  .hero-ctas {
    max-width: 100%;
  }

  .hero-ctas .brand-table-wrap,
  .cta-strip .brand-table-wrap,
  .final-casino-row .brand-table-wrap {
    max-width: 100%;
  }

  .wheel-accent {
    width: 200px;
    height: 200px;
    right: -90px;
    opacity: 0.04;
  }

  .sticky-live {
    display: none;
  }

  .sticky-cta {
    z-index: 120;
    gap: 0.15rem;
    overscroll-behavior: none;
    padding-top: 0.2rem;
    padding-left: max(0.65rem, env(safe-area-inset-left, 0px));
    padding-right: max(0.65rem, env(safe-area-inset-right, 0px));
    padding-bottom: calc(0.2rem + env(safe-area-inset-bottom, 0px));
  }

  .sticky-cta-btns {
    width: 100%;
  }

  .brand-table--sticky .btn {
    min-height: 32px;
    height: 32px;
    width: 44px;
    font-size: 0.68rem;
    padding: 0;
  }

  .lobby-strip {
    max-width: 100%;
  }

  .float-pick {
    right: max(0.85rem, env(safe-area-inset-right, 0px));
    bottom: calc(var(--sticky-cta-h) + env(safe-area-inset-bottom, 0px) + 0.5rem);
    font-size: 1rem;
    z-index: 125;
  }

  .urgency-bar {
    font-size: 0.8rem;
    line-height: 1.4;
  }

  .faq-item summary {
    min-height: 48px;
    padding: 0.95rem 1.1rem;
  }

  section {
    padding: 3.25rem 0;
  }

}

@media (max-width: 767px) {
  .btn,
  .btn-lg,
  .btn-sm {
    min-height: 48px;
    font-size: 1rem;
  }

  .brand-table .btn,
  .brand-table .btn-sm {
    min-height: 44px;
    font-size: 0.78rem;
    width: auto;
  }

  .brand-table--sticky .btn,
  .brand-table--sticky .btn-sm {
    min-height: 32px;
    height: 32px;
    width: 44px;
    font-size: 0.68rem;
  }

  .mobile-drawer .btn {
    width: 100%;
  }

  .urgency-bar {
    font-size: 0.8rem;
    padding-block: 0.4rem;
  }

  .urgency-inner {
    padding-inline: 0.25rem;
  }
}

@media (max-width: 479px) {
  .wheel-accent {
    width: 180px;
    height: 180px;
    right: -70px;
    opacity: 0.05;
  }
}

@media (max-width: 899px) and (orientation: landscape) {
  .hero {
    min-height: auto;
    padding: 1.25rem 0 1.5rem;
  }

  .site-nav {
    padding-left: env(safe-area-inset-left, 0px);
    padding-right: env(safe-area-inset-right, 0px);
  }
}

@media (max-width: 540px) {
  .brand-table:not(.brand-table--sticky) thead th:nth-child(3),
  .brand-table:not(.brand-table--sticky) tbody td:nth-child(3) {
    display: none;
  }

  .brand-table--hero,
  .brand-table--board {
    min-width: 0;
  }

  .brand-table--hero .brand-table__chip {
    display: none;
  }

  .brand-table--sticky .brand-table__room img {
    display: none;
  }

  .lobby-strip {
    gap: 0.5rem;
  }
}

@media (max-width: 379px) {
  .brand-table--hero .brand-table__room img {
    width: 28px;
    height: 28px;
  }
}

/* —— iPhone / Android lock-down —— */
.nav-toggle svg {
  width: 22px !important;
  height: 22px !important;
  max-width: 22px;
  max-height: 22px;
  display: block;
}

.trust-item {
  min-width: 0;
}

.brand-table-wrap {
  -webkit-overflow-scrolling: touch;
  overscroll-behavior-x: contain;
}

@media (max-width: 899px) {
  .trust-items {
    grid-template-columns: 1fr;
    gap: 0.9rem;
  }
  .trust-item {
    align-items: center;
    gap: 0.85rem;
  }
  .trust-item p {
    font-size: 0.92rem;
    line-height: 1.35;
  }
  .trust-item strong {
    font-size: 0.98rem;
  }
  .brand-table--hero,
  .brand-table--board,
  .table-wrap table {
    min-width: 0;
  }
  .hero-ctas,
  .hero-copy,
  .video-wrap {
    width: 100%;
    max-width: 100%;
  }
  .lobby-strip img {
    width: 100%;
    height: auto;
    aspect-ratio: 16 / 9;
    object-fit: cover;
  }
  .site-nav .nav-ctas {
    display: none;
  }
}

@media (max-width: 767px) {
  .trust-row {
    padding: 1.1rem 0;
  }
  .brand-table:not(.brand-table--sticky) {
    font-size: 0.8rem;
  }
  .brand-table:not(.brand-table--sticky) th,
  .brand-table:not(.brand-table--sticky) td {
    padding: 0.55rem 0.55rem;
  }
}


/* —— 8px rhythm extras + click/focus —— */
:root {
  --space-1: 8px;
  --space-2: 16px;
  --space-3: 24px;
  --space-4: 32px;
  --ease-power1: cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
input, select, textarea { font-size: 16px; }
a, button, summary, [data-offer], .faq-item summary, .method-marquee {
  cursor: pointer;
}
a:focus-visible, button:focus-visible, summary:focus-visible,
.method-marquee:focus-visible, [tabindex]:focus-visible {
  outline: 2px solid var(--gold);
  outline-offset: 3px;
}

/* Desktop partner CTAs — hamburger only below 900px */
@media (min-width: 900px) {
  .nav-ctas { display: flex; }
  .nav-toggle { display: none; }
  .mobile-drawer { display: none !important; }
}

/* Trust: 1 col phones, 2 from 768, 4 from 900 */
.trust-items { grid-template-columns: 1fr; }
@media (min-width: 768px) {
  .trust-items { grid-template-columns: 1fr 1fr; }
}
@media (min-width: 900px) {
  .trust-items { grid-template-columns: repeat(4, 1fr); }
}

/* Film grain overlay */
.film-grain {
  pointer-events: none;
  position: fixed;
  inset: 0;
  z-index: 400;
  opacity: 0.09;
  mix-blend-mode: overlay;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='160' height='160'><filter id='n'><feTurbulence type='fractalNoise' baseFrequency='0.8' numOctaves='4' stitchTiles='stitch'/><feColorMatrix values='0 0 0 0 0.9  0 0 0 0 0.75  0 0 0 0 0.35  0 0 0 0.6 0'/></filter><rect width='100%25' height='100%25' filter='url(%23n)'/></svg>");
  background-repeat: repeat;
  background-size: 160px 160px;
}

/* Ethereal beams (gold / felt) */
.hero-beams {
  position: absolute;
  inset: -12% -8%;
  pointer-events: none;
  overflow: hidden;
  z-index: 0;
}
.hero-beam {
  position: absolute;
  top: -35%;
  height: 170%;
  border-radius: 40%;
  filter: blur(32px);
  opacity: 0.5;
  transform-origin: 50% 55%;
  will-change: transform;
  animation: beam-spin 38s linear infinite;
}
.hero-beam--gold {
  left: 18%;
  width: 36%;
  background: linear-gradient(180deg, transparent 0%, rgba(201, 168, 76, 0.16) 42%, rgba(161, 98, 7, 0.08) 70%, transparent 100%);
  animation-duration: 44s;
}
.hero-beam--felt {
  left: 46%;
  width: 24%;
  background: linear-gradient(180deg, transparent 0%, rgba(21, 128, 61, 0.18) 40%, rgba(20, 92, 69, 0.1) 72%, transparent 100%);
  animation-duration: 30s;
  animation-direction: reverse;
  opacity: 0.45;
}
.hero-beam--gold-2 {
  left: 62%;
  width: 16%;
  background: linear-gradient(180deg, transparent 0%, rgba(232, 213, 163, 0.12) 50%, transparent 100%);
  animation-duration: 52s;
  opacity: 0.35;
}
@keyframes beam-spin {
  from { transform: rotate(-18deg); }
  to { transform: rotate(342deg); }
}

.hero-copy,
.hero-grid { position: relative; z-index: 1; }

/* Hero load fade-up */
.hero-headline {
  animation: hero-fade-up 0.7s var(--ease-power1) both;
}
.hero-sub {
  animation: hero-fade-up 0.7s var(--ease-power1) 0.08s both;
}
@keyframes hero-fade-up {
  from { opacity: 0; transform: translateY(16px); }
  to { opacity: 1; transform: translateY(0); }
}

.js-ticker {
  font-variant-numeric: tabular-nums;
  color: var(--gold-light);
  font-weight: 600;
}

/* Method chip marquee */
.method-marquee {
  overflow: hidden;
  margin: 0 0 var(--space-3);
  max-width: 36rem;
  border-radius: 8px;
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent);
  mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent);
}
.method-marquee__track {
  display: flex;
  align-items: center;
  gap: var(--space-2);
  width: max-content;
  animation: chip-marquee 22s linear infinite;
}
.method-marquee__track span {
  flex: none;
  padding: 6px 12px;
  border: 1px solid var(--border);
  border-radius: 999px;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--gold-light);
  background: rgba(15, 23, 42, 0.45);
  white-space: nowrap;
}
.method-marquee:hover .method-marquee__track,
.method-marquee:focus-within .method-marquee__track {
  animation-play-state: paused;
}
@keyframes chip-marquee {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

/* Shimmer perimeter on gold / pulse CTAs */
.btn-gold,
.btn-pulse {
  isolation: isolate;
}
.btn-gold::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  padding: 1.5px;
  background: linear-gradient(
    110deg,
    transparent 15%,
    rgba(245, 230, 200, 0.15) 30%,
    rgba(245, 230, 200, 0.95) 48%,
    #c9a84c 52%,
    rgba(245, 230, 200, 0.95) 56%,
    transparent 75%
  );
  background-size: 240% 100%;
  animation: shimmer-travel 2.5s linear infinite;
  -webkit-mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
  -webkit-mask-composite: xor;
  mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
  mask-composite: exclude;
  pointer-events: none;
  z-index: 1;
}
@keyframes shimmer-travel {
  0% { background-position: 130% 0; }
  100% { background-position: -130% 0; }
}

/* Partner posters — 16/9 + glow; 3D tilt from JS on fine pointer */
.lobby-strip {
  perspective: 900px;
}
@media (min-width: 900px) {
  .lobby-strip {
    flex-direction: row;
    max-width: none;
    gap: var(--space-2);
  }
  .lobby-strip figure {
    flex: 1 1 0;
    min-width: 0;
  }
}
.lobby-poster {
  transform-style: preserve-3d;
  transition: transform 0.35s var(--ease), border-color 0.35s var(--ease), box-shadow 0.35s var(--ease);
  will-change: transform;
}
.lobby-poster img {
  aspect-ratio: 16 / 9;
  object-fit: cover;
  width: 100%;
  height: auto;
}
@media (hover: hover) and (pointer: fine) {
  .lobby-poster:hover {
    border-color: var(--gold);
    box-shadow: 0 16px 40px rgba(201, 168, 76, 0.24), 0 0 0 1px rgba(201, 168, 76, 0.4);
  }
}
@media (hover: none) {
  .lobby-poster:active,
  .lobby-poster.is-glow {
    border-color: var(--gold);
    box-shadow: 0 0 24px rgba(201, 168, 76, 0.34);
    transform: none !important;
  }
}

/* Compact sticky bar above iOS home indicator */
.sticky-live { display: none !important; }
.sticky-cta {
  padding-top: 6px;
  padding-bottom: calc(6px + env(safe-area-inset-bottom, 0px));
}

/* Pause looping CSS when tab hidden or element offscreen */
.btn-pulse.is-paused,
.hero-beam.is-paused,
.method-marquee.is-paused .method-marquee__track,
.wheel-accent.is-paused,
body.is-page-hidden .btn-pulse,
body.is-page-hidden .hero-beam,
body.is-page-hidden .method-marquee__track,
body.is-page-hidden .wheel-accent,
body.is-page-hidden .urgency-dot,
body.is-page-hidden .btn-gold::before {
  animation-play-state: paused !important;
}

@media (prefers-reduced-motion: reduce) {
  .hero-beams,
  .film-grain { display: none; }
  .hero-headline,
  .hero-sub { animation: none; }
  .method-marquee__track { animation: none; }
  .btn-gold::before { animation: none; }
  .lobby-poster { transform: none !important; }
}

@media (max-width: 767px) {
  .method-marquee { max-width: 100%; }
  .hero-headline { font-size: clamp(1.7rem, 8.5vw, 2.35rem); }
}

@media (prefers-reduced-motion: reduce) {
  .method-marquee {
    -webkit-mask-image: none;
    mask-image: none;
    overflow: visible;
  }
  .method-marquee__track {
    animation: none !important;
    flex-wrap: wrap;
    width: auto;
  }
  .method-marquee__track span:nth-child(n+5) { display: none; }
}

/* Mobile overflow lock — iPhone 16 / 390 */
.hero h1,
.hero-headline {
  max-width: 100%;
  overflow-wrap: anywhere;
  word-break: break-word;
}
.hero-sub,
.hero-copy,
.hero-ctas,
.brand-table-wrap,
.method-marquee {
  max-width: 100%;
  min-width: 0;
}
.brand-table {
  table-layout: auto;
}
@media (max-width: 479px) {
  .hero h1,
  .hero-headline {
    font-size: clamp(1.5rem, 6.2vw, 1.95rem);
    line-height: 1.18;
  }
  .hero-sub { font-size: 1rem; }
  .brand-table:not(.brand-table--sticky) td:nth-child(2) {
    white-space: normal;
    line-height: 1.3;
  }
  .brand-table--hero .brand-table__name {
    font-size: 0.82rem;
  }
  .sticky-cta {
    padding-top: 4px;
    padding-bottom: calc(4px + env(safe-area-inset-bottom, 0px));
  }
  .brand-table--sticky th,
  .brand-table--sticky td {
    height: 30px;
    padding: 0 0.3rem;
  }
}

.hero-beam--gold { opacity: 0.8; filter: blur(22px); }
.hero-beam--felt { opacity: 0.65; filter: blur(26px); }
.hero-beam--gold-2 { opacity: 0.5; filter: blur(18px); }
@media (min-width: 541px) {
  .brand-table:not(.brand-table--sticky) thead th:nth-child(3),
  .brand-table:not(.brand-table--sticky) tbody td:nth-child(3) {
    min-width: 6.75rem;
  }
}

/* ============================================================
   v8 — Cinematic first screen (Motionsites / 21st.dev / Pro Max)
   ============================================================ */

.site-nav {
  background: rgba(10, 11, 13, 0.72);
  backdrop-filter: blur(16px) saturate(1.2);
  -webkit-backdrop-filter: blur(16px) saturate(1.2);
  border-bottom: 1px solid rgba(201, 168, 76, 0.38);
}

.film-grain { opacity: 0.09; mix-blend-mode: overlay; }

.hero-beams { display: block; opacity: 1; }
.hero-beam { filter: blur(32px); opacity: 0.5; }
.hero-beam--gold {
  background: linear-gradient(180deg, transparent 0%, rgba(201, 168, 76, 0.22) 42%, rgba(161, 98, 7, 0.12) 70%, transparent 100%);
  opacity: 0.55;
  filter: blur(32px);
}
.hero-beam--felt {
  background: linear-gradient(180deg, transparent 0%, rgba(21, 128, 61, 0.22) 40%, rgba(20, 92, 69, 0.12) 72%, transparent 100%);
  opacity: 0.45;
  filter: blur(36px);
}
.hero-beam--gold-2 {
  background: linear-gradient(180deg, transparent 0%, rgba(201, 168, 76, 0.16) 50%, transparent 100%);
  opacity: 0.35;
  filter: blur(40px);
}
@media (max-width: 479px) {
  .hero-beams { display: block !important; opacity: 1; }
  .hero-beam--gold { opacity: 0.45; filter: blur(28px); }
  .hero-beam--felt { opacity: 0.4; filter: blur(32px); }
  .hero-beam--gold-2 { opacity: 0.35; filter: blur(36px); }
}

.hero-stats {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.65rem;
  max-width: 28rem;
  margin: 0 0 1.5rem;
}
.hero-stat {
  display: flex;
  flex-direction: column;
  gap: 0.15rem;
  min-width: 0;
  padding: 0.15rem 0 0.35rem;
  border-bottom: 1px solid rgba(201, 168, 76, 0.22);
}
.hero-stat__num {
  font-family: var(--font-display);
  font-size: clamp(1.85rem, 5vw, 2.55rem);
  font-weight: 700;
  line-height: 1;
  color: var(--gold);
  letter-spacing: -0.03em;
}
.hero-stat__label {
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--text-muted);
  line-height: 1.3;
}

.hero-ctas {
  display: flex;
  flex-wrap: wrap;
  align-items: stretch;
  gap: 0.75rem;
  max-width: 36rem;
  margin: 0 0 1.15rem;
}
.hero-ctas .btn {
  white-space: normal;
  text-align: center;
  line-height: 1.25;
}
.hero-ctas .btn-gold {
  flex: 1 1 17rem;
  min-height: 52px;
  font-size: 1rem;
  padding: 0.95rem 1.4rem;
  box-shadow: 0 8px 32px rgba(201, 168, 76, 0.32);
}
.hero-ctas .btn-outline {
  flex: 0 1 auto;
  min-height: 52px;
  padding: 0.85rem 1.2rem;
}

.method-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 0.45rem;
  max-width: 36rem;
  margin: 0;
  overflow: visible;
}
.method-chips span {
  flex: none;
  padding: 6px 12px;
  border: 1px solid var(--border);
  border-radius: 999px;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--gold-light);
  background: rgba(15, 23, 42, 0.45);
  white-space: nowrap;
}

.hero-headline { animation: hero-fade-up 0.7s var(--ease-power1) both; }
.hero-sub { animation: hero-fade-up 0.7s var(--ease-power1) 0.08s both; }
.hero-stats { animation: hero-fade-up 0.7s var(--ease-power1) 0.16s both; }
.hero-ctas { animation: hero-fade-up 0.7s var(--ease-power1) 0.24s both; }
.method-chips { animation: hero-fade-up 0.7s var(--ease-power1) 0.32s both; }

.btn-gold {
  position: relative;
  overflow: hidden;
  isolation: isolate;
}
.btn-gold::after {
  content: "";
  position: absolute;
  top: 0;
  left: -120%;
  width: 55%;
  height: 100%;
  background: linear-gradient(105deg, transparent 0%, rgba(255,255,255,0.08) 35%, rgba(255,248,230,0.55) 50%, rgba(255,255,255,0.08) 65%, transparent 100%);
  transform: skewX(-18deg);
  pointer-events: none;
  animation: gold-shimmer-sweep 2.4s ease-in-out infinite;
  z-index: 2;
}
@keyframes gold-shimmer-sweep {
  0% { left: -120%; }
  55%, 100% { left: 140%; }
}
.btn-gold.is-paused::after,
.btn-gold.is-paused::before,
body.is-page-hidden .btn-gold::after,
body.is-page-hidden .btn-gold::before {
  animation-play-state: paused !important;
}

.sticky-cta {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 120;
  display: flex;
  flex-direction: column;
  align-items: stretch;
  gap: 0.15rem;
  background: rgba(10, 11, 13, 0.88);
  backdrop-filter: blur(16px) saturate(1.2);
  -webkit-backdrop-filter: blur(16px) saturate(1.2);
  border-top: 1px solid rgba(201, 168, 76, 0.32);
  padding: 0.45rem max(0.75rem, env(safe-area-inset-right, 0px)) calc(0.4rem + env(safe-area-inset-bottom, 0px)) max(0.75rem, env(safe-area-inset-left, 0px));
  overscroll-behavior: none;
}
.sticky-cta__play {
  width: 100%;
  min-height: 48px;
  font-size: 0.92rem;
  font-weight: 700;
  white-space: nowrap;
  letter-spacing: 0.01em;
}
.sticky-cta__more {
  display: block;
  text-align: center;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  color: var(--gold-light);
  min-height: 22px;
  line-height: 1.3;
  text-decoration: none;
}

@media (min-width: 900px) {
  .sticky-cta { display: none !important; }
  body { padding-bottom: 0; }
  .toast-stack { bottom: 1.25rem; }
}

.lobby-strip {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
  max-width: none;
  margin: 0 0 1.75rem;
  perspective: 1100px;
}
.lobby-poster {
  margin: 0;
  border-radius: 14px;
  overflow: hidden;
  border: 1px solid var(--border);
  background: #0a0b0d;
  transform-style: preserve-3d;
  transition: transform 0.35s var(--ease), border-color 0.35s var(--ease), box-shadow 0.35s var(--ease);
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.35);
}
.lobby-poster img {
  width: 100%;
  height: auto;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  display: block;
}
.lobby-poster figcaption,
.lobby-poster__cap {
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--gold-light);
  padding: 0.5rem 0.75rem 0.6rem;
  background: linear-gradient(180deg, rgba(18, 20, 26, 0.92), var(--bg-card));
}
@media (min-width: 900px) {
  .lobby-strip {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1rem;
  }
}
@media (hover: hover) and (pointer: fine) {
  .lobby-poster:hover {
    border-color: var(--gold);
    box-shadow: 0 22px 48px rgba(201, 168, 76, 0.28), 0 0 0 1px rgba(201, 168, 76, 0.4);
  }
}
@media (hover: none) {
  .lobby-poster:active,
  .lobby-poster.is-glow {
    border-color: var(--gold);
    box-shadow: 0 0 28px rgba(201, 168, 76, 0.36);
    transform: none !important;
  }
}

@media (max-width: 899px) {
  :root { --sticky-cta-h: 72px; }
  .hero {
    min-height: auto;
    padding: 1.35rem 0 1.75rem;
    align-items: flex-start;
  }
  .hero-grid { gap: 1.35rem; }
  .eyebrow { margin-bottom: 0.7rem; }
  .hero h1,
  .hero-headline {
    font-size: clamp(1.85rem, 8.2vw, 2.45rem);
    line-height: 1.12;
    margin-bottom: 0.7rem;
    overflow-wrap: anywhere;
  }
  .hero-sub {
    font-size: 0.95rem;
    line-height: 1.5;
    margin-bottom: 1.1rem;
  }
  .hero-stats {
    max-width: 100%;
    margin-bottom: 1.15rem;
    gap: 0.5rem;
  }
  .hero-stat__num { font-size: clamp(1.65rem, 7vw, 2.1rem); }
  .hero-stat__label { font-size: 0.62rem; }
  .hero-ctas {
    flex-direction: column;
    max-width: 100%;
    margin-bottom: 0.9rem;
  }
  .hero-ctas .btn-gold,
  .hero-ctas .btn-outline {
    flex: none;
    width: 100%;
    min-height: 52px;
  }
  .hero-ctas .btn-gold {
    font-size: 1.02rem;
    min-height: 56px;
  }
  .method-chips { max-width: 100%; overflow: visible; }
  .video-wrap { box-shadow: var(--shadow), 0 0 40px rgba(201, 168, 76, 0.12); }
  .sticky-cta__play { min-height: 48px; font-size: 0.9rem; }
}

@media (max-width: 479px) {
  .hero h1,
  .hero-headline {
    font-size: clamp(1.75rem, 7.4vw, 2.15rem);
    line-height: 1.14;
  }
  .hero-sub { font-size: 0.92rem; }
  .sticky-cta {
    padding-top: 0.4rem;
    padding-bottom: calc(0.35rem + env(safe-area-inset-bottom, 0px));
  }
}

@media (prefers-reduced-motion: reduce) {
  .hero-beams,
  .film-grain { display: none !important; }
  .hero-headline,
  .hero-sub,
  .hero-stats,
  .hero-ctas,
  .method-chips { animation: none !important; }
  .btn-gold::after,
  .btn-gold::before { animation: none !important; }
  .lobby-poster { transform: none !important; }
}

svg { max-width: none; }
.nav-toggle svg,
.trust-icon svg,
.rule-card .icon-wrap svg,
.live-test svg {
  width: 20px !important;
  height: 20px !important;
  max-width: 24px;
  max-height: 24px;
}
html, body { overflow-x: hidden; }

/* Lobby posters as offer links */
a.lobby-poster {
  display: block;
  text-decoration: none;
  color: inherit;
  cursor: pointer;
}
a.lobby-poster:focus-visible {
  outline: 2px solid var(--gold);
  outline-offset: 3px;
}
.lobby-poster__cap {
  display: block;
  margin-top: 0.55rem;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold);
  text-align: center;
}
.lobby-poster figcaption,
.lobby-poster__cap { /* keep both selectors valid during transition */ }

/* Clickable brand toasts */
a.toast--link {
  text-decoration: none;
  color: inherit;
  cursor: pointer;
}
a.toast--link:focus-visible {
  outline: 2px solid var(--gold);
  outline-offset: 2px;
}
a.toast--link:hover {
  border-color: var(--border-strong);
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.4), 0 0 0 1px rgba(201, 168, 76, 0.25);
}
a.toast--link .toast-body strong {
  color: var(--gold-light);
  text-decoration: underline;
  text-underline-offset: 2px;
}

/* —— Slogan brand (Fraunces) —— */
:root {
  --font-slogan: "Fraunces", "Playfair Display", Georgia, serif;
}

.wordmark--slogan {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  gap: 0.12rem;
  max-width: min(58vw, 34rem);
  white-space: normal;
  line-height: 1.2;
  font-family: var(--font-slogan);
  font-weight: 700;
  letter-spacing: 0.01em;
  text-decoration: none;
  color: var(--champagne);
}

.wordmark--slogan .wordmark__line {
  display: block;
  font-size: clamp(0.62rem, 1.55vw, 0.92rem);
  font-variation-settings: "SOFT" 40, "WONK" 1, "opsz" 72;
}

.wordmark--slogan .wordmark__line--sub {
  font-size: clamp(0.58rem, 1.35vw, 0.82rem);
  font-weight: 600;
  color: var(--gold-light);
  font-style: italic;
  letter-spacing: 0.02em;
}

.wordmark--slogan .wordmark__dutch {
  font-weight: 700;
}

.wordmark--slogan .wordmark__five {
  color: var(--gold);
  font-style: italic;
}

.wordmark--slogan em {
  color: var(--gold);
  font-style: italic;
  font-weight: 700;
}

.nav-inner {
  height: auto;
  min-height: var(--nav-h);
  padding: 0.55rem 0;
  align-items: center;
}

.hero-headline--slogan {
  font-family: var(--font-slogan);
  font-size: clamp(1.35rem, 4.2vw, 2.55rem);
  font-weight: 700;
  line-height: 1.18;
  font-variation-settings: "SOFT" 30, "WONK" 1, "opsz" 144;
  background: linear-gradient(105deg, var(--champagne) 0%, var(--gold-light) 42%, var(--gold) 78%, var(--champagne) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  max-width: 18ch;
}

@media (min-width: 900px) {
  .hero-headline--slogan { max-width: 22ch; }
}

.chip-slogan {
  font-family: var(--font-slogan) !important;
  font-style: italic;
  letter-spacing: 0.04em !important;
  text-transform: none !important;
  font-size: 0.78rem !important;
}

.footer-brand.wordmark--slogan {
  margin-bottom: 0.75rem;
  max-width: 28rem;
}

.footer-brand.wordmark--slogan .wordmark__line {
  font-size: clamp(0.85rem, 2vw, 1.05rem);
}

@media (max-width: 899px) {
  .wordmark--slogan {
    max-width: calc(100vw - 5.5rem);
  }
  .wordmark--slogan .wordmark__line {
    font-size: 0.62rem;
  }
  .wordmark--slogan .wordmark__line--sub {
    font-size: 0.58rem;
  }
}
