:root {
  --sky-deep: #071018;
  --sky-mid: #0e2438;
  --sky-high: #1a3f5c;
  --cloud: #9eb6c9;
  --gold: #f0b429;
  --gold-bright: #ffd56a;
  --gold-deep: #c48412;
  --amber: #ff9a1f;
  --bull: #1a100c;
  --wood: #3a2618;
  --cream: #e8eef4;
  --muted: #8ea3b5;
  --glass: rgba(8, 22, 36, 0.72);
  --line: rgba(240, 180, 41, 0.35);
  --font-display: "Rye", "Alfa Slab One", serif;
  --font-slab: "Alfa Slab One", serif;
  --font-body: "Source Sans 3", system-ui, sans-serif;
  --radius: 18px;
  --header-h: 76px;
}

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

html {
  scroll-behavior: smooth;
}

body {
  min-height: 100vh;
  font-family: var(--font-body);
  color: var(--cream);
  background: var(--sky-deep);
  overflow-x: hidden;
  line-height: 1.55;
}

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

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

button {
  font: inherit;
  border: none;
  cursor: pointer;
  background: none;
  color: inherit;
}

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

.sky-wash {
  position: fixed;
  inset: 0;
  z-index: 0;
  background:
    radial-gradient(ellipse 80% 55% at 70% 18%, rgba(255, 196, 64, 0.22), transparent 55%),
    radial-gradient(ellipse 60% 50% at 15% 80%, rgba(40, 110, 160, 0.28), transparent 60%),
    linear-gradient(180deg, #0a1a2a 0%, #071018 45%, #050c14 100%);
}

.sky-wash::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 20% 30%, rgba(255, 255, 255, 0.06) 0 12%, transparent 13%),
    radial-gradient(circle at 55% 22%, rgba(255, 255, 255, 0.05) 0 18%, transparent 19%),
    radial-gradient(circle at 78% 40%, rgba(255, 255, 255, 0.04) 0 22%, transparent 23%);
  animation: cloud-drift 48s linear infinite;
  opacity: 0.7;
}

.god-rays {
  position: fixed;
  inset: -10% -10% auto;
  height: 70vh;
  z-index: 0;
  pointer-events: none;
  background: conic-gradient(
    from 210deg at 72% 8%,
    transparent 0deg,
    rgba(255, 210, 100, 0.08) 18deg,
    transparent 36deg,
    rgba(255, 190, 70, 0.1) 52deg,
    transparent 78deg,
    rgba(255, 220, 120, 0.07) 110deg,
    transparent 150deg
  );
  filter: blur(8px);
  animation: ray-pulse 9s ease-in-out infinite;
  mix-blend-mode: screen;
}

.power-lines {
  position: fixed;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  opacity: 0.28;
}

.power-lines svg {
  width: 100%;
  height: 100%;
}

.wire {
  fill: none;
  stroke: var(--gold);
  stroke-width: 1.2;
  stroke-linecap: round;
  opacity: 0.45;
  stroke-dasharray: 8 14;
  animation: wire-flow 18s linear infinite;
}

.w2 { animation-duration: 24s; opacity: 0.3; }
.w3 { animation-duration: 30s; opacity: 0.22; stroke: var(--cloud); }

.site-header,
main,
.site-footer {
  position: relative;
  z-index: 2;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  backdrop-filter: blur(16px);
  background: rgba(7, 16, 24, 0.78);
  border-bottom: 1px solid rgba(240, 180, 41, 0.15);
}

.nav-inner {
  max-width: 1180px;
  margin: 0 auto;
  padding: 0.85rem 1.25rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  min-height: var(--header-h);
}

.brand {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.brand-mark {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  object-fit: cover;
  box-shadow:
    0 0 0 2px rgba(240, 180, 41, 0.55),
    0 0 24px rgba(240, 180, 41, 0.45);
  animation: brand-pulse 3.6s ease-in-out infinite;
}

.brand-text {
  display: flex;
  flex-direction: column;
  line-height: 1.1;
}

.brand-name {
  font-family: var(--font-display);
  font-size: 1.05rem;
  letter-spacing: 0.02em;
  color: var(--gold-bright);
  text-shadow: 0 0 18px rgba(240, 180, 41, 0.45);
}

.brand-ticker {
  font-size: 0.75rem;
  letter-spacing: 0.18em;
  color: var(--muted);
  font-weight: 700;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 1.1rem;
}

.site-nav a {
  font-weight: 600;
  font-size: 0.95rem;
  color: var(--cloud);
  transition: color 0.25s ease, transform 0.25s ease;
}

.site-nav a:hover {
  color: var(--gold-bright);
}

.nav-x img {
  width: 16px;
  height: 16px;
  filter: brightness(0) invert(1);
  opacity: 0.85;
}

.nav-toggle {
  display: none;
  width: 42px;
  height: 42px;
  border-radius: 10px;
  border: 1px solid var(--line);
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 5px;
}

.nav-toggle span {
  display: block;
  width: 18px;
  height: 2px;
  background: var(--gold);
  transition: transform 0.3s ease, opacity 0.3s ease;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.55rem;
  padding: 0.85rem 1.4rem;
  border-radius: 999px;
  font-weight: 700;
  letter-spacing: 0.04em;
  transition: transform 0.25s ease, box-shadow 0.25s ease, background 0.25s ease, border-color 0.25s ease;
}

.btn-sm {
  padding: 0.55rem 1rem;
  font-size: 0.85rem;
}

.btn-gold {
  background: linear-gradient(135deg, var(--gold-bright), var(--gold) 45%, var(--gold-deep));
  color: var(--bull);
  box-shadow:
    0 0 0 1px rgba(255, 220, 120, 0.4),
    0 8px 28px rgba(240, 180, 41, 0.35);
}

.btn-gold:hover {
  transform: translateY(-2px) scale(1.02);
  box-shadow:
    0 0 0 1px rgba(255, 230, 150, 0.65),
    0 12px 36px rgba(240, 180, 41, 0.5);
}

.btn-ghost {
  border: 1px solid rgba(240, 180, 41, 0.45);
  background: rgba(10, 24, 38, 0.55);
  color: var(--gold-bright);
}

.btn-ghost:hover {
  border-color: var(--gold);
  transform: translateY(-2px);
}

.btn-ghost.light {
  background: rgba(0, 0, 0, 0.35);
  color: #fff;
  border-color: rgba(255, 255, 255, 0.35);
}

.btn-icon {
  width: 48px;
  height: 48px;
  padding: 0;
  border-radius: 50%;
  border: 1px solid rgba(240, 180, 41, 0.4);
  background: rgba(10, 24, 38, 0.55);
}

.btn-icon img {
  width: 16px;
  height: 16px;
  filter: brightness(0) invert(1);
}

.btn-inline-icon {
  width: 15px;
  height: 15px;
  filter: brightness(0);
}

.hero {
  min-height: calc(100vh - var(--header-h));
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 2.5rem 1.25rem 4rem;
  position: relative;
}

.hero-grid {
  max-width: 1180px;
  margin: 0 auto;
  width: 100%;
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 2.5rem;
  align-items: center;
}

.eyebrow {
  display: inline-block;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.85rem;
}

.hero-title {
  font-family: var(--font-display);
  font-size: clamp(3.2rem, 8vw, 5.8rem);
  line-height: 0.92;
  font-weight: 400;
  margin-bottom: 1.1rem;
}

.title-line {
  display: block;
  text-shadow:
    0 0 24px rgba(240, 180, 41, 0.35),
    0 4px 0 rgba(0, 0, 0, 0.35);
}

.title-line.accent {
  color: var(--gold-bright);
  background: linear-gradient(90deg, var(--gold-bright), var(--amber), var(--gold));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  filter: drop-shadow(0 0 18px rgba(240, 180, 41, 0.45));
  animation: title-shimmer 5s ease-in-out infinite;
}

.hero-tag {
  max-width: 34rem;
  font-size: 1.15rem;
  color: var(--cloud);
  margin-bottom: 1.6rem;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-bottom: 1.4rem;
}

.ca-box {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.65rem;
  padding: 0.7rem 0.85rem;
  border-radius: 14px;
  background: var(--glass);
  border: 1px solid rgba(240, 180, 41, 0.22);
  margin-bottom: 1.25rem;
  max-width: 34rem;
}

.ca-label {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--gold);
}

#contract-address {
  flex: 1;
  min-width: 0;
  font-size: 0.85rem;
  color: var(--cream);
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.copy-btn {
  padding: 0.4rem 0.8rem;
  border-radius: 999px;
  background: rgba(240, 180, 41, 0.15);
  border: 1px solid rgba(240, 180, 41, 0.4);
  color: var(--gold-bright);
  font-size: 0.8rem;
  font-weight: 700;
  transition: background 0.2s ease;
}

.copy-btn:hover,
.copy-btn.copied {
  background: rgba(240, 180, 41, 0.32);
}

.hero-links {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem;
}

.pill-link {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  padding: 0.45rem 0.8rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(158, 182, 201, 0.2);
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--cloud);
  transition: border-color 0.25s ease, transform 0.25s ease, background 0.25s ease;
}

.pill-link img {
  width: 18px;
  height: 18px;
  object-fit: contain;
}

.pill-link:hover {
  border-color: var(--gold);
  background: rgba(240, 180, 41, 0.08);
  transform: translateY(-2px);
}

.hero-stage {
  position: relative;
  display: grid;
  place-items: center;
  min-height: 420px;
}

.pole-glow {
  position: absolute;
  width: min(78%, 420px);
  aspect-ratio: 1;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255, 200, 70, 0.45) 0%, rgba(255, 150, 40, 0.12) 42%, transparent 70%);
  filter: blur(8px);
  animation: glow-breathe 4.5s ease-in-out infinite;
}

.hero-media {
  position: relative;
  z-index: 2;
  width: min(100%, 460px);
  aspect-ratio: 1;
  border-radius: 28px;
  overflow: hidden;
  isolation: isolate;
}

.hero-media::before {
  content: "";
  position: absolute;
  inset: -2px;
  border-radius: inherit;
  padding: 2px;
  background: linear-gradient(135deg, var(--gold-bright), transparent 40%, var(--amber), transparent 75%, var(--gold));
  -webkit-mask:
    linear-gradient(#fff 0 0) content-box,
    linear-gradient(#fff 0 0);
  mask:
    linear-gradient(#fff 0 0) content-box,
    linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  animation: border-spin 8s linear infinite;
  pointer-events: none;
  z-index: 3;
}

.hero-logo,
.hero-video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 28px;
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.45);
  animation: float-logo 6s ease-in-out infinite;
}

.hero-video[hidden] {
  display: none;
}

.ticker-ring {
  position: absolute;
  bottom: 8%;
  left: 50%;
  transform: translateX(-50%);
  z-index: 3;
  display: flex;
  gap: 1.25rem;
  padding: 0.55rem 1.1rem;
  border-radius: 999px;
  background: rgba(7, 16, 24, 0.75);
  border: 1px solid rgba(240, 180, 41, 0.35);
  backdrop-filter: blur(10px);
  font-family: var(--font-slab);
  font-size: 0.78rem;
  letter-spacing: 0.14em;
  color: var(--gold-bright);
  white-space: nowrap;
  animation: ticker-bob 3.2s ease-in-out infinite;
}

.ticker-ring span + span::before {
  content: "·";
  margin-right: 1.25rem;
  color: var(--amber);
}

.scroll-cue {
  position: absolute;
  left: 50%;
  bottom: 1.2rem;
  transform: translateX(-50%);
  width: 22px;
  height: 36px;
  border: 2px solid rgba(240, 180, 41, 0.45);
  border-radius: 14px;
}

.scroll-cue span {
  display: block;
  width: 4px;
  height: 8px;
  margin: 6px auto 0;
  border-radius: 4px;
  background: var(--gold);
  animation: scroll-dot 1.6s ease-in-out infinite;
}

.section {
  padding: 5.5rem 1.25rem;
}

.section-inner {
  max-width: 1180px;
  margin: 0 auto;
}

.section-head {
  max-width: 42rem;
  margin-bottom: 2.5rem;
}

.section-head h2,
.join-overlay h2 {
  font-family: var(--font-display);
  font-size: clamp(2.2rem, 5vw, 3.4rem);
  line-height: 1.05;
  margin-bottom: 0.85rem;
  color: var(--cream);
  text-shadow: 0 0 20px rgba(240, 180, 41, 0.2);
}

.lede {
  color: var(--muted);
  font-size: 1.08rem;
}

.about-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
}

.about-card {
  position: relative;
  padding: 0.4rem 0.2rem 0.4rem 0;
  border: none;
  background: transparent;
  overflow: visible;
  transition: transform 0.35s ease;
}

.about-card + .about-card {
  border-left: 1px solid rgba(240, 180, 41, 0.18);
  padding-left: 1.4rem;
}

.about-card:hover {
  transform: translateY(-4px);
}

.card-bolt {
  width: 42px;
  height: 4px;
  border-radius: 4px;
  margin-bottom: 1rem;
  background: linear-gradient(90deg, var(--gold-bright), transparent);
  box-shadow: 0 0 16px rgba(240, 180, 41, 0.6);
}

.about-card h3 {
  font-family: var(--font-slab);
  font-size: 1.25rem;
  margin-bottom: 0.55rem;
  color: var(--gold-bright);
}

.about-card p {
  color: var(--cloud);
  font-size: 0.98rem;
}

.buy-steps {
  list-style: none;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
}

.buy-step {
  position: relative;
  padding: 1.5rem 1.2rem;
  border-radius: var(--radius);
  background: rgba(8, 22, 36, 0.7);
  border: 1px solid rgba(158, 182, 201, 0.14);
  min-height: 100%;
  transition: transform 0.3s ease, border-color 0.3s ease;
}

.buy-step:hover {
  transform: translateY(-5px);
  border-color: rgba(240, 180, 41, 0.45);
}

.step-num {
  display: block;
  font-family: var(--font-slab);
  font-size: 0.85rem;
  letter-spacing: 0.12em;
  color: var(--gold);
  margin-bottom: 0.9rem;
}

.step-icon {
  width: 48px;
  height: 48px;
  margin-bottom: 1rem;
  display: grid;
  place-items: center;
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(240, 180, 41, 0.2);
}

.step-icon img {
  width: 28px;
  height: 28px;
  object-fit: contain;
}

.buy-step h3 {
  font-family: var(--font-slab);
  font-size: 1.1rem;
  margin-bottom: 0.5rem;
}

.buy-step p {
  color: var(--muted);
  font-size: 0.95rem;
  margin-bottom: 0.9rem;
}

.step-link {
  font-weight: 700;
  color: var(--gold-bright);
  border-bottom: 1px solid transparent;
  transition: border-color 0.2s ease;
}

.step-link:hover {
  border-color: var(--gold);
}

.chart-frame {
  border-radius: 22px;
  overflow: hidden;
  border: 1px solid rgba(240, 180, 41, 0.25);
  background: rgba(5, 12, 20, 0.85);
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.35);
}

.chart-chrome {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  padding: 0.85rem 1.1rem;
  border-bottom: 1px solid rgba(240, 180, 41, 0.15);
  background: rgba(10, 24, 38, 0.9);
}

.chart-chrome img {
  width: 22px;
  height: 22px;
}

.chart-chrome span {
  font-weight: 700;
  color: var(--cloud);
  flex: 1;
}

.chart-chrome a {
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--gold);
}

.chart-embed {
  position: relative;
  width: 100%;
  height: min(72vh, 640px);
  background: #0b1219;
}

.chart-embed iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
}

.joinus {
  padding-top: 2rem;
  padding-bottom: 5rem;
}

.join-banner {
  position: relative;
  max-width: 1180px;
  margin: 0 auto;
  border-radius: 28px;
  overflow: hidden;
  min-height: clamp(420px, 62vh, 620px);
  border: 1px solid rgba(240, 180, 41, 0.3);
  box-shadow:
    0 0 0 1px rgba(255, 210, 100, 0.08),
    0 30px 80px rgba(0, 0, 0, 0.45),
    0 0 60px rgba(240, 180, 41, 0.12);
}

.join-banner-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transform: scale(1.04);
  animation: banner-ken 22s ease-in-out infinite alternate;
}

.join-overlay {
  position: relative;
  z-index: 2;
  min-height: inherit;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: clamp(1.5rem, 4vw, 3rem);
  background:
    linear-gradient(90deg, rgba(5, 10, 16, 0.88) 0%, rgba(5, 10, 16, 0.55) 48%, rgba(5, 10, 16, 0.25) 100%),
    linear-gradient(0deg, rgba(5, 10, 16, 0.75) 0%, transparent 55%);
}

.join-overlay .lede {
  max-width: 28rem;
  color: #d5e0ea;
  margin-bottom: 1.4rem;
}

.join-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.site-footer {
  border-top: 1px solid rgba(240, 180, 41, 0.15);
  background: rgba(4, 10, 16, 0.9);
  padding: 2.5rem 1.25rem 2rem;
}

.footer-inner {
  max-width: 1180px;
  margin: 0 auto;
  display: grid;
  gap: 1.25rem;
}

.footer-brand {
  display: flex;
  align-items: center;
  gap: 0.85rem;
}

.footer-brand img {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  object-fit: cover;
  box-shadow: 0 0 18px rgba(240, 180, 41, 0.35);
}

.footer-brand strong {
  display: block;
  font-family: var(--font-display);
  color: var(--gold-bright);
}

.footer-brand span {
  color: var(--muted);
  font-size: 0.9rem;
}

.footer-links {
  display: flex;
  gap: 0.75rem;
}

.footer-links a {
  width: 42px;
  height: 42px;
  border-radius: 12px;
  display: grid;
  place-items: center;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(240, 180, 41, 0.2);
  transition: transform 0.25s ease, border-color 0.25s ease;
}

.footer-links a:hover {
  transform: translateY(-3px);
  border-color: var(--gold);
}

.footer-links img {
  width: 20px;
  height: 20px;
  object-fit: contain;
}

.footer-links a:first-child img {
  filter: brightness(0) invert(1);
}

.disclaimer {
  color: var(--muted);
  font-size: 0.82rem;
  max-width: 46rem;
}

.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

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

.delay-1 { transition-delay: 0.12s; }
.delay-2 { transition-delay: 0.24s; }
.delay-3 { transition-delay: 0.36s; }

@keyframes cloud-drift {
  from { transform: translate3d(0, 0, 0); }
  to { transform: translate3d(-4%, 2%, 0); }
}

@keyframes ray-pulse {
  0%, 100% { opacity: 0.55; transform: scale(1); }
  50% { opacity: 0.9; transform: scale(1.04); }
}

@keyframes wire-flow {
  to { stroke-dashoffset: -220; }
}

@keyframes brand-pulse {
  0%, 100% { box-shadow: 0 0 0 2px rgba(240, 180, 41, 0.55), 0 0 18px rgba(240, 180, 41, 0.35); }
  50% { box-shadow: 0 0 0 2px rgba(255, 220, 120, 0.8), 0 0 32px rgba(240, 180, 41, 0.65); }
}

@keyframes title-shimmer {
  0%, 100% { filter: drop-shadow(0 0 12px rgba(240, 180, 41, 0.35)); }
  50% { filter: drop-shadow(0 0 28px rgba(255, 180, 40, 0.7)); }
}

@keyframes glow-breathe {
  0%, 100% { transform: scale(0.92); opacity: 0.7; }
  50% { transform: scale(1.08); opacity: 1; }
}

@keyframes float-logo {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-10px); }
}

@keyframes border-spin {
  to {
    filter: hue-rotate(25deg);
  }
}

@keyframes ticker-bob {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50% { transform: translateX(-50%) translateY(-6px); }
}

@keyframes scroll-dot {
  0% { opacity: 1; transform: translateY(0); }
  100% { opacity: 0; transform: translateY(14px); }
}

@keyframes banner-ken {
  from { transform: scale(1.04) translate3d(0, 0, 0); }
  to { transform: scale(1.1) translate3d(-1.5%, -1%, 0); }
}

@media (max-width: 980px) {
  .hero-grid {
    grid-template-columns: 1fr;
  }

  .hero-stage {
    order: -1;
    min-height: 340px;
  }

  .hero-media {
    width: min(100%, 380px);
  }

  .about-grid,
  .buy-steps {
    grid-template-columns: 1fr 1fr;
  }

  .about-card + .about-card {
    border-left: none;
    padding-left: 0.2rem;
    border-top: 1px solid rgba(240, 180, 41, 0.18);
    padding-top: 1.2rem;
  }
}

@media (max-width: 720px) {
  .nav-toggle {
    display: inline-flex;
  }

  .site-nav {
    position: absolute;
    top: calc(100% + 1px);
    left: 0;
    right: 0;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 0.75rem 1.25rem 1.25rem;
    background: rgba(7, 16, 24, 0.96);
    border-bottom: 1px solid rgba(240, 180, 41, 0.18);
  }

  .site-nav.open {
    display: flex;
  }

  .site-nav a {
    padding: 0.75rem 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  }

  .site-nav .btn {
    margin-top: 0.75rem;
    width: 100%;
  }

  .about-grid,
  .buy-steps {
    grid-template-columns: 1fr;
  }

  .hero-title {
    font-size: clamp(2.6rem, 14vw, 3.6rem);
  }

  .join-overlay {
    background:
      linear-gradient(0deg, rgba(5, 10, 16, 0.88) 0%, rgba(5, 10, 16, 0.45) 55%, rgba(5, 10, 16, 0.35) 100%);
  }

  .chart-embed {
    height: 520px;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation: none !important;
    transition: none !important;
  }

  .reveal {
    opacity: 1;
    transform: none;
  }
}
