/* =============================================
   VORA PROTOCOL — Premium Bioluminescent AI
   Theme: Void-black / Violet / Electric Cyan
   ============================================= */

@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@300;400;500;600;700;800;900&family=DM+Mono:wght@400;500&family=Syne:wght@700;800&display=swap');

/* --- TOKENS --- */
:root {
  --bg:       #04060f;
  --bg2:      #060913;
  --bg3:      #080c1a;
  --violet:   #7c3aed;
  --violet-l: #a855f7;
  --cyan:     #00d4ff;
  --teal:     #00ffcc;
  --white:    #e0e8ff;
  --dim:      #5a6a8a;
  --muted:    #1a2035;
  --border:   rgba(124,58,237,0.12);
  --border-v: rgba(124,58,237,0.35);
  --glow-v:   rgba(124,58,237,0.15);
  --glow-c:   rgba(0,212,255,0.1);

  --font-h:    'Syne', sans-serif;
  --font-body: 'Outfit', sans-serif;
  --font-mono: 'DM Mono', monospace;

  --nav-h: 72px;
  --max:   1280px;
}

/* --- RESET --- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  background: var(--bg);
  color: var(--white);
  font-family: var(--font-body);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}
a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
button { font-family: var(--font-body); border: none; cursor: pointer; background: none; }

/* Neural canvas */
#neuralCanvas {
  position: fixed;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  opacity: 0.4;
}

/* Gradient text */
.vora-text {
  background: linear-gradient(90deg, var(--violet-l), var(--cyan));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* =============================================
   BUTTONS
   ============================================= */
.btn-vora {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 32px;
  border-radius: 6px;
  cursor: pointer;
  overflow: hidden;
  background: linear-gradient(135deg, var(--violet) 0%, #5b21b6 50%, var(--violet) 100%);
  background-size: 200%;
  border: 1px solid rgba(124,58,237,0.5);
  transition: all 0.3s ease;
}
.btn-vora:hover {
  background-position: right center;
  border-color: var(--violet-l);
  transform: translateY(-2px);
}
.btn-vora-text {
  position: relative;
  z-index: 2;
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 0.9rem;
  letter-spacing: 0.5px;
  color: #fff;
}
.btn-vora-glow {
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 50% -20%, rgba(168,85,247,0.6), transparent 60%);
  pointer-events: none;
  transition: opacity 0.3s;
  opacity: 0;
}
.btn-vora:hover .btn-vora-glow { opacity: 1; }

.btn-ghost {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 32px;
  border-radius: 6px;
  border: 1px solid var(--border-v);
  font-weight: 600;
  font-size: 0.9rem;
  color: var(--dim);
  transition: all 0.25s ease;
  letter-spacing: 0.3px;
}
.btn-ghost:hover { border-color: var(--violet-l); color: var(--white); background: var(--glow-v); }

.btn-lg { padding: 16px 40px; font-size: 1rem; }
.btn-xl { padding: 20px 56px; font-size: 1.1rem; border-radius: 8px; }

/* =============================================
   NAVBAR
   ============================================= */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  height: var(--nav-h);
  border-bottom: 1px solid transparent;
  transition: all 0.4s ease;
}
.nav.scrolled {
  background: rgba(4,6,15,0.9);
  backdrop-filter: blur(20px);
  border-bottom-color: var(--border);
}
.nav-inner {
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 32px;
  height: 100%;
  display: flex;
  align-items: center;
  gap: 48px;
}
.nav-brand {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
}
.nav-logo { width: 36px; height: 36px; object-fit: contain; }
.nav-wordmark {
  font-family: var(--font-h);
  font-size: 1.2rem;
  font-weight: 800;
  letter-spacing: 4px;
  background: linear-gradient(90deg, var(--violet-l), var(--cyan));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.nav-links {
  display: flex;
  list-style: none;
  gap: 32px;
  margin-left: auto;
}
.nl {
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--dim);
  letter-spacing: 0.5px;
  transition: color 0.2s;
  position: relative;
}
.nl::after {
  content: '';
  position: absolute;
  bottom: -4px; left: 0;
  width: 0; height: 1px;
  background: linear-gradient(90deg, var(--violet-l), var(--cyan));
  transition: width 0.25s ease;
}
.nl:hover, .nl.active { color: var(--white); }
.nl:hover::after, .nl.active::after { width: 100%; }

.nav-ctas { display: flex; gap: 12px; align-items: center; }

.burger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  margin-left: auto;
}
.burger span {
  width: 22px; height: 1.5px;
  background: var(--dim);
  display: block;
  transition: all 0.3s;
}

/* =============================================
   HERO
   ============================================= */
.hero {
  position: relative;
  min-height: 100vh;
  padding-top: var(--nav-h);
  display: flex;
  align-items: center;
  overflow: hidden;
}
.hero-backdrop {
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 80% 60% at 70% 50%, rgba(124,58,237,0.08) 0%, transparent 60%),
              radial-gradient(ellipse 60% 50% at 30% 80%, rgba(0,212,255,0.05) 0%, transparent 50%);
  pointer-events: none;
  z-index: 1;
}
.hero-orb {
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
  filter: blur(80px);
  animation: orb-drift 12s ease-in-out infinite;
}
.hero-orb-1 {
  width: 500px; height: 500px;
  background: rgba(124,58,237,0.12);
  top: -100px; right: 20%;
  animation-delay: 0s;
  z-index: 1;
}
.hero-orb-2 {
  width: 350px; height: 350px;
  background: rgba(0,212,255,0.07);
  bottom: 0; right: 5%;
  animation-delay: -4s;
  z-index: 1;
}
.hero-orb-3 {
  width: 250px; height: 250px;
  background: rgba(168,85,247,0.08);
  top: 40%; left: 5%;
  animation-delay: -8s;
  z-index: 1;
}
@keyframes orb-drift {
  0%, 100% { transform: translate(0,0) scale(1); }
  33% { transform: translate(30px, -20px) scale(1.05); }
  66% { transform: translate(-20px, 30px) scale(0.95); }
}

.hero-inner {
  position: relative;
  z-index: 2;
  max-width: var(--max);
  margin: 0 auto;
  padding: 80px 32px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
  width: 100%;
}

/* --- HERO COPY --- */
.hero-copy { display: flex; flex-direction: column; gap: 32px; }

.hero-pill {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 8px 16px;
  border: 1px solid var(--border-v);
  border-radius: 100px;
  width: fit-content;
  background: rgba(124,58,237,0.06);
  backdrop-filter: blur(8px);
}
.pill-pulse {
  width: 7px; height: 7px;
  background: var(--cyan);
  border-radius: 50%;
  box-shadow: 0 0 8px var(--cyan);
  animation: pulse-ring 1.5s ease-in-out infinite;
}
@keyframes pulse-ring {
  0%, 100% { box-shadow: 0 0 4px var(--cyan); transform: scale(1); }
  50% { box-shadow: 0 0 12px var(--cyan); transform: scale(1.2); }
}
.pill-label {
  font-family: var(--font-mono);
  font-size: 0.65rem;
  letter-spacing: 1.5px;
  color: var(--cyan);
  text-transform: uppercase;
}

.hero-h1 {
  font-family: var(--font-h);
  font-size: clamp(2.2rem, 4.5vw, 4rem);
  font-weight: 800;
  line-height: 1;
  letter-spacing: -1px;
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.h1-line { display: block; color: var(--white); }
.h1-gradient {
  background: linear-gradient(90deg, var(--violet-l) 0%, var(--cyan) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.h1-dim { color: rgba(224,232,255,0.35); }

.hero-sub {
  font-size: 1rem;
  color: var(--dim);
  line-height: 1.85;
  max-width: 480px;
}

.hero-metrics {
  display: flex;
  align-items: center;
  gap: 0;
  padding: 20px 0;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.metric { flex: 1; text-align: center; }
.metric-sep { width: 1px; height: 32px; background: var(--border); }
.metric-val {
  font-family: var(--font-h);
  font-size: 1.2rem;
  font-weight: 800;
  letter-spacing: -0.5px;
  color: var(--white);
}
.metric-key {
  font-family: var(--font-mono);
  font-size: 0.58rem;
  color: var(--dim);
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-top: 4px;
}

.hero-btns { display: flex; gap: 16px; flex-wrap: wrap; }

/* --- HERO VISUAL: VORA CORE --- */
.hero-display {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 32px;
}

.vora-core {
  position: relative;
  width: 320px; height: 320px;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Rotating rings */
.ring {
  position: absolute;
  border-radius: 50%;
  border: 1px solid transparent;
}
.ring-1 {
  width: 100%; height: 100%;
  border-color: rgba(124,58,237,0.2);
  animation: spin 20s linear infinite;
}
.ring-2 {
  width: 75%; height: 75%;
  border-color: rgba(0,212,255,0.15);
  border-style: dashed;
  animation: spin 14s linear infinite reverse;
}
.ring-3 {
  width: 50%; height: 50%;
  border-color: rgba(168,85,247,0.25);
  animation: spin 8s linear infinite;
}
@keyframes spin { to { transform: rotate(360deg); } }

/* Center orb with glow */
.core-center {
  position: relative;
  z-index: 5;
  width: 100px; height: 100px;
  border-radius: 50%;
  background: radial-gradient(circle at 40% 35%, rgba(124,58,237,0.3), rgba(0,212,255,0.1));
  border: 1px solid rgba(124,58,237,0.4);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow:
    0 0 30px rgba(124,58,237,0.3),
    0 0 80px rgba(124,58,237,0.1),
    inset 0 0 30px rgba(0,212,255,0.05);
  animation: core-pulse 4s ease-in-out infinite;
}
@keyframes core-pulse {
  0%, 100% { box-shadow: 0 0 30px rgba(124,58,237,0.3), 0 0 80px rgba(124,58,237,0.1); }
  50% { box-shadow: 0 0 50px rgba(124,58,237,0.5), 0 0 120px rgba(124,58,237,0.2), 0 0 20px rgba(0,212,255,0.2); }
}
.core-logo { width: 52px; height: 52px; object-fit: contain; }

/* Orbiting data nodes */
.orbit-node {
  position: absolute;
  width: 76px;
  background: rgba(4,6,15,0.9);
  border: 1px solid var(--border-v);
  border-radius: 8px;
  padding: 8px 10px;
  backdrop-filter: blur(10px);
  transition: all 0.3s ease;
  z-index: 6;
}
.orbit-node:hover { border-color: var(--violet-l); box-shadow: 0 0 20px rgba(124,58,237,0.3); }

.node-1 { top: 8%; left: 50%; transform: translateX(-50%); }
.node-2 { right: 2%; top: 50%; transform: translateY(-50%); }
.node-3 { bottom: 8%; left: 50%; transform: translateX(-50%); }
.node-4 { left: 2%; top: 50%; transform: translateY(-50%); }

.node-label {
  font-family: var(--font-mono);
  font-size: 0.5rem;
  color: var(--dim);
  letter-spacing: 1.5px;
  text-transform: uppercase;
  text-align: center;
  margin-bottom: 3px;
}
.node-val {
  font-family: var(--font-h);
  font-size: 0.9rem;
  font-weight: 700;
  text-align: center;
  background: linear-gradient(90deg, var(--violet-l), var(--cyan));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* Data stream */
.data-stream {
  width: 100%;
  max-width: 340px;
  background: rgba(6,9,19,0.8);
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 16px;
  backdrop-filter: blur(12px);
}
.stream-label {
  font-family: var(--font-mono);
  font-size: 0.55rem;
  color: var(--dim);
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 12px;
  display: flex;
  align-items: center;
  gap: 8px;
}
.stream-label::after { content: ''; flex: 1; height: 1px; background: var(--border); }
#streamLines { display: flex; flex-direction: column; gap: 4px; }
.sline {
  font-family: var(--font-mono);
  font-size: 0.6rem;
  color: var(--dim);
  display: flex;
  gap: 8px;
  opacity: 0;
  transition: opacity 0.4s ease;
}
.sline.visible { opacity: 1; }
.sline-tag {
  color: var(--cyan);
  flex-shrink: 0;
  min-width: 50px;
}
.sline-v { flex-shrink: 0; font-size: 0.55rem; color: var(--muted); margin-left: auto; }

/* =============================================
   MARQUEE
   ============================================= */
.marquee {
  position: relative;
  z-index: 2;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  background: rgba(6,9,19,0.6);
  overflow: hidden;
  height: 40px;
  display: flex;
  align-items: center;
}
.marquee-inner {
  display: flex;
  gap: 0;
  animation: marquee-run 25s linear infinite;
  white-space: nowrap;
}
.mi {
  font-family: var(--font-mono);
  font-size: 0.7rem;
  letter-spacing: 2px;
  color: var(--dim);
  padding: 0 28px;
  text-transform: uppercase;
}
.mi b { color: var(--violet-l); }
.mi-dot { color: rgba(124,58,237,0.4); font-size: 0.5rem; align-self: center; }
@keyframes marquee-run { 0% { transform: translateX(0); } 100% { transform: translateX(-50%); } }

/* =============================================
   SECTIONS BASE
   ============================================= */
.section {
  position: relative;
  z-index: 2;
  padding: 120px 0;
  border-top: 1px solid var(--border);
}
.section-inner {
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 32px;
}
.sec-head {
  max-width: 640px;
  margin: 0 auto 72px;
  text-align: center;
}
.sec-tag {
  display: inline-block;
  font-family: var(--font-mono);
  font-size: 0.65rem;
  color: var(--violet-l);
  letter-spacing: 3px;
  text-transform: uppercase;
  border: 1px solid rgba(124,58,237,0.2);
  padding: 4px 14px;
  border-radius: 100px;
  margin-bottom: 20px;
}
.sec-title {
  font-family: var(--font-h);
  font-size: clamp(1.6rem, 3vw, 2.4rem);
  font-weight: 800;
  letter-spacing: -0.5px;
  line-height: 1.1;
  margin-bottom: 16px;
}
.sec-sub { font-size: 0.95rem; color: var(--dim); line-height: 1.8; }

/* =============================================
   HOW IT HUNTS
   ============================================= */
.hunt-section { background: var(--bg2); }

.hunt-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--border);
  border: 1px solid var(--border);
  border-radius: 12px;
  overflow: hidden;
}
.hcard {
  background: var(--bg2);
  padding: 48px 36px;
  position: relative;
  overflow: hidden;
  transition: background 0.3s;
}
.hcard:hover { background: var(--bg3); }
.hcard-featured { background: var(--bg3); }
.hcard-glow {
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at top, rgba(124,58,237,0.08), transparent 70%);
  pointer-events: none;
}

.hcard-num {
  font-family: var(--font-mono);
  font-size: 0.6rem;
  color: var(--muted);
  letter-spacing: 3px;
  margin-bottom: 24px;
}
.hcard-icon {
  width: 52px; height: 52px;
  border: 1px solid var(--border-v);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 24px;
  background: rgba(124,58,237,0.05);
}
.hcard-title {
  font-family: var(--font-h);
  font-size: 1.2rem;
  font-weight: 800;
  letter-spacing: 1px;
  margin-bottom: 16px;
  color: var(--white);
}
.hcard-featured .hcard-title {
  background: linear-gradient(90deg, var(--violet-l), var(--cyan));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.hcard-desc { font-size: 0.85rem; color: var(--dim); line-height: 1.8; margin-bottom: 28px; }
.hcard-stat {
  display: flex;
  align-items: baseline;
  gap: 8px;
  padding-top: 20px;
  border-top: 1px solid var(--border);
}
.hcard-num-big {
  font-family: var(--font-h);
  font-size: 1.3rem;
  font-weight: 800;
  background: linear-gradient(90deg, var(--violet-l), var(--cyan));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.hcard-unit {
  font-family: var(--font-mono);
  font-size: 0.6rem;
  color: var(--muted);
  letter-spacing: 1px;
}

/* =============================================
   LIVE FEED
   ============================================= */
.feed-section { background: var(--bg); }

.feed-layout {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 24px;
  align-items: start;
}

/* Terminal */
.feed-terminal {
  background: var(--bg2);
  border: 1px solid var(--border);
  border-radius: 12px;
  overflow: hidden;
}
.feed-top {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 12px 20px;
  border-bottom: 1px solid var(--border);
  background: rgba(124,58,237,0.04);
}
.feed-dots { display: flex; gap: 6px; }
.fd {
  width: 8px; height: 8px;
  border-radius: 50%;
}
.fd.violet { background: var(--violet); box-shadow: 0 0 6px var(--violet); }
.fd.cyan { background: var(--cyan); }
.fd.dim { background: var(--muted); }
.feed-title-bar {
  font-family: var(--font-mono);
  font-size: 0.65rem;
  color: var(--dim);
  letter-spacing: 1px;
  margin-left: 6px;
}
.feed-blink {
  margin-left: auto;
  font-family: var(--font-mono);
  font-size: 0.6rem;
  color: var(--cyan);
  animation: blink 1.5s ease-in-out infinite;
  letter-spacing: 1px;
}
@keyframes blink { 0%,100% { opacity: 1; } 50% { opacity: 0.3; } }

.feed-items { padding: 16px 20px; display: flex; flex-direction: column; gap: 2px; min-height: 200px; }
.feed-entry {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  padding: 7px 10px;
  border-radius: 6px;
  border-left: 2px solid transparent;
  transition: all 0.25s ease;
  opacity: 0;
  transform: translateX(-6px);
}
.feed-entry.visible { opacity: 1; transform: translateX(0); }
.feed-entry:hover { background: rgba(124,58,237,0.05); border-left-color: var(--violet-l); }
.fe-tag {
  font-family: var(--font-mono);
  font-size: 0.55rem;
  font-weight: 500;
  letter-spacing: 0.5px;
  padding: 2px 7px;
  border-radius: 4px;
  flex-shrink: 0;
  border: 1px solid transparent;
}
.fe-tag.t-alpha { border-color: var(--cyan); color: var(--cyan); background: rgba(0,212,255,0.08); }
.fe-tag.t-hunt  { border-color: var(--violet-l); color: var(--violet-l); background: rgba(168,85,247,0.08); }
.fe-tag.t-burn  { border-color: var(--teal); color: var(--teal); background: rgba(0,255,204,0.06); }
.fe-tag.t-data  { border-color: var(--dim); color: var(--dim); background: transparent; }
.fe-text {
  font-family: var(--font-mono);
  font-size: 0.65rem;
  color: var(--dim);
  flex: 1;
  line-height: 1.5;
}
.fe-time {
  font-family: var(--font-mono);
  font-size: 0.55rem;
  color: var(--muted);
  flex-shrink: 0;
  align-self: center;
}

/* Stats panel */
.feed-stats { display: flex; flex-direction: column; gap: 16px; }

.fstat-card {
  background: var(--bg2);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 28px 24px;
  position: relative;
  overflow: hidden;
}
.fstat-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--violet), var(--cyan));
}
.fstat-label {
  font-family: var(--font-mono);
  font-size: 0.6rem;
  color: var(--dim);
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 12px;
}
.fstat-big {
  font-family: var(--font-h);
  font-size: 2.8rem;
  font-weight: 800;
  letter-spacing: -2px;
  background: linear-gradient(135deg, var(--violet-l), var(--cyan));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1;
  margin-bottom: 16px;
}
.fstat-bar-outer {
  height: 4px;
  background: var(--muted);
  border-radius: 2px;
  overflow: hidden;
  margin-bottom: 10px;
}
.fstat-bar-inner {
  height: 100%;
  background: linear-gradient(90deg, var(--violet), var(--cyan));
  border-radius: 2px;
  transition: width 0.8s ease;
  position: relative;
}
.fstat-bar-inner::after {
  content: '';
  position: absolute;
  top: 0; right: 0;
  width: 6px; height: 100%;
  background: #fff;
  filter: blur(3px);
  opacity: 0.7;
}
.fstat-sub {
  font-family: var(--font-mono);
  font-size: 0.58rem;
  color: var(--cyan);
  letter-spacing: 2px;
  text-transform: uppercase;
}

.fstat-mini-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1px;
  background: var(--border);
  border: 1px solid var(--border);
  border-radius: 10px;
  overflow: hidden;
}
.fmini {
  background: var(--bg2);
  padding: 16px;
}
.fmini-label {
  font-family: var(--font-mono);
  font-size: 0.55rem;
  color: var(--muted);
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-bottom: 6px;
}
.fmini-val {
  font-family: var(--font-h);
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--white);
}

/* =============================================
   TOKENOMICS
   ============================================= */
.token-section { background: var(--bg2); }

.token-layout {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 16px;
}

.tinfo-card, .tdonut-card, .tfly-card {
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 32px 28px;
}

.trow {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 13px 0;
  border-bottom: 1px solid rgba(255,255,255,0.03);
}
.trow:last-child { border-bottom: none; }
.tk {
  font-family: var(--font-mono);
  font-size: 0.65rem;
  color: var(--muted);
  letter-spacing: 1px;
}
.tv {
  font-family: var(--font-mono);
  font-size: 0.75rem;
  color: var(--white);
  font-weight: 500;
  text-align: right;
}

.tdonut-card { display: flex; flex-direction: column; align-items: center; gap: 24px; }
.tdonut-label {
  font-family: var(--font-mono);
  font-size: 0.6rem;
  color: var(--dim);
  letter-spacing: 2px;
  text-transform: uppercase;
  align-self: flex-start;
}
.donut-wrap { position: relative; display: flex; align-items: center; justify-content: center; }
.donut-center-text {
  position: absolute;
  text-align: center;
  pointer-events: none;
}
.dct-big {
  font-family: var(--font-h);
  font-size: 1.2rem;
  font-weight: 800;
  background: linear-gradient(90deg, var(--violet-l), var(--cyan));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.dct-sm {
  font-family: var(--font-mono);
  font-size: 0.5rem;
  color: var(--muted);
  letter-spacing: 1px;
}
.dlegend { display: flex; flex-direction: column; gap: 10px; width: 100%; }
.dl-row {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-mono);
  font-size: 0.65rem;
  color: var(--dim);
}
.dl-dot { width: 10px; height: 10px; border-radius: 2px; flex-shrink: 0; }
.dl-dot.violet { background: var(--violet); }
.dl-dot.cyan { background: var(--cyan); }
.dl-dot.muted { background: var(--muted); border: 1px solid var(--border-v); }

.tfly-header {
  font-family: var(--font-h);
  font-size: 1rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 24px;
  letter-spacing: 0.5px;
}
.tfly-steps { display: flex; flex-direction: column; }
.tstep {
  display: flex;
  gap: 14px;
  align-items: flex-start;
  padding: 14px 0;
  border-bottom: 1px solid rgba(255,255,255,0.03);
}
.tstep:last-child { border-bottom: none; }
.tstep-hot { background: rgba(124,58,237,0.04); border-radius: 6px; padding: 14px 10px; border: none; }
.tstep-n {
  font-family: var(--font-h);
  font-size: 0.95rem;
  font-weight: 800;
  color: var(--muted);
  flex-shrink: 0;
  min-width: 28px;
}
.tstep-t {
  font-size: 0.78rem;
  color: var(--dim);
  line-height: 1.7;
  padding-top: 3px;
}
.tstep-arrow {
  font-family: var(--font-mono);
  color: var(--violet);
  font-size: 1rem;
  padding-left: 10px;
  opacity: 0.5;
}

/* =============================================
   PROPHECY
   ============================================= */
.prophecy-section {
  background: var(--bg);
  padding: 160px 0;
  overflow: hidden;
  text-align: center;
}
.prophecy-bg {
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 60% 60% at 50% 50%, rgba(124,58,237,0.08) 0%, transparent 70%);
  pointer-events: none;
}
.prophecy-inner {
  position: relative;
  z-index: 2;
  max-width: 700px;
  margin: 0 auto;
  padding: 0 32px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 64px;
}
.prophecy-lines {
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.pline {
  font-family: var(--font-h);
  font-size: clamp(1.2rem, 2.8vw, 2.2rem);
  font-weight: 800;
  letter-spacing: -0.5px;
  color: var(--white);
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.6s ease, transform 0.6s ease;
  line-height: 1.15;
}
.pline.in { opacity: 1; transform: translateY(0); }
.pline.sp { margin-top: 24px; }
.pline.climax {
  font-size: clamp(1.8rem, 3.5vw, 3rem);
  letter-spacing: -1px;
}

/* =============================================
   FOOTER
   ============================================= */
.footer {
  position: relative;
  z-index: 2;
  border-top: 1px solid var(--border);
  background: var(--bg2);
}
.footer-inner {
  max-width: var(--max);
  margin: 0 auto;
  padding: 64px 32px 40px;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 80px;
}
.footer-brand { display: flex; flex-direction: column; gap: 14px; max-width: 280px; }
.fb-logo { display: flex; align-items: center; gap: 10px; }
.fb-img { width: 32px; height: 32px; object-fit: contain; }
.fb-name {
  font-family: var(--font-h);
  font-size: 1.1rem;
  font-weight: 800;
  letter-spacing: 4px;
  background: linear-gradient(90deg, var(--violet-l), var(--cyan));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.fb-tag {
  font-family: var(--font-mono);
  font-size: 0.65rem;
  color: var(--muted);
  letter-spacing: 1px;
}
.fb-socials { display: flex; gap: 8px; }
.fsoc {
  width: 34px; height: 34px;
  border: 1px solid var(--border);
  border-radius: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--muted);
  transition: all 0.2s;
}
.fsoc:hover { border-color: var(--violet-l); color: var(--violet-l); background: rgba(124,58,237,0.08); }

.footer-links { display: flex; gap: 60px; }
.fc { display: flex; flex-direction: column; gap: 12px; }
.fc-title {
  font-family: var(--font-mono);
  font-size: 0.6rem;
  color: var(--violet-l);
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 4px;
}
.fc a {
  font-size: 0.85rem;
  color: var(--dim);
  transition: color 0.2s;
  font-weight: 500;
}
.fc a:hover { color: var(--white); }

.footer-bot {
  max-width: var(--max);
  margin: 0 auto;
  padding: 20px 32px;
  border-top: 1px solid var(--border);
  display: flex;
  justify-content: space-between;
}
.footer-bot span {
  font-family: var(--font-mono);
  font-size: 0.65rem;
  color: var(--muted);
}

/* =============================================
   RESPONSIVE
   ============================================= */
@media (max-width: 1024px) {
  .hero-inner { grid-template-columns: 1fr; text-align: center; gap: 56px; }
  .hero-copy { align-items: center; }
  .hero-sub { text-align: left; }
  .hero-metrics { max-width: 400px; }
  .hero-btns { justify-content: center; }
  .hero-display { align-self: center; }

  .hunt-cards { grid-template-columns: 1fr; }
  .feed-layout { grid-template-columns: 1fr; }
  .token-layout { grid-template-columns: 1fr; }
  .footer-inner { grid-template-columns: 1fr; gap: 40px; }
  .footer-links { flex-wrap: wrap; gap: 40px; }
}

@media (max-width: 768px) {
  .nav-links, .nav-ctas { display: none; }
  .burger { display: flex; }
  .nav-links.open {
    display: flex;
    flex-direction: column;
    position: fixed;
    top: var(--nav-h);
    left: 0; right: 0;
    background: rgba(4,6,15,0.98);
    padding: 32px;
    gap: 20px;
    align-items: center;
    border-bottom: 1px solid var(--border);
    backdrop-filter: blur(20px);
    z-index: 999;
  }
  .burger.open span:nth-child(1) { transform: rotate(45deg) translate(4px,4px); }
  .burger.open span:nth-child(2) { opacity: 0; }
  .burger.open span:nth-child(3) { transform: rotate(-45deg) translate(5px,-5px); }

  .vora-core { width: 260px; height: 260px; }
  .footer-bot { flex-direction: column; gap: 8px; text-align: center; }
  .pline { font-size: 1.8rem; }
  .pline.climax { font-size: 2.5rem; }
  .hero-metrics { flex-direction: column; gap: 16px; }
  .metric-sep { width: 80px; height: 1px; }
}
