:root {
  --void: #000000;
  --smoke: #050508;
  --obsidian: #0d0c11;
  --onyx: #12151d;
  --fog: #ababba;
  --ash: #848895;
  --bone: #ffffff;
  --sol-purple: #9945ff;
  --sol-green: #14f195;
  --sol-cyan: #00ffa3;
  --zec-gold: #f4b82a;
  --zec-amber: #ffd56a;
  --cat-beige: #d4b896;
  --hairline: color-mix(in srgb, var(--bone) 12%, transparent);
  --font-display: "Syne", sans-serif;
  --font-body: "Space Grotesk", sans-serif;
  --nav-h: 72px;
  color-scheme: dark;
}

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

html {
  scroll-behavior: smooth;
}

body {
  min-height: 100vh;
  font-family: var(--font-body);
  background: var(--void);
  color: var(--bone);
  overflow-x: hidden;
  cursor: none;
}

body.touch-device {
  cursor: auto;
}

body.touch-device .cursor-root {
  display: none !important;
}

a,
button,
[role="button"] {
  cursor: none;
}

body.touch-device a,
body.touch-device button,
body.touch-device [role="button"] {
  cursor: pointer;
}

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

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

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

#root {
  min-height: 100vh;
}

::selection {
  background: color-mix(in srgb, var(--sol-green) 40%, transparent);
  color: var(--bone);
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

/* —— Atmosphere —— */
.atmosphere {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 0;
  overflow: hidden;
}

.atmosphere__aurora {
  position: absolute;
  inset: -20%;
  background:
    radial-gradient(ellipse 50% 40% at 15% 20%, color-mix(in srgb, var(--sol-purple) 28%, transparent), transparent 60%),
    radial-gradient(ellipse 45% 35% at 85% 15%, color-mix(in srgb, var(--sol-green) 18%, transparent), transparent 55%),
    radial-gradient(ellipse 40% 30% at 50% 80%, color-mix(in srgb, var(--zec-gold) 10%, transparent), transparent 50%),
    radial-gradient(ellipse 60% 50% at 70% 60%, color-mix(in srgb, var(--sol-purple) 12%, transparent), transparent 60%);
  animation: aurora-drift 18s ease-in-out infinite alternate;
  filter: blur(8px);
}

.atmosphere__grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(color-mix(in srgb, var(--bone) 4%, transparent) 1px, transparent 1px),
    linear-gradient(90deg, color-mix(in srgb, var(--bone) 4%, transparent) 1px, transparent 1px);
  background-size: 64px 64px;
  mask-image: radial-gradient(ellipse 70% 60% at 50% 30%, black 20%, transparent 75%);
  opacity: 0.45;
}

.atmosphere__noise {
  position: absolute;
  inset: 0;
  opacity: 0.035;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}

@keyframes aurora-drift {
  0% {
    transform: translate(0, 0) scale(1);
  }
  100% {
    transform: translate(-3%, 2%) scale(1.05);
  }
}

/* —— Cursor —— */
.cursor-root {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 9999;
}

.cursor-dot {
  position: fixed;
  top: 0;
  left: 0;
  width: 10px;
  height: 10px;
  margin: -5px 0 0 -5px;
  border-radius: 50%;
  background: var(--zec-gold);
  box-shadow:
    0 0 12px color-mix(in srgb, var(--zec-gold) 80%, transparent),
    0 0 24px color-mix(in srgb, var(--sol-green) 40%, transparent);
  will-change: transform;
  z-index: 2;
}

.cursor-ring {
  position: fixed;
  top: 0;
  left: 0;
  width: 40px;
  height: 40px;
  margin: -20px 0 0 -20px;
  border-radius: 50%;
  border: 1.5px solid color-mix(in srgb, var(--sol-green) 70%, transparent);
  background: color-mix(in srgb, var(--sol-purple) 8%, transparent);
  will-change: transform;
  z-index: 1;
  transition:
    width 0.25s ease,
    height 0.25s ease,
    margin 0.25s ease,
    border-color 0.25s ease,
    background 0.25s ease;
}

.cursor-ring.is-hover {
  width: 64px;
  height: 64px;
  margin: -32px 0 0 -32px;
  border-color: var(--zec-gold);
  background: color-mix(in srgb, var(--zec-gold) 12%, transparent);
}

.cursor-trail {
  position: fixed;
  width: 8px;
  height: 8px;
  margin: -4px 0 0 -4px;
  border-radius: 50%;
  pointer-events: none;
  animation: trail-fade 0.6s ease forwards;
  will-change: transform, opacity;
}

@keyframes trail-fade {
  0% {
    opacity: 0.95;
    transform: translateY(0) scale(1);
  }
  100% {
    opacity: 0;
    transform: translateY(18px) scale(0.15);
  }
}

.cursor-trail--gold {
  background: var(--zec-gold);
  box-shadow: 0 0 8px var(--zec-gold);
}

.cursor-trail--teal {
  background: var(--sol-green);
  box-shadow: 0 0 8px var(--sol-green);
}

.cursor-trail--purple {
  background: var(--sol-purple);
  box-shadow: 0 0 8px var(--sol-purple);
}

.cursor-trail--tear {
  width: 6px;
  height: 10px;
  margin: -5px 0 0 -3px;
  border-radius: 50% 50% 50% 50% / 40% 40% 60% 60%;
  background: linear-gradient(180deg, #9fdfff, #4ab8ff);
  box-shadow: 0 0 10px #4ab8ff;
}

/* —— Layout —— */
.page {
  position: relative;
  z-index: 1;
}

.shell {
  width: min(1120px, calc(100% - 2.5rem));
  margin-inline: auto;
}

/* —— Nav —— */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  height: var(--nav-h);
  display: flex;
  align-items: center;
  backdrop-filter: blur(16px);
  background: color-mix(in srgb, var(--void) 72%, transparent);
  border-bottom: 1px solid transparent;
  transition:
    border-color 0.3s ease,
    background 0.3s ease;
}

.nav.is-scrolled {
  border-bottom-color: var(--hairline);
  background: color-mix(in srgb, var(--void) 88%, transparent);
}

.nav__inner {
  width: min(1120px, calc(100% - 2.5rem));
  margin-inline: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.nav__brand {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.05rem;
  letter-spacing: -0.02em;
}

.nav__brand img {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  object-fit: cover;
  box-shadow: 0 0 0 1px var(--hairline);
}

.nav__links {
  display: flex;
  align-items: center;
  gap: 1.75rem;
}

.nav__links a {
  font-size: 0.9rem;
  color: var(--fog);
  transition: color 0.2s ease;
}

.nav__links a:hover {
  color: var(--bone);
}

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

.nav__social {
  width: 38px;
  height: 38px;
  display: grid;
  place-items: center;
  border-radius: 999px;
  border: 1px solid var(--hairline);
  color: var(--fog);
  transition:
    color 0.2s ease,
    border-color 0.2s ease,
    background 0.2s ease;
}

.nav__social:hover {
  color: var(--bone);
  border-color: color-mix(in srgb, var(--sol-green) 50%, transparent);
  background: color-mix(in srgb, var(--sol-green) 8%, transparent);
}

.nav__social svg {
  width: 16px;
  height: 16px;
}

.nav__burger {
  display: none;
  width: 42px;
  height: 42px;
  place-items: center;
  border-radius: 999px;
  border: 1px solid var(--hairline);
}

.nav__burger span {
  display: block;
  width: 16px;
  height: 1.5px;
  background: var(--bone);
  position: relative;
}

.nav__burger span::before,
.nav__burger span::after {
  content: "";
  position: absolute;
  left: 0;
  width: 16px;
  height: 1.5px;
  background: var(--bone);
}

.nav__burger span::before {
  top: -5px;
}

.nav__burger span::after {
  top: 5px;
}

/* —— Buttons —— */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  height: 44px;
  padding: 0 1.25rem;
  border-radius: 999px;
  font-weight: 600;
  font-size: 0.92rem;
  letter-spacing: -0.01em;
  transition:
    transform 0.2s ease,
    box-shadow 0.2s ease,
    background 0.2s ease,
    border-color 0.2s ease;
  white-space: nowrap;
}

.btn__icon {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
  object-fit: contain;
  border-radius: 4px;
}

.btn:active {
  transform: scale(0.97);
}

.btn--primary {
  background: linear-gradient(120deg, var(--sol-purple), #7c3aed 40%, var(--sol-green));
  background-size: 180% 180%;
  color: var(--bone);
  box-shadow:
    0 0 0 1px color-mix(in srgb, var(--bone) 10%, transparent),
    0 8px 32px color-mix(in srgb, var(--sol-purple) 35%, transparent);
  animation: gradient-shift 6s ease infinite;
}

.btn--primary:hover {
  box-shadow:
    0 0 0 1px color-mix(in srgb, var(--bone) 18%, transparent),
    0 12px 40px color-mix(in srgb, var(--sol-green) 30%, transparent);
}

.btn--ghost {
  border: 1px solid var(--hairline);
  background: color-mix(in srgb, var(--bone) 3%, transparent);
  color: var(--bone);
}

.btn--ghost:hover {
  border-color: color-mix(in srgb, var(--zec-gold) 55%, transparent);
  background: color-mix(in srgb, var(--zec-gold) 8%, transparent);
}

.btn--gold {
  background: linear-gradient(120deg, var(--zec-gold), var(--zec-amber));
  color: #1a1200;
  box-shadow: 0 8px 28px color-mix(in srgb, var(--zec-gold) 35%, transparent);
}

.btn--gold:hover {
  box-shadow: 0 12px 36px color-mix(in srgb, var(--zec-gold) 50%, transparent);
}

@keyframes gradient-shift {
  0%,
  100% {
    background-position: 0% 50%;
  }
  50% {
    background-position: 100% 50%;
  }
}

/* —— Hero —— */
.hero {
  position: relative;
  min-height: 100svh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding-top: var(--nav-h);
  overflow: hidden;
}

.hero__plane {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero__banner {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 35%;
  opacity: 0.55;
  transform: scale(1.04);
  animation: hero- ken 28s ease-in-out infinite alternate;
}

@keyframes hero-ken {
  from {
    transform: scale(1.04) translateY(0);
  }
  to {
    transform: scale(1.1) translateY(-2%);
  }
}

.hero__veil {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, color-mix(in srgb, var(--void) 55%, transparent) 0%, color-mix(in srgb, var(--void) 25%, transparent) 35%, var(--void) 100%),
    radial-gradient(ellipse 55% 45% at 70% 40%, color-mix(in srgb, var(--sol-purple) 25%, transparent), transparent 70%);
}

.hero__content {
  position: relative;
  z-index: 2;
  width: min(1120px, calc(100% - 2.5rem));
  margin: 0 auto;
  padding: 2rem 0 4.5rem;
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 2rem;
  align-items: end;
}

.hero__copy {
  max-width: 34rem;
}

.hero__ticker {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 1rem;
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--zec-gold);
}

.hero__ticker-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--sol-green);
  box-shadow: 0 0 12px var(--sol-green);
  animation: pulse-dot 1.8s ease-in-out infinite;
}

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

.hero__brand {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(3.4rem, 9vw, 6.5rem);
  line-height: 0.92;
  letter-spacing: -0.045em;
  margin-bottom: 1.1rem;
  background: linear-gradient(120deg, var(--bone) 30%, var(--zec-amber) 55%, var(--sol-green) 85%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  text-wrap: balance;
}

.hero__lede {
  font-size: clamp(1rem, 2vw, 1.15rem);
  line-height: 1.55;
  color: var(--fog);
  max-width: 28rem;
  margin-bottom: 1.75rem;
}

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

.hero__mascot-wrap {
  justify-self: end;
  position: relative;
  width: min(360px, 100%);
}

.hero__glow {
  position: absolute;
  inset: 10% 5%;
  background: radial-gradient(circle, color-mix(in srgb, var(--zec-gold) 35%, transparent), color-mix(in srgb, var(--sol-purple) 20%, transparent) 45%, transparent 70%);
  filter: blur(28px);
  animation: glow-breathe 4s ease-in-out infinite;
}

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

.hero__mascot {
  position: relative;
  width: 100%;
  aspect-ratio: 1;
  border-radius: 50%;
  object-fit: cover;
  background: var(--obsidian);
  box-shadow:
    0 0 0 1px color-mix(in srgb, var(--zec-gold) 35%, transparent),
    0 0 60px color-mix(in srgb, var(--sol-purple) 25%, transparent),
    0 24px 80px color-mix(in srgb, var(--void) 80%, transparent);
  animation: mascot-float 5.5s ease-in-out infinite;
}

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

.hero__hat-ring {
  position: absolute;
  inset: -6%;
  border-radius: 50%;
  border: 1px dashed color-mix(in srgb, var(--zec-gold) 40%, transparent);
  animation: spin-slow 28s linear infinite;
}

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

.hero__tear {
  position: absolute;
  width: 10px;
  height: 16px;
  border-radius: 50% 50% 50% 50% / 35% 35% 65% 65%;
  background: linear-gradient(180deg, #c8f0ff, #4ab8ff);
  box-shadow: 0 0 14px #4ab8ff;
  animation: tear-drop 3.2s ease-in infinite;
  opacity: 0;
}

.hero__tear:nth-child(1) {
  left: 38%;
  top: 42%;
  animation-delay: 0.2s;
}

.hero__tear:nth-child(2) {
  left: 52%;
  top: 44%;
  animation-delay: 1.4s;
}

@keyframes tear-drop {
  0% {
    opacity: 0;
    transform: translateY(0) scale(0.6);
  }
  15% {
    opacity: 0.9;
  }
  100% {
    opacity: 0;
    transform: translateY(48px) scale(1);
  }
}

.hero__scroll {
  position: absolute;
  bottom: 1.25rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.4rem;
  color: var(--ash);
  font-size: 0.72rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.hero__scroll-line {
  width: 1px;
  height: 36px;
  background: linear-gradient(180deg, var(--sol-green), transparent);
  animation: scroll-line 1.8s ease-in-out infinite;
}

@keyframes scroll-line {
  0% {
    transform: scaleY(0.4);
    transform-origin: top;
    opacity: 0.4;
  }
  50% {
    transform: scaleY(1);
    opacity: 1;
  }
  100% {
    transform: scaleY(0.4);
    transform-origin: bottom;
    opacity: 0.4;
  }
}

/* —— Sections —— */
.section {
  padding: 5.5rem 0;
}

.section__head {
  margin-bottom: 2rem;
  max-width: 36rem;
}

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

.section__title {
  font-family: var(--font-display);
  font-weight: 750;
  font-size: clamp(2rem, 4.5vw, 3rem);
  letter-spacing: -0.035em;
  line-height: 1.05;
  margin-bottom: 0.75rem;
}

.section__sub {
  color: var(--fog);
  font-size: 1.02rem;
  line-height: 1.55;
}

/* —— Chart —— */
.chart-frame {
  position: relative;
  border-radius: 18px;
  overflow: hidden;
  border: 1px solid var(--hairline);
  background: var(--obsidian);
  box-shadow:
    0 0 0 1px color-mix(in srgb, var(--sol-purple) 12%, transparent),
    0 24px 80px color-mix(in srgb, var(--void) 60%, transparent);
  min-height: 520px;
}

.chart-frame iframe {
  width: 100%;
  height: 620px;
  border: 0;
  display: block;
  background: var(--obsidian);
}

.chart-fallback {
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  padding: 2rem;
  text-align: center;
  background:
    radial-gradient(ellipse at 50% 30%, color-mix(in srgb, var(--sol-purple) 18%, transparent), transparent 55%),
    var(--obsidian);
}

.chart-fallback h3 {
  font-family: var(--font-display);
  font-size: 1.5rem;
  margin-bottom: 0.65rem;
}

.chart-fallback p {
  color: var(--fog);
  max-width: 28rem;
  margin: 0 auto 1.5rem;
  line-height: 1.5;
}

.chart-fallback__actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.75rem;
}

/* —— About —— */
.about-strip {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 2.5rem;
  align-items: center;
}

.about-visual {
  position: relative;
}

.about-visual img {
  width: 100%;
  border-radius: 20px;
  object-fit: cover;
  aspect-ratio: 4 / 3;
  box-shadow: 0 0 0 1px var(--hairline);
}

.about-visual__badge {
  position: absolute;
  bottom: 1rem;
  left: 1rem;
  padding: 0.55rem 0.9rem;
  border-radius: 999px;
  background: color-mix(in srgb, var(--void) 75%, transparent);
  backdrop-filter: blur(10px);
  border: 1px solid var(--hairline);
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--zec-gold);
}

.about-copy p {
  color: var(--fog);
  line-height: 1.65;
  margin-bottom: 1.25rem;
  font-size: 1.05rem;
}

.pill-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem;
  margin-top: 0.5rem;
}

.pill {
  padding: 0.45rem 0.85rem;
  border-radius: 999px;
  border: 1px solid var(--hairline);
  font-size: 0.8rem;
  color: var(--fog);
  background: color-mix(in srgb, var(--bone) 3%, transparent);
}

.pill--accent {
  border-color: color-mix(in srgb, var(--sol-green) 40%, transparent);
  color: var(--sol-green);
}

.pill--gold {
  border-color: color-mix(in srgb, var(--zec-gold) 45%, transparent);
  color: var(--zec-gold);
}

/* —— CA bar —— */
.ca-bar {
  margin-top: 1.5rem;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.75rem;
  padding: 0.85rem 1rem;
  border-radius: 14px;
  border: 1px solid var(--hairline);
  background: color-mix(in srgb, var(--bone) 3%, transparent);
}

.ca-bar__label {
  font-size: 0.75rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--ash);
  font-weight: 600;
}

.ca-bar__value {
  flex: 1;
  min-width: 0;
  font-family: ui-monospace, "Cascadia Code", monospace;
  font-size: 0.85rem;
  color: var(--fog);
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.ca-bar__btn {
  height: 36px;
  padding: 0 0.9rem;
  border-radius: 999px;
  border: 1px solid var(--hairline);
  font-size: 0.8rem;
  font-weight: 600;
  transition:
    background 0.2s ease,
    border-color 0.2s ease;
}

.ca-bar__btn:hover {
  border-color: color-mix(in srgb, var(--sol-green) 50%, transparent);
  background: color-mix(in srgb, var(--sol-green) 10%, transparent);
}

/* —— Marquee —— */
.marquee {
  border-block: 1px solid var(--hairline);
  background: color-mix(in srgb, var(--obsidian) 80%, transparent);
  overflow: hidden;
  padding: 0.85rem 0;
}

.marquee__track {
  display: flex;
  gap: 2.5rem;
  width: max-content;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.82rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--fog);
  animation: marquee-scroll 36s linear infinite;
}

.marquee__track span:nth-child(odd) {
  color: var(--zec-gold);
}

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

/* —— Features —— */
.section--tight .section__head {
  margin-bottom: 2.5rem;
}

.section__head--wide {
  max-width: 40rem;
}

.section--alt {
  background:
    radial-gradient(ellipse 60% 50% at 50% 0%, color-mix(in srgb, var(--sol-purple) 12%, transparent), transparent 70%),
    color-mix(in srgb, var(--obsidian) 55%, transparent);
  border-block: 1px solid var(--hairline);
}

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

.feature {
  padding: 1.5rem 0 0;
  border-top: 1px solid var(--hairline);
}

.feature__num {
  display: block;
  margin-bottom: 1rem;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  color: var(--zec-gold);
}

.feature h3 {
  font-family: var(--font-display);
  font-size: 1.15rem;
  letter-spacing: -0.02em;
  margin-bottom: 0.65rem;
}

.feature p {
  color: var(--fog);
  font-size: 0.95rem;
  line-height: 1.55;
}

/* —— Tokenomics —— */
.token-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--hairline);
  border: 1px solid var(--hairline);
  border-radius: 18px;
  overflow: hidden;
  margin-bottom: 1.75rem;
}

.token-stat {
  background: var(--smoke);
  padding: 1.5rem 1.25rem;
}

.token-stat__label {
  display: block;
  margin-bottom: 0.45rem;
  font-size: 0.72rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--ash);
  font-weight: 600;
}

.token-stat__value {
  font-family: var(--font-display);
  font-size: clamp(1.15rem, 2.4vw, 1.45rem);
  letter-spacing: -0.02em;
  background: linear-gradient(120deg, var(--bone), var(--zec-amber));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.token-notes {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.token-note h3 {
  font-family: var(--font-display);
  font-size: 1.05rem;
  margin-bottom: 0.55rem;
}

.token-note p {
  color: var(--fog);
  font-size: 0.95rem;
  line-height: 1.55;
}

.token-note a {
  color: var(--sol-green);
  text-decoration: underline;
  text-underline-offset: 3px;
}

/* —— How to buy —— */
.steps {
  list-style: none;
  display: grid;
  gap: 0;
  border: 1px solid var(--hairline);
  border-radius: 18px;
  overflow: hidden;
  margin-bottom: 1.75rem;
}

.step {
  display: grid;
  grid-template-columns: 72px 1fr;
  gap: 1rem;
  padding: 1.4rem 1.35rem;
  border-bottom: 1px solid var(--hairline);
  background: color-mix(in srgb, var(--bone) 2%, transparent);
}

.step:last-child {
  border-bottom: 0;
}

.step__index {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1.75rem;
  letter-spacing: -0.04em;
  color: var(--sol-green);
  line-height: 1;
}

.step h3 {
  font-family: var(--font-display);
  font-size: 1.1rem;
  margin-bottom: 0.4rem;
}

.step p {
  color: var(--fog);
  font-size: 0.95rem;
  line-height: 1.55;
}

.step a {
  color: var(--zec-gold);
  text-decoration: underline;
  text-underline-offset: 3px;
}

.cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

/* —— Roadmap —— */
.roadmap {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
}

.roadmap__phase {
  padding: 1.75rem 1.4rem;
  border-radius: 18px;
  border: 1px solid var(--hairline);
  background:
    linear-gradient(165deg, color-mix(in srgb, var(--sol-purple) 10%, transparent), transparent 45%),
    color-mix(in srgb, var(--bone) 2.5%, transparent);
}

.roadmap__tag {
  display: inline-block;
  margin-bottom: 0.85rem;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--sol-green);
}

.roadmap__phase h3 {
  font-family: var(--font-display);
  font-size: 1.35rem;
  letter-spacing: -0.02em;
  margin-bottom: 1rem;
}

.roadmap__phase ul {
  list-style: none;
  display: grid;
  gap: 0.65rem;
}

.roadmap__phase li {
  position: relative;
  padding-left: 1rem;
  color: var(--fog);
  font-size: 0.94rem;
  line-height: 1.45;
}

.roadmap__phase li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.55em;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--zec-gold);
  box-shadow: 0 0 8px color-mix(in srgb, var(--zec-gold) 60%, transparent);
}

/* —— FAQ —— */
.faq-shell .section__head {
  max-width: 36rem;
}

.faq {
  display: grid;
  gap: 0.65rem;
  max-width: 760px;
}

.faq__item {
  border: 1px solid var(--hairline);
  border-radius: 14px;
  background: color-mix(in srgb, var(--bone) 2.5%, transparent);
  padding: 0 1.15rem;
}

.faq__item summary {
  list-style: none;
  cursor: none;
  padding: 1.1rem 0;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.02rem;
  letter-spacing: -0.01em;
  position: relative;
  padding-right: 2rem;
}

.faq__item summary::-webkit-details-marker {
  display: none;
}

.faq__item summary::after {
  content: "+";
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  color: var(--sol-green);
  font-size: 1.25rem;
  font-weight: 500;
}

.faq__item[open] summary::after {
  content: "–";
}

.faq__item p {
  color: var(--fog);
  font-size: 0.95rem;
  line-height: 1.6;
  padding-bottom: 1.15rem;
}

.faq__item a {
  color: var(--zec-gold);
  text-decoration: underline;
  text-underline-offset: 3px;
}

body.touch-device .faq__item summary {
  cursor: pointer;
}

/* —— Bottom CTA —— */
.section--cta {
  padding-top: 2rem;
}

.cta-banner {
  text-align: center;
  padding: 3.5rem 1.5rem;
  border-radius: 24px;
  border: 1px solid var(--hairline);
  background:
    radial-gradient(ellipse 50% 80% at 50% 0%, color-mix(in srgb, var(--zec-gold) 16%, transparent), transparent 55%),
    radial-gradient(ellipse 40% 60% at 80% 100%, color-mix(in srgb, var(--sol-purple) 18%, transparent), transparent 50%),
    var(--obsidian);
}

.cta-banner__logo {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  object-fit: cover;
  margin: 0 auto 1.25rem;
  box-shadow: 0 0 0 1px color-mix(in srgb, var(--zec-gold) 40%, transparent);
}

.cta-banner h2 {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 4vw, 2.6rem);
  letter-spacing: -0.03em;
  margin-bottom: 0.75rem;
}

.cta-banner p {
  color: var(--fog);
  max-width: 34rem;
  margin: 0 auto 1.5rem;
  line-height: 1.55;
}

.cta-banner .cta-row {
  justify-content: center;
}

/* —— Community —— */
.community {
  text-align: center;
}

.community .section__head {
  margin-inline: auto;
}

.community__links {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1rem;
  margin-top: 0.5rem;
}

.community__card {
  width: min(260px, 100%);
  padding: 1.75rem 1.25rem;
  border-radius: 18px;
  border: 1px solid var(--hairline);
  background: linear-gradient(160deg, color-mix(in srgb, var(--bone) 4%, transparent), transparent);
  transition:
    border-color 0.25s ease,
    transform 0.25s ease,
    box-shadow 0.25s ease;
}

.community__card:hover {
  transform: translateY(-4px);
  border-color: color-mix(in srgb, var(--sol-green) 45%, transparent);
  box-shadow: 0 16px 48px color-mix(in srgb, var(--sol-purple) 18%, transparent);
}

.community__card svg,
.community__card-icon {
  width: 28px;
  height: 28px;
  margin: 0 auto 1rem;
  color: var(--zec-gold);
  object-fit: contain;
  display: block;
}

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

.community__card p {
  color: var(--ash);
  font-size: 0.88rem;
}

/* —— Footer —— */
.footer {
  padding: 3rem 0 2rem;
  border-top: 1px solid var(--hairline);
}

.footer__grid {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr;
  gap: 2rem;
  margin-bottom: 2.5rem;
}

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

.footer__brand img {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  object-fit: cover;
}

.footer__blurb {
  color: var(--ash);
  font-size: 0.88rem;
  line-height: 1.55;
  max-width: 28rem;
}

.footer__col {
  display: flex;
  flex-direction: column;
  gap: 0.55rem;
}

.footer__col h4 {
  font-family: var(--font-display);
  font-size: 0.85rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--bone);
  margin-bottom: 0.35rem;
}

.footer__col a {
  color: var(--fog);
  font-size: 0.9rem;
  transition: color 0.2s ease;
}

.footer__col a:hover {
  color: var(--sol-green);
}

.footer__bottom {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 0.75rem;
  padding-top: 1.25rem;
  border-top: 1px solid var(--hairline);
  color: var(--ash);
  font-size: 0.8rem;
}

.footer__note {
  color: var(--ash);
  font-size: 0.82rem;
}

.footer__links {
  display: flex;
  gap: 1.25rem;
  color: var(--fog);
  font-size: 0.88rem;
}

.footer__links a:hover {
  color: var(--sol-green);
}

/* —— Mobile menu —— */
.mobile-menu {
  display: none;
  position: fixed;
  inset: var(--nav-h) 0 0;
  z-index: 99;
  background: color-mix(in srgb, var(--void) 96%, transparent);
  backdrop-filter: blur(20px);
  padding: 2rem;
  flex-direction: column;
  gap: 1.25rem;
}

.mobile-menu.is-open {
  display: flex;
}

.mobile-menu a {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 700;
}

/* —— Responsive —— */
@media (max-width: 900px) {
  .hero__content {
    grid-template-columns: 1fr;
    text-align: center;
    padding-bottom: 5rem;
  }

  .hero__copy {
    max-width: none;
    order: 2;
  }

  .hero__lede {
    margin-inline: auto;
  }

  .hero__ctas {
    justify-content: center;
  }

  .hero__mascot-wrap {
    justify-self: center;
    width: min(260px, 70vw);
    order: 1;
  }

  .hero__ticker {
    justify-content: center;
  }

  .about-strip {
    grid-template-columns: 1fr;
  }

  .feature-grid {
    grid-template-columns: 1fr 1fr;
  }

  .token-grid {
    grid-template-columns: 1fr 1fr;
  }

  .token-notes,
  .roadmap,
  .footer__grid {
    grid-template-columns: 1fr;
  }

  .nav__links {
    display: none;
  }

  .nav__burger {
    display: grid;
  }

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

@media (max-width: 560px) {
  .shell,
  .nav__inner,
  .hero__content {
    width: calc(100% - 1.5rem);
  }

  .nav__actions .btn--primary {
    display: none;
  }

  .hero__brand {
    font-size: clamp(2.8rem, 14vw, 3.6rem);
  }

  .section {
    padding: 4rem 0;
  }

  .feature-grid,
  .token-grid {
    grid-template-columns: 1fr;
  }

  .step {
    grid-template-columns: 48px 1fr;
    padding: 1.15rem 1rem;
  }
}
