/* ══════════════════════════════════════════
   ZXANO — Ultra Premium Crypto CSS
   White • Animated • Geometric
══════════════════════════════════════════ */

:root {
  --black: #0a0a0a;
  --white: #ffffff;
  --off-white: #f8f8f8;
  --gray-light: #e8e8e8;
  --gray-mid: #888;
  --gray-dark: #333;
  --accent: #0a0a0a;
  --accent-glow: rgba(10,10,10,0.15);

  --font-main: 'Outfit', sans-serif;
  --font-alt: 'Space Grotesk', sans-serif;

  --section-pad: 120px;
  --demo-h: 38px;
  --nav-h: 72px;

  --ease-bounce: cubic-bezier(0.34, 1.56, 0.64, 1);
  --ease-smooth: cubic-bezier(0.25, 0.46, 0.45, 0.94);
  --ease-sharp: cubic-bezier(0.77, 0, 0.175, 1);
}

/* ─── RESET ─── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { 
  scroll-behavior: auto; /* Required for Lenis smooth scroll to work properly */
  font-size: 16px;
}
body {
  font-family: var(--font-main);
  background: var(--white);
  color: var(--black);
  overflow-x: hidden;
  cursor: none;
}
a { text-decoration: none; color: inherit; }
ul { list-style: none; }
button { cursor: none; font-family: var(--font-main); border: none; outline: none; background: none; }
body.nav-open { overflow: hidden; }
@media (hover: none) {
  body, button { cursor: auto; }
  .cursor, .cursor-follower { display: none; }
}

.demo-disclaimer {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1200;
  min-height: var(--demo-h);
  padding: 8px 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  background: var(--black);
  color: var(--white);
  border-bottom: 1px solid rgba(255,255,255,0.12);
  font-size: 0.78rem;
  line-height: 1.35;
  text-align: center;
}
.demo-disclaimer strong {
  font-weight: 800;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}
.demo-disclaimer span {
  color: rgba(255,255,255,0.72);
}

/* ─── SCROLLBAR ─── */
::-webkit-scrollbar { width: 4px; }
::-webkit-scrollbar-track { background: var(--white); }
::-webkit-scrollbar-thumb { background: var(--black); border-radius: 2px; }

/* ═══════════════════════════════
   CUSTOM CURSOR
═══════════════════════════════ */
.cursor {
  position: fixed;
  width: 10px; height: 10px;
  background: var(--black);
  border-radius: 50%;
  pointer-events: none;
  z-index: 9999;
  transform: translate(-50%, -50%);
  transition: transform 0.1s var(--ease-smooth), width 0.3s, height 0.3s, background 0.3s;
  mix-blend-mode: normal;
  will-change: transform;
}
.cursor-follower {
  position: fixed;
  width: 36px; height: 36px;
  border: 1.5px solid var(--black);
  border-radius: 50%;
  pointer-events: none;
  z-index: 9998;
  transform: translate(-50%, -50%);
  transition: transform 0.35s var(--ease-smooth), width 0.4s, height 0.4s, border-color 0.3s, opacity 0.3s;
  will-change: transform;
}
body.cursor-hover .cursor { width: 16px; height: 16px; background: var(--black); }
body.cursor-hover .cursor-follower { width: 60px; height: 60px; opacity: 0.5; }
body.cursor-click .cursor { transform: translate(-50%, -50%) scale(0.7); }

/* ═══════════════════════════════
   NAV
═══════════════════════════════ */
.nav {
  position: fixed;
  top: var(--demo-h); left: 0; right: 0;
  height: var(--nav-h);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 48px;
  z-index: 1000;
  transition: background 0.4s, box-shadow 0.4s, backdrop-filter 0.4s;
}
.nav.scrolled {
  background: rgba(255,255,255,0.88);
  backdrop-filter: blur(20px);
  box-shadow: 0 1px 0 var(--gray-light);
}

.nav-logo {
  font-family: var(--font-main);
  font-size: 1.6rem;
  font-weight: 800;
  letter-spacing: -0.04em;
  user-select: none;
}
.logo-z {
  display: inline-block;
  background: var(--black);
  color: var(--white);
  width: 32px; height: 32px;
  line-height: 32px;
  text-align: center;
  border-radius: 6px;
  font-size: 1.1rem;
  margin-right: 2px;
}
.logo-xano { letter-spacing: -0.05em; }

.nav-links {
  display: flex;
  gap: 36px;
  font-size: 0.9rem;
  font-weight: 500;
  letter-spacing: 0.02em;
  color: var(--gray-dark);
}
.nav-links a {
  position: relative;
  transition: color 0.2s;
}
.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -3px; left: 0;
  width: 0; height: 1.5px;
  background: var(--black);
  transition: width 0.3s var(--ease-smooth);
}
.nav-links a:hover { color: var(--black); }
.nav-links a:hover::after { width: 100%; }

.nav-cta {
  background: var(--black);
  color: var(--white);
  padding: 10px 24px;
  border-radius: 100px;
  font-size: 0.875rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  transition: transform 0.2s var(--ease-bounce), box-shadow 0.2s;
}
.nav-cta:hover {
  transform: scale(1.04);
  box-shadow: 0 8px 24px rgba(0,0,0,0.18);
}

.nav-burger {
  display: none;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 5px;
  width: 44px;
  height: 44px;
  border: 1px solid rgba(10,10,10,0.14);
  border-radius: 14px;
}
.nav-burger span { display: block; width: 24px; height: 2px; background: var(--black); border-radius: 2px; transition: 0.3s; }
.nav.is-open .nav-burger span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav.is-open .nav-burger span:nth-child(2) { opacity: 0; }
.nav.is-open .nav-burger span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ═══════════════════════════════
   SECTION BASE
═══════════════════════════════ */
.section {
  min-height: 100vh;
  position: relative;
  overflow: hidden;
}
.section-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: var(--section-pad) 48px;
}
.section-label {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gray-mid);
  margin-bottom: 24px;
}
.section-label span {
  display: block;
  width: 24px; height: 1.5px;
  background: var(--gray-mid);
}
.section-title {
  font-size: clamp(2.4rem, 5vw, 4.2rem);
  font-weight: 800;
  line-height: 1.05;
  letter-spacing: -0.04em;
  margin-bottom: 64px;
}
.gradient-text {
  background: linear-gradient(135deg, #0a0a0a 0%, #555 50%, #0a0a0a 100%);
  background-size: 200% auto;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: shimmer 3s linear infinite;
}
@keyframes shimmer {
  to { background-position: 200% center; }
}

/* ═══════════════════════════════
   HERO SECTION
═══════════════════════════════ */
.section-hero {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background: var(--white);
  padding-top: calc(var(--nav-h) + var(--demo-h));
}

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

/* ─── LIGHT BEAMS ─── */
.light-beam {
  position: absolute;
  pointer-events: none;
  opacity: 0;
  animation: beamFadeIn 2s forwards;
}
.beam-1 {
  top: -100px; left: -80px;
  width: 600px; height: 800px;
  background: conic-gradient(from 30deg at 0% 0%, transparent 0deg, rgba(10,10,10,0.04) 30deg, transparent 60deg);
  transform: rotate(-10deg);
  animation-delay: 0.5s;
}
.beam-2 {
  top: -80px; right: -100px;
  width: 500px; height: 700px;
  background: conic-gradient(from 200deg at 100% 0%, transparent 0deg, rgba(10,10,10,0.04) 40deg, transparent 80deg);
  animation-delay: 0.8s;
}
.beam-3 {
  bottom: 0; left: 50%;
  width: 400px; height: 600px;
  background: radial-gradient(ellipse at 50% 100%, rgba(10,10,10,0.06) 0%, transparent 70%);
  transform: translateX(-50%);
  animation-delay: 1.2s;
}
@keyframes beamFadeIn {
  to { opacity: 1; }
}

/* ─── GRID OVERLAY ─── */
.grid-overlay {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(10,10,10,0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(10,10,10,0.04) 1px, transparent 1px);
  background-size: 60px 60px;
  mask-image: radial-gradient(ellipse at center, black 30%, transparent 75%);
  pointer-events: none;
}

/* ─── GEOMETRIC TRANSITION ─── */
.geo-transition {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 160px;
  display: flex;
  align-items: center;
  justify-content: center;
  pointer-events: none;
  overflow: visible;
}
.geo-track {
  display: flex;
  align-items: center;
  gap: 0;
  position: relative;
  width: 420px;
}
.geo-shape {
  flex-shrink: 0;
  width: 80px; height: 80px;
  fill: none;
  stroke: var(--black);
  stroke-width: 1.5;
  opacity: 0.2;
}
.geo-tri {
  filter: drop-shadow(0 0 8px rgba(10,10,10,0.3));
}
.geo-particle {
  position: absolute;
  left: 40px;
  top: 50%;
  transform: translate(-50%, -50%);
  animation: particleFly 3.5s var(--ease-sharp) infinite;
}
@keyframes particleFly {
  0%   { left: 40px; opacity: 0; }
  8%   { opacity: 1; }
  50%  { left: 210px; }
  90%  { opacity: 1; }
  100% { left: 380px; opacity: 0; }
}
.particle-core {
  width: 10px; height: 10px;
  background: var(--black);
  border-radius: 50%;
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
}
.particle-ring {
  position: absolute;
  border: 1px solid rgba(10,10,10,0.4);
  border-radius: 50%;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: 24px; height: 24px;
  animation: ringExpand 1.8s ease-out infinite;
}
.particle-ring-2 {
  width: 40px; height: 40px;
  animation-delay: 0.4s;
}
@keyframes ringExpand {
  0%   { transform: translate(-50%, -50%) scale(0.6); opacity: 0.6; }
  100% { transform: translate(-50%, -50%) scale(1.4); opacity: 0; }
}

/* ─── HERO CONTENT ─── */
.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  max-width: 900px;
  padding: 0 48px;
  padding-bottom: 180px;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(10,10,10,0.06);
  border: 1px solid rgba(10,10,10,0.12);
  border-radius: 100px;
  padding: 8px 18px;
  font-size: 0.8rem;
  font-weight: 500;
  letter-spacing: 0.03em;
  color: var(--gray-dark);
  margin-bottom: 40px;
  animation: badgePop 0.8s var(--ease-bounce) 0.3s both;
}
.badge-dot {
  width: 7px; height: 7px;
  background: #16a34a;
  border-radius: 50%;
  box-shadow: 0 0 8px #16a34a;
  animation: dotPulse 2s ease-in-out infinite;
}
@keyframes dotPulse {
  0%, 100% { box-shadow: 0 0 4px #16a34a; }
  50% { box-shadow: 0 0 12px #16a34a; }
}
@keyframes badgePop {
  from { opacity: 0; transform: translateY(16px) scale(0.95); }
  to   { opacity: 1; transform: translateY(0) scale(1); }
}

.hero-title {
  font-size: clamp(3.2rem, 8.5vw, 8rem);
  font-weight: 900;
  line-height: 0.95;
  letter-spacing: -0.06em;
  margin-bottom: 32px;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.title-line {
  display: block;
  overflow: hidden;
}
.title-line-1 {
  animation: lineSlideUp 0.9s var(--ease-sharp) 0.4s both;
}
.title-line-2 {
  animation: lineSlideUp 0.9s var(--ease-sharp) 0.55s both;
  display: flex;
  align-items: center;
  gap: 0.15em;
}
.title-line-3 {
  animation: lineSlideUp 0.9s var(--ease-sharp) 0.7s both;
  font-style: normal;
}
.title-line-3 em { font-style: italic; }
@keyframes lineSlideUp {
  from { transform: translateY(100%); opacity: 0; }
  to   { transform: translateY(0); opacity: 1; }
}
.outline-text {
  -webkit-text-stroke: 2.5px var(--black);
  color: transparent;
}
.title-accent { color: var(--black); }

.hero-sub {
  font-size: 1.15rem;
  line-height: 1.65;
  color: var(--gray-mid);
  max-width: 600px;
  margin: 0 auto 40px;
  font-weight: 400;
  animation: fadeUp 1s var(--ease-smooth) 0.9s both;
}
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(24px); }
  to   { opacity: 1; transform: translateY(0); }
}

.hero-actions {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  margin-bottom: 64px;
  animation: fadeUp 1s var(--ease-smooth) 1.1s both;
}

/* ─── BUTTONS ─── */
.btn-primary {
  position: relative;
  background: var(--black);
  color: var(--white);
  padding: 16px 36px;
  border-radius: 100px;
  font-size: 1rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  overflow: hidden;
  transition: transform 0.25s var(--ease-bounce), box-shadow 0.25s;
}
.btn-primary:hover {
  transform: scale(1.04) translateY(-2px);
  box-shadow: 0 12px 40px rgba(0,0,0,0.2);
}
.btn-primary:active { transform: scale(0.98); }
.btn-glow {
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 50% 150%, rgba(255,255,255,0.25) 0%, transparent 60%);
  opacity: 0;
  transition: opacity 0.3s;
}
.btn-primary:hover .btn-glow { opacity: 1; }

.btn-primary-lg { font-size: 1.1rem; padding: 18px 44px; }
.btn-ghost {
  display: flex; align-items: center; gap: 8px;
  padding: 16px 28px;
  border-radius: 100px;
  font-size: 1rem;
  font-weight: 500;
  color: var(--black);
  border: 1.5px solid rgba(10,10,10,0.2);
  transition: border-color 0.2s, background 0.2s;
}
.btn-ghost:hover { border-color: var(--black); background: rgba(10,10,10,0.04); }
.btn-ghost-lg { font-size: 1.1rem; padding: 18px 34px; }

/* ─── HERO STATS ─── */
.hero-stats {
  display: flex;
  align-items: center;
  gap: 0;
  justify-content: center;
  animation: fadeUp 1s var(--ease-smooth) 1.3s both;
}
.stat-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 0 40px;
}
.stat-value {
  font-size: 2.2rem;
  font-weight: 800;
  letter-spacing: -0.04em;
  line-height: 1;
}
.stat-value.prefix-dollar::before { content: '$'; font-size: 1.2rem; vertical-align: top; line-height: 2; }
.stat-label {
  font-size: 0.78rem;
  color: var(--gray-mid);
  font-weight: 500;
  letter-spacing: 0.04em;
  margin-top: 4px;
  text-transform: uppercase;
}
.stat-divider {
  width: 1px;
  height: 40px;
  background: var(--gray-light);
}

/* ─── SCROLL INDICATOR ─── */
.scroll-indicator {
  position: absolute;
  bottom: 32px; left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  color: var(--gray-mid);
  font-size: 0.72rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  animation: fadeUp 1s 2s both, scrollBounce 2s 3s ease-in-out infinite;
  z-index: 3;
}
.scroll-line {
  width: 1px;
  height: 40px;
  background: linear-gradient(to bottom, var(--gray-mid), transparent);
  animation: scrollLinePulse 2s ease-in-out infinite;
}
@keyframes scrollBounce {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50% { transform: translateX(-50%) translateY(8px); }
}
@keyframes scrollLinePulse {
  0%, 100% { opacity: 0.4; }
  50% { opacity: 1; }
}

/* ═══════════════════════════════
   FEATURES SECTION
═══════════════════════════════ */
.section-features { background: var(--off-white); }

.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: auto auto;
  gap: 20px;
}
.feature-card-large { grid-column: 1; grid-row: 1 / 3; }
.feature-card-wide { grid-column: 2 / 4; }

.feature-card {
  background: var(--white);
  border-radius: 24px;
  padding: 36px;
  border: 1px solid var(--gray-light);
  transition: transform 0.35s var(--ease-bounce), box-shadow 0.35s;
  position: relative;
  overflow: hidden;
}
.feature-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at var(--mx, 50%) var(--my, 50%), rgba(10,10,10,0.04) 0%, transparent 60%);
  opacity: 0;
  transition: opacity 0.3s;
  pointer-events: none;
}
.feature-card:hover::before { opacity: 1; }
.feature-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 24px 60px rgba(0,0,0,0.09);
}

.card-icon {
  width: 48px; height: 48px;
  margin-bottom: 20px;
  color: var(--black);
}
.card-icon svg { width: 100%; height: 100%; }

.feature-card h3 {
  font-size: 1.2rem;
  font-weight: 700;
  letter-spacing: -0.03em;
  margin-bottom: 12px;
}
.feature-card p {
  font-size: 0.9rem;
  line-height: 1.7;
  color: var(--gray-mid);
}
.feature-card-large h3 { font-size: 1.5rem; margin-bottom: 16px; }
.feature-card-large p { font-size: 0.95rem; }

/* ZK rings animation */
.card-visual-zk { margin-top: 28px; display: flex; justify-content: center; }
.zk-rings { position: relative; width: 100px; height: 100px; }
.zk-ring {
  position: absolute;
  border-radius: 50%;
  border: 1.5px solid rgba(10,10,10,0.15);
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  animation: zoomRing 2.5s ease-in-out infinite;
}
.zk-ring { width: 40px; height: 40px; }
.zk-ring-2 { width: 65px; height: 65px; animation-delay: 0.4s; }
.zk-ring-3 { width: 90px; height: 90px; animation-delay: 0.8s; }
@keyframes zoomRing {
  0%, 100% { opacity: 0.2; transform: translate(-50%, -50%) scale(1); }
  50% { opacity: 0.5; transform: translate(-50%, -50%) scale(1.06); }
}

/* TPS meter */
.tps-meter { margin-top: 20px; }
.tps-bar {
  height: 4px;
  background: var(--black);
  border-radius: 2px;
  width: 0;
  transition: width 1.5s var(--ease-smooth);
}
.tps-meter span { font-size: 0.75rem; color: var(--gray-mid); margin-top: 6px; display: block; }

/* AI pulse */
.ai-pulse { position: relative; margin-top: 20px; height: 40px; }
.ai-dot { width: 12px; height: 12px; background: var(--black); border-radius: 50%; position: absolute; top: 50%; left: 20px; transform: translateY(-50%); }
.ai-wave {
  position: absolute;
  top: 50%; left: 20px;
  width: 12px; height: 12px;
  border-radius: 50%;
  border: 1px solid var(--black);
  transform: translate(-50%, -50%);
  animation: aiWave 1.5s ease-out infinite;
}
@keyframes aiWave {
  0% { transform: translate(-50%, -50%) scale(1); opacity: 0.6; }
  100% { transform: translate(-50%, -50%) scale(4); opacity: 0; }
}

/* Protocol nodes */
.protocol-visual {
  position: absolute;
  right: 36px; top: 50%;
  transform: translateY(-50%);
}
.protocol-nodes { position: relative; width: 180px; height: 140px; }
.pnode {
  position: absolute;
  width: 48px; height: 48px;
  border-radius: 50%;
  background: var(--off-white);
  border: 1.5px solid var(--gray-light);
  display: flex; align-items: center; justify-content: center;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  animation: nodeFloat 3s ease-in-out infinite;
}
.pnode-1 { top: 0; left: 0; animation-delay: 0s; }
.pnode-2 { top: 0; right: 0; animation-delay: 0.5s; }
.pnode-3 { bottom: 0; left: 50%; transform: translateX(-50%); animation-delay: 1s; }
.pnode-center {
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  background: var(--black);
  color: var(--white);
  border-color: var(--black);
  width: 52px; height: 52px;
  font-size: 0.72rem;
  z-index: 1;
  animation: none;
  box-shadow: 0 0 24px rgba(10,10,10,0.3);
}
@keyframes nodeFloat {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-5px); }
}
.pnode-3 { 
  animation-name: nodeFloat3;  
}
@keyframes nodeFloat3 {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50% { transform: translateX(-50%) translateY(-5px); }
}
.feature-card-wide { display: flex; align-items: center; gap: 80px; }
.card-text { flex: 1; }

/* data-reveal animation */
[data-reveal] {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.8s var(--ease-smooth), transform 0.8s var(--ease-smooth);
}
[data-reveal].visible {
  opacity: 1;
  transform: translateY(0);
}

/* ═══════════════════════════════
   GEOMETRY SECTION
═══════════════════════════════ */
.section-geometry {
  background: var(--white);
  position: relative;
}
.geo-canvas {
  position: absolute;
  inset: 0;
  width: 100%; height: 100%;
  pointer-events: none;
}
.geo-inner {
  display: flex;
  flex-direction: column;
  gap: 80px;
  position: relative;
  z-index: 1;
}

/* ─── ORB + TRIANGLE SHOWCASE ─── */
.geo-showcase {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
}

/* ORB (Circle) */
.geo-left, .geo-right {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
}
.geo-orb {
  position: relative;
  width: 160px; height: 160px;
}
.orb-inner {
  position: absolute;
  inset: 20px;
  border-radius: 50%;
  background: radial-gradient(circle at 35% 35%, #fff 0%, #e0e0e0 40%, #bbb 100%);
  box-shadow: inset 0 -8px 20px rgba(0,0,0,0.12), 0 0 40px rgba(10,10,10,0.1);
  animation: orbBreath 3s ease-in-out infinite;
}
@keyframes orbBreath {
  0%, 100% { transform: scale(1); box-shadow: inset 0 -8px 20px rgba(0,0,0,0.12), 0 0 40px rgba(10,10,10,0.10); }
  50% { transform: scale(1.04); box-shadow: inset 0 -8px 20px rgba(0,0,0,0.12), 0 0 70px rgba(10,10,10,0.18); }
}
.orb-ring {
  position: absolute;
  inset: 0;
  border-radius: 50%;
  border: 1px solid rgba(10,10,10,0.15);
  animation: orbRingSpin 8s linear infinite;
}
.orb-ring-2 { animation-direction: reverse; animation-duration: 12s; border: 1px dashed rgba(10,10,10,0.1); }
.orb-particles { position: absolute; inset: 0; }
.orb-particles span {
  position: absolute;
  width: 5px; height: 5px;
  background: var(--black);
  border-radius: 50%;
  top: 50%; left: 50%;
  transform-origin: 80px 0;
  animation: orbParticle 6s linear infinite;
}
.orb-particles span:nth-child(1) { animation-delay: 0s; }
.orb-particles span:nth-child(2) { animation-delay: -1s; }
.orb-particles span:nth-child(3) { animation-delay: -2s; }
.orb-particles span:nth-child(4) { animation-delay: -3s; }
.orb-particles span:nth-child(5) { animation-delay: -4s; }
.orb-particles span:nth-child(6) { animation-delay: -5s; }
@keyframes orbParticle {
  0% { transform: rotate(0deg) translateX(80px); opacity: 0.8; }
  50% { opacity: 0.2; }
  100% { transform: rotate(360deg) translateX(80px); opacity: 0.8; }
}
@keyframes orbRingSpin {
  to { transform: rotate(360deg); }
}

/* Arrow transition */
.geo-arrow {
  flex: 1;
  max-width: 240px;
  position: relative;
  display: flex;
  align-items: center;
}
.arrow-track {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  overflow: hidden;
}
.arrow-dot {
  width: 12px; height: 12px;
  background: var(--black);
  border-radius: 50%;
  position: absolute;
  top: 50%; left: -6px;
  transform: translateY(-50%);
  animation: arrowTravel 2.5s ease-in-out infinite;
  box-shadow: 0 0 16px rgba(10,10,10,0.4);
}
@keyframes arrowTravel {
  0%   { left: -6px; opacity: 0; }
  10%  { opacity: 1; }
  90%  { opacity: 1; }
  100% { left: calc(100% - 6px); opacity: 0; }
}
.arrow-svg {
  width: 100%;
  color: rgba(10,10,10,0.25);
}

/* Triangle */
.geo-tri-wrap {
  width: 160px; height: 160px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}
.geo-tri {
  width: 0; height: 0;
  border-left: 65px solid transparent;
  border-right: 65px solid transparent;
  border-bottom: 115px solid transparent;
  position: relative;
  display: flex;
  align-items: flex-end;
  justify-content: center;
}
.tri-inner {
  position: absolute;
  bottom: -115px;
  left: -65px;
  width: 0; height: 0;
  border-left: 65px solid transparent;
  border-right: 65px solid transparent;
  border-bottom: 115px solid rgba(10,10,10,0.08);
  animation: triGlow 3s ease-in-out infinite;
  filter: drop-shadow(0 0 20px rgba(10,10,10,0.2));
}
@keyframes triGlow {
  0%, 100% { filter: drop-shadow(0 0 15px rgba(10,10,10,0.15)); }
  50% { filter: drop-shadow(0 0 35px rgba(10,10,10,0.3)); }
}
.tri-glow {
  position: absolute;
  bottom: -135px; left: -85px;
  width: 170px; height: 150px;
  background: radial-gradient(ellipse at 50% 80%, rgba(10,10,10,0.08) 0%, transparent 70%);
  pointer-events: none;
  animation: triGlow 3s ease-in-out infinite;
}
.tri-particles { position: absolute; bottom: -115px; left: -65px; width: 130px; height: 115px; }
.tri-particles span {
  position: absolute;
  width: 4px; height: 4px;
  background: var(--black);
  border-radius: 50%;
  animation: triParticle 4s ease-in-out infinite;
}
.tri-particles span:nth-child(1) { bottom: 20%; left: 30%; animation-delay: 0s; }
.tri-particles span:nth-child(2) { bottom: 50%; left: 50%; animation-delay: -1.3s; }
.tri-particles span:nth-child(3) { bottom: 70%; left: 45%; animation-delay: -2.7s; }
@keyframes triParticle {
  0%, 100% { opacity: 0.3; transform: translateY(0); }
  50% { opacity: 0.8; transform: translateY(-8px); }
}

.geo-label {
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--gray-mid);
}

/* ─── GEO TEXT ─── */
.geo-text {
  max-width: 640px;
  margin: 0 auto;
  text-align: center;
}
.geo-text h2 {
  font-size: clamp(2.4rem, 5vw, 4rem);
  font-weight: 800;
  letter-spacing: -0.04em;
  line-height: 1.05;
  margin-bottom: 24px;
}
.geo-text p {
  font-size: 1.05rem;
  line-height: 1.7;
  color: var(--gray-mid);
  margin-bottom: 32px;
}
.geo-list {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
}
.geo-list li {
  display: flex; align-items: center; gap: 10px;
  font-weight: 600; font-size: 0.95rem;
}
.check {
  width: 22px; height: 22px;
  background: var(--black);
  color: var(--white);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 0.65rem;
  flex-shrink: 0;
}

/* ═══════════════════════════════
   TOKENOMICS SECTION
═══════════════════════════════ */
.section-tokenomics { background: var(--off-white); }

.token-layout {
  display: grid;
  grid-template-columns: 400px 1fr;
  gap: 80px;
  align-items: center;
  margin-bottom: 64px;
}
.token-chart-wrap {
  position: relative;
  width: 380px; height: 380px;
  flex-shrink: 0;
}
.token-chart { display: block; }
.token-center-text {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
  pointer-events: none;
}
.token-center-text strong {
  display: block;
  font-size: 1.8rem;
  font-weight: 900;
  letter-spacing: -0.04em;
  line-height: 1;
}
.token-center-text span {
  font-size: 0.8rem;
  color: var(--gray-mid);
  font-weight: 500;
  letter-spacing: 0.05em;
}

.token-legend { display: flex; flex-direction: column; gap: 24px; }
.legend-item { margin-bottom: 4px; }
.legend-info {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  margin-bottom: 8px;
}
.legend-color {
  width: 10px; height: 10px;
  border-radius: 50%;
  margin-bottom: 8px;
}
.legend-name { font-size: 0.95rem; font-weight: 600; }
.legend-pct { font-size: 1.1rem; font-weight: 800; letter-spacing: -0.03em; }
.legend-bar-wrap { height: 3px; background: var(--gray-light); border-radius: 2px; overflow: hidden; }
.legend-bar {
  height: 100%;
  background: var(--black);
  border-radius: 2px;
  width: 0;
  transition: width 1.5s var(--ease-smooth);
}
.legend-bar.animated { width: var(--target); }

.token-metrics {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.metric-card {
  background: var(--white);
  border: 1px solid var(--gray-light);
  border-radius: 20px;
  padding: 28px 28px;
  display: flex;
  flex-direction: column;
  gap: 6px;
  transition: transform 0.3s var(--ease-bounce), box-shadow 0.3s;
}
.metric-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 48px rgba(0,0,0,0.08);
}
.metric-val { font-size: 2rem; font-weight: 800; letter-spacing: -0.04em; }
.metric-name { font-size: 0.85rem; color: var(--gray-mid); font-weight: 500; }
.metric-trend { font-size: 0.8rem; font-weight: 600; color: var(--gray-mid); }
.metric-trend-up { color: #16a34a; }

/* ═══════════════════════════════
   ROADMAP — HORIZONTAL
═══════════════════════════════ */
.section-roadmap { background: var(--white); padding-top: 80px; padding-bottom: 240px; position: relative; overflow: hidden; }

.roadmap-canvas {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 400px;
  pointer-events: none;
  z-index: 0;
  opacity: 0.6;
}

.roadmap-inner-h {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  gap: 40px;
}

.roadmap-header {
  display: flex;
  align-items: baseline;
  gap: 32px;
  flex-wrap: wrap;
}

.section-title-sm {
  font-size: clamp(1.6rem, 3vw, 2.4rem);
  font-weight: 800;
  letter-spacing: -0.04em;
  line-height: 1.1;
  margin: 0;
}

/* ─── Horizontal track ─── */
.roadmap-h-wrap {
  position: relative;
  padding-top: 48px;
}

.roadmap-h-line {
  position: absolute;
  top: 20px;
  left: 10%;
  right: 10%;
  height: 2px;
  background: var(--gray-light);
  border-radius: 1px;
  z-index: 0;
}

.roadmap-h-progress {
  position: absolute;
  left: 0; top: 0;
  height: 100%;
  width: 0;
  background: var(--black);
  border-radius: 1px;
  transition: width 1.8s var(--ease-smooth);
}

/* ─── Steps row ─── */
.roadmap-h-steps {
  display: flex;
  justify-content: space-between;
  position: relative;
  z-index: 1;
}

/* ─── Individual step ─── */
.rm-h-step {
  display: flex;
  flex-direction: column;
  align-items: center;
  flex: 1;
  gap: 12px;
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.6s var(--ease-smooth), transform 0.6s var(--ease-smooth);
}
.rm-h-step.visible {
  opacity: 1;
  transform: translateY(0);
}
.rm-h-step:nth-child(1) { transition-delay: 0ms; }
.rm-h-step:nth-child(2) { transition-delay: 100ms; }
.rm-h-step:nth-child(3) { transition-delay: 200ms; }
.rm-h-step:nth-child(4) { transition-delay: 300ms; }
.rm-h-step:nth-child(5) { transition-delay: 400ms; }

/* ─── Dot ─── */
.rm-h-dot {
  width: 22px; height: 22px;
  border-radius: 50%;
  background: var(--gray-light);
  border: 2px solid var(--white);
  box-shadow: 0 0 0 2px var(--gray-light);
  display: flex; align-items: center; justify-content: center;
  font-size: 0.55rem;
  position: relative;
  z-index: 2;
  flex-shrink: 0;
  transition: background 0.3s, box-shadow 0.3s;
}
.rm-done .rm-h-dot {
  background: var(--black);
  box-shadow: 0 0 0 2px var(--black);
  color: var(--white);
}
.rm-dot-active {
  background: var(--black) !important;
  box-shadow: 0 0 0 4px rgba(10,10,10,0.15) !important;
  animation: activePulse 2s ease-in-out infinite;
}

/* ─── Card ─── */
.rm-h-card {
  background: var(--white);
  border: 1px solid var(--gray-light);
  border-radius: 16px;
  padding: 16px 14px;
  width: 100%;
  max-width: 160px;
  text-align: center;
  transition: transform 0.3s var(--ease-bounce), box-shadow 0.3s;
}
.rm-h-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 32px rgba(0,0,0,0.08);
}
.rm-h-card-active {
  border-color: var(--black);
  box-shadow: 0 0 0 2px rgba(10,10,10,0.08);
}
.rm-h-card .rm-quarter {
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gray-mid);
  display: block;
  margin-bottom: 4px;
}
.rm-h-card h4 {
  font-size: 0.9rem;
  font-weight: 700;
  letter-spacing: -0.02em;
  margin-bottom: 8px;
  color: var(--black);
}
.rm-h-card ul {
  display: flex;
  flex-direction: column;
  gap: 3px;
}
.rm-h-card li {
  font-size: 0.75rem;
  color: var(--gray-mid);
  line-height: 1.4;
}
.rm-h-step:not(.rm-done):not(.rm-active) .rm-h-card {
  opacity: 0.55;
}
.rm-active .rm-h-card h4 { color: var(--black); }

/* mobile: stack back to vertical */
@media (max-width: 768px) {
  .roadmap-h-line { display: none; }
  .roadmap-h-steps { flex-direction: column; gap: 20px; align-items: flex-start; padding-left: 32px; }
  .rm-h-step { flex-direction: row; align-items: flex-start; gap: 16px; }
  .rm-h-card { max-width: none; text-align: left; }
  .roadmap-header { flex-direction: column; gap: 8px; }
}


/* ═══════════════════════════════
   CTA SECTION
═══════════════════════════════ */
.section-cta {
  background: var(--black);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}
.cta-canvas {
  position: absolute;
  inset: 0; width: 100%; height: 100%;
  pointer-events: none;
  opacity: 0.72;
}
.cta-glow-top {
  position: absolute;
  top: -200px; left: 50%;
  transform: translateX(-50%);
  width: 800px; height: 400px;
  background: radial-gradient(ellipse at 50% 50%, rgba(255,255,255,0.06) 0%, transparent 70%);
  pointer-events: none;
}
.cta-glow-bottom {
  position: absolute;
  bottom: -200px; left: 50%;
  transform: translateX(-50%);
  width: 600px; height: 400px;
  background: radial-gradient(ellipse at 50% 50%, rgba(255,255,255,0.04) 0%, transparent 70%);
  pointer-events: none;
}
.cta-content {
  position: relative;
  z-index: 1;
  text-align: center;
  max-width: 760px;
  padding: 0 48px;
  color: var(--white);
}
.cta-title {
  font-size: clamp(2.8rem, 6.5vw, 6rem);
  font-weight: 900;
  letter-spacing: -0.06em;
  line-height: 0.95;
  margin-bottom: 24px;
}
.cta-title .gradient-text {
  background: linear-gradient(135deg, #fff 0%, #aaa 50%, #fff 100%);
  background-size: 200% auto;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: shimmer 3s linear infinite;
}
.cta-sub { font-size: 1.05rem; color: rgba(255,255,255,0.55); margin-bottom: 48px; }
.cta-actions { display: flex; align-items: center; justify-content: center; gap: 16px; margin-bottom: 64px; }
.section-cta .btn-primary { background: var(--white); color: var(--black); }
.section-cta .btn-primary:hover { box-shadow: 0 12px 40px rgba(255,255,255,0.2); }
.section-cta .btn-ghost { color: rgba(255,255,255,0.7); border-color: rgba(255,255,255,0.2); }
.section-cta .btn-ghost:hover { color: var(--white); border-color: rgba(255,255,255,0.5); background: rgba(255,255,255,0.06); }

.cta-logos { width: 100%; }
.cta-logos > span {
  display: block;
  font-size: 0.72rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.35);
  margin-bottom: 20px;
}
.cta-logo-row { display: flex; justify-content: center; gap: 32px; flex-wrap: wrap; }
.backer-logo {
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: -0.02em;
  color: rgba(255,255,255,0.35);
  transition: color 0.2s;
}
.backer-logo:hover { color: rgba(255,255,255,0.7); }

/* ═══════════════════════════════
   FOOTER
═══════════════════════════════ */
.footer { 
  background: var(--black); 
  color: var(--white); 
  padding: 80px 0 32px; 
  scroll-snap-align: start;
  scroll-snap-stop: always;
}
.footer-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 48px;
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 80px;
  margin-bottom: 64px;
}
.footer-brand p { color: rgba(255,255,255,0.45); font-size: 0.9rem; margin-top: 12px; }
.footer-demo-note {
  max-width: 340px;
  color: rgba(255,255,255,0.58) !important;
  line-height: 1.6;
}
.footer-links { display: grid; grid-template-columns: repeat(3, 1fr); gap: 40px; }
.footer-col { display: flex; flex-direction: column; gap: 12px; }
.footer-col h5 { font-size: 0.8rem; font-weight: 700; letter-spacing: 0.08em; text-transform: uppercase; color: rgba(255,255,255,0.4); margin-bottom: 4px; }
.footer-col a { font-size: 0.9rem; color: rgba(255,255,255,0.6); transition: color 0.2s; }
.footer-col a:hover { color: var(--white); }
.footer-bottom {
  max-width: 1200px;
  margin: 0 auto;
  padding: 24px 48px 0;
  border-top: 1px solid rgba(255,255,255,0.08);
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 0.78rem;
  color: rgba(255,255,255,0.3);
  flex-wrap: wrap;
  gap: 8px;
}
.footer-credit {
  font-size: 0.75rem;
  color: rgba(255,255,255,0.22);
  letter-spacing: 0.02em;
}
.footer-credit a {
  color: rgba(255,255,255,0.45);
  text-decoration: none;
  transition: color 0.25s;
  font-weight: 500;
}
.footer-credit a:hover {
  color: rgba(255,255,255,0.85);
}
.footer-brand .logo-z { background: var(--white); color: var(--black); }
.footer-brand .logo-xano { color: var(--white); }

/* ═══════════════════════════════
   SCROLL PARALLAX CLASSES
═══════════════════════════════ */
.parallax-slow { will-change: transform; }
.parallax-fast { will-change: transform; }

/* ═══════════════════════════════
   RESPONSIVE
═══════════════════════════════ */
@media (max-width: 1100px) {
  .token-layout { grid-template-columns: 1fr; }
  .token-chart-wrap { margin: 0 auto; }
  .features-grid { grid-template-columns: 1fr 1fr; }
  .feature-card-large { grid-column: 1 / 3; grid-row: 1; min-height: auto; }
  .feature-card-wide { grid-column: 1 / 3; }
  .geo-showcase { gap: 20px; }
}

@media (max-width: 768px) {
  :root { --section-pad: 80px; --demo-h: 72px; }
  .demo-disclaimer {
    padding: 9px 16px;
    flex-direction: column;
    gap: 2px;
    font-size: 0.72rem;
  }
  .nav { padding: 0 24px; }
  .nav-links {
    position: fixed;
    top: calc(var(--demo-h) + var(--nav-h));
    left: 16px;
    right: 16px;
    display: flex;
    flex-direction: column;
    gap: 0;
    padding: 12px;
    background: rgba(255,255,255,0.94);
    border: 1px solid rgba(10,10,10,0.10);
    border-radius: 22px;
    box-shadow: 0 24px 70px rgba(0,0,0,0.16);
    backdrop-filter: blur(20px);
    opacity: 0;
    pointer-events: none;
    transform: translateY(-14px);
    transition: opacity 0.24s var(--ease-smooth), transform 0.24s var(--ease-smooth);
  }
  .nav.is-open .nav-links {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
  }
  .nav-links a {
    display: block;
    padding: 15px 14px;
    border-radius: 14px;
    font-size: 1rem;
  }
  .nav-links a:hover { background: rgba(10,10,10,0.05); }
  .nav-links a::after { display: none; }
  .nav-cta { display: none; }
  .nav-burger { display: flex; }
  .section-inner { padding: var(--section-pad) 24px; }
  .hero-content { padding: 0 24px 200px; }
  .hero-stats { flex-direction: column; gap: 24px; }
  .stat-divider { display: none; }
  .features-grid { grid-template-columns: 1fr; }
  .feature-card-large, .feature-card-wide { grid-column: 1; }
  .feature-card-wide { flex-direction: column; }
  .protocol-visual { position: static; transform: none; margin-top: 24px; }
  .token-metrics { grid-template-columns: 1fr; }
  .footer-inner { grid-template-columns: 1fr; }
  .footer-links { grid-template-columns: 1fr 1fr; }
  .geo-showcase { flex-direction: column; }
  .geo-arrow { transform: rotate(90deg); height: 80px; width: 80px; }
}

/* ═══════════════════════════════
   MISC UTILS
═══════════════════════════════ */
.sr-only { position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden; clip: rect(0,0,0,0); border: 0; }

/* entrance stagger for cards */
.feature-card:nth-child(1) { transition-delay: 0ms; }
.feature-card:nth-child(2) { transition-delay: 80ms; }
.feature-card:nth-child(3) { transition-delay: 160ms; }
.feature-card:nth-child(4) { transition-delay: 240ms; }
.feature-card:nth-child(5) { transition-delay: 320ms; }

/* Tilt card effect (applied via JS) */
.tilt-card { transform-style: preserve-3d; }

/* ═══════════════════════════════
   3D WEBGL CANVAS ENHANCEMENTS
═══════════════════════════════ */
#heroGLCanvas {
  position: absolute;
  inset: 0;
  width: 100% !important;
  height: 100% !important;
  pointer-events: none;
  z-index: 0;
}

/* ─── Hero overlay - balanced: readable text but 3D shows through ─── */
.section-hero::after {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 80% 70% at 50% 50%,
      rgba(255,255,255,0.82) 0%,
      rgba(255,255,255,0.55) 35%,
      rgba(255,255,255,0.18) 65%,
      rgba(255,255,255,0.06) 100%);
  pointer-events: none;
  z-index: 1;
}
.hero-content { z-index: 2; }
.geo-transition { z-index: 3; }
.scroll-indicator { z-index: 4; }

/* ─── 3D glow effect on main shapes ─── */
.geo-orb .orb-inner {
  box-shadow:
    inset 0 -8px 20px rgba(0,0,0,0.12),
    0 0 40px rgba(10,10,10,0.10),
    0 0 80px rgba(10,10,10,0.05);
}

/* ─── Section depth shadows ─── */
.section-features {
  box-shadow: 0 -40px 80px rgba(0,0,0,0.04) inset;
}
.section-tokenomics {
  box-shadow: 0 -40px 80px rgba(0,0,0,0.04) inset;
}

/* ─── Stronger hero title glow ─── */
.hero-title em {
  position: relative;
}
.hero-title em::after {
  content: attr(data-text);
  position: absolute;
  left: 0; top: 0;
  filter: blur(20px);
  opacity: 0.15;
  pointer-events: none;
}

/* ─── Feature card 3D depth ─── */
.feature-card {
  transform-style: preserve-3d;
  transition: transform 0.4s var(--ease-bounce), box-shadow 0.4s;
}
.feature-card:hover {
  box-shadow: 0 32px 80px rgba(0,0,0,0.12), 0 8px 20px rgba(0,0,0,0.06);
}

/* ─── Metric card 3D ─── */
.metric-card {
  transform-style: preserve-3d;
}

/* ─── Grid pulsing glow ─── */
.grid-overlay {
  animation: gridPulse 8s ease-in-out infinite;
}
@keyframes gridPulse {
  0%, 100% { opacity: 0.6; }
  50% { opacity: 1; }
}

/* ─── Enhanced badge ─── */
.hero-badge {
  backdrop-filter: blur(8px);
  box-shadow: 0 2px 20px rgba(10,10,10,0.08);
}

/* ─── Nav brand refine ─── */
.logo-z {
  box-shadow: 0 0 0 2px rgba(10,10,10,0.08);
  transition: box-shadow 0.3s, transform 0.3s;
}
.nav-logo:hover .logo-z {
  box-shadow: 0 0 0 4px rgba(10,10,10,0.12);
  transform: rotate(-5deg) scale(1.05);
}

/* ─── Scroll line stronger ─── */
.scroll-line {
  background: linear-gradient(to bottom, rgba(10,10,10,0.6), transparent);
  box-shadow: 0 0 8px rgba(10,10,10,0.1);
}

@media (max-width: 768px) {
  #heroGLCanvas,
  .hero-canvas,
  .geo-canvas,
  .roadmap-canvas,
  .cta-canvas {
    display: none !important;
  }

  .section-hero {
    min-height: auto;
    padding-top: calc(var(--nav-h) + var(--demo-h));
    padding-bottom: 96px;
    justify-content: flex-start;
  }

  .hero-content {
    max-width: 100%;
    padding: 48px 24px 116px !important;
  }

  .hero-badge {
    max-width: 100%;
    justify-content: center;
    white-space: normal;
  }

  .hero-title {
    font-size: clamp(2.7rem, 18vw, 4.8rem);
    line-height: 0.95;
  }

  .hero-subtitle {
    max-width: 32rem;
    margin-left: auto;
    margin-right: auto;
  }

  .geo-transition {
    left: 50%;
    right: auto;
    bottom: 20px;
    width: min(300px, calc(100vw - 48px));
    height: 92px;
    transform: translateX(-50%);
    opacity: 0.55;
  }

  .geo-track {
    width: 100%;
    justify-content: space-between;
  }

  .geo-shape {
    width: 52px;
    height: 52px;
  }

  .geo-particle {
    left: 50%;
  }

  .features-grid {
    gap: 14px;
  }

  .feature-card {
    border-radius: 18px;
    padding: 24px;
  }

  .card-visual-zk {
    margin-top: 22px;
    justify-content: flex-start;
  }

  .zk-rings {
    width: 82px;
    height: 82px;
  }

  .protocol-visual {
    width: 100%;
    display: flex;
    justify-content: center;
    margin: 20px auto 0;
  }

  .protocol-nodes {
    width: min(220px, 100%);
    height: 128px;
  }

  .token-layout {
    gap: 36px;
    margin-bottom: 40px;
  }

  .token-chart-wrap {
    width: min(280px, 72vw);
    height: min(280px, 72vw);
  }

  .token-chart {
    width: 100% !important;
    height: 100% !important;
  }

  .section-roadmap {
    padding-top: 48px;
    padding-bottom: 80px;
  }

  .roadmap-h-wrap {
    padding-top: 20px;
  }

  .roadmap-h-steps {
    padding-left: 0 !important;
  }

  .rm-h-step {
    width: 100%;
  }

  .section-cta {
    min-height: auto;
    padding: 88px 0;
  }

  .cta-content {
    padding: 0 24px;
  }

  .cta-title {
    font-size: clamp(2.4rem, 14vw, 4rem);
  }

  .cta-actions {
    flex-direction: column;
    margin-bottom: 44px;
  }
}

@media (max-width: 480px) {
  .demo-disclaimer span {
    max-width: 34ch;
  }

  .nav {
    padding: 0 16px;
  }

  .hero-content {
    padding-left: 18px !important;
    padding-right: 18px !important;
  }

  .hero-title {
    font-size: clamp(2.45rem, 17vw, 3.8rem);
  }

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

  .hero-actions .btn-primary,
  .hero-actions .btn-ghost {
    width: 100%;
    justify-content: center;
  }

  .footer-inner,
  .footer-bottom {
    padding-left: 24px;
    padding-right: 24px;
  }

  .footer-bottom {
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
  }
}
