﻿:root {
  color-scheme: dark;
  --bg: #05070d;
  --ink: #f4f8ff;
  --muted: #a6b0c7;
  --dim: #68738f;
  --cyan: #52dcff;
  --violet: #be55ff;
  --gold: #ffd27a;
  --line: rgba(255, 255, 255, 0.16);
  --glass: rgba(5, 9, 18, 0.58);
  --glass-strong: rgba(5, 9, 18, 0.78);
  --shadow: 0 24px 80px rgba(0, 0, 0, 0.46);
  font-family:
    Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  min-width: 320px;
  scroll-behavior: smooth;
}

body {
  min-width: 320px;
  margin: 0;
  background: var(--bg);
  color: var(--ink);
}

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

button,
input {
  font: inherit;
}

[hidden] {
  display: none !important;
}

.site-shell {
  min-height: 100vh;
  overflow: hidden;
}

.language-switcher {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  padding: 4px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 8px;
  background: rgba(3, 6, 14, 0.86);
  box-shadow:
    0 12px 34px rgba(0, 0, 0, 0.32),
    inset 0 0 0 1px rgba(82, 220, 255, 0.05);
}

.language-switcher--global {
  position: fixed;
  z-index: 18;
  top: 18px;
  right: 18px;
}

.language-switcher a {
  min-width: 44px;
  min-height: 36px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 6px;
  color: rgba(244, 248, 255, 0.68);
  font-size: 0.72rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  line-height: 1;
  text-transform: uppercase;
}

.language-switcher a:hover,
.language-switcher a:focus-visible {
  color: var(--ink);
  background: rgba(255, 255, 255, 0.08);
  outline: none;
}

.language-switcher a[aria-current="true"] {
  color: #071018;
  background: var(--gold);
  box-shadow: 0 0 22px rgba(255, 210, 122, 0.22);
}

.hero {
  position: relative;
  min-height: 94svh;
  display: grid;
  grid-template-columns: minmax(32px, 1fr) minmax(0, 1180px) minmax(32px, 1fr);
  grid-template-rows: auto 1fr auto;
  isolation: isolate;
  overflow: hidden;
}

.is-intro .hero,
.is-sequence .hero {
  min-height: 100svh;
}

.is-intro .section,
.is-sequence .section {
  display: none;
}

.hero-media,
.hero-placeholder,
.hero-poster,
.hero-video,
.hero-still,
.hero-shade,
.scanline {
  position: absolute;
  inset: 0;
}

.hero-media {
  z-index: -4;
  background: #05070d;
}

.hero-placeholder,
.hero-poster,
.hero-video,
.hero-still {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.hero-placeholder {
  filter: blur(10px) saturate(1.08);
  transform: scale(1.025);
  opacity: 0.8;
}

.hero-poster {
  opacity: 1;
  transition: opacity 700ms ease;
}

.hero-video {
  opacity: 0;
  transition:
    opacity 820ms ease,
    filter 700ms ease;
}

.media-ready .hero-placeholder {
  opacity: 0;
}

.media-ready .hero-poster {
  opacity: 0;
}

.media-ready .hero-video.is-active {
  opacity: 1;
}

.media-ready.is-intro .hero-video.is-active {
  opacity: 1;
  filter: saturate(1.12) contrast(1.04);
}

.is-sequence .hero-poster,
.is-impact .hero-poster {
  opacity: 0;
}

.is-sequence .hero-video.is-active,
.is-impact .hero-video.is-active {
  opacity: 1;
}

.hero-content,
.waitlist-panel,
.reward-panel {
  transition:
    opacity 720ms ease,
    transform 720ms ease,
    visibility 720ms ease;
}

.eyebrow,
.secondary-action,
.waitlist-panel,
.reward-panel {
  opacity: 0;
  pointer-events: none;
  visibility: hidden;
}

.hero-still {
  display: none;
}

.reduced-motion .hero-video {
  display: none;
}

.reduced-motion .hero-still {
  display: block;
}

.hero-shade {
  z-index: -3;
  background:
    linear-gradient(90deg, rgba(3, 5, 11, 0.76) 0%, rgba(3, 5, 11, 0.44) 31%, rgba(3, 5, 11, 0.08) 60%, rgba(3, 5, 11, 0.28) 100%),
    linear-gradient(0deg, rgba(3, 5, 11, 0.72) 0%, rgba(3, 5, 11, 0.08) 32%, rgba(3, 5, 11, 0.18) 100%);
}

.is-sequence .hero-content,
.is-sequence .waitlist-panel,
.is-sequence .reward-panel {
  opacity: 0;
  pointer-events: none;
  visibility: hidden;
}

.is-dock-active .hero-content {
  grid-column: 1 / -1;
  grid-row: 3;
  align-self: end;
  justify-self: start;
  width: min(560px, calc(100% - 36px));
  padding: 0 0 88px clamp(18px, 2vw, 30px);
  text-align: left;
}

.is-dock-active .hero-actions {
  justify-content: flex-start;
}

.is-sequence .hero-content {
  transform: translateY(18px);
}

.is-revealed .eyebrow,
.is-revealed .secondary-action,
.is-revealed .waitlist-panel,
.is-revealed .reward-panel {
  opacity: 1;
  pointer-events: auto;
  visibility: visible;
  transform: translateY(0);
}

.is-revealed .primary-action,
.activation-complete .primary-action,
.is-reward-transition .primary-action,
.has-coach-reward .primary-action {
  display: none;
}

.activation-complete .hero-content,
.is-reward-transition .hero-content,
.has-coach-reward .hero-content {
  opacity: 0 !important;
  pointer-events: none !important;
  visibility: hidden !important;
}

.is-activation-pending .hero-title,
.is-activation-pending .hero-line,
.is-activation-pending .hero-copy {
  opacity: 0;
  pointer-events: none;
  transform: translateY(10px);
}

.scanline {
  z-index: -2;
  pointer-events: none;
  opacity: 0.22;
  background-image: repeating-linear-gradient(
    0deg,
    rgba(255, 255, 255, 0.04) 0,
    rgba(255, 255, 255, 0.04) 1px,
    transparent 1px,
    transparent 5px
  );
  mix-blend-mode: soft-light;
}

.media-sync {
  position: absolute;
  inset: 0;
  z-index: 6;
  display: grid;
  place-items: center;
  pointer-events: none;
  background:
    radial-gradient(ellipse at 50% 50%, rgba(82, 220, 255, 0.14), transparent 36%),
    linear-gradient(180deg, rgba(3, 5, 11, 0.22), rgba(3, 5, 11, 0.58));
  opacity: 0;
  backdrop-filter: blur(7px) saturate(1.08);
  transition: opacity 240ms ease;
}

.media-sync[hidden] {
  display: none;
}

.is-media-syncing .media-sync {
  opacity: 1;
}

.media-sync__core {
  width: min(300px, calc(100vw - 58px));
  display: grid;
  gap: 10px;
  justify-items: center;
  padding: 18px 22px;
  clip-path: polygon(9% 0, 91% 0, 100% 28%, 100% 72%, 91% 100%, 9% 100%, 0 72%, 0 28%);
  border: 1px solid rgba(255, 210, 122, 0.42);
  background:
    linear-gradient(90deg, rgba(82, 220, 255, 0.16), transparent 36%, rgba(190, 85, 255, 0.18)),
    rgba(2, 5, 12, 0.78);
  box-shadow:
    inset 0 0 0 1px rgba(82, 220, 255, 0.16),
    0 0 28px rgba(82, 220, 255, 0.18),
    0 0 42px rgba(190, 85, 255, 0.14);
}

.media-sync__label {
  color: #fff8c9;
  font-size: 0.82rem;
  font-weight: 950;
  letter-spacing: 0.18em;
  text-shadow:
    0 0 10px rgba(255, 210, 122, 0.74),
    0 0 24px rgba(255, 210, 122, 0.26);
}

.media-sync__rail {
  width: 100%;
  height: 3px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
}

.media-sync__rail span {
  border-radius: 999px;
  background: linear-gradient(90deg, var(--cyan), var(--gold), var(--violet));
  box-shadow: 0 0 12px rgba(82, 220, 255, 0.42);
  animation: mediaSyncPulse 820ms ease-in-out infinite;
}

.media-sync__rail span:nth-child(2) {
  animation-delay: 120ms;
}

.media-sync__rail span:nth-child(3) {
  animation-delay: 240ms;
}

.media-sync__status {
  color: rgba(226, 236, 255, 0.7);
  font-size: 0.58rem;
  font-weight: 900;
  letter-spacing: 0.22em;
}

@keyframes mediaSyncPulse {
  0%,
  100% {
    opacity: 0.36;
    transform: scaleX(0.78);
  }

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

.hero-content {
  grid-column: 2;
  align-self: center;
  width: min(620px, 100%);
  padding: 72px 0 90px;
}

.eyebrow,
.section-kicker,
.panel-kicker {
  margin: 0 0 16px;
  color: var(--gold);
  font-size: 0.76rem;
  font-weight: 850;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}

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

.hero-title {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip-path: inset(50%);
  opacity: 0;
  pointer-events: none;
  white-space: nowrap;
  max-width: 14ch;
  margin: 0 0 14px;
  color: var(--ink);
  font-size: clamp(3rem, 6vw, 5.8rem);
  line-height: 0.88;
  letter-spacing: 0;
  text-shadow:
    0 0 28px rgba(82, 220, 255, 0.22),
    0 0 52px rgba(190, 85, 255, 0.16),
    0 6px 24px rgba(0, 0, 0, 0.58);
  transition:
    opacity 520ms ease,
    transform 520ms ease;
}

.hero-line {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip-path: inset(50%);
  opacity: 0;
  pointer-events: none;
  white-space: nowrap;
  max-width: 520px;
  margin-bottom: 12px;
  color: #ffffff;
  font-size: clamp(1.06rem, 1.45vw, 1.36rem);
  line-height: 1.16;
  font-weight: 760;
  text-shadow: 0 4px 18px rgba(0, 0, 0, 0.62);
  transition:
    opacity 520ms ease,
    transform 520ms ease;
}

.hero-copy {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip-path: inset(50%);
  opacity: 0;
  pointer-events: none;
  white-space: nowrap;
  max-width: 510px;
  margin-bottom: 24px;
  color: rgba(226, 236, 255, 0.78);
  font-size: 0.94rem;
  line-height: 1.58;
  text-shadow: 0 4px 18px rgba(0, 0, 0, 0.58);
  transition:
    opacity 520ms ease,
    transform 520ms ease;
}

.hero-actions {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
}

.primary-action,
.secondary-action,
.final-cta {
  min-height: 52px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 0;
  cursor: pointer;
  font-weight: 850;
  letter-spacing: 0.02em;
  transition:
    transform 180ms ease,
    border-color 180ms ease,
    background 180ms ease,
    color 180ms ease;
}

.primary-action {
  border: 1px solid rgba(82, 220, 255, 0.92);
  padding: 0 22px;
  color: #061018;
  background: var(--cyan);
  box-shadow: 0 0 36px rgba(82, 220, 255, 0.28);
}

#activate-button {
  display: none;
  opacity: 1;
  filter: blur(0) brightness(1);
  transition:
    opacity 620ms ease,
    filter 620ms ease,
    transform 620ms cubic-bezier(0.22, 1, 0.36, 1);
}

.is-dock-active #activate-button:not([hidden]) {
  display: inline-flex;
}

.dock-text {
  white-space: nowrap;
}

.is-dock-active #activate-button.is-exiting {
  opacity: 0;
  filter: blur(5px) brightness(1.32);
  pointer-events: none;
  transform: translateY(-5px) scale(0.985);
}

.secondary-action,
.final-cta {
  border: 1px solid rgba(255, 255, 255, 0.2);
  padding: 0 20px;
  color: var(--ink);
  background: rgba(255, 255, 255, 0.06);
}

.primary-action:hover,
.primary-action:focus-visible,
.secondary-action:hover,
.secondary-action:focus-visible,
.final-cta:hover,
.final-cta:focus-visible {
  transform: translateY(-2px);
  outline: none;
}

.primary-action:disabled {
  cursor: wait;
  transform: none;
  color: rgba(6, 16, 24, 0.62);
}

.waitlist-panel {
  position: absolute;
  z-index: 4;
  top: 60svh;
  left: 50%;
  width: min(300px, calc(100vw - 36px));
  padding: 18px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 8px;
  background:
    linear-gradient(160deg, rgba(15, 22, 40, 0.9), rgba(2, 5, 12, 0.86)),
    radial-gradient(circle at 80% 0%, rgba(82, 220, 255, 0.16), transparent 36%),
    radial-gradient(circle at 12% 100%, rgba(190, 85, 255, 0.18), transparent 38%),
    rgba(5, 9, 18, 0.74);
  backdrop-filter: blur(22px);
  box-shadow:
    0 0 0 1px rgba(82, 220, 255, 0.06),
    0 24px 80px rgba(0, 0, 0, 0.52),
    0 0 54px rgba(82, 220, 255, 0.12);
  transform: translate(-50%, -45%) scale(0.98);
  isolation: isolate;
}

.is-revealed .waitlist-panel {
  transform: translate(-50%, -50%) scale(1);
}

.reward-panel {
  position: absolute;
  z-index: 4;
  top: 60svh;
  left: 50%;
  width: min(440px, calc(100vw - 32px));
  padding: 0;
  transform: translate(-50%, -45%) scale(0.98);
  isolation: isolate;
}

.is-revealed .reward-panel {
  transform: translate(-50%, -50%) scale(1);
}

.waitlist-panel[hidden],
.reward-panel[hidden] {
  display: none;
}

.reward-panel {
  border: 0;
  background: transparent;
  box-shadow: none;
  backdrop-filter: none;
}

.reward-panel.is-preparing-reward {
  opacity: 1;
  pointer-events: none;
  transition: none;
  visibility: visible;
  transform: translate(-50%, -50%) scale(1);
}

.reward-panel.is-preparing-reward .reward-social-card {
  opacity: 0;
  filter: blur(6px) saturate(1.22) brightness(1.08);
  transform: scale(0.985);
}

.access-panel h2 {
  margin-bottom: 10px;
  color: var(--ink);
  font-size: 1.48rem;
  line-height: 1.02;
  letter-spacing: 0;
}

.access-panel .panel-kicker {
  margin-bottom: 14px;
  color: rgba(255, 210, 122, 0.9);
  font-size: 0.68rem;
  letter-spacing: 0;
}

.panel-copy,
.waitlist-panel p {
  color: rgba(226, 236, 255, 0.74);
  line-height: 1.5;
}

.panel-copy {
  margin-bottom: 0;
  font-size: 0.92rem;
}

.access-view {
  position: relative;
  z-index: 2;
  transition:
    opacity 280ms ease,
    transform 280ms ease,
    filter 280ms ease;
}

.waitlist-panel.is-saving .access-view,
.waitlist-panel.is-access-exiting .access-view {
  opacity: 0;
  filter: blur(9px);
  transform: translateY(-10px) scale(0.94);
}

.waitlist-form {
  display: grid;
  grid-template-columns: 1fr;
  gap: 10px;
  margin-top: 16px;
}

.waitlist-form input,
.waitlist-form button {
  min-height: 46px;
  border-radius: 4px;
}

.waitlist-form input {
  width: 100%;
  min-width: 0;
  border: 1px solid rgba(255, 255, 255, 0.14);
  padding: 0 13px;
  color: var(--ink);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.035), rgba(255, 255, 255, 0.01)),
    rgba(0, 0, 0, 0.42);
  outline: none;
}

.waitlist-form input:focus {
  border-color: rgba(82, 220, 255, 0.86);
  box-shadow: 0 0 0 3px rgba(82, 220, 255, 0.18);
}

.waitlist-form button {
  border: 1px solid rgba(255, 210, 122, 0.86);
  padding: 0 16px;
  color: #110b01;
  background:
    linear-gradient(180deg, #ffe09b, #ffc65f),
    var(--gold);
  cursor: pointer;
  font-weight: 850;
  white-space: nowrap;
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.32),
    0 0 28px rgba(255, 210, 122, 0.18);
  transition:
    transform 180ms ease,
    box-shadow 180ms ease,
    filter 180ms ease;
}

.waitlist-form button:hover,
.waitlist-form button:focus-visible {
  outline: none;
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.36),
    0 0 34px rgba(255, 210, 122, 0.3);
  transform: translateY(-1px);
}

.waitlist-form button:disabled {
  cursor: wait;
  filter: saturate(0.72);
  transform: none;
}

.form-status {
  min-height: 0;
  margin: 10px 0 0;
  color: rgba(226, 236, 255, 0.68);
  font-size: 0.86rem;
}

.form-status:empty {
  display: none;
}

.form-status.is-success {
  color: var(--gold);
}

.form-status.is-error {
  color: #ff8d9a;
}

.reward-view {
  position: relative;
  z-index: 2;
  display: block;
}

.reward-view[hidden] {
  display: none;
}

.reward-burst {
  position: absolute;
  z-index: 6;
  top: 50%;
  left: 50%;
  width: 34px;
  height: 34px;
  border-radius: 999px;
  pointer-events: none;
  opacity: 0;
  transform: translate(-50%, -50%) scale(0.1);
  background:
    radial-gradient(circle, rgba(255, 255, 255, 0.82) 0 8%, rgba(255, 210, 122, 0.5) 9% 22%, rgba(82, 220, 255, 0.26) 23% 44%, transparent 68%),
    conic-gradient(from 20deg, transparent, rgba(82, 220, 255, 0.44), transparent, rgba(190, 85, 255, 0.5), transparent, rgba(255, 210, 122, 0.42), transparent);
  filter: blur(0.4px) drop-shadow(0 0 18px rgba(255, 210, 122, 0.48));
  mix-blend-mode: screen;
}

.reward-panel.is-reward-reveal .reward-burst {
  animation: none;
}

.reward-social-card {
  position: relative;
  width: 100%;
  aspect-ratio: 4 / 5;
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(126px, 1.05fr) minmax(0, 0.72fr);
  grid-template-rows: auto minmax(0, 1fr) auto auto;
  gap: 12px 14px;
  overflow: hidden;
  padding: 20px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 8px;
  background:
    linear-gradient(136deg, rgba(13, 25, 42, 0.96), rgba(3, 5, 13, 0.96) 48%, rgba(18, 5, 28, 0.94)),
    radial-gradient(circle at 50% 35%, rgba(190, 85, 255, 0.24), transparent 34%),
    radial-gradient(circle at 36% 18%, rgba(82, 220, 255, 0.2), transparent 31%),
    radial-gradient(circle at 76% 74%, rgba(255, 210, 122, 0.12), transparent 28%);
  box-shadow:
    0 0 0 1px rgba(82, 220, 255, 0.06),
    0 30px 90px rgba(0, 0, 0, 0.56),
    0 0 58px rgba(190, 85, 255, 0.22);
  isolation: isolate;
}

.reward-social-card::before,
.reward-social-card::after {
  content: "";
  position: absolute;
  pointer-events: none;
}

.reward-social-card::before {
  inset: 0;
  z-index: -1;
  background:
    linear-gradient(90deg, rgba(82, 220, 255, 0.18), transparent 22%, transparent 78%, rgba(190, 85, 255, 0.2)),
    linear-gradient(0deg, rgba(255, 210, 122, 0.28), rgba(255, 210, 122, 0) 1px) 20px 18px / calc(100% - 40px) 1px no-repeat,
    linear-gradient(0deg, rgba(190, 85, 255, 0.36), rgba(190, 85, 255, 0) 1px) 20px calc(100% - 18px) / calc(100% - 40px) 1px no-repeat,
    linear-gradient(90deg, rgba(82, 220, 255, 0.42), rgba(82, 220, 255, 0) 1px) 18px 20px / 1px calc(100% - 40px) no-repeat,
    linear-gradient(90deg, rgba(255, 210, 122, 0.28), rgba(255, 210, 122, 0) 1px) calc(100% - 18px) 20px / 1px calc(100% - 40px) no-repeat,
    repeating-linear-gradient(0deg, transparent 0 9px, rgba(255, 255, 255, 0.021) 9px 10px);
  opacity: 0.7;
}

.reward-social-card::after {
  inset: -40% -70%;
  z-index: 4;
  background: linear-gradient(115deg, transparent 42%, rgba(255, 255, 255, 0.22) 49%, rgba(82, 220, 255, 0.14) 53%, transparent 62%);
  mix-blend-mode: screen;
  animation: cardGlint 4200ms ease-in-out infinite;
}

.reward-panel.is-reward-reveal .reward-social-card {
  animation: rewardCardReveal 1480ms cubic-bezier(0.16, 1, 0.3, 1) both;
}

.reward-brand-row {
  grid-column: 1 / -1;
  grid-row: 1;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  min-width: 0;
  padding-right: 42px;
}

.reward-brand-mark,
.reward-brand-title,
.reward-label {
  text-transform: uppercase;
  font-weight: 850;
  letter-spacing: 0;
}

.reward-brand-mark {
  display: inline-flex;
  flex-direction: column;
  gap: 1px;
  color: var(--gold);
  font-size: 0.78rem;
  line-height: 0.86;
  text-shadow: 0 0 18px rgba(255, 210, 122, 0.48);
}

.reward-brand-mark span {
  color: rgba(244, 248, 255, 0.78);
  font-size: 0.58rem;
  letter-spacing: 0.24em;
}

.reward-brand-title {
  min-width: 0;
  overflow: hidden;
  color: rgba(244, 248, 255, 0.72);
  font-size: 0.6rem;
  text-align: right;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.reward-identity {
  grid-column: 1;
  grid-row: 2;
  align-self: center;
  min-width: 0;
}

.identity-title {
  margin: 0 0 10px;
  color: var(--ink);
  font-size: clamp(1.32rem, 4.6vw, 1.78rem);
  line-height: 0.94;
  font-weight: 920;
  letter-spacing: 0.02em;
  text-transform: uppercase;
}

.identity-title span {
  display: block;
  color: #ff68f3;
  text-shadow: 0 0 22px rgba(190, 85, 255, 0.56);
}

.identity-copy {
  margin: 0 0 16px;
  color: rgba(244, 248, 255, 0.76);
  font-size: 0.72rem;
  line-height: 1.45;
  text-transform: uppercase;
}

.identity-copy span {
  color: var(--cyan);
}

.identity-perks {
  display: grid;
  gap: 8px;
}

.identity-perks span {
  position: relative;
  min-height: 22px;
  display: flex;
  align-items: center;
  padding-left: 28px;
  color: rgba(244, 248, 255, 0.66);
  font-size: 0.58rem;
  line-height: 1.25;
  font-weight: 780;
  text-transform: uppercase;
}

.identity-perks span::before {
  content: "";
  position: absolute;
  left: 0;
  width: 18px;
  height: 18px;
  clip-path: polygon(50% 0, 94% 25%, 94% 75%, 50% 100%, 6% 75%, 6% 25%);
  border: 1px solid rgba(255, 104, 243, 0.76);
  background:
    radial-gradient(circle, rgba(255, 104, 243, 0.34), transparent 62%),
    rgba(7, 9, 18, 0.72);
  box-shadow: 0 0 14px rgba(190, 85, 255, 0.34);
}

.coach-number {
  margin: 0;
  color: var(--ink);
  font-size: clamp(4.1rem, 10vw, 4.75rem);
  line-height: 0.86;
  font-weight: 900;
  letter-spacing: 0;
  text-shadow:
    0 0 24px rgba(82, 220, 255, 0.34),
    0 0 44px rgba(190, 85, 255, 0.22),
    0 0 30px rgba(255, 210, 122, 0.1);
}

.reward-label {
  margin: 0 0 8px;
  color: rgba(226, 236, 255, 0.62);
  font-size: 0.62rem;
}

.reward-footer {
  grid-column: 1 / -1;
  grid-row: 3;
  display: flex;
  align-items: end;
  justify-content: space-between;
  align-self: end;
  gap: 14px;
  min-height: 116px;
  padding: 14px 18px;
  border: 1px solid rgba(255, 210, 122, 0.22);
  clip-path: polygon(7% 0, 100% 0, 100% 78%, 93% 100%, 0 100%, 0 23%);
  background:
    linear-gradient(90deg, rgba(7, 8, 15, 0.94), rgba(4, 6, 13, 0.74) 58%, rgba(19, 5, 28, 0.82)),
    radial-gradient(circle at 29% 42%, rgba(82, 220, 255, 0.18), transparent 32%);
  box-shadow:
    inset 0 0 22px rgba(82, 220, 255, 0.06),
    0 0 20px rgba(255, 210, 122, 0.08);
}

.reward-official {
  grid-column: 3;
  grid-row: 2;
  align-self: end;
  display: grid;
  gap: 12px;
  justify-items: start;
  min-width: 0;
}

.reward-official p {
  margin: 0;
  color: rgba(244, 248, 255, 0.76);
  font-size: 0.7rem;
  line-height: 1.35;
  font-weight: 850;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.reward-official p::first-line {
  color: var(--cyan);
}

.reward-official span {
  display: inline-flex;
  min-height: 34px;
  align-items: center;
  margin: 0;
  padding: 0 12px;
  border: 1px solid rgba(255, 210, 122, 0.58);
  color: var(--gold);
  background:
    linear-gradient(180deg, rgba(255, 210, 122, 0.16), rgba(255, 210, 122, 0.04)),
    rgba(4, 9, 18, 0.78);
  font-size: 0.78rem;
  font-weight: 850;
  letter-spacing: 0;
  white-space: nowrap;
  box-shadow:
    inset 0 0 12px rgba(255, 210, 122, 0.08),
    0 0 18px rgba(255, 210, 122, 0.12);
}

.share-action {
  position: absolute;
  top: 20px;
  right: 20px;
  width: 34px;
  height: 34px;
  display: inline-grid;
  place-items: center;
  border: 1px solid rgba(255, 210, 122, 0.36);
  border-radius: 999px;
  color: var(--gold);
  background:
    radial-gradient(circle at 50% 20%, rgba(255, 210, 122, 0.16), transparent 58%),
    rgba(5, 9, 18, 0.72);
  cursor: pointer;
  box-shadow: 0 0 22px rgba(255, 210, 122, 0.12);
  transition:
    transform 180ms ease,
    border-color 180ms ease,
    box-shadow 180ms ease;
}

.share-action svg {
  width: 16px;
  height: 16px;
  fill: currentColor;
}

.share-action:hover,
.share-action:focus-visible {
  outline: none;
  border-color: rgba(255, 210, 122, 0.7);
  box-shadow: 0 0 28px rgba(255, 210, 122, 0.24);
  transform: translateY(-1px) scale(1.04);
}

.reward-site {
  grid-column: 1;
  grid-row: 4;
  align-self: end;
  margin: 0;
  color: rgba(244, 248, 255, 0.54);
  font-size: 0.68rem;
  font-weight: 750;
  text-align: center;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.reward-card-frame {
  position: relative;
  grid-column: 2;
  grid-row: 2;
  justify-self: center;
  align-self: center;
  width: min(178px, 100%);
  aspect-ratio: 2 / 3;
  margin: 0;
  overflow: hidden;
  border: 1px solid rgba(190, 85, 255, 0.28);
  border-radius: 9px;
  background: rgba(2, 5, 12, 0.88);
  box-shadow:
    0 0 0 10px rgba(190, 85, 255, 0.08),
    0 0 38px rgba(82, 220, 255, 0.28),
    0 0 72px rgba(190, 85, 255, 0.32),
    0 22px 70px rgba(0, 0, 0, 0.46);
  isolation: isolate;
}

.reward-signature {
  width: min(148px, 34%);
  height: 38px;
  align-self: end;
  background:
    linear-gradient(90deg, rgba(82, 220, 255, 0), rgba(82, 220, 255, 0.78), rgba(190, 85, 255, 0.9), rgba(82, 220, 255, 0)) 0 52% / 100% 2px no-repeat,
    radial-gradient(circle at 52% 52%, rgba(255, 210, 122, 0.88) 0 3px, transparent 4px),
    linear-gradient(130deg, transparent 46%, rgba(255, 104, 243, 0.92) 47% 50%, transparent 51%);
  filter: drop-shadow(0 0 12px rgba(190, 85, 255, 0.46));
  opacity: 0.9;
}

.reward-card-frame img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.card-glint,
.sparkle {
  position: absolute;
  pointer-events: none;
}

.card-glint {
  inset: -40% -70%;
  z-index: 2;
  background: linear-gradient(115deg, transparent 38%, rgba(255, 255, 255, 0.5) 47%, rgba(82, 220, 255, 0.22) 52%, transparent 62%);
  mix-blend-mode: screen;
  animation: cardGlint 3600ms ease-in-out infinite;
}

.sparkle {
  z-index: 3;
  width: 7px;
  height: 7px;
  border-radius: 999px;
  background: #fff6d0;
  box-shadow:
    0 0 12px rgba(255, 210, 122, 0.9),
    0 0 20px rgba(82, 220, 255, 0.5);
  animation: sparklePulse 1700ms ease-in-out infinite;
}

.sparkle-a {
  top: 13%;
  left: 18%;
}

.sparkle-b {
  top: 42%;
  right: 12%;
  animation-delay: 460ms;
}

.sparkle-c {
  right: 28%;
  bottom: 14%;
  animation-delay: 900ms;
}

.share-modal {
  position: fixed;
  inset: 0;
  z-index: 30;
  display: grid;
  place-items: center;
  padding: 22px;
}

.share-modal[hidden] {
  display: none;
}

.share-modal-backdrop {
  position: absolute;
  inset: 0;
  border: 0;
  background: rgba(0, 0, 0, 0.72);
  cursor: pointer;
  backdrop-filter: blur(14px);
}

.share-sheet {
  position: relative;
  z-index: 1;
  width: min(640px, calc(100vw - 34px));
  max-height: min(860px, calc(100svh - 34px));
  display: grid;
  grid-template-rows: auto minmax(0, 1fr) auto auto;
  gap: 18px;
  padding: 18px;
  overflow: auto;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 18px;
  background:
    linear-gradient(145deg, rgba(25, 25, 29, 0.98), rgba(12, 12, 16, 0.98)),
    radial-gradient(circle at 50% 0, rgba(82, 220, 255, 0.12), transparent 42%);
  box-shadow:
    0 34px 120px rgba(0, 0, 0, 0.68),
    0 0 54px rgba(190, 85, 255, 0.16);
  animation: shareSheetIn 320ms cubic-bezier(0.16, 1, 0.3, 1) both;
}

.share-sheet-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 6px 6px 12px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.share-sheet h2 {
  margin: 0;
  color: var(--ink);
  font-size: 1.42rem;
  line-height: 1.08;
  letter-spacing: 0;
}

.share-close {
  width: 38px;
  height: 38px;
  display: inline-grid;
  place-items: center;
  flex: 0 0 auto;
  border: 0;
  border-radius: 999px;
  color: rgba(244, 248, 255, 0.86);
  background: rgba(255, 255, 255, 0.06);
  cursor: pointer;
  font-size: 1.42rem;
}

.share-close:hover,
.share-close:focus-visible {
  outline: none;
  background: rgba(255, 255, 255, 0.12);
}

.share-preview {
  display: grid;
  place-items: center;
  min-height: 0;
  padding: 0 10px;
}

.share-preview img {
  display: block;
  width: min(310px, 70vw);
  aspect-ratio: 4 / 5;
  object-fit: cover;
  border-radius: 8px;
  background: rgba(2, 5, 12, 0.9);
  box-shadow:
    0 0 0 1px rgba(255, 255, 255, 0.1),
    0 20px 70px rgba(0, 0, 0, 0.52),
    0 0 46px rgba(190, 85, 255, 0.22);
}

.share-options {
  display: grid;
  grid-template-columns: repeat(6, minmax(66px, 1fr));
  gap: 12px;
  padding: 0 4px 2px;
}

.share-option {
  min-width: 0;
  display: grid;
  justify-items: center;
  gap: 8px;
  border: 0;
  color: rgba(244, 248, 255, 0.88);
  background: transparent;
  cursor: pointer;
  font-size: 0.76rem;
  line-height: 1.15;
}

.share-option-icon {
  width: 54px;
  height: 54px;
  display: grid;
  place-items: center;
  border-radius: 999px;
  color: #07080b;
  background:
    radial-gradient(circle at 50% 22%, rgba(255, 255, 255, 0.82), transparent 58%),
    #f4f8ff;
  box-shadow:
    inset 0 -8px 18px rgba(0, 0, 0, 0.08),
    0 0 28px rgba(82, 220, 255, 0.12);
  transition:
    transform 170ms ease,
    box-shadow 170ms ease,
    background 170ms ease;
}

.share-option-icon svg {
  width: 22px;
  height: 22px;
  fill: currentColor;
}

.share-option-text {
  font-weight: 900;
  letter-spacing: 0;
}

.share-option:hover,
.share-option:focus-visible {
  outline: none;
  color: #fff;
}

.share-option:hover .share-option-icon,
.share-option:focus-visible .share-option-icon {
  transform: translateY(-2px) scale(1.04);
  box-shadow:
    inset 0 -8px 18px rgba(0, 0, 0, 0.08),
    0 0 34px rgba(255, 210, 122, 0.24),
    0 0 34px rgba(190, 85, 255, 0.18);
}

.share-option:disabled {
  cursor: wait;
  opacity: 0.64;
}

.share-modal-status {
  min-height: 18px;
  margin: 0;
  color: rgba(226, 236, 255, 0.68);
  font-size: 0.86rem;
  text-align: center;
}

.share-modal-status:empty {
  display: none;
}

.share-modal-status.is-success {
  color: var(--gold);
}

.share-modal-status.is-error {
  color: #ff8d9a;
}

.section {
  position: relative;
  padding: 104px 32px;
  background: #060a12;
}

.section::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.intro-band {
  padding-top: 42px;
  background:
    linear-gradient(180deg, #05070d 0%, #07121b 100%);
}

.proof-band {
  background:
    linear-gradient(90deg, rgba(82, 220, 255, 0.1), transparent 44%),
    #05080f;
}

.final-band {
  padding-bottom: 128px;
  background:
    linear-gradient(90deg, rgba(255, 210, 122, 0.12), transparent 42%),
    #06070c;
}

.section-inner {
  width: min(1180px, 100%);
  margin: 0 auto;
}

.section h2 {
  max-width: 720px;
  margin-bottom: 32px;
  font-size: clamp(2.2rem, 4vw, 4.9rem);
  line-height: 0.95;
  letter-spacing: 0;
}

.ritual-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1px;
  border: 1px solid rgba(255, 255, 255, 0.11);
  background: rgba(255, 255, 255, 0.11);
}

.ritual-item {
  min-height: 260px;
  padding: 24px;
  background: rgba(5, 9, 18, 0.82);
}

.ritual-index {
  display: block;
  margin-bottom: 42px;
  color: rgba(82, 220, 255, 0.7);
  font-size: 0.8rem;
  font-weight: 850;
}

.ritual-item h3 {
  margin-bottom: 12px;
  font-size: 1.36rem;
}

.ritual-item p,
.proof-copy p {
  margin-bottom: 0;
  color: rgba(226, 236, 255, 0.72);
  line-height: 1.62;
}

.proof-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(320px, 0.78fr);
  gap: 72px;
  align-items: start;
}

.proof-copy {
  padding-top: 8px;
}

.proof-copy p + p {
  margin-top: 22px;
}

.final-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 32px;
  align-items: end;
}

.final-layout h2 {
  margin-bottom: 0;
}

.final-cta {
  white-space: nowrap;
}

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

.is-impact .hero-shade {
  background:
    linear-gradient(90deg, rgba(3, 5, 11, 0.72) 0%, rgba(3, 5, 11, 0.48) 34%, rgba(3, 5, 11, 0.12) 66%, rgba(3, 5, 11, 0.34) 100%),
    linear-gradient(0deg, rgba(3, 5, 11, 0.74) 0%, rgba(3, 5, 11, 0.12) 42%, rgba(3, 5, 11, 0.18) 100%);
}

.is-sequence .hero-shade {
  background:
    linear-gradient(90deg, rgba(3, 5, 11, 0.28) 0%, rgba(3, 5, 11, 0.12) 42%, rgba(3, 5, 11, 0.04) 100%),
    linear-gradient(0deg, rgba(3, 5, 11, 0.32) 0%, rgba(3, 5, 11, 0.03) 48%, rgba(3, 5, 11, 0.1) 100%);
}

.is-intro .hero-shade {
  background:
    radial-gradient(circle at 50% 82%, rgba(82, 220, 255, 0.18), transparent 31%),
    radial-gradient(circle at 12% 82%, rgba(190, 85, 255, 0.12), transparent 25%),
    radial-gradient(circle at 88% 82%, rgba(190, 85, 255, 0.12), transparent 25%),
    linear-gradient(90deg, rgba(3, 5, 11, 0.42) 0%, rgba(3, 5, 11, 0.2) 42%, rgba(3, 5, 11, 0.08) 100%),
    linear-gradient(0deg, rgba(3, 5, 11, 0.42) 0%, rgba(3, 5, 11, 0.04) 47%, rgba(3, 5, 11, 0.16) 100%);
}

@keyframes cardGlint {
  0%,
  38% {
    transform: translateX(-38%) rotate(0.001deg);
    opacity: 0;
  }

  52% {
    opacity: 0.85;
  }

  72%,
  100% {
    transform: translateX(42%) rotate(0.001deg);
    opacity: 0;
  }
}

@keyframes sparklePulse {
  0%,
  100% {
    opacity: 0;
    transform: scale(0.45);
  }

  48% {
    opacity: 1;
    transform: scale(1);
  }
}

@keyframes premiumCardAura {
  0%,
  100% {
    opacity: 0.5;
    filter: hue-rotate(0deg) saturate(1.05);
  }

  34% {
    opacity: 0.82;
    filter: hue-rotate(32deg) saturate(1.28);
  }

  66% {
    opacity: 0.72;
    filter: hue-rotate(-38deg) saturate(1.24);
  }
}

@keyframes premiumCardSweep {
  0%,
  32% {
    opacity: 0;
    transform: translateX(-38%) rotate(0.001deg);
  }

  48% {
    opacity: 0.92;
  }

  68%,
  100% {
    opacity: 0;
    transform: translateX(40%) rotate(0.001deg);
  }
}

@keyframes premiumSparkle {
  0%,
  100% {
    opacity: 0;
    transform: scale(0.35) rotate(0deg);
    filter: hue-rotate(0deg) brightness(1);
  }

  36% {
    opacity: 1;
    transform: scale(1.28) rotate(45deg);
    filter: hue-rotate(34deg) brightness(1.45);
  }

  62% {
    opacity: 0.72;
    transform: scale(0.82) rotate(94deg);
    filter: hue-rotate(-48deg) brightness(1.12);
  }
}

@keyframes premiumCardImagePulse {
  0%,
  100% {
    filter:
      saturate(1.16)
      contrast(1.08)
      brightness(1.06)
      drop-shadow(0 0 10px rgba(82, 220, 255, 0.2));
  }

  33% {
    filter:
      saturate(1.26)
      contrast(1.12)
      brightness(1.12)
      hue-rotate(10deg)
      drop-shadow(0 0 16px rgba(255, 210, 122, 0.34));
  }

  66% {
    filter:
      saturate(1.3)
      contrast(1.1)
      brightness(1.1)
      hue-rotate(-16deg)
      drop-shadow(0 0 18px rgba(190, 85, 255, 0.36));
  }
}

@keyframes rewardBurst {
  0% {
    opacity: 0;
    transform: translate(-50%, -50%) scale(0.08) rotate(0deg);
  }

  18% {
    opacity: 0.72;
  }

  46% {
    opacity: 0.54;
    transform: translate(-50%, -50%) scale(4.8) rotate(118deg);
  }

  100% {
    opacity: 0;
    transform: translate(-50%, -50%) scale(6.8) rotate(170deg);
  }
}

@keyframes rewardCardReveal {
  0% {
    opacity: 0;
    filter: blur(8px) saturate(1.28) brightness(1.12);
    transform: scale(0.965);
  }

  24% {
    opacity: 0.38;
    filter: blur(5px) saturate(1.22) brightness(1.1);
    transform: scale(0.985);
  }

  56% {
    opacity: 0.94;
    filter: blur(2px) saturate(1.16) brightness(1.06);
    transform: scale(1.002);
  }

  78% {
    opacity: 1;
    filter: blur(0.8px) saturate(1.08) brightness(1.03);
    transform: scale(1.001);
  }

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

@keyframes rewardGlassSweep {
  0%,
  24% {
    opacity: 0;
    transform: translate3d(-58%, 0, 0) skewX(-10deg);
  }

  38% {
    opacity: 0.32;
  }

  52% {
    opacity: 0.78;
  }

  68% {
    opacity: 0.22;
  }

  80%,
  100% {
    opacity: 0;
    transform: translate3d(430%, 0, 0) skewX(-10deg);
  }
}

@keyframes shareSheetIn {
  0% {
    opacity: 0;
    transform: translateY(18px) scale(0.96);
  }

  100% {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

.binary-burst-canvas {
  position: fixed;
  z-index: 8;
  pointer-events: none;
  mix-blend-mode: screen;
  contain: strict;
}

.consent-note {
  margin: 10px 0 0;
  color: rgba(226, 236, 255, 0.58);
  font-size: 0.72rem;
  line-height: 1.42;
}

.legal-footer {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: minmax(0, 0.8fr) minmax(0, 1.4fr) auto minmax(0, 0.8fr);
  gap: 18px;
  align-items: center;
  min-height: 72px;
  padding: 16px clamp(18px, 3vw, 42px);
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  background:
    linear-gradient(90deg, rgba(82, 220, 255, 0.08), transparent 34%, rgba(255, 210, 122, 0.07)),
    rgba(3, 5, 11, 0.96);
  color: rgba(226, 236, 255, 0.7);
}

.legal-footer-mark,
.legal-footer-note {
  margin: 0;
  font-size: 0.72rem;
  line-height: 1.35;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.legal-footer-mark {
  color: rgba(255, 210, 122, 0.86);
  font-weight: 850;
}

.legal-footer-note {
  justify-self: end;
  color: rgba(226, 236, 255, 0.48);
  text-align: right;
}

.language-switcher--footer {
  justify-self: center;
  background: rgba(255, 255, 255, 0.04);
  box-shadow: none;
}

.legal-footer-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 8px 16px;
}

.legal-footer-links a,
.legal-footer-links button {
  border: 0;
  padding: 0;
  color: rgba(244, 248, 255, 0.78);
  background: transparent;
  cursor: pointer;
  font-size: 0.78rem;
  line-height: 1.35;
  letter-spacing: 0.02em;
}

.legal-footer-links a:hover,
.legal-footer-links a:focus-visible,
.legal-footer-links button:hover,
.legal-footer-links button:focus-visible,
.legal-page a:hover,
.legal-page a:focus-visible {
  color: var(--gold);
  outline: none;
}

.cookie-modal {
  position: fixed;
  inset: 0;
  z-index: 20;
  display: grid;
  place-items: end center;
  padding: 20px;
}

.cookie-modal[hidden] {
  display: none;
}

.cookie-modal-backdrop {
  position: absolute;
  inset: 0;
  border: 0;
  background: rgba(1, 4, 10, 0.76);
  backdrop-filter: blur(5px);
  cursor: pointer;
}

.cookie-sheet {
  position: relative;
  z-index: 1;
  width: min(620px, 100%);
  max-height: min(82vh, 760px);
  overflow: auto;
  padding: 24px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 8px;
  background:
    radial-gradient(circle at 80% 0%, rgba(82, 220, 255, 0.12), transparent 34%),
    radial-gradient(circle at 12% 100%, rgba(190, 85, 255, 0.14), transparent 38%),
    linear-gradient(160deg, rgba(12, 18, 32, 0.99), rgba(3, 5, 12, 0.99));
  box-shadow:
    0 30px 120px rgba(0, 0, 0, 0.62),
    0 0 58px rgba(82, 220, 255, 0.1);
  animation: shareSheetIn 260ms ease both;
}

.cookie-sheet-header h2 {
  margin: 0 0 14px;
  font-size: 1.55rem;
  line-height: 1;
}

.cookie-sheet p,
.cookie-choice p {
  color: rgba(236, 244, 255, 0.84);
  line-height: 1.65;
}

.legal-page p,
.legal-page li {
  color: rgba(226, 236, 255, 0.76);
  line-height: 1.65;
}

.cookie-choice {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 16px;
  align-items: center;
  margin-top: 14px;
  padding: 14px;
  border: 1px solid rgba(255, 255, 255, 0.11);
  border-radius: 8px;
  background: rgba(8, 14, 26, 0.82);
}

.cookie-choice h3 {
  margin: 0 0 4px;
  font-size: 0.98rem;
}

.cookie-choice p {
  margin: 0;
  font-size: 0.86rem;
}

.cookie-choice span {
  color: var(--gold);
  font-size: 0.78rem;
  font-weight: 850;
  text-transform: uppercase;
}

.cookie-choice input {
  width: 22px;
  height: 22px;
  accent-color: var(--gold);
}

.cookie-choice-toggle {
  cursor: pointer;
}

.cookie-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 18px;
}

.cookie-actions button {
  min-height: 42px;
  border: 1px solid rgba(255, 210, 122, 0.48);
  border-radius: 4px;
  padding: 0 14px;
  color: rgba(244, 248, 255, 0.9);
  background: rgba(255, 255, 255, 0.08);
  cursor: pointer;
  font-weight: 800;
}

.cookie-actions button:first-child,
.cookie-actions button:last-child {
  color: #120b02;
  background: linear-gradient(180deg, #ffe09b, #ffc65f);
}

.cookie-sheet-note {
  margin: 16px 0 0;
  font-size: 0.82rem;
}

.cookie-sheet-note a {
  color: var(--gold);
}

.legal-page-shell {
  min-height: 100vh;
  background:
    radial-gradient(circle at 50% 0%, rgba(82, 220, 255, 0.12), transparent 30%),
    linear-gradient(180deg, #05070d, #07101a 54%, #03050b);
}

.legal-page {
  width: min(980px, calc(100% - 36px));
  margin: 0 auto;
  padding: 72px 0 88px;
}

.legal-page-header {
  margin-bottom: 34px;
  padding-bottom: 24px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
}

.legal-page-kicker {
  margin: 0 0 12px;
  color: var(--gold);
  font-size: 0.75rem;
  font-weight: 850;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.legal-page h1 {
  max-width: none;
  margin: 0 0 16px;
  font-size: clamp(2.45rem, 6vw, 4.6rem);
  line-height: 0.96;
}

.legal-page h2 {
  margin: 34px 0 12px;
  color: var(--ink);
  font-size: clamp(1.35rem, 3vw, 2.2rem);
  line-height: 1;
}

.legal-page h3 {
  margin: 22px 0 8px;
  font-size: 1.05rem;
}

.legal-page p,
.legal-page li {
  font-size: 0.98rem;
}

.legal-page ul {
  padding-left: 1.2rem;
}

.legal-page a {
  color: var(--cyan);
}

.legal-page-card {
  margin: 24px 0;
  padding: 18px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 8px;
  background:
    linear-gradient(160deg, rgba(15, 22, 40, 0.76), rgba(2, 5, 12, 0.62)),
    rgba(255, 255, 255, 0.03);
}

.legal-page-card p:last-child {
  margin-bottom: 0;
}

.legal-page-back {
  display: inline-flex;
  align-items: center;
  min-height: 42px;
  margin-top: 22px;
  border: 1px solid rgba(255, 210, 122, 0.48);
  border-radius: 4px;
  padding: 0 14px;
  color: var(--gold);
  background: rgba(255, 255, 255, 0.04);
  cursor: pointer;
  font: inherit;
  font-weight: 850;
}

.wiki-page-shell {
  background:
    radial-gradient(circle at 16% 0%, rgba(82, 220, 255, 0.11), transparent 28%),
    radial-gradient(circle at 82% 12%, rgba(255, 210, 122, 0.08), transparent 24%),
    linear-gradient(180deg, #05070d, #07101a 56%, #03050b);
}

.wiki-page-header p {
  max-width: 760px;
}

.wiki-breadcrumbs {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  align-items: center;
  margin-bottom: 28px;
  color: rgba(226, 236, 255, 0.52);
  font-size: 0.78rem;
}

.wiki-breadcrumbs a {
  color: rgba(82, 220, 255, 0.82);
}

.wiki-breadcrumbs a:hover,
.wiki-breadcrumbs a:focus-visible {
  color: var(--gold);
  outline: none;
}

.wiki-summary-card h2 {
  margin: 0 0 14px;
  font-size: clamp(1.2rem, 2.2vw, 1.7rem);
}

.wiki-fact-list {
  display: grid;
  gap: 10px;
  margin: 16px 0 0;
  padding-left: 1.05rem;
}

.wiki-fact-list li::marker {
  color: var(--gold);
}

.wiki-topic-section {
  margin-top: 38px;
}

.wiki-topic-grid,
.wiki-related-links {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

.wiki-topic-card,
.wiki-related-links a {
  display: block;
  min-width: 0;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 8px;
  background:
    linear-gradient(160deg, rgba(15, 22, 40, 0.78), rgba(2, 5, 12, 0.64)),
    rgba(255, 255, 255, 0.03);
  transition:
    border-color 180ms ease,
    background 180ms ease,
    transform 180ms ease;
}

.wiki-topic-card {
  min-height: 178px;
  padding: 18px;
}

.wiki-topic-card span,
.wiki-related-links span {
  display: block;
  margin-bottom: 10px;
  color: var(--gold);
  font-size: 0.68rem;
  font-weight: 850;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.wiki-topic-card h2 {
  margin: 0 0 10px;
  font-size: 1.2rem;
  line-height: 1.08;
}

.wiki-topic-card p {
  margin: 0;
  color: rgba(226, 236, 255, 0.72);
  font-size: 0.9rem;
}

.wiki-topic-card:hover,
.wiki-topic-card:focus-visible,
.wiki-related-links a:hover,
.wiki-related-links a:focus-visible {
  border-color: rgba(82, 220, 255, 0.38);
  background:
    linear-gradient(160deg, rgba(20, 32, 54, 0.86), rgba(5, 8, 16, 0.72)),
    rgba(82, 220, 255, 0.04);
  outline: none;
  transform: translateY(-1px);
}

.wiki-article-section {
  margin-top: 34px;
}

.wiki-related {
  margin-top: 44px;
  padding-top: 26px;
  border-top: 1px solid rgba(255, 255, 255, 0.11);
}

.wiki-related-links a {
  padding: 16px;
  color: rgba(244, 248, 255, 0.9);
  font-weight: 800;
}

@media (max-width: 980px) {
  .hero {
    min-height: 920px;
    grid-template-columns: 24px minmax(0, 1fr) 24px;
  }

  .hero-content {
    align-self: start;
    padding-top: 80px;
  }

  .is-dock-active .hero-content {
    align-self: end;
    width: min(520px, calc(100% - 48px));
    padding: 0 0 72px 24px;
  }

  h1 {
    font-size: clamp(4rem, 18vw, 6rem);
  }

  .ritual-grid,
  .proof-layout,
  .final-layout {
    grid-template-columns: 1fr;
  }

  .ritual-item {
    min-height: 210px;
  }

  .section {
    padding: 80px 24px;
  }

  .final-cta {
    justify-self: start;
  }

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

  .legal-footer-note {
    justify-self: center;
    text-align: center;
  }
}

@media (max-width: 640px) {
  .language-switcher--global {
    top: 10px;
    right: 10px;
  }

  .language-switcher a {
    min-width: 42px;
    min-height: 34px;
    font-size: 0.68rem;
  }

  .hero {
    min-height: 100svh;
  }

  .hero-media {
    opacity: 0.76;
  }

  .hero-content {
    padding-top: 54px;
    padding-bottom: 36px;
  }

  .is-dock-active .hero-content {
    width: min(100%, calc(100% - 30px));
    padding: 0 0 62px 18px;
  }

  .hero-title {
    max-width: 12ch;
    margin-bottom: 10px;
    font-size: clamp(2.45rem, 13vw, 3.7rem);
    line-height: 0.9;
  }

  .hero-line {
    max-width: 25rem;
    margin-bottom: 9px;
    font-size: 0.98rem;
    line-height: 1.18;
  }

  .hero-copy {
    max-width: 27rem;
    margin-bottom: 18px;
    font-size: 0.78rem;
    line-height: 1.46;
  }

  .waitlist-panel {
    top: 60svh;
    width: min(300px, calc(100vw - 32px));
    padding: 16px;
  }

  .reward-panel {
    top: 60svh;
    width: min(340px, calc(100vw - 24px));
    padding: 0;
  }

  .waitlist-form {
    grid-template-columns: 1fr;
  }

  .reward-social-card {
    grid-template-columns: minmax(0, 0.82fr) minmax(106px, 1fr) minmax(0, 0.58fr);
    gap: 8px;
    padding: 12px;
  }

  .reward-brand-row {
    grid-column: 1 / -1;
    grid-row: 1;
    padding-right: 36px;
  }

  .reward-brand-mark {
    font-size: 0.66rem;
  }

  .reward-brand-mark span,
  .reward-brand-title {
    font-size: 0.48rem;
  }

  .identity-title {
    margin-bottom: 7px;
    font-size: 1.02rem;
  }

  .identity-copy {
    margin-bottom: 8px;
    font-size: 0.54rem;
  }

  .identity-perks {
    gap: 5px;
  }

  .identity-perks span {
    min-height: 18px;
    padding-left: 20px;
    font-size: 0.46rem;
  }

  .identity-perks span::before {
    width: 14px;
    height: 14px;
  }

  .reward-card-frame {
    width: min(132px, 100%);
  }

  .reward-official {
    gap: 8px;
  }

  .reward-official p {
    font-size: 0.48rem;
    letter-spacing: 0.08em;
  }

  .reward-official span {
    min-height: 28px;
    padding: 0 8px;
    font-size: 0.58rem;
  }

  .reward-footer {
    grid-column: 1 / -1;
    grid-row: 3;
    min-height: 86px;
    padding: 10px 12px;
  }

  .reward-site {
    grid-column: 1 / -1;
    grid-row: 4;
    text-align: center;
  }

  .coach-number {
    font-size: 2.68rem;
  }

  .reward-label {
    margin-bottom: 6px;
    font-size: 0.5rem;
  }

  .reward-signature {
    display: none;
  }

  .share-action {
    top: 12px;
    right: 12px;
    width: 30px;
    height: 30px;
  }

  .share-sheet {
    gap: 14px;
    padding: 14px;
    border-radius: 14px;
  }

  .share-preview img {
    width: min(280px, 76vw);
  }

  .share-options {
    grid-template-columns: repeat(3, minmax(70px, 1fr));
    gap: 10px 8px;
  }

  .share-option-icon {
    width: 48px;
    height: 48px;
  }

  .primary-action,
  .secondary-action,
  .final-cta {
    width: 100%;
  }

  .legal-footer {
    padding: 18px;
  }

  .legal-footer-links {
    gap: 10px 14px;
  }

  .cookie-modal {
    padding: 12px;
  }

  .cookie-sheet {
    padding: 18px;
  }

  .cookie-choice {
    grid-template-columns: 1fr;
  }

  .cookie-actions {
    display: grid;
    grid-template-columns: 1fr;
  }

  .legal-page {
    width: min(100% - 28px, 980px);
    padding: 48px 0 72px;
  }

  .wiki-topic-grid,
  .wiki-related-links {
    grid-template-columns: 1fr;
  }

  .wiki-topic-card {
    min-height: 0;
  }
}

.reward-panel {
  width: min(520px, calc(100vw - 32px));
}

.reward-social-card {
  position: relative;
  width: 100%;
  aspect-ratio: 1;
  container-type: inline-size;
  display: block;
  overflow: hidden;
  padding: 0;
  border: 1px solid rgba(255, 255, 255, 0.13);
  border-radius: 10px;
  background:
    url("/Website/assets/coach-card-template-lqip.webp?v=20260605-template-refresh-2") center / cover no-repeat,
    #03050b;
  box-shadow:
    0 34px 110px rgba(0, 0, 0, 0.62),
    0 0 74px rgba(190, 85, 255, 0.24),
    0 0 52px rgba(82, 220, 255, 0.12);
  isolation: isolate;
}

.reward-social-card.is-content-pending .reward-brand-row,
.reward-social-card.is-content-pending .reward-card-frame,
.reward-social-card.is-content-pending .reward-official,
.reward-social-card.is-content-pending .reward-footer,
.reward-social-card.is-content-pending .reward-site {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  filter: blur(5px);
}

.reward-social-card .reward-brand-row,
.reward-social-card .reward-card-frame,
.reward-social-card .reward-official,
.reward-social-card .reward-footer,
.reward-social-card .reward-site {
  transition:
    opacity 560ms ease,
    filter 560ms ease,
    visibility 0s linear 420ms;
}

.reward-social-card.is-content-ready .reward-brand-row,
.reward-social-card.is-content-ready .reward-card-frame,
.reward-social-card.is-content-ready .reward-official,
.reward-social-card.is-content-ready .reward-footer,
.reward-social-card.is-content-ready .reward-site {
  filter: blur(0);
  transition:
    opacity 620ms ease,
    filter 620ms ease,
    visibility 0s linear 0s;
}

.reward-social-card::before {
  content: "";
  display: block;
  inset: 0;
  z-index: 0;
  background: var(--reward-screen-image, none) center / cover no-repeat;
  opacity: 0;
  transform: translateZ(0);
  transition: opacity 680ms ease;
  will-change: opacity;
}

.reward-social-card.is-screen-ready::before {
  opacity: 1;
}

.reward-social-card::after {
  content: none;
  display: none;
  inset: 0;
  z-index: 1;
  background: none;
  opacity: 0;
}

.reward-glass {
  position: absolute;
  inset: 0;
  z-index: 6;
  display: block;
  overflow: hidden;
  border-radius: inherit;
  pointer-events: none;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.15), rgba(255, 255, 255, 0.035) 13%, transparent 38%, rgba(255, 255, 255, 0.055)),
    radial-gradient(circle at 50% 0%, rgba(255, 255, 255, 0.16), transparent 25%),
    linear-gradient(90deg, rgba(82, 220, 255, 0.1), transparent 16%, transparent 84%, rgba(190, 85, 255, 0.12));
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.2),
    inset 0 -1px 0 rgba(82, 220, 255, 0.1),
    inset 1px 0 0 rgba(82, 220, 255, 0.08),
    inset -1px 0 0 rgba(190, 85, 255, 0.1);
  opacity: 0.48;
  mix-blend-mode: screen;
  transform: translateZ(0);
}

.reward-glass::after {
  content: "";
  position: absolute;
  top: -18%;
  bottom: -18%;
  left: -76%;
  width: 48%;
  background: linear-gradient(112deg, transparent 0 24%, rgba(255, 255, 255, 0.04) 34%, rgba(255, 247, 216, 0.3) 45%, rgba(82, 220, 255, 0.2) 50%, rgba(190, 85, 255, 0.12) 56%, transparent 74%);
  filter: blur(0.3px);
  opacity: 0;
  mix-blend-mode: screen;
  transform: translate3d(-58%, 0, 0) skewX(-10deg);
  animation: rewardGlassSweep 6800ms cubic-bezier(0.16, 1, 0.3, 1) infinite;
  will-change: transform, opacity;
}

.reward-social-card.is-content-pending .reward-glass {
  opacity: 0.3;
}

.reward-social-card.is-content-pending .reward-glass::after {
  animation-play-state: paused;
}

.reward-social-card.is-content-ready .reward-glass {
  opacity: 0.52;
}

.reward-brand-row {
  position: static;
  display: block;
  padding: 0;
}

.reward-brand-mark,
.reward-brand-title,
.reward-identity,
.reward-official p,
.reward-label,
.reward-signature,
.reward-site {
  display: none;
}

.reward-card-frame {
  position: absolute;
  z-index: 3;
  left: 34.2%;
  top: 8.4%;
  width: 35%;
  height: 75%;
  margin: 0;
  overflow: hidden;
  border: 0;
  border-radius: 2.3%;
  clip-path: polygon(14% 0, 85% 0, 100% 7%, 100% 76%, 76% 86%, 68% 100%, 31% 100%, 23% 86%, 0 76%, 0 7%);
  background: transparent;
  box-shadow: none;
  isolation: isolate;
}

.reward-card-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(1.08) contrast(1.04) brightness(1.02);
  mix-blend-mode: normal;
  animation: none;
  transition:
    filter 420ms ease,
    opacity 420ms ease,
    transform 420ms ease;
}

.reward-card-frame img[hidden] {
  display: none;
}

.reward-card-frame img.reward-card-image--lqip {
  opacity: 0.88;
  filter: blur(8px) saturate(1.08) contrast(1.02) brightness(0.96);
  transform: scale(1.035);
}

.reward-card-frame img.reward-card-image--ready {
  opacity: 1;
  filter: saturate(1.08) contrast(1.04) brightness(1.02);
  transform: scale(1);
}

.reward-card-frame .card-glint {
  content: none;
  display: none;
}

.reward-card-frame .sparkle {
  display: block;
}

.reward-card-frame::before,
.reward-card-frame::after {
  content: none;
  position: absolute;
  inset: 0;
  z-index: 2;
  display: none;
  pointer-events: none;
}

.reward-card-frame::before {
  background:
    radial-gradient(circle at 18% 12%, rgba(82, 220, 255, 0.5), transparent 16%),
    radial-gradient(circle at 82% 18%, rgba(255, 210, 122, 0.44), transparent 15%),
    radial-gradient(circle at 54% 48%, rgba(190, 85, 255, 0.3), transparent 38%);
  mix-blend-mode: screen;
  opacity: 0.65;
  animation: premiumCardAura 3800ms ease-in-out infinite;
}

.reward-card-frame::after {
  inset: -28% -62%;
  background: linear-gradient(112deg, transparent 38%, rgba(255, 210, 122, 0.2) 45%, rgba(82, 220, 255, 0.28) 50%, rgba(190, 85, 255, 0.2) 55%, transparent 63%);
  mix-blend-mode: screen;
  opacity: 0;
  transform: translateX(-34%);
  animation: premiumCardSweep 3200ms ease-in-out infinite;
}

.reward-card-frame .card-glint {
  inset: -36% -72%;
  z-index: 3;
  background: linear-gradient(118deg, transparent 39%, rgba(255, 210, 122, 0.32) 46%, rgba(82, 220, 255, 0.28) 51%, rgba(190, 85, 255, 0.2) 56%, transparent 64%);
  mix-blend-mode: screen;
  animation: premiumCardSweep 4200ms ease-in-out infinite 500ms;
}

.reward-card-frame .sparkle {
  z-index: 4;
  width: clamp(3px, 1.2cqw, 7px);
  height: clamp(3px, 1.2cqw, 7px);
  border-radius: 999px;
  background:
    radial-gradient(circle, #fff 0 14%, var(--sparkle, #fff7d8) 18% 44%, transparent 58%),
    linear-gradient(90deg, transparent 0 38%, var(--sparkle, #fff7d8) 46% 54%, transparent 62%),
    linear-gradient(0deg, transparent 0 38%, var(--sparkle, #fff7d8) 46% 54%, transparent 62%);
  box-shadow:
    0 0 8px var(--sparkle-soft, rgba(255, 210, 122, 0.9)),
    0 0 18px var(--sparkle-wide, rgba(82, 220, 255, 0.48));
  animation: premiumSparkle 2200ms ease-in-out infinite;
  transform-origin: center;
}

.reward-card-frame .sparkle-a {
  --sparkle: #fff7d8;
  --sparkle-soft: rgba(255, 247, 216, 0.96);
  --sparkle-wide: rgba(255, 210, 122, 0.58);
  top: 12%;
  left: 16%;
}

.reward-card-frame .sparkle-b {
  --sparkle: #52dcff;
  --sparkle-soft: rgba(82, 220, 255, 0.95);
  --sparkle-wide: rgba(190, 85, 255, 0.5);
  top: 36%;
  right: 13%;
  animation-delay: 520ms;
}

.reward-card-frame .sparkle-c {
  --sparkle: #ffd27a;
  --sparkle-soft: rgba(255, 210, 122, 0.95);
  --sparkle-wide: rgba(255, 104, 243, 0.46);
  right: 26%;
  bottom: 13%;
  animation-delay: 980ms;
}

.reward-card-frame .sparkle-d {
  --sparkle: #be55ff;
  --sparkle-soft: rgba(190, 85, 255, 0.95);
  --sparkle-wide: rgba(82, 220, 255, 0.46);
  top: 21%;
  right: 22%;
  animation-delay: 1260ms;
}

.reward-card-frame .sparkle-e {
  --sparkle: #ff68f3;
  --sparkle-soft: rgba(255, 104, 243, 0.92);
  --sparkle-wide: rgba(255, 210, 122, 0.4);
  top: 58%;
  left: 18%;
  animation-delay: 360ms;
}

.reward-card-frame .sparkle-f {
  --sparkle: #fff;
  --sparkle-soft: rgba(255, 255, 255, 0.94);
  --sparkle-wide: rgba(82, 220, 255, 0.44);
  top: 70%;
  right: 18%;
  animation-delay: 1540ms;
}

.reward-card-frame .sparkle-g {
  --sparkle: #52dcff;
  --sparkle-soft: rgba(82, 220, 255, 0.9);
  --sparkle-wide: rgba(255, 210, 122, 0.4);
  top: 47%;
  right: 34%;
  animation-delay: 1840ms;
}

.reward-card-frame .sparkle-h {
  --sparkle: #ffd27a;
  --sparkle-soft: rgba(255, 210, 122, 0.9);
  --sparkle-wide: rgba(190, 85, 255, 0.45);
  left: 25%;
  bottom: 27%;
  animation-delay: 720ms;
}

.reward-card-frame .sparkle-i {
  --sparkle: #be55ff;
  --sparkle-soft: rgba(190, 85, 255, 0.9);
  --sparkle-wide: rgba(255, 255, 255, 0.32);
  top: 31%;
  left: 43%;
  animation-delay: 2320ms;
}

.reward-card-frame .sparkle-j {
  --sparkle: #fff7d8;
  --sparkle-soft: rgba(255, 247, 216, 0.9);
  --sparkle-wide: rgba(255, 104, 243, 0.36);
  top: 82%;
  left: 48%;
  animation-delay: 1160ms;
}

.reward-card-frame .sparkle-k {
  --sparkle: #52dcff;
  --sparkle-soft: rgba(82, 220, 255, 0.9);
  --sparkle-wide: rgba(190, 85, 255, 0.42);
  top: 16%;
  left: 58%;
  animation-delay: 1960ms;
}

.reward-card-frame .sparkle-l {
  --sparkle: #ffd27a;
  --sparkle-soft: rgba(255, 210, 122, 0.88);
  --sparkle-wide: rgba(82, 220, 255, 0.36);
  top: 51%;
  left: 31%;
  animation-delay: 2680ms;
}

.reward-official {
  position: absolute;
  z-index: 4;
  left: auto;
  right: 5.7%;
  top: 67.5%;
  width: 17.8%;
  height: 5.8%;
  display: grid;
  place-items: center;
  min-width: 0;
}

.reward-official span {
  width: 100%;
  min-height: 0;
  height: 100%;
  display: grid;
  place-items: center;
  margin: 0;
  padding: 0;
  border: 0;
  color: var(--gold);
  background: transparent;
  font-size: 3.25cqw;
  font-weight: 900;
  letter-spacing: 0;
  text-shadow:
    0 0 12px rgba(255, 210, 122, 0.72),
    0 0 24px rgba(255, 210, 122, 0.24);
}

.reward-footer {
  position: absolute;
  z-index: 4;
  left: 11.2%;
  top: 80.8%;
  width: 56%;
  min-height: 0;
  display: block;
  padding: 0;
  border: 0;
  clip-path: none;
  background: transparent;
  box-shadow: none;
}

.coach-number {
  display: inline-block;
  margin: 0;
  background: linear-gradient(90deg, #ff68f3 0%, #f4f8ff 53%, #52dcff 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  font-size: 9.4cqw;
  line-height: 0.86;
  font-weight: 950;
  letter-spacing: 0;
  text-shadow:
    0 0 22px rgba(82, 220, 255, 0.26),
    0 0 34px rgba(190, 85, 255, 0.18);
}

.share-action {
  position: absolute;
  z-index: 8;
  top: 7.2%;
  right: 5.4%;
  width: clamp(34px, 7.2%, 42px);
  height: clamp(34px, 7.2%, 42px);
  display: grid;
  place-items: center;
  padding: 0;
  border: 1px solid rgba(255, 210, 122, 0.58);
  border-radius: 999px;
  border-color: rgba(255, 210, 122, 0.58);
  color: var(--gold);
  background:
    radial-gradient(circle at 50% 26%, rgba(255, 210, 122, 0.22), transparent 58%),
    rgba(5, 7, 14, 0.72);
  backdrop-filter: blur(10px);
  transform: translateZ(0);
  transition:
    border-color 160ms ease,
    box-shadow 160ms ease,
    background 160ms ease,
    color 160ms ease;
  will-change: border-color, box-shadow;
}

.reward-social-card .share-action {
  position: absolute;
}

.share-action:hover,
.share-action:focus-visible {
  border-color: rgba(255, 210, 122, 0.78);
  background:
    radial-gradient(circle at 50% 28%, rgba(255, 210, 122, 0.32), transparent 60%),
    rgba(5, 7, 14, 0.78);
  box-shadow:
    inset 0 0 14px rgba(255, 210, 122, 0.08),
    0 0 18px rgba(255, 210, 122, 0.22);
  transform: translateZ(0);
}

.share-action svg {
  width: 46%;
  height: 46%;
  fill: currentColor;
  transform: translateZ(0);
  filter: none;
}

.share-action:hover svg,
.share-action:focus-visible svg {
  transform: translateZ(0);
  filter: none;
}

.share-close span {
  display: block;
  line-height: 1;
  transform: translateY(-2px);
}

.reward-panel.is-preparing-reward,
.reward-panel.is-reward-reveal {
  opacity: 1;
  pointer-events: none;
  transition: none;
  visibility: visible;
  transform: translate(-50%, -50%) scale(1);
}

.reward-panel.is-preparing-reward .reward-social-card {
  opacity: 0;
  filter: blur(6px) saturate(1.22) brightness(1.08);
  transform: scale(0.985);
}

.reward-panel.is-reward-reveal .reward-burst {
  display: none;
  animation: none;
}

.reward-panel.is-reward-reveal .reward-social-card {
  animation: rewardCardReveal 1480ms cubic-bezier(0.16, 1, 0.3, 1) both;
}

.share-preview img {
  aspect-ratio: 1;
}

  @media (max-width: 640px) {
  .reward-panel {
    width: min(340px, calc(100vw - 24px));
  }

  .reward-social-card {
    padding: 0;
  }

  .share-action {
    top: 7%;
    right: 5.2%;
    width: clamp(32px, 8%, 38px);
    height: clamp(32px, 8%, 38px);
  }
}

#reward-share-card #share-button {
  --share-button-size: clamp(24px, 7.2cqw, 42px);
  position: absolute;
  top: calc(7.2% + 5.8cqw);
  right: 3.5%;
  inline-size: var(--share-button-size);
  block-size: var(--share-button-size);
  width: var(--share-button-size);
  height: var(--share-button-size);
  min-width: 0;
  min-height: 0;
  max-width: var(--share-button-size);
  max-height: var(--share-button-size);
  aspect-ratio: 1 / 1;
  display: grid;
  place-items: center;
  padding: 0;
  border-radius: 999px;
  line-height: 1;
  overflow: hidden;
}

#reward-share-card #share-button svg {
  width: 46%;
  height: 46%;
}

@media (max-width: 640px) {
  #reward-share-card #share-button {
    --share-button-size: clamp(22px, 7.2cqw, 36px);
    top: calc(7% + 5.8cqw);
    right: 3.5%;
  }
}

/* Arena CTA clean-room component.
   Layer order: circuit -> shell -> energy -> copy. */
.arena-cta {
  position: relative;
  overflow: visible;
  isolation: isolate;
}

#activate-button,
.arena-cta,
.arena-cta * {
  -webkit-tap-highlight-color: transparent;
}

#activate-button {
  touch-action: manipulation;
  user-select: none;
  -webkit-user-select: none;
}

.arena-cta::before {
  content: "";
  position: absolute;
  pointer-events: none;
}

.arena-cta__shell,
.arena-cta__frame,
.arena-cta__glass,
.arena-cta__energy,
.arena-cta__strike,
.arena-cta__circuit,
.arena-cta__wire,
.arena-cta__node {
  position: absolute;
  pointer-events: none;
}

.arena-cta__shell::before,
.arena-cta__shell::after,
.arena-cta__frame::before,
.arena-cta__frame::after,
.arena-cta__glass::before,
.arena-cta__glass::after,
.arena-cta__strike::before,
.arena-cta__strike::after,
.arena-cta__circuit::before,
.arena-cta__circuit::after {
  content: "";
  position: absolute;
  pointer-events: none;
}

.is-dock-active .arena-cta {
  --cta-width: min(620px, calc(100vw - 64px));
  --cta-height: 70px;
  --cta-cyan: #52dcff;
  --cta-violet: #be55ff;
  --cta-gold: #ffd27a;
  width: var(--cta-width);
  min-width: 0;
  min-height: var(--cta-height);
  padding: 0 58px;
  border: 0;
  color: var(--cta-gold);
  background: transparent;
  box-shadow: none;
  text-transform: uppercase;
  transform: translateZ(0);
  transition:
    filter 180ms ease,
    transform 180ms ease;
}

.is-dock-active .arena-cta::before {
  inset: 8px 34px;
  z-index: -1;
  border-radius: 999px;
  background:
    radial-gradient(ellipse at 36% 50%, rgba(82, 220, 255, 0.22), transparent 58%),
    radial-gradient(ellipse at 64% 50%, rgba(190, 85, 255, 0.22), transparent 58%),
    radial-gradient(ellipse at 50% 50%, rgba(255, 210, 122, 0.12), transparent 64%);
  filter: blur(18px);
  opacity: 0.42;
  transform: translateY(5px) scaleX(0.92);
  transition:
    opacity 180ms ease,
    transform 180ms ease;
}

.is-dock-active .arena-cta__shell {
  inset: 0;
  z-index: 1;
  clip-path: polygon(5.2% 0, 94.8% 0, 100% 50%, 94.8% 100%, 5.2% 100%, 0 50%);
}

.is-dock-active .arena-cta__shell::before {
  inset: 10px 18px -12px;
  z-index: -1;
  clip-path: inherit;
  background: rgba(0, 0, 0, 0.62);
  filter: blur(10px);
  opacity: 0.7;
  transform: translateY(8px);
}

.is-dock-active .arena-cta__shell::after {
  inset: 1px;
  z-index: 4;
  clip-path: inherit;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.16), transparent 24%, transparent 70%, rgba(0, 0, 0, 0.34)),
    linear-gradient(90deg, rgba(82, 220, 255, 0.18), transparent 24%, transparent 76%, rgba(190, 85, 255, 0.2));
  mix-blend-mode: screen;
  opacity: 0.46;
}

.is-dock-active .arena-cta__frame {
  inset: 0;
  z-index: 1;
  clip-path: inherit;
  background:
    linear-gradient(90deg, var(--cta-cyan), rgba(255, 210, 122, 0.86) 50%, var(--cta-violet)) 0 0 / 100% 2px no-repeat,
    linear-gradient(90deg, rgba(82, 220, 255, 0.66), rgba(255, 210, 122, 0.76) 50%, rgba(190, 85, 255, 0.72)) 0 100% / 100% 2px no-repeat,
    linear-gradient(180deg, rgba(255, 255, 255, 0.14), transparent 20%, rgba(0, 0, 0, 0.34) 78%, rgba(255, 210, 122, 0.08)),
    radial-gradient(ellipse at 18% 0%, rgba(82, 220, 255, 0.28), transparent 42%),
    radial-gradient(ellipse at 82% 100%, rgba(190, 85, 255, 0.26), transparent 44%),
    linear-gradient(90deg, rgba(82, 220, 255, 0.18), transparent 23%, rgba(255, 210, 122, 0.12) 50%, transparent 77%, rgba(190, 85, 255, 0.2)),
    linear-gradient(90deg, rgba(2, 5, 12, 0.42), rgba(2, 5, 12, 0.2) 18%, rgba(2, 5, 12, 0.14) 50%, rgba(2, 5, 12, 0.2) 82%, rgba(2, 5, 12, 0.42));
  box-shadow:
    inset 0 0 0 1px rgba(255, 255, 255, 0.1),
    inset 0 1px 0 rgba(255, 255, 255, 0.2),
    inset 0 -10px 18px rgba(0, 0, 0, 0.54),
    inset 0 0 22px rgba(82, 220, 255, 0.1),
    inset 0 0 24px rgba(190, 85, 255, 0.1),
    0 0 24px rgba(82, 220, 255, 0.26),
    0 0 34px rgba(190, 85, 255, 0.24);
  animation: arenaCtaFrameBreath 2600ms ease-in-out infinite;
}

.is-dock-active .arena-cta__frame::before,
.is-dock-active .arena-cta__frame::after {
  inset: 0;
  z-index: 3;
  clip-path: inherit;
  opacity: 0.86;
  mix-blend-mode: screen;
  animation: arenaCtaEdgeCurrent 2600ms ease-in-out infinite;
}

.is-dock-active .arena-cta__frame::before {
  background:
    linear-gradient(90deg, transparent, var(--cta-cyan), rgba(255, 255, 255, 0.72), transparent) 7% 8px / 34% 2px no-repeat,
    linear-gradient(90deg, transparent, var(--cta-cyan), transparent) 7% calc(100% - 8px) / 30% 2px no-repeat,
    linear-gradient(135deg, transparent 48%, var(--cta-cyan) 49% 52%, transparent 53%) 1% 7px / 14% 28px no-repeat,
    linear-gradient(45deg, transparent 48%, var(--cta-cyan) 49% 52%, transparent 53%) 1% calc(100% - 35px) / 14% 28px no-repeat,
    radial-gradient(circle at 10.5% 50%, var(--cta-cyan) 0 2px, transparent 3px);
  filter:
    drop-shadow(0 0 7px rgba(82, 220, 255, 0.8))
    drop-shadow(0 0 16px rgba(82, 220, 255, 0.36));
}

.is-dock-active .arena-cta__frame::after {
  background:
    linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.68), var(--cta-violet), transparent) 59% 8px / 34% 2px no-repeat,
    linear-gradient(90deg, transparent, var(--cta-violet), transparent) 63% calc(100% - 8px) / 30% 2px no-repeat,
    linear-gradient(45deg, transparent 48%, var(--cta-violet) 49% 52%, transparent 53%) 85% 7px / 14% 28px no-repeat,
    linear-gradient(135deg, transparent 48%, var(--cta-violet) 49% 52%, transparent 53%) 85% calc(100% - 35px) / 14% 28px no-repeat,
    radial-gradient(circle at 89.5% 50%, var(--cta-violet) 0 2px, transparent 3px);
  filter:
    drop-shadow(0 0 7px rgba(190, 85, 255, 0.82))
    drop-shadow(0 0 16px rgba(190, 85, 255, 0.36));
  animation-delay: 240ms;
}

.is-dock-active .arena-cta__glass {
  inset: 10px 24px;
  z-index: 2;
  overflow: hidden;
  clip-path: polygon(4.5% 0, 95.5% 0, 100% 50%, 95.5% 100%, 4.5% 100%, 0 50%);
  border: 1px solid rgba(255, 210, 122, 0.22);
  background:
    radial-gradient(ellipse at 22% 0%, rgba(82, 220, 255, 0.18), transparent 38%),
    radial-gradient(ellipse at 78% 100%, rgba(190, 85, 255, 0.18), transparent 42%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.08), transparent 24%, rgba(0, 0, 0, 0.38) 80%, rgba(255, 210, 122, 0.06)),
    linear-gradient(90deg, rgba(2, 5, 12, 0.98), rgba(8, 11, 20, 0.9) 48%, rgba(2, 5, 12, 0.98)),
    repeating-linear-gradient(90deg, transparent 0 24px, rgba(82, 220, 255, 0.06) 24px 25px, transparent 25px 48px);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.14),
    inset 0 -1px 0 rgba(0, 0, 0, 0.78),
    inset 0 -12px 20px rgba(0, 0, 0, 0.68),
    inset 0 0 30px rgba(0, 0, 0, 0.72),
    inset 0 0 16px rgba(255, 210, 122, 0.08);
}

.is-dock-active .arena-cta__glass::before {
  top: 4px;
  left: 12%;
  right: 12%;
  height: 30%;
  z-index: 1;
  clip-path: polygon(3% 0, 97% 0, 100% 28%, 96% 100%, 4% 100%, 0 28%);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0.026) 54%, transparent);
  mix-blend-mode: screen;
  opacity: 0.36;
}

.is-dock-active .arena-cta__glass::after {
  inset: 0;
  z-index: 2;
  background:
    linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.06), transparent) -56% 0 / 34% 100% no-repeat,
    repeating-linear-gradient(0deg, transparent 0 7px, rgba(255, 255, 255, 0.028) 7px 8px, transparent 8px 15px);
  mix-blend-mode: screen;
  opacity: 0.34;
  animation: arenaCtaGlassGlint 3400ms ease-in-out infinite;
}

.is-dock-active .arena-cta__energy {
  --energy-flip: 1;
  left: 50%;
  z-index: 5;
  width: min(260px, 48%);
  height: 22px;
  background:
    radial-gradient(circle at 50% 50%, #fff8c9 0 2px, transparent 3px),
    linear-gradient(90deg, transparent, rgba(255, 210, 122, 0.78), #fff8c9 50%, rgba(255, 210, 122, 0.78), transparent);
  clip-path: polygon(0 47%, 22% 47%, 28% 31%, 34% 47%, 43% 47%, 48% 7%, 53% 47%, 62% 47%, 68% 28%, 75% 47%, 100% 47%, 100% 60%, 76% 60%, 68% 88%, 63% 60%, 53% 60%, 48% 22%, 44% 60%, 35% 60%, 29% 44%, 23% 60%, 0 60%);
  filter:
    drop-shadow(0 0 5px rgba(255, 246, 196, 0.95))
    drop-shadow(0 0 16px rgba(255, 210, 122, 0.74))
    drop-shadow(0 0 28px rgba(255, 210, 122, 0.34));
  opacity: 0.7;
  transform: translateX(-50%) scaleY(var(--energy-flip));
  animation: arenaCtaEnergyArc 2300ms steps(1, end) infinite;
}

.is-dock-active .arena-cta__energy--top {
  top: -1px;
}

.is-dock-active .arena-cta__energy--bottom {
  --energy-flip: -1;
  bottom: -1px;
  animation-delay: 560ms;
}

.is-dock-active .arena-cta__strike {
  left: 50%;
  top: 50%;
  z-index: 4;
  width: min(250px, 44%);
  height: 34px;
  clip-path: polygon(0 46%, 28% 46%, 34% 22%, 42% 46%, 52% 46%, 57% 0, 64% 46%, 100% 46%, 100% 60%, 65% 60%, 57% 100%, 52% 60%, 43% 60%, 34% 34%, 29% 60%, 0 60%);
  background: linear-gradient(90deg, transparent, rgba(255, 210, 122, 0.72), #fff8c9 52%, rgba(255, 210, 122, 0.72), transparent);
  filter:
    drop-shadow(0 0 5px rgba(255, 248, 201, 0.82))
    drop-shadow(0 0 18px rgba(255, 210, 122, 0.46));
  opacity: 0.72;
  transform: translate(-50%, -50%);
  animation: arenaCtaCoreFlicker 1800ms steps(1, end) infinite;
}

.is-dock-active .arena-cta__strike::before {
  left: 50%;
  top: 50%;
  width: 62%;
  height: 100%;
  border-radius: 999px;
  background: radial-gradient(ellipse at 50% 50%, rgba(255, 210, 122, 0.28), transparent 68%);
  filter: blur(10px);
  opacity: 0.76;
  transform: translate(-50%, -50%);
}

.is-dock-active .arena-cta__strike::after {
  left: 50%;
  top: 50%;
  width: 24px;
  height: 18px;
  clip-path: polygon(45% 0, 70% 0, 57% 42%, 76% 42%, 32% 100%, 44% 58%, 26% 58%);
  background: linear-gradient(180deg, #fff8c9, var(--cta-gold));
  filter: drop-shadow(0 0 10px rgba(255, 210, 122, 0.7));
  opacity: 0.86;
  transform: translate(-50%, -50%);
}

.is-dock-active .arena-cta__circuit {
  top: 50%;
  z-index: 0;
  width: clamp(120px, 18vw, 320px);
  height: 54px;
  transform: translateY(-50%);
}

.is-dock-active .arena-cta__circuit::before {
  left: 0;
  right: 0;
  top: 50%;
  height: 2px;
  background: linear-gradient(90deg, transparent, currentColor, rgba(255, 210, 122, 0.58), transparent);
  box-shadow: 0 0 14px currentColor;
  opacity: 0.72;
  transform: translateY(-50%);
  animation: arenaCtaWirePulse 2100ms ease-in-out infinite;
}

.is-dock-active .arena-cta__circuit::after {
  top: 50%;
  width: 42%;
  height: 34px;
  border-top: 1px solid currentColor;
  border-bottom: 1px solid currentColor;
  opacity: 0.48;
  filter: drop-shadow(0 0 8px currentColor);
  transform: translateY(-50%);
}

.is-dock-active .arena-cta__circuit--left {
  right: calc(100% - 28px);
  color: var(--cta-cyan);
}

.is-dock-active .arena-cta__circuit--left::after {
  right: 0;
  clip-path: polygon(0 48%, 72% 48%, 100% 0, 100% 100%, 72% 52%, 0 52%);
}

.is-dock-active .arena-cta__circuit--right {
  left: calc(100% - 28px);
  color: var(--cta-violet);
}

.is-dock-active .arena-cta__circuit--right::after {
  left: 0;
  clip-path: polygon(0 0, 28% 48%, 100% 48%, 100% 52%, 28% 52%, 0 100%);
}

.is-dock-active .arena-cta__wire {
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, currentColor 38%, rgba(255, 210, 122, 0.62) 72%, transparent);
  box-shadow: 0 0 14px currentColor;
  opacity: 0.72;
  animation: arenaCtaWirePulse 1900ms ease-in-out infinite;
}

.is-dock-active .arena-cta__wire:nth-child(1) {
  top: 18px;
}

.is-dock-active .arena-cta__wire:nth-child(2) {
  bottom: 18px;
  animation-delay: 360ms;
}

.is-dock-active .arena-cta__node {
  top: 50%;
  width: 7px;
  height: 7px;
  border-radius: 999px;
  background: currentColor;
  box-shadow:
    0 0 8px currentColor,
    0 0 18px currentColor;
  transform: translateY(-50%);
  animation: arenaCtaNodePing 2100ms ease-in-out infinite;
}

.is-dock-active .arena-cta__circuit--left .arena-cta__node {
  right: 30%;
}

.is-dock-active .arena-cta__circuit--right .arena-cta__node {
  left: 30%;
}

.is-dock-active .arena-cta__copy {
  position: relative;
  z-index: 6;
  display: grid;
  min-width: 0;
  gap: 8px;
  justify-items: center;
  line-height: 1;
  text-align: center;
}

.is-dock-active .arena-cta__title {
  display: block;
  max-width: 100%;
  overflow: hidden;
  color: #ffe8aa;
  font-size: clamp(1rem, 1.72vw, 1.28rem);
  font-weight: 950;
  letter-spacing: 0.1em;
  text-overflow: ellipsis;
  text-shadow:
    0 0 10px rgba(255, 210, 122, 0.82),
    0 0 22px rgba(255, 210, 122, 0.26);
  white-space: nowrap;
}

.is-dock-active .arena-cta__subtitle {
  display: block;
  max-width: 100%;
  overflow: hidden;
  background: linear-gradient(90deg, var(--cta-cyan), #f4f8ff 50%, var(--cta-violet));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  font-size: clamp(0.52rem, 0.8vw, 0.66rem);
  font-weight: 900;
  letter-spacing: 0.22em;
  text-overflow: ellipsis;
  text-shadow: none;
  white-space: nowrap;
}

.is-dock-active .arena-cta:hover,
.is-dock-active .arena-cta:focus-visible {
  transform: translateY(-1px);
}

.is-dock-active .arena-cta:hover::before,
.is-dock-active .arena-cta:focus-visible::before {
  opacity: 0.78;
  transform: translateY(6px) scaleX(1.02);
}

.is-dock-active .arena-cta:hover .arena-cta__frame,
.is-dock-active .arena-cta:focus-visible .arena-cta__frame {
  animation-duration: 1200ms;
  filter: brightness(1.16) saturate(1.15);
}

.is-dock-active .arena-cta:hover .arena-cta__frame::before,
.is-dock-active .arena-cta:hover .arena-cta__frame::after,
.is-dock-active .arena-cta:focus-visible .arena-cta__frame::before,
.is-dock-active .arena-cta:focus-visible .arena-cta__frame::after {
  animation-duration: 900ms;
  opacity: 1;
}

.is-dock-active .arena-cta:hover .arena-cta__energy,
.is-dock-active .arena-cta:focus-visible .arena-cta__energy {
  animation-duration: 960ms;
  opacity: 1;
}

.is-dock-active .arena-cta:hover .arena-cta__strike,
.is-dock-active .arena-cta:focus-visible .arena-cta__strike {
  animation-duration: 720ms;
  opacity: 0.78;
}

.is-dock-active .arena-cta:hover .arena-cta__wire,
.is-dock-active .arena-cta:hover .arena-cta__circuit::before,
.is-dock-active .arena-cta:focus-visible .arena-cta__wire,
.is-dock-active .arena-cta:focus-visible .arena-cta__circuit::before {
  animation-duration: 820ms;
}

.is-dock-active .arena-cta:hover .arena-cta__title,
.is-dock-active .arena-cta:focus-visible .arena-cta__title {
  text-shadow:
    0 0 9px rgba(255, 248, 201, 0.96),
    0 0 24px rgba(255, 210, 122, 0.44);
}

.is-dock-active .arena-cta:active {
  filter: brightness(1.18) saturate(1.14);
  transform: translateY(0) scale(0.992);
}

.is-dock-active .arena-cta:focus-visible {
  outline: 2px solid rgba(255, 210, 122, 0.74);
  outline-offset: 8px;
}

.is-dock-active .arena-cta.is-accepted .arena-cta__energy,
.is-dock-active .arena-cta.is-accepted .arena-cta__strike {
  animation: arenaCtaAccepted 520ms ease-out both;
}

.is-dock-active .arena-cta.is-accepted .arena-cta__shell {
  animation: arenaCtaAcceptedShell 520ms ease-out both;
}

.is-dock-active .arena-cta.is-accepted .arena-cta__frame,
.is-dock-active .arena-cta.is-accepted .arena-cta__frame::before,
.is-dock-active .arena-cta.is-accepted .arena-cta__frame::after,
.is-dock-active .arena-cta.is-accepted .arena-cta__circuit,
.is-dock-active .arena-cta.is-accepted .arena-cta__wire,
.is-dock-active .arena-cta.is-accepted .arena-cta__circuit::before {
  animation-duration: 520ms;
}

.is-dock-active .arena-cta.is-accepted .arena-cta__copy {
  animation: arenaCtaAcceptedCopy 520ms ease-out both;
}

.is-dock-active .arena-cta.is-accepted:disabled {
  color: var(--cta-gold);
  cursor: wait;
}

@keyframes arenaCtaFrameBreath {
  0%,
  100% {
    opacity: 0.84;
    filter: brightness(0.94);
  }

  50% {
    opacity: 1;
    filter: brightness(1.12);
  }
}

@keyframes arenaCtaGlassGlint {
  0%,
  36% {
    background-position: -58% 0, 0 0;
    opacity: 0.28;
  }

  52% {
    background-position: 148% 0, 0 0;
    opacity: 0.58;
  }

  100% {
    background-position: 148% 0, 0 0;
    opacity: 0.34;
  }
}

@keyframes arenaCtaEdgeCurrent {
  0%,
  100% {
    opacity: 0.62;
    filter: brightness(0.92) saturate(1);
  }

  44% {
    opacity: 1;
    filter: brightness(1.22) saturate(1.18);
  }

  58% {
    opacity: 0.72;
    filter: brightness(1) saturate(1.08);
  }
}

@keyframes arenaCtaWirePulse {
  0%,
  100% {
    opacity: 0.52;
  }

  50% {
    opacity: 1;
  }
}

@keyframes arenaCtaNodePing {
  0%,
  100% {
    opacity: 0.62;
    transform: translateY(-50%) scale(0.82);
  }

  50% {
    opacity: 1;
    transform: translateY(-50%) scale(1.12);
  }
}

@keyframes arenaCtaEnergyArc {
  0%,
  28%,
  35%,
  100% {
    opacity: 0.42;
    transform: translateX(-50%) scaleX(0.82) scaleY(var(--energy-flip));
  }

  29%,
  32% {
    opacity: 1;
    transform: translateX(-50%) scaleX(1.04) scaleY(var(--energy-flip));
  }

  34% {
    opacity: 0.68;
    transform: translateX(-50%) scaleX(0.92) scaleY(var(--energy-flip));
  }
}

@keyframes arenaCtaCoreFlicker {
  0%,
  100% {
    opacity: 0.52;
    filter:
      drop-shadow(0 0 4px rgba(255, 248, 201, 0.62))
      drop-shadow(0 0 14px rgba(255, 210, 122, 0.3));
  }

  18% {
    opacity: 0.8;
    filter:
      drop-shadow(0 0 6px rgba(255, 248, 201, 0.88))
      drop-shadow(0 0 20px rgba(255, 210, 122, 0.5));
  }

  20% {
    opacity: 0.58;
  }

  42%,
  46% {
    opacity: 0.92;
    filter:
      drop-shadow(0 0 8px rgba(255, 248, 201, 0.92))
      drop-shadow(0 0 26px rgba(255, 210, 122, 0.62));
  }

  48% {
    opacity: 0.64;
  }
}

@keyframes arenaCtaAccepted {
  0% {
    opacity: 0.44;
    filter: brightness(1) saturate(1);
  }

  42% {
    opacity: 1;
    filter: brightness(1.62) saturate(1.22);
  }

  100% {
    opacity: 0.42;
    filter: brightness(1) saturate(1);
  }
}

@keyframes arenaCtaAcceptedShell {
  0% {
    filter: brightness(1) saturate(1);
    transform: scaleX(1);
  }

  42% {
    filter: brightness(1.42) saturate(1.28);
    transform: scaleX(1.012);
  }

  100% {
    filter: brightness(1) saturate(1);
    transform: scaleX(1);
  }
}

@keyframes arenaCtaAcceptedCopy {
  0% {
    opacity: 1;
    transform: translateY(0);
  }

  42% {
    opacity: 1;
    transform: translateY(-1px);
  }

  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

@media (max-width: 980px) {
  .is-dock-active .arena-cta {
    --cta-width: min(540px, calc(100vw - 54px));
    padding: 0 48px;
  }

  .is-dock-active .arena-cta__circuit {
    width: clamp(72px, 14vw, 170px);
  }
}

@media (max-width: 640px) {
  .is-dock-active .arena-cta {
    --cta-width: min(344px, 100%);
    --cta-height: 58px;
    padding: 0 28px;
  }

  .is-dock-active .arena-cta__glass {
    inset: 8px 16px;
  }

  .is-dock-active .arena-cta__glass::before {
    left: 14%;
    right: 14%;
    opacity: 0.3;
  }

  .is-dock-active .arena-cta__title {
    font-size: 0.82rem;
    letter-spacing: 0.06em;
  }

  .is-dock-active .arena-cta__subtitle {
    font-size: 0.44rem;
    letter-spacing: 0.14em;
  }

  .is-dock-active .arena-cta__circuit {
    width: clamp(28px, 9vw, 42px);
    height: 42px;
  }

  .is-dock-active .arena-cta__circuit--left {
    right: calc(100% - 22px);
  }

  .is-dock-active .arena-cta__circuit--right {
    left: calc(100% - 22px);
  }

  .is-dock-active .arena-cta__circuit::after {
    width: 54%;
    height: 26px;
    opacity: 0.34;
  }

  .is-dock-active .arena-cta__energy {
    width: 150px;
    height: 15px;
  }

  .is-dock-active .arena-cta__strike {
    width: 148px;
    height: 24px;
    opacity: 0.66;
  }

  .is-dock-active .arena-cta__strike::after {
    width: 18px;
    height: 14px;
  }
}

/* Hybrid SVG HUD layer for the premium arena CTA. */
.arena-cta__art {
  position: absolute;
  pointer-events: none;
}

.arena-cta__svg {
  display: block;
  width: 100%;
  height: 100%;
  overflow: visible;
}

.cta-svg__body,
.cta-svg__glass,
.cta-svg__left-edge,
.cta-svg__right-edge,
.cta-svg__left-circuit,
.cta-svg__right-circuit,
.cta-svg__energy {
  vector-effect: non-scaling-stroke;
}

.is-dock-active .arena-cta__art {
  inset: -20px -132px;
  z-index: 2;
}

.is-dock-active .cta-svg__shadow {
  fill: rgba(0, 0, 0, 0.58);
  filter: blur(8px);
  opacity: 0.72;
  transform: translateY(7px);
}

.is-dock-active .cta-svg__body {
  fill: rgba(2, 5, 12, 0.7);
  stroke: url(#arena-cta-stroke);
  stroke-width: 2.2;
  filter:
    drop-shadow(0 0 7px rgba(82, 220, 255, 0.28))
    drop-shadow(0 0 10px rgba(190, 85, 255, 0.24));
}

.is-dock-active .cta-svg__glass {
  fill: url(#arena-cta-glass);
  stroke: rgba(255, 210, 122, 0.28);
  stroke-width: 1.1;
}

.is-dock-active .cta-svg__left-edge,
.is-dock-active .cta-svg__left-circuit {
  fill: none;
  stroke: var(--cta-cyan);
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 2;
  filter: url(#arena-cta-cyan-glow);
  opacity: 0.9;
  animation: arenaCtaSvgSignal 2200ms ease-in-out infinite;
}

.is-dock-active .cta-svg__right-edge,
.is-dock-active .cta-svg__right-circuit {
  fill: none;
  stroke: var(--cta-violet);
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 2;
  filter: url(#arena-cta-violet-glow);
  opacity: 0.86;
  animation: arenaCtaSvgSignal 2200ms ease-in-out infinite;
  animation-delay: 220ms;
}

.is-dock-active .cta-svg__left-circuit,
.is-dock-active .cta-svg__right-circuit {
  stroke-width: 1.6;
  opacity: 0.72;
}

.is-dock-active .cta-svg__left-node {
  fill: var(--cta-cyan);
  filter: url(#arena-cta-cyan-glow);
  animation: arenaCtaSvgNode 1900ms ease-in-out infinite;
}

.is-dock-active .cta-svg__right-node {
  fill: var(--cta-violet);
  filter: url(#arena-cta-violet-glow);
  animation: arenaCtaSvgNode 1900ms ease-in-out infinite;
  animation-delay: 220ms;
}

.is-dock-active .cta-svg__energy {
  fill: none;
  stroke: var(--cta-gold);
  stroke-linecap: round;
  stroke-linejoin: round;
  filter: url(#arena-cta-gold-glow);
}

.is-dock-active .cta-svg__energy--top,
.is-dock-active .cta-svg__energy--bottom {
  stroke-width: 2;
  opacity: 0.72;
  animation: arenaCtaSvgEnergyArc 2100ms steps(1, end) infinite;
}

.is-dock-active .cta-svg__energy--bottom {
  animation-delay: 520ms;
}

.is-dock-active .arena-cta:hover .cta-svg__left-edge,
.is-dock-active .arena-cta:hover .cta-svg__right-edge,
.is-dock-active .arena-cta:focus-visible .cta-svg__left-edge,
.is-dock-active .arena-cta:focus-visible .cta-svg__right-edge {
  opacity: 1;
  stroke-width: 2.4;
}

.is-dock-active .arena-cta:hover .cta-svg__energy,
.is-dock-active .arena-cta:focus-visible .cta-svg__energy {
  opacity: 1;
  stroke-width: 3;
}

.is-dock-active .arena-cta.is-accepted .cta-svg__energy {
  animation: arenaCtaSvgAccepted 520ms ease-out both;
}

@keyframes arenaCtaSvgSignal {
  0%,
  100% {
    opacity: 0.62;
  }

  48% {
    opacity: 1;
  }
}

@keyframes arenaCtaSvgNode {
  0%,
  100% {
    opacity: 0.62;
    transform: scale(0.86);
    transform-box: fill-box;
    transform-origin: center;
  }

  50% {
    opacity: 1;
    transform: scale(1.16);
  }
}

@keyframes arenaCtaSvgEnergyArc {
  0%,
  28%,
  38%,
  100% {
    opacity: 0.42;
  }

  29%,
  35% {
    opacity: 1;
  }
}

@keyframes arenaCtaSvgAccepted {
  0% {
    opacity: 0.56;
    stroke-width: 2.4;
  }

  42% {
    opacity: 1;
    stroke-width: 4.2;
  }

  100% {
    opacity: 0.66;
    stroke-width: 2.8;
  }
}

@media (max-width: 980px) {
  .is-dock-active .arena-cta__art {
    inset: -18px -96px;
  }
}

@media (max-width: 640px) {
  .is-dock-active .arena-cta__art {
    inset: -17px -54px;
  }

  .is-dock-active .cta-svg__left-circuit,
  .is-dock-active .cta-svg__right-circuit {
    opacity: 0.52;
  }

  .is-dock-active .cta-svg__energy--top,
  .is-dock-active .cta-svg__energy--bottom {
    opacity: 0.58;
  }
}

/* Access panel HUD polish: match the SVG quality of the arena CTA. */
.access-panel__art {
  position: absolute;
  pointer-events: none;
}

.access-panel__svg {
  display: block;
  width: 100%;
  height: 100%;
  overflow: visible;
}

.access-svg__body,
.access-svg__glass,
.access-svg__cyan-edge,
.access-svg__violet-edge,
.access-svg__gold-edge {
  vector-effect: non-scaling-stroke;
}

.waitlist-panel.access-panel {
  top: 65%;
  left: 50%;
  width: min(380px, calc(100vw - 34px));
  padding: 36px 30px 40px;
  border: 0;
  border-radius: 0;
  background: transparent;
  backdrop-filter: none;
  box-shadow: none;
  transform-origin: center center;
}

.waitlist-panel.access-panel::before {
  content: "";
  position: absolute;
  inset: 16px 18px -10px;
  z-index: -1;
  border-radius: 28px;
  background:
    radial-gradient(ellipse at 20% 0%, rgba(82, 220, 255, 0.26), transparent 52%),
    radial-gradient(ellipse at 80% 100%, rgba(190, 85, 255, 0.26), transparent 54%),
    rgba(0, 0, 0, 0.68);
  filter: blur(18px);
  opacity: 0.78;
}

.waitlist-panel.access-panel::after {
  content: "";
  position: absolute;
  inset: 28px 30px;
  z-index: 1;
  pointer-events: none;
  background:
    linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.06), transparent) -62% 0 / 42% 100% no-repeat,
    repeating-linear-gradient(0deg, transparent 0 8px, rgba(255, 255, 255, 0.024) 8px 9px, transparent 9px 18px);
  mix-blend-mode: screen;
  opacity: 0.42;
  animation: accessPanelGlint 4200ms ease-in-out infinite;
}

.waitlist-panel.access-panel .access-panel__art {
  inset: -30px -28px;
  z-index: 0;
}

.waitlist-panel.access-panel .access-view {
  z-index: 2;
  padding-top: 8px;
}

.waitlist-panel.access-panel .access-svg__shadow {
  fill: rgba(0, 0, 0, 0.6);
  filter: blur(9px);
  opacity: 0.76;
  transform: translateY(8px);
}

.waitlist-panel.access-panel .access-svg__body {
  fill: rgba(3, 6, 14, 0.72);
  stroke: url(#access-panel-stroke);
  stroke-width: 1.8;
  filter:
    drop-shadow(0 0 8px rgba(82, 220, 255, 0.2))
    drop-shadow(0 0 10px rgba(190, 85, 255, 0.18));
}

.waitlist-panel.access-panel .access-svg__glass {
  fill: url(#access-panel-glass);
  stroke: rgba(255, 210, 122, 0.22);
  stroke-width: 1;
}

.waitlist-panel.access-panel .access-svg__cyan-edge {
  fill: none;
  stroke: var(--cyan);
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
  filter: url(#access-cyan-glow);
  opacity: 0.82;
  animation: accessPanelSignal 2600ms ease-in-out infinite;
}

.waitlist-panel.access-panel .access-svg__violet-edge {
  fill: none;
  stroke: var(--violet);
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
  filter: url(#access-violet-glow);
  opacity: 0.78;
  animation: accessPanelSignal 2600ms ease-in-out infinite;
  animation-delay: 260ms;
}

.waitlist-panel.access-panel .access-svg__gold-edge {
  fill: none;
  stroke: var(--gold);
  stroke-width: 1.35;
  stroke-linecap: round;
  stroke-linejoin: round;
  filter: url(#access-gold-glow);
  opacity: 0.72;
  animation: accessPanelGoldPulse 3200ms ease-in-out infinite;
}

.waitlist-panel.access-panel .access-svg__node {
  filter: url(#access-gold-glow);
  animation: accessPanelNodePulse 2100ms ease-in-out infinite;
}

.waitlist-panel.access-panel .access-svg__node--left {
  fill: var(--cyan);
}

.waitlist-panel.access-panel .access-svg__node--right {
  fill: var(--violet);
  animation-delay: 240ms;
}

.waitlist-panel.access-panel .access-svg__node--top,
.waitlist-panel.access-panel .access-svg__node--bottom {
  fill: var(--gold);
  animation-delay: 420ms;
}

.waitlist-panel.access-panel .access-svg__node--bottom {
  animation-delay: 720ms;
}

.waitlist-panel.access-panel .panel-kicker {
  margin-bottom: 16px;
  color: var(--gold);
  font-size: 0.66rem;
  font-weight: 950;
  letter-spacing: 0.08em;
  text-shadow:
    0 0 8px rgba(255, 210, 122, 0.72),
    0 0 18px rgba(255, 210, 122, 0.24);
}

.waitlist-panel.access-panel h2 {
  max-width: 12ch;
  margin-bottom: 12px;
  color: #f7fbff;
  font-size: clamp(1.58rem, 3.4vw, 1.92rem);
  line-height: 0.98;
  text-shadow:
    0 0 14px rgba(82, 220, 255, 0.18),
    0 0 22px rgba(190, 85, 255, 0.14);
}

.waitlist-panel.access-panel .panel-copy {
  max-width: 28ch;
  color: rgba(226, 236, 255, 0.78);
}

.waitlist-panel.access-panel .waitlist-form {
  gap: 12px;
  margin-top: 20px;
}

.waitlist-panel.access-panel .waitlist-form input,
.waitlist-panel.access-panel .waitlist-form button {
  min-height: 50px;
  border-radius: 0;
  clip-path: polygon(4% 0, 96% 0, 100% 22%, 100% 78%, 96% 100%, 4% 100%, 0 78%, 0 22%);
}

.waitlist-panel.access-panel .waitlist-form input {
  border: 1px solid rgba(82, 220, 255, 0.24);
  padding: 0 16px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.045), transparent 32%, rgba(0, 0, 0, 0.34)),
    radial-gradient(ellipse at 20% 0%, rgba(82, 220, 255, 0.1), transparent 48%),
    rgba(2, 5, 12, 0.72);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.08),
    inset 0 -10px 16px rgba(0, 0, 0, 0.44),
    0 0 18px rgba(82, 220, 255, 0.06);
}

.waitlist-panel.access-panel .waitlist-form input:focus {
  border-color: rgba(82, 220, 255, 0.84);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.1),
    inset 0 -10px 16px rgba(0, 0, 0, 0.42),
    0 0 0 2px rgba(82, 220, 255, 0.16),
    0 0 24px rgba(82, 220, 255, 0.22);
}

.waitlist-panel.access-panel .waitlist-form button {
  position: relative;
  border: 1px solid rgba(255, 210, 122, 0.88);
  color: #130d02;
  background:
    linear-gradient(90deg, rgba(255, 210, 122, 0.72), #fff0b8 48%, rgba(255, 210, 122, 0.78)),
    var(--gold);
  font-weight: 950;
  letter-spacing: 0.02em;
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.5),
    inset 0 -10px 18px rgba(146, 83, 6, 0.18),
    0 0 26px rgba(255, 210, 122, 0.22);
}

.waitlist-panel.access-panel .waitlist-form button:hover,
.waitlist-panel.access-panel .waitlist-form button:focus-visible {
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.58),
    inset 0 -10px 18px rgba(146, 83, 6, 0.18),
    0 0 34px rgba(255, 210, 122, 0.42);
  filter: brightness(1.06);
}

.waitlist-panel.access-panel .consent-note {
  margin-top: 12px;
  color: rgba(226, 236, 255, 0.58);
  font-size: 0.72rem;
  line-height: 1.44;
}

.waitlist-panel.access-panel .form-status.is-error {
  position: relative;
  top: -5px;
}

@keyframes accessPanelGlint {
  0%,
  44% {
    background-position: -62% 0, 0 0;
    opacity: 0.24;
  }

  58% {
    background-position: 150% 0, 0 0;
    opacity: 0.48;
  }

  100% {
    background-position: 150% 0, 0 0;
    opacity: 0.3;
  }
}

@keyframes accessPanelSignal {
  0%,
  100% {
    opacity: 0.62;
  }

  50% {
    opacity: 1;
  }
}

@keyframes accessPanelGoldPulse {
  0%,
  100% {
    opacity: 0.48;
  }

  42% {
    opacity: 0.9;
  }
}

@keyframes accessPanelNodePulse {
  0%,
  100% {
    opacity: 0.58;
    transform: scale(0.86);
    transform-box: fill-box;
    transform-origin: center;
  }

  50% {
    opacity: 1;
    transform: scale(1.16);
  }
}

@media (max-width: 640px) {
  .waitlist-panel.access-panel {
    width: min(302px, calc(100vw - 72px));
    padding: 32px 20px 34px;
  }

  .waitlist-panel.access-panel::after {
    inset: 24px 22px;
  }

  .waitlist-panel.access-panel .access-panel__art {
    inset: -22px -8px;
  }

  .waitlist-panel.access-panel h2 {
    max-width: 11ch;
    font-size: 1.46rem;
  }

  .waitlist-panel.access-panel .waitlist-form input,
  .waitlist-panel.access-panel .waitlist-form button {
    min-height: 47px;
  }

  .waitlist-panel.access-panel .consent-note {
    font-size: 0.65rem;
    line-height: 1.42;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.001ms !important;
  }
}
