:root {
  color-scheme: dark;
  --page: #050711;
  --page-soft: #080c17;
  --surface: #0d1322;
  --surface-strong: #111827;
  --surface-glass: rgba(14, 21, 36, 0.76);
  --ink: #f6f8ff;
  --ink-soft: #d7dfef;
  --muted: #8f9bb1;
  --line: rgba(169, 195, 230, 0.16);
  --line-strong: rgba(169, 195, 230, 0.28);
  --blue: #38bdf8;
  --blue-deep: #178fd4;
  --green: #4ade80;
  --orange: #ff7a2f;
  --shadow: 0 28px 90px rgba(0, 0, 0, 0.42);
  --container: min(74rem, calc(100% - 2rem));
}

@property --pass-fill {
  syntax: "<percentage>";
  inherits: false;
  initial-value: 0%;
}

@property --pass-ratio {
  syntax: "<number>";
  inherits: false;
  initial-value: 0;
}

@property --water-level {
  syntax: "<percentage>";
  inherits: true;
  initial-value: 0%;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-width: 320px;
  background:
    linear-gradient(180deg, #050711 0%, #080b14 44%, #050711 100%);
  color: var(--ink);
  font-family: "Wix Madefor Display", "Segoe UI", Arial, sans-serif;
  line-height: 1.45;
}

body::before {
  position: fixed;
  inset: 0;
  z-index: -1;
  content: "";
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.028) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.028) 1px, transparent 1px),
    repeating-linear-gradient(135deg, transparent 0 28px, rgba(74, 222, 128, 0.04) 28px 29px, transparent 29px 56px);
  background-size: 64px 64px, 64px 64px, 180px 180px;
  mask-image: linear-gradient(180deg, rgba(0, 0, 0, 0.85), transparent 80%);
  pointer-events: none;
}

a {
  color: inherit;
}

img,
svg {
  display: block;
}

img {
  max-width: 100%;
}

svg {
  width: 1.15rem;
  height: 1.15rem;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 2.2;
}

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

h1,
h2,
h3 {
  letter-spacing: 0;
  line-height: 0.98;
}

h1 {
  max-width: 11ch;
  margin-bottom: 1.25rem;
  font-size: clamp(3.2rem, 7.2vw, 6.8rem);
  font-weight: 800;
}

h2 {
  max-width: 12ch;
  margin-bottom: 0;
  font-size: clamp(2.35rem, 4.6vw, 4.9rem);
  font-weight: 800;
}

h3 {
  margin-bottom: 0.55rem;
  color: var(--ink);
  font-size: clamp(1.25rem, 1.7vw, 1.85rem);
  font-weight: 800;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 30;
  display: grid;
  grid-template-columns: auto 1fr auto auto;
  align-items: center;
  gap: 1.4rem;
  min-height: 4.75rem;
  padding: 0.9rem max(1rem, calc((100vw - 74rem) / 2));
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(5, 7, 17, 0.88);
  backdrop-filter: blur(22px);
}

.brand,
.main-nav,
.main-nav a,
.header-button,
.button,
.channel-action,
.language-button {
  text-decoration: none;
}

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

.brand img {
  width: 10.2rem;
  height: auto;
}

.main-nav {
  display: flex;
  justify-content: center;
  gap: 1.45rem;
  color: rgba(246, 248, 255, 0.66);
  font-size: 0.94rem;
  font-weight: 700;
}

.main-nav a,
.header-button,
.button,
.channel-card,
.channel-action {
  transition: transform 160ms ease, color 160ms ease, background 160ms ease, border-color 160ms ease, box-shadow 160ms ease;
}

.main-nav a:hover,
.main-nav a:focus-visible {
  color: var(--ink);
}

.language-switcher {
  display: inline-flex;
  gap: 0.28rem;
  padding: 0.25rem;
  border: 1px solid rgba(246, 248, 255, 0.12);
  border-radius: 8px;
  background: rgba(246, 248, 255, 0.055);
}

.language-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 2.35rem;
  min-height: 2.15rem;
  padding: 0 0.54rem;
  border: 1px solid transparent;
  border-radius: 7px;
  background: transparent;
  color: rgba(246, 248, 255, 0.62);
  font: inherit;
  font-size: 0.82rem;
  font-weight: 800;
  cursor: pointer;
  transition: color 160ms ease, background 160ms ease, border-color 160ms ease, box-shadow 160ms ease;
}

.language-button:hover,
.language-button:focus-visible,
.language-button.is-active {
  border-color: rgba(56, 189, 248, 0.28);
  background: rgba(56, 189, 248, 0.13);
  color: var(--ink);
  box-shadow: 0 0 22px rgba(56, 189, 248, 0.08);
}

.header-button,
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.55rem;
  min-height: 3.05rem;
  border: 1px solid transparent;
  border-radius: 8px;
  font-weight: 800;
}

.header-button {
  min-height: 2.65rem;
  padding: 0 1rem;
  border-color: rgba(56, 189, 248, 0.3);
  background: rgba(56, 189, 248, 0.11);
  color: var(--ink);
}

.button {
  padding: 0 1.25rem;
}

.header-button:hover,
.header-button:focus-visible,
.button:hover,
.button:focus-visible,
.channel-action:hover,
.channel-action:focus-visible {
  transform: translateY(-2px);
}

.button-primary {
  background: linear-gradient(135deg, var(--orange), #ff9b55 46%, var(--green));
  background-size: 220% 220%;
  color: #07101c;
  box-shadow: 0 22px 46px rgba(255, 122, 47, 0.22);
  animation: gradientFlow 5.4s ease-in-out infinite;
}

@keyframes gradientFlow {
  0%,
  100% {
    background-position: 0% 50%;
  }

  50% {
    background-position: 100% 50%;
  }
}

.button-secondary {
  border-color: rgba(246, 248, 255, 0.18);
  background: rgba(246, 248, 255, 0.06);
  color: var(--ink);
}

.button-wide {
  min-width: 18rem;
}

.eyebrow {
  margin: 0 0 0.95rem;
  color: var(--blue);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.hero {
  position: relative;
  min-height: clamp(39rem, 86svh, 54rem);
  overflow: hidden;
  border-bottom: 1px solid var(--line);
  background: #03050d;
}

.hero-visual {
  position: absolute;
  inset: 0 0 0 auto;
  width: min(78vw, 96rem);
}

.hero-visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center right;
  animation: heroPosterDrift 12s ease-in-out infinite alternate;
}

.hero::before {
  position: absolute;
  inset: 0;
  z-index: 1;
  content: "";
  background:
    linear-gradient(90deg, #050711 0%, rgba(5, 7, 17, 0.94) 26%, rgba(5, 7, 17, 0.5) 52%, rgba(5, 7, 17, 0.12) 100%),
    linear-gradient(180deg, rgba(5, 7, 17, 0.02), #050711 100%);
  pointer-events: none;
}

.hero::after {
  position: absolute;
  inset: auto 0 0;
  z-index: 2;
  height: 8rem;
  content: "";
  background: linear-gradient(0deg, var(--page), rgba(5, 7, 17, 0));
  pointer-events: none;
}

.is-gamified .hero-visual::after {
  position: absolute;
  inset: 0;
  content: "";
  background:
    radial-gradient(circle at 74% 24%, rgba(56, 189, 248, 0.2), transparent 16rem),
    radial-gradient(circle at 62% 62%, rgba(74, 222, 128, 0.16), transparent 14rem),
    linear-gradient(115deg, transparent 0 42%, rgba(255, 122, 47, 0.12) 48%, transparent 56% 100%);
  mix-blend-mode: screen;
  opacity: 0.62;
  pointer-events: none;
  animation: heroLightSweep 7s ease-in-out infinite;
}

@keyframes heroPosterDrift {
  from {
    transform: scale(1.01) translate3d(-0.3rem, 0, 0);
  }

  to {
    transform: scale(1.035) translate3d(0.35rem, -0.25rem, 0);
  }
}

@keyframes heroLightSweep {
  0%,
  100% {
    opacity: 0.34;
    transform: translateX(-12%);
  }

  50% {
    opacity: 0.78;
    transform: translateX(10%);
  }
}

.hero-inner {
  position: relative;
  z-index: 3;
  display: flex;
  flex-direction: column;
  justify-content: center;
  width: var(--container);
  min-height: inherit;
  margin: 0 auto;
  padding: 4.4rem 0 3.2rem;
}

.hero-copy {
  max-width: 44rem;
}

.lead {
  max-width: 34rem;
  margin-bottom: 1.6rem;
  color: var(--ink-soft);
  font-size: clamp(1.05rem, 1.35vw, 1.26rem);
  font-weight: 500;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
  margin-bottom: 2rem;
}

.hero-facts {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.7rem;
  max-width: 48rem;
}

.hero-facts > span {
  position: relative;
  isolation: isolate;
  display: inline-flex;
  align-items: center;
  gap: 0.65rem;
  min-height: 3.35rem;
  overflow: hidden;
  padding: 0.35rem 1rem;
  border: 1px solid rgba(56, 189, 248, 0.22);
  border-radius: 8px;
  background:
    linear-gradient(135deg, rgba(56, 189, 248, 0.13), rgba(255, 255, 255, 0.045) 48%, rgba(74, 222, 128, 0.08)),
    rgba(11, 17, 30, 0.74);
  color: var(--muted);
  font-size: 0.92rem;
  font-weight: 800;
  box-shadow: 0 16px 42px rgba(0, 0, 0, 0.24), inset 0 0 0 1px rgba(255, 255, 255, 0.025);
  backdrop-filter: blur(16px);
}

.hero-facts > span::before,
.hero-facts > span::after {
  position: absolute;
  content: "";
  pointer-events: none;
}

.hero-facts > span::before {
  inset: -1px;
  z-index: -1;
  background:
    linear-gradient(105deg, transparent 0 32%, rgba(56, 189, 248, 0.38) 44%, rgba(255, 255, 255, 0.2) 50%, transparent 62% 100%),
    radial-gradient(circle at 15% 20%, rgba(255, 122, 47, 0.18), transparent 5rem);
  opacity: 0.32;
  transform: translateX(-62%);
  animation: factScan 5.2s ease-in-out infinite;
}

.hero-facts > span::after {
  right: 0.55rem;
  bottom: 0.45rem;
  left: 0.55rem;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(56, 189, 248, 0.68), rgba(74, 222, 128, 0.58), transparent);
  opacity: 0.58;
  animation: factLinePulse 2.8s ease-in-out infinite;
}

.hero-facts > span:nth-child(2) {
  border-color: rgba(74, 222, 128, 0.28);
  background:
    linear-gradient(135deg, rgba(74, 222, 128, 0.14), rgba(255, 255, 255, 0.045) 48%, rgba(56, 189, 248, 0.08)),
    rgba(11, 17, 30, 0.74);
}

.hero-facts > span:nth-child(2)::before {
  animation-delay: -1.6s;
}

.hero-facts > span:nth-child(3) {
  border-color: rgba(255, 122, 47, 0.28);
  background:
    linear-gradient(135deg, rgba(255, 122, 47, 0.14), rgba(255, 255, 255, 0.045) 48%, rgba(56, 189, 248, 0.08)),
    rgba(11, 17, 30, 0.74);
}

.hero-facts > span:nth-child(3)::before {
  animation-delay: -3s;
}

.hero-facts > span > span {
  display: inline;
  min-height: 0;
  padding: 0;
  border: 0;
  border-radius: 0;
  background: transparent;
  color: rgba(215, 223, 239, 0.72);
  font-size: 0.92rem;
  font-weight: 800;
  box-shadow: none;
  backdrop-filter: none;
}

.hero-facts strong {
  display: inline-flex;
  align-items: center;
  min-height: 2.25rem;
  padding: 0 0.42rem;
  border-radius: 6px;
  background: rgba(255, 255, 255, 0.055);
  color: var(--ink);
  font-size: 1.18rem;
  line-height: 1;
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.04);
}

@keyframes factScan {
  0%,
  100% {
    opacity: 0.2;
    transform: translateX(-64%);
  }

  46%,
  58% {
    opacity: 0.58;
    transform: translateX(56%);
  }
}

@keyframes factLinePulse {
  0%,
  100% {
    opacity: 0.32;
    transform: scaleX(0.72);
  }

  50% {
    opacity: 0.88;
    transform: scaleX(1);
  }
}

.drop-strip {
  position: relative;
  z-index: 4;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  width: var(--container);
  margin: -1.7rem auto 0;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(11, 17, 30, 0.86);
  box-shadow: var(--shadow);
  backdrop-filter: blur(18px);
}

.drop-strip::before {
  position: absolute;
  inset: 0;
  content: "";
  background:
    linear-gradient(90deg, rgba(255, 122, 47, 0.1), transparent 28%, rgba(56, 189, 248, 0.1) 64%, rgba(74, 222, 128, 0.1)),
    repeating-linear-gradient(135deg, transparent 0 22px, rgba(255, 255, 255, 0.035) 22px 23px, transparent 23px 44px);
  opacity: 0.72;
  pointer-events: none;
}

.drop-strip div {
  position: relative;
  min-height: 8.2rem;
  padding: 1.25rem;
  border-right: 1px solid var(--line);
}

.drop-strip div:last-child {
  border-right: 0;
}

.drop-strip span,
.place,
.step-list span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 2.25rem;
  height: 2.25rem;
  margin-bottom: 0.9rem;
  border: 1px solid rgba(56, 189, 248, 0.28);
  border-radius: 8px;
  background: rgba(56, 189, 248, 0.12);
  color: var(--blue);
  font-size: 0.78rem;
  font-weight: 800;
}

.drop-strip strong {
  display: block;
  margin-bottom: 0.25rem;
  color: var(--ink);
  font-size: 1.05rem;
  font-weight: 800;
}

.drop-strip p,
.prize-card p,
.step-list p,
.section-head-wide > p,
.channel-card p,
.rules-grid p,
.final-section p,
.site-footer {
  color: var(--muted);
  font-weight: 500;
}

.drop-strip p,
.step-list p,
.channel-card p,
.rules-grid p,
.final-section p {
  margin-bottom: 0;
}

.section {
  width: var(--container);
  margin: 0 auto;
  padding-top: 7.2rem;
}

.section-head {
  margin-bottom: 2rem;
}

.section-note {
  max-width: 34rem;
  margin: 1rem 0 0;
  color: var(--muted);
  font-size: 1.05rem;
  font-weight: 500;
}

.section-head-wide {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(20rem, 0.72fr);
  gap: 2rem;
  align-items: end;
}

.section-head-wide > p {
  max-width: 34rem;
  margin-bottom: 0.4rem;
  font-size: 1.05rem;
}

.prize-showcase {
  display: grid;
  grid-template-columns: minmax(0, 1.07fr) minmax(0, 0.93fr);
  grid-template-rows: repeat(2, minmax(16rem, auto));
  gap: 1rem;
}

.prize-card,
.steps-board,
.channel-card,
.channels-cta,
.rules-grid article,
.final-section {
  border: 1px solid var(--line);
  border-radius: 8px;
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.075), rgba(255, 255, 255, 0.018)),
    var(--surface);
  box-shadow: 0 18px 54px rgba(0, 0, 0, 0.24);
}

.prize-card {
  position: relative;
  display: grid;
  overflow: hidden;
  transform-style: preserve-3d;
  transition: transform 220ms ease, border-color 220ms ease, box-shadow 220ms ease;
  will-change: transform;
}

.prize-card::after {
  position: absolute;
  inset: 0;
  content: "";
  border-radius: inherit;
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.03);
  pointer-events: none;
}

.prize-card-main {
  grid-row: span 2;
  min-height: 37rem;
}

.prize-card-secondary {
  grid-template-columns: minmax(13rem, 0.95fr) minmax(0, 1fr);
  min-height: 18rem;
}

.prize-media {
  position: relative;
  isolation: isolate;
  min-height: 18rem;
  overflow: hidden;
  background: #050711;
}

.prize-card-main .prize-media {
  min-height: 25rem;
}

.prize-media img {
  position: relative;
  z-index: 0;
  width: 100%;
  height: 100%;
  min-height: inherit;
  object-fit: cover;
  will-change: filter, transform;
}

.prize-media::before,
.prize-media::after {
  position: absolute;
  inset: 0;
  z-index: 1;
  content: "";
  pointer-events: none;
}

.prize-media::before {
  background:
    linear-gradient(108deg, transparent 0 34%, rgba(56, 189, 248, 0.18) 42%, rgba(246, 248, 255, 0.16) 48%, rgba(74, 222, 128, 0.12) 54%, transparent 64% 100%),
    radial-gradient(circle at 72% 28%, rgba(56, 189, 248, 0.16), transparent 14rem);
  mix-blend-mode: screen;
  opacity: 0.28;
  transform: translateX(-58%);
  animation: prizeMediaSweep 6.8s ease-in-out infinite;
}

.prize-media::after {
  background:
    radial-gradient(circle at 24% 82%, rgba(255, 122, 47, 0.13), transparent 10rem),
    radial-gradient(circle at 82% 70%, rgba(74, 222, 128, 0.11), transparent 12rem),
    repeating-linear-gradient(90deg, transparent 0 1.1rem, rgba(56, 189, 248, 0.035) 1.1rem 1.18rem, transparent 1.18rem 2.4rem);
  mix-blend-mode: screen;
  opacity: 0.38;
  animation: prizeMediaPulse 4.8s ease-in-out infinite alternate;
}

.prize-card-main .prize-media img {
  object-position: 58% center;
}

.prize-card-secondary .prize-media img {
  object-position: center;
}

.prize-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 1.55rem;
}

.prize-card-main .prize-content {
  min-height: 11rem;
  border-top: 1px solid var(--line);
  background: linear-gradient(90deg, rgba(255, 122, 47, 0.12), rgba(56, 189, 248, 0.05));
}

.place {
  width: fit-content;
  height: auto;
  margin-bottom: 0.75rem;
  padding: 0.44rem 0.65rem;
  color: var(--ink);
  text-transform: uppercase;
}

.prize-card-main .place {
  border-color: rgba(255, 122, 47, 0.42);
  background: rgba(255, 122, 47, 0.16);
  color: #ffd2b8;
}

.prize-card h3 {
  margin-bottom: 0.72rem;
}

.prize-reveal-card {
  isolation: isolate;
}

.prize-reveal-card:hover {
  transform: translateY(-0.28rem);
  border-color: var(--line-strong);
  box-shadow: 0 28px 76px rgba(0, 0, 0, 0.34);
}

.prize-reveal-card::before {
  position: absolute;
  inset: -30%;
  z-index: 1;
  content: "";
  background:
    radial-gradient(circle at 34% 44%, rgba(56, 189, 248, 0.14), transparent 16rem),
    radial-gradient(circle at 76% 60%, rgba(74, 222, 128, 0.1), transparent 14rem);
  opacity: 0.45;
  pointer-events: none;
  transform: translate3d(-4%, 0, 0);
  animation: prizeAura 7s ease-in-out infinite alternate;
}

.prize-reveal-card .prize-media img,
.prize-reveal-card .prize-content {
  transition: filter 520ms ease, opacity 420ms ease, transform 520ms ease;
}

.prize-reveal-card:not(.is-revealed) .prize-media img {
  opacity: 1;
  filter: none;
  transform: none;
}

.prize-reveal-card:not(.is-revealed) .prize-content {
  visibility: visible;
  opacity: 1;
  filter: none;
  pointer-events: auto;
}

.prize-lock {
  position: absolute;
  inset: 0;
  z-index: 5;
  display: grid;
  grid-template-rows: 1fr auto 1.05rem auto 1fr;
  place-items: center;
  overflow: hidden;
  padding: 1.25rem;
  background:
    radial-gradient(ellipse at 50% 42%, rgba(56, 189, 248, 0.16), transparent 16rem),
    linear-gradient(180deg, rgba(17, 24, 39, 0.98), rgba(4, 7, 14, 0.98)),
    repeating-linear-gradient(90deg, rgba(255, 255, 255, 0.06) 0 1px, transparent 1px 17px),
    repeating-linear-gradient(180deg, rgba(255, 255, 255, 0.055) 0 1px, transparent 1px 5.4rem);
  opacity: 1;
  box-shadow:
    inset 0 0 0 1px rgba(246, 248, 255, 0.08),
    inset 0 -2rem 4rem rgba(0, 0, 0, 0.38),
    inset 0 2rem 5rem rgba(56, 189, 248, 0.06);
  transition: opacity 220ms ease, visibility 220ms ease, transform 760ms cubic-bezier(0.18, 0.74, 0.2, 1);
  transform-origin: center;
  backface-visibility: hidden;
}

.prize-lock::before,
.prize-lock::after {
  position: absolute;
  content: "";
  pointer-events: none;
}

.prize-lock::before {
  inset: 0;
  background:
    linear-gradient(90deg, transparent 0 7%, rgba(255, 255, 255, 0.04) 7.2%, transparent 7.8% 15%, rgba(255, 255, 255, 0.035) 15.2%, transparent 15.8%),
    radial-gradient(circle at 50% 42%, rgba(74, 222, 128, 0.1), transparent 12rem);
  box-shadow:
    inset 0 0 0 1px rgba(56, 189, 248, 0.16),
    inset 0 0 4rem rgba(0, 0, 0, 0.46);
}

.prize-lock::after {
  top: -20%;
  bottom: -20%;
  left: -42%;
  width: 32%;
  background: linear-gradient(100deg, transparent, rgba(246, 248, 255, 0.24), rgba(56, 189, 248, 0.16), transparent);
  opacity: 0.2;
  transform: skewX(-16deg);
  animation: shutterIdleSweep 5.8s ease-in-out infinite;
}

.prize-lock span {
  position: relative;
  z-index: 2;
  display: inline-flex;
  grid-row: 2;
  align-items: center;
  justify-content: center;
  min-height: 3.6rem;
  min-width: min(18rem, 78%);
  margin: 0;
  padding: 0 1.45rem;
  border: 1px solid rgba(56, 189, 248, 0.24);
  border-radius: 8px;
  background:
    linear-gradient(135deg, rgba(56, 189, 248, 0.12), rgba(255, 255, 255, 0.035)),
    rgba(4, 8, 16, 0.64);
  color: var(--blue);
  font-size: clamp(1.05rem, 1.8vw, 1.5rem);
  font-weight: 800;
  letter-spacing: 0.12em;
  line-height: 1;
  text-align: center;
  text-transform: uppercase;
  box-shadow: 0 1rem 2.4rem rgba(0, 0, 0, 0.28), inset 0 0 1.5rem rgba(56, 189, 248, 0.08);
}

.prize-lock strong {
  display: none;
}

.prize-reveal-button {
  position: relative;
  z-index: 2;
  display: inline-flex;
  grid-row: 4;
  align-items: center;
  justify-content: center;
  width: min(18rem, 82%);
  min-width: 0;
  min-height: 3.45rem;
  margin: 0;
  padding: 0 1.3rem;
  border: 1px solid rgba(255, 122, 47, 0.42);
  border-radius: 8px;
  background: linear-gradient(135deg, rgba(255, 122, 47, 0.95), rgba(74, 222, 128, 0.9));
  background-size: 220% 220%;
  color: #07101c;
  font: inherit;
  font-weight: 800;
  cursor: pointer;
  box-shadow: 0 18px 42px rgba(255, 122, 47, 0.22);
  transition: transform 160ms ease, box-shadow 160ms ease;
  animation: gradientFlow 4.8s ease-in-out infinite;
}

.prize-lock span::before {
  display: none;
}

.prize-card-main .prize-lock span {
  min-height: 4rem;
  min-width: min(21rem, 78%);
  font-size: clamp(1.35rem, 2.5vw, 2rem);
}

.prize-card-main .prize-reveal-button {
  width: min(20rem, 82%);
  min-height: 3.75rem;
}

.prize-reveal-button:disabled {
  cursor: wait;
  opacity: 0.82;
  transform: none;
}

.prize-reveal-button:hover,
.prize-reveal-button:focus-visible {
  transform: translateY(-2px);
  box-shadow: 0 22px 48px rgba(255, 122, 47, 0.3);
}

.prize-reveal-card.is-revealed {
  border-color: rgba(74, 222, 128, 0.26);
  box-shadow: 0 26px 72px rgba(0, 0, 0, 0.34), 0 0 48px rgba(74, 222, 128, 0.08);
}

.prize-reveal-card.is-revealed .prize-media::before {
  opacity: 0.72;
}

.prize-reveal-card.is-revealed .prize-media::after {
  opacity: 0.58;
}

.prize-reveal-card.is-revealed .prize-media img {
  animation: prizeImageDrift 7.2s ease-in-out infinite alternate;
}

.prize-reveal-card:nth-child(2).is-revealed .prize-media img {
  animation-delay: -2s;
}

.prize-reveal-card:nth-child(3).is-revealed .prize-media img {
  animation-delay: -4s;
}

.prize-reveal-card.is-revealed .prize-lock {
  visibility: hidden;
  opacity: 0;
  pointer-events: none;
}

.prize-reveal-card.is-revealed .prize-content {
  animation: revealContent 360ms ease both;
}

.prize-reveal-card.is-opening {
  border-color: rgba(56, 189, 248, 0.42);
  box-shadow: 0 32px 90px rgba(0, 0, 0, 0.42), 0 0 64px rgba(56, 189, 248, 0.16);
}

.prize-reveal-card.is-opening .prize-lock {
  animation: prizeShutterOpen 980ms cubic-bezier(0.18, 0.74, 0.2, 1) both;
}

.prize-reveal-card.is-opening .prize-lock::after {
  animation: shutterOpenSweep 620ms cubic-bezier(0.2, 0.8, 0.2, 1) both;
}

.prize-reveal-card.is-opening .prize-media::before {
  opacity: 0.72;
  animation: none;
}

.prize-reveal-card.is-opening .prize-media img {
  animation: none;
}

@keyframes prizeAura {
  from {
    opacity: 0.24;
    transform: translate3d(-5%, -2%, 0);
  }

  to {
    opacity: 0.58;
    transform: translate3d(5%, 2%, 0);
  }
}

@keyframes prizeMediaSweep {
  0%,
  100% {
    opacity: 0.18;
    transform: translateX(-58%) skewX(-8deg);
  }

  46%,
  58% {
    opacity: 0.74;
    transform: translateX(48%) skewX(-8deg);
  }
}

@keyframes prizeMediaPulse {
  from {
    opacity: 0.28;
    transform: scale(1);
  }

  to {
    opacity: 0.6;
    transform: scale(1.035);
  }
}

@keyframes prizeImageDrift {
  from {
    transform: scale(1.012) translate3d(-0.28rem, 0.16rem, 0);
  }

  to {
    transform: scale(1.035) translate3d(0.36rem, -0.22rem, 0);
  }
}

@keyframes shutterIdleSweep {
  0%,
  72%,
  100% {
    opacity: 0;
    transform: translateX(0) skewX(-16deg);
  }

  82% {
    opacity: 0.28;
  }

  94% {
    opacity: 0;
    transform: translateX(420%) skewX(-16deg);
  }
}

@keyframes prizeShutterOpen {
  0% {
    transform: translateY(0);
  }

  18% {
    transform: translateY(0.35rem);
  }

  100% {
    transform: translateY(-112%);
  }
}

@keyframes shutterOpenSweep {
  0% {
    opacity: 0;
    left: -38%;
  }

  18% {
    opacity: 0.82;
  }

  100% {
    opacity: 0;
    left: 112%;
  }
}

@keyframes prizeShowcaseReveal {
  0% {
    opacity: 0.64;
    filter: grayscale(1) saturate(0.46) brightness(0.18) contrast(1.36) blur(1.8px);
    transform: scale(1.045);
  }

  48% {
    opacity: 0.94;
    filter: grayscale(0.42) saturate(0.9) brightness(0.72) contrast(1.1) blur(0.6px);
    transform: scale(1.02);
  }

  100% {
    opacity: 1;
    filter: grayscale(0) saturate(1) brightness(1) contrast(1) blur(0);
    transform: scale(1);
  }
}

@keyframes revealContent {
  from {
    opacity: 0.4;
    transform: translateY(0.5rem);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.steps-board {
  display: grid;
  grid-template-columns: minmax(22rem, 0.84fr) minmax(0, 1fr);
  overflow: hidden;
  background: var(--surface-strong);
}

.steps-visual {
  position: relative;
  isolation: isolate;
  min-height: 32rem;
  overflow: hidden;
  border-right: 1px solid var(--line);
  background: #050711;
}

.steps-visual::before,
.steps-visual::after {
  position: absolute;
  inset: 0;
  content: "";
  pointer-events: none;
}

.steps-visual::before {
  z-index: 1;
  background:
    radial-gradient(circle at 38% 66%, rgba(74, 222, 128, 0.2), transparent 14rem),
    radial-gradient(circle at 66% 43%, rgba(56, 189, 248, 0.18), transparent 12rem),
    linear-gradient(110deg, transparent 0 34%, rgba(56, 189, 248, 0.14) 45%, transparent 56% 100%);
  mix-blend-mode: screen;
  opacity: 0.78;
  transform: translateX(-22%);
  animation: stepsScan 5.6s ease-in-out infinite;
}

.steps-visual::after {
  z-index: 2;
  background:
    linear-gradient(90deg, transparent 0 24%, rgba(56, 189, 248, 0.18) 30%, transparent 37% 100%),
    linear-gradient(115deg, transparent 0 46%, rgba(74, 222, 128, 0.14) 50%, transparent 56% 100%);
  opacity: 0.58;
  transform: translateX(-18%);
  animation: stepsPulse 3.8s ease-in-out infinite;
}

.steps-visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 38% center;
  transform: scale(1.015);
  animation: stepsDrift 8s ease-in-out infinite alternate;
}

@keyframes stepsScan {
  0%,
  100% {
    opacity: 0.4;
    transform: translateX(-26%);
  }

  50% {
    opacity: 0.9;
    transform: translateX(18%);
  }
}

@keyframes stepsPulse {
  0%,
  100% {
    opacity: 0.32;
    transform: translateX(-14%) scaleX(0.96);
  }

  50% {
    opacity: 0.72;
    transform: translateX(12%) scaleX(1.04);
  }
}

@keyframes stepsDrift {
  from {
    transform: scale(1.015) translate3d(-0.35rem, 0, 0);
  }

  to {
    transform: scale(1.035) translate3d(0.35rem, -0.2rem, 0);
  }
}

.step-list {
  display: grid;
  margin: 0;
  padding: 0;
  list-style: none;
}

.step-list li {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 1.1rem;
  align-items: start;
  min-height: 10.65rem;
  padding: 1.55rem;
  border-bottom: 1px solid var(--line);
  background:
    linear-gradient(90deg, rgba(56, 189, 248, 0.065), transparent 44%),
    rgba(255, 255, 255, 0.015);
}

.step-list li:nth-child(2) span {
  border-color: rgba(255, 122, 47, 0.34);
  background: rgba(255, 122, 47, 0.12);
  color: var(--orange);
}

.step-list li:nth-child(3) span {
  border-color: rgba(74, 222, 128, 0.34);
  background: rgba(74, 222, 128, 0.12);
  color: var(--green);
}

.step-list li:last-child {
  border-bottom: 0;
}

.step-list span {
  margin-bottom: 0;
}

.step-list h3 {
  margin-bottom: 0.5rem;
}

.channel-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1rem;
}

.channel-card {
  display: flex;
  min-height: 21rem;
  flex-direction: column;
  gap: 1.05rem;
  padding: 1.2rem;
}

.channel-card:hover {
  transform: translateY(-3px);
  border-color: var(--line-strong);
  box-shadow: 0 24px 64px rgba(0, 0, 0, 0.34);
}

.channel-card img {
  width: 4.65rem;
  height: 4.65rem;
  border: 1px solid var(--line);
  border-radius: 8px;
  object-fit: cover;
  background: #f3f5f7;
}

.channel-card h3 {
  margin-bottom: 0.55rem;
  font-size: 1.45rem;
}

.channel-card p {
  font-size: 0.98rem;
}

.channel-action {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 2.85rem;
  margin-top: auto;
  border: 1px solid rgba(246, 248, 255, 0.14);
  border-radius: 8px;
  background: rgba(246, 248, 255, 0.055);
  color: var(--ink);
  font-weight: 800;
}

.channel-action:hover,
.channel-action:focus-visible {
  border-color: rgba(56, 189, 248, 0.38);
  background: rgba(56, 189, 248, 0.12);
}

.channel-action-static {
  border-color: rgba(74, 222, 128, 0.24);
  background: rgba(74, 222, 128, 0.08);
  color: var(--green);
}

.channel-action-static:hover,
.channel-action-static:focus-visible {
  border-color: rgba(74, 222, 128, 0.24);
  background: rgba(74, 222, 128, 0.08);
}

.channels-cta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.25rem;
  margin-top: 1rem;
  padding: 1.35rem;
  background:
    linear-gradient(90deg, rgba(56, 189, 248, 0.12), rgba(255, 122, 47, 0.1) 48%, rgba(74, 222, 128, 0.1)),
    var(--surface);
}

.channels-cta strong {
  display: block;
  margin-bottom: 0.25rem;
  color: var(--ink);
  font-size: 1.2rem;
}

.rules-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
}

.rules-grid article {
  min-height: 15.5rem;
  padding: 1.25rem;
}

.rules-grid span {
  display: inline-flex;
  margin-bottom: 1.1rem;
  color: var(--green);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.rules-grid h3 {
  max-width: 14rem;
  margin-bottom: 0.7rem;
  font-size: 1.45rem;
  line-height: 1.05;
}

.section-head-wide a,
.rules-grid a {
  color: var(--ink-soft);
  font-weight: 800;
  text-decoration-color: rgba(56, 189, 248, 0.48);
  text-underline-offset: 0.18em;
}

.section-head-wide a:hover,
.section-head-wide a:focus-visible,
.rules-grid a:hover,
.rules-grid a:focus-visible {
  color: var(--blue);
}

.final-section {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.4rem;
  width: var(--container);
  margin: 7rem auto 0;
  padding: 2rem;
  overflow: hidden;
  background:
    linear-gradient(90deg, rgba(255, 122, 47, 0.16), rgba(56, 189, 248, 0.1) 46%, rgba(74, 222, 128, 0.14)),
    var(--surface-strong);
}

.final-section h2 {
  max-width: 12ch;
  margin-bottom: 0.55rem;
}

.final-section p:not(.eyebrow) {
  max-width: 36rem;
}

.site-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  width: var(--container);
  margin: 0 auto;
  padding: 2.2rem 0;
  font-size: 0.95rem;
}

.site-footer img {
  width: 8.4rem;
  height: auto;
}

.is-gamified {
  padding-bottom: 5.8rem;
}

.pass-preview {
  display: flex;
  flex-wrap: wrap;
  gap: 0.45rem;
  max-width: 36rem;
  margin: -0.7rem 0 1.8rem;
}

.pass-preview span,
.pass-slots span {
  display: inline-flex;
  align-items: center;
  min-height: 2.2rem;
  padding: 0 0.72rem;
  border: 1px solid rgba(246, 248, 255, 0.14);
  border-radius: 8px;
  background: rgba(246, 248, 255, 0.05);
  color: var(--muted);
  font-size: 0.82rem;
  font-weight: 800;
  transition: background 160ms ease, border-color 160ms ease, color 160ms ease, box-shadow 160ms ease;
}

.pass-preview span.is-active,
.pass-slots span.is-active {
  border-color: rgba(74, 222, 128, 0.45);
  background: rgba(74, 222, 128, 0.14);
  color: var(--green);
  box-shadow: 0 0 26px rgba(74, 222, 128, 0.12);
}

.pass-console {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto minmax(20rem, 0.8fr);
  gap: 1.2rem;
  align-items: center;
  margin-bottom: 1rem;
  padding: 1.25rem;
  border: 1px solid var(--line);
  border-radius: 8px;
  background:
    linear-gradient(100deg, rgba(56, 189, 248, 0.12), rgba(255, 122, 47, 0.08) 46%, rgba(74, 222, 128, 0.12)),
    var(--surface-strong);
  box-shadow: 0 18px 54px rgba(0, 0, 0, 0.24);
}

.pass-console-copy h3 {
  margin-bottom: 0.5rem;
  font-size: clamp(1.65rem, 2.6vw, 2.8rem);
}

.pass-console-copy p:not(.eyebrow) {
  max-width: 34rem;
  margin-bottom: 0;
  color: var(--muted);
}

.pass-meter {
  --pass-fill: 0%;
  --pass-ratio: 0;
  --water-level: 0%;
  position: relative;
  isolation: isolate;
  display: grid;
  width: 8rem;
  height: 8rem;
  place-items: center;
  justify-items: center;
  align-content: center;
  gap: 0.12rem;
  border: 1px solid rgba(56, 189, 248, 0.22);
  border-radius: 50%;
  background:
    radial-gradient(circle at 44% 28%, rgba(246, 248, 255, 0.2), rgba(246, 248, 255, 0.05) 34%, rgba(5, 7, 17, 0.9) 72%),
    var(--surface-strong);
  box-shadow: 0 0 34px rgba(56, 189, 248, 0.12);
  overflow: hidden;
  transition: --pass-fill 560ms cubic-bezier(0.2, 0.8, 0.2, 1), --water-level 560ms cubic-bezier(0.2, 0.8, 0.2, 1), box-shadow 180ms ease;
}

.pass-meter::before {
  position: absolute;
  inset: -1px;
  z-index: 0;
  content: "";
  border-radius: inherit;
  background:
    conic-gradient(from 220deg, rgba(56, 189, 248, 0.05), rgba(56, 189, 248, 0.58), rgba(74, 222, 128, 0.62), rgba(255, 122, 47, 0.42), rgba(56, 189, 248, 0.05)),
    radial-gradient(circle at 50% 50%, transparent 58%, rgba(56, 189, 248, 0.2) 60%, transparent 66%);
  opacity: 0.72;
  animation: passHaloSpin 8s linear infinite;
}

.pass-meter::after {
  position: absolute;
  inset: 0.45rem;
  z-index: 2;
  content: "";
  border-radius: inherit;
  background:
    radial-gradient(circle at 36% 22%, rgba(255, 255, 255, 0.22), transparent 2.2rem),
    linear-gradient(150deg, rgba(255, 255, 255, 0.12), transparent 38%, rgba(56, 189, 248, 0.08) 70%, transparent);
  pointer-events: none;
}

.pass-meter.is-active {
  box-shadow: 0 0 44px rgba(74, 222, 128, 0.16);
}

.pass-meter.is-complete {
  border-color: rgba(74, 222, 128, 0.5);
  box-shadow: 0 0 56px rgba(74, 222, 128, 0.24), inset 0 0 28px rgba(56, 189, 248, 0.08);
}

.pass-liquid {
  --water-level: 0%;
  position: absolute;
  inset: 0.52rem;
  z-index: 1;
  overflow: hidden;
  border-radius: inherit;
  background:
    radial-gradient(circle at 50% 24%, rgba(246, 248, 255, 0.13), transparent 2.7rem),
    rgba(5, 7, 17, 0.68);
  box-shadow: inset 0 0 32px rgba(0, 0, 0, 0.34);
  pointer-events: none;
}

.pass-liquid::before {
  position: absolute;
  right: -18%;
  bottom: -1px;
  left: -18%;
  height: 0;
  content: "";
  border-radius: 48% 52% 0 0 / 11% 14% 0 0;
  background:
    radial-gradient(ellipse at 34% 8%, rgba(255, 255, 255, 0.34), transparent 1.6rem),
    radial-gradient(circle at 76% 72%, rgba(255, 122, 47, 0.24), transparent 2.5rem),
    linear-gradient(135deg, rgba(56, 189, 248, 0.92), rgba(74, 222, 128, 0.98) 58%, rgba(255, 122, 47, 0.42));
  box-shadow: 0 -0.45rem 1.5rem rgba(74, 222, 128, 0.2), inset 0 0 1.55rem rgba(255, 255, 255, 0.13);
  transform: translate3d(0, 0, 0);
  transition: height 620ms cubic-bezier(0.2, 0.8, 0.2, 1);
  animation: passLiquidMove 3.4s ease-in-out infinite alternate;
}

.pass-liquid::after {
  position: absolute;
  inset: 0;
  z-index: 1;
  content: "";
  border-radius: inherit;
  background:
    radial-gradient(circle at 34% 20%, rgba(255, 255, 255, 0.16), transparent 2rem),
    linear-gradient(180deg, rgba(255, 255, 255, 0.06), transparent 54%);
  opacity: 0.72;
}

.pass-meter[data-pass-level="1"] .pass-liquid::before {
  height: 26%;
}

.pass-meter[data-pass-level="2"] .pass-liquid::before {
  height: 52%;
}

.pass-meter[data-pass-level="3"] .pass-liquid::before {
  height: 76%;
}

.pass-meter[data-pass-level="4"] .pass-liquid::before {
  height: calc(100% + 1rem);
}

.pass-meter .pass-glass {
  position: absolute;
  inset: 0.5rem;
  z-index: 3;
  border: 1px solid rgba(246, 248, 255, 0.08);
  border-radius: inherit;
  background:
    radial-gradient(circle at 38% 22%, rgba(255, 255, 255, 0.16), transparent 2.2rem),
    linear-gradient(180deg, rgba(255, 255, 255, 0.06), transparent 58%);
  pointer-events: none;
}

.pass-meter .pass-glass::before {
  position: absolute;
  top: 1.72rem;
  right: 0.92rem;
  left: 0.92rem;
  height: 3.72rem;
  content: "";
  border: 1px solid rgba(246, 248, 255, 0.13);
  border-radius: 999px;
  background:
    radial-gradient(circle at 42% 16%, rgba(255, 255, 255, 0.18), transparent 2rem),
    linear-gradient(180deg, rgba(8, 12, 23, 0.9), rgba(5, 7, 17, 0.72));
  box-shadow:
    0 0.7rem 1.5rem rgba(0, 0, 0, 0.24),
    inset 0 0 1.4rem rgba(56, 189, 248, 0.08);
  backdrop-filter: blur(8px);
}

@keyframes passHaloSpin {
  to {
    transform: rotate(1turn);
  }
}

@keyframes passLiquidMove {
  from {
    filter: saturate(0.98) brightness(0.96);
    transform: translate3d(-0.2rem, 0, 0) skewX(-1.4deg);
    border-radius: 46% 54% 0 0 / 12% 15% 0 0;
  }

  to {
    filter: saturate(1.18) brightness(1.06);
    transform: translate3d(0.2rem, 0, 0) skewX(1.4deg);
    border-radius: 54% 46% 0 0 / 15% 12% 0 0;
  }
}

.pass-meter strong {
  position: relative;
  z-index: 4;
  max-width: calc(100% - 1.4rem);
  color: var(--ink);
  font-size: 1.68rem;
  line-height: 1;
  text-align: center;
  text-shadow: 0 0.18rem 0.7rem rgba(0, 0, 0, 0.7);
  transform: translateY(0.05rem);
}

.pass-meter span {
  position: relative;
  z-index: 4;
  width: min(4.35rem, calc(100% - 1.55rem));
  color: rgba(246, 248, 255, 0.82);
  font-size: 0.52rem;
  font-weight: 800;
  line-height: 1.04;
  text-align: center;
  text-transform: uppercase;
  overflow-wrap: anywhere;
  text-shadow: 0 0.14rem 0.5rem rgba(0, 0, 0, 0.78);
  transform: translateY(-0.06rem);
}

.pass-slots {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 0.5rem;
}

.channel-folder-card {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.25rem;
  margin: 1rem 0;
  padding: 1.35rem;
  border: 1px solid rgba(56, 189, 248, 0.2);
  border-radius: 8px;
  background:
    radial-gradient(circle at 82% 50%, rgba(74, 222, 128, 0.13), transparent 18rem),
    linear-gradient(110deg, rgba(56, 189, 248, 0.14), rgba(255, 122, 47, 0.08) 52%, rgba(74, 222, 128, 0.12)),
    var(--surface-strong);
  box-shadow: 0 18px 54px rgba(0, 0, 0, 0.24);
}

.channel-folder-card > div > span {
  display: inline-flex;
  margin-bottom: 0.55rem;
  color: var(--blue);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.channel-folder-card strong {
  display: block;
  margin-bottom: 0.45rem;
  color: var(--ink);
  font-size: clamp(1.35rem, 2.1vw, 2rem);
  line-height: 1.05;
}

.channel-folder-card p {
  max-width: 42rem;
  margin-bottom: 0;
  color: var(--muted);
}

.channel-card {
  position: relative;
}

.channel-state {
  position: absolute;
  top: 1.05rem;
  right: 1.05rem;
  display: inline-flex;
  align-items: center;
  min-height: 2rem;
  padding: 0 0.62rem;
  border: 1px solid rgba(246, 248, 255, 0.14);
  border-radius: 8px;
  background: rgba(246, 248, 255, 0.055);
  color: var(--muted);
  font-size: 0.72rem;
  font-weight: 800;
  text-transform: uppercase;
}

.channel-card.is-open {
  border-color: rgba(74, 222, 128, 0.34);
  background:
    linear-gradient(145deg, rgba(74, 222, 128, 0.105), rgba(255, 255, 255, 0.02)),
    var(--surface);
}

.channel-card.is-open .channel-state {
  border-color: rgba(74, 222, 128, 0.4);
  background: rgba(74, 222, 128, 0.14);
  color: var(--green);
}

.button.is-locked,
.dock-action.is-locked {
  border-color: rgba(246, 248, 255, 0.12);
  background: rgba(246, 248, 255, 0.08);
  color: rgba(246, 248, 255, 0.54);
  box-shadow: none;
  cursor: pointer;
  animation: none;
}

.funnel-dock {
  position: fixed;
  right: 1rem;
  bottom: 1rem;
  left: 1rem;
  z-index: 35;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  width: min(40rem, calc(100% - 2rem));
  margin: 0 auto;
  padding: 0.72rem;
  border: 1px solid rgba(246, 248, 255, 0.16);
  border-radius: 8px;
  background: rgba(6, 10, 20, 0.86);
  box-shadow: 0 24px 74px rgba(0, 0, 0, 0.42);
  backdrop-filter: blur(18px);
  opacity: 0;
  pointer-events: none;
  transform: translateY(calc(100% + 1.5rem));
  transition: opacity 180ms ease, transform 180ms ease;
}

.funnel-dock.is-visible {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}

.funnel-dock div {
  display: grid;
  gap: 0.1rem;
}

.funnel-dock > div > span {
  color: var(--muted);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.funnel-dock strong {
  color: var(--ink);
  font-size: 1.25rem;
}

.dock-action {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 2.7rem;
  padding: 0 1rem;
  border: 1px solid transparent;
  border-radius: 8px;
  background: linear-gradient(135deg, var(--orange), var(--green));
  background-size: 220% 220%;
  color: #07101c;
  font-weight: 800;
  text-decoration: none;
  animation: gradientFlow 5.2s ease-in-out infinite;
}

@media (max-width: 1080px) {
  .channel-grid,
  .rules-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .prize-showcase,
  .steps-board,
  .section-head-wide {
    grid-template-columns: 1fr;
  }

  .prize-card-main {
    grid-row: auto;
    min-height: auto;
  }

  .prize-card-secondary {
    min-height: 17rem;
  }

  .steps-visual {
    min-height: 22rem;
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .pass-console {
    grid-template-columns: 1fr;
    justify-items: center;
    text-align: center;
  }

  .pass-meter {
    justify-self: center;
    width: 7rem;
    height: 7rem;
  }

  .pass-slots {
    justify-content: center;
  }

  .prize-lock,
  .prize-card-main .prize-lock {
    grid-template-rows: 1fr auto 1.05rem auto 1fr;
  }

  .prize-reveal-button,
  .prize-card-main .prize-reveal-button {
    grid-row: 4;
    width: min(18rem, 82%);
    min-width: 0;
  }
}

@media (max-width: 860px) {
  .site-header {
    grid-template-columns: auto 1fr auto;
  }

  .main-nav {
    display: none;
  }

  .language-switcher {
    justify-self: end;
  }

  .header-button {
    justify-self: end;
  }

  .hero {
    min-height: auto;
  }

  .hero-visual {
    position: relative;
    width: 100%;
    height: 47svh;
    min-height: 20rem;
  }

  .hero-visual img {
    object-position: 64% center;
  }

  .hero::before {
    background:
      linear-gradient(180deg, rgba(5, 7, 17, 0.02) 0%, rgba(5, 7, 17, 0.16) 42%, #050711 100%),
      linear-gradient(90deg, rgba(5, 7, 17, 0.74), rgba(5, 7, 17, 0.08));
  }

  .hero-inner {
    min-height: auto;
    padding: 1.25rem 0 3rem;
  }

  .hero-copy {
    max-width: 42rem;
  }

  .drop-strip {
    grid-template-columns: 1fr;
    margin-top: 1rem;
  }

  .drop-strip div {
    min-height: auto;
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .drop-strip div:last-child {
    border-bottom: 0;
  }

  .section {
    padding-top: 5.3rem;
  }
}

@media (max-width: 640px) {
  :root {
    --container: min(100% - 1rem, 74rem);
  }

  .site-header {
    min-height: 4.2rem;
    gap: 0.7rem;
    padding-inline: 0.75rem;
  }

  .brand img {
    width: 7.7rem;
  }

  .header-button {
    display: none;
  }

  .language-switcher {
    gap: 0.18rem;
    padding: 0.18rem;
  }

  .language-button {
    min-width: 2rem;
    min-height: 1.95rem;
    padding: 0 0.38rem;
    font-size: 0.75rem;
  }

  .hero-visual {
    height: 38svh;
    min-height: 16rem;
  }

  h1 {
    font-size: 2.75rem;
  }

  h2 {
    font-size: 2.12rem;
  }

  .lead {
    font-size: 1.02rem;
  }

  .hero-actions,
  .final-section,
  .channels-cta,
  .channel-folder-card {
    align-items: stretch;
    flex-direction: column;
  }

  .button,
  .button-wide {
    width: 100%;
    min-width: 0;
  }

  .hero-facts,
  .channel-grid,
  .rules-grid {
    grid-template-columns: 1fr;
  }

  .hero-facts {
    display: grid;
  }

  .prize-card-secondary {
    grid-template-columns: 1fr;
  }

  .prize-card-main .prize-media,
  .prize-media {
    min-height: 13.5rem;
  }

  .prize-content,
  .step-list li,
  .channel-card,
  .rules-grid article {
    padding: 1rem;
  }

  .steps-visual {
    min-height: 15rem;
  }

  .step-list li {
    min-height: auto;
    grid-template-columns: 1fr;
  }

  .channel-card {
    min-height: auto;
  }

  .final-section {
    margin-top: 5rem;
    padding: 1.25rem;
  }

  .site-footer {
    flex-direction: column;
    align-items: flex-start;
  }

  .pass-console {
    padding: 1rem;
  }

  .pass-meter {
    justify-self: center;
    width: 7rem;
    height: 7rem;
    min-height: 0;
    border-radius: 50%;
  }

  .pass-meter strong {
    font-size: 1.48rem;
  }

  .pass-meter span {
    width: min(3.75rem, calc(100% - 1.75rem));
    font-size: 0.47rem;
    line-height: 1.02;
  }

  .channel-state {
    top: 0.9rem;
    right: 0.9rem;
  }

  .funnel-dock {
    gap: 0.7rem;
    width: calc(100% - 1rem);
    padding: 0.55rem;
  }

  .dock-action {
    min-height: 2.55rem;
    padding: 0 0.72rem;
    font-size: 0.88rem;
  }
}
