/* ========================================
   ZEHYPERPUMP — Dark Fantasy Crypto Cult
   ======================================== */

:root {
  --bg: #050807;
  --bg-soft: #0a1110;
  --bg-elevated: #0d1614;
  --text: #f4f7f6;
  --muted: #889795;
  --zec: #f4b62c;
  --hyper: #50e6e6;
  --pump: #22f4a3;
  --border: rgba(255, 255, 255, 0.08);
  --border-strong: rgba(255, 255, 255, 0.14);
  --glow-zec: rgba(244, 182, 44, 0.45);
  --glow-hyper: rgba(80, 230, 230, 0.45);
  --glow-pump: rgba(34, 244, 163, 0.45);
  --font-display: "Anton", sans-serif;
  --font-body: "Space Grotesk", system-ui, sans-serif;
  --nav-h: 72px;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
  --container: min(1180px, calc(100% - 2.5rem));
}

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

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

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

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

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

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

ul,
ol {
  list-style: none;
}

:focus-visible {
  outline: 2px solid var(--hyper);
  outline-offset: 3px;
}

.skip-link {
  position: absolute;
  top: -100px;
  left: 1rem;
  z-index: 10000;
  padding: 0.75rem 1.25rem;
  background: var(--hyper);
  color: var(--bg);
  font-weight: 700;
  border-radius: 4px;
}

.skip-link:focus {
  top: 1rem;
}

.container {
  width: var(--container);
  margin-inline: auto;
}

/* ---------- Atmosphere layers ---------- */
.noise {
  position: fixed;
  inset: 0;
  z-index: 9000;
  pointer-events: none;
  opacity: 0.04;
  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");
  background-size: 180px;
  mix-blend-mode: overlay;
}

.scanlines {
  position: fixed;
  inset: 0;
  z-index: 8999;
  pointer-events: none;
  opacity: 0.03;
  background: repeating-linear-gradient(
    to bottom,
    transparent 0,
    transparent 2px,
    rgba(0, 0, 0, 0.4) 2px,
    rgba(0, 0, 0, 0.4) 3px
  );
}

#particles {
  position: fixed;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  opacity: 0.55;
}

/* ---------- Custom cursor ---------- */
.cursor-dot,
.cursor-ring {
  display: none;
}

body.has-cursor .cursor-dot,
body.has-cursor .cursor-ring {
  display: block;
  position: fixed;
  top: 0;
  left: 0;
  border-radius: 50%;
  pointer-events: none;
  z-index: 10001;
  transform: translate(-50%, -50%);
  will-change: transform;
}

body.has-cursor .cursor-dot {
  width: 6px;
  height: 6px;
  background: var(--text);
  mix-blend-mode: difference;
}

body.has-cursor .cursor-ring {
  width: 36px;
  height: 36px;
  border: 1px solid rgba(80, 230, 230, 0.55);
  background: radial-gradient(circle, rgba(80, 230, 230, 0.08), transparent 70%);
  transition: width 0.25s var(--ease), height 0.25s var(--ease), border-color 0.25s, background 0.25s;
}

body.has-cursor.cursor-active .cursor-ring {
  width: 56px;
  height: 56px;
  border-color: var(--pump);
  background: radial-gradient(circle, rgba(34, 244, 163, 0.15), transparent 70%);
}

body.has-cursor {
  cursor: none;
}

body.has-cursor a,
body.has-cursor button {
  cursor: none;
}

/* ---------- Buttons ---------- */
.btn {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.9rem 1.6rem;
  font-family: var(--font-display);
  font-size: 1.05rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  border: 1px solid var(--border-strong);
  overflow: hidden;
  transition: transform 0.35s var(--ease), box-shadow 0.35s var(--ease), border-color 0.35s, background 0.35s;
  isolation: isolate;
}

.btn::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    105deg,
    transparent 40%,
    rgba(255, 255, 255, 0.18) 50%,
    transparent 60%
  );
  transform: translateX(-120%);
  transition: transform 0.7s var(--ease);
  z-index: -1;
}

.btn:hover::before,
.btn:focus-visible::before {
  transform: translateX(120%);
}

.btn--primary {
  background: linear-gradient(135deg, rgba(80, 230, 230, 0.18), rgba(34, 244, 163, 0.12));
  border-color: rgba(80, 230, 230, 0.45);
  color: var(--text);
  box-shadow: 0 0 24px rgba(80, 230, 230, 0.15), inset 0 0 20px rgba(80, 230, 230, 0.06);
}

.btn--primary:hover,
.btn--primary:focus-visible {
  border-color: var(--hyper);
  box-shadow: 0 0 40px rgba(80, 230, 230, 0.35), 0 0 80px rgba(34, 244, 163, 0.12);
  transform: translateY(-2px) scale(1.02);
}

.btn--ghost {
  background: rgba(5, 8, 7, 0.45);
  backdrop-filter: blur(8px);
}

.btn--ghost:hover,
.btn--ghost:focus-visible {
  border-color: rgba(244, 182, 44, 0.5);
  box-shadow: 0 0 24px rgba(244, 182, 44, 0.15);
  transform: translateY(-2px);
}

.btn--icon {
  width: 52px;
  height: 52px;
  padding: 0;
  border-radius: 0;
}

.btn--icon:hover,
.btn--icon:focus-visible {
  border-color: var(--hyper);
  color: var(--hyper);
  box-shadow: 0 0 20px rgba(80, 230, 230, 0.25);
}

.btn--nav {
  padding: 0.55rem 1.1rem;
  font-size: 0.9rem;
  background: linear-gradient(135deg, rgba(80, 230, 230, 0.2), rgba(34, 244, 163, 0.1));
  border-color: rgba(80, 230, 230, 0.4);
}

.btn--lg {
  padding: 1.15rem 2.4rem;
  font-size: 1.35rem;
}

.cta__buy {
  animation: ctaPulse 3.2s ease-in-out infinite;
}

@keyframes ctaPulse {
  0%,
  100% {
    box-shadow: 0 0 24px rgba(80, 230, 230, 0.2), 0 0 48px rgba(34, 244, 163, 0.08);
  }
  50% {
    box-shadow: 0 0 40px rgba(80, 230, 230, 0.4), 0 0 80px rgba(34, 244, 163, 0.2);
  }
}

/* ---------- Navigation ---------- */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  height: var(--nav-h);
  transition: background 0.4s var(--ease), backdrop-filter 0.4s, border-color 0.4s, box-shadow 0.4s;
  border-bottom: 1px solid transparent;
}

.nav.is-scrolled {
  background: rgba(5, 8, 7, 0.78);
  backdrop-filter: blur(16px) saturate(1.2);
  -webkit-backdrop-filter: blur(16px) saturate(1.2);
  border-bottom-color: var(--border);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.35);
}

.nav__inner {
  width: var(--container);
  height: 100%;
  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-size: 1.15rem;
  letter-spacing: 0.06em;
  z-index: 1001;
}

.nav__brand img {
  width: 40px;
  height: 40px;
  object-fit: cover;
  border-radius: 50%;
  box-shadow: 0 0 16px rgba(80, 230, 230, 0.35);
  animation: logoPulse 4s ease-in-out infinite;
}

@keyframes logoPulse {
  0%,
  100% {
    box-shadow: 0 0 12px rgba(80, 230, 230, 0.3), 0 0 4px rgba(244, 182, 44, 0.2);
  }
  50% {
    box-shadow: 0 0 22px rgba(80, 230, 230, 0.55), 0 0 10px rgba(34, 244, 163, 0.3);
  }
}

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

.nav__menu > a:not(.btn) {
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  color: var(--muted);
  position: relative;
  transition: color 0.25s;
}

.nav__menu > a:not(.btn)::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -4px;
  width: 100%;
  height: 1px;
  background: linear-gradient(90deg, var(--zec), var(--hyper), var(--pump));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.35s var(--ease);
}

.nav__menu > a:not(.btn):hover,
.nav__menu > a:not(.btn):focus-visible {
  color: var(--text);
}

.nav__menu > a:not(.btn):hover::after,
.nav__menu > a:not(.btn):focus-visible::after {
  transform: scaleX(1);
}

.nav__x {
  display: grid;
  place-items: center;
  width: 36px;
  height: 36px;
  color: var(--muted) !important;
  transition: color 0.25s, transform 0.25s;
}

.nav__x:hover,
.nav__x:focus-visible {
  color: var(--text) !important;
  transform: scale(1.1);
}

.nav__x::after {
  display: none !important;
}

.nav__toggle {
  display: none;
  width: 44px;
  height: 44px;
  position: relative;
  z-index: 1001;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 6px;
}

.nav__toggle span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--text);
  transition: transform 0.35s var(--ease), opacity 0.25s;
}

.nav.is-open .nav__toggle span:nth-child(1) {
  transform: translateY(8px) rotate(45deg);
}

.nav.is-open .nav__toggle span:nth-child(2) {
  opacity: 0;
}

.nav.is-open .nav__toggle span:nth-child(3) {
  transform: translateY(-8px) rotate(-45deg);
}

/* ---------- Hero ---------- */
.hero {
  position: relative;
  min-height: 100vh;
  min-height: 100dvh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: calc(var(--nav-h) + 2rem) 1.25rem 4rem;
  overflow: hidden;
}

.hero__bg {
  position: absolute;
  inset: -3%;
  z-index: 0;
  will-change: transform;
}

.hero__banner {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
  transform: scale(1.08);
  animation: heroZoom 28s ease-in-out infinite alternate;
  will-change: transform;
}

@keyframes heroZoom {
  from {
    transform: scale(1.08);
  }
  to {
    transform: scale(1.16);
  }
}

.hero__overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(5, 8, 7, 0.55) 0%, rgba(5, 8, 7, 0.35) 35%, rgba(5, 8, 7, 0.75) 70%, var(--bg) 100%),
    linear-gradient(90deg, rgba(5, 8, 7, 0.7) 0%, rgba(5, 8, 7, 0.25) 45%, rgba(5, 8, 7, 0.45) 100%),
    radial-gradient(ellipse at 30% 40%, rgba(80, 230, 230, 0.08), transparent 50%),
    radial-gradient(ellipse at 70% 60%, rgba(34, 244, 163, 0.06), transparent 45%),
    radial-gradient(ellipse at 20% 70%, rgba(244, 182, 44, 0.05), transparent 40%);
}

.hero__fog {
  position: absolute;
  inset: -20%;
  pointer-events: none;
  background: radial-gradient(ellipse at center, rgba(80, 230, 230, 0.06), transparent 60%);
  filter: blur(40px);
  animation: fogDrift 18s ease-in-out infinite alternate;
}

.hero__fog--2 {
  background: radial-gradient(ellipse at 70% 40%, rgba(34, 244, 163, 0.05), transparent 55%);
  animation-duration: 24s;
  animation-direction: alternate-reverse;
}

@keyframes fogDrift {
  from {
    transform: translate(-3%, 2%) scale(1);
  }
  to {
    transform: translate(4%, -3%) scale(1.1);
  }
}

.hero__lightning {
  position: absolute;
  inset: 0;
  pointer-events: none;
  opacity: 0;
  background: linear-gradient(
    115deg,
    transparent 30%,
    rgba(80, 230, 230, 0.12) 48%,
    rgba(255, 255, 255, 0.18) 50%,
    rgba(80, 230, 230, 0.1) 52%,
    transparent 70%
  );
  mix-blend-mode: screen;
}

.hero__lightning.flash {
  animation: lightningFlash 0.35s ease-out;
}

@keyframes lightningFlash {
  0% {
    opacity: 0;
  }
  15% {
    opacity: 1;
  }
  30% {
    opacity: 0.2;
  }
  45% {
    opacity: 0.85;
  }
  100% {
    opacity: 0;
  }
}

.hero__bloom {
  position: absolute;
  width: 280px;
  height: 280px;
  border-radius: 50%;
  pointer-events: none;
  background: radial-gradient(circle, rgba(80, 230, 230, 0.14), transparent 70%);
  transform: translate(-50%, -50%);
  opacity: 0;
  transition: opacity 0.4s;
  mix-blend-mode: screen;
}

.hero__content {
  position: relative;
  z-index: 2;
  max-width: 920px;
  text-align: center;
}

.hero__eyebrow {
  font-size: clamp(0.7rem, 1.5vw, 0.85rem);
  font-weight: 600;
  letter-spacing: 0.28em;
  color: var(--muted);
  margin-bottom: 1.25rem;
}

.hero__title {
  font-family: var(--font-display);
  font-size: clamp(3.2rem, 12vw, 8.5rem);
  line-height: 0.92;
  letter-spacing: 0.02em;
  margin-bottom: 1rem;
  position: relative;
  text-shadow:
    0 0 40px rgba(80, 230, 230, 0.35),
    0 0 80px rgba(80, 230, 230, 0.15),
    0 4px 24px rgba(0, 0, 0, 0.6);
  animation: titleGlow 4s ease-in-out infinite;
}

.hero__title-ze {
  color: var(--zec);
  text-shadow:
    0 0 30px rgba(244, 182, 44, 0.55),
    0 0 60px rgba(244, 182, 44, 0.25);
}

.hero__title-rest {
  background: linear-gradient(180deg, #9ff7f7 0%, var(--hyper) 45%, #2a9a9a 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  filter: drop-shadow(0 0 20px rgba(80, 230, 230, 0.4));
}

@keyframes titleGlow {
  0%,
  100% {
    filter: brightness(1);
  }
  50% {
    filter: brightness(1.08);
  }
}

.glitch-title.is-glitching {
  animation: glitchPulse 0.45s steps(2, end);
}

@keyframes glitchPulse {
  0% {
    transform: translate(0);
    text-shadow: 0 0 40px rgba(80, 230, 230, 0.35);
  }
  20% {
    transform: translate(-3px, 1px);
    text-shadow: -2px 0 var(--zec), 2px 0 var(--hyper);
  }
  40% {
    transform: translate(3px, -1px);
    text-shadow: 2px 0 var(--pump), -2px 0 var(--zec);
  }
  60% {
    transform: translate(-1px, 2px);
  }
  100% {
    transform: translate(0);
  }
}

.hero__subtitle {
  font-family: var(--font-display);
  font-size: clamp(1rem, 2.8vw, 1.55rem);
  letter-spacing: 0.22em;
  color: var(--text);
  margin-bottom: 1.25rem;
  opacity: 0.9;
}

.hero__desc {
  max-width: 540px;
  margin: 0 auto 2rem;
  font-size: clamp(0.95rem, 2vw, 1.1rem);
  color: var(--muted);
  line-height: 1.7;
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 0.85rem;
  margin-bottom: 2rem;
}

.hero__respect {
  font-family: var(--font-display);
  font-size: clamp(0.85rem, 2vw, 1.05rem);
  letter-spacing: 0.28em;
  color: var(--zec);
  text-shadow: 0 0 20px rgba(244, 182, 44, 0.35);
}

.hero__scroll {
  position: absolute;
  bottom: 1.75rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 3;
  width: 28px;
  height: 44px;
  border: 1px solid rgba(255, 255, 255, 0.25);
  border-radius: 14px;
  display: grid;
  place-items: start center;
  padding-top: 8px;
}

.hero__scroll span {
  width: 4px;
  height: 8px;
  border-radius: 2px;
  background: var(--hyper);
  animation: scrollDot 1.8s ease-in-out infinite;
  box-shadow: 0 0 8px var(--hyper);
}

@keyframes scrollDot {
  0% {
    transform: translateY(0);
    opacity: 1;
  }
  80%,
  100% {
    transform: translateY(16px);
    opacity: 0;
  }
}

/* ---------- Section shared ---------- */
.section-head {
  text-align: center;
  margin-bottom: clamp(2.5rem, 6vw, 4rem);
}

.section-title {
  font-family: var(--font-display);
  font-size: clamp(2.4rem, 7vw, 4.5rem);
  letter-spacing: 0.04em;
  line-height: 1;
  margin-bottom: 0.85rem;
  text-shadow: 0 0 40px rgba(80, 230, 230, 0.2);
}

.section-sub {
  font-family: var(--font-display);
  font-size: clamp(1rem, 2.5vw, 1.35rem);
  letter-spacing: 0.18em;
  color: var(--muted);
  line-height: 1.4;
}

/* ---------- Reveal ---------- */
.reveal,
.reveal-line {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.8s var(--ease), transform 0.8s var(--ease), filter 0.8s;
  filter: blur(4px);
}

.reveal.is-visible,
.reveal-line.is-visible {
  opacity: 1;
  transform: translateY(0);
  filter: blur(0);
}

.reveal-line {
  transition-duration: 0.9s;
}

/* ---------- Trinity ---------- */
.trinity {
  position: relative;
  z-index: 2;
  padding: clamp(4rem, 10vw, 7rem) 0;
  background:
    radial-gradient(ellipse at 50% 0%, rgba(80, 230, 230, 0.06), transparent 50%),
    var(--bg);
}

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

.relic {
  position: relative;
  padding: 2.25rem 1.75rem 2rem;
  background:
    linear-gradient(160deg, rgba(13, 22, 20, 0.9), rgba(5, 8, 7, 0.95));
  border: 1px solid var(--border);
  transform-style: preserve-3d;
  transition: border-color 0.4s, box-shadow 0.4s;
  overflow: hidden;
  will-change: transform;
}

.relic::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(
    600px circle at var(--mx, 50%) var(--my, 50%),
    var(--relic-glow, rgba(80, 230, 230, 0.12)),
    transparent 40%
  );
  opacity: 0;
  transition: opacity 0.4s;
  pointer-events: none;
}

.relic:hover::before,
.relic:focus-within::before {
  opacity: 1;
}

.relic__glow {
  position: absolute;
  top: -40%;
  left: 50%;
  width: 160px;
  height: 160px;
  transform: translateX(-50%);
  border-radius: 50%;
  background: var(--relic-accent, var(--hyper));
  filter: blur(60px);
  opacity: 0.18;
  pointer-events: none;
  animation: relicAmbient 5s ease-in-out infinite;
}

@keyframes relicAmbient {
  0%,
  100% {
    opacity: 0.14;
    transform: translateX(-50%) scale(1);
  }
  50% {
    opacity: 0.28;
    transform: translateX(-50%) scale(1.15);
  }
}

.relic__trace {
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: linear-gradient(
    90deg,
    transparent,
    var(--relic-accent, var(--hyper)),
    transparent
  );
  background-size: 200% 1px;
  background-repeat: no-repeat;
  background-position: -100% 0;
  opacity: 0.5;
  mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
  -webkit-mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
  mask-composite: exclude;
  -webkit-mask-composite: xor;
  padding: 1px;
  animation: traceRun 4.5s linear infinite;
}

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

.relic--zec {
  --relic-accent: var(--zec);
  --relic-glow: var(--glow-zec);
  color: var(--zec);
}

.relic--hyper {
  --relic-accent: var(--hyper);
  --relic-glow: var(--glow-hyper);
  color: var(--hyper);
}

.relic--pump {
  --relic-accent: var(--pump);
  --relic-glow: var(--glow-pump);
  color: var(--pump);
}

.relic--zec:hover,
.relic--zec:focus-within {
  border-color: rgba(244, 182, 44, 0.5);
  box-shadow: 0 0 40px rgba(244, 182, 44, 0.18), inset 0 0 30px rgba(244, 182, 44, 0.06);
}

.relic--hyper:hover,
.relic--hyper:focus-within {
  border-color: rgba(80, 230, 230, 0.5);
  box-shadow: 0 0 40px rgba(80, 230, 230, 0.18), inset 0 0 30px rgba(80, 230, 230, 0.06);
}

.relic--pump:hover,
.relic--pump:focus-within {
  border-color: rgba(34, 244, 163, 0.5);
  box-shadow: 0 0 40px rgba(34, 244, 163, 0.18), inset 0 0 30px rgba(34, 244, 163, 0.06);
}

.relic__icon {
  margin-bottom: 1.25rem;
  filter: drop-shadow(0 0 12px currentColor);
}

.relic__name {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 2.75rem);
  letter-spacing: 0.06em;
  line-height: 1;
  margin-bottom: 0.4rem;
  color: inherit;
}

.relic__label {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  color: var(--text);
  margin-bottom: 1rem;
  opacity: 0.85;
}

.relic__text {
  color: var(--muted);
  font-size: 0.98rem;
  line-height: 1.65;
}

/* ---------- Lore ---------- */
.lore {
  position: relative;
  z-index: 2;
  padding: clamp(5rem, 12vw, 9rem) 0;
  background:
    radial-gradient(ellipse at 20% 50%, rgba(244, 182, 44, 0.05), transparent 40%),
    radial-gradient(ellipse at 80% 60%, rgba(80, 230, 230, 0.05), transparent 40%),
    radial-gradient(ellipse at 50% 100%, rgba(34, 244, 163, 0.04), transparent 35%),
    var(--bg-soft);
}

.lore__inner {
  max-width: 820px;
  display: flex;
  flex-direction: column;
  gap: clamp(1.75rem, 4vw, 2.75rem);
}

.lore__line {
  font-family: var(--font-display);
  font-size: clamp(1.45rem, 4.2vw, 2.65rem);
  line-height: 1.25;
  letter-spacing: 0.02em;
  clip-path: inset(0 0 100% 0);
  transform: translateY(20px);
  opacity: 0;
  transition: clip-path 0.9s var(--ease), transform 0.9s var(--ease), opacity 0.9s;
}

.lore__line.is-visible {
  clip-path: inset(0 0 0 0);
  transform: translateY(0);
  opacity: 1;
}

.lore__line--muted {
  font-family: var(--font-body);
  font-size: clamp(1.05rem, 2.4vw, 1.35rem);
  font-weight: 500;
  color: var(--muted);
  letter-spacing: 0;
  line-height: 1.55;
}

.hl-zec {
  color: var(--zec);
  text-shadow: 0 0 18px rgba(244, 182, 44, 0.35);
}

.hl-hyper {
  color: var(--hyper);
  text-shadow: 0 0 18px rgba(80, 230, 230, 0.35);
}

.hl-pump {
  color: var(--pump);
  text-shadow: 0 0 18px rgba(34, 244, 163, 0.35);
}

/* ---------- Fusion ---------- */
.fusion {
  position: relative;
  z-index: 2;
  padding: clamp(4rem, 10vw, 7rem) 0;
  overflow: hidden;
  background:
    radial-gradient(ellipse at 50% 60%, rgba(80, 230, 230, 0.08), transparent 45%),
    var(--bg);
}

.fusion__stage {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.5rem;
  text-align: center;
}

.fusion__shockwave {
  position: absolute;
  top: 55%;
  left: 50%;
  width: 40px;
  height: 40px;
  border: 2px solid rgba(80, 230, 230, 0.5);
  border-radius: 50%;
  transform: translate(-50%, -50%) scale(0);
  opacity: 0;
  pointer-events: none;
}

.fusion__stage.is-fused .fusion__shockwave {
  animation: shockwave 1.2s var(--ease) forwards;
}

@keyframes shockwave {
  0% {
    transform: translate(-50%, -50%) scale(0);
    opacity: 0.9;
  }
  100% {
    transform: translate(-50%, -50%) scale(28);
    opacity: 0;
  }
}

.fusion__sources {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: clamp(0.75rem, 2vw, 1.5rem);
}

.fusion__orb {
  position: relative;
  width: clamp(90px, 16vw, 130px);
  height: clamp(90px, 16vw, 130px);
  display: grid;
  place-items: center;
  border-radius: 50%;
  border: 1px solid var(--border-strong);
  background: rgba(10, 17, 16, 0.8);
  overflow: hidden;
}

.fusion__orb-glow {
  position: absolute;
  inset: 15%;
  border-radius: 50%;
  filter: blur(18px);
  opacity: 0.7;
  animation: orbPulse 3s ease-in-out infinite;
}

.fusion__orb--zec .fusion__orb-glow {
  background: var(--zec);
}

.fusion__orb--hyper .fusion__orb-glow {
  background: var(--hyper);
}

.fusion__orb--pump .fusion__orb-glow {
  background: var(--pump);
}

.fusion__orb--zec {
  box-shadow: 0 0 30px rgba(244, 182, 44, 0.25);
  color: var(--zec);
}

.fusion__orb--hyper {
  box-shadow: 0 0 30px rgba(80, 230, 230, 0.25);
  color: var(--hyper);
}

.fusion__orb--pump {
  box-shadow: 0 0 30px rgba(34, 244, 163, 0.25);
  color: var(--pump);
}

@keyframes orbPulse {
  0%,
  100% {
    opacity: 0.55;
    transform: scale(1);
  }
  50% {
    opacity: 0.9;
    transform: scale(1.12);
  }
}

.fusion__orb-label {
  position: relative;
  z-index: 1;
  font-family: var(--font-display);
  font-size: clamp(1rem, 2.5vw, 1.35rem);
  letter-spacing: 0.1em;
}

.fusion__plus,
.fusion__equals {
  font-family: var(--font-display);
  font-size: clamp(1.5rem, 4vw, 2.5rem);
  color: var(--muted);
  opacity: 0.7;
}

.fusion__result {
  position: relative;
  margin-top: 0.5rem;
}

.fusion__logo-wrap {
  position: relative;
  width: clamp(180px, 32vw, 280px);
  margin: 0 auto 1.25rem;
}

.fusion__logo {
  width: 100%;
  height: auto;
  border-radius: 12px;
  position: relative;
  z-index: 1;
  filter: drop-shadow(0 0 30px rgba(80, 230, 230, 0.25));
  opacity: 0.55;
  transform: scale(0.92);
  transition: opacity 0.8s var(--ease), transform 0.8s var(--ease), filter 0.8s;
}

.fusion__stage.is-fused .fusion__logo {
  opacity: 1;
  transform: scale(1);
  filter: drop-shadow(0 0 50px rgba(80, 230, 230, 0.55))
    drop-shadow(0 0 80px rgba(34, 244, 163, 0.25));
  animation: logoPulse 3.5s ease-in-out infinite;
}

.fusion__logo-ring {
  position: absolute;
  inset: -12%;
  border-radius: 50%;
  border: 1px solid rgba(80, 230, 230, 0.35);
  opacity: 0;
  transform: scale(0.8);
}

.fusion__stage.is-fused .fusion__logo-ring {
  animation: ringExpand 1.4s var(--ease) 0.2s forwards;
}

@keyframes ringExpand {
  0% {
    opacity: 0.8;
    transform: scale(0.8);
  }
  100% {
    opacity: 0;
    transform: scale(1.45);
  }
}

.fusion__name {
  font-family: var(--font-display);
  font-size: clamp(2rem, 6vw, 3.5rem);
  letter-spacing: 0.06em;
  background: linear-gradient(90deg, var(--zec), var(--hyper), var(--pump));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

/* ---------- Manifesto ---------- */
.manifesto {
  position: relative;
  z-index: 2;
  padding: clamp(5rem, 14vw, 10rem) 0;
  background: #030505;
  overflow: hidden;
}

.manifesto::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 30% 20%, rgba(244, 182, 44, 0.06), transparent 40%),
    radial-gradient(ellipse at 70% 40%, rgba(80, 230, 230, 0.06), transparent 40%),
    radial-gradient(ellipse at 50% 80%, rgba(34, 244, 163, 0.05), transparent 35%);
  pointer-events: none;
}

.manifesto__inner {
  position: relative;
  text-align: center;
  max-width: 900px;
}

.manifesto__nos {
  margin-bottom: clamp(2rem, 5vw, 3.5rem);
}

.manifesto__no {
  font-family: var(--font-display);
  font-size: clamp(2.2rem, 8vw, 5.5rem);
  line-height: 1.05;
  letter-spacing: 0.04em;
  color: var(--text);
}

.manifesto__no:nth-child(1).is-visible {
  color: var(--zec);
  text-shadow: 0 0 40px rgba(244, 182, 44, 0.35);
}

.manifesto__no:nth-child(2).is-visible {
  color: var(--hyper);
  text-shadow: 0 0 40px rgba(80, 230, 230, 0.35);
}

.manifesto__no:nth-child(3).is-visible {
  color: var(--pump);
  text-shadow: 0 0 40px rgba(34, 244, 163, 0.35);
}

.manifesto__mission {
  font-family: var(--font-display);
  font-size: clamp(1rem, 2.5vw, 1.4rem);
  letter-spacing: 0.35em;
  color: var(--muted);
  margin-bottom: clamp(2rem, 5vw, 3.5rem);
}

.manifesto__respect {
  font-family: var(--font-display);
  font-size: clamp(3rem, 12vw, 7.5rem);
  line-height: 0.95;
  letter-spacing: 0.02em;
  display: flex;
  flex-direction: column;
  gap: 0.1em;
  animation: respectPulse 4s ease-in-out infinite;
}

.manifesto__respect-name {
  background: linear-gradient(90deg, var(--zec) 0%, var(--hyper) 50%, var(--pump) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  filter: drop-shadow(0 0 30px rgba(80, 230, 230, 0.3));
}

@keyframes respectPulse {
  0%,
  100% {
    filter: brightness(1);
  }
  50% {
    filter: brightness(1.12);
  }
}

.manifesto__streak {
  width: min(280px, 50%);
  height: 2px;
  margin: 2.5rem auto 0;
  background: linear-gradient(90deg, transparent, var(--zec), var(--hyper), var(--pump), transparent);
  opacity: 0.7;
  transform: scaleX(0);
  transform-origin: center;
  transition: transform 1s var(--ease);
}

.manifesto__streak.is-visible {
  transform: scaleX(1);
  animation: streakShimmer 3s linear infinite;
}

@keyframes streakShimmer {
  0% {
    filter: brightness(1);
  }
  50% {
    filter: brightness(1.6);
  }
  100% {
    filter: brightness(1);
  }
}

.manifesto.is-shaking {
  animation: microShake 0.45s ease-out;
}

@keyframes microShake {
  0%,
  100% {
    transform: translateX(0);
  }
  20% {
    transform: translateX(-4px);
  }
  40% {
    transform: translateX(4px);
  }
  60% {
    transform: translateX(-2px);
  }
  80% {
    transform: translateX(2px);
  }
}

/* ---------- CTA ---------- */
.cta {
  position: relative;
  z-index: 2;
  padding: clamp(5rem, 12vw, 8rem) 0;
  overflow: hidden;
  text-align: center;
}

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

.cta__bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 40%;
  filter: brightness(0.35) saturate(1.1);
  transform: scale(1.05);
}

.cta__bg::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, var(--bg) 0%, rgba(5, 8, 7, 0.7) 30%, rgba(5, 8, 7, 0.75) 70%, var(--bg) 100%),
    radial-gradient(ellipse at 50% 50%, rgba(80, 230, 230, 0.1), transparent 55%);
}

.cta__content {
  position: relative;
  z-index: 1;
}

.cta__title {
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 8vw, 5rem);
  letter-spacing: 0.04em;
  line-height: 1;
  margin-bottom: 1.25rem;
  text-shadow: 0 0 40px rgba(80, 230, 230, 0.25);
}

.cta__desc {
  font-family: var(--font-display);
  font-size: clamp(1.1rem, 3vw, 1.65rem);
  letter-spacing: 0.12em;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.75rem 1.25rem;
  margin-bottom: 2.5rem;
}

.cta__actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1rem;
}

.cta__ca {
  margin-top: 2rem;
  display: inline-flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 0.65rem 0.85rem;
  max-width: 100%;
  padding: 0.75rem 1rem;
  border: 1px solid var(--border-strong);
  background: rgba(5, 8, 7, 0.65);
  backdrop-filter: blur(10px);
}

.cta__ca-label {
  font-family: var(--font-display);
  font-size: 0.85rem;
  letter-spacing: 0.16em;
  color: var(--zec);
}

.cta__ca-value {
  font-family: ui-monospace, "Cascadia Code", Consolas, monospace;
  font-size: clamp(0.7rem, 2vw, 0.85rem);
  color: var(--muted);
  word-break: break-all;
  max-width: min(420px, 70vw);
}

.cta__ca-copy {
  font-family: var(--font-display);
  font-size: 0.8rem;
  letter-spacing: 0.12em;
  padding: 0.4rem 0.75rem;
  border: 1px solid rgba(80, 230, 230, 0.35);
  color: var(--hyper);
  transition: background 0.25s, border-color 0.25s, color 0.25s;
}

.cta__ca-copy:hover,
.cta__ca-copy:focus-visible {
  background: rgba(80, 230, 230, 0.12);
  border-color: var(--hyper);
  color: var(--text);
}

.cta__ca-copy.is-copied {
  border-color: var(--pump);
  color: var(--pump);
}

/* ---------- Footer ---------- */
.footer {
  position: relative;
  z-index: 2;
  padding: 3.5rem 0 2.5rem;
  border-top: 1px solid var(--border);
  background: var(--bg);
}

.footer__inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.25rem;
  text-align: center;
}

.footer__brand {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  font-family: var(--font-display);
  font-size: 1.2rem;
  letter-spacing: 0.08em;
}

.footer__brand img {
  width: 36px;
  height: 36px;
  object-fit: cover;
  border-radius: 50%;
  box-shadow: 0 0 12px rgba(80, 230, 230, 0.3);
}

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

.footer__links a {
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  color: var(--muted);
  position: relative;
  transition: color 0.25s;
}

.footer__links a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -3px;
  width: 100%;
  height: 1px;
  background: var(--hyper);
  transform: scaleX(0);
  transition: transform 0.3s var(--ease);
}

.footer__links a:hover,
.footer__links a:focus-visible {
  color: var(--text);
}

.footer__links a:hover::after,
.footer__links a:focus-visible::after {
  transform: scaleX(1);
}

.footer__tag {
  font-family: var(--font-display);
  font-size: 0.85rem;
  letter-spacing: 0.18em;
  color: var(--zec);
  line-height: 1.6;
}

.footer__disclaimer {
  font-size: 0.75rem;
  color: var(--muted);
  opacity: 0.7;
  max-width: 420px;
}

/* ---------- Responsive ---------- */
@media (max-width: 900px) {
  .trinity__grid {
    grid-template-columns: 1fr;
    max-width: 440px;
    margin-inline: auto;
  }

  .nav__toggle {
    display: flex;
  }

  .nav__menu {
    position: fixed;
    inset: 0;
    flex-direction: column;
    justify-content: center;
    gap: 2rem;
    background: rgba(5, 8, 7, 0.96);
    backdrop-filter: blur(20px);
    opacity: 0;
    visibility: hidden;
    transform: translateY(-12px);
    transition: opacity 0.35s var(--ease), transform 0.35s var(--ease), visibility 0.35s;
  }

  .nav.is-open .nav__menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
  }

  .nav__menu > a:not(.btn) {
    font-size: 1.1rem;
    letter-spacing: 0.2em;
  }

  .btn--nav {
    padding: 0.9rem 1.8rem;
    font-size: 1.05rem;
  }
}

@media (max-width: 600px) {
  :root {
    --nav-h: 64px;
    --container: min(1180px, calc(100% - 1.5rem));
  }

  .hero {
    align-items: flex-end;
    padding-bottom: 5rem;
  }

  .hero__banner {
    object-position: 70% center;
  }

  .hero__actions {
    flex-direction: column;
    width: 100%;
  }

  .hero__actions .btn {
    width: 100%;
  }

  .hero__actions .btn--icon {
    width: 52px;
    align-self: center;
  }

  .fusion__sources {
    gap: 0.5rem;
  }

  .fusion__plus {
    font-size: 1.2rem;
  }

  .cta__actions {
    flex-direction: column;
    align-items: stretch;
  }

  .cta__actions .btn {
    width: 100%;
  }

  .manifesto__no {
    font-size: clamp(1.8rem, 10vw, 2.8rem);
  }
}

@media (max-width: 380px) {
  .hero__title {
    font-size: 2.8rem;
  }

  .hero__subtitle {
    letter-spacing: 0.12em;
  }
}

/* ---------- Reduced motion ---------- */
@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }

  .reveal,
  .reveal-line,
  .lore__line {
    opacity: 1;
    transform: none;
    filter: none;
    clip-path: none;
  }

  .hero__banner {
    transform: scale(1.05);
    animation: none;
  }

  .cta__buy {
    animation: none;
  }

  .cursor-dot,
  .cursor-ring {
    display: none !important;
  }

  body.has-cursor {
    cursor: auto;
  }
}
