:root {
  --ink: #0b0811;
  --ink-soft: #15101e;
  --panel: #1a1425;
  --paper: #fffaf1;
  --paper-soft: #e7deec;
  --muted: #aaa1b5;
  --line: rgba(255, 250, 241, 0.14);
  --line-strong: rgba(255, 250, 241, 0.28);
  --hot: #ff4f6d;
  --hot-dark: #d72c63;
  --orange: #ff8a3d;
  --violet: #8f52ff;
  --acid: #dfff52;
  --aqua: #62e4df;
  --shadow: 0 30px 80px rgba(0, 0, 0, 0.45);
  --header-h: 82px;
  --pad: clamp(22px, 4.2vw, 72px);
  --max: 1480px;
  color-scheme: dark;
  font-synthesis: none;
}

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

html {
  scroll-behavior: smooth;
  scrollbar-color: var(--hot) var(--ink);
}

body {
  margin: 0;
  min-width: 320px;
  overflow-x: hidden;
  background: var(--ink);
  color: var(--paper);
  font-family: Inter, "Helvetica Neue", Arial, sans-serif;
  font-size: 16px;
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
}

body::before {
  position: fixed;
  inset: 0;
  z-index: 20;
  pointer-events: none;
  content: "";
  opacity: 0.14;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 180 180' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='.26'/%3E%3C/svg%3E");
  mix-blend-mode: soft-light;
}

::selection {
  color: var(--ink);
  background: var(--acid);
}

a {
  color: inherit;
  text-decoration: none;
}

button,
input {
  font: inherit;
}

button,
a {
  -webkit-tap-highlight-color: transparent;
}

button:focus-visible,
a:focus-visible,
input:focus-visible,
[tabindex]:focus-visible {
  outline: 2px solid var(--acid);
  outline-offset: 5px;
}

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

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1,
h2,
.active-game h3,
.final-cta h2 {
  font-family: Georgia, "Times New Roman", serif;
  font-weight: 400;
  letter-spacing: -0.055em;
}

em {
  color: var(--hot);
  font-weight: 400;
}

.sr-only {
  position: absolute !important;
  width: 1px !important;
  height: 1px !important;
  padding: 0 !important;
  margin: -1px !important;
  overflow: hidden !important;
  clip: rect(0, 0, 0, 0) !important;
  white-space: nowrap !important;
  border: 0 !important;
}

.skip-link {
  position: fixed;
  top: 10px;
  left: 10px;
  z-index: 1000;
  padding: 10px 16px;
  color: var(--ink);
  background: var(--acid);
  transform: translateY(-150%);
  transition: transform 180ms ease;
}

.skip-link:focus {
  transform: translateY(0);
}

.eyebrow {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 22px;
  color: var(--paper-soft);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.18em;
  line-height: 1.2;
  text-transform: uppercase;
}

.pulse-dot {
  position: relative;
  display: inline-block;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--acid);
  box-shadow: 0 0 0 5px rgba(223, 255, 82, 0.1);
}

.pulse-dot::after {
  position: absolute;
  inset: -7px;
  border: 1px solid rgba(223, 255, 82, 0.55);
  border-radius: inherit;
  content: "";
  animation: signal 2s ease-out infinite;
}

@keyframes signal {
  0% { opacity: 0; transform: scale(0.5); }
  25% { opacity: 1; }
  100% { opacity: 0; transform: scale(1.45); }
}

.button {
  display: inline-flex;
  min-height: 50px;
  align-items: center;
  justify-content: center;
  gap: 20px;
  padding: 0 22px;
  border: 1px solid transparent;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 750;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  transition: color 180ms ease, background-color 180ms ease, border-color 180ms ease, transform 180ms ease;
}

.button span {
  font-size: 17px;
  font-weight: 400;
  transition: transform 180ms ease;
}

.button:hover {
  transform: translateY(-2px);
}

.button:hover span {
  transform: translate(2px, -2px);
}

.button--primary {
  color: var(--paper);
  background: linear-gradient(105deg, var(--hot-dark), var(--hot) 55%, var(--orange));
  box-shadow: 0 12px 35px rgba(255, 79, 109, 0.24);
}

.button--primary:hover {
  box-shadow: 0 16px 44px rgba(255, 79, 109, 0.34);
}

.button--ghost {
  border-color: var(--line-strong);
  background: rgba(255, 255, 255, 0.025);
}

.button--ghost:hover {
  border-color: var(--paper-soft);
  background: rgba(255, 255, 255, 0.07);
}

.button--light {
  color: var(--ink);
  background: var(--paper);
}

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 100;
  display: flex;
  width: 100%;
  height: var(--header-h);
  align-items: center;
  justify-content: space-between;
  padding: 0 var(--pad);
  border-bottom: 1px solid transparent;
  transition: height 250ms ease, background-color 250ms ease, border-color 250ms ease, transform 300ms ease;
}

.site-header.is-scrolled {
  height: 66px;
  border-color: var(--line);
  background: rgba(11, 8, 17, 0.84);
  backdrop-filter: blur(18px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
}

.brand img {
  width: 42px;
  height: 42px;
}

.brand__text {
  display: grid;
  gap: 0;
  line-height: 1.1;
}

.brand__text strong {
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.03em;
  text-transform: uppercase;
}

.brand__text small {
  margin-top: 4px;
  color: var(--muted);
  font-size: 9px;
  font-weight: 600;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: clamp(20px, 2.5vw, 42px);
}

.site-nav > a {
  position: relative;
  padding: 8px 0;
  color: var(--paper-soft);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.site-nav > a:not(.nav-cta)::after {
  position: absolute;
  right: 0;
  bottom: 2px;
  left: 0;
  height: 1px;
  background: var(--hot);
  content: "";
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 180ms ease;
}

.site-nav > a:not(.nav-cta):hover::after {
  transform: scaleX(1);
  transform-origin: left;
}

.site-nav .nav-cta {
  min-height: 38px;
  padding: 0 17px;
  border: 1px solid var(--line-strong);
  border-radius: 999px;
}

.site-nav .nav-cta:hover {
  color: var(--ink);
  border-color: var(--acid);
  background: var(--acid);
}

.menu-toggle {
  display: none;
  width: 44px;
  height: 44px;
  place-items: center;
  padding: 0;
  border: 1px solid var(--line);
  border-radius: 50%;
  color: var(--paper);
  background: transparent;
  cursor: pointer;
}

.menu-toggle > span:not(.sr-only) {
  position: absolute;
  width: 17px;
  height: 1px;
  background: currentColor;
  transition: transform 180ms ease;
}

.menu-toggle > span:first-child { transform: translateY(-3px); }
.menu-toggle > span:nth-child(2) { transform: translateY(3px); }
.menu-toggle[aria-expanded="true"] > span:first-child { transform: rotate(45deg); }
.menu-toggle[aria-expanded="true"] > span:nth-child(2) { transform: rotate(-45deg); }

.hero {
  position: relative;
  display: grid;
  min-height: max(720px, 100svh);
  grid-template-columns: minmax(0, 1.45fr) minmax(300px, 0.55fr);
  align-items: center;
  gap: clamp(30px, 7vw, 120px);
  padding: calc(var(--header-h) + 58px) var(--pad) 92px;
  overflow: hidden;
  isolation: isolate;
  background:
    radial-gradient(circle at 78% 32%, rgba(143, 82, 255, 0.21), transparent 26%),
    radial-gradient(circle at 16% 86%, rgba(255, 79, 109, 0.12), transparent 31%),
    linear-gradient(140deg, #0b0811 0%, #100b18 58%, #130c20 100%);
}

.hero__grid {
  position: absolute;
  inset: 0;
  z-index: -3;
  opacity: 0.2;
  background-image:
    linear-gradient(rgba(255,255,255,.09) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.09) 1px, transparent 1px);
  background-size: 76px 76px;
  mask-image: linear-gradient(to bottom, black, transparent 90%);
  transform: perspective(600px) rotateX(58deg) scale(1.6) translateY(10%);
  transform-origin: center bottom;
}

.hero__orb {
  position: absolute;
  z-index: -2;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 50%;
}

.hero__orb::before,
.hero__orb::after {
  position: absolute;
  border: inherit;
  border-radius: inherit;
  content: "";
}

.hero__orb--one {
  top: 9%;
  right: -8%;
  width: min(50vw, 760px);
  aspect-ratio: 1;
  animation: slow-spin 38s linear infinite;
}

.hero__orb--one::before { inset: 12%; border-color: rgba(255, 79, 109, 0.28); }
.hero__orb--one::after { inset: 30%; border-color: rgba(223, 255, 82, 0.2); }

.hero__orb--two {
  right: 18%;
  bottom: -28%;
  width: min(31vw, 460px);
  aspect-ratio: 1;
  border-color: rgba(98, 228, 223, 0.16);
  animation: slow-spin 26s linear reverse infinite;
}

.hero__orb--two::before { inset: 20%; }
.hero__orb--two::after { inset: 39%; border-color: rgba(255, 138, 61, 0.3); }

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

.hero__content {
  width: min(820px, 100%);
}

.hero h1 {
  max-width: 930px;
  margin-bottom: 28px;
  font-size: clamp(64px, 9.3vw, 158px);
  line-height: 0.78;
}

.hero h1 em {
  position: relative;
  display: inline-block;
  padding-right: 0.08em;
}

.hero h1 em::after {
  position: absolute;
  right: -0.02em;
  bottom: -0.09em;
  width: 0.25em;
  height: 0.25em;
  border: 2px solid var(--acid);
  border-radius: 50%;
  content: "";
}

.hero__lead {
  max-width: 610px;
  margin-bottom: 34px;
  color: var(--paper-soft);
  font-size: clamp(16px, 1.35vw, 20px);
  line-height: 1.55;
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.hero__aside {
  justify-self: end;
}

.signal-card {
  position: relative;
  width: clamp(282px, 23vw, 350px);
  padding: 20px;
  border: 1px solid var(--line-strong);
  border-radius: 3px;
  background: rgba(17, 11, 27, 0.58);
  box-shadow: var(--shadow);
  backdrop-filter: blur(18px);
}

.signal-card::before {
  position: absolute;
  top: -7px;
  right: -7px;
  width: 42%;
  height: 52%;
  border-top: 1px solid var(--hot);
  border-right: 1px solid var(--hot);
  content: "";
  pointer-events: none;
}

.signal-card__head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  color: var(--muted);
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.signal-card__status {
  display: flex;
  align-items: center;
  gap: 7px;
  color: var(--acid);
}

.signal-card__status::before {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: currentColor;
  content: "";
}

.signal-card__dial {
  position: relative;
  display: grid;
  width: 76%;
  aspect-ratio: 1;
  place-items: center;
  margin: 30px auto 34px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 50%;
  background:
    radial-gradient(circle, rgba(255,79,109,.18), transparent 48%),
    conic-gradient(from 10deg, var(--hot), var(--orange), var(--acid), var(--aqua), var(--violet), var(--hot));
  box-shadow: inset 0 0 0 16px var(--ink-soft), inset 0 0 0 17px rgba(255,255,255,.16), 0 0 58px rgba(143,82,255,.2);
}

.signal-card__dial::before {
  position: absolute;
  inset: 31%;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 50%;
  background: var(--ink);
  content: "";
}

.signal-card__dial span {
  position: relative;
  z-index: 2;
  font-family: Georgia, serif;
  font-size: clamp(44px, 5vw, 66px);
  font-style: italic;
  line-height: 1;
}

.signal-card__dial i {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 116%;
  height: 22%;
  border: 1px solid rgba(255, 255, 255, 0.17);
  border-radius: 50%;
  transform: translate(-50%, -50%) rotate(25deg);
}

.signal-card__dial i:nth-of-type(2) { transform: translate(-50%, -50%) rotate(84deg); }
.signal-card__dial i:nth-of-type(3) { transform: translate(-50%, -50%) rotate(146deg); }

.signal-card__stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  margin: 0;
  padding-top: 18px;
  border-top: 1px solid var(--line);
}

.signal-card__stats > div:not(:first-child) {
  padding-left: 13px;
  border-left: 1px solid var(--line);
}

.signal-card__stats dt {
  margin-bottom: 4px;
  color: var(--muted);
  font-size: 8px;
  font-weight: 700;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.signal-card__stats dd {
  margin: 0;
  font-family: Georgia, serif;
  font-size: 22px;
}

.hero__footer {
  position: absolute;
  right: var(--pad);
  bottom: 28px;
  left: var(--pad);
  display: flex;
  align-items: center;
  gap: 18px;
  color: rgba(255, 250, 241, 0.48);
  font-size: 8px;
  font-weight: 700;
  letter-spacing: 0.17em;
}

.hero__footer-line {
  flex: 1;
  height: 1px;
  background: var(--line);
}

.section-intro {
  display: grid;
  grid-template-columns: minmax(0, 1.3fr) minmax(280px, 0.7fr);
  align-items: end;
  gap: clamp(30px, 9vw, 150px);
  max-width: var(--max);
  margin: 0 auto 38px;
}

.section-intro .eyebrow {
  margin-bottom: 14px;
}

.section-intro h2 {
  margin-bottom: 0;
  font-size: clamp(54px, 7.5vw, 114px);
  line-height: 0.86;
}

.section-intro > p {
  max-width: 510px;
  margin-bottom: 5px;
  color: var(--muted);
  font-size: 15px;
}

.reel-section {
  position: relative;
  padding: clamp(100px, 11vw, 170px) var(--pad) clamp(95px, 10vw, 150px);
  overflow: hidden;
  background:
    radial-gradient(ellipse at 50% 42%, rgba(143, 82, 255, 0.14), transparent 42%),
    linear-gradient(180deg, var(--ink), #100b19 78%, var(--ink));
}

.reel-section::before,
.reel-section::after {
  position: absolute;
  top: 32%;
  width: 36vw;
  height: 36vw;
  border: 1px solid rgba(255, 255, 255, 0.07);
  border-radius: 50%;
  content: "";
  pointer-events: none;
}

.reel-section::before { left: -29vw; }
.reel-section::after { right: -29vw; }

.carousel-shell {
  position: relative;
  max-width: 1600px;
  margin: 0 auto;
}

.carousel-stage {
  position: relative;
  height: clamp(490px, 48vw, 650px);
  overflow: visible;
  cursor: grab;
  perspective: 1150px;
  touch-action: pan-y;
  user-select: none;
}

.carousel-stage.is-dragging {
  cursor: grabbing;
}

.slot-card {
  --x: 0px;
  --y: 0px;
  --z: 0px;
  --scale: 1;
  --ry: 0deg;
  --rz: 0deg;
  --opacity: 1;
  --blur: 0px;
  position: absolute;
  top: 50%;
  left: 50%;
  width: clamp(230px, 22vw, 340px);
  aspect-ratio: 7 / 9;
  padding: 0;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.28);
  border-radius: 4px;
  color: var(--paper);
  background: #17101f;
  box-shadow: 0 22px 65px rgba(0, 0, 0, 0.54);
  opacity: var(--opacity);
  cursor: pointer;
  filter: blur(var(--blur)) saturate(calc(0.72 + var(--scale) * 0.28));
  transform: translate(-50%, -50%) translate3d(var(--x), var(--y), var(--z)) scale(var(--scale)) rotateY(var(--ry)) rotateZ(var(--rz));
  transform-style: preserve-3d;
  transition: transform 700ms cubic-bezier(.18,.74,.16,1), opacity 520ms ease, filter 520ms ease, border-color 250ms ease, box-shadow 250ms ease;
  will-change: transform, opacity;
}

html:not(.js) .slot-card:not(:first-child) {
  display: none;
}

.slot-card:hover {
  border-color: rgba(255, 255, 255, 0.58);
}

.slot-card.is-active {
  border-color: rgba(255, 250, 241, 0.78);
  box-shadow: 0 36px 100px rgba(0, 0, 0, 0.62), 0 0 0 1px rgba(255, 79, 109, 0.22);
}

.slot-card::after {
  position: absolute;
  inset: 0;
  border: 1px solid transparent;
  content: "";
  transition: border-color 220ms ease;
  pointer-events: none;
}

.slot-card.is-active::after {
  inset: 9px;
  border-color: rgba(255, 255, 255, 0.32);
}

.slot-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  pointer-events: none;
  transition: transform 1s cubic-bezier(.2,.7,.2,1);
}

.slot-card.is-active:hover img {
  transform: scale(1.035);
}

.slot-card__number {
  position: absolute;
  top: 17px;
  right: 17px;
  z-index: 4;
  display: grid;
  width: 34px;
  height: 34px;
  place-items: center;
  border: 1px solid rgba(255,255,255,.38);
  border-radius: 50%;
  background: rgba(5, 4, 9, 0.24);
  font-size: 9px;
  font-weight: 800;
  letter-spacing: .08em;
  backdrop-filter: blur(7px);
}

.slot-card__veil {
  position: absolute;
  inset: 0;
  z-index: 2;
  background: linear-gradient(to bottom, transparent 35%, rgba(8,5,13,.22) 57%, rgba(8,5,13,.94) 100%);
  pointer-events: none;
}

.slot-card__label {
  position: absolute;
  right: 24px;
  bottom: 25px;
  left: 24px;
  z-index: 3;
  display: grid;
  text-align: left;
  pointer-events: none;
}

.slot-card__label small {
  margin-bottom: 7px;
  color: var(--acid);
  font-size: 8px;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.slot-card__label strong {
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(27px, 2.7vw, 43px);
  font-weight: 400;
  letter-spacing: -0.045em;
  line-height: 0.88;
}

.carousel-toolbar {
  display: grid;
  grid-template-columns: auto minmax(100px, 1fr) auto;
  align-items: center;
  gap: 24px;
  max-width: 1060px;
  margin: 0 auto;
  padding: 18px 22px;
  border-top: 1px solid var(--line-strong);
  border-bottom: 1px solid var(--line);
}

.carousel-arrows {
  display: flex;
  gap: 8px;
}

.carousel-arrows button {
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  padding: 0;
  border: 1px solid var(--line-strong);
  border-radius: 50%;
  color: var(--paper);
  background: transparent;
  cursor: pointer;
  transition: color 170ms ease, border-color 170ms ease, background-color 170ms ease;
}

.carousel-arrows button:hover {
  color: var(--ink);
  border-color: var(--acid);
  background: var(--acid);
}

.scrubber {
  display: block;
}

.scrubber input {
  display: block;
  width: 100%;
  height: 20px;
  margin: 0;
  appearance: none;
  background: transparent;
  cursor: pointer;
}

.scrubber input::-webkit-slider-runnable-track {
  height: 2px;
  background: linear-gradient(to right, var(--hot) 0 var(--range-progress, 0%), var(--line-strong) var(--range-progress, 0%) 100%);
}

.scrubber input::-webkit-slider-thumb {
  width: 13px;
  height: 13px;
  margin-top: -5.5px;
  appearance: none;
  border: 2px solid var(--ink);
  border-radius: 50%;
  background: var(--acid);
  box-shadow: 0 0 0 1px var(--acid);
}

.scrubber input::-moz-range-track {
  height: 2px;
  background: var(--line-strong);
}

.scrubber input::-moz-range-progress {
  height: 2px;
  background: var(--hot);
}

.scrubber input::-moz-range-thumb {
  width: 11px;
  height: 11px;
  border: 2px solid var(--ink);
  border-radius: 50%;
  background: var(--acid);
  box-shadow: 0 0 0 1px var(--acid);
}

.carousel-meta {
  display: flex;
  align-items: center;
  gap: 20px;
}

.autoplay {
  display: flex;
  align-items: center;
  gap: 7px;
  padding: 0;
  border: 0;
  color: var(--muted);
  background: transparent;
  font-size: 9px;
  font-weight: 750;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  cursor: pointer;
}

.autoplay i {
  display: inline-block;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--acid);
  box-shadow: 0 0 0 4px rgba(223,255,82,.08);
}

.autoplay[aria-pressed="false"] i {
  border: 1px solid var(--muted);
  background: transparent;
  box-shadow: none;
}

.carousel-count {
  min-width: 50px;
  color: var(--paper-soft);
  font-family: Georgia, serif;
  font-size: 16px;
  white-space: nowrap;
}

.active-game {
  display: grid;
  grid-template-columns: 70px minmax(230px, .7fr) minmax(280px, 1fr) auto;
  align-items: center;
  gap: clamp(22px, 4vw, 60px);
  max-width: var(--max);
  margin: clamp(44px, 6vw, 86px) auto 0;
  padding-top: 30px;
  border-top: 1px solid var(--line);
}

.active-game__index {
  color: var(--hot);
  font-family: Georgia, serif;
  font-size: 48px;
  font-style: italic;
  line-height: 1;
}

.active-game__copy p {
  margin-bottom: 6px;
  color: var(--acid);
  font-size: 9px;
  font-weight: 800;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

.active-game__copy h3 {
  margin-bottom: 5px;
  font-size: clamp(34px, 3.7vw, 58px);
  line-height: 0.95;
}

.active-game__copy span {
  color: var(--muted);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

.active-game__description {
  max-width: 490px;
  margin-bottom: 0;
  color: var(--paper-soft);
  font-size: 14px;
}

.active-game__link {
  white-space: nowrap;
}

.providers {
  padding: clamp(100px, 11vw, 170px) var(--pad);
  color: var(--ink);
  background: var(--paper);
}

.providers .eyebrow,
.providers .section-intro > p {
  color: #6c6574;
}

.provider-grid {
  display: grid;
  max-width: var(--max);
  grid-template-columns: repeat(2, 1fr);
  margin: 0 auto;
  border-top: 1px solid rgba(11,8,17,.19);
}

.provider-card {
  position: relative;
  display: grid;
  min-height: 152px;
  grid-template-columns: 58px 1fr auto;
  align-items: center;
  gap: 23px;
  padding: 26px clamp(20px, 3vw, 42px);
  border-bottom: 1px solid rgba(11,8,17,.19);
  transition: color 220ms ease, background-color 220ms ease;
}

.provider-card:nth-child(odd) {
  border-right: 1px solid rgba(11,8,17,.19);
}

.provider-card::before {
  position: absolute;
  inset: 0;
  background: var(--ink);
  content: "";
  transform: scaleY(0);
  transform-origin: bottom;
  transition: transform 320ms cubic-bezier(.22,.7,.2,1);
}

.provider-card:hover {
  color: var(--paper);
}

.provider-card:hover::before {
  transform: scaleY(1);
}

.provider-card > * {
  position: relative;
  z-index: 1;
}

.provider-card__mark {
  display: grid;
  width: 58px;
  height: 58px;
  place-items: center;
  border: 1px solid rgba(11,8,17,.3);
  border-radius: 50%;
  color: var(--hot-dark);
  font-family: Georgia, serif;
  font-size: 19px;
  font-style: italic;
  transition: color 220ms ease, border-color 220ms ease, transform 300ms ease;
}

.provider-card:hover .provider-card__mark {
  color: var(--acid);
  border-color: rgba(255,255,255,.32);
  transform: rotate(-8deg);
}

.provider-card > span:nth-child(2) {
  display: grid;
}

.provider-card strong {
  margin-bottom: 7px;
  font-family: Georgia, serif;
  font-size: clamp(24px, 2.3vw, 34px);
  font-weight: 400;
  letter-spacing: -0.04em;
  line-height: 1;
}

.provider-card small {
  color: #756d7d;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.09em;
  text-transform: uppercase;
  transition: color 220ms ease;
}

.provider-card:hover small {
  color: var(--muted);
}

.provider-card i {
  font-size: 23px;
  font-style: normal;
  transition: transform 220ms ease;
}

.provider-card:hover i {
  transform: translate(4px, -4px);
}

.about {
  padding: clamp(100px, 11vw, 170px) var(--pad);
  background:
    radial-gradient(circle at 8% 15%, rgba(255, 79, 109, .12), transparent 24%),
    var(--ink);
}

.about__top {
  display: grid;
  max-width: var(--max);
  grid-template-columns: minmax(220px, .36fr) minmax(0, 1fr);
  align-items: start;
  gap: 40px;
  margin: 0 auto clamp(70px, 8vw, 116px);
}

.about__top h2 {
  margin-bottom: 0;
  font-size: clamp(57px, 8.2vw, 126px);
  line-height: 0.82;
}

.about__top h2 em {
  display: block;
}

.principles {
  display: grid;
  max-width: var(--max);
  grid-template-columns: repeat(3, 1fr);
  margin: 0 auto;
  border-top: 1px solid var(--line-strong);
}

.principle {
  min-height: 330px;
  padding: 28px clamp(20px, 3vw, 42px) 30px 0;
}

.principle:not(:first-child) {
  padding-left: clamp(20px, 3vw, 42px);
  border-left: 1px solid var(--line);
}

.principle > span {
  display: block;
  margin-bottom: 82px;
  color: var(--hot);
  font-size: 9px;
  font-weight: 800;
  letter-spacing: .17em;
}

.principle h3 {
  margin-bottom: 17px;
  font-family: Georgia, serif;
  font-size: clamp(28px, 2.7vw, 41px);
  font-weight: 400;
  letter-spacing: -.04em;
  line-height: 1;
}

.principle p {
  max-width: 390px;
  margin-bottom: 0;
  color: var(--muted);
  font-size: 14px;
}

.final-cta {
  position: relative;
  display: grid;
  min-height: 760px;
  place-items: center;
  align-content: center;
  padding: 100px var(--pad);
  overflow: hidden;
  text-align: center;
  isolation: isolate;
  background:
    radial-gradient(circle at 22% 22%, rgba(223,255,82,.16), transparent 24%),
    linear-gradient(130deg, #d92e67 0%, #ff4f6d 38%, #ff7b49 100%);
}

.final-cta::before {
  position: absolute;
  inset: 0;
  z-index: -2;
  background-image:
    linear-gradient(rgba(255,255,255,.1) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.1) 1px, transparent 1px);
  background-size: 64px 64px;
  mask-image: radial-gradient(circle, black, transparent 74%);
  content: "";
  transform: rotate(-11deg) scale(1.25);
}

.final-cta .eyebrow {
  position: relative;
  z-index: 2;
  justify-content: center;
  margin-bottom: 24px;
  color: rgba(255,255,255,.8);
}

.final-cta h2 {
  position: relative;
  z-index: 2;
  margin-bottom: 30px;
  font-size: clamp(62px, 9.5vw, 146px);
  line-height: .78;
}

.final-cta h2 em {
  color: var(--acid);
}

.final-cta > p:not(.eyebrow) {
  position: relative;
  z-index: 2;
  max-width: 560px;
  margin: 0 auto 33px;
  color: rgba(255,255,255,.82);
  font-size: 15px;
}

.final-cta .button {
  position: relative;
  z-index: 2;
}

.final-cta__rings {
  position: absolute;
  inset: 50% auto auto 50%;
  z-index: -1;
  width: min(78vw, 1060px);
  aspect-ratio: 1;
  transform: translate(-50%, -50%);
}

.final-cta__rings i {
  position: absolute;
  inset: 0;
  border: 1px solid rgba(255,255,255,.25);
  border-radius: 50%;
}

.final-cta__rings i:nth-child(2) { inset: 16%; border-color: rgba(255,255,255,.18); }
.final-cta__rings i:nth-child(3) { inset: 33%; border-color: rgba(223,255,82,.35); }

.site-footer {
  display: grid;
  grid-template-columns: minmax(200px, .55fr) minmax(320px, 1.15fr) auto;
  align-items: start;
  gap: clamp(28px, 6vw, 90px);
  padding: 42px var(--pad);
  border-top: 1px solid var(--line);
  background: #07050b;
}

.site-footer__brand {
  display: flex;
  align-items: center;
  gap: 12px;
}

.site-footer__brand p {
  margin: 0;
  font-size: 11px;
  line-height: 1.3;
  text-transform: uppercase;
}

.site-footer__brand span {
  color: var(--muted);
  font-size: 9px;
  letter-spacing: .08em;
}

.site-footer__legal {
  max-width: 670px;
  margin: 0;
  color: #837a8d;
  font-size: 10px;
  line-height: 1.6;
}

.site-footer__links {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 12px 20px;
  color: var(--muted);
  font-size: 9px;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
}

.site-footer__links a:hover {
  color: var(--acid);
}

.js .reveal {
  opacity: 0;
  transform: translateY(34px);
  transition: opacity 800ms ease, transform 800ms cubic-bezier(.2,.7,.2,1);
}

.js .reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 1050px) {
  .hero {
    grid-template-columns: 1fr minmax(260px, .45fr);
    gap: 20px;
  }

  .hero h1 {
    font-size: clamp(64px, 10vw, 112px);
  }

  .active-game {
    grid-template-columns: 58px minmax(240px, .8fr) 1fr;
  }

  .active-game__link {
    grid-column: 2 / -1;
    justify-self: start;
  }

  .site-footer {
    grid-template-columns: 1fr 1.6fr;
  }

  .site-footer__links {
    grid-column: 1 / -1;
    justify-content: flex-start;
  }
}

@media (max-width: 780px) {
  :root {
    --header-h: 70px;
  }

  .site-header {
    height: var(--header-h);
  }

  .menu-toggle {
    display: grid;
  }

  .site-nav {
    position: fixed;
    top: 70px;
    right: 12px;
    left: 12px;
    display: grid;
    gap: 0;
    padding: 12px 20px 20px;
    border: 1px solid var(--line-strong);
    background: rgba(11,8,17,.97);
    box-shadow: var(--shadow);
    opacity: 0;
    pointer-events: none;
    transform: translateY(-12px);
    transition: opacity 180ms ease, transform 180ms ease;
  }

  .site-nav.is-open {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
  }

  .site-nav > a {
    padding: 14px 0;
    border-bottom: 1px solid var(--line);
  }

  .site-nav .nav-cta {
    justify-content: center;
    margin-top: 10px;
    border: 1px solid var(--line-strong);
  }

  .hero {
    min-height: 820px;
    grid-template-columns: 1fr;
    align-content: center;
    gap: 52px;
    padding-top: calc(var(--header-h) + 58px);
  }

  .hero__content {
    align-self: end;
  }

  .hero h1 {
    font-size: clamp(65px, 17vw, 106px);
  }

  .hero__lead {
    max-width: 540px;
  }

  .hero__aside {
    justify-self: start;
  }

  .signal-card {
    width: min(100%, 360px);
  }

  .signal-card__dial {
    width: 58%;
    margin-top: 22px;
    margin-bottom: 25px;
  }

  .hero__footer {
    display: none;
  }

  .section-intro {
    grid-template-columns: 1fr;
    align-items: start;
    gap: 26px;
  }

  .section-intro h2 {
    font-size: clamp(55px, 13vw, 92px);
  }

  .section-intro > p {
    max-width: 580px;
  }

  .carousel-stage {
    height: min(125vw, 580px);
  }

  .slot-card {
    width: min(59vw, 310px);
  }

  .carousel-toolbar {
    grid-template-columns: auto 1fr;
  }

  .scrubber {
    grid-column: 1 / -1;
    grid-row: 2;
  }

  .carousel-meta {
    justify-self: end;
  }

  .active-game {
    grid-template-columns: 52px 1fr;
    gap: 18px 22px;
  }

  .active-game__description,
  .active-game__link {
    grid-column: 2;
  }

  .provider-grid {
    grid-template-columns: 1fr;
  }

  .provider-card:nth-child(odd) {
    border-right: 0;
  }

  .about__top {
    grid-template-columns: 1fr;
  }

  .about__top h2 {
    font-size: clamp(57px, 13vw, 92px);
  }

  .principles {
    grid-template-columns: 1fr;
  }

  .principle {
    min-height: 0;
    padding: 26px 0 44px;
    border-bottom: 1px solid var(--line);
  }

  .principle:not(:first-child) {
    padding-left: 0;
    border-left: 0;
  }

  .principle > span {
    margin-bottom: 45px;
  }

  .final-cta {
    min-height: 680px;
  }

  .site-footer {
    grid-template-columns: 1fr;
  }

  .site-footer__links {
    grid-column: auto;
  }
}

@media (max-width: 480px) {
  .brand__text small {
    display: none;
  }

  .hero {
    min-height: 820px;
    padding-bottom: 54px;
  }

  .hero__actions {
    align-items: stretch;
  }

  .hero__actions .button {
    width: 100%;
  }

  .signal-card {
    padding: 17px;
  }

  .reel-section,
  .providers,
  .about {
    padding-top: 88px;
    padding-bottom: 88px;
  }

  .carousel-stage {
    height: 470px;
  }

  .slot-card {
    width: min(64vw, 270px);
  }

  .slot-card__label {
    right: 19px;
    bottom: 20px;
    left: 19px;
  }

  .carousel-toolbar {
    gap: 14px;
    padding-right: 6px;
    padding-left: 6px;
  }

  .autoplay {
    display: none;
  }

  .active-game {
    grid-template-columns: 1fr;
  }

  .active-game__index {
    font-size: 36px;
  }

  .active-game__description,
  .active-game__link {
    grid-column: 1;
  }

  .active-game__link {
    width: 100%;
  }

  .provider-card {
    min-height: 132px;
    grid-template-columns: 50px 1fr auto;
    gap: 16px;
    padding-right: 5px;
    padding-left: 5px;
  }

  .provider-card__mark {
    width: 50px;
    height: 50px;
  }

  .provider-card strong {
    font-size: 25px;
  }

  .provider-card small {
    font-size: 8px;
  }

  .final-cta {
    min-height: 630px;
  }

  .final-cta h2 {
    font-size: clamp(58px, 17vw, 84px);
  }

  .site-footer {
    padding-top: 34px;
    padding-bottom: 34px;
  }
}

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