@font-face {
  font-family: "Chakra Petch";
  src: url(/assets/fonts/chakra-petch-600-latin.woff2) format("woff2");
  font-weight: 600;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Chakra Petch";
  src: url(/assets/fonts/chakra-petch-700-latin.woff2) format("woff2");
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}

:root {
  --c-bg: #293366;
  --c-bg-deep: #1c2450;
  --c-panel: #2f3b75;
  --c-panel-2: #374485;
  --c-line: #46538f;
  --c-line-soft: rgba(143, 210, 255, 0.16);
  --c-ink: #efefef;
  --c-ink-dim: #b7bfe0;
  --c-ink-mute: #8f9ac9;
  --c-accent: #ffd500;
  --c-accent-2: #ffc60a;
  --c-cool: #59c8ff;
  --c-cta-bg: #ffd500;
  --c-cta-bg-hover: #ffc60a;
  --c-cta-ink: #101326;
  --c-header: #101326;
  --c-footer: #000000;

  --ff-display: "Chakra Petch", "Segoe UI Semibold", system-ui, sans-serif;
  --ff-body: system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;

  --fs-micro: 0.8rem;
  --fs-small: 0.875rem;
  --fs-body: 1rem;
  --fs-lead: 1.25rem;
  --fs-card-title: 1rem;
  --fs-section-title: clamp(1.3rem, 1.05rem + 1vw, 1.75rem);
  --fs-sub-title: clamp(1.05rem, 1rem + 0.4vw, 1.2rem);
  --fs-hero: clamp(1.8rem, 1.25rem + 2.4vw, 2.441rem);

  --lh-body: 1.65;
  --lh-tight: 1.2;

  --radius: 4px;
  --bevel: 14px;
  --bevel-sm: 9px;

  --header-h: 60px;
  --sidebar-w: 300px;
  --gutter: 16px;
  --section-gap: 72px;
  --section-gap-mob: 48px;
  --hero-padding-v: 56px;
  --footer-padding-v: 40px;
  --panel-pad: 20px;

  --z-float: 60;
  --z-header: 100;
  --z-menu-backdrop: 1;
  --z-menu: 2;

  --t-fast: 150ms;
  --t-mid: 250ms;
  --t-slow: 340ms;
  --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);
}

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

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

body {
  margin: 0;
  background-color: var(--c-bg);
  background-image:
    radial-gradient(1100px 520px at 82% -8%, rgba(89, 200, 255, 0.14), transparent 62%),
    radial-gradient(760px 420px at 6% 4%, rgba(92, 115, 230, 0.22), transparent 60%),
    linear-gradient(180deg, var(--c-bg-deep) 0%, var(--c-bg) 34%, var(--c-bg-deep) 100%);
  background-attachment: scroll;
  color: var(--c-ink);
  font-family: var(--ff-body);
  font-size: var(--fs-body);
  line-height: var(--lh-body);
}

img {
  max-width: 100%;
  height: auto;
}

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

a {
  color: var(--c-cool);
  text-decoration-thickness: 1px;
  text-underline-offset: 3px;
  transition: color var(--t-fast) var(--ease-out);
}

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

a:focus-visible,
button:focus-visible {
  outline: 0;
  box-shadow: 0 0 0 2px var(--c-bg-deep), 0 0 0 4px var(--c-accent);
}

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

.nowrap {
  white-space: nowrap;
}

.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  margin: -1px;
  padding: 0;
  overflow: hidden;
  clip-path: inset(50%);
  white-space: nowrap;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 46px;
  padding: 11px 22px;
  font-family: var(--ff-display);
  font-weight: 700;
  font-size: var(--fs-small);
  letter-spacing: 0.06em;
  text-transform: uppercase;
  text-decoration: none;
  text-align: center;
  overflow-wrap: break-word;
  min-width: 0;
  clip-path: polygon(var(--bevel-sm) 0, 100% 0, 100% calc(100% - var(--bevel-sm)), calc(100% - var(--bevel-sm)) 100%, 0 100%, 0 var(--bevel-sm));
  transition: background-color var(--t-fast) var(--ease-out), color var(--t-fast) var(--ease-out), border-color var(--t-fast) var(--ease-out);
}

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

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

.btn--ghost {
  background-color: rgba(16, 19, 38, 0.55);
  color: var(--c-ink);
  border: 1px solid var(--c-line);
}

.btn--ghost:hover {
  background-color: rgba(16, 19, 38, 0.85);
  color: var(--c-accent);
  border-color: var(--c-accent);
}

.btn--small {
  min-height: 40px;
  padding: 9px 16px;
  font-size: var(--fs-micro);
}

.panel {
  position: relative;
  background-color: var(--c-panel);
  border: 1px solid var(--c-line);
  clip-path: polygon(var(--bevel) 0, 100% 0, 100% calc(100% - var(--bevel)), calc(100% - var(--bevel)) 100%, 0 100%, 0 var(--bevel));
  padding: var(--panel-pad);
}

.section-head {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-bottom: 22px;
}

.section-head__title {
  position: relative;
  margin: 0;
  padding-left: 22px;
  font-family: var(--ff-display);
  font-weight: 700;
  font-size: var(--fs-section-title);
  line-height: var(--lh-tight);
  letter-spacing: 0.01em;
}

.section-head__title::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.45em;
  width: 10px;
  height: 10px;
  background-color: var(--c-accent);
  transform: rotate(45deg);
}

.section-head__sub {
  margin: 0;
  padding-left: 22px;
  color: var(--c-ink-dim);
  font-size: var(--fs-small);
  max-width: 62ch;
}

.section-foot {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 12px;
  margin-top: 22px;
}

.section-foot__note {
  margin: 0;
  color: var(--c-ink-mute);
  font-size: var(--fs-micro);
  flex: 1 1 240px;
  min-width: 0;
}

.site-top {
  position: sticky;
  top: 0;
  z-index: var(--z-header);
  background-color: var(--c-header);
  border-bottom: 1px solid rgba(143, 210, 255, 0.18);
}

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

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

.site-top__mark {
  display: block;
  width: 104px;
  height: auto;
}

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

.site-top__cta {
  max-width: 46vw;
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
}

.site-top__burger {
  display: inline-flex;
  flex-direction: column;
  justify-content: space-between;
  width: 44px;
  height: 44px;
  padding: 13px 10px;
  flex-shrink: 0;
}

.site-top__burger span {
  display: block;
  height: 2px;
  background-color: var(--c-ink);
  transition: background-color var(--t-fast) var(--ease-out);
}

.site-top__burger span:nth-child(1) {
  width: 100%;
}

.site-top__burger span:nth-child(2) {
  width: 62%;
}

.site-top__burger span:nth-child(3) {
  width: 84%;
}

.site-top__burger:hover span {
  background-color: var(--c-accent);
}

.site-top__backdrop {
  position: fixed;
  inset: 0;
  z-index: var(--z-menu-backdrop);
  background-color: rgba(9, 11, 24, 0.72);
  opacity: 0;
  visibility: hidden;
  transition: opacity var(--t-slow) var(--ease-out), visibility 0s linear var(--t-slow);
}

.site-top__nav {
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  z-index: var(--z-menu);
  width: min(var(--sidebar-w), 84vw);
  padding: 78px 22px 28px;
  background-color: var(--c-header);
  border-left: 1px solid var(--c-line);
  transform: translateX(102%);
  visibility: hidden;
  transition: transform var(--t-slow) var(--ease-out), visibility 0s linear var(--t-slow);
}

.site-top.is-open .site-top__backdrop {
  opacity: 1;
  visibility: visible;
  transition: opacity var(--t-slow) var(--ease-out), visibility 0s;
}

.site-top.is-open .site-top__nav {
  transform: translateX(0);
  visibility: visible;
  transition: transform var(--t-slow) var(--ease-out), visibility 0s;
}

.site-top__list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.site-top__link {
  display: block;
  padding: 12px 10px;
  color: var(--c-ink);
  font-family: var(--ff-display);
  font-weight: 600;
  font-size: var(--fs-small);
  letter-spacing: 0.05em;
  text-transform: uppercase;
  text-decoration: none;
  border-left: 2px solid transparent;
  transition: color var(--t-fast) var(--ease-out), border-color var(--t-fast) var(--ease-out), background-color var(--t-fast) var(--ease-out);
}

.site-top__link:hover {
  color: var(--c-accent);
  border-left-color: var(--c-accent);
  background-color: rgba(255, 213, 0, 0.06);
}

.site-top__link--active {
  color: var(--c-accent);
  border-left-color: var(--c-accent);
}

.site-top__close {
  position: absolute;
  z-index: var(--z-menu);
  top: 16px;
  right: 16px;
  width: 44px;
  height: 44px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--c-ink);
  transition: color var(--t-fast) var(--ease-out);
}

.site-top__close:hover {
  color: var(--c-accent);
}

.hero-deck,
.page-hero {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  padding-block: var(--hero-padding-v);
  border-bottom: 1px solid var(--c-line-soft);
}

.hero-deck__bg,
.page-hero__bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
}

.page-hero__bg {
  object-position: left center;
}

.hero-deck__veil,
.page-hero__veil {
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(180deg, rgba(16, 19, 38, 0.62) 0%, rgba(16, 19, 38, 0.86) 78%, var(--c-bg-deep) 100%),
    linear-gradient(90deg, rgba(16, 19, 38, 0.9) 0%, rgba(16, 19, 38, 0.35) 100%);
}

.hero-deck__inner,
.page-hero__inner {
  position: relative;
  z-index: 2;
}

.hero-deck__kicker,
.page-hero__kicker {
  display: inline-block;
  margin-bottom: 14px;
  padding: 5px 12px;
  background-color: rgba(255, 213, 0, 0.12);
  border: 1px solid rgba(255, 213, 0, 0.4);
  color: var(--c-accent);
  font-family: var(--ff-display);
  font-weight: 600;
  font-size: var(--fs-micro);
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.hero-deck__title,
.page-hero__title {
  max-width: 20ch;
  margin: 0 0 14px;
  font-family: var(--ff-display);
  font-weight: 700;
  font-size: var(--fs-hero);
  line-height: var(--lh-tight);
  overflow-wrap: break-word;
}

.hero-deck__sub,
.page-hero__sub {
  max-width: 56ch;
  margin: 0 0 24px;
  color: var(--c-ink-dim);
  font-size: var(--fs-body);
}

.hero-deck__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 26px;
}

.hero-deck__facts {
  display: grid;
  grid-template-columns: 1fr;
  gap: 10px;
  margin: 0;
  padding: 0;
  list-style: none;
  max-width: 780px;
}

.hero-deck__fact {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 2px;
  padding: 10px 14px;
  background-color: rgba(28, 36, 80, 0.72);
  border-left: 2px solid var(--c-accent);
  color: var(--c-ink-dim);
  font-size: var(--fs-small);
  min-width: 0;
  overflow-wrap: break-word;
}

.hero-deck__fact strong {
  color: var(--c-ink);
  font-family: var(--ff-display);
  font-weight: 600;
  letter-spacing: 0.02em;
}

.crumbs {
  margin-bottom: 16px;
  font-size: var(--fs-micro);
  color: var(--c-ink-mute);
}

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

.crumbs__item {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.crumbs__item + .crumbs__item::before {
  content: "/";
  color: var(--c-line);
}

.crumbs a {
  color: var(--c-ink-dim);
  text-decoration: none;
}

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

.band {
  margin-block-start: var(--section-gap-mob);
}

.payments-rack,
.live-rail,
.slot-grid,
.licence-panel,
.band-cta,
.final-cta,
.page-links {
  margin-block-start: var(--section-gap-mob);
}

main > section:first-child {
  margin-block-start: 0;
}

.page-copy {
  font-size: var(--fs-body);
  line-height: var(--lh-body);
  color: var(--c-ink-dim);
}

.page-copy h1,
.page-copy h2,
.page-copy h3,
.page-copy h4 {
  color: var(--c-ink);
  font-family: var(--ff-display);
  font-weight: 700;
  line-height: var(--lh-tight);
  overflow-wrap: break-word;
}

.page-copy h1 {
  margin: 0 0 0.5em;
  font-size: var(--fs-hero);
}

.page-copy h2 {
  margin: 1.6em 0 0.5em;
  font-size: var(--fs-section-title);
  padding-left: 22px;
  position: relative;
}

.page-copy h2::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.45em;
  width: 10px;
  height: 10px;
  background-color: var(--c-accent);
  transform: rotate(45deg);
}

.page-copy h3 {
  margin: 1.5em 0 0.4em;
  font-size: var(--fs-sub-title);
  font-weight: 600;
  color: var(--c-ink);
}

.page-copy p {
  margin: 0 0 1.15em;
}

.page-copy ul,
.page-copy ol {
  margin: 0 0 1.3em;
  padding-left: 1.3em;
}

.page-copy li {
  margin-bottom: 0.6em;
}

.page-copy li::marker {
  color: var(--c-accent);
}

.page-copy blockquote {
  margin: 0 0 1.3em;
  padding: 14px 18px;
  background-color: rgba(28, 36, 80, 0.7);
  border-left: 3px solid var(--c-accent);
  color: var(--c-ink);
}

.page-copy img {
  display: block;
  width: 100%;
  height: auto;
  margin: 1.4em 0;
}

.page-copy code,
.page-copy pre {
  font-family: ui-monospace, "SFMono-Regular", "Consolas", monospace;
  font-size: var(--fs-small);
  color: var(--c-accent-2);
}

.page-copy hr {
  height: 1px;
  margin: 2em 0;
  border: 0;
  background-color: var(--c-line);
}

.page-copy strong {
  color: var(--c-ink);
  font-weight: 600;
}

.page-copy a {
  color: var(--c-cool);
}

.page-copy__table-wrap {
  margin: 0 0 1.3em;
}

.page-copy table,
.page-copy thead,
.page-copy tbody,
.page-copy tr,
.page-copy th,
.page-copy td {
  display: block;
}

.page-copy table {
  width: 100%;
  border-collapse: collapse;
  font-size: var(--fs-small);
}

.page-copy tr {
  padding-block: 4px;
}

.page-copy th,
.page-copy td {
  padding: 10px 12px;
  text-align: left;
  border-bottom: 1px solid var(--c-line);
}

.page-copy thead th {
  color: var(--c-ink);
  font-family: var(--ff-display);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  font-size: var(--fs-micro);
  background-color: rgba(28, 36, 80, 0.6);
}

.page-copy tbody tr:nth-child(odd) td {
  background-color: rgba(47, 59, 117, 0.35);
}

.shot {
  margin: 1.6em 0;
  padding: 0;
}

.shot__frame {
  position: relative;
  width: 100%;
  overflow: hidden;
  border: 1px solid var(--c-line);
  background-color: var(--c-bg-deep);
  clip-path: polygon(var(--bevel) 0, 100% 0, 100% calc(100% - var(--bevel)), calc(100% - var(--bevel)) 100%, 0 100%, 0 var(--bevel));
}

.shot__frame img {
  display: block;
  width: 100%;
  height: auto;
}

.shot figcaption {
  margin-top: 10px;
  color: var(--c-ink-mute);
  font-size: var(--fs-micro);
}

.shot--portrait .shot__frame {
  max-width: 320px;
}

.band-cta__inner {
  display: flex;
  flex-direction: column;
  gap: 14px;
  padding: 22px;
  background-color: rgba(28, 36, 80, 0.78);
  border: 1px solid var(--c-line);
  border-left: 3px solid var(--c-accent);
}

.band-cta__text {
  margin: 0;
  color: var(--c-ink-dim);
  font-size: var(--fs-small);
  max-width: 60ch;
}

.band-cta__title {
  margin: 0;
  font-family: var(--ff-display);
  font-weight: 700;
  font-size: var(--fs-sub-title);
  color: var(--c-ink);
}

.payments-rack__grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(104px, 1fr));
  gap: 10px;
}

.payments-rack__cell {
  display: flex;
  align-items: center;
  justify-content: center;
  min-width: 0;
  overflow: hidden;
  min-height: 66px;
  padding: 12px;
  background-color: rgba(239, 239, 239, 0.94);
  border: 1px solid rgba(70, 83, 143, 0.4);
  clip-path: polygon(var(--bevel-sm) 0, 100% 0, 100% calc(100% - var(--bevel-sm)), calc(100% - var(--bevel-sm)) 100%, 0 100%, 0 var(--bevel-sm));
}

.payments-rack__img {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  max-width: 92px;
}

.payments-rack__img img {
  max-width: 100%;
  height: auto;
  object-fit: contain;
  object-position: center center;
}

.live-rail__viewport {
  position: relative;
}

.live-rail__track {
  display: flex;
  gap: 12px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scroll-padding-inline: var(--gutter);
  scrollbar-width: none;
  -ms-overflow-style: none;
  padding-block: 4px;
}

.live-rail__track::-webkit-scrollbar {
  display: none;
}

.live-rail__card,
.slot-grid__card {
  position: relative;
  isolation: isolate;
  display: flex;
  flex-direction: column;
  min-width: 0;
  color: var(--c-ink);
  text-decoration: none;
  background-color: var(--c-panel);
  border: 1px solid var(--c-line);
  clip-path: polygon(var(--bevel-sm) 0, 100% 0, 100% calc(100% - var(--bevel-sm)), calc(100% - var(--bevel-sm)) 100%, 0 100%, 0 var(--bevel-sm));
  transition: border-color var(--t-fast) var(--ease-out), background-color var(--t-fast) var(--ease-out);
}

.live-rail__card {
  flex: 0 0 auto;
  width: clamp(146px, 44vw, 184px);
  scroll-snap-align: start;
}

.live-rail__card:hover,
.slot-grid__card:hover {
  border-color: var(--c-accent);
  background-color: var(--c-panel-2);
}

.live-rail__media,
.slot-grid__media {
  position: relative;
  width: 100%;
  aspect-ratio: 1 / 1;
  overflow: hidden;
  min-height: 110px;
}

.live-rail__media img,
.slot-grid__media img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
}

.live-rail__media::after,
.slot-grid__media::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(215deg, rgba(255, 213, 0, 0.42) 0%, rgba(255, 213, 0, 0) 52%);
  opacity: 0;
  transition: opacity var(--t-mid) var(--ease-out);
}

.live-rail__card:hover .live-rail__media::after,
.live-rail__card:focus-visible .live-rail__media::after,
.slot-grid__card:hover .slot-grid__media::after,
.slot-grid__card:focus-visible .slot-grid__media::after {
  opacity: 1;
}

.live-rail__chip,
.slot-grid__chip {
  position: absolute;
  top: 0;
  right: 0;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  background-color: var(--c-accent);
  color: var(--c-cta-ink);
  clip-path: polygon(0 0, 100% 0, 100% 100%, 12px 100%, 0 calc(100% - 12px));
  transition: background-color var(--t-fast) var(--ease-out);
}

.live-rail__card:hover .live-rail__chip,
.slot-grid__card:hover .slot-grid__chip {
  background-color: var(--c-accent-2);
}

.live-rail__chip svg,
.slot-grid__chip svg {
  width: 13px;
  height: 13px;
  display: block;
}

.live-rail__name,
.slot-grid__name {
  display: -webkit-box;
  padding: 10px 12px 12px;
  font-family: var(--ff-display);
  font-weight: 600;
  font-size: var(--fs-micro);
  line-height: 1.35;
  color: var(--c-ink);
  overflow: hidden;
  text-overflow: ellipsis;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
}

.live-rail__nav {
  display: none;
}

.live-rail__btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: clamp(36px, 5vw, 44px);
  height: clamp(36px, 5vw, 44px);
  flex-shrink: 0;
  background-color: rgba(16, 19, 38, 0.8);
  border: 1px solid var(--c-line);
  color: var(--c-ink);
  transition: background-color var(--t-fast) var(--ease-out), color var(--t-fast) var(--ease-out), border-color var(--t-fast) var(--ease-out);
}

.live-rail__btn:hover {
  color: var(--c-cta-ink);
  background-color: var(--c-accent);
  border-color: var(--c-accent);
}

.live-rail__btn svg {
  width: 15px;
  height: 15px;
}

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

.licence-panel__body {
  display: grid;
  grid-template-columns: 1fr;
  gap: 14px;
}

.licence-panel__item {
  padding: 16px 18px;
  background-color: rgba(28, 36, 80, 0.7);
  border: 1px solid var(--c-line);
  border-top: 2px solid var(--c-cool);
  min-width: 0;
}

.licence-panel__label {
  display: block;
  margin-bottom: 6px;
  color: var(--c-ink-mute);
  font-family: var(--ff-display);
  font-weight: 600;
  font-size: var(--fs-micro);
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.licence-panel__value {
  margin: 0;
  color: var(--c-ink);
  font-size: var(--fs-small);
}

.faq-item {
  border-bottom: 1px solid var(--c-line);
}

.page-copy .faq-item:first-of-type {
  border-top: 1px solid var(--c-line);
}

.page-copy h3.faq-item__q {
  position: relative;
  margin: 0;
  padding: 16px 46px 16px 0;
  font-family: var(--ff-display);
  font-weight: 600;
  font-size: var(--fs-sub-title);
  color: var(--c-ink);
  cursor: pointer;
  transition: color var(--t-fast) var(--ease-out);
}

.page-copy h3.faq-item__q:hover {
  color: var(--c-accent);
}

.page-copy h3.faq-item__q::after,
.page-copy h3.faq-item__q::before {
  content: "";
  position: absolute;
  right: 12px;
  top: 50%;
  width: 14px;
  height: 2px;
  background-color: var(--c-accent);
  transition: transform var(--t-mid) var(--ease-toggle), opacity var(--t-mid) var(--ease-toggle);
}

.page-copy h3.faq-item__q::before {
  transform: rotate(90deg);
}

.faq-item.is-open .faq-item__q::before {
  transform: rotate(0deg);
  opacity: 0;
}

.page-copy p.faq-item__a {
  margin: 0;
  max-height: 0;
  overflow: hidden;
  overflow-wrap: break-word;
  color: var(--c-ink-dim);
  transition: max-height var(--t-slow) var(--ease-toggle);
}

.faq-item.is-open .faq-item__a {
  max-height: 460px;
  padding-bottom: 18px;
}

.final-cta__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  min-width: 0;
}

.final-cta__inner {
  display: flex;
  flex-direction: column;
  gap: 16px;
  min-width: 0;
  padding: 26px 22px;
  background-color: var(--c-panel);
  border: 1px solid var(--c-accent);
  clip-path: polygon(var(--bevel) 0, 100% 0, 100% calc(100% - var(--bevel)), calc(100% - var(--bevel)) 100%, 0 100%, 0 var(--bevel));
}

.final-cta__title {
  margin: 0;
  font-family: var(--ff-display);
  font-weight: 700;
  font-size: var(--fs-section-title);
  line-height: var(--lh-tight);
  color: var(--c-ink);
}

.final-cta__text {
  margin: 0;
  color: var(--c-ink-dim);
  font-size: var(--fs-small);
  max-width: 64ch;
}

.final-cta__note {
  margin: 0;
  color: var(--c-ink-mute);
  font-size: var(--fs-micro);
}

.dock-cta {
  position: fixed;
  right: 14px;
  bottom: 14px;
  z-index: var(--z-float);
  display: inline-flex;
  align-items: center;
  gap: 8px;
  min-height: 46px;
  padding: 11px 18px;
  background-color: var(--c-cta-bg);
  color: var(--c-cta-ink);
  font-family: var(--ff-display);
  font-weight: 700;
  font-size: var(--fs-micro);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  text-decoration: none;
  white-space: nowrap;
  box-shadow: 0 10px 26px -12px rgba(0, 0, 0, 0.9);
  clip-path: polygon(var(--bevel-sm) 0, 100% 0, 100% calc(100% - var(--bevel-sm)), calc(100% - var(--bevel-sm)) 100%, 0 100%, 0 var(--bevel-sm));
  transition: background-color var(--t-fast) var(--ease-out), opacity var(--t-mid) var(--ease-out), visibility 0s linear var(--t-mid);
}

.site-top.is-open ~ main .dock-cta {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity var(--t-fast) var(--ease-in), visibility 0s linear var(--t-fast);
}

.dock-cta:hover {
  background-color: var(--c-cta-bg-hover);
  color: var(--c-cta-ink);
}

.dock-cta svg {
  width: 15px;
  height: 15px;
  flex-shrink: 0;
}

.site-foot {
  margin-top: var(--section-gap-mob);
  padding-block: var(--footer-padding-v);
  background-color: var(--c-footer);
  border-top: 1px solid var(--c-line);
  color: var(--c-ink-dim);
}

.site-foot__cols {
  display: grid;
  grid-template-columns: 1fr;
  gap: 28px;
}

.site-foot__col-title {
  margin: 0 0 12px;
  font-family: var(--ff-display);
  font-weight: 600;
  font-size: var(--fs-micro);
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--c-ink-mute);
}

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

.site-foot__list a {
  color: var(--c-ink-dim);
  text-decoration: none;
  font-size: var(--fs-small);
}

.site-foot__list a:hover {
  color: var(--c-accent);
}

.site-foot__brand img {
  display: block;
  width: 132px;
  height: auto;
  object-fit: contain;
  object-position: left center;
}

.site-foot__about {
  margin: 14px 0 0;
  font-size: var(--fs-micro);
  color: var(--c-ink-mute);
  max-width: 44ch;
}

.site-foot__payments {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px;
  margin-top: 26px;
  padding-top: 20px;
  border-top: 1px solid rgba(70, 83, 143, 0.45);
}

.site-foot__payment {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 62px;
  height: 34px;
  padding: 5px 7px;
  background-color: rgba(239, 239, 239, 0.9);
  border-radius: var(--radius);
  overflow: hidden;
  min-width: 0;
}

.site-foot__payment img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
  object-position: center center;
}

.site-foot__legal {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 14px;
  margin-top: 24px;
  padding-top: 20px;
  border-top: 1px solid rgba(70, 83, 143, 0.45);
  font-size: var(--fs-micro);
  color: var(--c-ink-mute);
}

.age-seal {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  flex-shrink: 0;
  border-radius: 50%;
  border: 2px solid var(--c-accent);
  color: var(--c-accent);
  font-family: var(--ff-display);
  font-weight: 700;
  font-size: var(--fs-small);
}

.site-foot__disclaimer {
  margin: 0;
  flex: 1 1 260px;
  min-width: 0;
}

.site-foot__copyright {
  margin: 16px 0 0;
  font-size: var(--fs-micro);
  color: var(--c-ink-mute);
}

.page-links__list {
  list-style: none;
  margin: 18px 0 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(190px, 1fr));
  gap: 10px;
}

.page-links__list a {
  display: block;
  padding: 14px 16px;
  min-width: 0;
  background-color: rgba(28, 36, 80, 0.7);
  border: 1px solid var(--c-line);
  color: var(--c-ink);
  font-family: var(--ff-display);
  font-weight: 600;
  font-size: var(--fs-small);
  letter-spacing: 0.04em;
  text-decoration: none;
  transition: color var(--t-fast) var(--ease-out), border-color var(--t-fast) var(--ease-out), background-color var(--t-fast) var(--ease-out);
}

.page-links__list a:hover {
  color: var(--c-accent);
  border-color: var(--c-accent);
  background-color: rgba(47, 59, 117, 0.85);
}

.live-rail__btn[disabled] {
  opacity: 0.35;
  cursor: default;
}

@media (min-width: 600px) {
  .page-copy table {
    display: table;
  }

  .page-copy thead {
    display: table-header-group;
  }

  .page-copy tbody {
    display: table-row-group;
  }

  .page-copy tr {
    display: table-row;
    padding-block: 0;
  }

  .page-copy th,
  .page-copy td {
    display: table-cell;
  }
}

@media (min-width: 480px) {
  :root {
    --gutter: 20px;
    --panel-pad: 24px;
  }

  .hero-deck__facts {
    grid-template-columns: repeat(auto-fit, minmax(236px, 1fr));
  }

  .band-cta__inner {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
  }

  .band-cta__copy {
    min-width: 0;
  }

  .site-foot__payment {
    width: 70px;
    height: 38px;
  }
}

@media (min-width: 768px) {
  :root {
    --header-h: 68px;
    --hero-padding-v: 82px;
    --panel-pad: 28px;
  }

  .band,
  .payments-rack,
  .live-rail,
  .slot-grid,
  .licence-panel,
  .band-cta,
  .final-cta,
  .page-links {
    margin-block-start: var(--section-gap);
  }

  .site-foot {
    margin-top: var(--section-gap);
  }

  .hero-deck__veil,
  .page-hero__veil {
    background:
      linear-gradient(180deg, rgba(16, 19, 38, 0.5) 0%, rgba(16, 19, 38, 0.72) 76%, var(--c-bg-deep) 100%),
      linear-gradient(90deg, rgba(16, 19, 38, 0.94) 12%, rgba(16, 19, 38, 0.22) 82%);
  }

  .payments-rack__grid {
    grid-template-columns: repeat(auto-fill, minmax(118px, 1fr));
  }

  .slot-grid__list {
    grid-template-columns: repeat(auto-fill, minmax(158px, 1fr));
  }

  .licence-panel__body {
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  }

  .live-rail__nav {
    display: flex;
    gap: 8px;
    margin-left: auto;
  }

  .final-cta__inner {
    padding: 34px 32px;
  }

  .site-foot__cols {
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 34px;
  }

  .dock-cta {
    right: 22px;
    bottom: 22px;
    font-size: var(--fs-small);
  }
}

@media (min-width: 1024px) {
  .site-top__burger,
  .site-top__close,
  .site-top__backdrop {
    display: none;
  }

  .site-top__nav {
    position: static;
    width: auto;
    padding: 0;
    background-color: transparent;
    border-left: 0;
    transform: none;
    visibility: visible;
    transition: none;
  }

  .site-top__list {
    flex-direction: row;
    align-items: center;
    gap: 4px;
  }

  .site-top__link {
    padding: 8px 12px;
    border-left: 0;
    border-bottom: 2px solid transparent;
  }

  .site-top__link:hover {
    border-left-color: transparent;
    border-bottom-color: var(--c-accent);
    background-color: transparent;
  }

  .site-top__link--active {
    border-left-color: transparent;
    border-bottom-color: var(--c-accent);
  }

  .site-top__cta {
    max-width: none;
  }

  .hero-deck__title,
  .page-hero__title {
    max-width: 18ch;
  }

  .shot--portrait {
    max-width: 360px;
  }
}

@media (min-width: 1200px) {
  :root {
    --gutter: 24px;
  }
}
