:root {
  --bg: #0a0a0c;
  --bg-elevated: #121217;
  --ink: #f5f5f2;
  --muted: #9a9aa3;
  --line: rgba(245, 245, 242, 0.12);
  --lime: #c8f000;
  --lime-deep: #a8cc00;
  --coral: #ff5c52;
  --gold: #f0b429;
  --gold-hot: #ffd76a;
  --navy: #0d1530;
  --font-display: "Bebas Neue", sans-serif;
  --font-body: "Manrope", sans-serif;
  --pad-x: clamp(1.25rem, 4vw, 3.5rem);
  --max: 1120px;
}

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

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: var(--font-body);
  color: var(--ink);
  background: var(--bg);
  line-height: 1.5;
  overflow-x: hidden;
}

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

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

ul,
ol {
  margin: 0;
  padding: 0;
  list-style: none;
}

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

/* Header */
.site-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.85rem var(--pad-x);
  background: #0b1230;
  position: sticky;
  top: 0;
  z-index: 40;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.brand,
.footer__brand {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
}

.brand__mark {
  width: 36px;
  height: 36px;
  display: block;
  border-radius: 9px;
  flex-shrink: 0;
}

.brand__word {
  font-family: var(--font-display);
  font-size: 1.55rem;
  letter-spacing: 0.06em;
  line-height: 1;
}

.brand__sub {
  font-family: var(--font-body);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.28em;
  color: rgba(245, 245, 242, 0.72);
}

.header-actions {
  display: flex;
  gap: 0.55rem;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-body);
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  border: none;
  border-radius: 4px;
  cursor: pointer;
  transition: transform 0.2s ease, filter 0.2s ease, background 0.2s ease;
}

.btn:hover {
  transform: translateY(-1px);
  filter: brightness(1.05);
}

.btn--lime {
  background: var(--lime);
  color: #101208;
  padding: 0.55rem 1.15rem;
  font-size: 0.82rem;
}

.btn--dark {
  background: #1a1a22;
  color: var(--ink);
  padding: 0.55rem 1.15rem;
  font-size: 0.82rem;
  border: 1px solid rgba(255, 255, 255, 0.12);
}

.btn--xl {
  padding: 0.95rem 2.4rem;
  font-size: 1rem;
  margin-top: 0.35rem;
  box-shadow: 0 0 0 0 rgba(200, 240, 0, 0.45);
  animation: cta-pulse 2.4s ease-in-out infinite;
}

.btn--sm {
  padding: 0.5rem 1rem;
  font-size: 0.72rem;
}

@keyframes cta-pulse {
  0%,
  100% {
    box-shadow: 0 0 0 0 rgba(200, 240, 0, 0.35);
  }
  50% {
    box-shadow: 0 0 0 12px rgba(200, 240, 0, 0);
  }
}

/* Hero — full-bleed composition */
.hero {
  position: relative;
  min-height: calc(100vh - 3.6rem);
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: clamp(2.5rem, 6vw, 4.5rem) var(--pad-x) 1.75rem;
  overflow: hidden;
  isolation: isolate;
}

.hero__atmosphere {
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    radial-gradient(ellipse 70% 55% at 70% 40%, rgba(232, 90, 79, 0.22), transparent 55%),
    radial-gradient(ellipse 50% 45% at 25% 30%, rgba(13, 60, 120, 0.55), transparent 50%),
    radial-gradient(ellipse 40% 35% at 85% 70%, rgba(240, 180, 41, 0.18), transparent 50%),
    linear-gradient(160deg, #06101f 0%, #120818 45%, #05070e 100%);
}

.hero__atmosphere::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(5, 7, 14, 0.15) 0%, rgba(5, 7, 14, 0.55) 70%, rgba(5, 7, 14, 0.92) 100%),
    repeating-linear-gradient(
      -18deg,
      transparent 0 18px,
      rgba(255, 255, 255, 0.015) 18px 19px
    );
  pointer-events: none;
}

.hero__lights {
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(circle at 18% 28%, rgba(255, 255, 255, 0.35) 0 2px, transparent 3px),
    radial-gradient(circle at 42% 18%, rgba(200, 240, 0, 0.45) 0 3px, transparent 4px),
    radial-gradient(circle at 68% 32%, rgba(255, 180, 80, 0.5) 0 2px, transparent 3px),
    radial-gradient(circle at 82% 22%, rgba(120, 200, 255, 0.4) 0 2px, transparent 3px),
    radial-gradient(circle at 55% 55%, rgba(255, 100, 140, 0.35) 0 3px, transparent 4px),
    radial-gradient(circle at 30% 62%, rgba(255, 220, 120, 0.3) 0 2px, transparent 3px),
    radial-gradient(circle at 75% 68%, rgba(180, 120, 255, 0.28) 0 2px, transparent 3px);
  animation: twinkle 5s ease-in-out infinite alternate;
  opacity: 0.85;
}

@keyframes twinkle {
  from {
    opacity: 0.55;
    transform: scale(1);
  }
  to {
    opacity: 1;
    transform: scale(1.03);
  }
}

.hero__reels {
  position: absolute;
  right: 8%;
  top: 18%;
  width: min(38vw, 340px);
  aspect-ratio: 1.1;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.6rem;
  opacity: 0.35;
  transform: rotate(-8deg);
  filter: blur(0.2px);
}

.hero__reels span {
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.12), rgba(255, 255, 255, 0.02)),
    #1a1030;
  box-shadow: inset 0 0 30px rgba(232, 90, 79, 0.25);
  animation: reel-glow 3.2s ease-in-out infinite;
}

.hero__reels span:nth-child(2) {
  animation-delay: 0.4s;
  background:
    linear-gradient(180deg, rgba(240, 180, 41, 0.25), rgba(255, 255, 255, 0.02)),
    #201208;
}

.hero__reels span:nth-child(3) {
  animation-delay: 0.8s;
}

@keyframes reel-glow {
  0%,
  100% {
    filter: brightness(0.9);
  }
  50% {
    filter: brightness(1.25);
  }
}

.hero__chips {
  position: absolute;
  left: 8%;
  bottom: 18%;
  width: 180px;
  height: 80px;
  opacity: 0.4;
}

.hero__chips i {
  position: absolute;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  border: 3px dashed rgba(255, 255, 255, 0.35);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.35);
}

.hero__chips i:nth-child(1) {
  left: 0;
  bottom: 0;
  background: radial-gradient(circle at 30% 30%, #7ef0ff, #0e7490);
}
.hero__chips i:nth-child(2) {
  left: 28px;
  bottom: 10px;
  background: radial-gradient(circle at 30% 30%, #ffe08a, #c27803);
}
.hero__chips i:nth-child(3) {
  left: 56px;
  bottom: 0;
  background: radial-gradient(circle at 30% 30%, #ffb4c8, #be123c);
}
.hero__chips i:nth-child(4) {
  left: 84px;
  bottom: 14px;
  background: radial-gradient(circle at 30% 30%, #d9f99d, #65a30d);
}

.hero__inner {
  max-width: var(--max);
  width: 100%;
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr);
  gap: clamp(1.5rem, 4vw, 3rem);
  align-items: center;
}

.hero__offer {
  animation: rise 0.8s ease both;
}

.hero__eyebrow {
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  margin-bottom: 0.75rem;
  color: rgba(255, 255, 255, 0.88);
}

.hero__title {
  font-family: var(--font-display);
  line-height: 0.9;
  text-transform: uppercase;
  margin-bottom: 1rem;
}

.hero__upto,
.hero__spins {
  display: block;
  font-size: clamp(2.4rem, 6vw, 4rem);
  letter-spacing: 0.04em;
}

.hero__amount {
  display: block;
  font-size: clamp(6rem, 16vw, 10.5rem);
  letter-spacing: 0.02em;
  text-shadow: 0 8px 40px rgba(0, 0, 0, 0.45);
}

.hero__support {
  max-width: 22rem;
  color: rgba(245, 245, 242, 0.78);
  font-size: 0.98rem;
  margin-bottom: 1.35rem;
}

.hero__side {
  justify-self: end;
  text-align: center;
  max-width: 24rem;
  animation: rise 0.9s ease 0.12s both;
}

.hero__and {
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  margin-bottom: 0.75rem;
  opacity: 0.9;
}

.rush-badge {
  width: 108px;
  height: 108px;
  margin: 0 auto 1rem;
  border-radius: 50%;
  display: grid;
  place-items: center;
  position: relative;
  background: radial-gradient(circle at 35% 30%, #ffe08a, #c27803 55%, #7a3e00);
  box-shadow: 0 0 32px rgba(240, 180, 41, 0.45);
}

.rush-badge__ring {
  position: absolute;
  inset: -6px;
  border-radius: 50%;
  border: 2px dashed rgba(255, 215, 106, 0.65);
  animation: spin 14s linear infinite;
}

.rush-badge strong {
  font-family: var(--font-display);
  font-size: 1.55rem;
  line-height: 0.95;
  letter-spacing: 0.04em;
  color: #1a1000;
  text-align: center;
}

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

.hero__tour-label {
  font-size: 0.78rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.85);
  margin-bottom: 0.35rem;
}

.hero__pool {
  font-family: var(--font-display);
  font-size: clamp(2.6rem, 6vw, 4.2rem);
  line-height: 1;
  letter-spacing: 0.02em;
  background: linear-gradient(180deg, #fff6c8 0%, var(--gold-hot) 35%, var(--gold) 70%, #c27803 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  filter: drop-shadow(0 6px 18px rgba(240, 180, 41, 0.35));
  margin-bottom: 0.75rem;
}

.hero__dates {
  display: inline-block;
  padding: 0.35rem 0.9rem;
  border-radius: 999px;
  background: var(--gold);
  color: #1a1200;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  margin-bottom: 0.55rem;
}

.hero__note {
  font-size: 0.78rem;
  font-style: italic;
  color: rgba(255, 255, 255, 0.78);
}

.hero__legal {
  max-width: var(--max);
  width: 100%;
  margin: 2rem auto 0;
  font-size: 0.68rem;
  line-height: 1.55;
  color: rgba(180, 180, 190, 0.85);
  animation: rise 1s ease 0.2s both;
}

.hero__legal a {
  color: var(--lime);
  text-decoration: underline;
  text-underline-offset: 2px;
}

@keyframes rise {
  from {
    opacity: 0;
    transform: translateY(22px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* How it works */
.how {
  padding: 3.5rem var(--pad-x) 2.75rem;
  background: #000;
  text-align: center;
}

.how__title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4.5vw, 3rem);
  letter-spacing: 0.04em;
  color: var(--coral);
  margin-bottom: 2rem;
}

.how__steps {
  max-width: var(--max);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.5rem;
}

.how__steps li {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.85rem;
  text-align: left;
}

.how__num {
  font-family: var(--font-display);
  font-size: clamp(3.5rem, 8vw, 5.5rem);
  line-height: 0.85;
  color: var(--coral);
}

.how__steps strong {
  display: block;
  font-size: 1.35rem;
  font-weight: 800;
  letter-spacing: 0.02em;
}

.how__steps span {
  color: rgba(255, 255, 255, 0.82);
  font-size: 0.95rem;
}

/* Trust strip */
.trust {
  padding: 1.75rem var(--pad-x) 2.25rem;
  background: #000;
  border-top: 1px solid var(--line);
}

.trust__list {
  max-width: var(--max);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 1rem;
  text-align: center;
}

.trust__list li {
  display: grid;
  gap: 0.55rem;
  justify-items: center;
  color: rgba(255, 255, 255, 0.92);
  font-size: 0.78rem;
  font-weight: 600;
}

.trust__list svg {
  width: 2.4rem;
  height: 2.4rem;
  color: rgba(255, 255, 255, 0.9);
}

/* Shared section chrome */
.section-band {
  max-width: var(--max);
  margin: 0 auto 1.75rem;
}

.section-band h2 {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 4vw, 2.6rem);
  letter-spacing: 0.04em;
  margin-bottom: 0.45rem;
}

.section-band p {
  color: var(--muted);
  max-width: 36rem;
}

.section-band--split {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 2rem;
  align-items: center;
}

.section-band--split .btn {
  margin-top: 1.1rem;
}

.promo-rail__note {
  max-width: var(--max);
  margin: 1rem auto 0;
  font-size: 0.72rem;
  color: var(--muted);
}

/* Promotions */
.promos,
.live,
.daily {
  padding: 3.5rem var(--pad-x);
  background: var(--bg-elevated);
}

.live {
  background: #0e0e12;
}

.promo-rail {
  max-width: var(--max);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
}

.promo-tile {
  position: relative;
  min-height: 220px;
  padding: 1.35rem;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  gap: 0.25rem;
  border-radius: 6px;
  overflow: hidden;
  isolation: isolate;
  transition: transform 0.25s ease;
}

.promo-tile:hover {
  transform: translateY(-4px);
}

.promo-tile::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
}

.promo-tile--a::before {
  background:
    linear-gradient(180deg, transparent 20%, rgba(0, 0, 0, 0.85) 100%),
    radial-gradient(circle at 70% 20%, rgba(200, 240, 0, 0.35), transparent 45%),
    linear-gradient(135deg, #1a2a10, #0a1520);
}

.promo-tile--b::before {
  background:
    linear-gradient(180deg, transparent 20%, rgba(0, 0, 0, 0.85) 100%),
    radial-gradient(circle at 30% 30%, rgba(240, 180, 41, 0.4), transparent 45%),
    linear-gradient(145deg, #2a1808, #100810);
}

.promo-tile--c::before {
  background:
    linear-gradient(180deg, transparent 20%, rgba(0, 0, 0, 0.85) 100%),
    radial-gradient(circle at 60% 25%, rgba(232, 90, 79, 0.4), transparent 45%),
    linear-gradient(150deg, #2a0e18, #081018);
}

.promo-tile__tag {
  position: absolute;
  top: 1rem;
  left: 1rem;
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--lime);
}

.promo-tile strong {
  font-family: var(--font-display);
  font-size: 1.7rem;
  letter-spacing: 0.03em;
  line-height: 1.05;
}

.promo-tile span:last-child {
  color: rgba(255, 255, 255, 0.75);
  font-size: 0.88rem;
}

/* Live casino */
.live-grid {
  max-width: var(--max);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
}

.live-card {
  min-height: 240px;
  padding: 1.4rem;
  border-radius: 6px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  gap: 0.45rem;
  position: relative;
  overflow: hidden;
  isolation: isolate;
}

.live-card::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
}

.live-card--roulette::before {
  background:
    linear-gradient(180deg, transparent 18%, rgba(0, 0, 0, 0.92) 100%),
    radial-gradient(circle at 72% 18%, rgba(240, 180, 41, 0.22), transparent 42%),
    radial-gradient(circle at 28% 32%, rgba(185, 28, 28, 0.28), transparent 48%),
    linear-gradient(145deg, #16080c 0%, #0a1214 52%, #07140f 100%);
}

.live-card--blackjack::before {
  background:
    linear-gradient(180deg, transparent 20%, rgba(0, 0, 0, 0.9) 100%),
    linear-gradient(135deg, #0f2a1a, #081018 55%, #1a1020);
}

.live-card--show::before {
  background:
    linear-gradient(180deg, transparent 20%, rgba(0, 0, 0, 0.88) 100%),
    radial-gradient(circle at 50% 20%, rgba(240, 180, 41, 0.45), transparent 40%),
    linear-gradient(160deg, #2a1030, #0a1018);
}

.live-card h3 {
  font-family: var(--font-display);
  font-size: 1.65rem;
  letter-spacing: 0.03em;
}

.live-card p {
  color: rgba(255, 255, 255, 0.75);
  font-size: 0.9rem;
  margin-bottom: 0.35rem;
}

.live-card .btn {
  align-self: flex-start;
}

/* Daily / tournament */
.daily__meter {
  padding: 1.5rem;
  border: 1px solid rgba(240, 180, 41, 0.28);
  border-radius: 8px;
  background:
    radial-gradient(ellipse at top, rgba(240, 180, 41, 0.12), transparent 60%),
    #121018;
  text-align: center;
}

.daily__meter-label {
  display: block;
  font-size: 0.72rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 0.35rem;
}

.daily__meter strong {
  font-family: var(--font-display);
  font-size: 2.4rem;
  letter-spacing: 0.03em;
  color: var(--gold-hot);
}

.daily__bar {
  margin-top: 1rem;
  height: 6px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.08);
  overflow: hidden;
}

.daily__bar i {
  display: block;
  height: 100%;
  width: 62%;
  border-radius: inherit;
  background: linear-gradient(90deg, var(--lime), var(--gold));
  animation: load-bar 3s ease-in-out infinite;
}

@keyframes load-bar {
  0%,
  100% {
    width: 48%;
  }
  50% {
    width: 78%;
  }
}

/* Unique copy blocks */
.copy,
.faq-dird {
  padding: 3.5rem var(--pad-x);
  background: #000;
}

.faq-dird {
  background: #0e0e12;
}

.daily + .faq-dird,
.live + .copy {
  border-top: 1px solid var(--line);
}

.copy__inner,
.faq-dird__inner {
  max-width: var(--max);
  margin: 0 auto;
}

.copy h2,
.faq-dird h2 {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 4vw, 2.6rem);
  letter-spacing: 0.04em;
  margin-bottom: 0.7rem;
}

.copy > .copy__inner > p,
.faq-dird > .faq-dird__inner > p {
  color: var(--muted);
  max-width: 44rem;
  margin-bottom: 1.1rem;
  font-size: 0.98rem;
}

.copy-grid {
  display: grid;
  gap: 1.15rem;
  margin-top: 1.75rem;
}

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

.copy-card {
  padding: 1.25rem 1.2rem 1.15rem;
  border: 1px solid var(--line);
  border-radius: 6px;
  background: #101014;
}

.copy-card h3 {
  font-family: var(--font-display);
  font-size: 1.45rem;
  letter-spacing: 0.03em;
  margin-bottom: 0.45rem;
}

.copy-card p {
  color: var(--muted);
  font-size: 0.92rem;
  margin: 0;
}

.faq-dird details {
  max-width: var(--max);
  margin: 0 auto 0.65rem;
  border: 1px solid var(--line);
  border-radius: 6px;
  background: #101014;
}

.faq-dird summary {
  cursor: pointer;
  padding: 1rem 1.15rem;
  font-weight: 700;
  font-size: 1.02rem;
  list-style: none;
  display: flex;
  justify-content: space-between;
  gap: 1rem;
}

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

.faq-dird summary::after {
  content: "+";
  color: var(--lime);
}

.faq-dird details[open] summary::after {
  content: "–";
}

.faq-dird details p {
  padding: 0 1.15rem 1.15rem;
  color: var(--muted);
  font-size: 0.92rem;
  margin: 0;
}

/* Payments */
.payments {
  padding: 2.75rem var(--pad-x);
  background: #000;
  text-align: center;
  border-top: 1px solid var(--line);
}

.payments h2 {
  font-family: var(--font-display);
  font-size: 1.7rem;
  letter-spacing: 0.04em;
  margin-bottom: 1.25rem;
}

.pay-logos {
  max-width: var(--max);
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.65rem;
}

.pay-logos li {
  min-width: 6.5rem;
  padding: 0.7rem 1rem;
  border: 1px solid var(--line);
  border-radius: 4px;
  background: #121217;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.8);
}

/* Terms */
.terms {
  padding: 3.25rem var(--pad-x) 4rem;
  background: var(--bg);
}

.terms h2 {
  max-width: var(--max);
  margin: 0 auto 1.25rem;
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 3.5vw, 2.4rem);
  letter-spacing: 0.04em;
}

.terms__block {
  max-width: var(--max);
  margin: 0 auto 0.75rem;
  border: 1px solid var(--line);
  border-radius: 6px;
  background: #101014;
}

.terms__block summary {
  cursor: pointer;
  padding: 1rem 1.15rem;
  font-weight: 700;
  font-size: 1.05rem;
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
}

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

.terms__block summary::after {
  content: "+";
  font-size: 1.25rem;
  color: var(--lime);
}

.terms__block[open] summary::after {
  content: "–";
}

.terms__body {
  padding: 0 1.15rem 1.25rem;
  color: var(--muted);
  font-size: 0.92rem;
}

.terms__body h3 {
  color: var(--ink);
  font-size: 0.95rem;
  margin: 1rem 0 0.45rem;
}

.terms__body ul {
  padding-left: 1.1rem;
  list-style: disc;
}

.terms__body li {
  margin-bottom: 0.35rem;
}

/* Footer */
.site-footer {
  padding: 2rem var(--pad-x) 2.5rem;
  background: #050508;
  border-top: 1px solid var(--line);
  display: grid;
  gap: 1rem;
  justify-items: start;
}

.footer__nav {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem 1.25rem;
  font-size: 0.85rem;
  color: var(--muted);
}

.footer__nav a:hover {
  color: var(--lime);
}

.footer__warn {
  font-size: 0.82rem;
  color: var(--muted);
}

.footer__warn a {
  color: var(--lime);
  text-decoration: underline;
  text-underline-offset: 2px;
}

/* Reveal */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

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

/* Responsive */
@media (max-width: 960px) {
  .hero__inner,
  .section-band--split,
  .promo-rail,
  .live-grid {
    grid-template-columns: 1fr;
  }

  .hero__side {
    justify-self: start;
    text-align: left;
  }

  .rush-badge {
    margin-left: 0;
  }

  .hero__reels,
  .hero__chips {
    opacity: 0.2;
  }

  .trust__list {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

@media (max-width: 640px) {
  .how__steps {
    grid-template-columns: 1fr;
    gap: 1.25rem;
  }

  .how__steps li {
    justify-content: flex-start;
  }

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

  .brand__sub {
    display: none;
  }

  .hero {
    min-height: auto;
    padding-top: 2.5rem;
  }
}
