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

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Inter', sans-serif;
  background-color: #0a0a14;
  color: #c0c0d0;
  overflow-x: hidden;
  line-height: 1.6;
}

::selection {
  background: rgba(0, 229, 255, 0.3);
  color: #ffffff;
}

::-webkit-scrollbar {
  width: 8px;
}

::-webkit-scrollbar-track {
  background: #0a0a14;
}

::-webkit-scrollbar-thumb {
  background: linear-gradient(180deg, #00e5ff, #7b2ff7);
  border-radius: 4px;
}

/* CANVASES */
#circuitCanvas {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
  pointer-events: none;
}

#particleCanvas {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
  pointer-events: none;
}

#cursor-glow {
  position: fixed;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(0, 229, 255, 0.1) 0%, transparent 70%);
  pointer-events: none;
  z-index: 9999;
  transform: translate(-50%, -50%);
}

/* NAV */
nav {
  position: fixed;
  width: 100%;
  z-index: 1000;
  padding: 1.25rem 0;
  transition: all 0.3s ease;
}

nav.scrolled {
  background: rgba(10, 10, 20, 0.95);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(0, 229, 255, 0.15);
  box-shadow: 0 4px 30px rgba(0, 229, 255, 0.1);
}

.nav-container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 2rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.logo {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  text-decoration: none;
}

.nav-logo {
  height: 36px;
  object-fit: contain;
  filter: drop-shadow(0 0 8px rgba(0, 229, 255, 0.5));
}

.logo span {
  font-family: 'Orbitron', sans-serif;
  font-size: 1.4rem;
  color: #ffffff;
  font-weight: 700;
  letter-spacing: 2px;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 2rem;
  list-style: none;
}

.nav-links a {
  color: #c0c0d0;
  font-size: 0.9rem;
  font-weight: 500;
  text-decoration: none;
  position: relative;
  transition: color 0.3s ease;
}

.nav-links a:hover {
  color: #00e5ff;
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 2px;
  background: linear-gradient(90deg, #00e5ff, #7b2ff7);
  transition: width 0.3s ease;
}

.nav-links a:hover::after {
  width: 100%;
}

.nav-right {
  display: flex;
  align-items: center;
  gap: 1.5rem;
}

.lang-switcher {
  position: relative;
}

.lang-btn {
  background: transparent;
  border: 1px solid rgba(0, 229, 255, 0.3);
  color: #c0c0d0;
  padding: 0.4rem 0.8rem;
  border-radius: 6px;
  cursor: pointer;
  font-size: 0.8rem;
  transition: all 0.3s ease;
}

.lang-btn:hover {
  border-color: #00e5ff;
}

.lang-dropdown {
  position: absolute;
  top: 100%;
  right: 0;
  background: rgba(17, 17, 32, 0.95);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(0, 229, 255, 0.2);
  border-radius: 8px;
  min-width: 120px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-10px);
  transition: all 0.3s ease;
  margin-top: 0.5rem;
}

.lang-dropdown.active {
  opacity: 1;
  visibility: visible;
  transform: translateY(5px);
}

.lang-dropdown a {
  display: block;
  padding: 0.5rem 1rem;
  color: #c0c0d0;
  text-decoration: none;
  font-size: 0.85rem;
  transition: all 0.3s ease;
}

.lang-dropdown a:hover {
  background: rgba(0, 229, 255, 0.1);
  color: #00e5ff;
}

.btn-nav {
  background: linear-gradient(135deg, #00e5ff, #7b2ff7) !important;
  color: #ffffff !important;
  padding: 0.35rem 0.9rem !important;
  border-radius: 5px !important;
  text-decoration: none;
  font-weight: 600;
  font-size: 0.75rem !important;
  transition: all 0.3s ease;
  border: none;
  cursor: pointer;
  position: relative;
  overflow: hidden;
  white-space: nowrap;
  line-height: 1.4;
}

.btn-nav::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
  transition: left 0.5s ease;
}

.btn-nav:hover::before {
  left: 100%;
}

.btn-nav:hover {
  box-shadow: 0 0 20px rgba(0, 229, 255, 0.5);
  transform: translateY(-2px);
}

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  z-index: 1001;
}

.hamburger span {
  width: 25px;
  height: 2px;
  background: #c0c0d0;
  transition: all 0.3s ease;
}

.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);
}

/* HERO */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  padding-top: 6rem;
}

.hero-grid {
  position: absolute;
  inset: 0;
  background-image: linear-gradient(rgba(0, 229, 255, 0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(0, 229, 255, 0.03) 1px, transparent 1px);
  background-size: 50px 50px;
  animation: gridMove 20s linear infinite;
}

@keyframes gridMove {
  from {
    background-position: 0 0;
  }
  to {
    background-position: 50px 50px;
  }
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 2rem;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.hero-text {
  max-width: 600px;
}

.badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.4rem 1rem;
  background: rgba(0, 229, 255, 0.1);
  border: 1px solid rgba(0, 229, 255, 0.3);
  border-radius: 50px;
  font-size: 0.8rem;
  color: #00e5ff;
  margin-bottom: 1.5rem;
}

.badge-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #00e5ff;
  animation: pulse 2s infinite;
}

@keyframes pulse {
  0%, 100% {
    opacity: 1;
    transform: scale(1);
  }
  50% {
    opacity: 0.5;
    transform: scale(1.2);
  }
}

h1 {
  font-family: 'Orbitron', sans-serif;
  font-size: 3.5rem;
  font-weight: 800;
  color: #ffffff;
  line-height: 1.1;
  margin-bottom: 1.5rem;
  text-transform: uppercase;
  letter-spacing: 2px;
}

.gradient-text {
  background: linear-gradient(135deg, #00e5ff, #7b2ff7);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hl {
  background: linear-gradient(135deg, #00e5ff, #7b2ff7);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-desc {
  font-size: 1.1rem;
  color: #888888;
  margin-bottom: 2rem;
  line-height: 1.7;
}

.hero-stats {
  display: flex;
  gap: 2rem;
  margin-bottom: 2rem;
}

.stat {
  text-align: center;
}

.stat-num {
  font-family: 'Orbitron', sans-serif;
  font-size: 1.5rem;
  font-weight: 700;
  color: #00e5ff;
}

.stat-lbl {
  font-size: 0.75rem;
  color: #666666;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.hero-buttons {
  display: flex;
  gap: 1rem;
  margin-bottom: 2rem;
}

.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.8rem 2rem;
  border-radius: 8px;
  font-weight: 600;
  font-size: 0.9rem;
  text-decoration: none;
  transition: all 0.3s ease;
  cursor: pointer;
  border: none;
  position: relative;
  overflow: hidden;
}

.btn-primary {
  background: linear-gradient(135deg, #00e5ff, #7b2ff7);
  color: #ffffff;
  box-shadow: 0 4px 15px rgba(0, 229, 255, 0.3);
}

.btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(0, 229, 255, 0.5);
}

.btn-primary::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
  transition: left 0.5s ease;
}

.btn-primary:hover::before {
  left: 100%;
}

.btn-ghost {
  background: transparent;
  border: 1px solid rgba(0, 229, 255, 0.3);
  color: #00e5ff;
}

.btn-ghost:hover {
  background: rgba(0, 229, 255, 0.1);
  border-color: #00e5ff;
  transform: translateY(-3px);
}

.hero-contract {
  font-size: 0.8rem;
  color: #555555;
}

.hero-contract code {
  color: #00e5ff;
  background: rgba(0, 229, 255, 0.1);
  padding: 0.2rem 0.5rem;
  border-radius: 4px;
  cursor: pointer;
}

/* HERO COIN */
.hero-visual {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

.coin-display {
  position: relative;
  width: 400px;
  height: 400px;
}

.hero-coin {
  width: 300px;
  height: 300px;
  object-fit: contain;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  filter: drop-shadow(0 0 30px rgba(0, 229, 255, 0.4));
  z-index: 2;
  animation: floatCoin 6s ease-in-out infinite;
}

@keyframes floatCoin {
  0%, 100% {
    transform: translate(-50%, -50%) translateY(0);
  }
  50% {
    transform: translate(-50%, -50%) translateY(-20px);
  }
}

.coin-ring {
  position: absolute;
  border-radius: 50%;
  border: 1px solid;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.ring-1 {
  width: 340px;
  height: 340px;
  border-color: rgba(0, 229, 255, 0.2);
  animation: ringPulse 4s ease-in-out infinite;
}

.ring-2 {
  width: 380px;
  height: 380px;
  border-color: rgba(123, 47, 247, 0.15);
  animation: ringPulse 4s ease-in-out infinite 1s;
}

.ring-3 {
  width: 420px;
  height: 420px;
  border-color: rgba(0, 229, 255, 0.1);
  animation: ringPulse 4s ease-in-out infinite 2s;
}

@keyframes ringPulse {
  0%, 100% {
    opacity: 0.3;
    transform: translate(-50%, -50%) scale(1);
  }
  50% {
    opacity: 0.8;
    transform: translate(-50%, -50%) scale(1.05);
  }
}

.coin-glow {
  position: absolute;
  width: 350px;
  height: 350px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(0, 229, 255, 0.15) 0%, transparent 70%);
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  animation: glowPulse 3s ease-in-out infinite;
}

@keyframes glowPulse {
  0%, 100% {
    opacity: 0.5;
    transform: translate(-50%, -50%) scale(1);
  }
  50% {
    opacity: 1;
    transform: translate(-50%, -50%) scale(1.1);
  }
}

/* ORBIT PARTICLES */
.orbit-dot {
  position: absolute;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #00e5ff;
  top: 50%;
  left: 50%;
  animation: orbit linear infinite;
}

.orbit-dot:nth-child(1) {
  animation-duration: 8s;
  --orbit-radius: 170px;
}

.orbit-dot:nth-child(2) {
  animation-duration: 12s;
  --orbit-radius: 190px;
  background: #7b2ff7;
  animation-delay: -3s;
}

.orbit-dot:nth-child(3) {
  animation-duration: 10s;
  --orbit-radius: 210px;
  animation-delay: -5s;
}

@keyframes orbit {
  0% {
    transform: rotate(0deg) translateX(var(--orbit-radius)) rotate(0deg);
  }
  100% {
    transform: rotate(360deg) translateX(var(--orbit-radius)) rotate(-360deg);
  }
}

/* SCROLL INDICATOR */
.scroll-indicator {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
}

.scroll-indicator span {
  font-size: 0.7rem;
  color: #555555;
  text-transform: uppercase;
  letter-spacing: 2px;
}

.scroll-line {
  width: 1px;
  height: 40px;
  background: linear-gradient(to bottom, #00e5ff, transparent);
  animation: scrollPulse 2s infinite;
}

@keyframes scrollPulse {
  0%, 100% {
    opacity: 0.3;
  }
  50% {
    opacity: 1;
  }
}

/* SECTION COMMON */
section {
  padding: 8rem 0;
  position: relative;
}

.container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 2rem;
}

.tag {
  display: inline-block;
  padding: 0.3rem 1rem;
  background: rgba(0, 229, 255, 0.1);
  border: 1px solid rgba(0, 229, 255, 0.2);
  border-radius: 50px;
  font-size: 0.75rem;
  color: #00e5ff;
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 1rem;
}

.section-header {
  text-align: center;
  margin-bottom: 4rem;
}

.section-header h2 {
  font-family: 'Orbitron', sans-serif;
  font-size: 2.5rem;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 1rem;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.section-header p {
  font-size: 1.1rem;
  color: #888888;
  max-width: 600px;
  margin: 0 auto;
}

/* ABOUT */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.about-visual {
  position: relative;
}

.about-img-wrapper {
  position: relative;
  display: inline-block;
}

.about-img {
  width: 100%;
  max-width: 380px;
  border-radius: 20px;
  filter: drop-shadow(0 0 20px rgba(0, 229, 255, 0.2));
}

.about-badge {
  position: absolute;
  top: -10px;
  right: -10px;
  padding: 0.5rem 1rem;
  background: linear-gradient(135deg, #00e5ff, #7b2ff7);
  border-radius: 8px;
  font-size: 0.8rem;
  font-weight: 700;
  color: #ffffff;
}

.about-text h2 {
  font-family: 'Orbitron', sans-serif;
  font-size: 2rem;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 1.5rem;
  text-transform: uppercase;
}

.about-text p {
  color: #888888;
  margin-bottom: 1rem;
  line-height: 1.7;
}

.about-features {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
  margin-top: 2rem;
}

.af {
  padding: 1.5rem;
  background: rgba(17, 17, 32, 0.5);
  border: 1px solid rgba(0, 229, 255, 0.1);
  border-radius: 12px;
  transition: all 0.3s ease;
}

.af:hover {
  border-color: rgba(0, 229, 255, 0.3);
  transform: translateY(-3px);
}

.af-icon {
  font-size: 1.5rem;
  margin-bottom: 0.5rem;
}

.af h4 {
  font-family: 'Orbitron', sans-serif;
  font-size: 0.9rem;
  color: #ffffff;
  margin-bottom: 0.3rem;
  text-transform: uppercase;
}

.af p {
  font-size: 0.8rem;
  color: #00e5ff;
}

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

.fc {
  position: relative;
  padding: 2rem;
  background: rgba(17, 17, 32, 0.5);
  border: 1px solid rgba(0, 229, 255, 0.1);
  border-radius: 16px;
  transition: all 0.3s ease;
  overflow: hidden;
}

.fc::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(0, 229, 255, 0.05) 0%, transparent 50%);
  opacity: 0;
  transition: opacity 0.3s ease;
}

.fc:hover {
  border-color: rgba(0, 229, 255, 0.3);
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(0, 229, 255, 0.1);
}

.fc:hover::before {
  opacity: 1;
}

.fc-icon {
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(0, 229, 255, 0.1);
  border-radius: 12px;
  margin-bottom: 1rem;
  color: #00e5ff;
}

.fc-icon svg {
  width: 24px;
  height: 24px;
}

.fc h3 {
  font-family: 'Orbitron', sans-serif;
  font-size: 1rem;
  font-weight: 600;
  color: #ffffff;
  margin-bottom: 0.5rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  position: relative;
  z-index: 1;
}

.fc p {
  font-size: 0.9rem;
  color: #888888;
  line-height: 1.6;
  position: relative;
  z-index: 1;
}

.fc-metric {
  display: inline-block;
  margin-top: 1rem;
  padding: 0.3rem 0.8rem;
  background: rgba(0, 229, 255, 0.1);
  border-radius: 50px;
  font-size: 0.75rem;
  color: #00e5ff;
  font-weight: 600;
  position: relative;
  z-index: 1;
}

/* POWAI */
.powai {
  background: linear-gradient(180deg, transparent, rgba(0, 229, 255, 0.03), transparent);
}

.powai-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.brain-visual {
  position: relative;
  width: 350px;
  height: 350px;
  margin: 0 auto;
}

.brain-ring {
  position: absolute;
  border-radius: 50%;
  border: 2px solid;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.brain-ring-1 {
  width: 200px;
  height: 200px;
  border-color: rgba(0, 229, 255, 0.3);
  animation: neuralSpin 10s linear infinite;
}

.brain-ring-2 {
  width: 270px;
  height: 270px;
  border-color: rgba(123, 47, 247, 0.2);
  animation: neuralSpin 15s linear infinite reverse;
}

.brain-ring-3 {
  width: 340px;
  height: 340px;
  border-color: rgba(0, 229, 255, 0.1);
  animation: neuralSpin 20s linear infinite;
}

@keyframes neuralSpin {
  0% {
    transform: translate(-50%, -50%) rotate(0deg);
  }
  100% {
    transform: translate(-50%, -50%) rotate(360deg);
  }
}

.brain-core {
  position: absolute;
  width: 120px;
  height: 120px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(0, 229, 255, 0.3), rgba(123, 47, 247, 0.1));
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  display: flex;
  align-items: center;
  justify-content: center;
  animation: coreGlow 3s ease-in-out infinite;
  z-index: 2;
}

@keyframes coreGlow {
  0%, 100% {
    box-shadow: 0 0 20px rgba(0, 229, 255, 0.3);
  }
  50% {
    box-shadow: 0 0 40px rgba(0, 229, 255, 0.6);
  }
}

.brain-core span {
  font-family: 'Orbitron', sans-serif;
  font-size: 0.8rem;
  font-weight: 700;
  color: #00e5ff;
  text-transform: uppercase;
  letter-spacing: 2px;
}

.powai-text h2 {
  font-family: 'Orbitron', sans-serif;
  font-size: 2rem;
  color: #ffffff;
  margin-bottom: 1rem;
  text-transform: uppercase;
}

.powai-text > p {
  color: #888888;
  margin-bottom: 2rem;
  line-height: 1.7;
}

.powai-steps {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.ps {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
  padding: 1.2rem;
  background: rgba(17, 17, 32, 0.5);
  border: 1px solid rgba(0, 229, 255, 0.1);
  border-radius: 12px;
  transition: all 0.3s ease;
}

.ps:hover {
  border-color: rgba(0, 229, 255, 0.3);
  transform: translateX(5px);
}

.ps-num {
  font-family: 'Orbitron', sans-serif;
  font-size: 1.5rem;
  font-weight: 700;
  color: rgba(0, 229, 255, 0.3);
  min-width: 40px;
}

.ps h4 {
  font-family: 'Orbitron', sans-serif;
  font-size: 0.9rem;
  color: #ffffff;
  margin-bottom: 0.3rem;
  text-transform: uppercase;
}

.ps p {
  font-size: 0.85rem;
  color: #888888;
}

/* TOKENOMICS */
.tok-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.tok-chart {
  display: flex;
  justify-content: center;
}

.donut {
  width: 300px;
  height: 300px;
  border-radius: 50%;
  background: conic-gradient(#ff6b6b 0% 15%, #00e5ff 15% 45%, #00ff88 45% 65%, #7b61ff 65% 90%, #ff006e 90% 100%);
  position: relative;
  animation: donutRotate 20s linear infinite;
}

@keyframes donutRotate {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}

.donut::before {
  content: '';
  position: absolute;
  width: 170px;
  height: 170px;
  background: #0a0a14;
  border-radius: 50%;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.donut-center {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
  z-index: 2;
}

.donut-total {
  font-family: 'Orbitron', sans-serif;
  font-size: 2rem;
  font-weight: 700;
  color: #ffffff;
  display: block;
}

.donut-label {
  font-size: 0.8rem;
  color: #888888;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.tok-details {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.tk {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1rem;
  background: rgba(17, 17, 32, 0.5);
  border: 1px solid rgba(0, 229, 255, 0.1);
  border-radius: 8px;
  transition: all 0.3s ease;
}

.tk:hover {
  border-color: rgba(0, 229, 255, 0.3);
}

.tk-color {
  width: 12px;
  height: 12px;
  border-radius: 3px;
}

.tk-info {
  flex: 1;
}

.tk h4 {
  font-size: 0.9rem;
  color: #ffffff;
  margin-bottom: 0.2rem;
}

.tk span {
  font-size: 0.75rem;
  color: #666666;
}

.tk-pct {
  font-family: 'Orbitron', sans-serif;
  font-size: 1rem;
  font-weight: 700;
  color: #00e5ff;
}

/* ROADMAP */
.timeline {
  position: relative;
  max-width: 800px;
  margin: 0 auto;
}

.timeline::before {
  content: '';
  position: absolute;
  left: 50%;
  top: 0;
  bottom: 0;
  width: 2px;
  background: linear-gradient(to bottom, #00e5ff, #7b2ff7, #00e5ff);
  transform: translateX(-50%);
}

.timeline-item {
  position: relative;
  padding: 2rem 0;
  display: flex;
}

.timeline-item:nth-child(odd) {
  justify-content: flex-start;
  padding-right: calc(50% + 2rem);
}

.timeline-item:nth-child(even) {
  justify-content: flex-end;
  padding-left: calc(50% + 2rem);
}

.timeline-dot {
  position: absolute;
  left: 50%;
  top: 2rem;
  width: 16px;
  height: 16px;
  border-radius: 50%;
  background: #00e5ff;
  transform: translateX(-50%);
  box-shadow: 0 0 15px rgba(0, 229, 255, 0.5);
  z-index: 2;
}

.timeline-card {
  padding: 1.5rem;
  background: rgba(17, 17, 32, 0.8);
  border: 1px solid rgba(0, 229, 255, 0.2);
  border-radius: 12px;
  transition: all 0.3s ease;
}

.timeline-card:hover {
  border-color: rgba(0, 229, 255, 0.4);
  transform: translateY(-3px);
}

.timeline-phase {
  font-family: 'Orbitron', sans-serif;
  font-size: 0.8rem;
  color: #00e5ff;
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 0.5rem;
}

.timeline-card h3 {
  font-family: 'Orbitron', sans-serif;
  font-size: 1.1rem;
  color: #ffffff;
  margin-bottom: 0.5rem;
  text-transform: uppercase;
}

.timeline-card p {
  font-size: 0.9rem;
  color: #888888;
  line-height: 1.6;
}

/* CTA */
.cta-section {
  padding: 6rem 0;
}

.cta-box {
  position: relative;
  text-align: center;
  padding: 4rem 2rem;
  background: rgba(17, 17, 32, 0.8);
  border-radius: 24px;
  border: 1px solid rgba(0, 229, 255, 0.2);
  overflow: hidden;
}

.cta-box::before {
  content: '';
  position: absolute;
  inset: -2px;
  background: linear-gradient(45deg, #00e5ff, #7b2ff7, #ff006e, #00e5ff);
  border-radius: 24px;
  z-index: -1;
  animation: borderRotate 4s linear infinite;
}

@keyframes borderRotate {
  0% {
    filter: hue-rotate(0deg);
  }
  100% {
    filter: hue-rotate(360deg);
  }
}

.cta-box h2 {
  font-family: 'Orbitron', sans-serif;
  font-size: 2rem;
  color: #ffffff;
  margin-bottom: 1rem;
  text-transform: uppercase;
}

.cta-box p {
  color: #888888;
  margin-bottom: 2rem;
  font-size: 1.1rem;
}

.cta-buttons {
  display: flex;
  gap: 1rem;
  justify-content: center;
}

/* FOOTER */
footer {
  padding: 4rem 0 2rem;
  border-top: 1px solid rgba(0, 229, 255, 0.1);
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 3rem;
  margin-bottom: 3rem;
}

.footer-brand .logo {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 1rem;
}

.footer-brand .logo img {
  width: 32px;
  height: 32px;
}

.footer-brand .logo span {
  font-family: 'Orbitron', sans-serif;
  font-size: 1rem;
  color: #ffffff;
  font-weight: 700;
}

.footer-brand p {
  color: #666666;
  font-size: 0.9rem;
  line-height: 1.6;
}

.social-links {
  display: flex;
  gap: 0.75rem;
  margin-top: 1rem;
}

.social-link {
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(0, 229, 255, 0.2);
  border-radius: 8px;
  color: #888888;
  transition: all 0.3s ease;
  text-decoration: none;
}

.social-link:hover {
  border-color: #00e5ff;
  color: #00e5ff;
  transform: translateY(-2px);
}

.social-link svg {
  width: 16px;
  height: 16px;
}

.footer-col h4 {
  font-family: 'Orbitron', sans-serif;
  font-size: 0.8rem;
  color: #ffffff;
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 1rem;
}

.footer-col ul {
  list-style: none;
}

.footer-col li {
  margin-bottom: 0.5rem;
}

.footer-col a {
  color: #666666;
  text-decoration: none;
  font-size: 0.9rem;
  transition: color 0.3s ease;
}

.footer-col a:hover {
  color: #00e5ff;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 2rem;
  border-top: 1px solid rgba(0, 229, 255, 0.1);
}

.footer-bottom p {
  color: #555555;
  font-size: 0.8rem;
}

.footer-bottom a {
  color: #00e5ff;
  text-decoration: none;
}

/* SCROLL REVEAL */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.8s ease;
}

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

/* RESPONSIVE */
@media (max-width: 968px) {
  .hero-content {
    grid-template-columns: 1fr;
  }

  h1 {
    font-size: 2.5rem;
  }

  .coin-display {
    width: 300px;
    height: 300px;
  }

  .hero-coin {
    width: 200px;
    height: 200px;
  }

  .ring-1 {
    width: 240px;
    height: 240px;
  }

  .ring-2 {
    width: 270px;
    height: 270px;
  }

  .ring-3 {
    width: 300px;
    height: 300px;
  }

  .nav-links {
    display: none;
  }

  .hamburger {
    display: flex;
  }

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

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

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

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

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

  .timeline::before {
    left: 20px;
  }

  .timeline-item {
    padding-left: 50px;
  }

  .timeline-item:nth-child(odd) {
    padding-right: 0;
  }

  .timeline-item:nth-child(even) {
    padding-left: 50px;
  }

  .timeline-dot {
    left: 20px;
  }
}
