/* Shared Testy Rewards styles */
:root {
  --ink: #08060d;
  --ink-soft: #100c18;
  --panel: #15101e;
  --panel-2: #1b1427;
  --violet: #bd4df2;
  --violet-hot: #df6dff;
  --violet-deep: #69258f;
  --lavender: #e9c5fb;
  --cream: #f7f3fa;
  --muted: #9f97aa;
  --line: rgba(255, 255, 255, .11);
  --kick: #53fc18;
  --ease: cubic-bezier(.16, 1, .3, 1);
  --display: "Unbounded", "Arial Black", sans-serif;
  --body: "DM Sans", Arial, sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scrollbar-color: var(--violet) var(--ink);
  overflow-x: clip;
}

body {
  min-width: 320px;
  margin: 0;
  overflow-x: clip;
  color: var(--cream);
  background:
    radial-gradient(circle at 50% -10%, rgba(154, 56, 205, .17), transparent 36rem),
    var(--ink);
  font-family: var(--body);
  -webkit-font-smoothing: antialiased;
}

body.is-loading {
  overflow: hidden;
}

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

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

button {
  color: inherit;
  font: inherit;
}

img,
svg {
  display: block;
}

.icon-sprite {
  position: absolute;
  width: 0;
  height: 0;
  overflow: hidden;
}

.ui-icon {
  width: 1em;
  height: 1em;
}

.noise {
  position: fixed;
  z-index: 40;
  inset: 0;
  opacity: .035;
  pointer-events: none;
  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='.7'/%3E%3C/svg%3E");
}

#particle-canvas {
  position: fixed;
  z-index: -1;
  inset: 0;
  width: 100%;
  height: 100%;
  opacity: .75;
  pointer-events: none;
}

.cursor-glow {
  position: fixed;
  z-index: 2;
  left: 0;
  top: 0;
  width: 26rem;
  height: 26rem;
  opacity: .1;
  border-radius: 50%;
  pointer-events: none;
  background: radial-gradient(circle, var(--violet) 0, rgba(189, 77, 242, .32) 23%, transparent 68%);
  transform: translate3d(calc(var(--mouse-x, -30rem) - 50%), calc(var(--mouse-y, -30rem) - 50%), 0);
  transition: opacity .3s ease;
}

.scroll-progress {
  position: fixed;
  z-index: 60;
  top: 0;
  left: 0;
  width: 100%;
  height: 2px;
  background: rgba(255, 255, 255, .04);
}

.scroll-progress span {
  display: block;
  width: var(--scroll, 0%);
  height: 100%;
  background: linear-gradient(90deg, var(--violet), var(--violet-hot), var(--kick));
  box-shadow: 0 0 15px var(--violet);
}

.loader {
  position: fixed;
  z-index: 1000;
  inset: 0;
  display: grid;
  place-content: center;
  gap: 2rem;
  background: #07050a;
  transition: opacity .7s var(--ease), visibility .7s;
}

.loader::before,
.loader::after {
  content: "";
  position: absolute;
  height: 1px;
  width: 38vw;
  top: 50%;
  background: linear-gradient(90deg, transparent, rgba(189, 77, 242, .5));
  transform-origin: right;
  animation: loader-line 1.4s ease-in-out infinite alternate;
}

.loader::before { left: 0; }
.loader::after { right: 0; transform: rotate(180deg); }

.loader.is-hidden {
  opacity: 0;
  visibility: hidden;
}

.loader__mark-wrap {
  position: relative;
  width: 7.5rem;
  height: 7.5rem;
  margin: auto;
  display: grid;
  place-items: center;
}

.loader__mark {
  width: 4.2rem;
  filter: drop-shadow(0 0 17px rgba(199, 82, 249, .55));
  animation: loader-mark 1.2s var(--ease) infinite alternate;
}

.loader__orbit {
  position: absolute;
  inset: 0;
  border: 1px solid rgba(220, 104, 255, .3);
  border-left-color: var(--violet-hot);
  border-radius: 50%;
  animation: spin 1.2s linear infinite;
}

.loader__track {
  width: min(20rem, 70vw);
  height: 2px;
  overflow: hidden;
  background: rgba(255, 255, 255, .1);
}

.loader__track span {
  display: block;
  width: 100%;
  height: 100%;
  background: var(--violet-hot);
  box-shadow: 0 0 12px var(--violet);
  transform: scaleX(var(--load, 0));
  transform-origin: left;
}

.loader__readout {
  display: flex;
  justify-content: space-between;
  color: var(--muted);
  font-size: .65rem;
  letter-spacing: .18em;
  text-transform: uppercase;
}

.loader__readout strong {
  color: var(--cream);
  font-family: var(--display);
}

.site-header {
  position: fixed;
  z-index: 50;
  left: 50%;
  top: 1rem;
  width: min(94%, 91rem);
  height: 4.6rem;
  padding: 0 .65rem 0 1rem;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  border: 1px solid rgba(255, 255, 255, .1);
  border-radius: 1rem;
  background: rgba(10, 7, 15, .7);
  box-shadow: 0 1rem 4rem rgba(0, 0, 0, .2);
  backdrop-filter: blur(18px);
  transform: translateX(-50%);
  transition: width .5s var(--ease), background .4s ease, border-color .4s ease;
}

.site-header.is-scrolled {
  width: min(90%, 82rem);
  background: rgba(10, 7, 15, .9);
  border-color: rgba(206, 92, 255, .2);
}

.brand {
  justify-self: start;
  display: inline-flex;
  align-items: center;
  gap: .7rem;
}

.brand__frame {
  width: 2.3rem;
  height: 2.3rem;
  padding: .42rem;
  display: grid;
  place-items: center;
  border: 1px solid rgba(211, 99, 255, .42);
  border-radius: .55rem;
  background: rgba(188, 74, 238, .08);
  box-shadow: inset 0 0 16px rgba(201, 80, 250, .08);
}

.brand__frame img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.brand__text {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  font-family: var(--display);
  font-size: .66rem;
  font-weight: 700;
  letter-spacing: .05em;
}

.brand__text b { font-weight: 800; }

.brand__text em {
  padding-left: .5rem;
  border-left: 1px solid rgba(222, 105, 255, .35);
  color: var(--violet-hot);
  font-size: .52rem;
  font-style: normal;
  letter-spacing: .16em;
  text-shadow: 0 0 14px rgba(220, 100, 255, .35);
}

.main-nav {
  display: flex;
  gap: 1.8rem;
}

.nav-link {
  position: relative;
  padding: .7rem 0;
  color: #a9a1b3;
  font-size: .78rem;
  font-weight: 600;
  transition: color .3s ease;
}

.nav-link::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: .35rem;
  width: 100%;
  height: 1px;
  background: var(--violet-hot);
  box-shadow: 0 0 7px var(--violet);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform .35s var(--ease);
}

.nav-link:hover,
.nav-link.is-active { color: #fff; }
.nav-link:hover::after,
.nav-link.is-active::after { transform: scaleX(1); transform-origin: left; }

.leaderboard-link,
.primary-cta,
.card-action,
.final-cta__button {
  border: 0;
  cursor: pointer;
}

.leaderboard-link {
  justify-self: end;
  min-width: 9.8rem;
  padding: .85rem 1rem .85rem 1.2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  border-radius: .65rem;
  color: #0c0710;
  background: var(--cream);
  font-size: .74rem;
  font-weight: 700;
  transition: background .3s ease, color .3s ease;
}

.leaderboard-link:hover { color: white; background: var(--violet); }

.button-arrow,
.primary-cta__icon {
  display: grid;
  place-items: center;
  border-radius: 50%;
  transition: transform .35s var(--ease);
}

.leaderboard-link:hover .button-arrow,
.primary-cta:hover .primary-cta__icon { transform: rotate(45deg); }

.menu-toggle { display: none; }

.hero {
  position: relative;
  min-height: 100svh;
  padding: 9rem max(4vw, 1.25rem) 3rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  isolation: isolate;
}

.hero::before {
  content: "";
  position: absolute;
  z-index: -2;
  inset: 0;
  opacity: .26;
  background-image:
    linear-gradient(rgba(255, 255, 255, .055) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, .055) 1px, transparent 1px);
  background-size: 5.5rem 5.5rem;
  mask-image: linear-gradient(to bottom, black, transparent 88%);
  animation: grid-drift 14s linear infinite;
}

.hero::after {
  content: "";
  position: absolute;
  z-index: -1;
  left: 50%;
  top: 46%;
  width: min(72vw, 62rem);
  aspect-ratio: 1;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(171, 57, 218, .22), rgba(72, 17, 94, .08) 44%, transparent 69%);
  transform: translate(-50%, -50%);
  filter: blur(15px);
  animation: hero-aura 5s ease-in-out infinite alternate;
}

.hero__visual {
  position: relative;
  width: min(54vh, 34rem);
  min-width: 17rem;
  aspect-ratio: 1;
  margin: clamp(1.5rem, 3vh, 3rem) 0 1rem;
  display: grid;
  place-items: center;
  perspective: 1000px;
  transform-style: preserve-3d;
}

.hero__logo {
  position: relative;
  z-index: 5;
  width: 62%;
  height: 62%;
  object-fit: contain;
  filter: drop-shadow(0 0 10px rgba(210, 84, 255, .45)) drop-shadow(0 0 45px rgba(145, 45, 193, .28));
  transform: rotateX(var(--logo-ry, 0deg)) rotateY(var(--logo-rx, 0deg)) translateZ(50px);
  animation: logo-float 4.4s ease-in-out infinite;
  transition: transform .2s ease-out;
}

.hero__halo {
  position: absolute;
  left: 50%;
  top: 50%;
  border-radius: 50%;
  transform: translate(-50%, -50%);
}

.halo--one {
  width: 61%;
  height: 61%;
  border: 1px solid rgba(221, 104, 255, .28);
  box-shadow: 0 0 85px rgba(159, 57, 203, .22), inset 0 0 55px rgba(159, 57, 203, .15);
  animation: halo-pulse 2.8s ease-in-out infinite;
}

.halo--two {
  width: 82%;
  height: 82%;
  border: 1px dashed rgba(255, 255, 255, .09);
  animation: spin 40s linear infinite;
}

.hero__orbit {
  position: absolute;
  left: 50%;
  top: 50%;
  border: 1px solid rgba(204, 82, 248, .14);
  border-radius: 50%;
}

.hero__orbit i {
  position: absolute;
  width: .46rem;
  height: .46rem;
  top: 50%;
  left: -.25rem;
  border-radius: 50%;
  background: var(--violet-hot);
  box-shadow: 0 0 14px var(--violet-hot);
}

.orbit--one {
  width: 95%;
  height: 45%;
  transform: translate(-50%, -50%) rotate(-18deg);
  animation: orbit-one 8s linear infinite;
}

.orbit--two {
  width: 52%;
  height: 96%;
  transform: translate(-50%, -50%) rotate(28deg);
  animation: orbit-two 11s linear infinite reverse;
}

.orbit--two i { background: white; box-shadow: 0 0 14px white; }

.hero__ghost {
  position: absolute;
  z-index: -1;
  left: 50%;
  top: 50%;
  color: transparent;
  font-family: var(--display);
  font-size: clamp(6rem, 17vw, 17rem);
  font-weight: 800;
  letter-spacing: -.09em;
  line-height: .8;
  white-space: nowrap;
  -webkit-text-stroke: 1px rgba(213, 88, 255, .075);
  animation: ghost-drift 8s ease-in-out infinite alternate;
}

.hero__index {
  position: absolute;
  top: 48%;
  color: #716979;
  font-family: var(--display);
  font-size: .5rem;
  letter-spacing: .15em;
  line-height: 1.9;
}

.hero__index--left { right: calc(100% + 4vw); text-align: right; }
.hero__index--right { left: calc(100% + 4vw); }

.hero__copy {
  position: relative;
  z-index: 7;
  width: min(100%, 45rem);
  display: flex;
  align-items: center;
  gap: 2.5rem;
}

.hero__copy p {
  margin: 0;
  color: #d8d1dd;
  font-size: clamp(1rem, 1.4vw, 1.2rem);
  line-height: 1.65;
}

.primary-cta {
  position: relative;
  min-width: 15rem;
  padding: .72rem .72rem .72rem 1.25rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  overflow: hidden;
  border: 1px solid rgba(220, 106, 255, .45);
  border-radius: 99px;
  background: rgba(189, 77, 242, .11);
  font-size: .75rem;
  font-weight: 700;
  letter-spacing: .04em;
  text-align: left;
  text-transform: uppercase;
  backdrop-filter: blur(12px);
}

.primary-cta::before {
  content: "";
  position: absolute;
  inset: 0;
  background: var(--violet);
  transform: translateX(-102%);
  transition: transform .55s var(--ease);
}

.primary-cta > * { position: relative; }
.primary-cta:hover::before { transform: translateX(0); }

.primary-cta__icon {
  flex: 0 0 auto;
  width: 2.5rem;
  height: 2.5rem;
  color: #16091c;
  background: var(--cream);
  font-size: 1.1rem;
}

.hero__footer {
  width: min(100%, 82rem);
  margin-top: auto;
  padding-top: 2rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  color: #696270;
  font-size: .55rem;
  letter-spacing: .16em;
  text-transform: uppercase;
}

.scroll-cue {
  width: 1.6rem;
  height: 2.65rem;
  padding: .3rem;
  border: 1px solid rgba(255, 255, 255, .22);
  border-radius: 99px;
}

.scroll-cue i {
  display: block;
  width: .18rem;
  height: .5rem;
  margin: .2rem auto;
  border-radius: 99px;
  background: var(--violet-hot);
  animation: scroll-cue 1.6s ease-in-out infinite;
}

.ticker {
  position: relative;
  z-index: 4;
  padding: .9rem 0;
  overflow: hidden;
  color: #100a15;
  background: var(--violet-hot);
  border-block: 1px solid rgba(255,255,255,.4);
  transform: rotate(-1.25deg) scale(1.02);
}

.ticker__track {
  width: max-content;
  display: flex;
  align-items: center;
  gap: 0;
  font-family: var(--display);
  font-size: clamp(.7rem, 1vw, .9rem);
  font-weight: 800;
  letter-spacing: .1em;
  animation: ticker 36s linear infinite;
  will-change: transform;
}

.ticker__group {
  flex: 0 0 auto;
  padding-right: 2.5rem;
  display: flex;
  align-items: center;
  gap: 2.5rem;
}

.ticker__group i { font-size: 1.1rem; font-style: normal; }

.section-shell {
  width: min(100%, 91rem);
  margin: 0 auto;
  padding: clamp(7rem, 11vw, 11rem) max(3vw, 1.25rem);
}

.section-heading {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 1rem 4rem;
}

.section-heading > .split-heading { grid-column: 2; }

.split-heading {
  margin: 0;
  color: #fff;
  font-family: var(--display);
  font-size: clamp(2.55rem, 6.2vw, 6.9rem);
  font-weight: 700;
  letter-spacing: -.065em;
  line-height: .93;
}

.split-heading em {
  color: transparent;
  font-style: normal;
  -webkit-text-stroke: 1px var(--violet-hot);
  filter: drop-shadow(0 0 18px rgba(192, 74, 240, .18));
}

.split-heading .word-mask {
  display: inline-block;
  overflow: hidden;
  vertical-align: bottom;
}

.split-heading .word {
  display: inline-block;
  transform: translateY(115%) rotate(3deg);
  transition: transform 1s var(--ease);
}

.split-heading.is-visible .word { transform: translateY(0) rotate(0); }

.section-intro {
  grid-column: 2;
  max-width: 39rem;
  margin: 1.2rem 0 0;
  color: #9991a3;
  font-size: clamp(.95rem, 1.3vw, 1.14rem);
  line-height: 1.75;
}

.reward-grid {
  margin-top: 5rem;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.4rem;
  perspective: 1400px;
}

.reward-card {
  --card-color: var(--violet);
  position: relative;
  min-height: 42rem;
  padding: clamp(1.5rem, 3vw, 2.5rem);
  display: flex;
  flex-direction: column;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, .12);
  border-radius: 1.5rem;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, .06), transparent 30%),
    linear-gradient(145deg, #1c1227, #0e0a14 75%);
  box-shadow: 0 2rem 5rem rgba(0, 0, 0, .3), inset 0 1px rgba(255, 255, 255, .07);
  transform: rotateX(var(--tilt-y, 0deg)) rotateY(var(--tilt-x, 0deg));
  transform-style: preserve-3d;
  transition: border-color .4s ease, box-shadow .4s ease, transform .18s ease-out;
}

.reward-card--us {
  --card-color: #9662f4;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, .055), transparent 30%),
    linear-gradient(145deg, #161126, #0d0a14 75%);
}

.reward-card::before {
  content: "";
  position: absolute;
  inset: -2px;
  z-index: -1;
  border-radius: inherit;
  opacity: 0;
  background: conic-gradient(from var(--border-angle, 0deg), transparent 30%, var(--card-color), transparent 48%);
  animation: border-spin 5s linear infinite;
  transition: opacity .4s ease;
}

.reward-card::after {
  content: "";
  position: absolute;
  inset: 1px;
  z-index: -1;
  border-radius: inherit;
  background: #110c18;
}

.reward-card:hover {
  border-color: rgba(207, 94, 255, .4);
  box-shadow: 0 2.5rem 8rem rgba(82, 22, 107, .38), inset 0 1px rgba(255, 255, 255, .1);
}

.reward-card:hover::before { opacity: 1; }

.reward-card__glare {
  position: absolute;
  z-index: 1;
  inset: 0;
  opacity: .22;
  pointer-events: none;
  background: radial-gradient(circle at var(--glare-x, 50%) var(--glare-y, 0%), rgba(255, 255, 255, .3), transparent 25%);
}

.reward-card__topline {
  position: relative;
  z-index: 3;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.card-status {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  color: #bdb6c4;
  font-size: .61rem;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
}

.card-status i {
  width: .42rem;
  height: .42rem;
  border-radius: 50%;
  background: var(--card-color);
  box-shadow: 0 0 12px var(--card-color);
  animation: blink 1.3s steps(2) infinite;
}

.reward-card__logo {
  position: relative;
  z-index: 2;
  height: 12rem;
  margin: 2.5rem 0 1rem;
  display: flex;
  align-items: center;
}

.reward-card__logo::before {
  content: "";
  position: absolute;
  left: -15%;
  top: 50%;
  width: 70%;
  height: 150%;
  border-radius: 50%;
  opacity: .2;
  background: var(--card-color);
  filter: blur(70px);
  transform: translateY(-50%);
  animation: card-glow 4s ease-in-out infinite alternate;
}

.reward-card__logo img {
  position: relative;
  width: clamp(10rem, 22vw, 16rem);
  height: 8rem;
  object-fit: contain;
  object-position: left center;
  filter: drop-shadow(0 0 18px rgba(255,255,255,.08));
  transition: transform .7s var(--ease), filter .7s ease;
}

.reward-card:hover .reward-card__logo img {
  filter: drop-shadow(0 0 20px rgba(255,255,255,.18));
  transform: translate3d(.7rem, -.35rem, 30px) scale(1.04);
}

.reward-card__content { position: relative; z-index: 3; margin-top: auto; }

.reward-card__tag {
  margin-bottom: 1.25rem;
  color: var(--card-color);
  font-size: .63rem;
  font-weight: 700;
  letter-spacing: .13em;
  text-transform: uppercase;
}

.reward-card__content h2 {
  margin: 0;
  font-family: var(--display);
  font-size: clamp(2rem, 3.4vw, 3.55rem);
  letter-spacing: -.055em;
  line-height: .98;
}

.reward-card__content p {
  max-width: 34rem;
  margin: 1.35rem 0 1.5rem;
  color: #aaa2b3;
  font-size: .92rem;
  line-height: 1.7;
}

.reward-card__features {
  display: flex;
  flex-wrap: wrap;
  gap: .5rem;
}

.reward-card__features span {
  padding: .52rem .72rem;
  border: 1px solid rgba(255, 255, 255, .1);
  border-radius: 99px;
  color: #c8c2cd;
  background: rgba(255, 255, 255, .035);
  font-size: .62rem;
  letter-spacing: .06em;
}

.card-action {
  position: relative;
  z-index: 4;
  margin-top: 2rem;
  padding-top: 1.25rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-top: 1px solid var(--line);
  font-size: .75rem;
  font-weight: 700;
  letter-spacing: .06em;
  text-transform: uppercase;
}

.card-action b {
  display: grid;
  place-items: center;
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 50%;
  color: #16091d;
  background: var(--card-color);
  font-size: 1rem;
  transition: transform .4s var(--ease);
}

.card-action:hover b { transform: rotate(45deg) scale(1.08); }

.card-rings {
  position: absolute;
  right: -8rem;
  top: 7rem;
  width: 22rem;
  aspect-ratio: 1;
  opacity: .23;
  pointer-events: none;
  animation: spin 30s linear infinite;
}

.card-rings i {
  position: absolute;
  inset: calc(var(--ring, 0) * 2rem);
  border: 1px solid var(--card-color);
  border-radius: 50%;
}

.card-rings i:nth-child(1) { --ring: 0; border-style: dashed; }
.card-rings i:nth-child(2) { --ring: 1; }
.card-rings i:nth-child(3) { --ring: 2; border-style: dashed; }

.legal-line {
  margin: 1.4rem 0 0;
  color: #675f6e;
  font-size: .67rem;
  text-align: right;
}

.socials {
  position: relative;
}

.socials::before {
  content: "";
  position: absolute;
  z-index: -1;
  left: 50%;
  top: 45%;
  width: 65vw;
  height: 25rem;
  border-radius: 50%;
  background: rgba(122, 38, 155, .13);
  filter: blur(100px);
  transform: translate(-50%, -50%);
}

.socials__header {
  display: grid;
  grid-template-columns: 2fr 1fr;
  align-items: end;
  gap: 3rem;
}

.socials__header .section-intro { grid-column: auto; margin: 0 0 .5rem; }

.social-grid {
  margin-top: 5rem;
  border-top: 1px solid var(--line);
}

.social-card {
  --social-color: var(--violet);
  position: relative;
  min-height: 8rem;
  padding: 1.3rem 2rem;
  display: grid;
  grid-template-columns: 5rem 1fr auto;
  align-items: center;
  gap: 2rem;
  overflow: hidden;
  border-bottom: 1px solid var(--line);
  translate: var(--social-x, 0) var(--social-y, 0);
  transition: padding .5s var(--ease), color .3s ease, translate .22s ease-out;
  will-change: translate;
}

.social-card::before {
  content: "";
  position: absolute;
  z-index: -1;
  inset: 0;
  background: var(--social-color);
  transform: scaleY(0);
  transform-origin: bottom;
  transition: transform .55s var(--ease);
}

.social-card:hover { padding-inline: 2.8rem 1.3rem; color: #0b0710; }
.social-card:hover::before { transform: scaleY(1); }

.social-card--discord { --social-color: #7c89f8; }
.social-card--instagram { --social-color: #e45fb5; }
.social-card--x { --social-color: #f4f0f6; }
.social-card--kick { --social-color: var(--kick); }

.social-icon {
  width: 3.25rem;
  height: 3.25rem;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.4;
  transition: transform .6s var(--ease);
}

.social-icon path { fill: currentColor; stroke: none; }
.social-icon__fill { fill: currentColor; stroke: none; }
.social-icon--kick { object-fit: contain; filter: grayscale(1) brightness(3); }

.social-card:hover .social-icon { transform: rotate(-8deg) scale(1.12); }
.social-card--kick:hover .social-icon { filter: brightness(0); }

.social-card div { display: flex; align-items: baseline; gap: 1.5rem; }

.social-card strong {
  min-width: 13rem;
  font-family: var(--display);
  font-size: clamp(1.3rem, 2.6vw, 2.5rem);
  letter-spacing: -.04em;
}

.social-card div span {
  color: #77707f;
  font-size: .78rem;
  letter-spacing: .06em;
  transition: color .3s ease;
}

.social-arrow {
  display: grid;
  place-items: center;
  width: 3rem;
  height: 3rem;
  border: 1px solid rgba(255, 255, 255, .2);
  border-radius: 50%;
  font-size: 1.1rem;
  transition: transform .5s var(--ease), border-color .3s ease;
}

.social-card:hover div span { color: rgba(11, 7, 16, .65); }
.social-card:hover .social-arrow { border-color: rgba(11, 7, 16, .3); transform: rotate(45deg); }

.live-section {
  position: relative;
  overflow: hidden;
}

.live-section__backdrop {
  position: absolute;
  z-index: -1;
  right: -2vw;
  top: 8rem;
  color: transparent;
  font-family: var(--display);
  font-size: clamp(11rem, 31vw, 30rem);
  font-weight: 800;
  line-height: .8;
  -webkit-text-stroke: 1px rgba(83, 252, 24, .055);
  animation: live-breathe 5s ease-in-out infinite alternate;
}

.live-section__title-row {
  margin-top: 2rem;
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 2rem;
}

.live-section .split-heading em { -webkit-text-stroke-color: var(--kick); }

.on-air-badge {
  margin-bottom: .4rem;
  padding: .65rem 1rem;
  display: inline-flex;
  align-items: center;
  gap: .55rem;
  border: 1px solid rgba(83, 252, 24, .35);
  border-radius: 99px;
  color: var(--kick);
  background: rgba(83, 252, 24, .06);
  font-size: .62rem;
  font-weight: 800;
  letter-spacing: .14em;
  text-transform: uppercase;
}

.on-air-badge span {
  width: .45rem;
  height: .45rem;
  border-radius: 50%;
  background: var(--kick);
  box-shadow: 0 0 12px var(--kick);
  animation: blink 1s steps(2) infinite;
}

.stream-shell {
  margin-top: 4rem;
  overflow: hidden;
  border: 1px solid rgba(83, 252, 24, .22);
  border-radius: 1.4rem;
  background: #0b0a0d;
  box-shadow: 0 2.5rem 9rem rgba(19, 63, 10, .22), inset 0 1px rgba(255,255,255,.06);
}

.stream-shell__chrome,
.stream-shell__footer {
  min-height: 3.5rem;
  padding: 0 1.4rem;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 1rem;
}

.stream-shell__chrome { border-bottom: 1px solid rgba(255,255,255,.08); }

.stream-dots { display: flex; gap: .4rem; }
.stream-dots i { width: .45rem; height: .45rem; border-radius: 50%; background: #37323b; }
.stream-dots i:first-child { background: var(--kick); box-shadow: 0 0 10px rgba(83,252,24,.5); }

.stream-address {
  color: #7b747f;
  font-family: var(--display);
  font-size: .57rem;
  letter-spacing: .06em;
}

.stream-address b { color: #ccc6cf; font-weight: 600; }

.stream-quality {
  justify-self: end;
  color: var(--kick);
  font-size: .56rem;
  font-weight: 800;
  letter-spacing: .13em;
}

.stream-player {
  position: relative;
  aspect-ratio: 16 / 8.5;
  min-height: 24rem;
  overflow: hidden;
  background: #050506;
}

.stream-player iframe {
  width: 100%;
  height: 100%;
  border: 0;
}

.stream-player::after {
  content: "";
  position: absolute;
  inset: 0;
  opacity: .1;
  pointer-events: none;
  background: repeating-linear-gradient(0deg, transparent 0 3px, rgba(255,255,255,.08) 4px);
  mix-blend-mode: overlay;
}

.stream-placeholder {
  position: absolute;
  inset: 0;
  display: grid;
  grid-template-columns: 1fr 1.3fr;
  align-items: center;
  overflow: hidden;
  background:
    radial-gradient(circle at 22% 48%, rgba(83, 252, 24, .18), transparent 23%),
    linear-gradient(120deg, #10150e, #060607 57%);
}

.stream-placeholder__grid {
  position: absolute;
  inset: -30%;
  opacity: .19;
  background-image:
    linear-gradient(rgba(83,252,24,.25) 1px, transparent 1px),
    linear-gradient(90deg, rgba(83,252,24,.25) 1px, transparent 1px);
  background-size: 4rem 4rem;
  transform: perspective(600px) rotateX(58deg) translateY(27%);
  animation: kick-grid 8s linear infinite;
}

.stream-placeholder__mark {
  position: relative;
  z-index: 2;
  justify-self: center;
  width: min(23vw, 16rem);
  aspect-ratio: 1;
  display: grid;
  place-items: center;
}

.stream-placeholder__mark::before,
.stream-placeholder__mark::after {
  content: "";
  position: absolute;
  inset: 0;
  border: 1px solid rgba(83,252,24,.22);
  border-radius: 50%;
  animation: kick-ring 3s ease-out infinite;
}

.stream-placeholder__mark::after { animation-delay: -1.5s; }

.stream-placeholder__mark img {
  width: 70%;
  height: 70%;
  object-fit: contain;
  filter: drop-shadow(0 0 25px rgba(83,252,24,.36));
  animation: kick-logo 3s ease-in-out infinite alternate;
}

.stream-pulse {
  position: absolute;
  right: 11%;
  top: 16%;
  width: .8rem;
  height: .8rem;
  border-radius: 50%;
  background: var(--kick);
  box-shadow: 0 0 22px var(--kick);
}

.stream-placeholder__copy {
  position: relative;
  z-index: 2;
  padding-right: 2rem;
}

.stream-placeholder__copy > span {
  color: var(--kick);
  font-size: .62rem;
  font-weight: 800;
  letter-spacing: .16em;
  text-transform: uppercase;
}

.stream-placeholder__copy h2 {
  margin: 1rem 0 1.2rem;
  font-family: var(--display);
  font-size: clamp(2rem, 4.5vw, 5rem);
  letter-spacing: -.06em;
  line-height: .9;
}

.stream-placeholder__copy p {
  max-width: 31rem;
  margin: 0;
  color: #99949c;
  font-size: .88rem;
  line-height: 1.6;
}

.stream-placeholder__copy strong { color: #e2dfe4; }

.stream-shell__footer {
  border-top: 1px solid rgba(255,255,255,.08);
  color: #77717b;
  font-size: .66rem;
}

.stream-shell__footer > span { display: flex; align-items: center; gap: .5rem; color: #a9a3ad; text-transform: uppercase; letter-spacing: .1em; }
.stream-shell__footer > span i { width: .42rem; height: .42rem; border-radius: 50%; background: var(--kick); box-shadow: 0 0 8px var(--kick); }
.stream-shell__footer p { margin: 0; text-align: center; }
.stream-shell__footer a { justify-self: end; display: inline-flex; align-items: center; gap: .35rem; color: var(--kick); font-weight: 700; }

.final-cta { padding-top: 5rem; }

.final-cta__line {
  display: flex;
  align-items: center;
  gap: 1rem;
  color: #8b838f;
  font-size: .65rem;
  font-weight: 700;
  letter-spacing: .15em;
  text-transform: uppercase;
}

.final-cta__line i { flex: 1; height: 1px; background: var(--line); }
.final-cta__line span:last-child { color: var(--violet-hot); }

.final-cta__button {
  position: relative;
  width: 100%;
  margin-top: 2.5rem;
  padding: clamp(2rem, 5vw, 4.5rem);
  display: flex;
  align-items: center;
  justify-content: space-between;
  overflow: hidden;
  border-radius: 1.4rem;
  color: #0b0710;
  background: var(--violet-hot);
  text-align: left;
  transition: color .45s ease;
}

.final-cta__button::before {
  content: "";
  position: absolute;
  inset: 0;
  background: var(--cream);
  clip-path: circle(0 at var(--cta-x, 50%) var(--cta-y, 50%));
  transition: clip-path .7s var(--ease);
}

.final-cta__button:hover::before { clip-path: circle(85% at var(--cta-x, 50%) var(--cta-y, 50%)); }
.final-cta__button > * { position: relative; z-index: 1; }

.final-cta__button span {
  font-family: var(--display);
  font-size: clamp(2.4rem, 7.5vw, 8.5rem);
  font-weight: 800;
  letter-spacing: -.075em;
  line-height: .84;
}

.final-cta__button b {
  display: grid;
  place-items: center;
  width: clamp(4rem, 8vw, 7rem);
  aspect-ratio: 1;
  border: 1px solid rgba(11, 7, 16, .35);
  border-radius: 50%;
  font-size: clamp(1.5rem, 3vw, 3rem);
  transition: transform .5s var(--ease);
}

.final-cta__button:hover b { transform: rotate(45deg) scale(1.08); }

.site-footer {
  position: relative;
  width: min(94%, 91rem);
  margin: 0 auto 1.5rem;
  padding: clamp(2rem, 4vw, 3.5rem);
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, .1);
  border-radius: 1.6rem;
  background:
    linear-gradient(135deg, rgba(255,255,255,.045), transparent 35%),
    #0d0912;
  box-shadow: 0 2rem 7rem rgba(0, 0, 0, .3), inset 0 1px rgba(255,255,255,.05);
  isolation: isolate;
}

.site-footer__glow {
  position: absolute;
  z-index: -1;
  left: -8rem;
  top: -12rem;
  width: 34rem;
  height: 34rem;
  border-radius: 50%;
  opacity: .15;
  background: var(--violet);
  filter: blur(100px);
  animation: footer-glow 6s ease-in-out infinite alternate;
}

.site-footer__top {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 3rem;
}

.footer-brand {
  justify-self: start;
  display: inline-flex;
  align-items: center;
  gap: 1rem;
}

.footer-brand__mark {
  position: relative;
  width: 4.2rem;
  height: 4.2rem;
  padding: .75rem;
  display: grid;
  place-items: center;
  border: 1px solid rgba(216, 98, 255, .35);
  border-radius: 1rem;
  background: rgba(185, 69, 232, .09);
  box-shadow: inset 0 0 25px rgba(190, 71, 238, .09), 0 0 35px rgba(185, 69, 232, .08);
}

.footer-brand__mark::after {
  content: "";
  position: absolute;
  inset: -.35rem;
  border: 1px solid rgba(216, 98, 255, .1);
  border-radius: 1.25rem;
  animation: footer-mark 3s ease-in-out infinite;
}

.footer-brand__mark img { width: 100%; height: 100%; object-fit: contain; }

.footer-brand__name {
  display: flex;
  flex-direction: column;
  gap: .15rem;
  font-family: var(--display);
  font-size: 1.2rem;
  font-weight: 800;
  letter-spacing: .02em;
}

.footer-brand__name b {
  color: transparent;
  background: linear-gradient(110deg, #fff 15%, var(--lavender) 48%, var(--violet-hot) 100%);
  background-clip: text;
  -webkit-background-clip: text;
  font-weight: 800;
  text-shadow: 0 0 28px rgba(206, 83, 255, .16);
}

.footer-brand__name small {
  display: flex;
  align-items: center;
  gap: .45rem;
  color: var(--violet-hot);
  font-family: var(--body);
  font-size: .5rem;
  font-weight: 800;
  letter-spacing: .3em;
  text-transform: uppercase;
  text-shadow: 0 0 12px rgba(220, 100, 255, .32);
}

.footer-brand__name small::after {
  content: "";
  width: 1.5rem;
  height: 1px;
  background: linear-gradient(90deg, var(--violet-hot), transparent);
  box-shadow: 0 0 8px rgba(220, 100, 255, .4);
}

.footer-nav {
  display: flex;
  align-items: center;
  gap: clamp(1.2rem, 2.5vw, 2.5rem);
}

.footer-nav a {
  position: relative;
  padding: .6rem 0;
  color: #aaa3b1;
  font-size: .73rem;
  font-weight: 700;
  transition: color .3s ease;
}

.footer-nav a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: .25rem;
  width: 100%;
  height: 1px;
  background: var(--violet-hot);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform .35s var(--ease);
}

.footer-nav a:hover { color: white; }
.footer-nav a:hover::after { transform: scaleX(1); transform-origin: left; }

.footer-socials {
  justify-self: end;
  display: flex;
  align-items: center;
  gap: .55rem;
}

.footer-socials a {
  width: 2.8rem;
  height: 2.8rem;
  display: grid;
  place-items: center;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,.12);
  border-radius: .75rem;
  color: #b9b2be;
  background: rgba(255,255,255,.035);
  transition: color .3s ease, background .3s ease, border-color .3s ease, transform .4s var(--ease);
}

.footer-socials a:hover {
  color: #100915;
  border-color: var(--violet-hot);
  background: var(--violet-hot);
  transform: translateY(-.3rem) rotate(-4deg);
}

.footer-socials svg { width: 1.15rem; height: 1.15rem; }
.footer-socials img { width: 1.4rem; height: 1.4rem; object-fit: contain; filter: grayscale(1) brightness(2.2); }
.footer-socials a:hover img { filter: brightness(0); }

.site-footer__info {
  margin-top: 2.7rem;
  padding: 2rem 0;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: center;
  gap: 3rem;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.site-footer__info > p {
  max-width: 47rem;
  margin: 0;
  color: #7f7788;
  font-size: .82rem;
  line-height: 1.7;
}

.footer-warning {
  min-width: 20rem;
  padding: .8rem 1rem;
  display: grid;
  grid-template-columns: auto 1fr;
  align-items: center;
  gap: .9rem;
  border: 1px solid rgba(218, 100, 255, .2);
  border-radius: .9rem;
  background: rgba(189, 77, 242, .055);
}

.footer-warning strong {
  display: grid;
  place-items: center;
  width: 3rem;
  height: 3rem;
  border-radius: .65rem;
  color: #130a18;
  background: var(--violet-hot);
  font-family: var(--display);
  font-size: .88rem;
}

.footer-warning span {
  display: flex;
  flex-direction: column;
  color: #d8d2dc;
  font-size: .7rem;
  font-weight: 700;
}

.footer-warning small {
  margin-top: .22rem;
  color: #716a79;
  font-size: .57rem;
  font-weight: 500;
}

.site-footer__base {
  padding-top: 1.5rem;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 2rem;
  color: #5f5866;
  font-size: .57rem;
  letter-spacing: .1em;
  text-transform: uppercase;
}

.site-footer__base > span:nth-child(2) { justify-self: center; color: #766e7d; }
.site-footer__base b { font-weight: inherit; }

.back-to-top {
  justify-self: end;
  display: flex;
  align-items: center;
  gap: .8rem;
  color: #8e8795;
  font-size: .68rem;
  text-transform: uppercase;
}

.back-to-top span {
  display: grid;
  place-items: center;
  width: 2.2rem;
  height: 2.2rem;
  border: 1px solid var(--line);
  border-radius: 50%;
  transition: color .3s ease, background .3s ease, transform .3s ease;
}

.back-to-top .ui-icon { font-size: .9rem; }

.back-to-top:hover span { color: #0b0710; background: var(--violet-hot); transform: translateY(-.25rem); }

.toast {
  position: fixed;
  z-index: 100;
  right: 1.5rem;
  bottom: 1.5rem;
  max-width: calc(100vw - 3rem);
  padding: .85rem 1rem;
  display: flex;
  align-items: center;
  gap: .8rem;
  border: 1px solid rgba(217, 97, 255, .3);
  border-radius: .85rem;
  opacity: 0;
  visibility: hidden;
  background: rgba(19, 12, 25, .94);
  box-shadow: 0 1rem 4rem rgba(0,0,0,.4), 0 0 35px rgba(189,77,242,.12);
  backdrop-filter: blur(16px);
  transform: translateY(1rem) scale(.97);
  transition: .5s var(--ease);
}

.toast.is-visible { opacity: 1; visibility: visible; transform: none; }
.toast img { width: 2rem; height: 2rem; object-fit: contain; }
.toast div { display: flex; flex-direction: column; gap: .15rem; }
.toast strong { font-size: .76rem; }
.toast span { color: #8f8797; font-size: .68rem; }

.reveal {
  opacity: 0;
  transform: translateY(2rem);
  transition: opacity .9s var(--ease), transform .9s var(--ease);
  transition-delay: var(--delay, 0ms);
}

.reveal.is-visible { opacity: 1; transform: none; }

@property --border-angle {
  syntax: "<angle>";
  initial-value: 0deg;
  inherits: false;
}

@keyframes spin { to { rotate: 360deg; } }
@keyframes loader-line { from { transform: scaleX(.2); opacity: .3; } to { transform: scaleX(1); opacity: .8; } }
@keyframes loader-mark { from { transform: scale(.86); opacity: .7; } to { transform: scale(1.08); opacity: 1; } }
@keyframes logo-float { 0%,100% { translate: 0 -.35rem; } 50% { translate: 0 .6rem; } }
@keyframes halo-pulse { 0%,100% { scale: .95; opacity: .55; } 50% { scale: 1.08; opacity: 1; } }
@keyframes orbit-one { to { transform: translate(-50%, -50%) rotate(342deg); } }
@keyframes orbit-two { to { transform: translate(-50%, -50%) rotate(388deg); } }
@keyframes ghost-drift { from { transform: translate(calc(-50% - 2rem), -50%) rotate(-2deg); } to { transform: translate(calc(-50% + 2rem), -50%) rotate(2deg); } }
@keyframes grid-drift { to { background-position: 5.5rem 5.5rem; } }
@keyframes hero-aura { to { width: min(78vw, 67rem); opacity: .8; } }
@keyframes pulse-dot { 70% { box-shadow: 0 0 0 .6rem rgba(222,101,255,0); } 100% { box-shadow: 0 0 0 0 rgba(222,101,255,0); } }
@keyframes scroll-cue { 0% { transform: translateY(0); opacity: 0; } 30% { opacity: 1; } 100% { transform: translateY(1rem); opacity: 0; } }
@keyframes ticker { to { transform: translate3d(-50%, 0, 0); } }
@keyframes border-spin { to { --border-angle: 360deg; } }
@keyframes card-glow { to { transform: translate(2rem, -50%) scale(1.2); opacity: .28; } }
@keyframes blink { 50% { opacity: .25; } }
@keyframes live-breathe { to { opacity: .65; transform: translateX(-1rem); } }
@keyframes kick-grid { to { background-position: 4rem 4rem; } }
@keyframes kick-ring { 0% { scale: .65; opacity: 0; } 25% { opacity: .7; } 100% { scale: 1.3; opacity: 0; } }
@keyframes kick-logo { to { transform: scale(1.05) rotate(-2deg); filter: drop-shadow(0 0 42px rgba(83,252,24,.52)); } }
@keyframes footer-glow { to { translate: 4rem 2rem; scale: 1.15; opacity: .22; } }
@keyframes footer-mark { 0%, 100% { scale: .96; opacity: .35; } 50% { scale: 1.08; opacity: .8; } }

@media (max-width: 950px) {
  .site-header { grid-template-columns: 1fr auto; }
  .main-nav {
    position: fixed;
    top: 5.2rem;
    left: 0;
    width: 100%;
    padding: 1rem;
    display: grid;
    gap: .25rem;
    opacity: 0;
    visibility: hidden;
    border: 1px solid rgba(255,255,255,.1);
    border-radius: 1rem;
    background: rgba(11,8,15,.97);
    transform: translateY(-1rem);
    transition: .4s var(--ease);
  }

  .main-nav.is-open { opacity: 1; visibility: visible; transform: none; }
  .nav-link { padding: 1rem; border-bottom: 1px solid rgba(255,255,255,.06); }
  .leaderboard-link { display: none; }
  .menu-toggle {
    justify-self: end;
    width: 2.8rem;
    height: 2.8rem;
    padding: 0;
    display: grid;
    place-content: center;
    gap: .4rem;
    border: 1px solid var(--line);
    border-radius: .65rem;
    background: transparent;
  }
  .menu-toggle span { width: 1rem; height: 1px; background: white; transition: .35s var(--ease); }
  .menu-toggle[aria-expanded="true"] span:first-child { transform: translateY(.22rem) rotate(45deg); }
  .menu-toggle[aria-expanded="true"] span:last-child { transform: translateY(-.22rem) rotate(-45deg); }
  .section-heading { grid-template-columns: 1fr; }
  .section-heading > .split-heading { grid-column: 1; }
  .section-heading .section-intro { grid-column: 1; }
  .reward-card { min-height: 38rem; }
  .social-card { grid-template-columns: 4rem 1fr auto; gap: 1rem; }
  .social-card div { display: block; }
  .social-card strong { display: block; min-width: 0; }
  .social-card div span { display: block; margin-top: .3rem; }
}

@media (max-width: 760px) {
  .site-header { top: .65rem; height: 4.2rem; width: calc(100% - 1.3rem); }
  .site-header.is-scrolled { width: calc(100% - 1.3rem); }
  .brand__text { display: none; }
  .hero { min-height: 54rem; padding-top: 7.5rem; }
  .hero__visual { width: min(86vw, 25rem); margin-top: 3.5rem; }
  .hero__index { display: none; }
  .hero__copy { flex-direction: column; gap: 1.4rem; text-align: center; }
  .hero__copy p { max-width: 29rem; }
  .primary-cta { min-width: min(100%, 20rem); }
  .hero__footer { margin-top: 2.5rem; }
  .hero__footer > span { display: none; }
  .scroll-cue { margin: auto; }
  .section-shell { padding-block: 6.5rem; }
  .reward-grid { grid-template-columns: 1fr; margin-top: 3rem; }
  .reward-card { min-height: 39rem; }
  .socials__header { grid-template-columns: 1fr; }
  .socials__header .section-intro { max-width: 31rem; }
  .social-grid { margin-top: 3rem; }
  .social-card { min-height: 7rem; padding-inline: .8rem; grid-template-columns: 3.5rem 1fr 2.5rem; gap: .6rem; }
  .social-card:hover { padding-inline: 1.1rem .55rem; }
  .social-icon { width: 2.7rem; height: 2.7rem; }
  .social-arrow { width: 2.4rem; height: 2.4rem; }
  .live-section__title-row { align-items: flex-start; flex-direction: column; }
  .stream-placeholder { grid-template-columns: 1fr; place-content: center; text-align: center; }
  .stream-placeholder__mark { width: 8rem; }
  .stream-placeholder__copy { padding: 0 1.2rem 2rem; }
  .stream-placeholder__copy h2 { margin-block: .7rem; }
  .stream-player { min-height: 32rem; aspect-ratio: auto; }
  .stream-shell__chrome { grid-template-columns: auto 1fr; }
  .stream-address { justify-self: center; }
  .stream-quality { display: none; }
  .stream-shell__footer { padding-block: 1rem; grid-template-columns: 1fr auto; }
  .stream-shell__footer p { display: none; }
  .site-footer__top { grid-template-columns: 1fr auto; }
  .footer-nav { grid-row: 2; grid-column: 1 / -1; justify-content: center; padding-top: 1.5rem; border-top: 1px solid var(--line); }
  .site-footer__info { grid-template-columns: 1fr; gap: 1.3rem; }
  .footer-warning { min-width: 0; }
}

@media (max-width: 480px) {
  .split-heading { font-size: clamp(2rem, 10.6vw, 3rem); }
  .hero { min-height: 49rem; }
  .hero__visual { min-width: 15rem; margin-block: 2.5rem .5rem; }
  .reward-card { min-height: 36rem; border-radius: 1rem; }
  .reward-card__logo { height: 8rem; margin-top: 2rem; }
  .reward-card__logo img { height: 6rem; }
  .reward-card__content h2 { font-size: 2rem; }
  .social-card { grid-template-columns: 3rem 1fr 2.5rem; }
  .social-card div span { font-size: .65rem; }
  .stream-shell { border-radius: 1rem; }
  .stream-player { min-height: 28rem; }
  .stream-shell__chrome { padding-inline: .8rem; }
  .stream-shell__footer { padding-inline: .8rem; }
  .final-cta__button { padding: 2rem 1.3rem; border-radius: 1rem; }
  .final-cta__button span { font-size: 2.1rem; }
  .final-cta__button b { width: 3.2rem; }
  .site-footer { width: calc(100% - 1.3rem); padding: 1.2rem; border-radius: 1rem; }
  .footer-brand__mark { width: 3.4rem; height: 3.4rem; padding: .65rem; }
  .footer-brand__name { font-size: .95rem; }
  .footer-brand__name small { font-size: .43rem; letter-spacing: .2em; }
  .footer-brand__name small::after { width: .8rem; }
  .footer-socials { gap: .35rem; }
  .footer-socials a { width: 2.25rem; height: 2.25rem; border-radius: .6rem; }
  .footer-nav { justify-content: space-between; gap: .5rem; }
  .site-footer__info { margin-top: 1.8rem; padding-block: 1.5rem; }
  .footer-warning { padding: .65rem; }
  .site-footer__base { grid-template-columns: 1fr auto; gap: 1rem; }
  .site-footer__base > span:nth-child(2) { display: none; }
  .toast { left: .75rem; right: .75rem; bottom: .75rem; max-width: none; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .loader__mark,
  .loader__orbit,
  .hero__logo,
  .hero__halo,
  .hero__orbit,
  .hero__ghost,
  .ticker__track,
  .card-rings,
  .stream-placeholder__grid,
  .stream-placeholder__mark::before,
  .stream-placeholder__mark::after,
  .stream-placeholder__mark img { animation-duration: 12s; }
}
