:root {
  --color-bg: #0B0D0E;
  --color-bg-deep: #060809;
  --color-surface: #14181A;
  --color-surface-2: #1C2024;
  --color-surface-3: #242A2E;
  --color-border: #2B3237;
  --color-border-soft: #21272B;
  --color-text: #CFD4D8;
  --color-text-dim: #8C949B;
  --color-heading: #EDF1F3;
  --color-accent: #1FAD66;
  --color-accent-2: #1CD478;
  --color-accent-3: #4C555E;
  --color-accent-rgb: 31, 173, 102;
  --color-cta-bg: #1FAD66;
  --color-cta-bg-hover: #1CD478;
  --color-cta-ink: #06110B;
  --color-on-dark: #EDF1F3;
  --color-header-bg: #1C2024;
  --color-footer-bg: #1C2024;

  --font-display: "Bricolage Grotesque", "Hanken Grotesk", system-ui, sans-serif;
  --font-body: "Hanken Grotesk", system-ui, -apple-system, sans-serif;

  --fs-small: 0.8125rem;
  --fs-body: 1rem;
  --fs-lead: 1.125rem;
  --fs-card-title: 1.25rem;
  --fs-h4: 1.25rem;
  --fs-h3: 1.5rem;
  --fs-section-title: clamp(1.5rem, 1.15rem + 1.6vw, 2.05rem);
  --fs-hero: clamp(2rem, 1.35rem + 3.1vw, 2.75rem);

  --lh-body: 1.65;
  --lh-heading: 1.14;

  --section-gap: 72px;
  --section-gap-mob: 46px;
  --hero-padding-v: clamp(40px, 6vw, 74px);
  --footer-padding-v: 34px;
  --gap: 24px;

  --radius-sm: 8px;
  --radius-md: 14px;
  --radius-lg: 22px;
  --radius-pill: 999px;

  --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
  --ease-in: cubic-bezier(0.7, 0, 0.84, 0);
  --ease-toggle: cubic-bezier(0.65, 0, 0.35, 1);
  --t-fast: 150ms;
  --t-mid: 260ms;
  --t-slow: 380ms;

  --header-h: 68px;
  --sidebar-w: 244px;
  --container-max: 1240px;
}

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

* {
  margin: 0;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--header-h) + 16px);
  -webkit-text-size-adjust: 100%;
}

.nowrap { white-space: nowrap; }

body {
  min-height: 100vh;
  background: var(--color-bg);
  color: var(--color-text);
  font-family: var(--font-body);
  font-size: var(--fs-body);
  line-height: var(--lh-body);
  font-weight: 400;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-display);
  line-height: var(--lh-heading);
  color: var(--color-heading);
  font-weight: 700;
}

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

a {
  color: var(--color-accent-2);
  text-decoration: none;
}

a:hover {
  color: var(--color-accent);
}

button {
  background: transparent;
  border: 0;
  padding: 0;
  font: inherit;
  color: inherit;
  cursor: pointer;
}

:focus-visible {
  outline: none;
  box-shadow: 0 0 0 3px rgba(var(--color-accent-rgb), 0.55);
  border-radius: var(--radius-sm);
}

.container {
  width: 100%;
  max-width: var(--container-max);
  margin-inline: auto;
  padding-inline: 16px;
}

@media (min-width: 768px) {
  .container {
    padding-inline: 24px;
  }
}

.skip-link {
  position: absolute;
  left: -9999px;
  top: 0;
  z-index: 999;
  padding: 10px 18px;
  background: var(--color-accent);
  color: var(--color-cta-ink);
  border-radius: 0 0 var(--radius-sm) 0;
  font-weight: 600;
}

.skip-link:focus {
  left: 0;
}

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

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 22px;
  border-radius: var(--radius-pill);
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.95rem;
  line-height: 1.1;
  letter-spacing: 0.01em;
  white-space: nowrap;
  transition: background var(--t-fast) var(--ease-out), color var(--t-fast) var(--ease-out), border-color var(--t-fast) var(--ease-out);
}

.btn--primary {
  background: var(--color-cta-bg);
  color: var(--color-cta-ink);
}

.btn--primary:hover {
  background: var(--color-cta-bg-hover);
  color: var(--color-cta-ink);
}

.btn--ghost {
  background: transparent;
  color: var(--color-on-dark);
  border: 1px solid var(--color-border);
}

.btn--ghost:hover {
  color: var(--color-accent-2);
  border-color: var(--color-accent);
}

.flow-cta {
  display: flex;
  justify-content: center;
  margin: clamp(18px, 3.5vw, 28px) 0 4px;
}

.flow-cta .btn {
  padding: 14px 30px;
}

.flow-cta .btn,
.flow-cta .btn:hover {
  color: var(--color-cta-ink);
  text-decoration: none;
}

.stickyjoin {
  position: fixed;
  right: clamp(14px, 3vw, 28px);
  bottom: clamp(14px, 3vw, 28px);
  z-index: 95;
  color: var(--color-cta-ink);
  text-decoration: none;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.35);
}

body:has(.nav-drawer.is-open) .stickyjoin {
  display: none;
}

@media (max-width: 560px) {
  .stickyjoin {
    left: 12px;
    right: 12px;
  }
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: var(--fs-small);
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--color-accent-2);
}

.masthead {
  position: sticky;
  top: 0;
  z-index: 200;
  background: var(--color-header-bg);
  border-bottom: 1px solid var(--color-border-soft);
}

.masthead__bar {
  display: flex;
  align-items: center;
  gap: 18px;
  min-height: var(--header-h);
}

.masthead__brand {
  display: inline-flex;
  align-items: center;
  flex-shrink: 0;
}

.masthead__brand img {
  height: 26px;
  width: auto;
  object-fit: contain;
}

.masthead__nav {
  display: none;
}

.masthead__link {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 0.95rem;
  color: var(--color-text);
  padding: 6px 2px;
  transition: color var(--t-fast) var(--ease-out);
}

.masthead__link:hover {
  color: var(--color-accent-2);
}

.masthead__link.is-active {
  color: var(--color-heading);
}

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

.masthead__cta {
  padding: 9px 16px;
  font-size: 0.85rem;
}

.masthead__burger {
  display: inline-flex;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 44px;
  height: 44px;
  padding: 11px 9px;
  flex-shrink: 0;
}

.masthead__burger span {
  display: block;
  height: 2px;
  border-radius: 2px;
  background: var(--color-on-dark);
  transition: transform var(--t-mid) var(--ease-toggle), opacity var(--t-fast) var(--ease-out);
}

.masthead__burger span:nth-child(1) { width: 100%; }
.masthead__burger span:nth-child(2) { width: 64%; }
.masthead__burger span:nth-child(3) { width: 84%; }

.masthead__burger.is-active span:nth-child(1) { transform: translateY(7px) rotate(45deg); width: 100%; }
.masthead__burger.is-active span:nth-child(2) { opacity: 0; }
.masthead__burger.is-active span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); width: 100%; }

.nav-drawer {
  position: fixed;
  top: 0;
  right: 0;
  z-index: 300;
  width: min(82vw, 340px);
  height: 100vh;
  height: 100dvh;
  background: var(--color-surface-2);
  border-left: 1px solid var(--color-border);
  padding: 18px 22px 28px;
  display: flex;
  flex-direction: column;
  gap: 6px;
  transform: translateX(100%);
  visibility: hidden;
  transition: transform var(--t-slow) var(--ease-toggle), visibility 0s linear var(--t-slow);
  overflow-y: auto;
}

.nav-drawer.is-open {
  transform: translateX(0);
  visibility: visible;
  transition: transform var(--t-slow) var(--ease-toggle), visibility 0s linear 0s;
}

.nav-drawer__top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 10px;
}

.nav-drawer__label {
  font-family: var(--font-display);
  font-size: var(--fs-small);
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--color-text-dim);
}

.nav-drawer__close {
  position: relative;
  width: 42px;
  height: 42px;
  flex-shrink: 0;
  border-radius: 50%;
}

.nav-drawer__close span {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 20px;
  height: 2px;
  border-radius: 2px;
  background: var(--color-on-dark);
  transition: background var(--t-fast) var(--ease-out);
}

.nav-drawer__close span:nth-child(1) { transform: translate(-50%, -50%) rotate(45deg); }
.nav-drawer__close span:nth-child(2) { transform: translate(-50%, -50%) rotate(-45deg); }
.nav-drawer__close:hover span { background: var(--color-accent-2); }

.nav-drawer__link {
  display: block;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 1.15rem;
  color: var(--color-text);
  padding: 12px 0;
  border-bottom: 1px solid var(--color-border-soft);
  transition: color var(--t-fast) var(--ease-out);
}

.nav-drawer__link:hover,
.nav-drawer__link.is-active {
  color: var(--color-accent-2);
}

.nav-drawer__cta {
  margin-top: 20px;
  width: 100%;
}

.nav-drawer__backdrop {
  position: fixed;
  inset: 0;
  z-index: 290;
  background: rgba(4, 6, 7, 0.66);
  opacity: 0;
  visibility: hidden;
  transition: opacity var(--t-slow) var(--ease-out), visibility 0s linear var(--t-slow);
}

.nav-drawer__backdrop.is-open {
  opacity: 1;
  visibility: visible;
  transition: opacity var(--t-slow) var(--ease-out), visibility 0s linear 0s;
}

.layout {
  display: block;
  padding-block: var(--section-gap-mob);
}

.flow > * + * {
  margin-top: var(--section-gap-mob);
}

.railnav {
  display: none;
  margin-bottom: var(--section-gap-mob);
}

.railnav__title {
  font-family: var(--font-display);
  font-size: var(--fs-small);
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--color-text-dim);
  margin-bottom: 9px;
}

.railnav__list {
  display: flex;
  gap: 10px;
  overflow-x: auto;
  margin: 0;
  padding-inline-start: 0;
  padding-bottom: 4px;
  scrollbar-width: none;
  list-style: none;
}

.railnav__list::-webkit-scrollbar { display: none; }

.railnav__link {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  white-space: nowrap;
  padding: 10px 15px;
  border-radius: var(--radius-pill);
  background: var(--color-surface);
  border: 1px solid var(--color-border-soft);
  color: var(--color-text);
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 0.9rem;
  transition: color var(--t-fast) var(--ease-out), border-color var(--t-fast) var(--ease-out), background var(--t-fast) var(--ease-out);
}

.railnav__link:hover {
  color: var(--color-accent-2);
  border-color: var(--color-accent);
  background: var(--color-surface-2);
}

.railnav__dot {
  width: 8px;
  height: 8px;
  flex-shrink: 0;
  border-radius: 50%;
  background: var(--color-accent);
}

@media (min-width: 1024px) {
  .masthead__nav {
    display: flex;
    align-items: center;
    gap: 22px;
  }
  .masthead__burger { display: none; }
  .nav-drawer, .nav-drawer__backdrop { display: none; }

  .layout {
    display: grid;
    grid-template-columns: var(--sidebar-w) minmax(0, 1fr);
    gap: 44px;
    align-items: start;
    padding-block: var(--section-gap);
  }
  .flow > * + * {
    margin-top: var(--section-gap);
  }
  .railnav {
    display: block;
    position: sticky;
    top: calc(var(--header-h) + 20px);
    margin-bottom: 0;
    background: var(--color-surface);
    border: 1px solid var(--color-border-soft);
    border-radius: var(--radius-md);
    padding: 14px 12px;
  }
  .railnav__list {
    flex-direction: column;
    overflow: visible;
    gap: 2px;
  }
  .railnav__link {
    width: 100%;
    background: transparent;
    border-color: transparent;
    border-radius: var(--radius-sm);
    padding: 7px 10px;
  }
  .railnav__link:hover {
    background: var(--color-surface-2);
    border-color: var(--color-border-soft);
  }
}

.stage {
  background: var(--color-surface);
  border-bottom: 1px solid var(--color-border-soft);
  overflow: hidden;
}

.stage__grid {
  display: flex;
  flex-direction: column;
  gap: 26px;
  padding-block: clamp(30px, 5vw, 58px);
}

.stage__text {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 16px;
}

.stage__title {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: var(--fs-hero);
  line-height: 1.08;
  color: var(--color-heading);
}

.stage__title em {
  font-style: normal;
  color: var(--color-accent-2);
}

.stage__sub {
  font-size: var(--fs-lead);
  color: var(--color-text);
  max-width: 48ch;
}

.stage__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 6px;
}

.stage__slider {
  position: relative;
  width: 100%;
  max-width: 652px;
  margin-inline: auto;
}

.stage__frame {
  position: relative;
  width: 100%;
  aspect-ratio: 652 / 480;
  overflow: hidden;
  border-radius: var(--radius-lg);
  border: 1px solid var(--color-border-soft);
  background: var(--color-surface-2);
}

.stage__img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
  opacity: 0;
  transition: opacity var(--t-slow) var(--ease-out);
}

.stage__img.is-active {
  opacity: 1;
}

@media (min-width: 900px) {
  .stage__grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: center;
    gap: 44px;
  }
  .stage__slider { margin-inline: 0; }
}

.winline {
  overflow: hidden;
  background: var(--color-surface);
  border-block: 1px solid var(--color-border-soft);
  padding-block: 12px;
}

.winline__bar {
  display: flex;
  align-items: center;
  gap: 14px;
}

.winline__tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  flex-shrink: 0;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: var(--fs-small);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--color-accent-2);
}

.winline__pulse {
  width: 9px;
  height: 9px;
  flex-shrink: 0;
  border-radius: 50%;
  background: var(--color-accent);
  box-shadow: 0 0 0 0 rgba(var(--color-accent-rgb), 0.6);
  animation: winline-pulse 2s var(--ease-out) infinite;
}

@keyframes winline-pulse {
  0% { box-shadow: 0 0 0 0 rgba(var(--color-accent-rgb), 0.55); }
  70% { box-shadow: 0 0 0 9px rgba(var(--color-accent-rgb), 0); }
  100% { box-shadow: 0 0 0 0 rgba(var(--color-accent-rgb), 0); }
}

.winline__viewport {
  flex: 1 1 auto;
  min-width: 0;
  overflow: hidden;
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent);
  mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent);
}

.winline__marquee {
  display: flex;
  width: max-content;
  gap: 32px;
  animation: winline-scroll 34s linear infinite;
}

.winline:hover .winline__marquee {
  animation-play-state: paused;
}

@keyframes winline-scroll {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

.winline__item {
  display: inline-flex;
  align-items: baseline;
  gap: 8px;
  white-space: nowrap;
  font-size: 0.9rem;
  color: var(--color-text);
}

.winline__player {
  font-family: var(--font-display);
  font-weight: 600;
  color: var(--color-heading);
}

.winline__game {
  color: var(--color-text-dim);
}

.winline__amount {
  font-family: var(--font-display);
  font-weight: 700;
  color: var(--color-accent-2);
}

.band__head {
  margin-bottom: 18px;
}

.band__title {
  font-size: var(--fs-section-title);
}

.copy-block {
  overflow-wrap: break-word;
}

.copy-block > *:first-child { margin-top: 0; }
.copy-block > *:last-child { margin-bottom: 0; }

.copy-block h1 {
  font-size: clamp(1.9rem, 1.4rem + 2.2vw, 2.6rem);
  font-weight: 800;
  margin: 0 0 0.6em;
}

.copy-block h2 {
  font-size: var(--fs-section-title);
  margin: 1.4em 0 0.6em;
  padding-top: 0.2em;
}

.copy-block h3 {
  font-size: var(--fs-h3);
  margin: 1.3em 0 0.5em;
}

.copy-block h4 {
  font-size: var(--fs-h4);
  margin: 1.2em 0 0.5em;
}

.copy-block p {
  margin: 0 0 1.1em;
  line-height: var(--lh-body);
}

.copy-block ul,
.copy-block ol {
  margin: 0 0 1.2em;
  padding-left: 1.4em;
}

.copy-block ul { list-style: none; }
.copy-block ol { list-style: decimal; }
.copy-block ol li { padding-left: 0.3em; }

.copy-block li {
  margin-bottom: 0.6em;
  line-height: 1.55;
}

.copy-block ul > li {
  position: relative;
  padding-left: 1.5em;
}

.copy-block ul > li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.62em;
  width: 8px;
  height: 8px;
  border-radius: 2px;
  background: var(--color-accent);
  transform: rotate(45deg);
}

.copy-block blockquote {
  margin: 1.4em 0;
  padding: 14px 20px;
  border-left: 3px solid var(--color-accent);
  background: var(--color-surface);
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
  color: var(--color-text);
}

.copy-block blockquote p:last-child { margin-bottom: 0; }

.copy-block code {
  font-family: Consolas, Monaco, monospace;
  font-size: 0.9em;
  background: var(--color-surface-2);
  padding: 2px 6px;
  border-radius: 4px;
}

.copy-block pre {
  margin: 1.4em 0;
  padding: 16px;
  overflow-x: auto;
  background: var(--color-bg-deep);
  border-radius: var(--radius-sm);
}

.copy-block pre code { background: none; padding: 0; }

.copy-block hr {
  margin: 1.8em 0;
  border: 0;
  border-top: 1px solid var(--color-border);
}

.copy-block strong,
.copy-block b { font-weight: 700; color: var(--color-heading); }

.copy-block em,
.copy-block i { font-style: italic; }

.copy-block a {
  color: var(--color-accent-2);
  text-decoration: underline;
  text-underline-offset: 2px;
  transition: color var(--t-fast) var(--ease-out);
}

.copy-block a:hover { color: var(--color-accent); }

.copy-block__table-wrap {
  margin: 1.6em 0;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
}

.copy-block__table-wrap table {
  width: 100%;
  min-width: 560px;
  border-collapse: collapse;
  font-size: 0.94rem;
}

.copy-block__table-wrap thead th {
  background: var(--color-surface-2);
  color: var(--color-heading);
  font-family: var(--font-display);
  font-weight: 700;
  text-align: left;
}

.copy-block__table-wrap th,
.copy-block__table-wrap td {
  padding: 12px 16px;
  border-bottom: 1px solid var(--color-border-soft);
  vertical-align: top;
  text-align: left;
}

.copy-block__table-wrap tbody tr:nth-child(even) {
  background: rgba(28, 32, 36, 0.4);
}

.copy-block__table-wrap tr:last-child td { border-bottom: 0; }

.copy-block .seo-figure {
  margin: 1.6em 0;
  border-radius: var(--radius-md);
  overflow: hidden;
  border: 1px solid var(--color-border-soft);
  background: var(--color-surface);
  transition: border-color var(--t-fast) var(--ease-out);
}

.copy-block .seo-figure a {
  display: block;
  cursor: pointer;
}

.copy-block .seo-figure a img {
  transition: opacity var(--t-fast) var(--ease-out);
}

.copy-block .seo-figure:hover {
  border-color: var(--color-accent);
}

.copy-block .seo-figure a:hover img {
  opacity: 0.9;
}

.faq-embed {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-top: 12px;
}

.faq-embed__item {
  border: 1px solid var(--color-border-soft);
  border-radius: var(--radius-md);
  background: var(--color-surface);
  overflow: hidden;
}

.copy-block h3.faq-embed__q {
  position: relative;
  margin: 0;
  padding: 15px 48px 15px 18px;
  cursor: pointer;
  font-size: 1.05rem;
  color: var(--color-heading);
}

.faq-embed__q::before,
.faq-embed__q::after {
  content: "";
  position: absolute;
  top: 50%;
  right: 18px;
  width: 13px;
  height: 2px;
  border-radius: 2px;
  background: var(--color-accent-2);
  transform: translateY(-50%);
  transition: transform var(--t-mid) var(--ease-toggle);
}

.faq-embed__q::after { transform: translateY(-50%) rotate(90deg); }

.faq-embed__item.is-open .faq-embed__q::after { transform: translateY(-50%) rotate(0deg); }

.faq-embed__a {
  max-height: var(--faq-h, 0px);
  overflow: hidden;
  transition: max-height var(--t-slow) var(--ease-toggle);
}

.copy-block .faq-embed__a-inner {
  padding: 4px 18px 15px;
}

.copy-block .faq-embed__a-inner p {
  margin: 0;
  color: var(--color-text);
}

.copy-block .seo-figure img {
  width: 100%;
  height: auto;
  display: block;
}

@media (min-width: 720px) {
  .copy-block .seo-figure--square {
    float: right;
    width: min(48%, 300px);
    margin: 0.4em 0 1.2em 1.6em;
  }
}

.bonus-matrix {
  background: var(--color-surface);
  border: 1px solid var(--color-border-soft);
  border-radius: var(--radius-lg);
  padding: clamp(20px, 4vw, 34px);
}

.bonus-matrix__head {
  margin-bottom: 22px;
}

.bonus-matrix__list {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.tier {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 10px;
  padding: 20px;
  border-radius: var(--radius-md);
  background: var(--color-surface-2);
  border: 1px solid var(--color-border-soft);
}

.tier--featured {
  border-color: rgba(var(--color-accent-rgb), 0.55);
  background: linear-gradient(150deg, rgba(31, 173, 102, 0.12), var(--color-surface-2) 60%);
}

.tier__top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  flex-wrap: wrap;
}

.tier__badge {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: var(--fs-small);
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--color-accent-2);
}

.tier__flag {
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--color-cta-ink);
  background: var(--color-accent);
  padding: 4px 10px;
  border-radius: var(--radius-pill);
}

.tier__value {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(1.5rem, 1.1rem + 2vw, 2rem);
  color: var(--color-heading);
  line-height: 1.1;
}

.tier__desc {
  font-size: 0.95rem;
  color: var(--color-text);
}

@media (min-width: 620px) {
  .bonus-matrix__list {
    flex-direction: row;
  }
  .tier {
    flex: 1 1 0;
    min-width: 0;
  }
}

.shelf__head {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 20px;
}

.shelf__title {
  font-size: var(--fs-section-title);
}

.shelf__sub {
  font-size: 0.95rem;
  color: var(--color-text-dim);
  margin-top: 4px;
}

.shelf__seeall {
  flex-shrink: 0;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 0.9rem;
  color: var(--color-accent-2);
  white-space: nowrap;
}

.shelf__rail {
  display: flex;
  gap: 16px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scroll-padding-inline: 2px;
  padding-block: 4px;
  scrollbar-width: none;
}

.shelf__rail::-webkit-scrollbar { display: none; }

.tile {
  position: relative;
  flex: 0 0 auto;
  width: clamp(150px, 42vw, 190px);
  scroll-snap-align: start;
  border-radius: var(--radius-md);
  overflow: hidden;
  background: var(--color-surface-2);
  border: 1px solid var(--color-border-soft);
  isolation: isolate;
}

.tile__media {
  position: relative;
  width: 100%;
  aspect-ratio: 3 / 4;
  overflow: hidden;
}

.tile__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
}

.tile__reveal {
  position: absolute;
  inset: 0;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: center;
  background: radial-gradient(circle at center, rgba(31, 173, 102, 0.28), rgba(6, 8, 9, 0.55) 62%, rgba(6, 8, 9, 0.82));
  opacity: 0;
  transition: opacity var(--t-mid) var(--ease-out);
}

.tile__glyph {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 56px;
  height: 56px;
  flex-shrink: 0;
  border-radius: 50%;
  border: 2px solid var(--color-accent-2);
  background: rgba(6, 8, 9, 0.42);
  color: var(--color-on-dark);
  transform: scale(0.72);
  transition: transform var(--t-mid) var(--ease-out);
}

.tile__glyph svg {
  width: 20px;
  height: 20px;
  margin-left: 3px;
}

.tile:hover .tile__reveal,
.tile:focus-within .tile__reveal { opacity: 1; }

.tile:hover .tile__glyph,
.tile:focus-within .tile__glyph { transform: scale(1); }

.tile__body {
  padding: 12px 14px 14px;
}

.tile__name {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 0.95rem;
  color: var(--color-heading);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.tile__tag {
  margin-top: 3px;
  font-size: var(--fs-small);
  color: var(--color-text-dim);
}

.tile__link {
  position: absolute;
  inset: 0;
  z-index: 3;
  font-size: 0;
  color: transparent;
}

.payrack {
  background: var(--color-surface);
  border: 1px solid var(--color-border-soft);
  border-radius: var(--radius-lg);
  padding: clamp(20px, 4vw, 32px);
}

.payrack__head { margin-bottom: 20px; }

.payrack__grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(96px, 1fr));
  gap: 12px;
}

.payrack__cell {
  display: flex;
  align-items: center;
  justify-content: center;
  min-width: 0;
  overflow: hidden;
  padding: 14px 12px;
  border-radius: var(--radius-sm);
  background: #EDF1F3;
  border: 1px solid var(--color-border-soft);
}

.payrack__img {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  max-width: 84px;
}

.payrack__img img {
  max-width: 100%;
  max-height: 32px;
  width: auto;
  height: auto;
  object-fit: contain;
}

.payrack__note {
  margin-top: 16px;
  font-size: var(--fs-small);
  color: var(--color-text-dim);
}

.faq__head { margin-bottom: 20px; }

.faq__list {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.faq__item {
  border-radius: var(--radius-md);
  background: var(--color-surface);
  border: 1px solid var(--color-border-soft);
  overflow: hidden;
}

.faq__trigger {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  width: 100%;
  text-align: left;
  padding: 18px 20px;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 1.05rem;
  color: var(--color-heading);
}

.faq__icon {
  position: relative;
  width: 18px;
  height: 18px;
  flex-shrink: 0;
}

.faq__icon::before,
.faq__icon::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 14px;
  height: 2px;
  border-radius: 2px;
  background: var(--color-accent-2);
  transform: translate(-50%, -50%);
  transition: transform var(--t-mid) var(--ease-toggle);
}

.faq__icon::after { transform: translate(-50%, -50%) rotate(90deg); }

.faq__item.is-open .faq__icon::after { transform: translate(-50%, -50%) rotate(0deg); }

.faq__panel {
  max-height: var(--faq-h, 0px);
  overflow: hidden;
  transition: max-height var(--t-slow) var(--ease-toggle);
}

.faq__answer {
  padding: 0 20px 20px;
  color: var(--color-text);
}

.faq__q { flex: 1 1 auto; min-width: 0; }

.faq__answer p,
.faq__a { margin: 0; line-height: var(--lh-body); }

.pagelead {
  position: relative;
  overflow: hidden;
  isolation: isolate;
  background: var(--color-surface);
  border-bottom: 1px solid var(--color-border-soft);
}

.pagelead__bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
  z-index: -2;
  opacity: 0.42;
}

.pagelead::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background: linear-gradient(120deg, rgba(11, 13, 14, 0.96), rgba(11, 13, 14, 0.72));
}

.pagelead__wrap {
  padding-block: clamp(30px, 6vw, 56px);
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.bonus-matrix__actions {
  margin-top: 22px;
}

.pagelead__title {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(1.7rem, 1.3rem + 2vw, 2.4rem);
  color: var(--color-on-dark);
}

.breadcrumb {
  font-size: var(--fs-small);
}

.breadcrumb__list {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px;
  list-style: none;
  padding: 0;
}

.breadcrumb__item {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--color-text);
}

.breadcrumb__item::after {
  content: "›";
  color: var(--color-text-dim);
}

.breadcrumb__item:last-child::after { content: none; }

.breadcrumb__item a {
  color: var(--color-text);
  text-decoration: underline;
  text-underline-offset: 2px;
}
.breadcrumb__item a:hover { color: var(--color-accent-2); }
.breadcrumb__item[aria-current] {
  color: var(--color-on-dark);
  font-weight: 600;
}

.notfound {
  min-height: 60vh;
  text-align: center;
  padding-block: clamp(50px, 10vw, 100px);
}

.notfound__inner {
  max-width: 560px;
  margin-inline: auto;
}

.notfound__code {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(4rem, 3rem + 8vw, 7rem);
  line-height: 1;
  color: var(--color-accent);
}

.notfound__title {
  margin-top: 8px;
  font-size: clamp(1.5rem, 1.2rem + 1.6vw, 2rem);
  color: var(--color-heading);
}

.notfound__text {
  margin-top: 12px;
  color: var(--color-text);
}

.notfound__links {
  margin-top: 22px;
}

.notfound__links .btn {
  margin: 6px;
}

.page-foot {
  background: var(--color-footer-bg);
  border-top: 1px solid var(--color-border-soft);
  padding-block: var(--footer-padding-v);
  margin-top: var(--section-gap-mob);
}

.page-foot__top {
  display: grid;
  gap: 22px;
}

.page-foot__brandcol {
  display: flex;
  flex-direction: column;
  gap: 14px;
  max-width: 340px;
}

.page-foot__brand img {
  height: 26px;
  width: auto;
  object-fit: contain;
}

.page-foot__tagline {
  font-size: 0.92rem;
  color: var(--color-text-dim);
}

.page-foot__age {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: var(--fs-small);
  color: var(--color-text-dim);
}

.page-foot__seal {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  flex-shrink: 0;
  border-radius: 50%;
  border: 2px solid var(--color-accent);
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 0.85rem;
  color: var(--color-accent-2);
}

.page-foot__cols {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px 20px;
}

.page-foot__coltitle {
  font-family: var(--font-display);
  font-size: var(--fs-small);
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--color-text-dim);
  margin-bottom: 9px;
}

.page-foot__list {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin: 0;
  padding-inline-start: 0;
  list-style: none;
}

.page-foot__list a {
  color: var(--color-text);
  font-size: 0.94rem;
  transition: color var(--t-fast) var(--ease-out);
}

.page-foot__list a:hover { color: var(--color-accent-2); }

.page-foot__bottom {
  margin-top: 20px;
  padding-top: 18px;
  border-top: 1px solid var(--color-border-soft);
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: center;
  justify-content: space-between;
}

.page-foot__copy {
  font-size: var(--fs-small);
  color: var(--color-text-dim);
}

.page-foot__disclaimer {
  font-size: var(--fs-small);
  color: var(--color-text-dim);
  max-width: 60ch;
}

.page-foot__disclaimer a {
  color: var(--color-on-dark);
  text-decoration: underline;
  text-underline-offset: 2px;
}

.page-foot__disclaimer a:hover { color: var(--color-accent-2); }

@media (min-width: 720px) {
  .page-foot__top {
    grid-template-columns: 1.4fr 2fr;
  }
  .page-foot__cols {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (min-width: 480px) {
  .payrack__grid { grid-template-columns: repeat(auto-fill, minmax(110px, 1fr)); }
  .tile { width: clamp(160px, 32vw, 190px); }
}
