@charset "utf-8";

:root {
  --ink: #100819;
  --ink-2: #0a0411;
  --panel: #1a1028;
  --panel-2: #231736;
  --panel-3: #2c1d42;
  --line: #35214d;
  --line-2: #452a63;
  --rose: #ff2e79;
  --magenta: #c11fd0;
  --orchid: #b06bff;
  --coral: #ff9d7a;
  --mint: #4be0b0;
  --text: #f4edfb;
  --muted: #a291bd;
  --dim: #7b6a96;
  --cta: linear-gradient(135deg, #ff2e79 0%, #c11fd0 100%);
  --glow: 0 10px 34px -12px rgba(255, 46, 121, .62);
  --shadow: 0 18px 40px -22px rgba(0, 0, 0, .9);
  --font-display: "Gabarito", "Trebuchet MS", system-ui, sans-serif;
  --font-body: "Public Sans", system-ui, -apple-system, "Segoe UI", sans-serif;
  --bar: 58px;
  --rail-w: 236px;
  --gap: 14px;
  --r-lg: 16px;
  --r-md: 12px;
  --r-sm: 9px;
  --wrap: 1260px;
}

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

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

/* the topbar is fixed, so anything an anchor jumps to has to reserve its
   height — otherwise the heading lands underneath it */
[id] { scroll-margin-top: calc(var(--bar) + 18px); }
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: .01ms !important; transition-duration: .01ms !important; }
}

body {
  margin: 0;
  background: var(--ink);
  color: var(--text);
  font: 400 15px/1.62 var(--font-body);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
  overflow-wrap: break-word;
}
body.is-locked { overflow: hidden; }

img, svg { max-width: 100%; height: auto; display: block; }
a { color: var(--orchid); text-decoration: none; }
a:hover { color: var(--rose); }
button { font: inherit; color: inherit; cursor: pointer; }
:focus-visible { outline: 2px solid var(--rose); outline-offset: 2px; border-radius: 4px; }

.wrap { width: 100%; max-width: var(--wrap); margin-inline: auto; padding-inline: 14px; }
.sr {
  position: absolute; width: 1px; height: 1px; margin: -1px; padding: 0;
  overflow: hidden; clip: rect(0 0 0 0); white-space: nowrap; border: 0;
}
.skip {
  position: absolute; left: 8px; top: -60px; z-index: 120; padding: 10px 16px;
  background: var(--rose); color: #fff; border-radius: var(--r-sm); font-weight: 700;
  transition: top .18s;
}
.skip:focus { top: 8px; color: #fff; }

/* ---------------------------------------------------------------- topbar -- */
.topbar {
  position: fixed; inset: 0 0 auto 0; z-index: 80; height: var(--bar);
  display: flex; align-items: center;
  background: rgba(13, 6, 21, .92);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(14px);
}
.topbar.is-stuck { box-shadow: 0 10px 30px -18px #000; }
.topbar__inner {
  width: 100%; max-width: 1660px; margin-inline: auto;
  display: flex; align-items: center; gap: 10px; padding-inline: 12px;
}

.brand {
  display: flex; align-items: center; gap: 9px; flex: 0 0 auto;
  /* a long wordmark must clip inside its column, never ride over the nav */
  min-width: 0; overflow: hidden;
}
.brand__mark { width: 30px; height: 30px; flex: 0 0 auto; }
.brand__type { display: block; line-height: 1; }
.brand__name {
  font: 800 19px/1 var(--font-display); letter-spacing: -.4px; color: var(--text);
}
.brand__name em { font-style: normal; color: var(--rose); }
.brand__sub {
  display: block; font: 600 8.5px/1 var(--font-body); letter-spacing: 3.2px;
  color: var(--dim); margin-top: 4px;
}

.tabs { display: none; gap: 6px; margin-left: 10px; }
.tab {
  display: inline-flex; align-items: center; gap: 7px; padding: 8px 13px;
  border-radius: var(--r-sm); color: var(--muted); font-weight: 600; font-size: 14px;
  border: 1px solid transparent; transition: background .18s, color .18s;
}
.tab svg { width: 17px; height: 17px; }
.tab:hover { background: var(--panel-2); color: var(--text); }
.tab.is-on { background: var(--panel-2); border-color: var(--line-2); color: var(--text); }
.tab.is-on svg { color: var(--orchid); }

.topbar__spacer { flex: 1 1 auto; }

.iconbtn {
  display: none; width: 38px; height: 38px; align-items: center; justify-content: center;
  background: var(--panel-2); border: 1px solid var(--line); border-radius: var(--r-sm);
  color: var(--muted);
}
.iconbtn:hover { color: var(--text); border-color: var(--line-2); }
.iconbtn svg { width: 18px; height: 18px; }

.auth { display: flex; align-items: center; gap: 8px; }
.auth .btn { padding: 10px 15px; font-size: 13.5px; }
.auth .btn--ghost { display: none; }

.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  padding: 11px 18px; border-radius: var(--r-sm); border: 1px solid transparent;
  font: 700 14px/1 var(--font-body); letter-spacing: .2px; text-align: center;
  white-space: nowrap; transition: transform .16s, box-shadow .16s, background .16s;
}
.btn:hover { transform: translateY(-1px); }
.btn:active { transform: translateY(0); }
.btn--cta { background: var(--cta); color: #fff; box-shadow: var(--glow); }
.btn--cta:hover { color: #fff; box-shadow: 0 14px 40px -12px rgba(255, 46, 121, .78); }
.btn--ghost { background: transparent; border-color: var(--line-2); color: var(--text); }
.btn--ghost:hover { background: var(--panel-2); color: var(--text); }
.btn--lg { padding: 15px 34px; font-size: 15px; border-radius: var(--r-md); }
.btn--sm { padding: 9px 14px; font-size: 13px; }
.btn--wide { width: 100%; }

.burger {
  width: 40px; height: 38px; display: inline-flex; flex-direction: column;
  align-items: center; justify-content: center; gap: 4px;
  background: var(--panel-2); border: 1px solid var(--line); border-radius: var(--r-sm);
}
.burger span {
  display: block; width: 17px; height: 2px; border-radius: 2px; background: var(--text);
  transition: transform .22s, opacity .18s;
}
.burger[aria-expanded="true"] span:nth-child(1) { transform: translateY(6px) rotate(45deg); }
.burger[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.burger[aria-expanded="true"] span:nth-child(3) { transform: translateY(-6px) rotate(-45deg); }

/* ------------------------------------------------------------------ rail -- */
/* below 1100px this is a drawer: it opens from the right, on the same side as
   the burger that summons it. From 1100px up it becomes the static left rail. */
.rail {
  position: fixed; z-index: 70; top: 0; right: 0; bottom: 0; width: 280px;
  max-width: 86vw; padding: calc(var(--bar) + 12px) 0 26px;
  background: var(--ink-2); border-left: 1px solid var(--line);
  overflow-y: auto; overscroll-behavior: contain;
  transform: translateX(102%); transition: transform .26s ease;
}
.rail.is-open { transform: translateX(0); }
.rail__group { padding: 6px 10px; }
.rail__group + .rail__group { border-top: 1px solid var(--line); margin-top: 6px; padding-top: 12px; }
.rail__title {
  font: 700 10.5px/1 var(--font-body); letter-spacing: 1.7px; text-transform: uppercase;
  color: var(--dim); padding: 4px 12px 10px;
}
.rail__link {
  display: flex; align-items: center; gap: 11px; padding: 9px 12px; border-radius: var(--r-sm);
  color: var(--muted); font-size: 14px; font-weight: 500; transition: background .16s, color .16s;
}
.rail__link:hover { background: var(--panel-2); color: var(--text); }
.rail__link.is-on { background: var(--panel-3); color: var(--text); font-weight: 600; }
.rail__link.is-on .rail__ico { color: var(--rose); }
.rail__ico { width: 18px; height: 18px; flex: 0 0 18px; color: var(--dim); }
.rail__cta { padding: 14px 22px 4px; }

.scrim {
  position: fixed; inset: 0; z-index: 65; background: rgba(6, 2, 12, .72);
  backdrop-filter: blur(2px); opacity: 0; visibility: hidden; transition: opacity .24s;
}
.scrim.is-on { opacity: 1; visibility: visible; }

/* ------------------------------------------------------------------ main -- */
.main { padding-top: var(--bar); min-height: 60vh; }
.deck { padding-block: 16px 30px; display: grid; gap: 22px; }
/* grid/flex children default to min-width:auto, which lets the wide tables
   inside them stretch the whole page — pin every track back to zero */
.deck > *, .cards > *, .why__grid > *, .foot__top > *, .foot__cols > *,
.row > *, .panel > *, .tblbox > * { min-width: 0; }
.scrollx { max-width: 100%; }

/* ----------------------------------------------------------------- stage -- */
.stage {
  position: relative; overflow: hidden; border-radius: var(--r-lg);
  border: 1px solid var(--line-2); isolation: isolate; box-shadow: var(--shadow);
}
.stage__art { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; z-index: -2; }
.stage::after {
  content: ""; position: absolute; inset: 0; z-index: -1;
  background:
    radial-gradient(120% 92% at 50% 4%, rgba(193, 31, 208, .34), transparent 62%),
    linear-gradient(180deg, rgba(10, 4, 17, .58) 0%, rgba(10, 4, 17, .34) 42%, rgba(10, 4, 17, .86) 100%);
}
.stage__panel {
  position: relative; padding: 34px 18px 30px; text-align: center;
  display: grid; justify-items: center; gap: 12px;
}
.stage__logo { width: 132px; margin-bottom: 2px; }
.stage__eyebrow {
  font: 600 12px/1 var(--font-body); letter-spacing: 2.6px; text-transform: uppercase;
  color: var(--coral);
}
.stage__big {
  font: 800 clamp(27px, 8.2vw, 60px)/1.04 var(--font-display);
  letter-spacing: -1px; margin: 0; text-wrap: balance;
  text-shadow: 0 6px 26px rgba(0, 0, 0, .6);
}
.stage__big span { display: block; }
.stage__big span + span {
  background: linear-gradient(96deg, var(--coral), var(--rose) 58%, var(--orchid));
  -webkit-background-clip: text; background-clip: text; color: transparent;
}
.stage__sub {
  margin: 0; max-width: 46ch; color: #e3d6f2; font-size: 14px;
  text-shadow: 0 2px 12px rgba(0, 0, 0, .75);
}
.stage__cta { margin-top: 6px; }
.stage__trust {
  display: flex; flex-wrap: wrap; justify-content: center; gap: 8px 10px;
  margin-top: 8px; padding: 0; list-style: none;
}
.stage__trust li {
  display: flex; align-items: baseline; gap: 6px; padding: 7px 13px;
  background: rgba(16, 8, 25, .58); border: 1px solid var(--line-2);
  border-radius: 999px; backdrop-filter: blur(6px);
}
.stage__trust b { font: 700 13px/1 var(--font-display); color: var(--text); }
.stage__trust span { font-size: 11px; letter-spacing: .4px; color: var(--muted); }

/* ------------------------------------------------------------------ rows -- */
.row__head { display: flex; align-items: center; gap: 10px; margin-bottom: 7px; }
.row__title {
  font: 700 clamp(17px, 4.4vw, 22px)/1.2 var(--font-display); letter-spacing: -.3px;
  display: flex; align-items: center; gap: 9px; margin: 0;
}
.row__title svg { width: 20px; height: 20px; color: var(--rose); flex: 0 0 auto; }
.row__tools { margin-left: auto; display: flex; align-items: center; gap: 7px; }
.arw {
  width: 34px; height: 34px; display: none; align-items: center; justify-content: center;
  border-radius: 50%; background: var(--panel-2); border: 1px solid var(--line);
  color: var(--muted);
}
.arw:hover { color: var(--text); border-color: var(--line-2); }
.arw[disabled] { opacity: .3; cursor: default; }
.arw svg { width: 15px; height: 15px; }

.reel {
  display: grid; grid-auto-flow: column; grid-auto-columns: 42%;
  gap: 10px; overflow-x: auto;
  /* overflow-x:auto forces the vertical axis to auto as well, so the row clips
     anything that leaves its box — this padding is the room the tiles need for
     their hover lift and glow */
  padding: 5px 0 9px;
  scroll-snap-type: x mandatory; scrollbar-width: none;
}
.reel::-webkit-scrollbar { display: none; }

.tile {
  position: relative; display: block; overflow: hidden; scroll-snap-align: start;
  border-radius: var(--r-md); background: var(--panel-2); border: 1px solid var(--line);
  transition: transform .2s, border-color .2s, box-shadow .2s;
}
.tile:hover { transform: translateY(-3px); border-color: var(--rose); box-shadow: var(--glow); }
.tile img { width: 100%; aspect-ratio: 5 / 7; object-fit: cover; }
.tile__play {
  position: absolute; inset: 0; display: grid; place-items: center;
  background: rgba(12, 5, 20, .58); opacity: 0; transition: opacity .2s;
}
.tile:hover .tile__play { opacity: 1; }
.tile__play span {
  display: grid; place-items: center; width: 44px; height: 44px; border-radius: 50%;
  background: var(--cta); box-shadow: var(--glow);
}
.tile__play svg { width: 17px; height: 17px; color: #fff; margin-left: 2px; }

/* ---------------------------------------------------------------- bonuses -- */
.cards { display: grid; gap: var(--gap); }
.bonus {
  position: relative; overflow: hidden; padding: 20px 18px 18px;
  background:
    radial-gradient(120% 130% at 100% 0%, rgba(193, 31, 208, .30), transparent 58%),
    var(--panel);
  border: 1px solid var(--line-2); border-radius: var(--r-lg);
  display: grid; gap: 10px; align-content: start;
}
.bonus__kicker {
  font: 600 10.5px/1 var(--font-body); letter-spacing: 2px; text-transform: uppercase;
  color: var(--muted);
}
.bonus__title { font: 800 clamp(21px, 5.4vw, 27px)/1.12 var(--font-display); letter-spacing: -.5px; margin: 0; }
.bonus__line { margin: 0; color: var(--muted); font-size: 13.5px; }
.bonus__foot { display: flex; flex-wrap: wrap; align-items: center; gap: 9px; margin-top: 4px; }
.code {
  display: inline-flex; align-items: baseline; gap: 7px; padding: 8px 12px;
  border: 1px dashed var(--rose); border-radius: var(--r-sm);
  background: rgba(255, 46, 121, .09);
}
.code i {
  font: 600 9.5px/1 var(--font-body); font-style: normal; letter-spacing: 1.4px;
  text-transform: uppercase; color: var(--muted);
}
.code b { font: 800 14px/1 var(--font-display); letter-spacing: 1px; color: var(--rose); }
.bonus__meta { margin: 0; font-size: 11.5px; color: var(--dim); }

/* ------------------------------------------------------------------ band -- */
.band {
  position: relative; overflow: hidden; border-radius: var(--r-lg);
  border: 1px solid var(--line-2); padding: 30px 18px; text-align: center;
  display: grid; justify-items: center; gap: 11px; isolation: isolate;
}
.band__art { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; z-index: -2; }
.band::after {
  content: ""; position: absolute; inset: 0; z-index: -1;
  background: linear-gradient(105deg, rgba(255, 46, 121, .42), rgba(80, 20, 130, .58) 62%, rgba(10, 4, 17, .72));
}
.band__title {
  margin: 0; font: 800 clamp(24px, 6.6vw, 40px)/1.06 var(--font-display);
  letter-spacing: -.6px; text-transform: uppercase;
}
.band__sub { margin: 0; max-width: 44ch; color: #f0e4fa; font-size: 14px; }
.band__coins { display: flex; gap: 9px; margin-top: 4px; }
.band__coins img { width: 26px; height: 26px; }

/* ------------------------------------------------------------------ wins -- */
.panel {
  background: var(--panel); border: 1px solid var(--line); border-radius: var(--r-lg);
  padding: 16px 14px;
}
.scrollx { overflow-x: auto; -webkit-overflow-scrolling: touch; }
.tbl { width: 100%; min-width: 620px; border-collapse: collapse; font-size: 13.5px; }
.tbl th {
  text-align: left; font: 600 10.5px/1 var(--font-body); letter-spacing: 1.5px;
  text-transform: uppercase; color: var(--dim); padding: 0 12px 12px; white-space: nowrap;
}
.tbl td { padding: 11px 12px; border-top: 1px solid var(--line); vertical-align: middle; }
.tbl tbody tr:hover { background: var(--panel-2); }
.tbl th:nth-child(n+3), .tbl td:nth-child(n+3) { text-align: right; }
.wins__game { display: flex; align-items: center; gap: 10px; white-space: nowrap; }
.wins__game img { width: 34px; height: 34px; border-radius: 7px; object-fit: cover; flex: 0 0 34px; }
.wins__pay { font-weight: 700; color: var(--mint); white-space: nowrap; }
.wins__mult { color: var(--coral); white-space: nowrap; }

/* ------------------------------------------------------------------- why -- */
.why { text-align: center; display: grid; gap: 18px; }
.why__title {
  margin: 0; font: 800 clamp(22px, 5.6vw, 34px)/1.14 var(--font-display); letter-spacing: -.6px;
}
.why__card {
  padding: 22px 16px; background: var(--panel); border: 1px solid var(--line);
  border-radius: var(--r-lg); display: grid; gap: 9px; justify-items: center;
}
.why__card svg { width: 30px; height: 30px; color: var(--rose); }
.why__card b { font: 700 15.5px/1.3 var(--font-display); }
.why__card p { margin: 0; font-size: 13.5px; color: var(--muted); }
.why__badges { display: flex; gap: 12px; align-items: center; justify-content: center; margin-top: 2px; }
.why__badge {
  display: inline-flex; align-items: center; padding: 6px 9px; border-radius: var(--r-sm);
  border: 1px solid transparent; opacity: .88; transition: opacity .16s, border-color .16s;
}
.why__badge:hover { opacity: 1; border-color: var(--line-2); }
.why__badges img { height: 17px; width: auto; }

.paywall { display: grid; gap: 16px; justify-items: center; text-align: center; }
.paywall__label {
  font: 600 10.5px/1 var(--font-body); letter-spacing: 2px; text-transform: uppercase;
  color: var(--dim);
}
.paywall__set { display: flex; flex-wrap: wrap; gap: 16px 24px; align-items: center; justify-content: center; }
.paywall__set img { height: 23px; width: auto; opacity: .85; }
.paywall__set--coin img { height: 27px; }
.paywall__more {
  display: inline-flex; align-items: center; justify-content: center;
  min-width: 42px; height: 27px; padding: 0 10px; border-radius: 999px;
  background: var(--panel-2); border: 1px solid var(--line-2);
  font: 700 12.5px/1 var(--font-display); color: var(--muted); cursor: default;
}

/* ------------------------------------------------------------------- seo -- */
.seo {
  background: var(--panel); border: 1px solid var(--line); border-radius: var(--r-lg);
  padding: 22px 16px 26px;
}
.seo > *:first-child { margin-top: 0; }
.seo h1, .seo h2, .seo h3, .seo h4 {
  font-family: var(--font-display); letter-spacing: -.5px; line-height: 1.2;
  text-wrap: balance; color: var(--text);
}
.seo h1 { font-size: clamp(25px, 6.4vw, 39px); font-weight: 800; margin: 0 0 14px; }
.seo h2 {
  font-size: clamp(20px, 4.8vw, 28px); font-weight: 800; margin: 38px 0 12px;
  padding-top: 20px; border-top: 1px solid var(--line); position: relative;
}
.seo h2::before {
  content: ""; position: absolute; top: -1px; left: 0; width: 54px; height: 2px;
  background: var(--cta);
}
.seo h3 { font-size: clamp(17px, 4vw, 21px); font-weight: 700; margin: 26px 0 9px; color: #f7e9ff; }
.seo h4 {
  font-size: 15.5px; font-weight: 700; margin: 20px 0 8px; color: var(--coral);
}
.seo p { margin: 0 0 14px; color: #ddd2ea; }
.seo strong { color: var(--text); font-weight: 700; }
.seo em { color: var(--muted); }
.seo a { color: var(--rose); text-decoration: underline; text-underline-offset: 3px; }
.seo a:hover { color: var(--coral); }
/* buttons inside the article are buttons, not prose links — `.seo a` would
   otherwise win on specificity and repaint them as underlined rose text */
.seo .btn { text-decoration: none; }
.seo .btn--cta, .seo .btn--cta:hover { color: #fff; }
.seo .btn--ghost, .seo .btn--ghost:hover { color: var(--text); }
.seo hr { border: 0; border-top: 1px solid var(--line); margin: 26px 0; }

.seo ul, .seo ol { margin: 0 0 16px; padding-left: 0; list-style: none; }
.seo ul li, .seo ol li { position: relative; padding-left: 26px; margin-bottom: 8px; color: #ddd2ea; }
.seo ul li::before {
  content: ""; position: absolute; left: 6px; top: .62em; width: 7px; height: 7px;
  border-radius: 2px; background: var(--cta); transform: rotate(45deg);
}
.seo ol { counter-reset: step; }
.seo ol li { padding-left: 34px; }
.seo ol li::before {
  counter-increment: step; content: counter(step);
  position: absolute; left: 0; top: .1em; width: 23px; height: 23px;
  display: grid; place-items: center; border-radius: 7px;
  background: var(--panel-3); border: 1px solid var(--line-2);
  font: 700 11.5px/1 var(--font-display); color: var(--rose);
}
.seo li > ul, .seo li > ol { margin-top: 8px; }

.seo .lead {
  font-size: 16px; color: #eadff5; border-left: 3px solid var(--rose);
  padding: 2px 0 2px 15px; margin-bottom: 18px;
}
.seo .note {
  margin: 0 0 16px; padding: 13px 15px; border-radius: var(--r-md);
  background: var(--panel-2); border: 1px solid var(--line);
  font-size: 13.5px; color: var(--muted);
}
.seo .callout {
  display: table; margin: 22px 0 12px; padding: 11px 17px; border-radius: 999px;
  background: rgba(255, 46, 121, .09); border: 1px solid rgba(255, 46, 121, .30);
  font: 700 15px/1.35 var(--font-display); color: #f9e8f6;
}

.tblbox { margin: 0 0 20px; border: 1px solid var(--line); border-radius: var(--r-md); overflow: hidden; }
.tblbox > .scrollx { padding: 2px; }
.seo table { width: 100%; min-width: 560px; border-collapse: collapse; font-size: 13.5px; }
.seo thead th {
  background: var(--panel-3); text-align: left; padding: 12px 13px;
  font: 700 11px/1.3 var(--font-body); letter-spacing: 1px; text-transform: uppercase;
  color: #f0e2ff; border-bottom: 1px solid var(--line-2); white-space: nowrap;
}
.seo tbody td { padding: 11px 13px; border-bottom: 1px solid var(--line); color: #ddd2ea; }
.seo tbody tr:last-child td { border-bottom: 0; }
.seo tbody tr:nth-child(even) { background: rgba(35, 23, 54, .5); }
.seo td.num, .seo th.num { text-align: right; white-space: nowrap; }

.toc {
  margin: 0 0 26px; padding: 16px 16px 8px; border-radius: var(--r-md);
  background: var(--panel-2); border: 1px solid var(--line);
}
.toc__label {
  font: 700 10.5px/1 var(--font-body); letter-spacing: 1.8px; text-transform: uppercase;
  color: var(--dim); margin-bottom: 11px;
}
.seo .toc ol { margin: 0; padding: 0; list-style: none; columns: 1; }
.seo .toc li { padding: 0 0 8px 15px; margin: 0; position: relative; }
.seo .toc li::before {
  counter-increment: none; content: ""; position: absolute; left: 0; top: .62em;
  width: 6px; height: 6px; min-width: 0; border: 0; border-radius: 2px;
  background: var(--rose); transform: rotate(45deg); display: block;
}
.toc a {
  color: var(--muted); font-size: 13.5px; text-decoration: none; display: inline-block;
  border-bottom: 1px solid transparent;
}
.toc a:hover { color: var(--rose); border-bottom-color: var(--rose); }

.faq { display: grid; gap: 9px; margin-bottom: 18px; }
.faq details {
  background: var(--panel-2); border: 1px solid var(--line); border-radius: var(--r-md);
  overflow: hidden;
}
.faq details[open] { border-color: var(--line-2); }
.faq summary {
  list-style: none; cursor: pointer; padding: 14px 44px 14px 15px; position: relative;
  font: 700 15px/1.35 var(--font-display); color: var(--text);
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after {
  content: ""; position: absolute; right: 16px; top: 50%; width: 9px; height: 9px;
  border-right: 2px solid var(--rose); border-bottom: 2px solid var(--rose);
  transform: translateY(-70%) rotate(45deg); transition: transform .2s;
}
.faq details[open] summary::after { transform: translateY(-30%) rotate(-135deg); }
.faq__a { padding: 0 15px 14px; }
.faq__a > *:last-child { margin-bottom: 0; }

.seo__cta {
  margin-top: 28px; padding: 22px 18px; border-radius: var(--r-md); text-align: center;
  background:
    radial-gradient(110% 130% at 0% 0%, rgba(176, 107, 255, .22), transparent 60%),
    var(--panel-2);
  border: 1px solid var(--line-2); display: grid; gap: 12px; justify-items: center;
}
.seo__cta b { font: 800 clamp(19px, 4.6vw, 25px)/1.2 var(--font-display); }
.seo__cta p { margin: 0; color: var(--muted); font-size: 14px; max-width: 52ch; }

.crumbs { font-size: 12.5px; color: var(--dim); margin-bottom: 14px; }
.crumbs ol { display: flex; flex-wrap: wrap; gap: 6px; margin: 0; padding: 0; list-style: none; }
.crumbs li::after { content: "/"; margin-left: 6px; color: var(--line-2); }
.crumbs li:last-child::after { display: none; }
.crumbs a { color: var(--muted); }
.crumbs a:hover { color: var(--rose); }

/* ------------------------------------------------------------------ foot -- */
.foot {
  margin-top: 26px; padding: 30px 0 26px; background: var(--ink-2);
  border-top: 1px solid var(--line);
}
.foot__top { display: grid; gap: 22px; }
.foot__brand { display: grid; gap: 16px; justify-items: start; align-content: start; }
.foot__cols { display: grid; grid-template-columns: repeat(2, 1fr); gap: 24px 16px; }
.foot__h {
  font: 700 12px/1 var(--font-body); letter-spacing: 1.6px; text-transform: uppercase;
  color: var(--text); margin: 0 0 12px;
}
.foot__col ul { margin: 0; padding: 0; list-style: none; display: grid; gap: 9px; }
.foot__col a { color: var(--muted); font-size: 13.5px; }
.foot__col a:hover { color: var(--rose); }
.foot__legal {
  margin-top: 24px; padding-top: 20px; border-top: 1px solid var(--line);
  display: grid; gap: 14px; font-size: 12px; line-height: 1.7; color: var(--dim);
}
.foot__legal p { margin: 0; }
.foot__marks { display: flex; flex-wrap: wrap; align-items: center; gap: 14px; }
.foot__marks img { height: 26px; width: auto; opacity: .72; }
.foot__lang {
  display: inline-flex; align-items: center; gap: 8px; padding: 8px 13px;
  border: 1px solid var(--line); border-radius: 999px; font-size: 12.5px; color: var(--muted);
}
.foot__lang svg { width: 15px; height: 15px; color: var(--orchid); }

.totop {
  position: fixed; right: 14px; bottom: 14px; z-index: 55; width: 42px; height: 42px;
  display: grid; place-items: center; border-radius: 50%; background: var(--cta);
  border: 0; color: #fff; box-shadow: var(--glow);
  opacity: 0; visibility: hidden; transform: translateY(8px); transition: .22s;
}
.totop.is-on { opacity: 1; visibility: visible; transform: translateY(0); }
.totop svg { width: 17px; height: 17px; }

/* ------------------------------------------------------------------- 404 -- */
.oops { text-align: center; display: grid; gap: 14px; justify-items: center; padding: 46px 0 30px; }
.oops h1 { margin: 0; font: 800 clamp(21px, 5vw, 31px)/1.2 var(--font-display); }
.oops p { margin: 0; color: var(--muted); max-width: 44ch; }
.oops p.oops__code {
  font: 900 clamp(70px, 22vw, 150px)/1 var(--font-display); letter-spacing: -4px;
  margin: 0; max-width: none;
  background: linear-gradient(120deg, var(--coral), var(--rose) 46%, var(--orchid));
  -webkit-background-clip: text; background-clip: text; color: transparent;
}
.oops__links { display: flex; flex-wrap: wrap; gap: 9px; justify-content: center; margin-top: 6px; }
.oops__links a {
  padding: 9px 14px; border-radius: 999px; border: 1px solid var(--line-2);
  background: var(--panel); color: var(--muted); font-size: 13.5px;
}
.oops__links a:hover { color: var(--text); border-color: var(--rose); }

/* ------------------------------------------------------------ breakpoints -- */
@media (min-width: 480px) {
  .reel { grid-auto-columns: 31%; }
  .stage__panel { padding: 44px 24px 38px; }
}

@media (min-width: 620px) {
  .cards { grid-template-columns: repeat(2, 1fr); }
  .why__grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: var(--gap); }
  .reel { grid-auto-columns: 23%; }
  .foot__cols { grid-template-columns: repeat(3, 1fr); gap: 26px 18px; }
}

@media (min-width: 860px) {
  :root { --bar: 64px; --gap: 16px; }
  .wrap { padding-inline: 22px; }
  .deck { padding-block: 22px 40px; gap: 30px; }
  .stage__panel { padding: 62px 40px 54px; gap: 14px; }
  .stage__sub { font-size: 15.5px; }
  .iconbtn { display: inline-flex; }
  .arw { display: inline-flex; }
  .auth .btn { padding: 11px 18px; font-size: 14px; }
  .auth .btn--ghost { display: inline-flex; }
  .reel { grid-auto-columns: 17.4%; }
  .cards { grid-template-columns: repeat(3, 1fr); }
  .why__grid { grid-template-columns: repeat(4, 1fr); }
  .seo { padding: 34px 32px 38px; }
  .toc ol { columns: 2; column-gap: 26px; }
  .foot__legal { font-size: 12.5px; }
  .band { padding: 52px 30px; }
  .totop { right: 22px; bottom: 22px; }
}

@media (min-width: 1100px) {
  .rail {
    left: 0; right: auto; transform: none; width: var(--rail-w);
    border-left: 0; border-right: 1px solid var(--line);
    padding-top: calc(var(--bar) + 14px);
  }
  .rail__cta { display: none; }
  .burger { display: none; }
  .tabs { display: flex; }
  .scrim { display: none; }
  .main { padding-left: var(--rail-w); }
  .foot { padding-left: var(--rail-w); }
  .brand { width: calc(var(--rail-w) - 12px); }
  .reel { grid-auto-columns: 14.1%; }
  .foot__top { grid-template-columns: minmax(190px, 250px) 1fr; gap: 30px; }
  .seo { padding: 40px 44px 46px; }
}

@media (min-width: 1380px) {
  .reel { grid-auto-columns: 12.2%; }
  /* five columns only once each holds "Deposits & withdrawals" on one line:
     the rail takes 236px and the brand column another 280px, so the link grid
     does not have the room before ~1380px (measured, not guessed) */
  .foot__cols { grid-template-columns: repeat(5, 1fr); }
}
