:root {
  --void: #07050f;
  --void-2: #12081d;
  --ink: #0a0614;
  --paper: #f4fff8;
  --muted: #b8b0cc;
  --mint: #6ff3c2;
  --mint-hot: #3ee8b5;
  --cyan: #3de8df;
  --pink: #ff5aa8;
  --magenta: #ef3d8f;
  --purple: #b56bff;
  --purple-deep: #6a28d6;
  --line: #08050f;
  --glass: rgba(16, 10, 28, 0.72);
  --stroke: 4px;
}

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

html {
  scroll-behavior: smooth;
}

html,
body {
  min-height: 100%;
}

body {
  font-family: "Outfit", system-ui, sans-serif;
  color: var(--paper);
  background: var(--void);
  overflow-x: hidden;
}

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

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

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

::selection {
  background: var(--mint);
  color: var(--ink);
}

body::-webkit-scrollbar {
  width: 10px;
}

body::-webkit-scrollbar-track {
  background: #0b0813;
}

body::-webkit-scrollbar-thumb {
  background: linear-gradient(180deg, var(--mint), var(--purple));
  border-radius: 99px;
}

.void,
.grain,
.cursor-glow {
  pointer-events: none;
}

.void {
  position: fixed;
  inset: 0;
  z-index: 0;
  background:
    radial-gradient(900px 520px at 12% 8%, rgba(181, 107, 255, 0.18), transparent 58%),
    radial-gradient(700px 480px at 88% 18%, rgba(255, 90, 168, 0.12), transparent 55%),
    radial-gradient(820px 540px at 50% 110%, rgba(62, 232, 181, 0.08), transparent 50%),
    linear-gradient(180deg, #080610 0%, #0d0818 48%, #080610 100%);
}

.void-fog {
  position: absolute;
  border-radius: 50%;
  filter: blur(70px);
  opacity: 0.55;
  mix-blend-mode: screen;
}

.void-fog-a {
  width: 42vw;
  height: 42vw;
  left: -8%;
  top: 10%;
  background: #7c3aed;
  animation: fog-drift 18s ease-in-out infinite;
}

.void-fog-b {
  width: 36vw;
  height: 36vw;
  right: -10%;
  top: 28%;
  background: #db2777;
  animation: fog-drift 22s ease-in-out infinite reverse;
}

.void-fog-c {
  width: 30vw;
  height: 30vw;
  left: 38%;
  bottom: -8%;
  background: #14b8a6;
  animation: fog-drift 26s ease-in-out infinite 2s;
}

.streak {
  position: absolute;
  height: 1px;
  width: 38vw;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.55), transparent);
  transform: rotate(-24deg);
  opacity: 0.18;
  animation: streak-run 9s linear infinite;
}

.streak-a { top: 18%; left: -10%; }
.streak-b { top: 62%; right: -12%; animation-delay: -4s; }

#spark-field {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(8px);
  opacity: 0.45;
}

.orb-mint {
  width: 180px;
  height: 180px;
  left: 8%;
  top: 62%;
  background: radial-gradient(circle, #6ff3c2 0%, transparent 70%);
}

.orb-pink {
  width: 220px;
  height: 220px;
  right: 6%;
  top: 12%;
  background: radial-gradient(circle, #ff5aa8 0%, transparent 70%);
}

.orb-purple {
  width: 260px;
  height: 260px;
  left: 58%;
  bottom: 8%;
  background: radial-gradient(circle, #b56bff 0%, transparent 70%);
}

.grain {
  position: fixed;
  inset: 0;
  z-index: 1;
  opacity: 0.07;
  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");
}

.cursor-glow {
  position: fixed;
  z-index: 2;
  width: 280px;
  height: 280px;
  margin: -140px 0 0 -140px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(181, 107, 255, 0.16), transparent 68%);
  transform: translate(-999px, -999px);
  transition: opacity 0.3s ease;
}

main,
.nav,
.foot,
.ticker {
  position: relative;
  z-index: 3;
}

.nav {
  position: fixed;
  top: 14px;
  left: 50%;
  transform: translateX(-50%);
  width: min(1180px, calc(100% - 24px));
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 10px 14px;
  border: 3px solid var(--line);
  border-radius: 999px;
  background: var(--glass);
  backdrop-filter: blur(16px);
  box-shadow: 5px 6px 0 var(--line), 0 0 0 1px rgba(181, 107, 255, 0.2);
  transition: top 0.3s ease, box-shadow 0.3s ease;
  z-index: 20;
}

.nav.is-scrolled {
  top: 8px;
  box-shadow: 5px 6px 0 var(--line), 0 16px 40px rgba(0, 0, 0, 0.35);
}

.nav-brand {
  display: flex;
  align-items: center;
  gap: 10px;
}

.nav-brand img {
  width: 44px;
  height: 44px;
  object-fit: cover;
  border-radius: 50%;
  border: 3px solid var(--line);
  box-shadow: 0 0 18px rgba(181, 107, 255, 0.55);
  animation: aura-pulse 3.2s ease-in-out infinite;
}

.nav-brand strong {
  display: block;
  font-family: "Luckiest Guy", cursive;
  letter-spacing: 0.06em;
  font-size: 1.05rem;
  line-height: 1;
}

.nav-brand small {
  display: block;
  color: var(--muted);
  font-size: 0.68rem;
  letter-spacing: 0.08em;
}

.nav-links {
  display: flex;
  gap: 22px;
}

.nav-links a {
  font-family: "Fredoka", sans-serif;
  font-weight: 600;
  font-size: 0.95rem;
  color: #efe8ff;
  position: relative;
}

.nav-links a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -6px;
  width: 100%;
  height: 3px;
  border-radius: 99px;
  background: linear-gradient(90deg, var(--mint), var(--pink));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.25s ease;
}

.nav-links a:hover::after {
  transform: scaleX(1);
}

.nav-socials {
  display: flex;
  align-items: center;
  gap: 8px;
}

.icon-btn {
  width: 38px;
  height: 38px;
  display: grid;
  place-items: center;
  border: 3px solid var(--line);
  border-radius: 12px;
  background: #161022;
  box-shadow: 3px 3px 0 var(--line);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.icon-btn img {
  width: 18px;
  height: 18px;
  object-fit: contain;
}

.icon-btn:hover {
  transform: translate(-2px, -2px);
  box-shadow: 5px 5px 0 var(--line);
}

.menu-btn {
  display: none;
  width: 42px;
  height: 38px;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  padding: 0 9px;
  border: 3px solid var(--line);
  border-radius: 12px;
  background: #161022;
}

.menu-btn span {
  display: block;
  height: 3px;
  background: var(--paper);
  border-radius: 99px;
}

.hero {
  min-height: 100vh;
  display: grid;
  place-items: center;
  padding: 140px 24px 80px;
}

.hero-stage {
  width: min(1180px, 100%);
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 48px;
  align-items: center;
}

.mascot-wrap {
  position: relative;
  width: min(430px, 100%);
  aspect-ratio: 1;
  margin: 0 auto;
}

.mascot {
  position: relative;
  z-index: 3;
  width: 100%;
  height: 100%;
  object-fit: contain;
  filter: drop-shadow(0 0 28px rgba(181, 107, 255, 0.55));
  animation: mascot-bob 4.8s ease-in-out infinite;
}

.ring {
  position: absolute;
  inset: 6%;
  border-radius: 50%;
  border: 2px dashed rgba(111, 243, 194, 0.28);
  animation: spin 18s linear infinite;
}

.ring-2 {
  inset: -4%;
  border-color: rgba(255, 90, 168, 0.22);
  animation-duration: 26s;
  animation-direction: reverse;
}

.ring-3 {
  inset: 18%;
  border-style: solid;
  border-color: rgba(181, 107, 255, 0.18);
  animation-duration: 14s;
}

.sparkle {
  position: absolute;
  width: 14px;
  height: 14px;
  background: #fff;
  clip-path: polygon(50% 0, 64% 36%, 100% 50%, 64% 64%, 50% 100%, 36% 64%, 0 50%, 36% 36%);
  animation: twinkle 2.4s ease-in-out infinite;
  z-index: 4;
}

.sparkle-1 { top: 8%; right: 16%; }
.sparkle-2 { bottom: 18%; left: 8%; animation-delay: 0.6s; }
.sparkle-3 { top: 28%; left: 4%; animation-delay: 1.2s; background: var(--mint); }

.orbit {
  position: absolute;
  z-index: 4;
  width: 52px;
  height: 52px;
  display: grid;
  place-items: center;
  border: 3px solid var(--line);
  border-radius: 16px;
  background: #14101f;
  box-shadow: 4px 4px 0 var(--line);
}

.orbit img {
  width: 26px;
  height: 26px;
  object-fit: contain;
}

.orbit-a { animation: orbit-float 5s ease-in-out infinite; top: 6%; left: -4%; }
.orbit-b { animation: orbit-float 6s ease-in-out infinite 0.8s; bottom: 10%; right: -2%; }
.orbit-c { animation: orbit-float 5.6s ease-in-out infinite 1.4s; top: 58%; left: -10%; }

.chip-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 18px;
}

.chip {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 7px 12px;
  border: 3px solid var(--line);
  border-radius: 999px;
  font-family: "Fredoka", sans-serif;
  font-weight: 600;
  font-size: 0.86rem;
  box-shadow: 3px 3px 0 var(--line);
}

.chip img {
  width: 16px;
  height: 16px;
}

.chip-mint { background: #16352d; color: var(--mint); }
.chip-pink { background: #3a1630; color: #ffb3d6; }

.wordmark {
  display: flex;
  flex-direction: column;
  line-height: 0.88;
  margin-bottom: 18px;
}

.word {
  font-family: "Luckiest Guy", cursive;
  font-size: clamp(3.4rem, 8vw, 7.2rem);
  letter-spacing: 0.04em;
  line-height: 0.92;
}

.word-mint {
  color: #6ff3c2;
  text-shadow:
    -4px -4px 0 #08050f,
    4px -4px 0 #08050f,
    -4px 4px 0 #08050f,
    4px 4px 0 #08050f,
    0 0 0 #08050f,
    6px 8px 0 #1a0a2e,
    0 0 28px rgba(111, 243, 194, 0.45);
  animation: mint-glow 4.5s ease-in-out infinite;
}

.word-pink {
  color: #ff5aa8;
  text-shadow:
    -4px -4px 0 #08050f,
    4px -4px 0 #08050f,
    -4px 4px 0 #08050f,
    4px 4px 0 #08050f,
    0 0 0 #08050f,
    6px 8px 0 #2a0a1c,
    0 0 28px rgba(255, 90, 168, 0.45);
}

.tagline {
  max-width: 34ch;
  font-size: 1.18rem;
  line-height: 1.55;
  color: #ddd4f0;
  margin-bottom: 22px;
}

.ca-bar {
  display: flex;
  align-items: center;
  gap: 10px;
  width: min(520px, 100%);
  padding: 8px 8px 8px 14px;
  margin-bottom: 22px;
  border: 3px solid var(--line);
  border-radius: 16px;
  background: #120c1d;
  box-shadow: 4px 4px 0 var(--line);
}

.ca-label {
  font-family: "Luckiest Guy", cursive;
  letter-spacing: 0.08em;
  color: var(--mint);
}

#ca-value {
  flex: 1;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  font-size: 0.92rem;
  color: #cfc6e4;
}

#ca-copy {
  padding: 8px 12px;
  border: 3px solid var(--line);
  border-radius: 10px;
  background: var(--mint);
  color: var(--ink);
  font-family: "Fredoka", sans-serif;
  font-weight: 700;
}

#ca-copy:disabled {
  background: #3a3348;
  color: #9a92ad;
  cursor: not-allowed;
}

#ca-copy.is-copied {
  background: var(--pink);
  color: #fff;
}

.hero-actions,
.join-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.btn {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 13px 18px;
  border: 3px solid var(--line);
  border-radius: 16px;
  font-family: "Luckiest Guy", cursive;
  letter-spacing: 0.04em;
  font-size: 1.02rem;
  box-shadow: 5px 6px 0 var(--line);
  overflow: hidden;
  transition: transform 0.18s ease, box-shadow 0.18s ease;
}

.btn::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(110deg, transparent 30%, rgba(255, 255, 255, 0.38) 48%, transparent 62%);
  transform: translateX(-130%);
  animation: shine-sweep 4.5s ease-in-out infinite;
}

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

.btn:hover {
  transform: translate(-3px, -3px);
  box-shadow: 8px 9px 0 var(--line);
}

.btn:active {
  transform: translate(2px, 2px);
  box-shadow: 2px 2px 0 var(--line);
}

.btn-mint { background: linear-gradient(180deg, #9bffd8, #3ee8b5); color: var(--ink); }
.btn-pink { background: linear-gradient(180deg, #ff9ac8, #ff5aa8); color: #2a0718; }
.btn-ghost { background: #171225; color: #fff; }

.ticker {
  overflow: hidden;
  border-block: 3px solid var(--line);
  background: linear-gradient(90deg, #1a1230, #24112a);
  padding: 10px 0;
}

.ticker-track {
  display: flex;
  align-items: center;
  gap: 22px;
  width: max-content;
  animation: ticker 22s linear infinite;
}

.ticker-track span {
  font-family: "Luckiest Guy", cursive;
  letter-spacing: 0.08em;
  font-size: 1.15rem;
  color: #f7f1ff;
}

.ticker-track i {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--mint);
  box-shadow: 0 0 12px var(--mint);
}

.about,
.howto,
.chart,
.join {
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto;
  padding: 92px 0 20px;
}

.section-head {
  text-align: center;
  margin-bottom: 42px;
}

.eyebrow {
  display: inline-block;
  margin-bottom: 10px;
  padding: 4px 12px;
  border: 3px solid var(--line);
  border-radius: 999px;
  background: #2a1638;
  color: #ffb7dc;
  font-family: "Fredoka", sans-serif;
  font-weight: 700;
  font-size: 0.82rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.section-title {
  font-family: "Luckiest Guy", cursive;
  font-size: clamp(2.4rem, 6vw, 4.4rem);
  letter-spacing: 0.05em;
  color: #f6f1ff;
  margin: 8px 0 14px;
  text-shadow:
    -3px -3px 0 #08050f,
    3px -3px 0 #08050f,
    -3px 3px 0 #08050f,
    3px 3px 0 #08050f,
    5px 6px 0 #1a0a2e,
    0 0 22px rgba(181, 107, 255, 0.35);
}

.section-lead {
  max-width: 46ch;
  margin: 0 auto;
  color: var(--muted);
  font-size: 1.05rem;
  line-height: 1.6;
}

.about-grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 22px;
}

.script-card {
  border: 3px solid var(--line);
  border-radius: 28px;
  padding: 26px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.03), transparent),
    #161022;
  box-shadow: 8px 10px 0 var(--line), 0 0 40px rgba(181, 107, 255, 0.12);
  transform: rotate(-1.2deg);
}

.script-card header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-bottom: 14px;
  margin-bottom: 16px;
  border-bottom: 2px dashed rgba(255, 255, 255, 0.12);
}

.script-card header span {
  font-family: "Luckiest Guy", cursive;
  font-size: 2rem;
  color: var(--pink);
}

.script-card header strong {
  font-family: "Luckiest Guy", cursive;
  letter-spacing: 0.05em;
}

.script-card dl {
  display: grid;
  gap: 14px;
}

.script-card dt {
  font-family: "Fredoka", sans-serif;
  font-weight: 700;
  color: var(--mint);
  font-size: 0.82rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.script-card dd {
  color: #ece6f8;
  line-height: 1.5;
}

.script-card footer {
  margin-top: 20px;
  color: #9b93b3;
  font-style: italic;
}

.about-cards {
  display: grid;
  gap: 14px;
}

.sticker {
  border: 3px solid var(--line);
  border-radius: 22px;
  padding: 20px;
  background: #14101f;
  box-shadow: 6px 7px 0 var(--line);
  transition: transform 0.25s ease;
}

.sticker:nth-child(2) { background: #1a1228; }
.sticker:nth-child(3) { background: #121a22; }

.sticker:hover {
  transform: translate(-3px, -4px) rotate(-0.6deg);
}

.sticker h3 {
  font-family: "Luckiest Guy", cursive;
  letter-spacing: 0.04em;
  font-size: 1.35rem;
  margin-bottom: 8px;
  color: #fff;
}

.sticker p {
  color: var(--muted);
  line-height: 1.55;
}

.dose-path {
  list-style: none;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}

.dose {
  position: relative;
  border: 3px solid var(--line);
  border-radius: 24px;
  padding: 22px 18px 20px;
  background: #14101f;
  box-shadow: 6px 7px 0 var(--line);
  min-height: 100%;
}

.dose:nth-child(even) {
  transform: translateY(18px);
}

.dose-num {
  font-family: "Luckiest Guy", cursive;
  color: var(--pink);
  letter-spacing: 0.08em;
  margin-bottom: 12px;
}

.dose-icon {
  width: 64px;
  height: 64px;
  display: grid;
  place-items: center;
  margin-bottom: 14px;
  border: 3px solid var(--line);
  border-radius: 18px;
  background: #0f0c18;
  box-shadow: 4px 4px 0 var(--line);
}

.dose-icon img {
  width: 34px;
  height: 34px;
  object-fit: contain;
}

.dose h3 {
  font-family: "Luckiest Guy", cursive;
  letter-spacing: 0.03em;
  font-size: 1.25rem;
  margin-bottom: 8px;
}

.dose p {
  color: var(--muted);
  line-height: 1.5;
  font-size: 0.96rem;
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 12px;
  color: var(--mint);
  font-family: "Fredoka", sans-serif;
  font-weight: 700;
}

.text-link img {
  width: 16px;
  height: 16px;
}

.head-link {
  justify-content: center;
  margin-top: 16px;
}

.chart-frame {
  border: 3px solid var(--line);
  border-radius: 28px;
  overflow: hidden;
  background: #0c0a12;
  box-shadow: 8px 10px 0 var(--line), 0 0 50px rgba(0, 173, 238, 0.12);
}

.chart-chrome {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 12px 16px;
  background: #161225;
  border-bottom: 3px solid var(--line);
}

.chart-chrome span {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  border: 2px solid var(--line);
}

.chart-chrome span:nth-child(1) { background: #ff5aa8; }
.chart-chrome span:nth-child(2) { background: #ffd166; }
.chart-chrome span:nth-child(3) { background: #6ff3c2; }

.chart-chrome strong {
  margin-left: 8px;
  font-family: "Luckiest Guy", cursive;
  letter-spacing: 0.05em;
}

.chart-frame iframe {
  width: 100%;
  height: min(680px, 78vh);
  border: 0;
  background: #0b0e13;
}

.join {
  padding-bottom: 40px;
}

.banner-frame {
  position: relative;
  margin: 0 auto 28px;
  border: 4px solid var(--line);
  border-radius: 32px;
  overflow: hidden;
  box-shadow: 10px 12px 0 var(--line), 0 0 60px rgba(181, 107, 255, 0.22);
}

.banner-frame img {
  width: 100%;
  height: auto;
  display: block;
  animation: banner-drift 16s ease-in-out infinite;
}

.banner-glow {
  position: absolute;
  inset: auto 0 0;
  height: 30%;
  background: linear-gradient(180deg, transparent, rgba(7, 5, 15, 0.35));
}

.join-actions {
  justify-content: center;
}

.foot {
  margin-top: 70px;
  padding: 36px 24px 48px;
  text-align: center;
  border-top: 3px solid var(--line);
  background: rgba(8, 6, 16, 0.8);
}

.foot-brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 12px;
  font-family: "Luckiest Guy", cursive;
  letter-spacing: 0.05em;
  font-size: 1.2rem;
}

.foot-brand img {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  border: 3px solid var(--line);
}

.foot p {
  color: var(--muted);
  margin-bottom: 16px;
}

.foot-links {
  display: flex;
  justify-content: center;
  gap: 18px;
  flex-wrap: wrap;
  margin-bottom: 16px;
}

.foot-links a {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: "Fredoka", sans-serif;
  font-weight: 700;
}

.foot-links img {
  width: 16px;
  height: 16px;
}

.foot small {
  display: block;
  color: #7d758f;
  font-size: 0.78rem;
}

.reveal {
  opacity: 0;
  transform: translateY(28px);
}

.reveal.is-in {
  animation: rise 0.8s ease forwards;
}

.delay-1.is-in { animation-delay: 0.12s; }
.delay-2.is-in { animation-delay: 0.24s; }
.delay-3.is-in { animation-delay: 0.36s; }

@keyframes fog-drift {
  0%, 100% { transform: translate(0, 0) scale(1); }
  50% { transform: translate(40px, -30px) scale(1.08); }
}

@keyframes streak-run {
  0% { transform: translateX(-20%) rotate(-24deg); opacity: 0; }
  20% { opacity: 0.22; }
  100% { transform: translateX(80%) rotate(-24deg); opacity: 0; }
}

@keyframes mascot-bob {
  0%, 100% { transform: translateY(0) rotate(-8deg); }
  50% { transform: translateY(-16px) rotate(-4deg); }
}

@keyframes spin {
  to { transform: rotate(360deg); }
}

@keyframes twinkle {
  0%, 100% { transform: scale(0.6) rotate(0deg); opacity: 0.4; }
  50% { transform: scale(1.2) rotate(20deg); opacity: 1; }
}

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

@keyframes mint-glow {
  0%, 100% {
    text-shadow:
      -4px -4px 0 #08050f,
      4px -4px 0 #08050f,
      -4px 4px 0 #08050f,
      4px 4px 0 #08050f,
      6px 8px 0 #1a0a2e,
      0 0 18px rgba(111, 243, 194, 0.3);
  }
  50% {
    text-shadow:
      -4px -4px 0 #08050f,
      4px -4px 0 #08050f,
      -4px 4px 0 #08050f,
      4px 4px 0 #08050f,
      6px 8px 0 #1a0a2e,
      0 0 32px rgba(181, 107, 255, 0.55);
  }
}

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

@keyframes banner-drift {
  0%, 100% { transform: scale(1) translateY(0); }
  50% { transform: scale(1.03) translateY(-8px); }
}

@keyframes rise {
  to { opacity: 1; transform: none; }
}

@keyframes aura-pulse {
  0%, 100% { box-shadow: 0 0 12px rgba(181, 107, 255, 0.35); }
  50% { box-shadow: 0 0 24px rgba(111, 243, 194, 0.55); }
}

@keyframes shine-sweep {
  0%, 55% { transform: translateX(-130%); }
  75% { transform: translateX(130%); }
  100% { transform: translateX(130%); }
}

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

  .hero-stage {
    text-align: center;
  }

  .chip-row,
  .hero-actions {
    justify-content: center;
  }

  .tagline,
  .ca-bar {
    margin-left: auto;
    margin-right: auto;
  }

  .wordmark {
    align-items: center;
  }

  .dose:nth-child(even) {
    transform: none;
  }

  .nav-links {
    position: absolute;
    top: calc(100% + 10px);
    left: 0;
    right: 0;
    display: none;
    flex-direction: column;
    gap: 0;
    padding: 10px;
    border: 3px solid var(--line);
    border-radius: 22px;
    background: #120c1c;
    box-shadow: 5px 6px 0 var(--line);
  }

  .nav-links a {
    padding: 12px;
  }

  .nav.is-open .nav-links {
    display: flex;
  }

  .menu-btn {
    display: flex;
  }

  .mascot-wrap {
    width: min(320px, 86vw);
  }
}

@media (max-width: 640px) {
  .word {
    font-size: clamp(2.6rem, 16vw, 3.6rem);
  }

  .nav-brand small {
    display: none;
  }

  .hero {
    padding-top: 120px;
  }

  .chart-frame iframe {
    height: 520px;
  }
}

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

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