:root {
  --black: #050605;
  --void: #080a06;
  --ink: #10140d;
  --smoke: #163016;
  --gold: #f5c518;
  --gold-hot: #ffe56a;
  --gold-deep: #c48910;
  --lime: #7cff3a;
  --lime-hot: #b8ff62;
  --lime-dim: #3d8a1c;
  --cream: #f3eed6;
  --mute: #9aa48a;
  --line: rgba(245, 197, 24, 0.22);
  --display: "Titan One", "Bungee", system-ui, sans-serif;
  --drip: "Rubik Wet Paint", "Titan One", cursive;
  --chunk: "Bungee", "Titan One", sans-serif;
  --body: "Sora", system-ui, sans-serif;
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
html, body { min-height: 100%; }
body {
  font-family: var(--body);
  color: var(--cream);
  background:
    radial-gradient(1200px 700px at 50% -10%, rgba(124, 255, 58, 0.08), transparent 55%),
    radial-gradient(900px 500px at 110% 20%, rgba(245, 197, 24, 0.08), transparent 50%),
    linear-gradient(180deg, #040504 0%, #070907 40%, #050705 100%);
  background-color: var(--black);
  overflow-x: hidden;
}
img, svg { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button { font: inherit; cursor: pointer; border: 0; background: none; color: inherit; }
code { font-family: ui-monospace, SFMono-Regular, Menlo, Consolas, monospace; }
::selection { background: var(--gold); color: #1a1303; }

.grain,
#droplets,
.smoke,
.horn {
  position: fixed;
  inset: 0;
  pointer-events: none;
}
.grain {
  z-index: 40;
  opacity: 0.11;
  mix-blend-mode: overlay;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.85' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}
#droplets { z-index: 2; }
.smoke { z-index: 1; filter: blur(50px); opacity: 0.42; }
.smoke-a {
  background: radial-gradient(circle at 20% 30%, rgba(22, 70, 22, 0.7), transparent 42%);
  animation: drift 22s ease-in-out infinite alternate;
}
.smoke-b {
  background: radial-gradient(circle at 80% 60%, rgba(18, 48, 16, 0.75), transparent 46%);
  animation: drift 28s ease-in-out infinite alternate-reverse;
}
.smoke-c {
  background: radial-gradient(circle at 50% 90%, rgba(40, 28, 4, 0.35), transparent 40%);
  animation: drift 18s ease-in-out infinite alternate;
}
@keyframes drift {
  from { transform: translate3d(-2%, -1%, 0) scale(1); }
  to { transform: translate3d(3%, 2%, 0) scale(1.08); }
}

.horn {
  z-index: 1;
  width: 42vw;
  height: 58vh;
  border: 18px solid transparent;
  border-radius: 50% 50% 0 0;
  filter: blur(1px);
}
.horn-left {
  left: -12vw;
  top: -6vh;
  border-left-color: rgba(124, 255, 58, 0.16);
  border-top-color: rgba(124, 255, 58, 0.22);
  transform: rotate(-28deg);
  box-shadow: 0 0 80px rgba(124, 255, 58, 0.12);
  animation: hornPulse 6s ease-in-out infinite;
}
.horn-right {
  right: -12vw;
  left: auto;
  top: -8vh;
  border-right-color: rgba(124, 255, 58, 0.16);
  border-top-color: rgba(124, 255, 58, 0.22);
  transform: rotate(28deg);
  box-shadow: 0 0 80px rgba(124, 255, 58, 0.12);
  animation: hornPulse 7s ease-in-out infinite 0.6s;
}
@keyframes hornPulse {
  0%, 100% { opacity: 0.55; filter: blur(1px) drop-shadow(0 0 12px rgba(124, 255, 58, 0.25)); }
  50% { opacity: 1; filter: blur(0.5px) drop-shadow(0 0 28px rgba(184, 255, 98, 0.45)); }
}

.stream-rail {
  position: fixed;
  left: 22px;
  top: 0;
  bottom: 0;
  width: 18px;
  z-index: 3;
  pointer-events: none;
}
.stream-core {
  position: absolute;
  left: 7px;
  top: 0;
  bottom: 0;
  width: 4px;
  border-radius: 99px;
  background: linear-gradient(180deg, transparent, var(--gold) 12%, var(--gold-hot), var(--gold-deep) 90%, transparent);
  box-shadow: 0 0 16px var(--gold), 0 0 36px rgba(245, 197, 24, 0.35);
  animation: streamGlow 2.8s ease-in-out infinite;
}
.stream-drip {
  position: absolute;
  left: 4px;
  width: 10px;
  height: 18px;
  border-radius: 50% 50% 50% 50% / 40% 40% 60% 60%;
  background: radial-gradient(circle at 35% 30%, var(--gold-hot), var(--gold-deep));
  box-shadow: 0 0 12px var(--gold);
  animation: dripFall 7s linear infinite;
}
.stream-drip.d2 { animation-delay: -2.4s; }
.stream-drip.d3 { animation-delay: -4.8s; }
@keyframes streamGlow {
  0%, 100% { opacity: 0.7; }
  50% { opacity: 1; }
}
@keyframes dripFall {
  0% { top: -4%; opacity: 0; }
  8% { opacity: 1; }
  92% { opacity: 1; }
  100% { top: 104%; opacity: 0; }
}

.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 30;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 16px 36px 16px 56px;
  background: linear-gradient(180deg, rgba(5, 6, 5, 0.86), rgba(5, 6, 5, 0.2));
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--line);
}
.nav::after {
  content: "";
  position: absolute;
  left: 8%;
  right: 8%;
  bottom: -10px;
  height: 12px;
  background:
    radial-gradient(8px 10px at 12% 0, var(--gold) 48%, transparent 50%),
    radial-gradient(7px 11px at 28% 0, var(--gold-hot) 48%, transparent 50%),
    radial-gradient(9px 12px at 46% 0, var(--gold) 48%, transparent 50%),
    radial-gradient(6px 9px at 63% 0, var(--gold-deep) 48%, transparent 50%),
    radial-gradient(8px 11px at 79% 0, var(--gold) 48%, transparent 50%),
    radial-gradient(7px 10px at 93% 0, var(--gold-hot) 48%, transparent 50%);
  opacity: 0.85;
  pointer-events: none;
  animation: dripSway 3.6s ease-in-out infinite;
}
@keyframes dripSway {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(3px); }
}
.nav-brand {
  display: flex;
  align-items: center;
  gap: 12px;
  font-family: var(--chunk);
  letter-spacing: 0.08em;
  font-size: 18px;
  color: var(--gold);
}
.nav-brand img {
  width: 46px;
  height: 46px;
  object-fit: cover;
  border-radius: 50%;
  box-shadow: 0 0 0 2px var(--gold), 0 0 18px rgba(124, 255, 58, 0.45);
}
.nav-links {
  display: flex;
  gap: 28px;
  font-size: 13px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}
.nav-links a {
  color: var(--mute);
  transition: color 0.2s, text-shadow 0.2s;
}
.nav-links a:hover { color: var(--gold-hot); text-shadow: 0 0 12px rgba(245, 197, 24, 0.4); }
.nav-actions { display: flex; align-items: center; gap: 12px; }
.icon-btn {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  border: 1px solid var(--line);
  border-radius: 50%;
  background: rgba(0, 0, 0, 0.35);
  color: var(--gold);
}
.icon-btn img { width: 16px; height: 16px; }
.nav-toggle {
  display: none;
  width: 42px;
  height: 42px;
  flex-direction: column;
  justify-content: center;
  gap: 6px;
  padding: 10px;
}
.nav-toggle span {
  display: block;
  height: 2px;
  background: var(--gold);
  box-shadow: 0 0 8px var(--gold);
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 44px;
  padding: 0 18px;
  border-radius: 999px;
  border: 1px solid transparent;
  transition: transform 0.2s, box-shadow 0.2s, background 0.2s, color 0.2s;
  white-space: nowrap;
}
.btn img { width: 18px; height: 18px; }
.btn-gold img[src*="x.svg"] { filter: brightness(0) saturate(100%); }
.btn.lg { min-height: 54px; padding: 0 24px; font-size: 16px; }
.btn-gold {
  position: relative;
  overflow: hidden;
  color: #1a1303;
  font-weight: 700;
  background: linear-gradient(180deg, var(--gold-hot), var(--gold) 48%, var(--gold-deep));
  box-shadow: 0 0 0 1px rgba(255, 229, 106, 0.3), 0 8px 24px rgba(245, 197, 24, 0.22), inset 0 1px 0 rgba(255, 255, 255, 0.35);
}
.btn-gold::after {
  content: "";
  position: absolute;
  inset: 0 auto 0 -40%;
  width: 30%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.38), transparent);
  transform: skewX(-20deg);
  animation: sheen 3.4s ease-in-out infinite;
}
@keyframes sheen {
  0% { left: -40%; }
  55%, 100% { left: 130%; }
}
.btn-gold:hover {
  transform: translateY(-2px);
  box-shadow: 0 0 24px rgba(245, 197, 24, 0.45), 0 0 40px rgba(124, 255, 58, 0.18);
}
.btn-ghost {
  color: var(--cream);
  border-color: rgba(124, 255, 58, 0.35);
  background: rgba(8, 14, 6, 0.6);
  box-shadow: inset 0 0 20px rgba(124, 255, 58, 0.06);
}
.btn-ghost:hover {
  border-color: var(--lime);
  box-shadow: 0 0 20px rgba(124, 255, 58, 0.25);
  color: var(--lime-hot);
}
.btn-copy {
  min-height: 38px;
  padding: 0 14px;
  border-radius: 10px;
  background: rgba(245, 197, 24, 0.12);
  color: var(--gold);
  border: 1px solid var(--line);
}

main { position: relative; z-index: 4; }

.hero {
  min-height: 100vh;
  padding: 140px 56px 80px;
  display: flex;
  align-items: center;
}
.hero-drip-curtain {
  position: absolute;
  inset: 0 0 auto 0;
  height: 180px;
  background: linear-gradient(180deg, rgba(245, 197, 24, 0.08), transparent);
  pointer-events: none;
}
.hero-grid {
  width: min(1200px, 100%);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: 48px;
  align-items: center;
}
.hero-stage { display: grid; place-items: center; }
.well {
  position: relative;
  width: min(460px, 88vw);
  aspect-ratio: 1;
  display: grid;
  place-items: center;
  perspective: 800px;
}
.well-glow {
  position: absolute;
  inset: 8%;
  border-radius: 50%;
  background:
    radial-gradient(circle at 50% 42%, rgba(245, 197, 24, 0.28), transparent 42%),
    radial-gradient(circle at 50% 60%, rgba(124, 255, 58, 0.2), transparent 55%);
  filter: blur(18px);
  animation: wellPulse 4.5s ease-in-out infinite;
}
@keyframes wellPulse {
  0%, 100% { transform: scale(0.96); opacity: 0.7; }
  50% { transform: scale(1.06); opacity: 1; }
}
.hero-video,
.hero-logo {
  position: relative;
  z-index: 2;
  width: 78%;
  height: 78%;
  object-fit: contain;
  transform-style: preserve-3d;
  filter: drop-shadow(0 0 18px rgba(124, 255, 58, 0.35)) drop-shadow(0 20px 30px rgba(0, 0, 0, 0.55));
  animation: floatLogo 6s ease-in-out infinite;
}
.hero-video {
  position: absolute;
  width: 70%;
  height: 70%;
  object-fit: cover;
  border-radius: 46% 54% 48% 52%;
  opacity: 0;
  mix-blend-mode: screen;
  pointer-events: none;
}
.hero-video.is-on { opacity: 0.55; }
@keyframes floatLogo {
  0%, 100% { transform: translateY(0) rotate(-0.6deg); }
  50% { transform: translateY(-12px) rotate(0.6deg); }
}
.well-rim {
  position: absolute;
  inset: 4%;
  border-radius: 46% 54% 48% 52%;
  border: 2px solid rgba(245, 197, 24, 0.35);
  box-shadow: 0 0 40px rgba(245, 197, 24, 0.12), inset 0 0 40px rgba(124, 255, 58, 0.08);
  animation: rimSpin 16s linear infinite;
}
@keyframes rimSpin {
  to { transform: rotate(360deg); }
}

.kicker {
  font-family: var(--drip);
  color: var(--lime);
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-size: 18px;
  text-shadow: 0 0 16px rgba(124, 255, 58, 0.45);
}
h1 {
  font-family: var(--display);
  font-size: clamp(56px, 8vw, 108px);
  line-height: 0.88;
  margin: 10px 0 8px;
}
.word-drip {
  display: block;
  background: linear-gradient(180deg, #fff4b0 0%, var(--gold-hot) 28%, var(--gold) 58%, var(--gold-deep) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  filter: drop-shadow(0 8px 0 rgba(0, 0, 0, 0.35));
  animation: goldShift 5s linear infinite;
  background-size: 100% 200%;
}
.word-coin {
  display: block;
  font-family: var(--drip);
  font-size: 0.46em;
  color: var(--lime-hot);
  letter-spacing: 0.16em;
  text-transform: uppercase;
}
@keyframes goldShift {
  0% { background-position: 0 0; }
  100% { background-position: 0 100%; }
}
.symbol-line {
  margin: 10px 0 18px;
}
.symbol-line span {
  display: inline-block;
  font-family: var(--chunk);
  color: var(--gold);
  letter-spacing: 0.18em;
  font-size: 20px;
  padding-bottom: 6px;
  border-bottom: 3px solid var(--gold);
  box-shadow: 0 8px 0 -4px var(--lime);
}
.tagline {
  max-width: 36ch;
  font-size: 18px;
  line-height: 1.55;
  color: #d9d4b8;
}
.hero-cta { display: flex; flex-wrap: wrap; gap: 12px; margin: 28px 0 22px; }
.ca-trough {
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 14px;
  align-items: center;
  padding: 12px 12px 12px 16px;
  border-radius: 16px;
  background: linear-gradient(180deg, rgba(16, 20, 10, 0.9), rgba(8, 10, 6, 0.9));
  border: 1px solid var(--line);
  box-shadow: inset 0 -10px 0 -6px rgba(245, 197, 24, 0.18), 0 0 30px rgba(0, 0, 0, 0.35);
}
.ca-meta { display: grid; gap: 2px; font-size: 11px; letter-spacing: 0.12em; text-transform: uppercase; color: var(--mute); }
.ca-meta strong { color: var(--lime); letter-spacing: 0.08em; }
#caDisplay {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  color: var(--gold-hot);
  font-size: 13px;
}
.hero-brands {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-top: 22px;
  color: var(--mute);
  font-size: 12px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}
.hero-brands img { width: 22px; height: 22px; opacity: 0.85; }
.hero-brands img[src*="solana"] { color: var(--gold); }
.hero-brands img[src*="dexscreener"] { filter: grayscale(0.2) brightness(1.2); }
.hero-brands img[src*="phantom"] { border-radius: 6px; }

.about, .howtobuy, .chart {
  width: min(1140px, calc(100% - 80px));
  margin: 0 auto;
  padding: 96px 0;
}
.section-head { margin-bottom: 40px; }
.section-head h2 {
  font-family: var(--display);
  font-size: clamp(42px, 6vw, 72px);
  line-height: 0.92;
  margin-top: 8px;
}
.section-head h2 em,
.about h2 em,
.join-content h2 em {
  font-style: normal;
  font-family: var(--drip);
  color: var(--gold);
}
.chart .section-head {
  display: flex;
  flex-wrap: wrap;
  align-items: end;
  justify-content: space-between;
  gap: 16px;
}

.about-layout {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 28px;
}
.manifesto, .trait, .step-card {
  position: relative;
  background: linear-gradient(180deg, rgba(16, 22, 12, 0.86), rgba(8, 10, 7, 0.92));
  border: 1px solid var(--line);
}
.manifesto {
  padding: 36px;
  border-radius: 28px 8px 32px 14px;
  box-shadow: 0 0 0 1px rgba(124, 255, 58, 0.08), 20px 24px 0 -12px rgba(245, 197, 24, 0.08);
}
.manifesto .lead {
  font-family: var(--drip);
  font-size: 28px;
  color: var(--gold-hot);
  margin-bottom: 16px;
  line-height: 1.15;
}
.manifesto p + p { margin-top: 14px; color: #cfc9ad; line-height: 1.7; }
.trait-stack { display: grid; gap: 16px; }
.trait {
  padding: 22px 22px 22px 86px;
  border-radius: 18px 28px 14px 22px;
  overflow: hidden;
}
.trait::before {
  content: "";
  position: absolute;
  left: -20px;
  top: -30px;
  width: 90px;
  height: 140px;
  background: radial-gradient(circle at 30% 30%, rgba(245, 197, 24, 0.2), transparent 70%);
}
.trait-no {
  position: absolute;
  left: 18px;
  top: 18px;
  font-family: var(--display);
  font-size: 28px;
  color: var(--lime);
  text-shadow: 0 0 14px rgba(124, 255, 58, 0.45);
}
.trait h3, .step-card h3 {
  font-family: var(--chunk);
  font-size: 18px;
  letter-spacing: 0.06em;
  color: var(--gold);
  margin-bottom: 8px;
}
.trait p, .step-card p { color: var(--mute); line-height: 1.6; }

.pipe { position: relative; padding: 12px 0 20px; }
.pipe-line {
  position: absolute;
  left: 50%;
  top: 0;
  bottom: 0;
  width: 6px;
  margin-left: -3px;
  border-radius: 99px;
  background: linear-gradient(180deg, transparent, var(--gold), var(--lime), var(--gold), transparent);
  box-shadow: 0 0 18px rgba(245, 197, 24, 0.45);
}
.step {
  width: calc(50% - 36px);
  display: flex;
  align-items: center;
  gap: 16px;
  margin: 28px 0;
}
.step.left { margin-right: auto; flex-direction: row-reverse; text-align: right; }
.step.right { margin-left: auto; }
.step-node {
  width: 54px;
  height: 54px;
  flex: 0 0 54px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  font-family: var(--display);
  color: #1a1303;
  background: radial-gradient(circle at 35% 30%, var(--gold-hot), var(--gold-deep));
  box-shadow: 0 0 0 6px rgba(5, 6, 5, 1), 0 0 0 8px var(--gold), 0 0 24px var(--gold);
  animation: nodePulse 3.2s ease-in-out infinite;
}
@keyframes nodePulse {
  0%, 100% { box-shadow: 0 0 0 6px #050605, 0 0 0 8px var(--gold), 0 0 18px var(--gold); }
  50% { box-shadow: 0 0 0 6px #050605, 0 0 0 10px var(--lime), 0 0 28px var(--lime); }
}
.step-card {
  flex: 1;
  padding: 22px;
  border-radius: 20px;
}
.step.left .step-card { border-radius: 24px 8px 20px 28px; }
.step.right .step-card { border-radius: 8px 24px 28px 20px; }
.step-card img { width: 36px; height: 36px; margin-bottom: 10px; }
.step.left .step-card img { margin-left: auto; }
.howto-cta { display: flex; justify-content: center; margin-top: 20px; }

.chart-frame {
  position: relative;
  min-height: 620px;
  border-radius: 22px;
  overflow: hidden;
  border: 1px solid rgba(124, 255, 58, 0.28);
  background: #0b0f0a;
  box-shadow: 0 0 40px rgba(124, 255, 58, 0.08), inset 0 0 40px rgba(0, 0, 0, 0.4);
}
.chart-frame iframe {
  width: 100%;
  height: 620px;
  border: 0;
  background: #0b0f0a;
}
.chart-frame.ready .chart-empty { display: none; }
.chart-empty {
  position: absolute;
  inset: 0;
  display: grid;
  place-content: center;
  gap: 16px;
  text-align: center;
  padding: 32px;
  color: var(--mute);
}
.chart-empty img { width: 54px; height: 54px; margin: 0 auto; }
.tick {
  position: absolute;
  width: 28px;
  height: 28px;
  z-index: 2;
  border: 2px solid var(--lime);
  pointer-events: none;
}
.tick.tl { top: 10px; left: 10px; border-right: 0; border-bottom: 0; }
.tick.tr { top: 10px; right: 10px; border-left: 0; border-bottom: 0; }
.tick.bl { bottom: 10px; left: 10px; border-right: 0; border-top: 0; }
.tick.br { bottom: 10px; right: 10px; border-left: 0; border-top: 0; }

.joinus { padding: 40px 0 0; }
.join-banner {
  position: relative;
  min-height: 86vh;
  overflow: hidden;
}
.join-banner > img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  filter: saturate(1.15) contrast(1.08);
  animation: bannerDrift 18s ease-in-out infinite alternate;
}
@keyframes bannerDrift {
  from { transform: scale(1.04) translateY(0); }
  to { transform: scale(1.1) translateY(-2%); }
}
.join-veil {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(5, 6, 5, 0.25) 0%, rgba(5, 6, 5, 0.15) 35%, rgba(5, 6, 5, 0.78) 100%),
    radial-gradient(circle at 50% 70%, rgba(245, 197, 24, 0.12), transparent 40%);
}
.join-content {
  position: relative;
  z-index: 2;
  width: min(820px, calc(100% - 48px));
  margin: 0 auto;
  min-height: 86vh;
  display: flex;
  flex-direction: column;
  justify-content: end;
  padding: 80px 0 72px;
}
.join-content h2 {
  font-family: var(--display);
  font-size: clamp(52px, 8vw, 92px);
  line-height: 0.9;
  margin: 8px 0 16px;
}
.join-content p { max-width: 42ch; color: #efe8c8; line-height: 1.6; }
.join-actions { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 28px; }

.footer {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 28px 48px 28px 56px;
  border-top: 1px solid var(--line);
  background: #050605;
  position: relative;
  z-index: 4;
}
.footer p { color: var(--mute); font-size: 13px; }
.footer-links { display: flex; gap: 12px; }
.footer-links a {
  width: 40px;
  height: 40px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  border: 1px solid var(--line);
  color: var(--gold);
}
.footer-links img { width: 16px; height: 16px; }

.toast {
  position: fixed;
  left: 50%;
  bottom: 28px;
  transform: translateX(-50%) translateY(20px);
  padding: 10px 16px;
  border-radius: 999px;
  background: var(--gold);
  color: #1a1303;
  font-weight: 700;
  opacity: 0;
  pointer-events: none;
  z-index: 50;
  transition: 0.25s ease;
}
.toast.show { opacity: 1; transform: translateX(-50%) translateY(0); }

.reveal {
  opacity: 0;
  transform: translateY(28px);
  animation: rise 0.9s ease forwards;
}
.trait:nth-child(2), .step:nth-child(3) { animation-delay: 0.12s; }
.trait:nth-child(3), .step:nth-child(4) { animation-delay: 0.22s; }
.step:nth-child(5) { animation-delay: 0.32s; }
@keyframes rise {
  to { opacity: 1; transform: none; }
}

@media (max-width: 980px) {
  .stream-rail { display: none; }
  .nav { padding: 14px 18px; }
  .nav-links {
    position: fixed;
    top: 74px;
    left: 12px;
    right: 12px;
    display: none;
    flex-direction: column;
    gap: 14px;
    padding: 18px;
    background: rgba(8, 10, 6, 0.96);
    border: 1px solid var(--line);
    border-radius: 16px;
  }
  .nav-links.open { display: flex; }
  .nav-toggle { display: flex; }
  .hero { padding: 120px 20px 60px; }
  .hero-grid, .about-layout { grid-template-columns: 1fr; }
  .about, .howtobuy, .chart { width: min(1140px, calc(100% - 32px)); padding: 72px 0; }
  .pipe-line { left: 27px; }
  .step, .step.left, .step.right {
    width: 100%;
    margin-left: 0;
    margin-right: 0;
    flex-direction: row;
    text-align: left;
  }
  .step.left .step-card img { margin-left: 0; }
  .ca-trough { grid-template-columns: 1fr auto; }
  .ca-meta { display: none; }
  .footer { padding: 24px 18px; }
}

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