:root {
  --bg: #050505;
  --bg-soft: #0a0a0a;
  --bg-elev: #101010;
  --green: #7cff00;
  --green-hot: #9cff00;
  --green-dark: #37a800;
  --green-dim: rgba(124, 255, 0, 0.12);
  --white: #f5f5f5;
  --muted: #8b8b8b;
  --line: rgba(245, 245, 245, 0.08);
  --font-display: "Oswald", "Arial Narrow", Impact, sans-serif;
  --font-hero: "Syne", Impact, "Arial Black", sans-serif;
  --font-body: "Inter", system-ui, sans-serif;
  --font-mono: "Share Tech Mono", "Courier New", monospace;
  --nav-h: 76px;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
  --glow: 0 0 24px rgba(124, 255, 0, 0.45);
}

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

html {
  scroll-behavior: smooth;
  background: var(--bg);
  overflow-x: hidden;
}

::selection {
  background: var(--green);
  color: #051000;
}

a:focus-visible,
button:focus-visible {
  outline: 2px solid var(--green);
  outline-offset: 3px;
}

body {
  font-family: var(--font-body);
  background: var(--bg);
  color: var(--white);
  line-height: 1.6;
  overflow-x: hidden;
  min-height: 100%;
  cursor: none;
}

body.menu-open {
  overflow: hidden;
}

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

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

button {
  font: inherit;
  color: inherit;
  background: none;
  border: none;
  cursor: none;
  touch-action: manipulation;
}

ul {
  list-style: none;
}

.skip-link {
  position: absolute;
  left: 16px;
  top: -48px;
  z-index: 100;
  padding: 8px 14px;
  background: var(--green);
  color: #051000;
  font-weight: 700;
  cursor: pointer;
}

.skip-link:focus {
  top: 16px;
}

/* ---------- ambient fx ---------- */
.page-fx {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 0;
  overflow: hidden;
}

.fx-grid {
  position: absolute;
  inset: -20%;
  background-image:
    linear-gradient(rgba(124, 255, 0, 0.045) 1px, transparent 1px),
    linear-gradient(90deg, rgba(124, 255, 0, 0.045) 1px, transparent 1px);
  background-size: 72px 72px;
  transform: perspective(700px) rotateX(58deg) translateY(-12%);
  transform-origin: center top;
  animation: grid-drift 28s linear infinite;
  mask-image: linear-gradient(to bottom, rgba(0, 0, 0, 0.55), transparent 72%);
}

.fx-rays {
  position: absolute;
  inset: -30%;
  background: repeating-conic-gradient(
    from 0deg at 70% 20%,
    transparent 0deg,
    rgba(124, 255, 0, 0.035) 4deg,
    transparent 10deg
  );
  animation: ray-spin 48s linear infinite;
  opacity: 0.7;
}

.fx-smoke {
  position: absolute;
  width: 55vw;
  height: 55vw;
  border-radius: 50%;
  filter: blur(80px);
  opacity: 0.28;
}

.fx-smoke-a {
  right: -10%;
  top: 8%;
  background: radial-gradient(circle, rgba(55, 168, 0, 0.45), transparent 68%);
  animation: smoke-a 14s ease-in-out infinite;
}

.fx-smoke-b {
  left: -16%;
  bottom: 10%;
  background: radial-gradient(circle, rgba(124, 255, 0, 0.18), transparent 70%);
  animation: smoke-b 18s ease-in-out infinite;
}

.fx-vignette {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 80% 30%, rgba(124, 255, 0, 0.07), transparent 42%),
    radial-gradient(ellipse at center, transparent 40%, rgba(0, 0, 0, 0.72) 100%);
}

.fx-scanlines {
  position: absolute;
  inset: 0;
  background: repeating-linear-gradient(
    to bottom,
    transparent 0,
    transparent 2px,
    rgba(0, 0, 0, 0.12) 3px
  );
  opacity: 0.28;
}

.fx-grain {
  position: absolute;
  inset: -20%;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='180' height='180'><filter id='n'><feTurbulence type='fractalNoise' baseFrequency='0.8' numOctaves='4' stitchTiles='stitch'/><feColorMatrix values='0 0 0 0 1 0 0 0 0 1 0 0 0 0 1 0 0 0 0.55 0'/></filter><rect width='100%' height='100%' filter='url(%23n)'/></svg>");
  opacity: 0.07;
  mix-blend-mode: overlay;
  animation: grain-shift 0.35s steps(2) infinite;
}

.mouse-aura {
  position: absolute;
  width: 520px;
  height: 520px;
  margin: -260px 0 0 -260px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(124, 255, 0, 0.16), transparent 68%);
  transform: translate3d(-50vw, -50vh, 0);
  will-change: transform;
  opacity: 0.85;
}

.cursor-glow,
.cursor-dot {
  position: fixed;
  top: 0;
  left: 0;
  pointer-events: none;
  z-index: 80;
  border-radius: 50%;
  transform: translate3d(-100px, -100px, 0);
  will-change: transform;
  transition: opacity 0.25s ease;
}

.cursor-glow {
  width: 44px;
  height: 44px;
  margin: -22px 0 0 -22px;
  border: 1px solid rgba(124, 255, 0, 0.45);
  background: rgba(124, 255, 0, 0.06);
  box-shadow: 0 0 24px rgba(124, 255, 0, 0.2);
  transition: width 0.25s var(--ease), height 0.25s var(--ease), margin 0.25s var(--ease), background 0.25s, opacity 0.25s ease;
}

.cursor-glow.is-hot {
  width: 62px;
  height: 62px;
  margin: -31px 0 0 -31px;
  background: rgba(124, 255, 0, 0.12);
}

.cursor-dot {
  width: 6px;
  height: 6px;
  margin: -3px 0 0 -3px;
  background: var(--green);
  box-shadow: var(--glow);
}

/* ---------- nav ---------- */
.nav {
  position: fixed;
  top: 14px;
  left: 50%;
  transform: translateX(-50%);
  width: min(1180px, calc(100% - 28px));
  z-index: 50;
  transition: background 0.35s var(--ease), border-color 0.35s, box-shadow 0.35s;
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 10px 14px 10px 12px;
  border: 1px solid transparent;
  border-radius: 999px;
}

.nav.is-scrolled .nav-inner {
  background: rgba(8, 8, 8, 0.72);
  border-color: rgba(124, 255, 0, 0.16);
  backdrop-filter: blur(18px);
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.45), 0 0 0 1px rgba(255, 255, 255, 0.03) inset;
}

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

.nav-logo-wrap {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  overflow: hidden;
  border: 1px solid rgba(124, 255, 0, 0.35);
  box-shadow: 0 0 16px rgba(124, 255, 0, 0.2);
  background: #000;
}

.nav-logo {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 18%;
}

.nav-wordmark {
  font-family: var(--font-display);
  letter-spacing: 0.14em;
  font-size: 0.95rem;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 4px;
}

.nav-links a {
  font-family: var(--font-display);
  letter-spacing: 0.16em;
  font-size: 0.82rem;
  padding: 10px 14px;
  color: var(--muted);
  transition: color 0.2s, text-shadow 0.2s;
}

.nav-links a:hover,
.nav-links a.is-active {
  color: var(--green);
  text-shadow: 0 0 12px rgba(124, 255, 0, 0.45);
}

.nav-buy {
  margin-left: 6px;
  border: 1px solid rgba(124, 255, 0, 0.45);
  border-radius: 999px;
  color: var(--green) !important;
  background: rgba(124, 255, 0, 0.06);
}

.nav-buy:hover {
  background: var(--green);
  color: #051000 !important;
  text-shadow: none;
}

.nav-toggle {
  display: none;
  width: 46px;
  height: 46px;
  position: relative;
  border-radius: 12px;
  border: 1px solid var(--line);
}

.nav-toggle span {
  position: absolute;
  left: 12px;
  right: 12px;
  height: 2px;
  background: var(--white);
  transition: transform 0.3s var(--ease), opacity 0.2s, top 0.3s;
}

.nav-toggle span:nth-child(1) { top: 15px; }
.nav-toggle span:nth-child(2) { top: 22px; }
.nav-toggle span:nth-child(3) { top: 29px; }

.nav-toggle.is-open span:nth-child(1) {
  top: 22px;
  transform: rotate(45deg);
}

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

.nav-toggle.is-open span:nth-child(3) {
  top: 22px;
  transform: rotate(-45deg);
}

.mobile-menu {
  position: fixed;
  inset: 0;
  z-index: 40;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 8px;
  padding: 100px 32px 48px;
  background: rgba(5, 5, 5, 0.94);
  backdrop-filter: blur(18px);
}

.mobile-menu a {
  font-family: var(--font-display);
  font-size: clamp(2rem, 8vw, 3.2rem);
  letter-spacing: 0.08em;
  line-height: 1.15;
  color: var(--white);
}

.mobile-menu a:hover,
.mobile-buy {
  color: var(--green);
}

.mobile-menu[hidden] {
  display: none;
}

/* ---------- layout ---------- */
main {
  position: relative;
  z-index: 1;
}

.section-wrap {
  width: min(1080px, calc(100% - 40px));
  margin: 0 auto;
}

.section-index {
  font-family: var(--font-mono);
  font-size: 0.78rem;
  letter-spacing: 0.28em;
  color: var(--green);
  margin-bottom: 28px;
}

/* ---------- hero ---------- */
.hero {
  position: relative;
  min-height: 100svh;
  padding: calc(var(--nav-h) + 28px) 0 40px;
  overflow: hidden;
}

.hero-particles {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
}

.hero-layout {
  width: min(1280px, calc(100% - 40px));
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: 8px;
  align-items: center;
  position: relative;
  z-index: 1;
}

.hero-label {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-mono);
  font-size: 0.78rem;
  letter-spacing: 0.34em;
  color: var(--green);
  margin-bottom: 18px;
}

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

.hero-title {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(5rem, 13vw, 10.4rem);
  line-height: 0.8;
  letter-spacing: -0.03em;
  text-transform: uppercase;
}

.hero-title-line {
  display: block;
}

.line-ansem {
  animation: title-in 1s var(--ease) both;
}

.line-aura {
  color: var(--green);
  text-shadow:
    0 0 18px rgba(124, 255, 0, 0.7),
    0 0 48px rgba(124, 255, 0, 0.35),
    0 0 110px rgba(124, 255, 0, 0.2);
  animation: title-in 1s var(--ease) 0.12s both, aura-breathe 3.6s ease-in-out 1.2s infinite;
}

.hero-tagline {
  margin-top: 26px;
  font-size: clamp(1.15rem, 2vw, 1.55rem);
  font-weight: 500;
  line-height: 1.35;
  max-width: 22ch;
}

.hero-tagline em {
  font-style: normal;
  color: var(--green);
}

.hero-support {
  margin-top: 16px;
  max-width: 34ch;
  color: var(--muted);
  font-size: 1rem;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 12px;
  margin: 28px 0 32px;
}

.hero-visual {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: flex-end;
  min-height: 68vh;
  will-change: transform;
}

.hero-glow-core,
.hero-glow-ring,
.hero-glow-flare {
  position: absolute;
  left: 50%;
  top: 48%;
  border-radius: 50%;
  pointer-events: none;
}

.hero-glow-core {
  width: 70%;
  height: 70%;
  background: radial-gradient(circle, rgba(156, 255, 0, 0.42), rgba(55, 168, 0, 0.08) 46%, transparent 70%);
  filter: blur(8px);
  animation: glow-breathe 4.2s ease-in-out infinite;
}

.hero-glow-ring {
  width: 92%;
  height: 92%;
  border: 1px solid rgba(124, 255, 0, 0.18);
  box-shadow: 0 0 80px rgba(124, 255, 0, 0.12) inset;
  animation: ring-pulse 5.5s ease-in-out infinite;
}

.hero-glow-flare {
  width: 38%;
  height: 120%;
  top: 42%;
  background: linear-gradient(to top, transparent, rgba(124, 255, 0, 0.18), transparent);
  filter: blur(22px);
  animation: flare 7s ease-in-out infinite;
}

.hero-art {
  position: relative;
  z-index: 1;
  width: min(54vw, 820px);
  height: auto;
  max-height: 92vh;
  object-fit: contain;
  object-position: center bottom;
  filter: drop-shadow(0 20px 50px rgba(124, 255, 0, 0.18));
  animation: float-art 5.8s ease-in-out infinite;
}

.side-ticker {
  position: absolute;
  right: 0;
  top: 0;
  bottom: 0;
  width: 42px;
  overflow: hidden;
  writing-mode: vertical-rl;
  transform: rotate(180deg);
  font-family: var(--font-mono);
  font-size: 0.72rem;
  letter-spacing: 0.28em;
  color: rgba(124, 255, 0, 0.38);
  mask-image: linear-gradient(to bottom, transparent, black 12%, black 88%, transparent);
  pointer-events: none;
}

.side-ticker span {
  display: inline-block;
  animation: ticker-y 22s linear infinite;
  white-space: nowrap;
  padding: 16px 0;
}

/* ---------- HUD ---------- */
.hud {
  position: relative;
  max-width: 520px;
  padding: 14px 16px 10px;
  background: linear-gradient(180deg, rgba(10, 18, 4, 0.75), rgba(5, 5, 5, 0.55));
  border: 1px solid rgba(124, 255, 0, 0.22);
  overflow: hidden;
  clip-path: polygon(12px 0, 100% 0, 100% calc(100% - 12px), calc(100% - 12px) 100%, 0 100%, 0 12px);
  box-shadow: 0 0 0 1px rgba(124, 255, 0, 0.05) inset, 0 20px 50px rgba(0, 0, 0, 0.35);
}

.hud::before,
.hud::after {
  content: "";
  position: absolute;
  width: 10px;
  height: 10px;
  border: 1px solid var(--green);
}

.hud::before {
  top: 6px;
  left: 6px;
  border-right: 0;
  border-bottom: 0;
}

.hud::after {
  right: 6px;
  bottom: 6px;
  border-left: 0;
  border-top: 0;
}

.hud-scan {
  position: absolute;
  left: 0;
  right: 0;
  height: 40%;
  background: linear-gradient(to bottom, transparent, rgba(124, 255, 0, 0.08), transparent);
  animation: hud-scan 3.2s linear infinite;
  pointer-events: none;
}

.hud-head {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 10px;
  font-family: var(--font-mono);
  font-size: 0.68rem;
  letter-spacing: 0.18em;
  color: var(--muted);
}

.hud-live {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: var(--green);
}

.hud-live i {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--green);
  animation: pulse 1.2s infinite;
}

.hud-list li {
  display: grid;
  grid-template-columns: 8px 22px 1fr 72px;
  gap: 8px;
  align-items: center;
  padding: 7px 0;
  font-family: var(--font-mono);
  font-size: 0.78rem;
  letter-spacing: 0.08em;
  border-top: 1px solid rgba(124, 255, 0, 0.08);
}

.hud-led {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--green);
  box-shadow: 0 0 8px var(--green);
  animation: blink 1.8s infinite;
}

.hud-list li:nth-child(2) .hud-led { animation-delay: 0.2s; }
.hud-list li:nth-child(3) .hud-led { animation-delay: 0.4s; }
.hud-list li:nth-child(4) .hud-led { animation-delay: 0.6s; }

.hud-meter {
  height: 4px;
  background: rgba(124, 255, 0, 0.12);
  overflow: hidden;
}

.hud-meter b {
  display: block;
  height: 100%;
  width: 0;
  background: linear-gradient(90deg, var(--green-dark), var(--green));
  box-shadow: 0 0 8px var(--green);
  animation: meter-fill 1.4s var(--ease) forwards;
}

.hud-list li:nth-child(2) .hud-meter b { animation-delay: 0.25s; }
.hud-list li:nth-child(3) .hud-meter b { animation-delay: 0.45s; }
.hud-list li:nth-child(4) .hud-meter b { animation-delay: 0.65s; }

.hud-hot {
  color: var(--green);
  text-shadow: 0 0 10px rgba(124, 255, 0, 0.35);
}

/* ---------- buttons ---------- */
.btn {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 22px;
  font-family: var(--font-display);
  letter-spacing: 0.14em;
  font-size: 0.95rem;
  border: 1px solid transparent;
  overflow: hidden;
  transition: transform 0.2s var(--ease), background 0.2s, color 0.2s, border-color 0.2s, box-shadow 0.2s;
  will-change: transform;
}

.btn-primary {
  background: var(--green);
  color: #061000;
  box-shadow: 0 0 24px rgba(124, 255, 0, 0.22);
}

.btn-primary:hover {
  background: var(--green-hot);
  box-shadow: 0 0 32px rgba(124, 255, 0, 0.4);
}

.btn-ghost {
  border-color: rgba(124, 255, 0, 0.32);
  color: var(--white);
  background: rgba(255, 255, 255, 0.02);
}

.btn-ghost:hover {
  border-color: var(--green);
  color: var(--green);
  box-shadow: 0 0 20px rgba(124, 255, 0, 0.15);
}

.btn-icon {
  width: 48px;
  padding: 0;
  border-color: rgba(124, 255, 0, 0.32);
}

.btn-icon:hover {
  color: var(--green);
  border-color: var(--green);
}

.btn-lg {
  min-height: 56px;
  padding: 0 28px;
  font-size: 1.05rem;
}

.btn-shine {
  position: absolute;
  inset: 0;
  background: linear-gradient(120deg, transparent 30%, rgba(255, 255, 255, 0.45), transparent 70%);
  transform: translateX(-120%);
  animation: shine 3.4s ease-in-out infinite;
}

.btn.is-soon .btn-label,
.btn-copy.is-copied .btn-label {
  animation: tap-pop 0.35s var(--ease);
}

.btn-copy {
  min-width: 108px;
  border: 1px solid rgba(124, 255, 0, 0.45);
  color: var(--green);
  background: rgba(124, 255, 0, 0.08);
}

.btn-copy:hover,
.btn-copy.is-copied {
  background: var(--green);
  color: #061000;
}

/* ---------- CA ---------- */
.ca-section {
  position: relative;
  z-index: 1;
  padding: 8px 20px 80px;
}

.ca-module {
  position: relative;
  width: min(860px, 100%);
  margin: 0 auto;
  padding: 28px 28px 22px;
  background:
    linear-gradient(180deg, rgba(12, 20, 6, 0.8), rgba(8, 8, 8, 0.7));
  border: 1px solid rgba(124, 255, 0, 0.2);
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.4), 0 0 40px rgba(124, 255, 0, 0.05);
}

.ca-corners::before,
.ca-corners::after {
  content: "";
  position: absolute;
  width: 18px;
  height: 18px;
  border: 1px solid var(--green);
}

.ca-corners::before {
  top: -1px;
  left: -1px;
  border-right: 0;
  border-bottom: 0;
}

.ca-corners::after {
  right: -1px;
  bottom: -1px;
  border-left: 0;
  border-top: 0;
}

.ca-meta {
  display: flex;
  gap: 8px;
  margin-bottom: 14px;
}

.ca-chip {
  font-family: var(--font-mono);
  font-size: 0.68rem;
  letter-spacing: 0.16em;
  padding: 4px 8px;
  border: 1px solid rgba(124, 255, 0, 0.2);
  color: var(--muted);
}

.ca-chip.blink {
  color: var(--green);
  animation: pulse 1.8s infinite;
}

.ca-kicker {
  font-family: var(--font-mono);
  font-size: 0.72rem;
  letter-spacing: 0.28em;
  color: var(--muted);
  margin-bottom: 10px;
}

.ca-row {
  display: flex;
  align-items: center;
  gap: 14px;
  flex-wrap: wrap;
}

.ca-address {
  font-family: var(--font-mono);
  font-size: clamp(0.95rem, 2.4vw, 1.35rem);
  color: var(--green);
  text-shadow: 0 0 12px rgba(124, 255, 0, 0.3);
  word-break: break-all;
}

.ca-hint {
  min-height: 1.2em;
  margin-top: 10px;
  font-family: var(--font-mono);
  font-size: 0.72rem;
  letter-spacing: 0.14em;
  color: var(--green);
}

/* ---------- story ---------- */
.story {
  position: relative;
  z-index: 1;
  padding: 100px 0 80px;
}

.story-stack {
  display: grid;
  gap: 6px;
  margin-bottom: 64px;
}

.story-line {
  font-family: var(--font-hero);
  font-size: clamp(1.8rem, 5.4vw, 4.4rem);
  font-weight: 800;
  line-height: 1.05;
  letter-spacing: -0.03em;
  color: rgba(245, 245, 245, 0.34);
}

.story-punch {
  color: var(--white);
}

.story-punch em {
  font-style: normal;
  color: var(--green);
  text-shadow: 0 0 24px rgba(124, 255, 0, 0.3);
}

.story-body {
  display: grid;
  gap: 28px;
  max-width: 720px;
  font-size: clamp(1.15rem, 2.2vw, 1.55rem);
  font-weight: 500;
  line-height: 1.45;
}

.story-triad {
  display: flex;
  flex-wrap: wrap;
  gap: 12px 28px;
  color: var(--green);
  font-family: var(--font-display);
  letter-spacing: 0.08em;
  font-size: clamp(1.1rem, 2vw, 1.5rem);
}

.story-quote {
  font-family: var(--font-hero);
  font-size: clamp(1.8rem, 4.5vw, 3.4rem);
  font-weight: 800;
  line-height: 1.1;
  color: var(--white);
  border-left: 2px solid var(--green);
  padding-left: 20px;
  text-shadow: 0 0 30px rgba(124, 255, 0, 0.15);
}

.story-reveal {
  margin-top: 72px;
}

.story-reveal .muted {
  color: var(--muted);
  font-size: 1.15rem;
  margin-bottom: 12px;
}

.story-name {
  font-family: var(--font-display);
  font-size: clamp(2.2rem, 6vw, 4.8rem);
  letter-spacing: 0.02em;
  line-height: 1;
}

.story-name span {
  color: var(--green);
  text-shadow: 0 0 28px rgba(124, 255, 0, 0.4);
}

/* ---------- aura statement ---------- */
.aura-section {
  position: relative;
  z-index: 1;
  padding: 120px 0 100px;
  overflow: hidden;
  text-align: center;
}

.aura-energy {
  position: absolute;
  inset: 10% 0;
  pointer-events: none;
}

.aura-orb {
  position: absolute;
  left: 50%;
  top: 42%;
  width: min(70vw, 680px);
  height: min(70vw, 680px);
  transform: translate(-50%, -50%);
  background: radial-gradient(circle, rgba(124, 255, 0, 0.28), rgba(55, 168, 0, 0.08) 40%, transparent 68%);
  filter: blur(10px);
  animation: glow-breathe 4s ease-in-out infinite;
}

.aura-ring {
  position: absolute;
  left: 50%;
  top: 42%;
  width: min(54vw, 520px);
  height: min(54vw, 520px);
  transform: translate(-50%, -50%);
  border: 1px solid rgba(124, 255, 0, 0.18);
  border-radius: 50%;
  animation: ring-pulse 6s ease-in-out infinite;
}

.aura-bolt {
  position: absolute;
  left: 50%;
  top: 18%;
  width: 2px;
  height: 42%;
  background: linear-gradient(to bottom, transparent, var(--green), transparent);
  opacity: 0.35;
  filter: blur(1px);
  animation: bolt 2.8s ease-in-out infinite;
}

.aura-deny {
  display: grid;
  gap: 8px;
  margin-bottom: 28px;
  color: var(--muted);
  font-size: clamp(1.1rem, 2.4vw, 1.6rem);
}

.aura-mega {
  position: relative;
  font-family: var(--font-display);
  font-size: clamp(4.2rem, 16vw, 13rem);
  line-height: 0.85;
  letter-spacing: -0.04em;
  color: var(--green);
  text-shadow:
    0 0 24px rgba(124, 255, 0, 0.7),
    0 0 80px rgba(124, 255, 0, 0.28);
  margin: 10px 0 48px;
}

.aura-copy {
  display: grid;
  gap: 16px;
  max-width: 640px;
  margin: 0 auto 72px;
  font-size: clamp(1.05rem, 2vw, 1.35rem);
  color: #d7d7d7;
}

.aura-end {
  display: grid;
  gap: 8px;
  font-family: var(--font-hero);
  font-size: clamp(1.6rem, 4.2vw, 3rem);
  font-weight: 800;
}

.aura-or {
  color: var(--green);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  text-shadow: 0 0 24px rgba(124, 255, 0, 0.45);
  position: relative;
}

.aura-or::after {
  content: "";
  display: block;
  width: min(220px, 50%);
  height: 2px;
  margin: 14px auto 0;
  background: var(--green);
  box-shadow: 0 0 16px var(--green);
  transform: scaleX(0);
  transform-origin: center;
}

.is-inview .aura-or::after {
  animation: line-grow 0.8s var(--ease) 0.2s forwards;
}

/* ---------- copy / glitch ---------- */
.copy-section {
  position: relative;
  z-index: 1;
  padding: 80px 0 100px;
}

.glitch-stack {
  display: grid;
  gap: 10px;
  margin-bottom: 72px;
}

.glitch-line {
  position: relative;
  font-family: var(--font-hero);
  font-size: clamp(1.15rem, 3.4vw, 2.4rem);
  font-weight: 700;
  color: rgba(245, 245, 245, 0.42);
  letter-spacing: -0.02em;
}

.glitch-stack.is-glitching .glitch-line {
  animation: glitch-shift 0.7s steps(2) infinite;
}

.glitch-stack.is-glitching .glitch-line::before,
.glitch-stack.is-glitching .glitch-line::after {
  content: attr(data-text);
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.glitch-stack.is-glitching .glitch-line::before {
  color: var(--green);
  clip-path: inset(0 0 55% 0);
  transform: translate(3px, -1px);
  opacity: 0.7;
}

.glitch-stack.is-glitching .glitch-line::after {
  color: #ff3b3b;
  clip-path: inset(55% 0 0 0);
  transform: translate(-3px, 1px);
  opacity: 0.45;
}

.glitch-final {
  font-family: var(--font-display);
  font-size: clamp(2.1rem, 7vw, 5.6rem);
  line-height: 0.9;
  letter-spacing: -0.03em;
  color: var(--green);
  opacity: 0;
  filter: blur(10px);
  transform: translateY(18px);
  text-shadow: 0 0 30px rgba(124, 255, 0, 0.45);
  transition: opacity 0.55s var(--ease), filter 0.55s var(--ease), transform 0.55s var(--ease);
}

.glitch-stack.is-resolved .glitch-line {
  animation: none;
  color: rgba(245, 245, 245, 0.28);
}

.glitch-stack.is-resolved .glitch-line::before,
.glitch-stack.is-resolved .glitch-line::after {
  display: none;
}

.glitch-stack.is-resolved .glitch-final {
  opacity: 1;
  filter: blur(0);
  transform: none;
}

.copy-close {
  display: grid;
  gap: 8px;
  font-size: clamp(1.2rem, 2.4vw, 1.7rem);
}

.copy-ticker {
  font-family: var(--font-display);
  font-size: clamp(2.4rem, 8vw, 6.5rem);
  line-height: 0.9;
  color: var(--green);
  letter-spacing: -0.03em;
  text-shadow: 0 0 28px rgba(124, 255, 0, 0.4);
}

/* ---------- banner ---------- */
.banner-section {
  position: relative;
  z-index: 1;
  padding: 40px 0 100px;
  overflow: hidden;
}

.banner-stage {
  position: relative;
  padding: 20px 0 40px;
}

.banner-glow {
  position: absolute;
  inset: 8% 6%;
  background: radial-gradient(ellipse at center, rgba(124, 255, 0, 0.22), transparent 70%);
  filter: blur(24px);
  pointer-events: none;
}

.banner-frame {
  position: relative;
  margin: 0;
  overflow: hidden;
  border: 1px solid rgba(124, 255, 0, 0.28);
  box-shadow:
    0 0 0 1px rgba(0, 0, 0, 0.6) inset,
    0 40px 90px rgba(0, 0, 0, 0.5),
    0 0 80px rgba(124, 255, 0, 0.12);
  transform: perspective(1400px) rotateX(7deg) rotateY(-8deg) scale(0.96);
  transform-origin: center;
  transition: transform 1.1s var(--ease), box-shadow 1.1s;
}

.banner-stage.is-inview .banner-frame {
  transform: perspective(1400px) rotateX(0) rotateY(0) scale(1);
}

.banner-frame img {
  width: 100%;
  height: auto;
  display: block;
  filter: saturate(1.05) contrast(1.05);
}

.banner-grain,
.banner-scan {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.banner-grain {
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='140' height='140'><filter id='n'><feTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='3'/></filter><rect width='100%' height='100%' filter='url(%23n)' opacity='0.45'/></svg>");
  opacity: 0.18;
  mix-blend-mode: overlay;
}

.banner-scan {
  background: linear-gradient(to bottom, transparent, rgba(124, 255, 0, 0.08), transparent);
  height: 30%;
  animation: hud-scan 4s linear infinite;
}

.banner-caption {
  display: flex;
  justify-content: center;
  gap: 12px;
  margin-top: 18px;
  font-family: var(--font-mono);
  font-size: 0.75rem;
  letter-spacing: 0.28em;
  color: var(--muted);
}

.banner-caption .sep {
  color: var(--green);
}

/* ---------- final cta ---------- */
.final-cta {
  position: relative;
  z-index: 1;
  min-height: 92svh;
  display: grid;
  place-items: center;
  text-align: center;
  padding: 100px 20px;
  overflow: hidden;
}

.cta-particles {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
}

.final-inner {
  position: relative;
  z-index: 1;
}

.final-head {
  font-family: var(--font-display);
  font-size: clamp(2.6rem, 8vw, 7rem);
  line-height: 0.9;
  letter-spacing: -0.03em;
  max-width: 12ch;
  margin: 0 auto 24px;
}

.final-sub {
  color: var(--muted);
  letter-spacing: 0.18em;
  font-family: var(--font-display);
  font-size: clamp(0.95rem, 2vw, 1.2rem);
}

.final-ticker {
  margin: 28px 0 36px;
  font-family: var(--font-display);
  font-size: clamp(3rem, 12vw, 9.5rem);
  line-height: 0.85;
  color: var(--green);
  text-shadow:
    0 0 30px rgba(124, 255, 0, 0.55),
    0 0 90px rgba(124, 255, 0, 0.25);
  animation: aura-breathe 3.8s ease-in-out infinite;
}

.final-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
}

/* ---------- footer ---------- */
.footer {
  position: relative;
  z-index: 1;
  border-top: 1px solid var(--line);
  padding: 36px 20px 48px;
}

.footer-inner {
  width: min(1080px, 100%);
  margin: 0 auto;
  display: grid;
  gap: 10px;
  justify-items: center;
  text-align: center;
  color: var(--muted);
  font-size: 0.95rem;
}

.footer-ca {
  font-family: var(--font-mono);
  color: rgba(124, 255, 0, 0.7);
  word-break: break-all;
}

/* ---------- scroll reveals ---------- */
.reveal,
.reveal-line,
.reveal-words .word,
.reveal-scale,
.reveal-glow,
.reveal-mega {
  opacity: 0;
}

.reveal {
  transform: translateY(22px);
  filter: blur(8px);
  transition: opacity 0.8s var(--ease), transform 0.8s var(--ease), filter 0.8s var(--ease);
}

.reveal.delay-2 { transition-delay: 0.12s; }
.reveal.delay-3 { transition-delay: 0.2s; }
.reveal.delay-4 { transition-delay: 0.28s; }

.reveal-line {
  transform: translateY(28px);
  filter: blur(10px);
  transition: opacity 0.9s var(--ease), transform 0.9s var(--ease), filter 0.9s var(--ease), color 0.9s;
}

.reveal-scale {
  transform: scale(0.96);
  filter: blur(8px);
  transition: opacity 1s var(--ease), transform 1s var(--ease), filter 1s var(--ease);
}

.reveal-glow,
.reveal-mega {
  transform: translateY(30px) scale(0.98);
  filter: blur(12px);
  transition: opacity 1s var(--ease), transform 1s var(--ease), filter 1s var(--ease);
}

.is-inview.reveal,
.is-inview .reveal,
.reveal.is-inview,
.reveal-line.is-inview,
.reveal-scale.is-inview,
.reveal-glow.is-inview,
.reveal-mega.is-inview,
.is-inview.reveal-line,
.is-inview.reveal-scale,
.is-inview.reveal-glow,
.is-inview.reveal-mega {
  opacity: 1;
  transform: none;
  filter: none;
}

.word {
  display: inline-block;
  opacity: 0;
  filter: blur(8px);
  transform: translateY(14px);
  transition: opacity 0.5s var(--ease), transform 0.5s var(--ease), filter 0.5s var(--ease);
  transition-delay: calc(var(--i) * 45ms);
}

.reveal-words.is-inview .word {
  opacity: 1;
  filter: none;
  transform: none;
}

/* ---------- keyframes ---------- */
@keyframes title-in {
  from { transform: translateY(36px); opacity: 0; filter: blur(12px); }
  to { transform: none; opacity: 1; filter: none; }
}

@keyframes aura-breathe {
  0%, 100% { text-shadow: 0 0 18px rgba(124, 255, 0, 0.55), 0 0 48px rgba(124, 255, 0, 0.25); }
  50% { text-shadow: 0 0 28px rgba(156, 255, 0, 0.9), 0 0 80px rgba(124, 255, 0, 0.4); }
}

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

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

@keyframes ring-pulse {
  0%, 100% { transform: translate(-50%, -50%) scale(0.96); opacity: 0.35; }
  50% { transform: translate(-50%, -50%) scale(1.05); opacity: 0.7; }
}

@keyframes flare {
  0%, 100% { opacity: 0.25; transform: translate(-50%, -50%) rotate(18deg); }
  50% { opacity: 0.55; transform: translate(-50%, -50%) rotate(22deg) translateX(12px); }
}

@keyframes pulse {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.35; }
}

@keyframes blink {
  0%, 70%, 100% { opacity: 1; }
  80% { opacity: 0.2; }
}

@keyframes hud-scan {
  0% { top: -40%; }
  100% { top: 110%; }
}

@keyframes meter-fill {
  to { width: 100%; }
}

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

@keyframes tap-pop {
  0% { transform: scale(0.92); }
  100% { transform: scale(1); }
}

@keyframes grid-drift {
  to { background-position: 0 72px; }
}

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

@keyframes smoke-a {
  0%, 100% { transform: translate3d(0, 0, 0) scale(1); }
  50% { transform: translate3d(-4%, 6%, 0) scale(1.08); }
}

@keyframes smoke-b {
  0%, 100% { transform: translate3d(0, 0, 0) scale(1); }
  50% { transform: translate3d(6%, -5%, 0) scale(1.12); }
}

@keyframes grain-shift {
  0% { transform: translate(0, 0); }
  100% { transform: translate(-2%, 1%); }
}

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

@keyframes glitch-shift {
  0% { transform: translate(0); }
  20% { transform: translate(-2px, 1px); }
  40% { transform: translate(2px, -1px); }
  60% { transform: translate(-1px, 0); }
  80% { transform: translate(1px, 1px); }
  100% { transform: translate(0); }
}

@keyframes line-grow {
  to { transform: scaleX(1); }
}

@keyframes bolt {
  0%, 100% { opacity: 0.15; transform: translateX(-50%) scaleY(0.8); }
  50% { opacity: 0.55; transform: translateX(-50%) scaleY(1.1); }
}

/* ---------- mobile ---------- */
@media (max-width: 960px) {
  body,
  button,
  a {
    cursor: auto;
  }

  .cursor-glow,
  .cursor-dot,
  .mouse-aura,
  .side-ticker {
    display: none;
  }

  .nav-links {
    display: none;
  }

  .nav-toggle {
    display: block;
  }

  .hero-layout {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .hero-copy {
    position: relative;
    z-index: 2;
    padding-top: 12px;
    background: linear-gradient(to bottom, transparent, rgba(5, 5, 5, 0.55) 8%, transparent 18%);
  }

  .hero-tagline,
  .hero-support {
    max-width: none;
    margin-left: auto;
    margin-right: auto;
  }

  .hero-actions,
  .hud {
    margin-left: auto;
    margin-right: auto;
  }

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

  .hero-visual {
    order: -1;
    min-height: 0;
    margin: 0 auto -6px;
    opacity: 0.95;
  }

  .hero-art {
    width: min(86vw, 520px);
    max-height: 46vh;
  }

  .hud {
    text-align: left;
  }

  .banner-frame {
    transform: none;
  }

  .fx-rays,
  .fx-grid {
    opacity: 0.45;
  }
}

@media (max-width: 600px) {
  .section-wrap,
  .hero-layout {
    width: calc(100% - 28px);
  }

  .hero {
    padding-top: calc(var(--nav-h) + 8px);
  }

  .hero-title {
    font-size: clamp(4.2rem, 22vw, 6.2rem);
  }

  .hero-actions .btn-primary,
  .hero-actions .btn-ghost {
    flex: 1 1 160px;
  }

  .ca-module {
    padding: 22px 16px 18px;
  }

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

  .btn-copy {
    width: 100%;
  }

  .story-triad {
    flex-direction: column;
    gap: 6px;
  }

  .final-actions {
    flex-direction: column;
  }

  .final-actions .btn {
    width: 100%;
  }

  .aura-bolt,
  .fx-smoke-b {
    display: none;
  }
}

@media (hover: none) {
  body,
  button,
  a {
    cursor: auto;
  }

  a, button {
    cursor: pointer;
  }

  .cursor-glow,
  .cursor-dot {
    display: none;
  }
}

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

  *,
  *::before,
  *::after {
    animation: none !important;
    transition: none !important;
  }

  .reveal,
  .reveal-line,
  .reveal-scale,
  .reveal-glow,
  .reveal-mega,
  .word,
  .glitch-final,
  .hero-art,
  .line-ansem,
  .line-aura {
    opacity: 1 !important;
    transform: none !important;
    filter: none !important;
  }

  .fx-grain,
  .fx-rays,
  .hero-particles,
  .cta-particles,
  .cursor-glow,
  .cursor-dot,
  .mouse-aura {
    display: none;
  }

  body {
    cursor: auto;
  }
}
