/* ============================================
   AIZU Universe – Premium Web3 Design System
   ============================================ */

/* ---- Google Fonts ---- */
@import url('https://fonts.googleapis.com/css2?family=Space+Grotesk:wght@300;400;500;600;700&family=Inter:wght@300;400;500;600;700&display=swap');

/* ---- Design Tokens ---- */
:root {
  /* Colors */
  --bg-primary: #06080d;
  --bg-secondary: #0d1b2a;
  --bg-card: rgba(13, 27, 42, 0.55);
  --bg-card-hover: rgba(13, 27, 42, 0.75);
  --bg-glass: rgba(255, 255, 255, 0.04);
  --bg-glass-border: rgba(255, 255, 255, 0.08);

  --blue: #00d4ff;
  --blue-dim: rgba(0, 212, 255, 0.15);
  --blue-glow: rgba(0, 212, 255, 0.35);
  --purple: #7b2fff;
  --purple-dim: rgba(123, 47, 255, 0.15);
  --purple-glow: rgba(123, 47, 255, 0.3);
  --gold: #d4a017;
  --gold-dim: rgba(212, 160, 23, 0.15);
  --gold-glow: rgba(212, 160, 23, 0.35);
  --green: #00c896;
  --green-dim: rgba(0, 200, 150, 0.15);
  --orange: #ff6b35;
  --orange-dim: rgba(255, 107, 53, 0.15);

  --text-primary: #ffffff;
  --text-secondary: rgba(255, 255, 255, 0.7);
  --text-muted: rgba(255, 255, 255, 0.45);
  --text-accent: var(--blue);

  /* Typography */
  --font-heading: 'Space Grotesk', sans-serif;
  --font-body: 'Inter', sans-serif;

  /* Spacing */
  --space-xs: 0.5rem;
  --space-sm: 1rem;
  --space-md: 1.5rem;
  --space-lg: 2.5rem;
  --space-xl: 4rem;
  --space-2xl: 6rem;
  --space-3xl: 8rem;

  /* Layout */
  --max-width: 1200px;
  --max-width-lg: 1400px;
  --nav-height: 72px;

  /* Borders */
  --radius-sm: 8px;
  --radius-md: 12px;
  --radius-lg: 16px;
  --radius-xl: 24px;
  --radius-full: 9999px;

  /* Shadows */
  --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.3);
  --shadow-md: 0 4px 24px rgba(0, 0, 0, 0.4);
  --shadow-lg: 0 8px 48px rgba(0, 0, 0, 0.5);
  --shadow-glow-blue: 0 0 30px rgba(0, 212, 255, 0.2);
  --shadow-glow-purple: 0 0 30px rgba(123, 47, 255, 0.2);
  --shadow-glow-gold: 0 0 30px rgba(212, 160, 23, 0.2);

  /* Transitions */
  --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
  --ease-spring: cubic-bezier(0.34, 1.56, 0.64, 1);
  --duration-fast: 200ms;
  --duration-normal: 350ms;
  --duration-slow: 600ms;
}

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

html {
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

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

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

ul,
ol {
  list-style: none;
}

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

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

/* ---- Typography ---- */
h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: var(--font-heading);
  font-weight: 700;
  line-height: 1.15;
  letter-spacing: -0.02em;
}

h1 {
  font-size: clamp(2.5rem, 5vw + 1rem, 4.5rem);
}

h2 {
  font-size: clamp(2rem, 3.5vw + 0.5rem, 3.2rem);
}

h3 {
  font-size: clamp(1.3rem, 2vw + 0.3rem, 1.75rem);
}

h4 {
  font-size: clamp(1.1rem, 1.5vw + 0.2rem, 1.35rem);
}

p {
  color: var(--text-secondary);
  font-size: 1.05rem;
  line-height: 1.7;
}

.text-gradient {
  background: linear-gradient(135deg, var(--blue), var(--purple), var(--blue));
  background-size: 200% 100%;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.text-gradient-gold {
  background: linear-gradient(135deg, var(--gold), #f0d060, var(--gold));
  background-size: 200% 100%;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.text-gradient-green {
  background: linear-gradient(135deg, var(--green), #40e8b0, var(--green));
  background-size: 200% 100%;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.text-gradient-orange {
  background: linear-gradient(135deg, var(--orange), #ff9a5c, var(--orange));
  background-size: 200% 100%;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* ---- Layout ---- */
.container {
  width: 100%;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 var(--space-md);
}

.container-lg {
  max-width: var(--max-width-lg);
}

.section {
  padding: var(--space-3xl) 0;
  position: relative;
}

.section-label {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  font-family: var(--font-heading);
  font-size: 1rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--blue);
  margin-bottom: var(--space-lg);
  padding: 12px 28px;
  background: var(--blue-dim);
  border: 1px solid rgba(0, 212, 255, 0.25);
  border-radius: var(--radius-full);
  box-shadow: 0 0 25px rgba(0, 212, 255, 0.12), inset 0 0 20px rgba(0, 212, 255, 0.04);
  animation: label-glow 3s ease-in-out infinite;
  position: relative;
}

@keyframes label-glow {
  0%, 100% {
    box-shadow: 0 0 25px rgba(0, 212, 255, 0.12), inset 0 0 20px rgba(0, 212, 255, 0.04);
  }
  50% {
    box-shadow: 0 0 40px rgba(0, 212, 255, 0.25), inset 0 0 25px rgba(0, 212, 255, 0.08);
  }
}

/* ---- Premium Animated Section Titles ---- */
.section-title {
  margin-bottom: var(--space-md);
  font-size: clamp(2.2rem, 4vw + 0.8rem, 3.8rem);
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 1.1;
  position: relative;
  display: inline-block;
}

/* Shimmer sweep animation on section titles */
.section-title .text-gradient,
.section-title .text-gradient-gold,
.section-title .text-gradient-green,
.section-title .text-gradient-orange,
.section-title span[style*="background"] {
  position: relative;
  background-size: 200% 100%;
  animation: heading-shimmer 4s ease-in-out infinite;
}

@keyframes heading-shimmer {
  0% { background-position: 100% 50%; }
  50% { background-position: 0% 50%; }
  100% { background-position: 100% 50%; }
}

/* Animated underline decoration */
.section-title::after {
  content: '';
  display: block;
  width: 0;
  height: 3px;
  margin: var(--space-sm) auto 0;
  border-radius: var(--radius-full);
  background: linear-gradient(90deg, var(--blue), var(--purple), var(--blue));
  background-size: 200% 100%;
  animation: underline-gradient 3s linear infinite;
  transition: width 1s var(--ease-out);
}

/* Animate underline in when heading is visible */
.reveal.visible .section-title::after,
.section-header.visible .section-title::after {
  width: 80px;
}

@keyframes underline-gradient {
  0% { background-position: 0% 50%; }
  100% { background-position: 200% 50%; }
}

/* Heading entrance animation — scale and fade up */
.section-header.visible .section-title {
  animation: heading-entrance 0.8s var(--ease-out) forwards;
}

@keyframes heading-entrance {
  0% {
    opacity: 0;
    transform: translateY(30px) scale(0.95);
    filter: blur(4px);
  }
  100% {
    opacity: 1;
    transform: translateY(0) scale(1);
    filter: blur(0);
  }
}

/* Gold underline variant for coin section */
.coin-section .section-title::after {
  background: linear-gradient(90deg, var(--gold), #f0d060, var(--gold));
  background-size: 200% 100%;
}

/* Green underline variant for DEX section */
.dex-section .section-title::after {
  background: linear-gradient(90deg, var(--green), #40e8b0, var(--green));
  background-size: 200% 100%;
}

/* Orange underline variant for foundation */
.foundation-section .section-title::after {
  background: linear-gradient(90deg, var(--orange), #ff9a5c, var(--orange));
  background-size: 200% 100%;
}

/* Purple underline variant for bot section */
.bot-section .section-title::after {
  background: linear-gradient(90deg, var(--purple), var(--blue), var(--purple));
  background-size: 200% 100%;
}

/* Glow effect behind section titles */
.section-title::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 120%;
  height: 120%;
  background: radial-gradient(ellipse at center, rgba(0, 212, 255, 0.06) 0%, transparent 70%);
  pointer-events: none;
  z-index: -1;
  opacity: 0;
  transition: opacity 1s ease;
}

.reveal.visible .section-title::before,
.section-header.visible .section-title::before {
  opacity: 1;
  animation: title-glow-pulse 4s ease-in-out infinite;
}

@keyframes title-glow-pulse {
  0%, 100% { opacity: 0.5; transform: translate(-50%, -50%) scale(1); }
  50% { opacity: 1; transform: translate(-50%, -50%) scale(1.05); }
}

/* Section-specific glow colors */
.coin-section .section-title::before {
  background: radial-gradient(ellipse at center, rgba(212, 160, 23, 0.08) 0%, transparent 70%);
}

.dex-section .section-title::before {
  background: radial-gradient(ellipse at center, rgba(0, 200, 150, 0.08) 0%, transparent 70%);
}

.foundation-section .section-title::before {
  background: radial-gradient(ellipse at center, rgba(255, 107, 53, 0.08) 0%, transparent 70%);
}

.bot-section .section-title::before {
  background: radial-gradient(ellipse at center, rgba(123, 47, 255, 0.08) 0%, transparent 70%);
}

.section-desc {
  max-width: 650px;
  font-size: 1.2rem;
  line-height: 1.75;
  color: var(--text-secondary);
}

.section-header {
  text-align: center;
  margin-bottom: var(--space-xl);
  position: relative;
}

.section-header .section-desc {
  margin: 0 auto;
}

.section-header .section-title {
  display: block;
  width: fit-content;
  margin: 0 auto var(--space-md);
}

/* ---- Grids ---- */
.grid {
  display: grid;
  gap: var(--space-md);
}

.grid-2 {
  grid-template-columns: repeat(2, 1fr);
}

.grid-3 {
  grid-template-columns: repeat(3, 1fr);
}

.grid-4 {
  grid-template-columns: repeat(4, 1fr);
}

.grid-6 {
  grid-template-columns: repeat(6, 1fr);
}

.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-xl);
  align-items: center;
}

/* ---- Glassmorphism Cards ---- */
.glass-card {
  background: var(--bg-glass);
  border: 1px solid var(--bg-glass-border);
  border-radius: var(--radius-lg);
  padding: var(--space-lg);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  transition: all var(--duration-normal) var(--ease-out);
}

.glass-card:hover {
  background: var(--bg-card-hover);
  border-color: rgba(255, 255, 255, 0.12);
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}

.glass-card-blue:hover {
  border-color: rgba(0, 212, 255, 0.2);
  box-shadow: var(--shadow-glow-blue);
}

.glass-card-purple:hover {
  border-color: rgba(123, 47, 255, 0.2);
  box-shadow: var(--shadow-glow-purple);
}

.glass-card-gold:hover {
  border-color: rgba(212, 160, 23, 0.2);
  box-shadow: var(--shadow-glow-gold);
}

/* ---- Buttons ---- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 0.95rem;
  padding: 14px 32px;
  border-radius: var(--radius-full);
  transition: all var(--duration-normal) var(--ease-out);
  position: relative;
  overflow: hidden;
  white-space: nowrap;
}

.btn-primary {
  background: linear-gradient(135deg, var(--blue), var(--purple));
  color: #fff;
  box-shadow: 0 4px 20px rgba(0, 212, 255, 0.25);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 30px rgba(0, 212, 255, 0.4);
}

.btn-secondary {
  background: transparent;
  color: var(--text-primary);
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.btn-secondary:hover {
  background: rgba(255, 255, 255, 0.06);
  border-color: rgba(255, 255, 255, 0.35);
  transform: translateY(-2px);
}

.btn-gold {
  background: linear-gradient(135deg, var(--gold), #f0d060);
  color: #1a1a1a;
  box-shadow: 0 4px 20px rgba(212, 160, 23, 0.3);
}

.btn-gold:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 30px rgba(212, 160, 23, 0.5);
}

.btn-green {
  background: linear-gradient(135deg, var(--green), #40e8b0);
  color: #1a1a1a;
  box-shadow: 0 4px 20px rgba(0, 200, 150, 0.25);
}

.btn-green:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 30px rgba(0, 200, 150, 0.4);
}

.btn-orange {
  background: linear-gradient(135deg, var(--orange), #ff9a5c);
  color: #1a1a1a;
  box-shadow: 0 4px 20px rgba(255, 107, 53, 0.25);
}

.btn-orange:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 30px rgba(255, 107, 53, 0.4);
}

.btn-sm {
  padding: 10px 24px;
  font-size: 0.85rem;
}

.btn-lg {
  padding: 18px 40px;
  font-size: 1.05rem;
}

.btn-group {
  display: flex;
  gap: var(--space-sm);
  flex-wrap: wrap;
}

/* ---- Icon Box ---- */
.icon-box {
  width: 56px;
  height: 56px;
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  margin-bottom: var(--space-sm);
  flex-shrink: 0;
}

.icon-box-blue {
  background: var(--blue-dim);
  color: var(--blue);
}

.icon-box-purple {
  background: var(--purple-dim);
  color: var(--purple);
}

.icon-box-gold {
  background: var(--gold-dim);
  color: var(--gold);
}

.icon-box-green {
  background: var(--green-dim);
  color: var(--green);
}

.icon-box-orange {
  background: var(--orange-dim);
  color: var(--orange);
}

/* ---- Status Badge ---- */
.badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 6px 16px;
  border-radius: var(--radius-full);
  font-size: 0.8rem;
  font-weight: 600;
  font-family: var(--font-heading);
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.badge-live {
  background: rgba(0, 200, 100, 0.12);
  color: #00c864;
  border: 1px solid rgba(0, 200, 100, 0.2);
}

.badge-live::before {
  content: '';
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #00c864;
  animation: pulse-dot 2s ease infinite;
}

.badge-soon {
  background: rgba(255, 200, 0, 0.1);
  color: #ffc800;
  border: 1px solid rgba(255, 200, 0, 0.2);
}

@keyframes pulse-dot {

  0%,
  100% {
    opacity: 1;
  }

  50% {
    opacity: 0.3;
  }
}

/* ---- Stats Row ---- */
.stats-row {
  display: flex;
  gap: var(--space-xl);
  flex-wrap: wrap;
}

.stat-item {
  text-align: center;
}

.stat-value {
  font-family: var(--font-heading);
  font-size: 2.5rem;
  font-weight: 700;
  line-height: 1.1;
  margin-bottom: 4px;
}

.stat-label {
  font-size: 0.85rem;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

/* ============================================
   NAVBAR — Premium Blockchain Design
   ============================================ */

/* -- Outer wrapper with animated border -- */
.navbar-outer {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 8px 12px 0;
  pointer-events: none;
  transition: padding var(--duration-normal) var(--ease-out),
    transform 0.4s cubic-bezier(0.4, 0, 0.2, 1),
    opacity 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.navbar-outer.nav-hidden {
  transform: translateY(-100%);
  opacity: 0;
  pointer-events: none;
}

.navbar-outer.scrolled {
  padding: 0;
}

.navbar-outer.scrolled .navbar {
  border-radius: 0;
  border-left: none;
  border-right: none;
}

.navbar-outer.scrolled .navbar-glow-border {
  border-radius: 0;
}

/* Animated gradient border (box-in-box effect) */
.navbar-glow-border {
  position: absolute;
  inset: 8px 12px 0;
  border-radius: var(--radius-xl);
  padding: 1px;
  background: linear-gradient(var(--border-angle, 0deg),
      rgba(0, 212, 255, 0.5),
      rgba(123, 47, 255, 0.3),
      rgba(212, 160, 23, 0.2),
      rgba(0, 200, 150, 0.3),
      rgba(0, 212, 255, 0.5));
  -webkit-mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
  mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  animation: border-rotate 8s linear infinite;
  opacity: 0.6;
  transition: all var(--duration-normal) var(--ease-out);
  pointer-events: none;
}

.navbar-outer.scrolled .navbar-glow-border {
  inset: 0;
  opacity: 0.35;
}

@keyframes border-rotate {
  0% {
    --border-angle: 0deg;
  }

  100% {
    --border-angle: 360deg;
  }
}

/* CSS Houdini for animated angle */
@property --border-angle {
  syntax: '<angle>';
  initial-value: 0deg;
  inherits: false;
}

/* Main nav container */
.navbar {
  position: relative;
  height: var(--nav-height);
  display: flex;
  align-items: center;
  background: rgba(6, 8, 13, 0.75);
  backdrop-filter: blur(24px) saturate(1.4);
  -webkit-backdrop-filter: blur(24px) saturate(1.4);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: var(--radius-xl);
  pointer-events: all;
  transition: all var(--duration-normal) var(--ease-out);
  overflow: visible;
}

/* Hexagonal grid overlay */
.navbar::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background-image:
    radial-gradient(circle at 20% 50%, rgba(0, 212, 255, 0.04) 0%, transparent 50%),
    radial-gradient(circle at 80% 50%, rgba(123, 47, 255, 0.04) 0%, transparent 50%);
  pointer-events: none;
  z-index: 0;
}

.navbar.scrolled {
  background: rgba(6, 8, 13, 0.92);
}

.navbar .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  max-width: var(--max-width-lg);
  position: relative;
  z-index: 1;
}

/* -- Logo -- */
.nav-logo {
  display: flex;
  align-items: center;
  gap: 12px;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 1.15rem;
  color: var(--text-primary);
  z-index: 1001;
  text-decoration: none;
}

.nav-logo-icon {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

.nav-logo-icon img {
  height: 36px;
  width: auto;
  filter: drop-shadow(0 0 8px rgba(0, 212, 255, 0.3));
  transition: filter var(--duration-normal) ease;
}

.nav-logo:hover .nav-logo-icon img {
  filter: drop-shadow(0 0 14px rgba(0, 212, 255, 0.5));
}

/* Live pulse dot on logo */
.nav-logo-pulse {
  position: absolute;
  bottom: 0;
  right: -2px;
  width: 8px;
  height: 8px;
  background: var(--green);
  border-radius: 50%;
  border: 2px solid var(--bg-primary);
  animation: pulse-dot 2s ease infinite;
}

@keyframes pulse-dot {
  0% {
    transform: scale(0.95);
    box-shadow: 0 0 0 0 rgba(0, 230, 118, 0.7);
  }

  70% {
    transform: scale(1);
    box-shadow: 0 0 0 6px rgba(0, 230, 118, 0);
  }

  100% {
    transform: scale(0.95);
    box-shadow: 0 0 0 0 rgba(0, 230, 118, 0);
  }
}

.nav-logo-text {
  letter-spacing: 0.04em;
  font-size: 1.15rem;
}

.nav-logo-accent {
  background: linear-gradient(135deg, var(--blue), var(--purple));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  font-weight: 700;
}

/* -- Universe Toggle Button (Desktop) -- */
.universe-toggle {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-family: var(--font-heading);
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--text-secondary);
  padding: 10px 20px;
  border-radius: var(--radius-full);
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(255, 255, 255, 0.04);
  cursor: pointer;
  transition: all var(--duration-normal) var(--ease-out);
  z-index: 1001;
}

.universe-toggle.active {
  color: var(--text-primary);
  border-color: rgba(0, 212, 255, 0.3);
  background: rgba(0, 212, 255, 0.08);
  box-shadow: 0 0 20px rgba(0, 212, 255, 0.1);
}

.universe-toggle-chevron {
  transition: transform var(--duration-normal) var(--ease-out);
  opacity: 0.6;
}

.universe-toggle.active .universe-toggle-chevron {
  transform: rotate(180deg);
  opacity: 1;
}


/* -- Hamburger (all screen sizes) -- */
.hamburger {
  display: flex;
  flex-direction: column;
  gap: 5px;
  z-index: 1001;
  padding: 4px;
}

.hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--text-primary);
  border-radius: 2px;
  transition: all var(--duration-normal) var(--ease-out);
}

.hamburger.active span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}

.hamburger.active span:nth-child(2) {
  opacity: 0;
}

.hamburger.active span:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -5px);
}

/* ============================================
   UNIVERSE OVERLAY MENU
   ============================================ */

/* Overlay container — covers the screen */
.universe-overlay {
  position: fixed;
  inset: 0;
  z-index: 999;
  pointer-events: none;
  visibility: hidden;
}

.universe-overlay.active {
  pointer-events: all;
  visibility: visible;
}

/* Semi-transparent backdrop */
.universe-overlay-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0);
  backdrop-filter: blur(0px);
  -webkit-backdrop-filter: blur(0px);
  transition: all 0.4s ease;
}

.universe-overlay.active .universe-overlay-backdrop {
  background: rgba(0, 0, 0, 0.5);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}

/* Panel — the actual menu card */
.universe-panel {
  position: absolute;
  top: calc(var(--nav-height) + 16px);
  right: 24px;
  width: 520px;
  max-width: calc(100vw - 48px);
  max-height: calc(100vh - var(--nav-height) - 40px);
  overflow-y: auto;
  background: rgba(10, 15, 25, 0.95);
  backdrop-filter: blur(30px) saturate(1.3);
  -webkit-backdrop-filter: blur(30px) saturate(1.3);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--radius-lg);
  padding: 0;
  box-shadow:
    0 20px 60px rgba(0, 0, 0, 0.5),
    0 0 40px rgba(0, 212, 255, 0.06),
    inset 0 1px 0 rgba(255, 255, 255, 0.04);
  overflow-x: hidden;
  
  /* Entry animation */
  opacity: 0;
  transform: translateY(-12px) scale(0.97);
  transition: all 0.35s var(--ease-out);
}

/* Custom scrollbar for panel */
.universe-panel::-webkit-scrollbar {
  width: 4px;
}
.universe-panel::-webkit-scrollbar-track {
  background: transparent;
}
.universe-panel::-webkit-scrollbar-thumb {
  background: rgba(255, 255, 255, 0.15);
  border-radius: 4px;
}

.universe-overlay.active .universe-panel {
  opacity: 1;
  transform: translateY(0) scale(1);
}

/* Subtle grid pattern inside panel */
.universe-panel::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.02) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.02) 1px, transparent 1px);
  background-size: 40px 40px;
  pointer-events: none;
  border-radius: inherit;
}

/* Panel header */
.universe-panel-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 24px 12px;
  position: relative;
  z-index: 1;
}

.universe-panel-title {
  font-family: var(--font-heading);
  font-size: 0.8rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--text-muted);
}

.universe-close {
  width: 32px;
  height: 32px;
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-muted);
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.06);
  cursor: pointer;
  transition: all var(--duration-fast) ease;
}

.universe-close:active {
  background: rgba(255, 255, 255, 0.1);
  color: var(--text-primary);
}

/* ---- Menu Tab Navigation ---- */
.menu-tabs {
  display: flex;
  gap: 4px;
  padding: 0 16px;
  margin-bottom: 8px;
  position: relative;
  z-index: 1;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.menu-tab {
  font-family: var(--font-heading);
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--text-muted);
  padding: 12px 20px;
  border-radius: var(--radius-sm) var(--radius-sm) 0 0;
  background: transparent;
  border: none;
  cursor: pointer;
  transition: all var(--duration-normal) var(--ease-out);
  position: relative;
  white-space: nowrap;
}

.menu-tab::after {
  content: '';
  position: absolute;
  bottom: -1px;
  left: 50%;
  transform: translateX(-50%);
  width: 0;
  height: 2px;
  border-radius: var(--radius-full);
  background: linear-gradient(90deg, var(--blue), var(--purple));
  transition: width var(--duration-normal) var(--ease-out);
}

.menu-tab:hover {
  color: var(--text-secondary);
  background: rgba(255, 255, 255, 0.03);
}

.menu-tab.active {
  color: var(--text-primary);
  background: rgba(255, 255, 255, 0.04);
}

.menu-tab.active::after {
  width: 70%;
}

/* ---- Menu Tab Content ---- */
.menu-tab-content {
  display: none;
  position: relative;
  z-index: 1;
  animation: tabFadeIn 0.3s var(--ease-out);
}

.menu-tab-content.active {
  display: block;
}

@keyframes tabFadeIn {
  from {
    opacity: 0;
    transform: translateY(6px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* About menu list */
.about-menu-list {
  padding: 8px 16px 20px;
}

.menu-about-item {
  margin-bottom: 4px;
}

/* Items grid */
.universe-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4px;
  padding: 8px 16px 20px;
  position: relative;
  z-index: 1;
}

.universe-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 14px;
  border-radius: var(--radius-md);
  transition: background var(--duration-fast) ease;
  position: relative;
  overflow: hidden;
  text-decoration: none;
  color: inherit;
}

.universe-item:hover {
  background: rgba(255, 255, 255, 0.06);
}

.universe-item:active {
  background: rgba(255, 255, 255, 0.08);
}

.universe-item-icon {
  width: 40px;
  height: 40px;
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.15rem;
  flex-shrink: 0;
  transition: all var(--duration-fast) ease;
}

.universe-item-info {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.universe-item-title {
  font-family: var(--font-heading);
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--text-primary);
}

.universe-item-desc {
  font-size: 0.75rem;
  color: var(--text-muted);
  line-height: 1.3;
}

/* ============================================
   MEET OUR TEAM SECTION
   ============================================ */

.team-section {
  position: relative;
}

.team-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(123, 47, 255, 0.06) 0%, transparent 70%);
  pointer-events: none;
}

.team-subsection {
  margin-bottom: var(--space-3xl);
}

.team-subsection:last-child {
  margin-bottom: 0;
}

.team-subsection-title {
  display: flex;
  align-items: center;
  gap: 12px;
  font-family: var(--font-heading);
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: var(--space-lg);
  padding-bottom: var(--space-sm);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  color: var(--text-primary);
}

.team-subsection-icon {
  font-size: 1.4rem;
}

/* Team Grid */
.team-grid {
  display: grid;
  gap: var(--space-md);
}

.team-grid-founders {
  grid-template-columns: repeat(3, 1fr);
}

.team-grid-directors {
  grid-template-columns: repeat(4, 1fr);
}

/* Team Card */
.team-card {
  text-align: center;
  padding: var(--space-lg) var(--space-md);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  position: relative;
  overflow: hidden;
}

.team-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 100px;
  height: 100px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(0, 212, 255, 0.08) 0%, transparent 70%);
  pointer-events: none;
  transition: all var(--duration-slow) ease;
}

.team-card:hover::before {
  width: 160px;
  height: 160px;
  background: radial-gradient(circle, rgba(0, 212, 255, 0.12) 0%, transparent 70%);
}

/* Team Photo Container */
.team-card-photo {
  border-radius: 50%;
  overflow: hidden;
  border: 3px solid rgba(255, 255, 255, 0.1);
  box-shadow:
    0 0 20px rgba(0, 0, 0, 0.3),
    0 0 40px rgba(0, 212, 255, 0.05);
  transition: all var(--duration-normal) var(--ease-out);
  position: relative;
  flex-shrink: 0;
  margin: 0 auto;
}

/* Base size (for directors) */
.team-grid-directors .team-card-photo {
  width: 100px;
  height: 100px;
}

/* Larger size for Founders */
.team-grid-founders .team-card-photo {
  width: 160px;
  height: 160px;
  border-width: 4px;
}

/* Adjust Founder Hover Glow */
.team-grid-founders .team-card::before {
  width: 160px;
  height: 160px;
}
.team-grid-founders .team-card:hover::before {
  width: 220px;
  height: 220px;
}

.team-card-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--duration-slow) var(--ease-out);
}

.team-card:hover .team-card-photo {
  border-color: rgba(0, 212, 255, 0.3);
  box-shadow:
    0 0 20px rgba(0, 0, 0, 0.3),
    0 0 30px rgba(0, 212, 255, 0.15);
  transform: scale(1.05);
}

.team-card:hover .team-card-photo img {
  transform: scale(1.08);
}

/* Founder card golden glow */
.team-card.glass-card-gold:hover .team-card-photo {
  border-color: rgba(212, 160, 23, 0.4);
  box-shadow:
    0 0 20px rgba(0, 0, 0, 0.3),
    0 0 30px rgba(212, 160, 23, 0.2);
}

/* Team Name & Role */
.team-card-name {
  font-family: var(--font-heading);
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--text-primary);
  line-height: 1.3;
}

.team-card-role {
  font-size: 0.78rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  padding: 4px 14px;
  border-radius: var(--radius-full);
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  color: var(--text-muted);
}

.team-card.glass-card-gold .team-card-role {
  color: var(--gold);
  background: var(--gold-dim);
  border-color: rgba(212, 160, 23, 0.15);
}

.team-card.glass-card-blue .team-card-role {
  color: var(--blue);
  background: var(--blue-dim);
  border-color: rgba(0, 212, 255, 0.15);
}

/* Purple underline for team section */
.team-section .section-title::after {
  background: linear-gradient(90deg, var(--purple), var(--blue), var(--purple));
  background-size: 200% 100%;
}

.team-section .section-title::before {
  background: radial-gradient(ellipse at center, rgba(123, 47, 255, 0.08) 0%, transparent 70%);
}

/* Mobile responsive for team grid */
@media (max-width: 1024px) {
  .team-grid-founders {
    grid-template-columns: repeat(3, 1fr);
  }
  .team-grid-directors {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 768px) {
  .team-grid-founders {
    grid-template-columns: repeat(2, 1fr);
  }
  .team-grid-directors {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .universe-panel {
    right: 12px;
    left: 12px;
    width: auto;
    max-width: none;
  }
  
  .universe-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 480px) {
  .team-grid-founders,
  .team-grid-directors {
    grid-template-columns: repeat(2, 1fr);
    gap: var(--space-sm);
  }
  
  .team-card {
    padding: var(--space-sm);
  }
  
  .team-grid-directors .team-card-photo {
    width: 72px;
    height: 72px;
  }
  
  .team-grid-founders .team-card-photo {
    width: 100px;
    height: 100px;
    border-width: 3px;
  }
  
  .team-grid-founders .team-card::before {
    width: 100px;
    height: 100px;
  }
  .team-grid-founders .team-card:hover::before {
    width: 140px;
    height: 140px;
  }

  .team-card-name {
    font-size: 0.82rem;
  }
}


/* -- Exchange Ticker -- */
.exchange-ticker {
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: var(--radius-lg);
  background: rgba(255, 255, 255, 0.02);
  padding: var(--space-xs) 0;
  margin-bottom: var(--space-xl);
  overflow: hidden;
}

/* ============================================
   HERO SECTION
   ============================================ */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  position: relative;
  padding-top: var(--nav-height);
  overflow: hidden;
}

.hero-canvas {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
}

/* Radial gradient overlay */
.hero::before {
  content: '';
  position: absolute;
  top: -30%;
  left: 50%;
  transform: translateX(-50%);
  width: 800px;
  height: 800px;
  background: radial-gradient(circle, rgba(0, 212, 255, 0.08) 0%, rgba(123, 47, 255, 0.05) 40%, transparent 70%);
  border-radius: 50%;
  z-index: 1;
  pointer-events: none;
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 800px;
  padding: var(--space-xl) var(--space-md);
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 20px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--radius-full);
  font-size: 0.85rem;
  color: var(--text-secondary);
  margin-bottom: var(--space-lg);
  font-weight: 500;
}

.hero-badge span {
  color: var(--blue);
}

.hero h1 {
  margin-bottom: var(--space-md);
}

.hero p {
  font-size: 1.25rem;
  max-width: 580px;
  margin: 0 auto var(--space-lg);
}

.hero-coin {
  position: absolute;
  right: 8%;
  top: 50%;
  transform: translateY(-50%);
  width: 280px;
  z-index: 2;
  animation: float 6s ease-in-out infinite;
  filter: drop-shadow(0 0 40px rgba(212, 160, 23, 0.3));
  pointer-events: none;
}

@keyframes float {

  0%,
  100% {
    transform: translateY(-50%);
  }

  50% {
    transform: translateY(calc(-50% - 20px));
  }
}

/* ============================================
   ECOSYSTEM OVERVIEW
   ============================================ */
.ecosystem {
  background: var(--bg-secondary);
}

.eco-card {
  text-align: center;
  padding: var(--space-lg) var(--space-sm);
  cursor: pointer;
}

.eco-card .icon-box {
  width: 64px;
  height: 64px;
  margin: 0 auto var(--space-sm);
  border-radius: var(--radius-lg);
  font-size: 1.6rem;
}

.eco-card h4 {
  margin-bottom: var(--space-xs);
}

.eco-card p {
  font-size: 0.9rem;
  color: var(--text-muted);
}

.eco-card .card-link {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  font-size: 0.85rem;
  color: var(--blue);
  margin-top: var(--space-sm);
  font-weight: 500;
  transition: gap var(--duration-normal) var(--ease-out);
}

.eco-card:hover .card-link {
  gap: 8px;
}

/* ============================================
   EXCHANGE SECTION
   ============================================ */
.exchange {
  background: var(--bg-primary);
  overflow: hidden;
}

.exchange-visual {
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--bg-glass-border);
  background: var(--bg-glass);
  height: 400px;
}

.exchange-visual .tradingview-widget-container,
.exchange-visual .tradingview-widget-container>div {
  height: 100% !important;
  width: 100% !important;
}

.exchange-visual iframe {
  height: 100% !important;
  width: 100% !important;
}

.exchange-features {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-sm);
  margin-top: var(--space-lg);
}

.feature-card {
  display: flex;
  gap: var(--space-sm);
  align-items: flex-start;
  padding: var(--space-sm);
  border-radius: var(--radius-md);
  transition: background var(--duration-fast) ease;
}

.feature-card:hover {
  background: rgba(255, 255, 255, 0.03);
}

.feature-card .icon-box {
  width: 44px;
  height: 44px;
  font-size: 1.2rem;
  margin-bottom: 0;
}

.feature-card h4 {
  font-size: 1rem;
  margin-bottom: 4px;
}

.feature-card p {
  font-size: 0.85rem;
  color: var(--text-muted);
}

/* ============================================
   HYBRID BOT SECTION
   ============================================ */
.bot-section {
  background: linear-gradient(180deg, var(--bg-secondary) 0%, var(--bg-primary) 100%);
}

.bot-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-md);
  margin-bottom: var(--space-xl);
}

.bot-stat-card {
  text-align: center;
  padding: var(--space-lg);
}

.bot-stat-card .stat-value {
  color: var(--purple);
}

.bot-visual {
  position: relative;
  padding: var(--space-lg);
  min-height: 300px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.bot-bar-row {
  display: flex;
  align-items: center;
  gap: var(--space-sm);
  margin-bottom: var(--space-sm);
}

.bot-bar-label {
  font-size: 0.8rem;
  color: var(--text-muted);
  width: 80px;
  text-align: right;
  flex-shrink: 0;
}

.bot-bar-track {
  flex: 1;
  height: 8px;
  background: rgba(255, 255, 255, 0.05);
  border-radius: var(--radius-full);
  overflow: hidden;
}

.bot-bar-fill {
  height: 100%;
  border-radius: var(--radius-full);
  background: linear-gradient(90deg, var(--purple), var(--blue));
  animation: bar-grow 2s var(--ease-out) forwards;
  transform-origin: left;
}

@keyframes bar-grow {
  from {
    width: 0;
  }
}

.bot-activity {
  display: flex;
  gap: 3px;
  margin-top: var(--space-md);
  align-items: flex-end;
  height: 60px;
}

.bot-activity-bar {
  flex: 1;
  background: linear-gradient(180deg, var(--purple), rgba(123, 47, 255, 0.2));
  border-radius: 2px 2px 0 0;
  animation: activity-wave 3s ease-in-out infinite;
}

@keyframes activity-wave {

  0%,
  100% {
    transform: scaleY(0.3);
  }

  50% {
    transform: scaleY(1);
  }
}

/* ============================================
   AIZU COIN SECTION
   ============================================ */
.coin-section {
  background: var(--bg-primary);
  position: relative;
  overflow: hidden;
}

.coin-section::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(212, 160, 23, 0.06) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
}

.coin-video-showcase {
  display: flex;
  align-items: center;
  justify-content: center;
  margin: var(--space-xl) auto;
  position: relative;
  max-width: 800px; /* limits how large the video can grow */
  width: 100%;
}

.coin-video {
  width: 100%;
  height: auto;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-glow-gold);
  border: 1px solid rgba(212, 160, 23, 0.2);
}

.coin-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-md);
  margin-top: var(--space-xl);
}

.coin-stat-card {
  text-align: center;
  padding: var(--space-md) var(--space-sm);
}

.coin-stat-card .stat-value {
  color: var(--gold);
}

.coin-benefits {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-md);
  margin-top: var(--space-xl);
}

/* ============================================
   PULSE SECTION
   ============================================ */
.pulse-section {
  background: var(--bg-secondary);
}

.pulse-widget {
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--bg-glass-border);
  margin-top: var(--space-lg);
  height: 400px;
}

.pulse-widget .tradingview-widget-container,
.pulse-widget .tradingview-widget-container>div {
  height: 100% !important;
  width: 100% !important;
}

.pulse-widget iframe {
  height: 100% !important;
  width: 100% !important;
}

/* Hide TradingView branding/copyright everywhere */
.tradingview-widget-copyright,
.tradingview-widget-container__widget+div,
.tradingview-widget-container>div:last-child:not(:first-child):not([class]),
[class*="copyright"] {
  display: none !important;
  height: 0 !important;
  overflow: hidden !important;
  visibility: hidden !important;
}

/* ============================================
   DEX SECTION
   ============================================ */
.dex-section {
  background: var(--bg-primary);
}

.swap-card {
  max-width: 420px;
  margin: 0 auto;
  padding: var(--space-lg);
}

.swap-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: var(--space-md);
}

.swap-header h4 {
  font-size: 1.1rem;
}

.swap-input-group {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: var(--radius-md);
  padding: var(--space-sm) var(--space-md);
  margin-bottom: var(--space-xs);
}

.swap-input-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.swap-amount {
  font-family: var(--font-heading);
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--text-primary);
}

.swap-token {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 6px 14px;
  background: rgba(255, 255, 255, 0.06);
  border-radius: var(--radius-full);
  font-weight: 600;
  font-size: 0.9rem;
}

.swap-token-icon {
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: var(--blue);
}

.swap-balance {
  font-size: 0.8rem;
  color: var(--text-muted);
  margin-top: 8px;
}

.swap-arrow {
  text-align: center;
  padding: var(--space-xs) 0;
  font-size: 1.2rem;
  color: var(--text-muted);
}

.swap-btn {
  width: 100%;
  margin-top: var(--space-md);
}

/* ============================================
   FOUNDATION SECTION
   ============================================ */
.foundation-section {
  background: linear-gradient(180deg, var(--bg-primary) 0%, var(--bg-secondary) 100%);
  position: relative;
}

.foundation-pillars {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-md);
}

.foundation-card {
  padding: var(--space-lg);
}

.foundation-card .icon-box {
  background: var(--orange-dim);
  color: var(--orange);
}

/* ============================================
   100X PLATFORM SECTION
   ============================================ */
.platform-section {
  background: var(--bg-secondary);
}

.phone-mockup {
  width: 280px;
  height: 560px;
  border-radius: 40px;
  border: 3px solid rgba(255, 255, 255, 0.1);
  background: linear-gradient(180deg, #111827 0%, #0d1b2a 100%);
  margin: 0 auto;
  position: relative;
  overflow: hidden;
  box-shadow: var(--shadow-lg), 0 0 80px rgba(0, 212, 255, 0.08);
}

.phone-notch {
  width: 120px;
  height: 28px;
  background: #000;
  border-radius: 0 0 16px 16px;
  margin: 0 auto;
}

.phone-content {
  padding: var(--space-md);
}

.phone-content .mini-header {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: var(--space-md);
}

.phone-content .mini-logo {
  width: 28px;
  height: 28px;
}

.phone-content .mini-title {
  font-family: var(--font-heading);
  font-size: 0.85rem;
  font-weight: 600;
}

.phone-content .mini-balance {
  text-align: center;
  margin-bottom: var(--space-md);
}

.phone-content .mini-balance-amount {
  font-family: var(--font-heading);
  font-size: 1.8rem;
  font-weight: 700;
}

.phone-content .mini-balance-change {
  font-size: 0.75rem;
  color: var(--green);
}

.phone-content .mini-actions {
  display: flex;
  justify-content: center;
  gap: var(--space-sm);
  margin-bottom: var(--space-md);
}

.phone-content .mini-action-btn {
  padding: 8px 20px;
  background: rgba(255, 255, 255, 0.06);
  border-radius: var(--radius-full);
  font-size: 0.75rem;
  font-weight: 600;
}

.phone-content .mini-chart {
  height: 80px;
  background: linear-gradient(180deg, rgba(0, 212, 255, 0.1) 0%, transparent 100%);
  border-radius: var(--radius-sm);
  position: relative;
  overflow: hidden;
}

.phone-content .mini-chart::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--blue), var(--purple), var(--blue));
}

.phone-content .mini-assets {
  margin-top: var(--space-sm);
}

.phone-content .mini-asset-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 8px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.04);
  font-size: 0.75rem;
}

.phone-content .mini-asset-name {
  font-weight: 600;
}

.phone-content .mini-asset-price {
  color: var(--text-muted);
}

/* ============================================
   TICKER TAPE
   ============================================ */
.ticker-section {
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  background: rgba(6, 8, 13, 0.9);
  position: relative;
  z-index: 10;
}

/* ============================================
   FOOTER
   ============================================ */
.footer {
  background: var(--bg-primary);
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  padding: var(--space-2xl) 0 var(--space-lg);
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: var(--space-xl);
  margin-bottom: var(--space-xl);
}

.footer-brand p {
  font-size: 0.9rem;
  color: var(--text-muted);
  margin-top: var(--space-sm);
  max-width: 300px;
}

.footer-col h4 {
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--text-muted);
  margin-bottom: var(--space-sm);
}

.footer-col a {
  display: block;
  font-size: 0.9rem;
  color: var(--text-secondary);
  padding: 4px 0;
  transition: color var(--duration-fast) ease;
}

.footer-col a:hover {
  color: var(--blue);
}

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: var(--space-lg);
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  font-size: 0.8rem;
  color: var(--text-muted);
}

.footer-socials {
  display: flex;
  gap: var(--space-sm);
}

.footer-socials a {
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.06);
  transition: all var(--duration-fast) ease;
  font-size: 0.9rem;
}

.footer-socials a:hover {
  background: var(--blue-dim);
  border-color: rgba(0, 212, 255, 0.2);
  color: var(--blue);
}

/* ============================================
   SCROLL ANIMATIONS
   ============================================ */
.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: all 0.8s var(--ease-out);
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

.reveal-delay-1 {
  transition-delay: 0.1s;
}

.reveal-delay-2 {
  transition-delay: 0.2s;
}

.reveal-delay-3 {
  transition-delay: 0.3s;
}

.reveal-delay-4 {
  transition-delay: 0.4s;
}

.reveal-delay-5 {
  transition-delay: 0.5s;
}

.reveal-delay-6 {
  transition-delay: 0.6s;
}

/* ============================================
   SECTION DIVIDERS / DECORATIONS
   ============================================ */
.section-glow {
  position: absolute;
  width: 400px;
  height: 400px;
  border-radius: 50%;
  filter: blur(120px);
  pointer-events: none;
  z-index: 0;
}

.glow-blue {
  background: rgba(0, 212, 255, 0.06);
}

.glow-purple {
  background: rgba(123, 47, 255, 0.06);
}

.glow-gold {
  background: rgba(212, 160, 23, 0.06);
}

/* ============================================
   RESPONSIVE – TABLET (768px–1199px)
   ============================================ */
@media (max-width: 1199px) {
  .grid-6 {
    grid-template-columns: repeat(3, 1fr);
  }

  .grid-4 {
    grid-template-columns: repeat(2, 1fr);
  }

  .hero-coin {
    position: relative;
    right: auto;
    top: auto;
    transform: none;
    width: 200px;
    margin: var(--space-lg) auto 0;
    animation-name: float-sm;
  }

  @keyframes float-sm {

    0%,
    100% {
      transform: translateY(0);
    }

    50% {
      transform: translateY(-15px);
    }
  }

  .split {
    grid-template-columns: 1fr;
    gap: var(--space-lg);
  }

  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: var(--space-lg);
  }
}

/* ============================================
   RESPONSIVE – MOBILE (< 768px)
   ============================================ */
@media (max-width: 767px) {
  :root {
    --space-3xl: 4rem;
    --space-2xl: 3rem;
    --space-xl: 2rem;
  }

  /* Show hamburger, hide Universe toggle on mobile */
  .hamburger {
    display: flex;
  }

  .universe-toggle {
    display: none;
  }

  .navbar-outer {
    padding: 0;
  }

  .navbar-outer .navbar {
    border-radius: 0;
    border-left: none;
    border-right: none;
  }

  .navbar-glow-border {
    inset: 0;
    border-radius: 0;
    opacity: 0.3;
  }

  /* Universe overlay: full-screen on mobile */
  .universe-panel {
    top: 0;
    right: 0;
    left: 0;
    bottom: 0;
    width: 100%;
    max-width: 100%;
    border-radius: 0;
    padding-top: calc(var(--nav-height) + 16px);
    overflow-y: auto;
    transform: translateX(100%);
    opacity: 1;
  }

  .universe-overlay.active .universe-panel {
    transform: translateX(0);
  }

  .universe-overlay-backdrop {
    display: none;
  }

  .universe-panel-header {
    padding: 16px 20px 8px;
  }

  .universe-grid {
    grid-template-columns: 1fr;
    gap: 2px;
    padding: 8px 16px 32px;
  }

  .universe-item {
    padding: 14px 16px;
  }

  .universe-item-desc {
    display: block;
  }

  .grid-2,
  .grid-3,
  .grid-6 {
    grid-template-columns: 1fr;
  }

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

  .hero h1 {
    font-size: 2.2rem;
  }

  .hero p {
    font-size: 1.05rem;
  }

  .hero-coin {
    width: 160px;
  }

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

  .btn-group .btn {
    text-align: center;
  }

  .stats-row {
    gap: var(--space-md);
  }

  .stat-value {
    font-size: 1.8rem;
  }

  .bot-stats {
    grid-template-columns: 1fr;
  }

  .coin-video-showcase {
    margin: var(--space-lg) auto;
    padding: 0 var(--space-sm);
  }

  .coin-video {
    border-radius: var(--radius-md);
  }

  .coin-stats,
  .coin-benefits {
    grid-template-columns: 1fr;
  }

  .exchange-features {
    grid-template-columns: 1fr;
  }

  .foundation-pillars {
    grid-template-columns: 1fr;
  }

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

  .footer-bottom {
    flex-direction: column;
    gap: var(--space-sm);
    text-align: center;
  }

  .phone-mockup {
    width: 240px;
    height: 480px;
  }

  .section-header {
    text-align: left;
  }

  .section-header .section-title {
    margin: 0 0 var(--space-md);
  }

  .section-header .section-title::after {
    margin: var(--space-sm) 0 0;
  }

  .section-header .section-desc {
    margin: 0;
  }
}

/* ============================================
   UTILITIES
   ============================================ */
.text-center {
  text-align: center;
}

.text-left {
  text-align: left;
}

.mt-sm {
  margin-top: var(--space-sm);
}

.mt-md {
  margin-top: var(--space-md);
}

.mt-lg {
  margin-top: var(--space-lg);
}

.mt-xl {
  margin-top: var(--space-xl);
}

.mb-sm {
  margin-bottom: var(--space-sm);
}

.mb-md {
  margin-bottom: var(--space-md);
}

.mb-lg {
  margin-bottom: var(--space-lg);
}

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

/* ---- Candlestick Chart (CSS Only) ---- */
.candlestick-chart {
  display: flex;
  align-items: flex-end;
  gap: 6px;
  height: 120px;
  padding: var(--space-sm);
}

.candle {
  width: 8px;
  position: relative;
  border-radius: 1px;
}

.candle.green {
  background: var(--green);
}

.candle.red {
  background: #ff4757;
}

.candle::before {
  content: '';
  position: absolute;
  top: -8px;
  left: 50%;
  transform: translateX(-50%);
  width: 1px;
  height: 8px;
  background: inherit;
}

.candle::after {
  content: '';
  position: absolute;
  bottom: -8px;
  left: 50%;
  transform: translateX(-50%);
  width: 1px;
  height: 8px;
  background: inherit;
}

/* ---- Price ticker mini ---- */
.mini-ticker {
  display: flex;
  gap: var(--space-lg);
  padding: var(--space-sm) 0;
  overflow-x: auto;
  scrollbar-width: none;
}

.mini-ticker::-webkit-scrollbar {
  display: none;
}

.ticker-item {
  display: flex;
  align-items: center;
  gap: 8px;
  white-space: nowrap;
  font-size: 0.85rem;
}

.ticker-item .ticker-symbol {
  font-weight: 600;
  color: var(--text-primary);
}

.ticker-item .ticker-price {
  color: var(--text-secondary);
}

.ticker-item .ticker-change {
  font-weight: 600;
}

.ticker-item .ticker-change.up {
  color: var(--green);
}

.ticker-item .ticker-change.down {
  color: #ff4757;
}