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

/* CUSTOM DESIGN TOKENS */
:root {
  --bg-color: #02040a;
  --dark-color: #000000;
  --surface-color: #0a0c14;
  --surface-card: rgba(255, 255, 255, 0.01);
  --primary-color: #8b5cf6;
  --secondary-color: #34d399;
  --accent-color: #fca5a5;
  --text-color: #94a3b8;
  --text-white: #ffffff;
  --border-color: rgba(255, 255, 255, 0.04);
  --border-hover: rgba(255, 255, 255, 0.1);
  
  --font-sans: 'Inter', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  --font-display: 'Outfit', sans-serif;
  --font-mono: 'JetBrains Mono', ui-monospace, SFMono-Regular, monospace;
}

/* RESET & BASE STYLES */
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  background-color: var(--bg-color);
}

body {
  background-color: var(--bg-color);
  color: var(--text-color);
  font-family: var(--font-sans);
  font-size: 13px;
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body::selection {
  background-color: var(--primary-color);
  color: var(--text-white);
}

/* TYPOGRAPHY */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-display);
  color: var(--text-white);
  font-weight: 800;
  letter-spacing: -0.02em;
}

a {
  color: inherit;
  text-decoration: none;
  transition: all 0.3s ease;
}

ul {
  list-style: none;
}

/* GLOBAL GRID & CONTAINERS */
.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

.grid {
  display: grid;
  gap: 32px;
}

.grid-cols-2 {
  grid-template-columns: 1fr;
}

.grid-cols-3 {
  grid-template-columns: 1fr;
}

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

@media (min-width: 768px) {
  .grid-cols-2 {
    grid-template-columns: repeat(2, 1fr);
  }
  .grid-cols-3 {
    grid-template-columns: repeat(2, 1fr);
  }
  .grid-cols-4 {
    grid-template-columns: repeat(4, 1fr);
  }
}

@media (min-width: 1024px) {
  .grid-cols-3 {
    grid-template-columns: repeat(3, 1fr);
  }
}

/* LAYOUT UTILITIES */
.flex {
  display: flex;
}

.flex-col {
  flex-direction: column;
}

.items-center {
  align-items: center;
}

.justify-between {
  justify-content: space-between;
}

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

.relative {
  position: relative;
}

.absolute {
  position: absolute;
}

.inset-0 {
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
}

.overflow-hidden {
  overflow: hidden;
}

.w-full {
  width: 100%;
}

.h-full {
  height: 100%;
}

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

.min-h-screen {
  min-height: 100vh;
}

/* SECTION HEADERS */
.section-title {
  font-size: 32px;
  line-height: 1.1;
  font-weight: 900;
  margin-bottom: 24px;
  letter-spacing: -0.03em;
}

.section-subtitle {
  color: var(--secondary-color);
  font-family: var(--font-mono);
  font-weight: 700;
  font-size: 9px;
  letter-spacing: 0.5em;
  text-transform: uppercase;
  margin-bottom: 16px;
  display: block;
}

.section-desc {
  max-width: 600px;
  margin: 0 auto 64px auto;
  font-size: 15px;
  color: var(--text-color);
  line-height: 1.6;
  font-weight: 500;
}

.pt-32 {
  padding-top: 128px;
}

.pb-20 {
  padding-bottom: 80px;
}

.py-20 {
  padding: 80px 0;
}

.py-24 {
  padding: 96px 0;
}

.py-32 {
  padding: 128px 0;
}

.mb-16 {
  margin-bottom: 64px;
}

/* PREMIUM GLASSMORPHISM */
.glass {
  background-color: rgba(255, 255, 255, 0.01);
  backdrop-filter: blur(40px);
  -webkit-backdrop-filter: blur(40px);
  border: 1px solid var(--border-color);
  transition: border-color 0.3s ease, background-color 0.3s ease, transform 0.3s ease;
}

.glass:hover {
  border-color: var(--border-hover);
  background-color: rgba(255, 255, 255, 0.02);
}

.gradient-text {
  background: linear-gradient(to right, var(--primary-color), var(--secondary-color), var(--accent-color));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  color: transparent;
}

/* BUTTONS */
.btn-primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 32px;
  border-radius: 12px;
  background-color: var(--primary-color);
  border: none;
  font-family: var(--font-sans);
  font-weight: 700;
  font-size: 10px;
  color: var(--text-white);
  text-transform: uppercase;
  letter-spacing: 0.3em;
  cursor: pointer;
  box-shadow: 0 10px 25px -5px rgba(139, 92, 246, 0.25);
  transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
}

.btn-primary:hover {
  background-color: var(--text-white);
  color: var(--primary-color);
  transform: translateY(-2px);
  box-shadow: 0 15px 30px -5px rgba(255, 255, 255, 0.2);
}

.btn-primary:active {
  transform: scale(0.95);
}

.btn-outline {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 32px;
  border-radius: 12px;
  background-color: transparent;
  border: 1px solid rgba(255, 255, 255, 0.1);
  font-family: var(--font-sans);
  font-weight: 700;
  font-size: 10px;
  color: var(--text-white);
  text-transform: uppercase;
  letter-spacing: 0.3em;
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
}

.btn-outline:hover {
  background-color: rgba(255, 255, 255, 0.05);
  border-color: rgba(255, 255, 255, 0.25);
  transform: translateY(-2px);
}

.btn-outline:active {
  transform: scale(0.95);
}

/* NAVBAR */
nav {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 100;
  transition: all 0.5s cubic-bezier(0.22, 1, 0.36, 1);
  padding: 32px 0;
  background-color: transparent;
}

nav.scrolled {
  padding: 14px 0;
  background-color: rgba(0, 0, 0, 0.75);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

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

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

.logo-icon {
  width: 36px;
  height: 36px;
  background-color: var(--primary-color);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.5s ease;
}

.logo:hover .logo-icon {
  transform: rotate(12deg);
}

.logo-text {
  display: flex;
  flex-direction: column;
}

.logo-name {
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 800;
  color: var(--text-white);
  letter-spacing: -0.05em;
  line-height: 1;
}

.logo-sub {
  font-family: var(--font-mono);
  font-size: 8px;
  font-weight: 700;
  letter-spacing: 0.4em;
  color: rgba(139, 92, 246, 0.6);
  text-transform: uppercase;
  margin-top: 1px;
}

.nav-links {
  display: none;
  align-items: center;
  gap: 32px;
}

@media (min-width: 1024px) {
  .nav-links {
    display: flex;
  }
}

.nav-link {
  font-family: var(--font-mono);
  font-size: 10px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: var(--text-color);
  position: relative;
  padding: 4px 0;
}

.nav-link:hover, .nav-link.active {
  color: var(--text-white);
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 0;
  height: 1px;
  background-color: var(--secondary-color);
  transition: width 0.3s ease;
}

.nav-link:hover::after, .nav-link.active::after {
  width: 100%;
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 20px;
}

.nav-login {
  font-family: var(--font-mono);
  font-size: 10px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: var(--text-color);
}

.nav-login:hover {
  color: var(--text-white);
}

.nav-connect {
  padding: 10px 20px;
  font-size: 9px;
  box-shadow: none;
}

.menu-toggle {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 10px;
  border-radius: 10px;
  border: 1px solid var(--border-color);
  background-color: rgba(255, 255, 255, 0.01);
  color: var(--text-white);
  cursor: pointer;
  z-index: 110;
}

@media (min-width: 1024px) {
  .menu-toggle {
    display: none;
  }
}

.menu-toggle:hover {
  color: var(--secondary-color);
  border-color: rgba(0, 208, 241, 0.2);
}

/* MOBILE NAV OVERLAY */
.mobile-nav {
  position: fixed;
  inset: 0;
  width: 100vw;
  height: 100vh;
  background-color: rgba(0, 0, 0, 0.95);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  z-index: 95;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 32px;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.4s ease;
}

.mobile-nav.open {
  opacity: 1;
  pointer-events: auto;
}

.mobile-links {
  display: flex;
  flex-direction: column;
  gap: 24px;
  width: 100%;
  max-width: 300px;
}

.mobile-link {
  font-family: var(--font-display);
  font-size: 24px;
  font-weight: 750;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--text-white);
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 8px 0;
}

.mobile-link i {
  color: var(--secondary-color);
  opacity: 0;
  transform: translateX(-10px);
  transition: all 0.3s ease;
}

.mobile-link:hover {
  color: var(--secondary-color);
}

.mobile-link:hover i {
  opacity: 1;
  transform: translateX(0);
}

.mobile-actions {
  margin-top: 48px;
  width: 100%;
  max-width: 300px;
  padding-top: 32px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.mobile-env {
  font-family: var(--font-mono);
  font-size: 8px;
  font-weight: 700;
  letter-spacing: 0.3em;
  color: rgba(255, 255, 255, 0.3);
  text-align: center;
  text-transform: uppercase;
}

/* HERO SECTION */
.hero {
  padding-top: 160px;
  padding-bottom: 80px;
  min-height: 95vh;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
}

.hero-grid {
  grid-template-columns: 1fr;
  align-items: center;
  position: relative;
  z-index: 10;
}

@media (min-width: 1024px) {
  .hero-grid {
    grid-template-columns: 1.2fr 0.8fr;
    gap: 64px;
  }
}

.tag-mainnet {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 6px 16px;
  border-radius: 99px;
  font-family: var(--font-mono);
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.2em;
  color: var(--secondary-color);
  text-transform: uppercase;
  margin-bottom: 32px;
}

.tag-dot {
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background-color: var(--secondary-color);
  box-shadow: 0 0 10px var(--secondary-color);
  animation: pulse-soft 2s infinite;
}

.hero h1 {
  font-size: 38px;
  line-height: 1.05;
  margin-bottom: 24px;
}

@media (min-width: 768px) {
  .hero h1 {
    font-size: 54px;
  }
}

.hero h1 .sub-genesis {
  font-size: 0.8em;
  font-weight: 300;
  font-style: italic;
  color: #555c68;
}

.hero h1 .italic-sov {
  font-style: italic;
  font-weight: 500;
}

.hero-desc {
  font-size: 16px;
  color: #8c9ba5;
  margin-bottom: 40px;
  max-width: 500px;
  line-height: 1.7;
  font-weight: 500;
}

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

.hero-stats {
  display: flex;
  gap: 48px;
  padding-top: 40px;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.stat-item {
  display: flex;
  flex-direction: column;
}

.stat-label {
  font-family: var(--font-mono);
  font-size: 8px;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.3);
  letter-spacing: 0.3em;
  text-transform: uppercase;
  margin-bottom: 8px;
}

.stat-value {
  font-size: 22px;
  font-weight: 700;
  color: var(--text-white);
  letter-spacing: -0.03em;
}

/* STAGE GENESIS CARD */
.genesis-card-wrapper {
  display: flex;
  justify-content: center;
}

@media (min-width: 1024px) {
  .genesis-card-wrapper {
    justify-content: flex-end;
  }
}

.genesis-card {
  padding: 6px;
  border-radius: 40px;
  max-width: 380px;
  width: 100%;
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.5);
  position: relative;
}

.genesis-card-inner {
  background-color: rgba(0, 0, 0, 0.85);
  border-radius: 36px;
  padding: 40px;
  border: 1px solid rgba(255, 255, 255, 0.03);
  position: relative;
  z-index: 10;
}

.genesis-card-glow {
  position: absolute;
  inset: 0;
  background-color: rgba(139, 92, 246, 0.08);
  border-radius: 40px;
  filter: blur(24px);
  z-index: 0;
  opacity: 0;
  transition: opacity 1s ease;
}

.genesis-card:hover .genesis-card-glow {
  opacity: 1;
}

.genesis-card-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 40px;
}

.cycle-label {
  font-family: var(--font-mono);
  font-size: 8px;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.3);
  letter-spacing: 0.25em;
  text-transform: uppercase;
  margin-bottom: 4px;
  display: block;
}

.cycle-val {
  font-size: 16px;
  font-weight: 700;
  color: var(--text-white);
  letter-spacing: 0.05em;
}

.activity-ring-wrapper {
  position: relative;
  width: 56px;
  height: 56px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.activity-ring-bg {
  position: absolute;
  inset: 0;
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: 50%;
}

.activity-ring-active {
  position: absolute;
  inset: 0;
  border: 2px solid var(--secondary-color);
  border-top-color: transparent;
  border-radius: 50%;
  animation: spin-slow 4s linear infinite;
}

.activity-dot {
  width: 6px;
  height: 6px;
  background-color: var(--secondary-color);
  border-radius: 50%;
  box-shadow: 0 0 10px var(--secondary-color);
}

.timer-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  margin-bottom: 40px;
}

.timer-item {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.timer-val {
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 700;
  color: var(--text-white);
  margin-bottom: 2px;
}

.timer-unit {
  font-family: var(--font-mono);
  font-size: 8px;
  font-weight: 700;
  color: var(--secondary-color);
  letter-spacing: 0.2em;
}

.allocation-wrapper {
  margin-bottom: 40px;
}

.allocation-header {
  display: flex;
  justify-content: space-between;
  font-family: var(--font-mono);
  font-size: 8px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  margin-bottom: 12px;
}

.allocation-lbl {
  color: rgba(255, 255, 255, 0.3);
}

.allocation-eth {
  color: var(--text-white);
}

.allocation-track {
  height: 6px;
  background-color: rgba(255, 255, 255, 0.04);
  border-radius: 99px;
  overflow: hidden;
}

.allocation-bar {
  height: 100%;
  width: 45.2%;
  background: linear-gradient(to right, var(--primary-color), var(--secondary-color), var(--accent-color));
  border-radius: 99px;
}

.genesis-btn {
  width: 100%;
  padding: 16px;
  font-size: 9px;
  background-color: var(--text-white);
  color: var(--dark-color);
}

.genesis-btn:hover {
  background-color: var(--secondary-color);
  color: var(--text-white);
}

.genesis-card-footer {
  margin-top: 32px;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 24px;
  opacity: 0.3;
  transition: opacity 0.5s ease;
}

.genesis-card:hover .genesis-card-footer {
  opacity: 0.9;
}

.certik-label {
  font-family: var(--font-mono);
  font-size: 9px;
  font-weight: 700;
}

/* STRATEGIC PARTNERS MARQUEE */
.partners-marquee {
  background-color: var(--dark-color);
  border-top: 1px solid rgba(255, 255, 255, 0.04);
  border-bottom: 1px solid rgba(255, 255, 255, 0.04);
  padding: 64px 0;
  position: relative;
  overflow: hidden;
}

.marquee-title {
  font-family: var(--font-mono);
  font-size: 9px;
  font-weight: 900;
  letter-spacing: 0.5em;
  color: rgba(255, 255, 255, 0.2);
  text-transform: uppercase;
  text-align: center;
  margin-bottom: 40px;
  font-style: italic;
}

.marquee-container {
  display: flex;
  overflow: hidden;
  white-space: nowrap;
  width: 100%;
}

.marquee-content {
  display: inline-flex;
  gap: 80px;
  animation: marquee-scroll 40s linear infinite;
  padding: 8px 0;
}

.marquee-item {
  font-family: var(--font-display);
  font-size: 32px;
  font-weight: 900;
  color: rgba(255, 255, 255, 0.05);
  letter-spacing: -0.05em;
  cursor: default;
  transition: color 0.3s ease;
}

.marquee-item:hover {
  color: rgba(0, 208, 241, 0.15);
}

@media (min-width: 768px) {
  .marquee-item {
    font-size: 48px;
  }
}

@keyframes marquee-scroll {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* PROBLEM & SOLUTION SECTION */
.prob-sol {
  background-color: var(--dark-color);
  position: relative;
  overflow: hidden;
}

.prob-sol-grid {
  grid-template-columns: 1fr;
  gap: 64px;
}

@media (min-width: 1024px) {
  .prob-sol-grid {
    grid-template-columns: 1fr 1fr;
  }
}

.prob-card {
  padding: 40px;
  border-radius: 40px;
  background-color: rgba(239, 68, 68, 0.03);
  border: 1px solid rgba(239, 68, 68, 0.08);
  position: relative;
  overflow: hidden;
}

.prob-card-icon {
  position: absolute;
  top: 24px;
  right: 24px;
  color: rgba(239, 68, 68, 0.06);
  pointer-events: none;
}

.prob-card-tag {
  font-family: var(--font-mono);
  font-size: 9px;
  font-weight: 900;
  color: #ef4444;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  margin-bottom: 24px;
  display: block;
}

.prob-card h3 {
  font-size: 32px;
  line-height: 1.1;
  margin-bottom: 24px;
}

.list-items {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.list-item {
  display: flex;
  gap: 12px;
  font-size: 13px;
  font-weight: 500;
}

.prob-card .list-item {
  color: rgba(255, 255, 255, 0.5);
}

.prob-card .icon-cross {
  color: #ef4444;
  font-weight: bold;
}

.sol-card {
  padding: 40px;
  border-radius: 40px;
  background-color: rgba(139, 92, 246, 0.05);
  border: 1px solid rgba(139, 92, 246, 0.15);
  position: relative;
  overflow: hidden;
}

.sol-card-icon {
  position: absolute;
  top: 24px;
  right: 24px;
  color: rgba(139, 92, 246, 0.06);
  pointer-events: none;
}

.sol-card-tag {
  font-family: var(--font-mono);
  font-size: 9px;
  font-weight: 900;
  color: var(--primary-color);
  letter-spacing: 0.25em;
  text-transform: uppercase;
  margin-bottom: 24px;
  display: block;
}

.sol-card h3 {
  font-size: 32px;
  line-height: 1.1;
  margin-bottom: 24px;
}

.sol-card .list-item {
  color: rgba(255, 255, 255, 0.75);
}

.sol-card .icon-check {
  color: var(--secondary-color);
}

.sol-card-link {
  background: none;
  border: none;
  font-family: var(--font-mono);
  font-size: 9px;
  font-weight: 900;
  color: var(--secondary-color);
  letter-spacing: 0.20em;
  text-transform: uppercase;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 32px;
}

.sol-card-link i {
  transition: transform 0.3s ease;
}

.sol-card-link:hover i {
  transform: translateX(4px);
}

/* ABOUT PROTOCOL */
.about-grid {
  grid-template-columns: 1fr;
  align-items: center;
  gap: 64px;
}

@media (min-width: 1024px) {
  .about-grid {
    grid-template-columns: 5fr 7fr;
  }
}

.about-features {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-bottom: 40px;
}

.about-feat-card {
  display: flex;
  gap: 16px;
  padding: 20px;
  border-radius: 16px;
}

.feat-icon-box {
  width: 40px;
  height: 40px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary-color);
}

.about-feat-card:hover .feat-icon-box {
  color: var(--secondary-color);
}

.about-feat-card h4 {
  font-size: 13px;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 4px;
}

.about-feat-card p {
  font-size: 12px;
  color: var(--text-color);
  font-weight: 500;
}

.about-action {
  display: flex;
  gap: 24px;
}

.status-indicator {
  display: flex;
  align-items: center;
  gap: 12px;
}

.status-ping {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.status-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background-color: var(--secondary-color);
  animation: pulse-soft 2s infinite;
}

.status-text {
  font-family: var(--font-mono);
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.15em;
  color: var(--text-color);
  text-transform: uppercase;
}

.infra-image-card {
  border-radius: 48px;
  padding: 6px;
  overflow: hidden;
  box-shadow: 0 30px 60px -15px rgba(0,0,0,0.8);
}

.infra-image {
  width: 100%;
  height: auto;
  aspect-ratio: 16/9;
  object-fit: cover;
  border-radius: 40px;
  opacity: 0.4;
  filter: grayscale(1);
  transition: all 1s ease;
}

.infra-image-card:hover .infra-image {
  opacity: 0.9;
  filter: grayscale(0);
}

.infra-overlay {
  position: absolute;
  top: 40px;
  left: 40px;
  padding: 24px;
  border-radius: 16px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  display: none;
}

@media (min-width: 768px) {
  .infra-overlay {
    display: block;
  }
}

.node-sync-header {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 8px;
}

.sync-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background-color: #22c55e;
}

.sync-lbl {
  font-family: var(--font-mono);
  font-size: 9px;
  font-weight: 700;
  color: var(--text-white);
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

.sync-val {
  font-size: 20px;
  font-weight: 900;
  color: var(--text-white);
}

.sync-val span {
  font-size: 11px;
  font-weight: 500;
  color: var(--text-color);
}

/* ECOSYSTEM FEATURES */
.feat-card {
  padding: 40px;
  border-radius: 32px;
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.feat-card-corner {
  position: absolute;
  top: 0;
  right: 0;
  width: 128px;
  height: 128px;
  background-color: rgba(139, 92, 246, 0.02);
  border-bottom-left-radius: 96px;
  transition: background-color 0.3s ease;
}

.feat-card:hover .feat-card-corner {
  background-color: rgba(139, 92, 246, 0.06);
}

.feat-card-icon-box {
  width: 48px;
  height: 48px;
  border-radius: 16px;
  background-color: rgba(0, 0, 0, 0.5);
  border: 1px solid rgba(255, 255, 255, 0.03);
  color: var(--secondary-color);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 32px;
  transition: border-color 0.3s ease;
}

.feat-card:hover .feat-card-icon-box {
  border-color: rgba(0, 208, 241, 0.25);
}

.feat-card-icon-box i {
  opacity: 0.7;
  transition: opacity 0.3s ease;
}

.feat-card:hover .feat-card-icon-box i {
  opacity: 1;
}

.feat-card h3 {
  font-size: 18px;
  margin-bottom: 16px;
  text-transform: uppercase;
  transition: color 0.3s ease;
}

.feat-card:hover h3 {
  color: var(--secondary-color);
}

.feat-card p {
  color: var(--text-color);
  font-size: 13px;
  font-weight: 500;
  line-height: 1.6;
}

.feat-card-docs {
  margin-top: auto;
  padding-top: 32px;
  font-family: var(--font-mono);
  font-size: 8px;
  font-weight: 700;
  color: var(--primary-color);
  letter-spacing: 0.25em;
  text-transform: uppercase;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  opacity: 0;
  transform: translateY(8px);
  transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
}

.feat-card:hover .feat-card-docs {
  opacity: 1;
  transform: translateY(0);
}

/* TOKEN ECONOMY */
.token-grid {
  grid-template-columns: 1fr;
  align-items: center;
  gap: 64px;
}

@media (min-width: 1024px) {
  .token-grid {
    grid-template-columns: 1.1fr 0.9fr;
  }
}

.allocations-box {
  padding: 32px;
  border-radius: 32px;
}

.allocations-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 40px;
}

.allocations-title {
  font-family: var(--font-mono);
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  display: flex;
  align-items: center;
  gap: 8px;
}

.allocations-lbl {
  font-family: var(--font-mono);
  font-size: 9px;
  font-weight: 500;
  color: var(--text-color);
  text-transform: uppercase;
}

.allocations-list {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.alloc-item {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.alloc-meta {
  display: flex;
  justify-content: space-between;
  font-family: var(--font-mono);
  font-size: 10px;
  font-weight: 700;
  text-transform: uppercase;
}

.alloc-label {
  color: rgba(255, 255, 255, 0.6);
}

.alloc-val {
  color: var(--text-white);
}

.alloc-track {
  height: 4px;
  background-color: rgba(255, 255, 255, 0.04);
  border-radius: 99px;
  overflow: hidden;
}

.alloc-bar {
  height: 100%;
  border-radius: 99px;
  box-shadow: 0 0 10px rgba(255, 255, 255, 0.05);
}

.bg-sec { background-color: var(--secondary-color); }
.bg-pri { background-color: var(--primary-color); }
.bg-acc { background-color: var(--accent-color); }
.bg-gray-500 { background-color: #64748b; }
.bg-gray-800 { background-color: #1e293b; }

.stats-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
}

.stat-card {
  padding: 20px;
  border-radius: 12px;
}

.stat-icon {
  width: 40px;
  height: 40px;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
  transition: transform 0.3s ease;
}

.stat-card:hover .stat-icon {
  transform: scale(1.1);
}

.sec-box { background-color: rgba(0, 208, 241, 0.06); color: var(--secondary-color); }
.pri-box { background-color: rgba(139, 92, 246, 0.06); color: var(--primary-color); }
.acc-box { background-color: rgba(252, 165, 165, 0.06); color: var(--accent-color); }
.gry-box { background-color: rgba(255, 255, 255, 0.02); color: var(--text-color); }

.stat-card-label {
  font-family: var(--font-mono);
  font-size: 8px;
  font-weight: 700;
  color: var(--text-color);
  letter-spacing: 0.2em;
  text-transform: uppercase;
  margin-bottom: 4px;
}

.stat-card-value {
  font-size: 15px;
  font-weight: 700;
  color: var(--text-white);
}

.accepted-box {
  grid-column: span 2;
  padding: 24px;
  border-radius: 12px;
  border: 1px solid rgba(0, 208, 241, 0.05);
  margin-top: 8px;
}

.accepted-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 16px;
}

.accepted-title {
  font-family: var(--font-mono);
  font-size: 8px;
  font-weight: 700;
  color: var(--text-white);
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

.accepted-dot-box {
  display: flex;
  gap: 4px;
  align-items: center;
}

.accepted-dot-ping {
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background-color: var(--secondary-color);
  animation: pulse-soft 1.5s infinite;
}

.accepted-dot {
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background-color: var(--secondary-color);
}

.accepted-pairs {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.pair-badge {
  padding: 6px 12px;
  border-radius: 8px;
  font-family: var(--font-mono);
  font-size: 9px;
  font-weight: 700;
  color: var(--text-color);
  border: 1px solid rgba(255, 255, 255, 0.03);
}

.pair-badge:hover {
  border-color: rgba(0, 208, 241, 0.2);
}

/* ROADMAP TIMELINE */
.roadmap-header {
  display: flex;
  flex-direction: column;
  margin-bottom: 64px;
  gap: 32px;
}

@media (min-width: 768px) {
  .roadmap-header {
    flex-direction: row;
    align-items: flex-end;
    justify-content: space-between;
  }
}

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

.scroll-btn {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255, 255, 255, 0.4);
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
}

.scroll-btn:hover {
  color: var(--secondary-color);
  border-color: rgba(0, 208, 241, 0.25);
}

.scroll-btn:active {
  transform: scale(0.9);
}

.roadmap-scroll-wrapper {
  overflow-x: auto;
  padding-bottom: 40px;
  padding-top: 16px;
  display: flex;
  gap: 32px;
  scrollbar-width: none;
  scroll-behavior: smooth;
  margin: 0 -24px;
  padding-left: 24px;
  padding-right: 24px;
}

.roadmap-scroll-wrapper::-webkit-scrollbar {
  display: none;
}

.roadmap-card {
  min-width: 290px;
  flex-shrink: 0;
  position: relative;
}

@media (min-width: 768px) {
  .roadmap-card {
    min-width: 330px;
  }
}

.roadmap-line {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 1px;
  background: linear-gradient(to right, rgba(0, 208, 241, 0.15), transparent);
}

.roadmap-step-header {
  padding-top: 48px;
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 24px;
}

.step-icon-box {
  width: 40px;
  height: 40px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background-color: rgba(255, 255, 255, 0.01);
  color: rgba(255,255,255,0.25);
  transition: all 0.5s ease;
}

.roadmap-card.active .step-icon-box {
  background-color: rgba(0, 208, 241, 0.06);
  border-color: var(--secondary-color);
  box-shadow: 0 0 15px rgba(0, 208, 241, 0.15);
  color: var(--secondary-color);
}

.step-meta {
  display: flex;
  flex-direction: column;
}

.step-year {
  font-family: var(--font-mono);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.2em;
  color: rgba(255, 255, 255, 0.3);
  text-transform: uppercase;
}

.roadmap-card.active .step-year {
  color: var(--secondary-color);
}

.step-status {
  display: flex;
  align-items: center;
  gap: 6px;
  margin-top: 2px;
}

.step-status-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background-color: rgba(255, 255, 255, 0.15);
}

.roadmap-card.active .step-status-dot {
  background-color: var(--secondary-color);
  animation: pulse-soft 1.5s infinite;
}

.step-status-lbl {
  font-family: var(--font-mono);
  font-size: 8px;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.2);
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

.roadmap-card.active .step-status-lbl {
  color: rgba(255, 255, 255, 0.35);
}

.roadmap-card-body {
  padding: 32px;
  border-radius: 40px;
  transition: all 0.5s ease;
}

.roadmap-card:hover .roadmap-card-body {
  transform: translateY(-8px);
}

.roadmap-card-body h3 {
  font-size: 17px;
  margin-bottom: 16px;
  font-weight: 800;
}

.roadmap-card-body p {
  font-size: 12px;
  color: var(--text-color);
  font-weight: 500;
  line-height: 1.6;
}

.roadmap-card:hover .roadmap-card-body p {
  color: rgba(255, 255, 255, 0.8);
}

.roadmap-card-footer {
  margin-top: 32px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  opacity: 0.3;
  transition: opacity 0.3s ease;
}

.roadmap-card:hover .roadmap-card-footer {
  opacity: 0.9;
}

.roadmap-avatars {
  display: flex;
}

.roadmap-avatar {
  width: 20px;
  height: 20px;
  border-radius: 50%;
  border: 1px solid var(--bg-color);
  background-color: rgba(255,255,255,0.06);
}

.roadmap-avatar:nth-child(2) { margin-left: -8px; }
.roadmap-avatar:nth-child(3) { margin-left: -8px; }

.roadmap-pr {
  font-family: var(--font-mono);
  font-size: 8px;
  font-weight: 700;
  color: var(--text-color);
  text-transform: uppercase;
}

/* TEAM CONTRIBUTORS */
.team-grid {
  grid-template-columns: repeat(2, 1fr);
  gap: 32px;
}

@media (min-width: 768px) {
  .team-grid {
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
  }
}

.team-card {
  display: flex;
  flex-direction: column;
}

.team-img-wrapper {
  position: relative;
  aspect-ratio: 1/1;
  border-radius: 16px;
  overflow: hidden;
  margin-bottom: 24px;
}

.team-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: grayscale(1);
  transition: all 0.5s ease;
}

.team-card:hover .team-img {
  filter: grayscale(0);
  transform: scale(1.05);
}

.team-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(2, 4, 10, 0.7), transparent);
  opacity: 0;
  transition: opacity 0.3s ease;
}

.team-card:hover .team-overlay {
  opacity: 1;
}

.team-socials {
  position: absolute;
  bottom: 16px;
  left: 0;
  right: 0;
  display: flex;
  justify-content: center;
  gap: 12px;
  transform: translateY(16px);
  opacity: 0;
  transition: all 0.3s ease;
}

.team-card:hover .team-socials {
  transform: translateY(0);
  opacity: 1;
}

.team-socials i {
  color: var(--text-white);
  cursor: pointer;
  font-size: 14px;
  transition: color 0.3s ease;
}

.team-socials i:hover {
  color: var(--secondary-color);
}

.team-name {
  font-size: 13px;
  font-weight: 700;
  text-align: center;
  transition: color 0.3s ease;
}

.team-card:hover .team-name {
  color: var(--primary-color);
}

.team-role {
  font-family: var(--font-mono);
  font-size: 9px;
  font-weight: 700;
  color: var(--text-color);
  text-transform: uppercase;
  letter-spacing: 0.15em;
  text-align: center;
  margin-top: 4px;
}

.team-marquee-partners {
  margin-top: 128px;
  padding-top: 64px;
  border-top: 1px solid rgba(255, 255, 255, 0.04);
}

.partners-title-sec {
  font-family: var(--font-mono);
  font-size: 8px;
  font-weight: 700;
  letter-spacing: 0.4em;
  color: rgba(255, 255, 255, 0.3);
  text-transform: uppercase;
  text-align: center;
  margin-bottom: 48px;
  font-style: italic;
}

.partners-flex {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 40px;
  opacity: 0.15;
  transition: opacity 0.5s ease;
}

@media (min-width: 768px) {
  .partners-flex {
    gap: 80px;
  }
}

.partners-flex:hover {
  opacity: 0.45;
}

.partner-text-logo {
  font-family: var(--font-mono);
  font-size: 20px;
  font-weight: 900;
  color: var(--text-white);
  letter-spacing: -0.05em;
  cursor: default;
}

/* FAQ KNOWLEDGE BASE */
.faq-grid {
  grid-template-columns: 1fr;
  align-items: start;
  gap: 64px;
}

@media (min-width: 1024px) {
  .faq-grid {
    grid-template-columns: 1fr 1.1fr;
  }
}

.faq-card-box {
  padding: 32px;
  border-radius: 24px;
  margin-top: 40px;
}

.faq-card-box h3 {
  font-size: 14px;
  margin-bottom: 12px;
  font-weight: 700;
}

.faq-card-box p {
  font-size: 11px;
  color: var(--text-color);
  margin-bottom: 24px;
  font-weight: 500;
}

.faq-card-btns {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.faq-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.faq-item {
  border-radius: 12px;
  overflow: hidden;
}

.faq-trigger {
  width: 100%;
  padding: 16px 24px;
  background: none;
  border: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  text-align: left;
  cursor: pointer;
}

.faq-trigger span {
  font-size: 13px;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.9);
}

.faq-trigger-icon {
  color: var(--secondary-color);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.3s ease;
}

.faq-item.open .faq-trigger-icon {
  transform: rotate(45deg);
}

.faq-body {
  height: 0;
  opacity: 0;
  overflow: hidden;
  transition: height 0.3s ease, opacity 0.3s ease;
}

.faq-item.open .faq-body {
  height: auto;
  opacity: 1;
}

.faq-inner {
  padding: 16px 24px 20px 24px;
  border-top: 1px solid rgba(255, 255, 255, 0.04);
}

.faq-inner p {
  color: var(--text-color);
  font-size: 12px;
  line-height: 1.6;
  font-weight: 500;
}

/* CONTACT PAGE */
.contact-grid {
  grid-template-columns: 1fr;
  align-items: start;
  gap: 48px;
}

@media (min-width: 1024px) {
  .contact-grid {
    grid-template-columns: 1fr 1fr;
  }
}

.contact-info-panel {
  padding: 40px;
  border-radius: 40px;
}

.contact-info-list {
  display: flex;
  flex-direction: column;
  gap: 48px;
}

.contact-info-item {
  display: flex;
  align-items: start;
  gap: 24px;
}

.contact-icon-box {
  width: 48px;
  height: 48px;
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.c-pri { background-color: rgba(139, 92, 246, 0.08); color: var(--primary-color); }
.c-sec { background-color: rgba(0, 208, 241, 0.08); color: var(--secondary-color); }
.c-acc { background-color: rgba(252, 165, 165, 0.08); color: var(--accent-color); }

.contact-info-item h3 {
  font-size: 18px;
  margin-bottom: 8px;
}

.contact-info-item p {
  font-size: 13px;
  color: var(--text-color);
  margin-bottom: 8px;
}

.contact-info-item a, .contact-info-item span.c-val-txt {
  font-family: var(--font-mono);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.contact-info-item a {
  color: var(--secondary-color);
}

.contact-info-item a:hover {
  text-decoration: underline;
}

.contact-form-panel {
  padding: 40px;
  border-radius: 40px;
}

.form-grid-2 {
  display: grid;
  gap: 24px;
  grid-template-columns: 1fr;
  margin-bottom: 24px;
}

@media (min-width: 768px) {
  .form-grid-2 {
    grid-template-columns: 1fr 1fr;
  }
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.form-label {
  font-family: var(--font-mono);
  font-size: 9px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: rgba(255, 255, 255, 0.3);
  margin-left: 8px;
}

.form-input, .form-select, .form-textarea {
  background-color: rgba(0, 0, 0, 0.35);
  border: 1px solid rgba(255, 255, 255, 0.04);
  border-radius: 12px;
  padding: 16px 20px;
  font-family: var(--font-sans);
  color: var(--text-white);
  font-size: 13px;
  transition: border-color 0.3s ease;
  width: 100%;
}

.form-input::placeholder, .form-textarea::placeholder {
  color: rgba(255, 255, 255, 0.15);
}

.form-input:focus, .form-select:focus, .form-textarea:focus {
  outline: none;
}

.input-pri:focus { border-color: rgba(139, 92, 246, 0.4); }
.input-sec:focus { border-color: rgba(0, 208, 241, 0.4); }
.input-acc:focus { border-color: rgba(252, 165, 165, 0.4); }

.form-select {
  appearance: none;
  cursor: pointer;
}

.form-textarea {
  resize: none;
}

.form-group-full {
  margin-bottom: 24px;
}

.btn-transmit {
  width: 100%;
  padding: 20px;
  font-size: 11px;
}

/* LOGIN VAULT PAGE */
.login-section {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
  padding-top: 120px;
  padding-bottom: 80px;
}

.login-card {
  padding: 40px;
  border-radius: 40px;
  max-width: 440px;
  width: 100%;
  box-shadow: 0 30px 60px -15px rgba(0, 0, 0, 0.8);
}

.login-icon-wrapper {
  display: flex;
  justify-content: center;
  margin-bottom: 40px;
}

.login-icon-box {
  width: 64px;
  height: 64px;
  background-color: var(--dark-color);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}

.login-icon-box i {
  color: var(--primary-color);
  font-size: 32px;
  transition: transform 0.5s ease;
}

.login-icon-box:hover i {
  transform: scale(1.1);
}

.login-icon-glow {
  position: absolute;
  inset: -1px;
  background-color: rgba(139, 92, 246, 0.15);
  border-radius: 16px;
  filter: blur(8px);
  opacity: 0;
  transition: opacity 0.5s ease;
}

.login-icon-box:hover .login-icon-glow {
  opacity: 1;
}

.login-title-box {
  text-align: center;
  margin-bottom: 40px;
}

.login-title-box h2 {
  font-size: 24px;
  letter-spacing: -0.01em;
  margin-bottom: 8px;
}

.login-mono-sub {
  font-family: var(--font-mono);
  font-size: 8px;
  font-weight: 700;
  letter-spacing: 0.3em;
  color: rgba(255, 255, 255, 0.3);
  text-transform: uppercase;
  margin-bottom: 8px;
  display: block;
}

.security-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.security-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background-color: var(--secondary-color);
  animation: pulse-soft 1.5s infinite;
}

.security-lbl {
  font-family: var(--font-mono);
  font-size: 8px;
  font-weight: 700;
  color: var(--secondary-color);
  text-transform: uppercase;
  letter-spacing: 0.15em;
}

.form-input-icon-box {
  position: relative;
}

.input-icon-left {
  position: absolute;
  left: 16px;
  top: 50%;
  transform: translateY(-50%);
  color: rgba(255, 255, 255, 0.25);
  transition: color 0.3s ease;
}

.form-input-icon-box:focus-within .input-icon-left {
  color: var(--primary-color);
}

.form-input-icon-box.sec-box-input:focus-within .input-icon-left {
  color: var(--secondary-color);
}

.input-with-icon {
  padding-left: 48px;
  font-family: var(--font-mono);
  letter-spacing: 0.05em;
}

.input-with-icon::placeholder {
  color: rgba(255, 255, 255, 0.08);
}

.login-options {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0 4px;
}

.remember-label {
  display: flex;
  align-items: center;
  gap: 8px;
  cursor: pointer;
}

.checkbox-custom {
  width: 16px;
  height: 16px;
  border-radius: 6px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background-color: var(--dark-color);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
}

.remember-label:hover .checkbox-custom {
  border-color: var(--primary-color);
}

.checkbox-custom-dot {
  width: 6px;
  height: 6px;
  border-radius: 3px;
  background-color: var(--primary-color);
  opacity: 0;
  transition: opacity 0.3s ease;
}

.checkbox-input {
  display: none;
}

.checkbox-input:checked + .checkbox-custom .checkbox-custom-dot {
  opacity: 1;
}

.login-link {
  font-family: var(--font-mono);
  font-size: 9px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--primary-color);
}

.login-link:hover {
  color: var(--text-white);
}

.login-btn {
  width: 100%;
  padding: 20px;
  font-size: 11px;
}

.login-divider {
  position: relative;
  padding: 16px 0;
  text-align: center;
}

.login-divider-line {
  position: absolute;
  top: 50%;
  left: 0;
  width: 100%;
  height: 1px;
  background-color: rgba(255, 255, 255, 0.04);
}

.login-divider-text {
  position: relative;
  display: inline-block;
  background-color: #0c0f17;
  padding: 0 16px;
  font-family: var(--font-mono);
  font-size: 8px;
  font-weight: 700;
  letter-spacing: 0.25em;
  color: rgba(255, 255, 255, 0.2);
  text-transform: uppercase;
  z-index: 2;
}

.btn-biometric {
  width: 100%;
  background-color: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 12px;
  padding: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  color: var(--text-white);
  font-family: var(--font-sans);
  font-weight: 700;
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  cursor: pointer;
  transition: all 0.3s ease;
}

.btn-biometric:hover {
  background-color: rgba(255, 255, 255, 0.05);
}

.btn-biometric i {
  color: var(--secondary-color);
}

.login-footer {
  margin-top: 32px;
  text-align: center;
}

.login-footer p {
  font-family: var(--font-sans);
  font-size: 10px;
  font-weight: 700;
  color: var(--text-color);
  text-transform: uppercase;
  letter-spacing: 0.15em;
}

.login-footer p a {
  color: var(--primary-color);
}

.login-footer p a:hover {
  color: var(--text-white);
}

.login-bottom-bar {
  margin-top: 32px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0 24px;
  opacity: 0.3;
}

.login-bottom-bar span {
  font-family: var(--font-mono);
  font-size: 8px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

/* NODES PORTAL */
.nodes-grid {
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  margin-bottom: 80px;
}

@media (min-width: 1024px) {
  .nodes-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

.node-stat-card {
  padding: 24px;
  border-radius: 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.node-stat-icon-box {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
}

.node-stat-lbl {
  font-family: var(--font-mono);
  font-size: 9px;
  font-weight: 700;
  color: var(--text-color);
  letter-spacing: 0.15em;
  text-transform: uppercase;
  margin-bottom: 4px;
}

.node-stat-val {
  font-size: 20px;
  font-weight: 700;
  color: var(--text-white);
}

.map-card {
  padding: 40px;
  border-radius: 48px;
  height: 400px;
  margin-bottom: 128px;
  position: relative;
  overflow: hidden;
}

.map-bg {
  position: absolute;
  inset: 0;
  opacity: 0.08;
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
  filter: invert(1);
  pointer-events: none;
}

.map-ping {
  position: absolute;
  width: 8px;
  height: 8px;
  background-color: var(--secondary-color);
  border-radius: 50%;
}

.map-ping-pulse {
  position: absolute;
  inset: 0;
  background-color: var(--secondary-color);
  border-radius: 50%;
  animation: pulse-soft 2s infinite;
}

.map-overlay {
  position: absolute;
  bottom: 40px;
  left: 40px;
  padding: 24px;
  border-radius: 16px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  max-width: 280px;
  width: 100%;
}

.map-overlay-title {
  font-family: var(--font-display);
  font-size: 13px;
  font-weight: 700;
  color: var(--text-white);
  text-transform: uppercase;
  margin-bottom: 12px;
}

.map-overlay-items {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.map-overlay-item {
  display: flex;
  justify-content: space-between;
  font-family: var(--font-mono);
  font-size: 9px;
  font-weight: 700;
}

.map-overlay-lbl {
  color: rgba(255, 255, 255, 0.35);
}

.map-overlay-val {
  color: var(--secondary-color);
}

.run-delegate-grid {
  grid-template-columns: 1fr;
  gap: 32px;
}

@media (min-width: 768px) {
  .run-delegate-grid {
    grid-template-columns: 1fr 1fr;
  }
}

.run-card {
  padding: 40px;
  border-radius: 40px;
}

.run-card h3 {
  font-size: 22px;
  font-weight: 800;
  margin-bottom: 24px;
}

.run-card p {
  font-size: 13px;
  color: var(--text-color);
  margin-bottom: 32px;
  font-weight: 500;
}

.run-specs-list {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-bottom: 40px;
}

.run-spec-item {
  display: flex;
  align-items: center;
  gap: 12px;
  font-family: var(--font-mono);
  font-size: 11px;
  font-weight: 700;
  color: var(--text-color);
}

.run-spec-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background-color: var(--secondary-color);
}

.run-btn {
  width: 100%;
  padding: 16px;
  font-size: 10px;
}

.delegate-card {
  padding: 40px;
  border-radius: 40px;
}

.delegate-card h3 {
  font-size: 22px;
  font-weight: 800;
  margin-bottom: 24px;
}

.delegate-card p {
  font-size: 13px;
  color: var(--text-color);
  margin-bottom: 32px;
  font-weight: 500;
}

.delegate-stats-box {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-bottom: 40px;
}

.delegate-stat-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 16px;
  border-radius: 12px;
}

.delegate-stat-lbl {
  font-size: 12px;
  font-weight: 700;
  color: var(--text-white);
}

.delegate-stat-val {
  font-family: var(--font-mono);
  font-weight: 700;
  font-size: 12px;
}

.color-sec { color: var(--secondary-color); }
.color-acc { color: var(--accent-color); }
.color-gry { color: var(--text-color); }

.delegate-btn {
  width: 100%;
  padding: 16px;
  font-size: 10px;
}

/* DATA SOVEREIGNTY / TERMS PAGE */
.sovereign-manifesto {
  padding: 40px;
}

@media (min-width: 768px) {
  .sovereign-manifesto {
    padding: 64px;
  }
}

.sovereign-manifesto-box {
  display: flex;
  flex-direction: column;
  gap: 48px;
  color: var(--text-color);
  font-size: 14px;
  line-height: 1.7;
}

.sovereign-manifesto-box section h2, .sovereign-manifesto-box section h3 {
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 16px;
}

.manifesto-callout {
  padding: 24px;
  border-radius: 16px;
  background-color: rgba(139, 92, 246, 0.05);
  border: 1px solid rgba(139, 92, 246, 0.15);
}

.manifesto-callout p {
  color: var(--primary-color);
  font-weight: 700;
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  line-height: 1.5;
}

.manifesto-footer {
  padding-top: 48px;
  border-top: 1px solid rgba(255, 255, 255, 0.04);
  display: flex;
  flex-direction: column;
  gap: 24px;
  align-items: center;
}

@media (min-width: 768px) {
  .manifesto-footer {
    flex-direction: row;
    justify-content: space-between;
  }
}

.manifesto-sign {
  font-family: var(--font-mono);
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.15em;
  color: rgba(255, 255, 255, 0.25);
  text-transform: uppercase;
}

.manifesto-action {
  font-family: var(--font-mono);
  font-size: 9px;
  font-weight: 700;
  color: var(--primary-color);
  text-transform: uppercase;
  letter-spacing: 0.15em;
}

.manifesto-action:hover {
  color: var(--text-white);
}

.manifesto-centered-sub {
  font-family: var(--font-mono);
  font-size: 8px;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.2);
  text-transform: uppercase;
  letter-spacing: 0.35em;
  text-align: center;
  padding-top: 40px;
  border-top: 1px solid rgba(255, 255, 255, 0.04);
}

/* FOOTER */
footer {
  background-color: var(--dark-color);
  border-top: 1px solid rgba(255, 255, 255, 0.04);
  padding-top: 96px;
  padding-bottom: 48px;
  position: relative;
  overflow: hidden;
}

.footer-glow {
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 100%;
  height: 500px;
  background-color: rgba(139, 92, 246, 0.03);
  filter: blur(150px);
  pointer-events: none;
  z-index: 0;
}

.footer-grid {
  grid-template-columns: 1fr;
  gap: 48px;
  margin-bottom: 80px;
}

@media (min-width: 768px) {
  .footer-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .footer-grid {
    grid-template-columns: 1.2fr 0.8fr 0.8fr 1.2fr;
  }
}

.footer-brand {
  display: flex;
  flex-direction: column;
}

.footer-brand-logo {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 24px;
}

.footer-brand-logo-box {
  width: 32px;
  height: 32px;
  background: linear-gradient(to bottom right, var(--secondary-color), var(--primary-color));
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 10px 20px -5px rgba(139, 92, 246, 0.25);
}

.footer-brand-title {
  display: flex;
  flex-direction: column;
}

.footer-brand-name {
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 800;
  color: var(--text-white);
  letter-spacing: -0.05em;
  line-height: 1;
}

.footer-brand-sub {
  font-family: var(--font-mono);
  font-size: 8px;
  font-weight: 700;
  letter-spacing: 0.3em;
  color: var(--secondary-color);
  text-transform: uppercase;
  margin-top: 1px;
}

.footer-brand-desc {
  font-size: 12px;
  color: var(--text-color);
  margin-bottom: 32px;
  max-width: 260px;
  font-weight: 500;
  line-height: 1.6;
}

.footer-socials {
  display: flex;
  gap: 16px;
}

.footer-social-btn {
  width: 32px;
  height: 32px;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-color);
}

.footer-social-btn:hover {
  color: var(--secondary-color);
  border-color: rgba(0, 208, 241, 0.25);
}

.footer-col-title {
  font-family: var(--font-mono);
  font-size: 10px;
  font-weight: 700;
  color: var(--text-white);
  letter-spacing: 0.2em;
  text-transform: uppercase;
  margin-bottom: 24px;
}

.footer-col-links {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer-col-links a {
  font-size: 12px;
  color: var(--text-color);
  font-weight: 500;
}

.footer-col-links a:hover {
  color: var(--text-white);
}

.footer-newsletter-desc {
  font-size: 11px;
  color: var(--text-color);
  margin-bottom: 24px;
  font-weight: 500;
}

.footer-newsletter-form {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer-newsletter-input {
  background-color: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 8px;
  padding: 12px 16px;
  color: var(--text-white);
  font-family: var(--font-mono);
  font-size: 11px;
}

.footer-newsletter-input:focus {
  outline: none;
  border-color: rgba(0, 208, 241, 0.4);
}

.footer-newsletter-btn {
  padding: 12px 16px;
  font-size: 9px;
  box-shadow: none;
}

.footer-bottom {
  padding-top: 40px;
  border-top: 1px solid rgba(255, 255, 255, 0.04);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 24px;
}

@media (min-width: 768px) {
  .footer-bottom {
    flex-direction: row;
    justify-content: space-between;
  }
}

.footer-copy {
  font-family: var(--font-mono);
  font-size: 9px;
  color: var(--text-color);
}

.footer-bottom-links {
  display: flex;
  gap: 32px;
  font-family: var(--font-mono);
  font-size: 9px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--text-color);
}

.footer-bottom-links a:hover {
  color: var(--text-white);
}

.footer-ping-box {
  display: flex;
  align-items: center;
  gap: 8px;
}

.footer-ping-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background-color: #22c55e;
  animation: pulse-soft 2s infinite;
}

.footer-ping-lbl {
  font-family: var(--font-mono);
  font-size: 8px;
  font-weight: 700;
  color: rgba(34, 197, 94, 0.8);
  letter-spacing: -0.02em;
  text-transform: uppercase;
}

/* DYNAMIC ANIMATED BACKGROUND */
.bg-mesh-wrapper {
  position: fixed;
  inset: 0;
  width: 100vw;
  height: 100vh;
  z-index: -10;
  overflow: hidden;
  pointer-events: none;
  background-color: var(--bg-color);
}

.bg-grid {
  position: absolute;
  inset: 0;
  opacity: 0.05;
  background-image: radial-gradient(circle at center, rgba(139, 92, 246, 0.15) 1px, transparent 1px);
  background-size: 40px 40px;
  mask-image: radial-gradient(ellipse at center, black, transparent 80%);
  -webkit-mask-image: radial-gradient(ellipse at center, black, transparent 80%);
}

.bg-blob {
  position: absolute;
  border-radius: 50%;
  filter: blur(120px);
  opacity: 0.15;
  mix-blend-mode: screen;
}

.bg-blob-1 {
  width: 50vw;
  height: 50vw;
  background-color: var(--primary-color);
  top: -10%;
  left: -10%;
  animation: float-blob-1 20s ease-in-out infinite;
}

.bg-blob-2 {
  width: 60vw;
  height: 60vw;
  background-color: var(--secondary-color);
  top: 30%;
  left: 50%;
  animation: float-blob-2 25s ease-in-out infinite;
}

.bg-blob-3 {
  width: 40vw;
  height: 40vw;
  background-color: var(--accent-color);
  top: 60%;
  left: -5%;
  animation: float-blob-3 18s ease-in-out infinite;
}

.bg-blob-4 {
  width: 30vw;
  height: 30vw;
  background-color: var(--primary-color);
  top: 10%;
  left: 70%;
  animation: float-blob-4 22s ease-in-out infinite;
}

@keyframes float-blob-1 {
  0%, 100% { transform: translate(0, 0) scale(1); opacity: 0.1; }
  33% { transform: translate(60px, -80px) scale(1.2); opacity: 0.2; }
  66% { transform: translate(-30px, 40px) scale(0.9); opacity: 0.15; }
}

@keyframes float-blob-2 {
  0%, 100% { transform: translate(0, 0) scale(1); opacity: 0.1; }
  33% { transform: translate(-80px, 50px) scale(1.15); opacity: 0.22; }
  66% { transform: translate(40px, -60px) scale(0.85); opacity: 0.12; }
}

@keyframes float-blob-3 {
  0%, 100% { transform: translate(0, 0) scale(1); opacity: 0.1; }
  50% { transform: translate(50px, -50px) scale(1.25); opacity: 0.25; }
}

@keyframes float-blob-4 {
  0%, 100% { transform: translate(0, 0) scale(1); opacity: 0.1; }
  50% { transform: translate(-40px, 60px) scale(0.8); opacity: 0.18; }
}

.bg-particles {
  position: absolute;
  inset: 0;
}

.bg-particle {
  position: absolute;
  background-color: rgba(255, 255, 255, 0.12);
  border-radius: 50%;
  filter: blur(1px);
  animation: particle-floating 12s ease-in-out infinite;
}

@keyframes particle-floating {
  0%, 100% { transform: translate(0, 0); opacity: 0.05; }
  50% { transform: translate(24px, -30px); opacity: 0.25; }
}

.bg-plus {
  position: absolute;
  color: rgba(255, 255, 255, 0.05);
  animation: plus-spinning 12s linear infinite;
  display: flex;
  align-items: center;
  justify-content: center;
}

.bg-plus-shape {
  position: relative;
  width: 16px;
  height: 16px;
}

.bg-plus-h {
  position: absolute;
  top: 50%;
  left: 0;
  width: 100%;
  height: 1px;
  background-color: currentColor;
}

.bg-plus-v {
  position: absolute;
  top: 0;
  left: 50%;
  width: 1px;
  height: 100%;
  background-color: currentColor;
}

@keyframes plus-spinning {
  0% { transform: rotate(0deg); opacity: 0.03; }
  50% { opacity: 0.12; }
  100% { transform: rotate(90deg); opacity: 0.03; }
}

.bg-noise {
  position: absolute;
  inset: 0;
  opacity: 0.03;
  pointer-events: none;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noiseFilter'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.65' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noiseFilter)'/%3E%3C/svg%3E");
}

/* FLOATING DECORATIONS IN HERO */
.floating-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(120px);
  mix-blend-mode: screen;
  pointer-events: none;
  animation: floating-orb-key 8s ease-in-out infinite;
}

.floating-orb-1 {
  width: 450px;
  height: 450px;
  background-color: var(--primary-color);
  top: -10%;
  right: -10%;
  animation-duration: 8s;
}

.floating-orb-2 {
  width: 350px;
  height: 350px;
  background-color: var(--accent-color);
  bottom: -5%;
  left: -5%;
  animation-duration: 10s;
  animation-delay: 2s;
}

@keyframes floating-orb-key {
  0%, 100% { transform: translate(0, 0) scale(1); opacity: 0.08; }
  50% { transform: translate(30px, -40px) scale(1.1); opacity: 0.18; }
}

.floating-shape {
  position: absolute;
  pointer-events: none;
  opacity: 0.15;
  width: 48px;
  height: 48px;
  animation: floating-shape-key 6s ease-in-out infinite;
}

.floating-shape-inner {
  width: 100%;
  height: 100%;
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 8px;
  box-shadow: 0 0 15px rgba(255, 255, 255, 0.02);
}

@keyframes floating-shape-key {
  0%, 100% { transform: translateY(0) rotate(0deg); }
  50% { transform: translateY(-15px) rotate(15deg); }
}

.floating-shape-1 { top: 20%; left: 40px; transform: rotate(12deg); animation-delay: 0s; }
.floating-shape-2 { bottom: 30%; left: 22%; transform: rotate(-12deg); animation-delay: 1s; width: 32px; height: 32px; }
.floating-shape-3 { top: 25%; right: 28%; transform: rotate(45deg); animation-delay: 2s; width: 40px; height: 40px; }
.floating-shape-4 { top: 50%; right: 40px; transform: rotate(12deg); animation-delay: 3s; width: 24px; height: 24px; opacity: 0.08; }
.floating-shape-5 { bottom: 10%; right: 30%; transform: rotate(90deg); animation-delay: 1.5s; width: 56px; height: 56px; opacity: 0.08; }

/* UTILITY FOR ACCORDION OPENING */
.faq-trigger-icon i {
  transition: transform 0.3s ease;
}

.faq-item.open .faq-trigger-icon i {
  transform: rotate(45deg);
}

/* GENERAL ANIMATION UTILITIES */
@keyframes pulse-soft {
  0%, 100% { opacity: 0.3; transform: scale(1); }
  50% { opacity: 0.8; transform: scale(1.15); }
}

@keyframes spin-slow {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}
