:root {
  color-scheme: dark;
  --gold: #c5a059;
  --gold-bright: #e6c76d;
  --gold-soft: rgba(197, 160, 89, 0.12);
  --gold-line: rgba(197, 160, 89, 0.2);
  --black: #050505;
  --panel: rgba(18, 18, 18, 0.82);
  --panel-strong: rgba(22, 22, 22, 0.95);
  --ink: #f3f1ea;
  --muted: #9b988e;
  --muted-2: #625f58;
  --danger: #ef6b6b;
  --content-max: 1280px;
  --gutter: clamp(20px, 4vw, 48px);
  --serif: "Fraunces", "Times New Roman", serif;
  --sans: "Inter", ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --mono: "Geist Mono", ui-monospace, SFMono-Regular, Consolas, "Liberation Mono", monospace;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  background: var(--black);
}

body {
  min-width: 320px;
  margin: 0;
  overflow-x: hidden;
  background: transparent;
  color: var(--ink);
  font-family: var(--sans);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

body.nav-open {
  overflow: hidden;
}

a {
  color: inherit;
}

button,
input,
select,
textarea {
  font: inherit;
}

button {
  cursor: pointer;
}

[hidden] {
  display: none !important;
}

.cosmic-background {
  position: fixed;
  inset: 0;
  z-index: -10;
  overflow: hidden;
  pointer-events: none;
}

.cosmic-void,
.cosmic-grid,
.cosmic-canvas,
.cosmic-horizon,
.cosmic-vignette {
  position: absolute;
  inset: 0;
}

.cosmic-void {
  background: radial-gradient(ellipse at 50% 0%, #0c0c0b 0%, #070707 45%, #050505 100%);
}

.cosmic-grid {
  opacity: 0.05;
  background-image:
    linear-gradient(to right, rgba(212, 175, 55, 0.45) 1px, transparent 1px),
    linear-gradient(to bottom, rgba(212, 175, 55, 0.45) 1px, transparent 1px);
  background-size: 120px 120px;
  mask-image: radial-gradient(ellipse at 50% 35%, black 0%, transparent 62%);
  will-change: transform;
}

.cosmic-canvas {
  width: 100%;
  height: 100%;
}

.cosmic-horizon {
  top: auto;
  height: 55vh;
  background: radial-gradient(ellipse at 50% 100%, rgba(212, 175, 55, 0.06) 0%, transparent 65%);
  will-change: transform;
}

.cosmic-vignette {
  background: radial-gradient(ellipse at center, transparent 45%, rgba(0, 0, 0, 0.75) 100%);
  will-change: transform;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 40;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 28px;
  min-height: 64px;
  border-bottom: 1px solid var(--gold-line);
  background: rgba(5, 5, 5, 0.84);
  padding: 0 var(--gutter);
  backdrop-filter: blur(18px);
}

.brand,
.footer-brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
}

.brand-mark {
  width: 28px;
  height: 28px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--gold);
  transform: rotate(45deg);
  flex: 0 0 auto;
}

.brand-mark span {
  display: inline-block;
  color: var(--gold);
  font-family: var(--mono);
  font-size: 9px;
  font-weight: 700;
  transform: rotate(-45deg);
}

.brand-name {
  font-family: var(--serif);
  font-size: 19px;
  font-style: italic;
  letter-spacing: 0;
}

.brand-beta {
  border: 1px solid var(--gold-line);
  color: var(--gold);
  font-family: var(--mono);
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.2em;
  padding: 3px 6px;
  text-transform: uppercase;
}

.desktop-nav {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: clamp(18px, 3vw, 34px);
}

.desktop-nav a,
.header-link {
  color: #aaa69c;
  font-size: 12px;
  font-weight: 600;
  text-decoration: none;
  transition: color 160ms ease;
}

.desktop-nav a:hover,
.header-link:hover,
.footer-links a:hover {
  color: var(--gold);
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 10px;
}

.language-switcher {
  display: inline-flex;
  align-items: center;
  border: 1px solid var(--gold-line);
  background: rgba(255, 255, 255, 0.02);
  padding: 3px;
}

.language-option {
  min-height: 28px;
  border: 0;
  background: transparent;
  color: var(--muted);
  font-family: var(--mono);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.12em;
  padding: 0 9px;
}

.language-option.is-active {
  background: var(--gold);
  color: var(--black);
}

.header-cta,
.mobile-cta,
.primary-link,
.checkout-button,
.mobile-sticky-cta a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 44px;
  border: 1px solid var(--gold);
  background: var(--gold);
  color: #050505;
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.01em;
  padding: 0 18px;
  text-decoration: none;
  transition:
    background-color 160ms ease,
    transform 160ms ease,
    border-color 160ms ease;
}

.header-cta {
  min-height: 38px;
  padding: 0 16px;
  font-size: 12px;
}

.header-cta:hover,
.mobile-cta:hover,
.primary-link:hover,
.checkout-button:hover,
.mobile-sticky-cta a:hover {
  background: var(--gold-bright);
  border-color: var(--gold-bright);
}

.primary-link:hover .arrow,
.checkout-button:hover .arrow,
.bybit-callout a:hover .arrow {
  transform: translate(2px, -2px);
}

.arrow {
  display: inline-block;
  transition: transform 160ms ease;
}

.mobile-nav-toggle {
  width: 42px;
  height: 42px;
  display: none;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--gold-line);
  background: transparent;
  padding: 0;
}

.mobile-nav-toggle span {
  position: absolute;
  width: 18px;
  height: 2px;
  background: var(--gold);
  transition: transform 180ms ease;
}

.mobile-nav-toggle span:first-child {
  transform: translateY(-4px);
}

.mobile-nav-toggle span:last-child {
  transform: translateY(4px);
}

.mobile-nav-toggle.is-open span:first-child {
  transform: rotate(45deg);
}

.mobile-nav-toggle.is-open span:last-child {
  transform: rotate(-45deg);
}

.mobile-nav-panel {
  position: fixed;
  top: 64px;
  left: 0;
  right: 0;
  display: grid;
  gap: 0;
  border-bottom: 1px solid var(--gold-line);
  background: rgba(5, 5, 5, 0.96);
  padding: 16px var(--gutter) 22px;
  backdrop-filter: blur(18px);
}

.mobile-nav-panel a {
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  color: var(--ink);
  font-size: 14px;
  font-weight: 700;
  padding: 15px 0;
  text-decoration: none;
}

.mobile-nav-actions {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 12px;
  align-items: center;
  padding-top: 16px;
}

.hero {
  position: relative;
  overflow: hidden;
}

.hero-glow {
  position: absolute;
  top: -24%;
  left: 50%;
  width: min(900px, 100vw);
  height: min(900px, 100vw);
  border-radius: 50%;
  background: radial-gradient(circle at center, rgba(197, 160, 89, 0.12) 0%, transparent 62%);
  filter: blur(42px);
  pointer-events: none;
  transform: translateX(-50%);
}

.hero::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 36%;
  background: linear-gradient(to bottom, transparent, var(--black));
  pointer-events: none;
}

.hero-inner,
.section,
.site-footer {
  width: min(var(--content-max), 100%);
  margin: 0 auto;
  padding-left: var(--gutter);
  padding-right: var(--gutter);
}

.hero-inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1.7fr) minmax(320px, 0.9fr);
  gap: clamp(44px, 6vw, 72px);
  align-items: start;
  padding-top: clamp(76px, 11vw, 136px);
  padding-bottom: clamp(72px, 11vw, 124px);
}

.kicker,
.section-kicker,
.panel-kicker {
  color: var(--gold);
  font-family: var(--mono);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.24em;
  text-transform: uppercase;
}

.kicker {
  display: flex;
  align-items: center;
  gap: 9px;
  margin-bottom: 28px;
}

.pulse-dot {
  width: 6px;
  height: 6px;
  border-radius: 999px;
  background: var(--gold);
  box-shadow: 0 0 18px rgba(197, 160, 89, 0.85);
  animation: pulse 1.8s ease-in-out infinite;
}

.hero h1,
.final-cta h2 {
  max-width: 880px;
  margin: 0;
  color: #fbfaf6;
  font-family: var(--serif);
  font-size: clamp(54px, 9vw, 128px);
  font-weight: 500;
  letter-spacing: 0;
  line-height: 0.92;
}

.hero h1 span,
.hero h1 em,
.final-cta h2 span,
.final-cta h2 em {
  display: inline-block;
}

.hero h1 em,
.final-cta h2 em,
.section-heading h2 em,
.leaderboard-copy h2 em,
.referral-copy h2 em {
  color: var(--gold);
  font-style: italic;
}

.hero-lead,
.final-cta p {
  max-width: 610px;
  margin: 30px 0 0;
  color: #aaa69c;
  font-size: clamp(17px, 2vw, 20px);
  line-height: 1.75;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 38px;
}

.secondary-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 54px;
  border: 1px solid var(--gold-line);
  color: var(--ink);
  font-size: 14px;
  font-weight: 800;
  padding: 0 26px;
  text-decoration: none;
  transition:
    border-color 160ms ease,
    color 160ms ease,
    background-color 160ms ease;
}

.secondary-link:hover {
  border-color: var(--gold);
  background: rgba(197, 160, 89, 0.06);
  color: var(--gold);
}

.hero-visual {
  display: grid;
  gap: 34px;
}

.galaxy-wrap {
  position: relative;
  aspect-ratio: 1;
  width: min(460px, 100%);
  justify-self: center;
  pointer-events: none;
  transform: scale(1.32);
}

.galaxy-canvas {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  mix-blend-mode: screen;
}

.stat-rail {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 26px 22px;
  border-top: 1px solid var(--gold-line);
  padding-top: 24px;
}

.stat-rail span,
.checkout-strip span,
.checkout-strip small {
  display: block;
  color: var(--muted-2);
  font-family: var(--mono);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.18em;
  margin-bottom: 8px;
  text-transform: uppercase;
}

.stat-rail strong {
  color: var(--ink);
  font-family: var(--mono);
  font-size: 16px;
  font-weight: 600;
}

.ticker {
  position: relative;
  z-index: 2;
  overflow: hidden;
  border-top: 1px solid var(--gold-line);
  border-bottom: 1px solid var(--gold-line);
  background: rgba(18, 18, 18, 0.5);
}

.ticker-track {
  display: flex;
  width: max-content;
  align-items: center;
  gap: 0;
  padding: 15px 0;
  white-space: nowrap;
  animation: ticker 58s linear infinite;
}

.ticker-item {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 0 28px;
}

.ticker-track span,
.ticker-track strong,
.ticker-item {
  font-family: var(--mono);
  font-size: 12px;
}

.ticker-symbol {
  color: var(--muted-2);
}

.ticker-price {
  color: var(--ink);
  font-weight: 600;
}

.ticker-change {
  color: var(--gold);
  font-weight: 600;
}

.ticker-change.is-down {
  color: #ff8f8f;
}

.ticker-change.is-flat,
.ticker-item.is-loading .ticker-change,
.ticker-item.is-error .ticker-change {
  color: var(--muted-2);
}

.ticker-item.is-error .ticker-price {
  color: var(--muted);
}

.section {
  padding-top: clamp(76px, 10vw, 128px);
  padding-bottom: clamp(76px, 10vw, 128px);
  border-bottom: 1px solid var(--gold-line);
}

.section-heading {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 36px;
  margin-bottom: 46px;
}

.section-heading.compact {
  margin-bottom: 54px;
}

.section-heading h2,
.leaderboard-copy h2,
.referral-copy h2 {
  margin: 12px 0 0;
  color: #fbfaf6;
  font-family: var(--serif);
  font-size: clamp(40px, 5vw, 68px);
  font-weight: 500;
  letter-spacing: 0;
  line-height: 1.03;
}

.section-heading p:last-child,
.leaderboard-copy p:last-child,
.referral-copy p:not(.section-kicker),
.rewards-panel p:not(.section-kicker) {
  max-width: 620px;
  margin: 0;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.75;
}

.challenge-tabs {
  display: inline-flex;
  border: 1px solid var(--gold-line);
  background: var(--panel);
  padding: 4px;
}

.challenge-tab,
.challenge-size,
.leaderboard-toolbar button {
  min-height: 42px;
  border: 0;
  background: transparent;
  color: var(--muted-2);
  font-family: var(--mono);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.18em;
  padding: 0 22px;
  text-transform: uppercase;
  transition:
    background-color 160ms ease,
    color 160ms ease,
    border-color 160ms ease;
}

.challenge-tab:hover:not(:disabled),
.challenge-size:hover:not(:disabled) {
  color: var(--ink);
}

.challenge-tab.is-active {
  background: var(--gold);
  color: var(--black);
}

.challenge-tab.is-locked,
.challenge-size.is-locked {
  cursor: not-allowed;
  opacity: 0.45;
}

.challenge-size-row {
  display: flex;
  gap: 10px;
  margin: 28px 0 18px;
  overflow-x: auto;
  padding: 8px 0 6px;
  scrollbar-width: none;
}

.challenge-size-row::-webkit-scrollbar {
  display: none;
}

.challenge-size {
  position: relative;
  flex: 0 0 auto;
  min-height: 50px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  padding: 0 24px;
}

.challenge-size.is-active {
  border-color: var(--gold);
  background: rgba(197, 160, 89, 0.07);
  color: var(--gold);
}

.challenge-size.is-active::after {
  content: "Beta";
  position: absolute;
  top: -9px;
  right: -7px;
  background: var(--gold);
  color: var(--black);
  font-family: var(--mono);
  font-size: 8px;
  font-weight: 800;
  letter-spacing: 0.12em;
  padding: 2px 6px;
  text-transform: uppercase;
}

.model-note {
  max-width: 760px;
  margin: 0 0 26px;
  color: var(--muted-2);
  font-size: 13px;
  line-height: 1.7;
}

.rules-grid,
.referral-grid,
.steps {
  display: grid;
  gap: 1px;
  border: 1px solid var(--gold-line);
  background: var(--gold-line);
}

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

.rules-panel,
.level-panel,
.steps li,
.referral-grid article {
  background: rgba(5, 5, 5, 0.92);
}

.rules-panel,
.level-panel {
  padding: clamp(28px, 4vw, 42px);
}

.rules-panel h3,
.level-panel h3,
.rewards-panel h3 {
  margin: 10px 0 30px;
  color: #fbfaf6;
  font-family: var(--serif);
  font-size: clamp(25px, 3vw, 34px);
  font-weight: 500;
  line-height: 1.15;
}

.level-panel p {
  margin: -12px 0 28px;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.75;
}

#challenge-rules,
.stage-rule-list {
  display: grid;
  gap: 0;
  margin: 0;
}

#challenge-rules div,
.stage-rule-list div {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 18px;
  align-items: baseline;
  border-bottom: 1px solid rgba(255, 255, 255, 0.07);
  padding: 14px 0;
}

#challenge-rules dt,
.stage-rule-list dt {
  color: var(--muted-2);
  font-size: 13px;
}

#challenge-rules dd,
.stage-rule-list dd {
  margin: 0;
  color: var(--ink);
  font-family: var(--mono);
  font-size: 14px;
  text-align: right;
}

.rule-with-note span {
  grid-column: 1 / -1;
  color: var(--muted-2);
  font-size: 12px;
  line-height: 1.55;
}

.promo-callout {
  display: grid;
  gap: 8px;
  border: 1px solid var(--gold-line);
  background: rgba(197, 160, 89, 0.07);
  margin-top: 28px;
  padding: 16px 18px;
}

.promo-callout span {
  color: var(--gold);
  font-family: var(--mono);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}

.promo-callout strong {
  color: var(--ink);
  font-size: 14px;
  line-height: 1.6;
}

.level-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 13px;
}

.level-table th,
.level-table td {
  border-bottom: 1px solid rgba(255, 255, 255, 0.07);
  padding: 12px 8px;
  text-align: left;
}

.level-table th {
  color: var(--gold);
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.level-table td {
  color: var(--ink);
  font-family: var(--mono);
}

.checkout-strip {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  border: 1px solid var(--gold-line);
  background: var(--gold-line);
  margin-top: 28px;
}

.checkout-strip > div,
.checkout-strip > a {
  background: rgba(5, 5, 5, 0.94);
  padding: 26px;
}

.checkout-strip strong {
  display: block;
  color: var(--ink);
  font-family: var(--serif);
  font-size: clamp(32px, 4vw, 44px);
  font-weight: 500;
  line-height: 1;
}

.checkout-strip div:nth-child(2) strong {
  color: var(--gold);
}

.checkout-strip small {
  margin: 10px 0 0;
  color: var(--muted-2);
  line-height: 1.5;
  text-transform: none;
  letter-spacing: 0;
}

.checkout-button {
  min-height: auto;
  align-self: stretch;
  gap: 10px;
  padding: 22px 26px;
  letter-spacing: 0;
}

.checkout-strip .checkout-button-main {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--ink);
  font-size: 22px;
  font-weight: 800;
  letter-spacing: 0.18em;
  margin-bottom: 0;
  text-transform: uppercase;
}

.checkout-strip .checkout-button-main span {
  color: inherit;
  font-size: inherit;
  letter-spacing: inherit;
  margin: 0;
}

.leaderboard-section {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(340px, 0.85fr);
  gap: clamp(34px, 5vw, 64px);
  align-items: start;
}

.leaderboard-copy {
  grid-column: 1 / 2;
}

.leaderboard-board {
  grid-column: 1 / 2;
  border: 1px solid var(--gold-line);
}

.leaderboard-toolbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  border-bottom: 1px solid var(--gold-line);
  background: var(--panel);
  padding: 14px 18px;
}

.leaderboard-toolbar strong {
  color: var(--ink);
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.leaderboard-toolbar button {
  border: 1px solid var(--gold-line);
  color: var(--gold);
  padding: 0 14px;
}

.leaderboard-toolbar button:disabled {
  cursor: wait;
  opacity: 0.6;
}

.leaderboard-state,
.empty-state {
  min-height: 220px;
}

.leaderboard-state {
  background: rgba(5, 5, 5, 0.86);
}

.empty-state {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 10px;
  padding: 42px;
  text-align: center;
}

.empty-state::before {
  content: "";
  width: 48px;
  height: 48px;
  border: 1px solid var(--gold-line);
  border-radius: 999px;
  background: radial-gradient(circle at center, var(--gold) 0 9%, transparent 12%);
  animation: pulse 1.8s ease-in-out infinite;
}

.empty-state strong {
  color: var(--ink);
  font-size: 15px;
}

.empty-state span {
  max-width: 420px;
  color: var(--muted-2);
  font-size: 13px;
  line-height: 1.65;
}

.error-state::before {
  background: radial-gradient(circle at center, var(--danger) 0 9%, transparent 12%);
}

.public-table-wrap {
  overflow-x: auto;
}

.public-table {
  width: 100%;
  min-width: 780px;
  border-collapse: collapse;
}

.public-table th,
.public-table td {
  border-bottom: 1px solid rgba(255, 255, 255, 0.07);
  padding: 14px 16px;
  text-align: left;
}

.public-table th {
  background: rgba(255, 255, 255, 0.025);
  color: var(--muted-2);
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.public-table td {
  color: var(--ink);
  font-size: 13px;
}

.status-pill {
  display: inline-flex;
  border: 1px solid var(--gold-line);
  color: var(--gold);
  font-family: var(--mono);
  font-size: 11px;
  padding: 4px 8px;
}

.rewards-panel {
  grid-column: 2 / 3;
  grid-row: 1 / span 2;
}

.rewards-panel h3 {
  margin-bottom: 16px;
}

.prize-list {
  display: grid;
  gap: 6px;
  margin: 28px 0 0;
  padding: 0;
  list-style: none;
}

.prize-list li {
  display: grid;
  grid-template-columns: 46px minmax(0, 1fr) auto;
  gap: 16px;
  align-items: center;
  border: 1px solid rgba(255, 255, 255, 0.07);
  color: #c9c5ba;
  padding: 13px 18px;
  transition: border-color 160ms ease, background-color 160ms ease;
}

.prize-list li:nth-child(-n + 3) {
  border-color: var(--gold-line);
  background: rgba(197, 160, 89, 0.06);
}

.prize-list li > span:first-child {
  color: var(--muted-2);
  font-family: var(--mono);
  font-size: 13px;
}

.prize-list li:nth-child(-n + 3) > span:first-child {
  color: var(--gold);
}

.prize-list li > span:nth-child(2) {
  color: var(--muted);
  font-size: 14px;
}

.prize-list strong {
  color: var(--ink);
  font-family: var(--mono);
  font-size: 16px;
  font-weight: 600;
}

.prize-list li:nth-child(-n + 3) strong {
  color: var(--gold);
}

.prize-list small {
  color: var(--muted-2);
  font-size: 10px;
}

.reward-callout {
  margin-top: 24px;
}

.steps {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin: 0;
  padding: 0;
  list-style: none;
}

.steps li {
  min-height: 250px;
  padding: clamp(26px, 4vw, 40px);
  transition: background-color 160ms ease;
}

.steps li:hover {
  background: rgba(22, 22, 22, 0.95);
}

.steps li span {
  display: block;
  color: var(--gold);
  font-family: var(--mono);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.24em;
  margin-bottom: 42px;
  text-transform: uppercase;
}

.steps li strong {
  display: block;
  color: var(--ink);
  font-family: var(--serif);
  font-size: 24px;
  font-weight: 500;
  margin-bottom: 12px;
}

.steps li p {
  margin: 0;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.7;
}

.bybit-callout {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  gap: 18px;
  align-items: center;
  border: 1px solid var(--gold-line);
  background: var(--panel);
  margin-top: 28px;
  padding: 24px;
}

.check-icon {
  position: relative;
  width: 42px;
  height: 42px;
  border: 1px solid var(--gold);
}

.check-icon::after {
  content: "";
  position: absolute;
  left: 14px;
  top: 10px;
  width: 10px;
  height: 17px;
  border: solid var(--gold);
  border-width: 0 2px 2px 0;
  transform: rotate(45deg);
}

.bybit-callout strong {
  display: block;
  color: var(--gold);
  font-family: var(--mono);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.2em;
  margin-bottom: 7px;
  text-transform: uppercase;
}

.bybit-callout p {
  margin: 0;
  color: var(--ink);
  font-size: 14px;
  line-height: 1.65;
}

.bybit-callout a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  border: 1px solid var(--gold);
  color: var(--gold);
  font-size: 12px;
  font-weight: 800;
  min-height: 44px;
  padding: 0 18px;
  text-decoration: none;
  transition:
    background-color 160ms ease,
    color 160ms ease;
}

.bybit-callout a:hover {
  background: var(--gold);
  color: var(--black);
}

.referral-section {
  display: grid;
  grid-template-columns: minmax(300px, 0.78fr) minmax(0, 1.22fr);
  gap: clamp(34px, 5vw, 64px);
  align-items: start;
}

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

.referral-grid article {
  padding: clamp(24px, 3vw, 32px);
}

.referral-grid span {
  display: block;
  color: var(--gold);
  font-family: var(--mono);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.18em;
  margin-bottom: 28px;
  text-transform: uppercase;
}

.referral-grid strong {
  display: block;
  color: var(--ink);
  font-family: var(--serif);
  font-size: 23px;
  font-weight: 500;
  line-height: 1.2;
  margin-bottom: 18px;
}

.referral-grid p {
  margin: 0;
  color: var(--muted-2);
  font-size: 13px;
  line-height: 1.7;
}

.final-cta {
  position: relative;
  overflow: hidden;
  width: min(960px, 100%);
  margin: 0 auto;
  padding: clamp(80px, 11vw, 132px) var(--gutter);
  text-align: center;
}

.final-cta::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background: radial-gradient(ellipse at center, rgba(197, 160, 89, 0.1) 0%, transparent 68%);
}

.final-cta h2,
.final-cta p {
  margin-left: auto;
  margin-right: auto;
}

.final-cta .primary-link {
  margin-top: 34px;
}

.notice-band {
  display: flex;
  gap: 16px;
  align-items: center;
  justify-content: center;
  border-top: 1px solid var(--gold-line);
  border-bottom: 1px solid var(--gold-line);
  background: rgba(197, 160, 89, 0.08);
  padding: 22px var(--gutter);
  text-align: center;
}

.notice-band strong {
  color: var(--gold);
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}

.notice-band span {
  color: #c9c5ba;
  font-size: 13px;
  line-height: 1.6;
}

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

.footer-main {
  display: grid;
  grid-template-columns: minmax(240px, 1.1fr) minmax(360px, 1.9fr);
  gap: clamp(34px, 6vw, 76px);
  align-items: start;
}

.footer-brand > div {
  display: grid;
  gap: 5px;
}

.footer-brand strong {
  color: var(--ink);
  font-family: var(--serif);
  font-size: 18px;
  font-style: italic;
  font-weight: 500;
}

.footer-brand > div > span {
  color: var(--muted-2);
  font-size: 13px;
}

.footer-links {
  display: grid;
  grid-template-columns: repeat(3, minmax(120px, 1fr));
  gap: 28px;
}

.footer-column {
  display: grid;
  align-content: start;
  gap: 12px;
}

.footer-column strong {
  color: var(--gold);
  font-family: var(--mono);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.2em;
  margin-bottom: 4px;
  text-transform: uppercase;
}

.footer-links a {
  color: var(--muted);
  font-size: 12px;
  font-weight: 700;
  text-decoration: none;
  transition: color 160ms ease;
}

.footer-bottom {
  display: grid;
  grid-template-columns: minmax(220px, 0.7fr) minmax(320px, 1.3fr);
  gap: 32px;
  align-items: start;
  border-top: 1px solid var(--gold-line);
  margin-top: 46px;
  padding-top: 24px;
}

.footer-bottom p {
  color: var(--muted-2);
  font-size: 11px;
  line-height: 1.65;
  margin: 0;
}

.footer-bottom p:first-child {
  font-family: var(--mono);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.footer-bottom span:first-child {
  color: var(--muted);
}

.mobile-sticky-cta {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 35;
  display: none;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  border-top: 1px solid var(--gold-line);
  background: rgba(5, 5, 5, 0.95);
  padding: 12px 16px;
  backdrop-filter: blur(18px);
}

.mobile-sticky-cta span {
  display: block;
  color: var(--muted-2);
  font-family: var(--mono);
  font-size: 9px;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.mobile-sticky-cta strong {
  color: var(--ink);
  font-family: var(--serif);
  font-size: 20px;
  font-weight: 500;
}

.mobile-sticky-cta small {
  color: var(--muted-2);
  font-family: var(--sans);
  font-size: 10px;
}

.mobile-sticky-cta a {
  flex: 1;
  max-width: 60%;
  min-height: 46px;
}

.animate-fade {
  animation: vault-fade 1.1s ease both;
}

.animate-rise {
  animation: vault-rise 0.9s cubic-bezier(0.19, 1, 0.22, 1) both;
}

.hero-visual.animate-rise,
.hero-actions.animate-rise,
.hero-lead.animate-rise {
  animation-delay: 120ms;
}

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

@keyframes vault-fade {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

@keyframes ticker {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-50%);
  }
}

@keyframes pulse {
  0%,
  100% {
    opacity: 0.55;
    transform: scale(1);
  }
  50% {
    opacity: 1;
    transform: scale(1.08);
  }
}

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

  .desktop-nav,
  .header-link,
  .header-cta,
  .header-actions > .language-switcher {
    display: none;
  }

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

  .mobile-nav-toggle {
    display: inline-flex;
    position: relative;
  }

  .hero-inner,
  .leaderboard-section,
  .referral-section {
    grid-template-columns: 1fr;
  }

  .hero-visual {
    max-width: 560px;
    margin: 0 auto;
  }

  .rewards-panel,
  .leaderboard-board,
  .leaderboard-copy {
    grid-column: auto;
    grid-row: auto;
  }

  .checkout-strip {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .checkout-button {
    grid-column: 1 / -1;
    min-height: 62px;
  }

  .steps,
  .referral-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 760px) {
  body {
    padding-bottom: 78px;
  }

  .site-header {
    min-height: 60px;
  }

  .brand-name {
    font-size: 17px;
  }

  .brand-beta {
    display: none;
  }

  .mobile-nav-panel {
    top: 60px;
  }

  .hero-inner {
    padding-top: 60px;
  }

  .hero h1,
  .final-cta h2 {
    font-size: clamp(48px, 16vw, 72px);
  }

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

  .primary-link,
  .secondary-link {
    width: 100%;
  }

  .galaxy-wrap {
    width: min(320px, 88vw);
    transform: scale(1.18);
  }

  .stat-rail {
    grid-template-columns: 1fr 1fr;
  }

  .section-heading,
  .notice-band {
    flex-direction: column;
    align-items: flex-start;
  }

  .rules-grid,
  .checkout-strip,
  .steps,
  .referral-grid {
    grid-template-columns: 1fr;
  }

  .leaderboard-toolbar {
    align-items: stretch;
    flex-direction: column;
  }

  .leaderboard-toolbar button {
    width: 100%;
  }

  .empty-state {
    padding: 36px 22px;
  }

  .bybit-callout {
    grid-template-columns: 1fr;
  }

  .bybit-callout a {
    width: 100%;
  }

  .footer-main,
  .footer-links,
  .footer-bottom {
    grid-template-columns: 1fr;
  }

  .footer-links {
    gap: 24px;
  }

  .mobile-sticky-cta {
    display: flex;
  }
}

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