:root {
  --void: #04060b;
  --space: #0a0f18;
  --ink: #e8eef7;
  --muted: #9aa6b8;
  --gold: #e4bf6a;
  --gold-bright: #ffe4a3;
  --gold-deep: #b8893a;
  --lunar: #c7d0dc;
  --line: rgba(228, 191, 106, 0.22);
  --glass: rgba(12, 18, 30, 0.55);
  --glow: rgba(228, 191, 106, 0.45);
  --font-display: "Cormorant Garamond", Georgia, serif;
  --font-anime: "Zen Maru Gothic", "Sora", sans-serif;
  --font-body: "Sora", system-ui, sans-serif;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
  --nav-h: 76px;
}

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

html {
  scroll-behavior: smooth;
}

body {
  min-height: 100vh;
  color: var(--ink);
  font-family: var(--font-body);
  background: var(--void);
  overflow-x: hidden;
  line-height: 1.6;
}

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

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

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

ul,
ol {
  list-style: none;
}

.void-wash {
  position: fixed;
  inset: 0;
  z-index: -5;
  background:
    radial-gradient(ellipse 90% 60% at 50% -10%, rgba(228, 191, 106, 0.14), transparent 55%),
    radial-gradient(ellipse 50% 40% at 85% 20%, rgba(120, 150, 190, 0.08), transparent 60%),
    radial-gradient(ellipse 45% 35% at 10% 70%, rgba(180, 140, 70, 0.07), transparent 55%),
    linear-gradient(180deg, #070b14 0%, #04060b 45%, #080c14 100%);
}

.nebula {
  position: fixed;
  z-index: -4;
  width: 55vmax;
  height: 55vmax;
  border-radius: 50%;
  filter: blur(80px);
  opacity: 0.35;
  pointer-events: none;
  animation: nebula-drift 28s ease-in-out infinite alternate;
}

.nebula--a {
  top: -10%;
  left: -8%;
  background: radial-gradient(circle, rgba(228, 191, 106, 0.35), transparent 70%);
}

.nebula--b {
  right: -12%;
  bottom: 10%;
  background: radial-gradient(circle, rgba(140, 170, 210, 0.22), transparent 70%);
  animation-duration: 36s;
  animation-direction: alternate-reverse;
}

.dust-layer {
  position: fixed;
  inset: 0;
  z-index: -3;
  pointer-events: none;
  background-image:
    radial-gradient(1px 1px at 20% 30%, rgba(255, 255, 255, 0.45), transparent),
    radial-gradient(1px 1px at 70% 15%, rgba(255, 228, 163, 0.4), transparent),
    radial-gradient(1.5px 1.5px at 40% 80%, rgba(255, 255, 255, 0.3), transparent),
    radial-gradient(1px 1px at 85% 60%, rgba(255, 228, 163, 0.35), transparent),
    radial-gradient(1px 1px at 10% 55%, rgba(255, 255, 255, 0.25), transparent);
  background-size: 100% 100%;
  animation: dust-twinkle 6s ease-in-out infinite;
}

#starfield {
  position: fixed;
  inset: 0;
  z-index: -2;
  width: 100%;
  height: 100%;
  pointer-events: none;
}

.cursor-halo {
  position: fixed;
  width: 240px;
  height: 240px;
  margin: -120px 0 0 -120px;
  border-radius: 50%;
  pointer-events: none;
  z-index: 50;
  background: radial-gradient(circle, rgba(228, 191, 106, 0.16), transparent 65%);
  opacity: 0;
  transition: opacity 0.35s ease;
  mix-blend-mode: screen;
}

body.is-pointer .cursor-halo {
  opacity: 1;
}

/* NAV */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  height: var(--nav-h);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 0 clamp(1rem, 4vw, 2.5rem);
  backdrop-filter: blur(16px);
  background: rgba(4, 6, 11, 0.45);
  border-bottom: 1px solid transparent;
  transition: border-color 0.35s ease, background 0.35s ease;
}

.nav.is-scrolled {
  background: rgba(4, 6, 11, 0.78);
  border-bottom-color: var(--line);
}

.nav__brand {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  z-index: 2;
}

.nav__logo {
  width: 42px;
  height: 42px;
  object-fit: contain;
  filter: drop-shadow(0 0 12px var(--glow));
  animation: logo-breathe 4.5s ease-in-out infinite;
}

.nav__name {
  font-family: var(--font-anime);
  font-weight: 700;
  font-size: 1.05rem;
  letter-spacing: 0.04em;
}

.nav__links {
  display: flex;
  align-items: center;
  gap: clamp(1rem, 3vw, 2rem);
}

.nav__links a {
  position: relative;
  font-size: 0.86rem;
  font-weight: 500;
  color: var(--muted);
  letter-spacing: 0.04em;
  transition: color 0.25s ease;
}

.nav__links a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -6px;
  width: 100%;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
  transform: scaleX(0);
  transition: transform 0.35s var(--ease);
}

.nav__links a:hover,
.nav__links a.is-active {
  color: var(--gold-bright);
}

.nav__links a:hover::after,
.nav__links a.is-active::after {
  transform: scaleX(1);
}

.nav__actions {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  z-index: 2;
}

.nav__social {
  width: 38px;
  height: 38px;
  display: grid;
  place-items: center;
  border: 1px solid var(--line);
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.03);
  transition: transform 0.3s var(--ease), border-color 0.3s ease, box-shadow 0.3s ease;
}

.nav__social img {
  width: 16px;
  height: 16px;
  filter: brightness(0) invert(0.9);
}

.nav__social:hover {
  transform: translateY(-2px);
  border-color: var(--gold);
  box-shadow: 0 0 18px rgba(228, 191, 106, 0.25);
}

.nav__burger {
  display: none;
  width: 42px;
  height: 42px;
  place-items: center;
  gap: 5px;
  flex-direction: column;
}

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

.nav__burger[aria-expanded="true"] span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.nav__burger[aria-expanded="true"] span:nth-child(2) {
  opacity: 0;
}

.nav__burger[aria-expanded="true"] span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

/* HERO */
.hero {
  position: relative;
  min-height: 100vh;
  display: grid;
  place-items: center;
  padding: calc(var(--nav-h) + 2rem) 1.25rem 5rem;
  overflow: hidden;
}

.hero__rings {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.hero__rings span {
  position: absolute;
  top: 48%;
  left: 50%;
  translate: -50% -50%;
  border: 1px solid rgba(228, 191, 106, 0.12);
  border-radius: 50%;
  animation: orbit-spin 40s linear infinite;
}

.hero__rings span:nth-child(1) {
  width: min(72vw, 560px);
  height: min(72vw, 560px);
}

.hero__rings span:nth-child(2) {
  width: min(90vw, 720px);
  height: min(90vw, 720px);
  animation-duration: 58s;
  animation-direction: reverse;
  border-style: dashed;
  opacity: 0.7;
}

.hero__rings span:nth-child(3) {
  width: min(110vw, 900px);
  height: min(110vw, 900px);
  animation-duration: 80s;
  opacity: 0.45;
}

.hero__crescent {
  position: absolute;
  top: 18%;
  right: 8%;
  width: 90px;
  height: 90px;
  border-radius: 50%;
  box-shadow: inset -18px 0 0 0 rgba(228, 191, 106, 0.55);
  filter: drop-shadow(0 0 20px rgba(228, 191, 106, 0.35));
  animation: crescent-float 8s ease-in-out infinite;
  opacity: 0.55;
}

.hero__shoot {
  position: absolute;
  top: 22%;
  left: -10%;
  width: 140px;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--gold-bright), transparent);
  opacity: 0;
  transform: rotate(-18deg);
  animation: shooting-star 7s ease-in-out infinite;
}

.hero__stage {
  position: relative;
  z-index: 1;
  width: min(920px, 100%);
  text-align: center;
}

.hero__media {
  position: relative;
  width: min(320px, 68vw);
  margin: 0 auto 1.75rem;
  aspect-ratio: 1;
}

.hero__glow {
  position: absolute;
  inset: -18%;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(228, 191, 106, 0.4), transparent 68%);
  filter: blur(18px);
  animation: glow-pulse 3.8s ease-in-out infinite;
}

.hero__video,
.hero__logo {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: contain;
  border-radius: 28%;
}

.hero__video {
  opacity: 0;
  transition: opacity 0.6s ease;
  filter: drop-shadow(0 0 28px rgba(228, 191, 106, 0.35));
}

.hero__video.is-ready {
  opacity: 1;
}

.hero__media:has(.hero__video.is-ready) .hero__logo {
  opacity: 0;
  pointer-events: none;
}

.hero__logo {
  filter: drop-shadow(0 0 28px rgba(228, 191, 106, 0.45));
  animation: logo-float 5.5s ease-in-out infinite;
  transition: opacity 0.5s ease;
}

.hero__brand {
  font-family: var(--font-anime);
  font-size: clamp(1.8rem, 5vw, 3.2rem);
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  background: linear-gradient(180deg, #fff8e8 0%, var(--gold) 55%, var(--gold-deep) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  text-shadow: 0 0 40px rgba(228, 191, 106, 0.2);
  margin-bottom: 0.35rem;
}

.hero__title {
  font-family: var(--font-display);
  font-size: clamp(3.2rem, 10vw, 6.5rem);
  font-weight: 700;
  line-height: 0.9;
  letter-spacing: 0.02em;
  margin-bottom: 0.85rem;
}

.hero__title span {
  display: inline-block;
  background: linear-gradient(120deg, var(--gold-bright), #fff, var(--gold));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  animation: shimmer 5s linear infinite;
  background-size: 200% 100%;
}

.hero__tag {
  font-family: var(--font-display);
  font-size: clamp(1.2rem, 2.6vw, 1.7rem);
  font-style: italic;
  color: var(--lunar);
  margin-bottom: 0.85rem;
}

.hero__lead {
  max-width: 620px;
  margin: 0 auto 1.75rem;
  color: var(--muted);
  font-size: 0.98rem;
}

.hero__cta {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.85rem;
  margin-bottom: 1.5rem;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.55rem;
  min-height: 48px;
  padding: 0.85rem 1.55rem;
  border-radius: 999px;
  font-weight: 600;
  font-size: 0.92rem;
  letter-spacing: 0.03em;
  transition: transform 0.3s var(--ease), box-shadow 0.3s ease, background 0.3s ease, border-color 0.3s ease;
}

.btn img {
  width: 18px;
  height: 18px;
}

.btn--gold {
  color: #1a1408;
  background: linear-gradient(135deg, var(--gold-bright), var(--gold) 45%, var(--gold-deep));
  box-shadow: 0 0 0 1px rgba(255, 228, 163, 0.35), 0 10px 30px rgba(228, 191, 106, 0.28);
}

.btn--gold:hover {
  transform: translateY(-3px) scale(1.02);
  box-shadow: 0 0 0 1px rgba(255, 228, 163, 0.55), 0 16px 40px rgba(228, 191, 106, 0.4);
}

.btn--ghost {
  color: var(--gold-bright);
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.03);
  backdrop-filter: blur(8px);
}

.btn--ghost:hover {
  transform: translateY(-3px);
  border-color: var(--gold);
  box-shadow: 0 0 24px rgba(228, 191, 106, 0.2);
}

.hero__links,
.chart__actions,
.join__socials {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.75rem;
}

.chip {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  padding: 0.65rem 1rem;
  border-radius: 999px;
  border: 1px solid var(--line);
  background: rgba(8, 12, 20, 0.65);
  color: var(--lunar);
  font-size: 0.82rem;
  font-weight: 500;
  transition: transform 0.3s var(--ease), border-color 0.3s ease, box-shadow 0.3s ease, color 0.3s ease;
}

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

.chip:hover {
  transform: translateY(-2px);
  color: var(--gold-bright);
  border-color: rgba(228, 191, 106, 0.55);
  box-shadow: 0 8px 24px rgba(228, 191, 106, 0.15);
}

button.chip,
button.social {
  cursor: pointer;
  font: inherit;
}

.ca-inline {
  color: var(--gold);
  word-break: break-all;
  font-family: ui-monospace, "Cascadia Code", Consolas, monospace;
  font-size: 0.86em;
}

.ca-btn.is-copied {
  color: var(--gold-bright);
  border-color: var(--gold);
}

.hero__scroll {
  position: absolute;
  bottom: 1.5rem;
  left: 50%;
  translate: -50% 0;
  width: 28px;
  height: 44px;
  border: 1px solid var(--line);
  border-radius: 999px;
  display: grid;
  place-items: start center;
  padding-top: 8px;
}

.hero__scroll span {
  width: 4px;
  height: 8px;
  border-radius: 999px;
  background: var(--gold);
  animation: scroll-bounce 1.8s ease-in-out infinite;
}

/* SECTIONS */
.section {
  position: relative;
  padding: clamp(4.5rem, 10vw, 7.5rem) clamp(1.15rem, 4vw, 2.5rem);
}

.section__head {
  max-width: 720px;
  margin: 0 auto 3rem;
  text-align: center;
}

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

.section__head h2 {
  font-family: var(--font-display);
  font-size: clamp(2.4rem, 6vw, 4rem);
  font-weight: 600;
  line-height: 1.05;
  margin-bottom: 0.85rem;
  background: linear-gradient(180deg, #fff 0%, var(--lunar) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.section__lead {
  color: var(--muted);
  font-size: 1rem;
}

/* ABOUT */
.about {
  overflow: hidden;
}

.about__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.15rem;
  max-width: 1100px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.about__panel {
  position: relative;
  padding: 1.75rem 1.4rem;
  border: 1px solid rgba(255, 255, 255, 0.06);
  background:
    linear-gradient(160deg, rgba(255, 255, 255, 0.04), transparent 55%),
    rgba(8, 12, 22, 0.55);
  backdrop-filter: blur(10px);
  overflow: hidden;
  transition: transform 0.4s var(--ease), border-color 0.4s ease, box-shadow 0.4s ease;
}

.about__panel::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(120deg, transparent 30%, rgba(228, 191, 106, 0.08), transparent 70%);
  transform: translateX(-120%);
  transition: transform 0.7s var(--ease);
}

.about__panel:hover {
  transform: translateY(-6px);
  border-color: rgba(228, 191, 106, 0.35);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.35), 0 0 30px rgba(228, 191, 106, 0.08);
}

.about__panel:hover::before {
  transform: translateX(120%);
}

.about__panel--gold {
  border-color: rgba(228, 191, 106, 0.28);
  box-shadow: inset 0 0 40px rgba(228, 191, 106, 0.05);
}

.about__mark {
  width: 42px;
  height: 42px;
  margin-bottom: 1.1rem;
  border-radius: 50%;
  background:
    radial-gradient(circle at 65% 35%, transparent 42%, var(--gold) 43% 58%, transparent 59%),
    radial-gradient(circle, rgba(228, 191, 106, 0.2), transparent 70%);
  box-shadow: 0 0 18px rgba(228, 191, 106, 0.25);
}

.about__panel h3 {
  font-family: var(--font-anime);
  font-size: 1.2rem;
  font-weight: 700;
  margin-bottom: 0.55rem;
  color: var(--gold-bright);
}

.about__panel p {
  color: var(--muted);
  font-size: 0.94rem;
}

/* HOW TO BUY */
.steps {
  max-width: 860px;
  margin: 0 auto;
  display: grid;
  gap: 1rem;
}

.step {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 1.25rem;
  align-items: start;
  padding: 1.35rem 1.4rem;
  border-left: 2px solid transparent;
  background: linear-gradient(90deg, rgba(228, 191, 106, 0.06), transparent 55%);
  border-image: linear-gradient(180deg, var(--gold), transparent) 1;
  transition: transform 0.35s var(--ease), background 0.35s ease;
}

.step:hover {
  transform: translateX(8px);
  background: linear-gradient(90deg, rgba(228, 191, 106, 0.12), transparent 60%);
}

.step__num {
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 600;
  line-height: 1;
  color: var(--gold);
  text-shadow: 0 0 20px rgba(228, 191, 106, 0.35);
}

.step h3 {
  font-family: var(--font-anime);
  font-size: 1.15rem;
  margin-bottom: 0.35rem;
}

.step p {
  color: var(--muted);
  font-size: 0.94rem;
}

/* CHART */
.chart__actions {
  margin-bottom: 1.25rem;
}

.chart__frame {
  max-width: 1100px;
  margin: 0 auto;
  height: min(640px, 72vh);
  border: 1px solid var(--line);
  background: rgba(0, 0, 0, 0.45);
  box-shadow: 0 0 0 1px rgba(255, 255, 255, 0.03), 0 30px 80px rgba(0, 0, 0, 0.45), 0 0 60px rgba(228, 191, 106, 0.08);
  overflow: hidden;
  position: relative;
}

.chart__frame::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  box-shadow: inset 0 0 40px rgba(228, 191, 106, 0.05);
}

.chart__frame iframe {
  width: 100%;
  height: 100%;
  border: 0;
}

/* JOIN */
.join__banner {
  position: relative;
  max-width: 1100px;
  margin: 0 auto 2rem;
  overflow: hidden;
  border: 1px solid var(--line);
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.4), 0 0 40px rgba(228, 191, 106, 0.1);
  transform-style: preserve-3d;
  transition: transform 0.2s ease;
}

.join__banner img {
  width: 100%;
  height: auto;
  display: block;
  min-height: 180px;
  object-fit: cover;
  background:
    radial-gradient(circle at 50% 40%, rgba(228, 191, 106, 0.18), transparent 55%),
    #0a0f18;
}

.join__veil {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 55%, rgba(4, 6, 11, 0.55));
  pointer-events: none;
}

.social {
  display: inline-flex;
  align-items: center;
  gap: 0.65rem;
  min-width: 150px;
  justify-content: center;
  padding: 0.9rem 1.15rem;
  border: 1px solid var(--line);
  background: rgba(8, 12, 20, 0.7);
  color: var(--ink);
  font-weight: 600;
  font-size: 0.9rem;
  transition: transform 0.3s var(--ease), border-color 0.3s ease, box-shadow 0.3s ease, background 0.3s ease;
}

.social img {
  width: 18px;
  height: 18px;
  filter: brightness(0) invert(0.92);
}

.social:hover {
  transform: translateY(-4px);
  border-color: var(--gold);
  background: rgba(228, 191, 106, 0.08);
  box-shadow: 0 12px 30px rgba(228, 191, 106, 0.15);
}

/* FOOTER */
.footer {
  padding: 2.5rem 1.25rem 3rem;
  border-top: 1px solid var(--line);
  text-align: center;
  display: grid;
  gap: 0.85rem;
  justify-items: center;
  background: linear-gradient(180deg, transparent, rgba(228, 191, 106, 0.04));
}

.footer__brand {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  font-family: var(--font-anime);
  font-weight: 700;
}

.footer__brand img {
  width: 36px;
  height: 36px;
  object-fit: contain;
  filter: drop-shadow(0 0 10px var(--glow));
}

.footer__brand strong {
  color: var(--gold);
  font-weight: 700;
}

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

.footer__links {
  display: flex;
  gap: 0.75rem;
}

.footer__links a {
  width: 40px;
  height: 40px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  border: 1px solid var(--line);
  transition: transform 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease;
}

.footer__links img {
  width: 16px;
  height: 16px;
  filter: brightness(0) invert(0.9);
}

.footer__links a:hover {
  transform: translateY(-2px);
  border-color: var(--gold);
  box-shadow: 0 0 16px rgba(228, 191, 106, 0.25);
}

/* REVEAL */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.8s var(--ease), transform 0.8s var(--ease);
}

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

/* ANIMATIONS */
@keyframes logo-breathe {
  0%, 100% { filter: drop-shadow(0 0 10px rgba(228, 191, 106, 0.35)); }
  50% { filter: drop-shadow(0 0 18px rgba(228, 191, 106, 0.7)); }
}

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

@keyframes glow-pulse {
  0%, 100% { opacity: 0.65; transform: scale(0.96); }
  50% { opacity: 1; transform: scale(1.05); }
}

@keyframes orbit-spin {
  to { transform: translate(-50%, -50%) rotate(360deg); }
}

@keyframes crescent-float {
  0%, 100% { transform: translateY(0) rotate(-8deg); }
  50% { transform: translateY(-14px) rotate(4deg); }
}

@keyframes shooting-star {
  0%, 70% { opacity: 0; left: -10%; }
  75% { opacity: 1; }
  100% { opacity: 0; left: 110%; }
}

@keyframes shimmer {
  0% { background-position: 0% 50%; }
  100% { background-position: 200% 50%; }
}

@keyframes scroll-bounce {
  0%, 100% { transform: translateY(0); opacity: 1; }
  50% { transform: translateY(12px); opacity: 0.35; }
}

@keyframes nebula-drift {
  from { transform: translate(0, 0) scale(1); }
  to { transform: translate(4%, 6%) scale(1.08); }
}

@keyframes dust-twinkle {
  0%, 100% { opacity: 0.55; }
  50% { opacity: 1; }
}

/* RESPONSIVE */
@media (max-width: 900px) {
  .about__grid {
    grid-template-columns: 1fr;
  }

  .nav__burger {
    display: grid;
  }

  .nav__links {
    position: fixed;
    inset: 0;
    flex-direction: column;
    justify-content: center;
    gap: 1.75rem;
    background: rgba(4, 6, 11, 0.94);
    backdrop-filter: blur(18px);
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.35s ease;
  }

  .nav__links.is-open {
    opacity: 1;
    pointer-events: auto;
  }

  .nav__links a {
    font-size: 1.35rem;
    color: var(--ink);
  }

  .hero__crescent {
    width: 56px;
    height: 56px;
    top: 14%;
    right: 4%;
  }
}

@media (max-width: 600px) {
  .hero {
    padding-bottom: 4rem;
  }

  .hero__media {
    width: min(250px, 72vw);
  }

  .chip,
  .social {
    width: 100%;
    justify-content: center;
  }

  .chart__frame {
    height: 480px;
  }

  .step {
    grid-template-columns: 1fr;
    gap: 0.55rem;
  }
}

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

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