/* ==========================================================================
   W3M - METAVERSE & NFT LAND OFFICIAL WEBSITE STYLES
   ========================================================================== */

:root {
  /* Color Palette */
  --bg-dark: #050713;
  --bg-dark-card: rgba(13, 17, 34, 0.75);
  --bg-card-hover: rgba(26, 33, 62, 0.85);
  --bg-light: #f8fafc;
  --bg-light-card: #ffffff;
  
  --primary: #7c3aed;
  --primary-light: #9333ea;
  --primary-glow: rgba(124, 58, 237, 0.4);
  --secondary: #06b6d4;
  --secondary-glow: rgba(6, 182, 212, 0.35);
  --accent: #3b82f6;
  --accent-pink: #ec4899;
  
  --text-main-dark: #f8fafc;
  --text-muted-dark: #94a3b8;
  --text-main-light: #0f172a;
  --text-muted-light: #64748b;
  
  --border-dark: rgba(255, 255, 255, 0.1);
  --border-dark-hover: rgba(124, 58, 237, 0.4);
  --border-light: #e2e8f0;

  /* Typography */
  --font-main: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  --font-heading: 'Space Grotesk', 'Plus Jakarta Sans', sans-serif;
  --font-accent: 'Caveat', cursive;

  /* Transitions */
  --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Reset & Base Styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

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

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

a {
  text-decoration: none;
  color: inherit;
  transition: var(--transition);
}

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

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

/* ==========================================================================
   NAVIGATION BAR
   ========================================================================== */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  background: rgba(240, 246, 255, 0.78);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(203, 213, 225, 0.5);
  transition: var(--transition);
}

.navbar.scrolled {
  background: rgba(255, 255, 255, 0.96);
  box-shadow: 0 4px 25px rgba(0, 0, 0, 0.06);
  border-bottom: 1px solid #e2e8f0;
}

.nav-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 76px;
}

.logo-link {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  transition: transform 0.2s ease;
}

.logo-link:hover {
  transform: scale(1.03);
}

.logo-nav-img {
  height: 32px;
  width: auto;
  display: block;
}

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

.nav-link {
  font-size: 0.938rem;
  font-weight: 600;
  color: #334155;
  position: relative;
  padding: 0.5rem 0;
}

.nav-link:hover,
.nav-link.active {
  color: #7c3aed;
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0%;
  height: 2px;
  background: linear-gradient(90deg, var(--primary), var(--secondary));
  transition: var(--transition);
  border-radius: 2px;
}

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

.nav-actions {
  display: flex;
  align-items: center;
  gap: 0.85rem;
}

.btn-circle-action {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.85);
  border: 1.5px solid rgba(203, 213, 225, 0.8);
  color: #334155;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  transition: var(--transition);
  cursor: pointer;
}

.btn-circle-action:hover {
  background: #ffffff;
  color: #7c3aed;
  border-color: #7c3aed;
  box-shadow: 0 4px 12px rgba(124, 58, 237, 0.15);
  transform: translateY(-1px);
}

/* Primary Glow Button */
.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  background: linear-gradient(135deg, #8b5cf6 0%, #6d28d9 100%);
  color: #ffffff;
  padding: 0.75rem 1.6rem;
  border-radius: 9999px;
  font-size: 0.95rem;
  font-weight: 600;
  box-shadow: 0 4px 20px var(--primary-glow);
  transition: var(--transition);
  border: 1px solid rgba(255, 255, 255, 0.15);
}

.btn-primary:hover {
  background: linear-gradient(135deg, #9d6fff 0%, #7c3aed 100%);
  box-shadow: 0 6px 28px rgba(124, 58, 237, 0.65);
  transform: translateY(-2px);
}

.btn-secondary {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(8px);
  color: #ffffff;
  padding: 0.75rem 1.6rem;
  border-radius: 9999px;
  font-size: 0.95rem;
  font-weight: 600;
  border: 1px solid rgba(255, 255, 255, 0.18);
  transition: var(--transition);
}

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

.btn-whitepaper {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  background: #ffffff;
  color: #0f172a;
  padding: 0.75rem 1.6rem;
  border-radius: 9999px;
  font-size: 0.95rem;
  font-weight: 700;
  border: 1.5px solid #cbd5e1;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
  transition: var(--transition);
}

.btn-whitepaper:hover {
  border-color: #7c3aed;
  color: #7c3aed;
  transform: translateY(-2px);
  box-shadow: 0 6px 18px rgba(124, 58, 237, 0.15);
}

.btn-outline-pill {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  background: #ffffff;
  color: #7c3aed;
  padding: 0.65rem 1.5rem;
  border-radius: 9999px;
  font-size: 0.9rem;
  font-weight: 700;
  border: 1.5px solid #8b5cf6;
  box-shadow: 0 2px 10px rgba(124, 58, 237, 0.08);
  transition: var(--transition);
}

.btn-outline-pill:hover {
  background: #7c3aed;
  color: #ffffff;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(124, 58, 237, 0.3);
}

.mobile-toggle {
  display: none;
  font-size: 1.5rem;
  color: #0f172a;
}

/* ==========================================================================
   HERO SECTION (SEAMLESS HIGH-KEY SKY METAVERSE)
   ========================================================================== */
.hero-section {
  position: relative;
  min-height: 88vh;
  padding-top: 135px;
  padding-bottom: 70px;
  background: url('../images/hero_banner_opt.jpg') right top / cover no-repeat;
  background-color: #ffffff;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.hero-container {
  width: 100%;
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 1.5rem;
  position: relative;
  z-index: 2;
}

.hero-content {
  max-width: 580px;
  position: relative;
  z-index: 2;
}

.badge-tag {
  display: inline-block;
  font-size: 0.88rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #7c3aed;
  margin-bottom: 0.85rem;
}

.hero-title {
  font-family: var(--font-heading);
  font-size: 4.1rem;
  font-weight: 900;
  line-height: 1.05;
  letter-spacing: -0.03em;
  color: #0f172a;
  margin-bottom: 0.8rem;
}

.hero-title .gradient-text {
  background: linear-gradient(135deg, #7c3aed 0%, #6366f1 50%, #8b5cf6 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  display: block;
}

.hero-subtitle {
  font-size: 1.15rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  color: #1e293b;
  text-transform: uppercase;
  margin-bottom: 1.25rem;
}

.hero-desc {
  font-size: 1.02rem;
  color: #475569;
  max-width: 520px;
  margin-bottom: 2rem;
  line-height: 1.7;
}

.hero-buttons {
  display: flex;
  align-items: center;
  gap: 1.25rem;
  margin-bottom: 2.5rem;
  flex-wrap: wrap;
}

.hero-stats {
  display: flex;
  align-items: center;
  gap: 2rem;
  margin-bottom: 2.5rem;
  max-width: 560px;
}

.stat-item .stat-value {
  font-family: var(--font-heading);
  font-size: 1.35rem;
  font-weight: 800;
  color: #6d28d9;
  margin-bottom: 0.2rem;
}

.stat-item .stat-label {
  font-size: 0.82rem;
  color: #64748b;
  font-weight: 600;
}

.stat-divider {
  width: 1px;
  height: 32px;
  background: #cbd5e1;
}

.scroll-indicator {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  color: #64748b;
  font-size: 0.78rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-weight: 700;
}

.scroll-mouse {
  width: 20px;
  height: 30px;
  border: 2px solid #94a3b8;
  border-radius: 10px;
  position: relative;
}

.scroll-wheel {
  position: absolute;
  top: 5px;
  left: 50%;
  transform: translateX(-50%);
  width: 3px;
  height: 6px;
  background: #7c3aed;
  border-radius: 2px;
  animation: scrollDown 2s infinite ease-in-out;
}

@keyframes scrollDown {
  0% { transform: translate(-50%, 0); opacity: 0; }
  40% { opacity: 1; }
  100% { transform: translate(-50%, 12px); opacity: 0; }
}

/* Right Floating Sky Badge */
.hero-right-badge {
  position: absolute;
  top: 10px;
  right: 2%;
  z-index: 5;
  text-align: left;
  pointer-events: none;
}

.hero-badge-stacked {
  font-family: var(--font-heading);
  font-size: 1.35rem;
  font-weight: 900;
  letter-spacing: 0.12em;
  color: #0f172a;
  line-height: 1.3;
}

.hero-badge-script {
  font-family: var(--font-accent);
  font-size: 2.2rem;
  color: #0284c7;
  font-weight: 700;
  margin-top: 0.5rem;
  line-height: 1.1;
  position: relative;
  display: inline-block;
}

.script-underline {
  display: block;
  width: 100%;
  height: 10px;
  margin-top: -2px;
}

/* ==========================================================================
   FLOATING DOCK BAR (SEAMLESS BRIDGE)
   ========================================================================== */
.dock-section {
  position: relative;
  background: #ffffff;
  padding: 0;
  margin-top: -45px;
  margin-bottom: -45px;
  z-index: 10;
}

.hero-dock-wrapper {
  position: relative;
  z-index: 10;
  width: 100%;
  max-width: 1280px;
  margin-left: auto;
  margin-right: auto;
  padding: 0 1.5rem;
}

.hero-dock-bar {
  background: #090e1a;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 24px;
  box-shadow: 0 20px 50px rgba(15, 23, 42, 0.35);
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  overflow: hidden;
  padding: 0.5rem 0;
}

.dock-item {
  padding: 1.8rem 1.75rem;
  border-right: 1px solid rgba(255, 255, 255, 0.08);
  transition: var(--transition);
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  text-align: left;
}

.dock-item:last-child {
  border-right: none;
}

.dock-item:hover {
  background: rgba(255, 255, 255, 0.04);
}

.dock-icon {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: rgba(124, 58, 237, 0.15);
  border: 1px solid rgba(124, 58, 237, 0.3);
  color: #38bdf8;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.25rem;
  margin-bottom: 1rem;
  transition: var(--transition);
}

.dock-item:hover .dock-icon {
  background: #7c3aed;
  color: #ffffff;
  box-shadow: 0 0 20px rgba(124, 58, 237, 0.5);
}

.dock-title {
  font-family: var(--font-heading);
  font-size: 1.15rem;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 0.4rem;
}

.dock-desc {
  font-size: 0.85rem;
  color: #94a3b8;
  line-height: 1.5;
}

/* ==========================================================================
   ABOUT W3M SECTION (PANORAMIC SKY & EXPLORER METAVERSE)
   ========================================================================== */
.about-section {
  position: relative;
  background: url('../images/about_banner_opt.jpg') right center / cover no-repeat;
  background-color: #ffffff;
  color: var(--text-main-light);
  padding: 120px 0 110px 0;
  overflow: hidden;
  display: flex;
  align-items: center;
  border-bottom: 1px solid rgba(226, 232, 240, 0.8);
}

.about-container {
  width: 100%;
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 1.5rem;
  position: relative;
  z-index: 2;
}

.about-content {
  max-width: 580px;
  position: relative;
  z-index: 2;
}

.about-title {
  font-family: var(--font-heading);
  font-size: 3.5rem;
  font-weight: 900;
  color: #0f172a;
  line-height: 1.08;
  margin-bottom: 1.25rem;
  letter-spacing: -0.03em;
}

.about-desc {
  font-size: 1.02rem;
  color: #475569;
  line-height: 1.7;
  margin-bottom: 2.2rem;
  max-width: 520px;
}

.about-btn-wrap {
  margin-bottom: 3.5rem;
}

.btn-discover-vision {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  background: #ffffff;
  color: #7c3aed;
  padding: 0.75rem 1.75rem;
  border-radius: 9999px;
  font-weight: 700;
  font-size: 0.95rem;
  border: 1.5px solid #8b5cf6;
  box-shadow: 0 2px 10px rgba(124, 58, 237, 0.08);
  transition: var(--transition);
}

.btn-discover-vision:hover {
  background: #7c3aed;
  color: #ffffff;
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(124, 58, 237, 0.3);
}

.about-features-row {
  display: flex;
  align-items: center;
  gap: 2rem;
}

.about-feature-item {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.about-icon {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: rgba(124, 58, 237, 0.1);
  border: 1.5px solid rgba(124, 58, 237, 0.3);
  color: #7c3aed;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.15rem;
  flex-shrink: 0;
  transition: var(--transition);
}

.about-feature-item:hover .about-icon {
  background: #7c3aed;
  color: #ffffff;
  box-shadow: 0 0 15px rgba(124, 58, 237, 0.4);
}

.about-feature-title {
  font-size: 0.95rem;
  font-weight: 800;
  color: #0f172a;
  line-height: 1.2;
}

.about-feature-subtitle {
  font-size: 0.8rem;
  color: #64748b;
  font-weight: 500;
  margin-top: 0.15rem;
}

.about-watermark {
  position: absolute;
  top: 20px;
  right: 2%;
  font-family: var(--font-heading);
  font-size: 1.5rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  color: rgba(59, 130, 246, 0.4);
  line-height: 1.2;
  text-align: right;
  pointer-events: none;
}

/* ==========================================================================
   ECOSYSTEM SECTION (DARK COSMIC WITH GLOWING GLOBE & 4 CARDS)
   ========================================================================== */
.ecosystem-section {
  position: relative;
  background: url('../images/ecosystem_bg.jpg') center top / cover no-repeat;
  background-color: #03050e;
  padding: 140px 0 110px 0;
  overflow: hidden;
}

.ecosystem-container {
  position: relative;
  z-index: 2;
}

.ecosystem-top-row {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  align-items: center;
  gap: 2rem;
  margin-bottom: 3.5rem;
}

.ecosystem-header-col {
  max-width: 560px;
}

.ecosystem-header-col .badge-tag {
  color: #c084fc;
  font-size: 0.88rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin-bottom: 0.85rem;
  display: inline-block;
}

.ecosystem-title {
  font-family: var(--font-heading);
  font-size: 3.3rem;
  font-weight: 900;
  color: #ffffff;
  line-height: 1.1;
  margin-bottom: 1.25rem;
  letter-spacing: -0.02em;
}

.ecosystem-desc {
  font-size: 1.05rem;
  color: #cbd5e1;
  line-height: 1.65;
  max-width: 490px;
}

.ecosystem-globe-col {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
}

.globe-display-wrapper {
  position: relative;
  width: 100%;
  max-width: 460px;
  height: 340px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.globe-center-brand {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
  z-index: 5;
  pointer-events: none;
}

.globe-brand-img {
  height: 48px;
  width: auto;
  display: block;
  margin: 0 auto;
  filter: drop-shadow(0 0 20px rgba(168, 85, 247, 0.95)) drop-shadow(0 0 8px rgba(6, 182, 212, 0.8));
}

.globe-node {
  position: absolute;
  display: flex;
  align-items: center;
  gap: 0.65rem;
  background: rgba(10, 14, 28, 0.85);
  backdrop-filter: blur(12px);
  border: 1.5px solid rgba(168, 85, 247, 0.45);
  padding: 0.5rem 1.1rem;
  border-radius: 9999px;
  font-size: 0.8rem;
  font-weight: 800;
  color: #ffffff;
  letter-spacing: 0.05em;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.5), 0 0 15px rgba(124, 58, 237, 0.25);
  transition: var(--transition);
  cursor: pointer;
  z-index: 6;
}

.globe-node:hover {
  background: rgba(124, 58, 237, 0.9);
  border-color: #c084fc;
  transform: scale(1.06);
  box-shadow: 0 0 25px rgba(168, 85, 247, 0.65);
}

.node-icon-wrap {
  width: 26px;
  height: 26px;
  border-radius: 50%;
  background: rgba(124, 58, 237, 0.25);
  border: 1px solid rgba(168, 85, 247, 0.4);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #38bdf8;
  font-size: 0.75rem;
  flex-shrink: 0;
}

.globe-node:hover .node-icon-wrap {
  background: #ffffff;
  color: #7c3aed;
}

/* Node positions matching media_1789024350841.png */
.node-top-left { top: 30px; left: 10px; }
.node-bot-left { bottom: 40px; left: 5px; }
.node-top-right { top: 20px; right: 5px; }
.node-mid-right { top: 48%; right: -15px; transform: translateY(-50%); }
.node-bot-right { bottom: 30px; right: 5px; }

/* 4 Feature Cards */
.eco-cards-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
}

.eco-card {
  background: rgba(9, 13, 26, 0.85);
  backdrop-filter: blur(12px);
  border: 1px solid rgba(59, 130, 246, 0.22);
  border-radius: 18px;
  overflow: hidden;
  transition: var(--transition);
  display: flex;
  flex-direction: column;
}

.eco-card:hover {
  transform: translateY(-6px);
  border-color: rgba(168, 85, 247, 0.5);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.6), 0 0 25px rgba(124, 58, 237, 0.2);
}

.eco-card-image {
  width: 100%;
  height: 170px;
  overflow: hidden;
  position: relative;
  background: #060914;
}

.eco-card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.eco-card:hover .eco-card-image img {
  transform: scale(1.06);
}

.eco-card-body {
  padding: 1.35rem 1.4rem;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.eco-card-title {
  font-family: var(--font-heading);
  font-size: 1.1rem;
  font-weight: 800;
  color: #ffffff;
  letter-spacing: 0.05em;
  margin-bottom: 0.5rem;
  text-transform: uppercase;
}

.eco-card-desc {
  font-size: 0.85rem;
  color: #94a3b8;
  line-height: 1.55;
  margin-bottom: 1.25rem;
  flex-grow: 1;
}

.eco-card-link {
  font-size: 0.88rem;
  font-weight: 700;
  color: #a855f7;
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  transition: var(--transition);
}

.eco-card-link:hover {
  color: #38bdf8;
  gap: 0.7rem;
}

/* ==========================================================================
   TOKENOMICS SECTION (LIGHT THEME WITH DONUT CHART & 3D COIN BACKGROUND)
   ========================================================================== */
.tokenomics-section {
  position: relative;
  background: linear-gradient(115deg, rgba(255, 255, 255, 0.97) 0%, rgba(255, 255, 255, 0.93) 50%, rgba(248, 250, 252, 0.72) 100%), url('../images/tokenomics_bg.jpg') center right / cover no-repeat;
  color: var(--text-main-light);
  padding: 110px 0 150px 0;
  overflow: hidden;
}

.tokenomics-section::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 160px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0) 0%, rgba(3, 5, 14, 0.45) 50%, #03050e 100%);
  pointer-events: none;
  z-index: 3;
}

.tokenomics-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 3.5rem;
  align-items: center;
}

.tokenomics-section .badge-tag {
  color: #7c3aed;
  font-size: 0.88rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 0.75rem;
  display: inline-block;
}

.tokenomics-title {
  font-family: var(--font-heading);
  font-size: 3.2rem;
  font-weight: 900;
  color: #0a091e;
  line-height: 1.05;
  margin-bottom: 1.15rem;
  letter-spacing: -0.02em;
}

.tokenomics-desc {
  font-size: 1rem;
  color: #475569;
  margin-bottom: 2.2rem;
  line-height: 1.65;
  max-width: 520px;
}

.token-stats-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
}

.token-stat-card {
  background: rgba(255, 255, 255, 0.85);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(226, 232, 240, 0.9);
  border-radius: 14px;
  padding: 1.15rem 1rem;
  transition: var(--transition);
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.02);
}

.token-stat-card:hover {
  border-color: #cbd5e1;
  background: #ffffff;
  box-shadow: 0 10px 25px rgba(124, 58, 237, 0.08);
  transform: translateY(-3px);
}

.token-stat-icon {
  width: 36px;
  height: 36px;
  border-radius: 10px;
  background: rgba(124, 58, 237, 0.1);
  color: #7c3aed;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  margin-bottom: 0.65rem;
}

.token-stat-label {
  font-size: 0.75rem;
  font-weight: 700;
  color: #64748b;
  text-transform: uppercase;
  margin-bottom: 0.2rem;
  letter-spacing: 0.04em;
}

.token-stat-value {
  font-family: var(--font-heading);
  font-size: 0.92rem;
  font-weight: 800;
  color: #0f172a;
  line-height: 1.35;
}

/* Chart Container & Legend */
.tokenomics-chart-card {
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(16px);
  border-radius: 24px;
  padding: 2.2rem;
  box-shadow: 0 20px 50px rgba(15, 23, 42, 0.06);
  border: 1px solid rgba(241, 245, 249, 0.9);
}

.chart-and-legend-wrapper {
  display: flex;
  align-items: center;
  gap: 2.25rem;
}

.chart-wrapper {
  position: relative;
  width: 250px;
  height: 250px;
  flex-shrink: 0;
}

.chart-center-text {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
  pointer-events: none;
}

.chart-center-text .center-number {
  font-family: var(--font-heading);
  font-size: 2rem;
  font-weight: 900;
  color: #0f172a;
  line-height: 1;
}

.chart-center-text .center-label {
  font-size: 0.9rem;
  font-weight: 800;
  color: #7c3aed;
  margin-top: 2px;
}

.token-legend-col {
  flex-grow: 1;
}

.token-legend-header {
  font-family: var(--font-heading);
  font-size: 1.1rem;
  font-weight: 800;
  color: #0f172a;
  margin-bottom: 0.85rem;
}

.token-legend-grid {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.legend-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.35rem 0.6rem;
  border-radius: 8px;
  transition: var(--transition);
  cursor: pointer;
}

.legend-item:hover {
  background: #f1f5f9;
}

.legend-name {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  font-size: 0.88rem;
  font-weight: 600;
  color: #334155;
}

.legend-dot {
  width: 11px;
  height: 11px;
  border-radius: 3px;
  flex-shrink: 0;
}

.legend-pct {
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 0.95rem;
  color: #0f172a;
  margin-left: 0.75rem;
}

/* ==========================================================================
   ROADMAP SECTION
   ========================================================================== */
.roadmap-section {
  position: relative;
  background: #f8fafc;
  padding: 100px 0 110px 0;
  border-top: 1px solid #e2e8f0;
}

.roadmap-top-row {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: 4.5rem;
}

.roadmap-title {
  font-family: var(--font-heading);
  font-size: 3rem;
  font-weight: 900;
  color: #0f172a;
  line-height: 1.1;
  margin-top: 0.5rem;
}

.roadmap-subtitle {
  font-size: 1.05rem;
  color: #64748b;
  margin-top: 0.5rem;
}

/* Timeline Layout */
.timeline-track-container {
  position: relative;
  width: 100%;
  padding: 2rem 0;
}

.timeline-line {
  position: absolute;
  top: 13px;
  left: 5%;
  right: 5%;
  height: 3px;
  background: #cbd5e1;
  z-index: 1;
}

.timeline-progress {
  position: absolute;
  top: 0;
  left: 0;
  width: 85%;
  height: 100%;
  background: linear-gradient(90deg, #7c3aed, #06b6d4);
  border-radius: 2px;
}

.timeline-nodes {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 1.25rem;
  width: 100%;
}

.timeline-node-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  cursor: pointer;
  transition: var(--transition);
}

.timeline-dot {
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: #ffffff;
  border: 4px solid #cbd5e1;
  margin-bottom: 1.5rem;
  transition: var(--transition);
  box-shadow: 0 0 0 4px #f8fafc;
}

.timeline-node-item.completed .timeline-dot {
  border-color: #7c3aed;
  background: #7c3aed;
  box-shadow: 0 0 15px rgba(124, 58, 237, 0.5);
}

.timeline-node-item.active .timeline-dot {
  border-color: #06b6d4;
  background: #ffffff;
  animation: pulseDot 2s infinite ease-in-out;
}

@keyframes pulseDot {
  0% { box-shadow: 0 0 0 4px #f8fafc, 0 0 0 6px rgba(6, 182, 212, 0.4); }
  50% { box-shadow: 0 0 0 4px #f8fafc, 0 0 0 12px rgba(6, 182, 212, 0.15); }
  100% { box-shadow: 0 0 0 4px #f8fafc, 0 0 0 6px rgba(6, 182, 212, 0.4); }
}

.timeline-card-box {
  background: #ffffff;
  border: 1px solid #e2e8f0;
  border-radius: 14px;
  padding: 1.1rem 0.85rem;
  text-align: center;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.04);
  width: 100%;
  transition: var(--transition);
}

.timeline-node-item:hover .timeline-card-box {
  transform: translateY(-4px);
  border-color: #cbd5e1;
  box-shadow: 0 10px 25px rgba(124, 58, 237, 0.1);
}

.node-quarter {
  font-family: var(--font-heading);
  font-size: 0.85rem;
  font-weight: 800;
  color: #7c3aed;
  background: rgba(124, 58, 237, 0.08);
  padding: 0.2rem 0.6rem;
  border-radius: 6px;
  display: inline-block;
  margin-bottom: 0.5rem;
}

.node-label {
  font-size: 0.88rem;
  color: #0f172a;
  font-weight: 700;
  line-height: 1.35;
}

/* ==========================================================================
   VOICE OF OUR COMMUNITY (AUDIO TESTIMONIALS)
   ========================================================================== */
.community-section {
  position: relative;
  background: #ffffff;
  padding: 100px 0 110px 0;
}

.community-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: 3.5rem;
}

.community-title {
  font-family: var(--font-heading);
  font-size: 2.8rem;
  font-weight: 900;
  color: #0f172a;
  line-height: 1.1;
  margin-top: 0.5rem;
}

.community-subtitle {
  font-size: 1rem;
  color: #64748b;
}

.community-cards-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
}

.audio-testimonial-card {
  background: #ffffff;
  border: 1px solid #e2e8f0;
  border-radius: 20px;
  padding: 1.75rem;
  box-shadow: 0 10px 30px rgba(15, 23, 42, 0.04);
  transition: var(--transition);
  display: flex;
  flex-direction: column;
}

.audio-testimonial-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 40px rgba(15, 23, 42, 0.08);
  border-color: #cbd5e1;
}

.audio-player-row {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1.5rem;
}

.play-btn {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: linear-gradient(135deg, #8b5cf6, #6d28d9);
  color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  flex-shrink: 0;
  box-shadow: 0 4px 15px rgba(124, 58, 237, 0.35);
  transition: var(--transition);
}

.play-btn:hover {
  transform: scale(1.1);
  box-shadow: 0 6px 20px rgba(124, 58, 237, 0.5);
}

.audio-waveform {
  display: flex;
  align-items: center;
  gap: 3px;
  height: 32px;
  flex-grow: 1;
}

.wave-bar {
  width: 3px;
  height: 12px;
  background: #c084fc;
  border-radius: 2px;
  transition: height 0.2s ease;
}

.audio-testimonial-card.playing .wave-bar {
  animation: waveMotion 1.2s infinite ease-in-out alternate;
}

.audio-testimonial-card.playing .wave-bar:nth-child(2) { animation-delay: 0.15s; }
.audio-testimonial-card.playing .wave-bar:nth-child(3) { animation-delay: 0.3s; }
.audio-testimonial-card.playing .wave-bar:nth-child(4) { animation-delay: 0.45s; }
.audio-testimonial-card.playing .wave-bar:nth-child(5) { animation-delay: 0.2s; }
.audio-testimonial-card.playing .wave-bar:nth-child(6) { animation-delay: 0.4s; }
.audio-testimonial-card.playing .wave-bar:nth-child(7) { animation-delay: 0.1s; }
.audio-testimonial-card.playing .wave-bar:nth-child(8) { animation-delay: 0.35s; }
.audio-testimonial-card.playing .wave-bar:nth-child(9) { animation-delay: 0.5s; }
.audio-testimonial-card.playing .wave-bar:nth-child(10) { animation-delay: 0.25s; }

@keyframes waveMotion {
  0% { height: 6px; }
  100% { height: 28px; background: #7c3aed; }
}

.testimonial-quote {
  font-size: 0.95rem;
  color: #334155;
  line-height: 1.6;
  margin-bottom: 1.5rem;
  flex-grow: 1;
}

.author-info-row {
  display: flex;
  align-items: center;
  gap: 0.85rem;
}

.author-avatar {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  overflow: hidden;
  background: #e2e8f0;
  flex-shrink: 0;
}

.author-avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.author-name {
  font-size: 0.92rem;
  font-weight: 700;
  color: #0f172a;
}

.author-role {
  font-size: 0.8rem;
  color: #64748b;
}

/* ==========================================================================
   PRE-FOOTER CTA BANNER
   ========================================================================== */
.cta-banner-section {
  position: relative;
  min-height: 520px;
  display: flex;
  align-items: center;
  background-image: linear-gradient(rgba(5, 7, 19, 0.72), rgba(5, 7, 19, 0.82)), url('../images/cta_explorer_opt.jpg');
  background-size: cover;
  background-position: center;
  padding: 100px 0;
  overflow: hidden;
}

.cta-banner-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  position: relative;
  z-index: 2;
}

.cta-banner-content {
  position: relative;
  z-index: 2;
  max-width: 650px;
}

.cta-banner-tag {
  font-size: 0.85rem;
  font-weight: 800;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: #c084fc;
  margin-bottom: 1rem;
}

.cta-banner-title {
  font-family: var(--font-heading);
  font-size: 3.8rem;
  font-weight: 900;
  color: #ffffff;
  line-height: 1.05;
  margin-bottom: 1.25rem;
}

.cta-banner-desc {
  font-size: 1.1rem;
  color: #cbd5e1;
  margin-bottom: 2.25rem;
  line-height: 1.65;
}

.cta-banner-buttons {
  display: flex;
  align-items: center;
  gap: 1.25rem;
  flex-wrap: wrap;
}

.cta-banner-accent {
  font-family: var(--font-accent);
  font-size: 3.5rem;
  color: #ffffff;
  opacity: 0.95;
  text-shadow: 0 0 30px rgba(124, 58, 237, 0.8);
  pointer-events: none;
  text-align: right;
  line-height: 1.1;
}

/* ==========================================================================
   FOOTER
   ========================================================================== */
.main-footer {
  background: #04060b;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding: 80px 0 40px 0;
  color: #94a3b8;
}

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

.footer-brand .logo-link {
  margin-bottom: 1.25rem;
}

.footer-brand-desc {
  font-size: 0.92rem;
  color: #64748b;
  line-height: 1.6;
  max-width: 320px;
}

.footer-col-title {
  font-family: var(--font-heading);
  font-size: 1rem;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 1.25rem;
  letter-spacing: 0.02em;
}

.footer-nav-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.footer-nav-list a {
  font-size: 0.9rem;
  color: #94a3b8;
}

.footer-nav-list a:hover {
  color: #ffffff;
  transform: translateX(4px);
}

.footer-bottom-bar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 2.5rem;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  font-size: 0.85rem;
  color: #64748b;
}

/* ==========================================================================
   MODALS (CONNECT WALLET, SWAP & ROADMAP)
   ========================================================================== */
.modal-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(4, 6, 15, 0.8);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  z-index: 2000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1.5rem;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
}

.modal-overlay.active {
  opacity: 1;
  pointer-events: auto;
}

.modal-card {
  background: #090e1a;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 24px;
  width: 100%;
  max-width: 480px;
  padding: 2.2rem;
  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.5);
  transform: scale(0.95);
  transition: transform 0.3s ease;
}

.modal-overlay.active .modal-card {
  transform: scale(1);
}

.modal-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 0.75rem;
}

.modal-title {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  font-weight: 800;
  color: #ffffff;
}

.modal-close-btn {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.06);
  color: #94a3b8;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  transition: var(--transition);
}

.modal-close-btn:hover {
  background: rgba(255, 255, 255, 0.15);
  color: #ffffff;
}

.wallet-options-list {
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
}

.wallet-btn {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1rem 1.25rem;
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.08);
  color: #ffffff;
  font-weight: 600;
  font-size: 1rem;
  transition: var(--transition);
  width: 100%;
}

.wallet-btn:hover {
  background: rgba(124, 58, 237, 0.12);
  border-color: #7c3aed;
  transform: translateY(-2px);
}

.wallet-info {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.wallet-logo {
  width: 36px;
  height: 36px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
}

.wallet-tag {
  font-size: 0.75rem;
  font-weight: 700;
  color: #7c3aed;
  background: rgba(124, 58, 237, 0.15);
  padding: 0.2rem 0.6rem;
  border-radius: 9999px;
}

/* ==========================================================================
   RESPONSIVE DESIGN (TABLETS & MOBILE)
   ========================================================================== */
@media (max-width: 1024px) {
  .ecosystem-top-row {
    grid-template-columns: 1fr;
    text-align: center;
  }
  .ecosystem-header-col {
    max-width: 100%;
  }
  .ecosystem-desc {
    margin: 0 auto;
  }
  .hero-dock-bar {
    grid-template-columns: repeat(2, 1fr);
  }
  .dock-item:nth-child(2) {
    border-right: none;
  }
  .dock-item:nth-child(1),
  .dock-item:nth-child(2) {
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  }
  .eco-cards-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .community-cards-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .tokenomics-grid {
    grid-template-columns: 1fr;
    gap: 3rem;
  }
  .footer-top-grid {
    grid-template-columns: 1fr 1fr;
    gap: 2.5rem;
  }
  .timeline-nodes {
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
  }
  .timeline-line {
    display: none;
  }
}

@media (max-width: 768px) {
  .mobile-toggle {
    display: block;
  }
  .nav-menu {
    position: fixed;
    top: 76px;
    left: 0;
    width: 100%;
    background: #ffffff;
    flex-direction: column;
    padding: 2rem 1.5rem;
    gap: 1.5rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transform: translateY(-150%);
    transition: var(--transition);
  }
  .nav-menu.open {
    transform: translateY(0);
  }
  .hero-title {
    font-size: 2.8rem;
  }
  .about-title,
  .ecosystem-title,
  .tokenomics-title,
  .roadmap-title,
  .community-title,
  .cta-banner-title {
    font-size: 2.2rem;
  }
  .hero-right-badge {
    position: static;
    margin-bottom: 2rem;
  }
  .hero-dock-bar {
    grid-template-columns: 1fr;
  }
  .dock-item {
    border-right: none;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  }
  .eco-cards-grid {
    grid-template-columns: 1fr;
  }
  .community-cards-grid {
    grid-template-columns: 1fr;
  }
  .token-stats-row {
    grid-template-columns: 1fr;
  }
  .timeline-nodes {
    grid-template-columns: 1fr 1fr;
  }
  .about-features-row {
    flex-direction: column;
    align-items: flex-start;
  }
  .footer-top-grid {
    grid-template-columns: 1fr;
  }
  .cta-banner-container {
    flex-direction: column;
    align-items: flex-start;
    gap: 2rem;
  }
  .cta-banner-accent {
    text-align: left;
  }
  .chart-and-legend-wrapper {
    flex-direction: column;
    align-items: center;
    gap: 1.5rem;
  }
}
/* ==========================================================================
   ECOSYSTEM SUBPAGE ENHANCEMENTS
   ========================================================================== */
.ecosystem-page-hero {
  position: relative;
  background: linear-gradient(180deg, rgba(6, 9, 22, 0.75) 0%, rgba(4, 6, 15, 0.92) 100%), url('../images/ecosystem_bg.jpg') center top / cover no-repeat;
  padding: 175px 0 110px 0;
  min-height: 520px;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.ecosystem-page-hero .badge-tag {
  color: #c084fc;
  font-size: 0.88rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin-bottom: 0.85rem;
  display: inline-block;
}

.ecosystem-page-hero-title {
  font-family: var(--font-heading);
  font-size: 3.6rem;
  font-weight: 900;
  color: #ffffff;
  line-height: 1.1;
  margin-bottom: 1.25rem;
  letter-spacing: -0.02em;
}

.ecosystem-page-hero-desc {
  font-size: 1.15rem;
  color: #cbd5e1;
  margin-bottom: 2.5rem;
  line-height: 1.65;
  max-width: 620px;
}

.pillars-deep-section {
  background: #04060f;
  padding: 100px 0 120px 0;
  position: relative;
}

.pillars-list {
  display: flex;
  flex-direction: column;
  gap: 6rem;
}

.pillar-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4.5rem;
  align-items: center;
}

.pillar-row.reverse .pillar-content {
  order: 2;
}

.pillar-row.reverse .pillar-media {
  order: 1;
}

.pillar-badge {
  display: inline-block;
  font-size: 0.82rem;
  font-weight: 800;
  color: #38bdf8;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  background: rgba(56, 189, 248, 0.1);
  border: 1px solid rgba(56, 189, 248, 0.25);
  padding: 0.35rem 0.85rem;
  border-radius: 9999px;
  margin-bottom: 1rem;
}

.pillar-title {
  font-family: var(--font-heading);
  font-size: 2.6rem;
  font-weight: 900;
  color: #ffffff;
  line-height: 1.15;
  margin-bottom: 1.25rem;
  letter-spacing: -0.01em;
}

.pillar-desc {
  font-size: 1.05rem;
  color: #94a3b8;
  line-height: 1.7;
  margin-bottom: 1.75rem;
}

.pillar-features-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin-bottom: 2.25rem;
}

.pillar-features-list li {
  display: flex;
  align-items: flex-start;
  gap: 0.85rem;
  color: #cbd5e1;
  font-size: 0.95rem;
  line-height: 1.6;
}

.pillar-features-list li i {
  color: #a855f7;
  font-size: 1rem;
  margin-top: 0.25rem;
  flex-shrink: 0;
}

.pillar-media {
  border-radius: 22px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.12);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.6);
  position: relative;
  background: #080b18;
  transition: var(--transition);
}

.pillar-media:hover {
  border-color: rgba(168, 85, 247, 0.45);
  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.7), 0 0 30px rgba(124, 58, 237, 0.2);
  transform: translateY(-4px);
}

.pillar-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.6s ease;
}

.pillar-media:hover img {
  transform: scale(1.04);
}

.staking-tiers-container {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
  margin-bottom: 2.25rem;
}

.staking-tier-card {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 16px;
  padding: 1.35rem 1rem;
  text-align: center;
  transition: var(--transition);
}

.staking-tier-card:hover {
  background: rgba(255, 255, 255, 0.07);
  transform: translateY(-3px);
  border-color: rgba(56, 189, 248, 0.4);
}

.staking-tier-card.featured {
  background: rgba(124, 58, 237, 0.18);
  border-color: #7c3aed;
  box-shadow: 0 10px 25px rgba(124, 58, 237, 0.25);
}

.staking-tier-card.featured:hover {
  box-shadow: 0 15px 35px rgba(124, 58, 237, 0.4);
}

.tier-period {
  font-size: 0.8rem;
  font-weight: 800;
  color: #38bdf8;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.staking-tier-card.featured .tier-period {
  color: #c084fc;
}

.tier-apy {
  font-family: var(--font-heading);
  font-size: 1.75rem;
  font-weight: 900;
  color: #ffffff;
  margin: 0.35rem 0;
}

.tier-badge {
  font-size: 0.75rem;
  font-weight: 600;
  color: #94a3b8;
}

.staking-tier-card.featured .tier-badge {
  color: #c084fc;
  font-weight: 700;
}

@media (max-width: 1024px) {
  .pillar-row {
    grid-template-columns: 1fr;
    gap: 3rem;
  }
  .pillar-row.reverse .pillar-content {
    order: 1;
  }
  .pillar-row.reverse .pillar-media {
    order: 2;
  }
}

@media (max-width: 768px) {
  .ecosystem-page-hero-title {
    font-size: 2.5rem;
  }
  .pillar-title {
    font-size: 2rem;
  }
  .staking-tiers-container {
    grid-template-columns: 1fr;
  }
}
/* ==========================================================================
   COMMUNITY SUBPAGE ENHANCEMENTS
   ========================================================================== */
.community-page-hero {
  position: relative;
  background: linear-gradient(180deg, rgba(6, 9, 22, 0.65) 0%, rgba(4, 6, 15, 0.94) 100%), url('../images/community_hero_banner_opt.jpg') center center / cover no-repeat;
  padding: 175px 0 110px 0;
  min-height: 560px;
  display: flex;
  align-items: center;
  text-align: center;
  overflow: hidden;
}

.community-channels-section {
  padding: 60px 0 80px 0;
  background: #04060f;
}

.community-channels-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
}

.channel-card-box {
  background: rgba(255, 255, 255, 0.03);
  backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 20px;
  padding: 2rem 1.75rem;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  transition: var(--transition);
}

.channel-card-box:hover {
  border-color: rgba(168, 85, 247, 0.6);
  background: rgba(255, 255, 255, 0.06);
  transform: translateY(-6px);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.5), 0 0 25px rgba(124, 58, 237, 0.2);
}

.channel-icon-wrap {
  width: 52px;
  height: 52px;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
}

.ambassador-section {
  padding: 100px 0;
  background: #060916;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.ambassador-tiers-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

.ambassador-card {
  background: rgba(255, 255, 255, 0.03);
  backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 22px;
  padding: 2.5rem 2rem;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  position: relative;
  transition: var(--transition);
}

.ambassador-card:hover {
  border-color: rgba(168, 85, 247, 0.6);
  transform: translateY(-6px);
  box-shadow: 0 20px 45px rgba(0, 0, 0, 0.6), 0 0 30px rgba(124, 58, 237, 0.25);
}

.ambassador-card.featured {
  background: rgba(124, 58, 237, 0.08);
  border-color: #7c3aed;
  box-shadow: 0 10px 30px rgba(124, 58, 237, 0.2);
}

.ambassador-card.featured:hover {
  box-shadow: 0 20px 45px rgba(124, 58, 237, 0.4);
}

.events-section {
  padding: 100px 0;
  background: #04060f;
}

.events-list-wrap {
  max-width: 920px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.event-box-item {
  background: rgba(255, 255, 255, 0.03);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 20px;
  padding: 1.5rem 1.75rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.75rem;
  transition: var(--transition);
}

.event-box-item:hover {
  border-color: rgba(56, 189, 248, 0.45);
  background: rgba(255, 255, 255, 0.06);
  transform: translateY(-3px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.4);
}

@media (max-width: 1024px) {
  .community-channels-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .ambassador-tiers-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
}

@media (max-width: 768px) {
  .community-channels-grid {
    grid-template-columns: 1fr;
  }
  .event-box-item {
    flex-direction: column;
    align-items: flex-start;
  }
}
/* ==========================================================================
   WHITEPAPER SUBPAGE ENHANCEMENTS
   ========================================================================== */
.whitepaper-page-hero {
  position: relative;
  background: linear-gradient(180deg, rgba(6, 9, 22, 0.72) 0%, rgba(4, 6, 15, 0.95) 100%), url('../images/ecosystem_bg.jpg') center top / cover no-repeat;
  padding: 175px 0 100px 0;
  min-height: 520px;
  display: flex;
  align-items: center;
  text-align: center;
  overflow: hidden;
}

.whitepaper-section-container {
  padding: 60px 0 100px 0;
  background: #04060f;
}

.whitepaper-layout {
  display: grid;
  grid-template-columns: 290px 1fr;
  gap: 3.5rem;
  align-items: start;
  position: relative;
}

.wp-sidebar {
  position: sticky;
  top: 105px;
  background: rgba(10, 14, 28, 0.85);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 20px;
  padding: 1.5rem;
  backdrop-filter: blur(16px);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.4);
}

.wp-sidebar-title {
  font-size: 0.82rem;
  font-weight: 800;
  color: #94a3b8;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 1rem;
  padding-bottom: 0.75rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.wp-nav {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
}

.wp-nav a {
  color: #cbd5e1;
  text-decoration: none;
  font-size: 0.88rem;
  font-weight: 600;
  padding: 0.55rem 0.75rem;
  border-radius: 10px;
  display: block;
  transition: var(--transition);
}

.wp-nav a:hover, .wp-nav a.active {
  background: rgba(124, 58, 237, 0.18);
  color: #c084fc;
  font-weight: 700;
  transform: translateX(4px);
}

.wp-content-card {
  background: rgba(10, 14, 28, 0.65);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 24px;
  padding: 3rem;
  margin-bottom: 3rem;
  backdrop-filter: blur(12px);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.35);
  transition: var(--transition);
}

.wp-content-card:hover {
  border-color: rgba(168, 85, 247, 0.35);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5), 0 0 25px rgba(124, 58, 237, 0.15);
}

.wp-section-header {
  display: flex;
  align-items: center;
  gap: 1.25rem;
  margin-bottom: 1.75rem;
  padding-bottom: 1.25rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.wp-sec-num {
  width: 48px;
  height: 48px;
  border-radius: 14px;
  background: rgba(124, 58, 237, 0.18);
  border: 1px solid rgba(168, 85, 247, 0.35);
  color: #c084fc;
  font-family: var(--font-heading);
  font-weight: 900;
  font-size: 1.3rem;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.wp-sec-title {
  font-size: 2rem;
  font-family: var(--font-heading);
  font-weight: 900;
  color: #ffffff;
  letter-spacing: -0.01em;
}

@media (max-width: 992px) {
  .whitepaper-layout {
    grid-template-columns: 1fr;
  }
  .wp-sidebar {
    position: static;
    margin-bottom: 2.5rem;
  }
}

@media (max-width: 640px) {
  .wp-content-card {
    padding: 1.75rem;
  }
  .wp-sec-title {
    font-size: 1.6rem;
  }
}

/* ==========================================================================
   TOKENOMICS SUBPAGE ENHANCEMENTS & DEDICATED STYLES
   ========================================================================== */
.tokenomics-page-hero {
  position: relative;
  background: linear-gradient(180deg, rgba(6, 9, 22, 0.7) 0%, rgba(4, 6, 15, 0.94) 100%), url('../images/tokenomics_bg.jpg') center center / cover no-repeat;
  padding: 175px 0 110px 0;
  min-height: 540px;
  display: flex;
  align-items: center;
  text-align: center;
  overflow: hidden;
}

.tokenomics-page-hero .badge-tag {
  color: #c084fc;
  font-size: 0.88rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin-bottom: 0.85rem;
  display: inline-block;
}

.tokenomics-hero-title {
  font-family: var(--font-heading);
  font-size: 3.6rem;
  font-weight: 900;
  color: #ffffff;
  line-height: 1.1;
  margin-bottom: 1.25rem;
  letter-spacing: -0.02em;
}

.tokenomics-hero-desc {
  font-size: 1.15rem;
  color: #cbd5e1;
  margin: 0 auto 2.5rem auto;
  line-height: 1.65;
  max-width: 680px;
}

.tokenomics-showcase-section {
  padding: 80px 0;
  background: #ffffff;
  color: #0f172a;
}

.token-metric-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-bottom: 2.5rem;
}

.metric-card {
  background: rgba(255, 255, 255, 0.03);
  backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 20px;
  padding: 1.75rem 1.5rem;
  transition: var(--transition);
}

.metric-card:hover {
  border-color: rgba(168, 85, 247, 0.5);
  background: rgba(255, 255, 255, 0.06);
  transform: translateY(-4px);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.4);
}

.contract-box {
  background: rgba(13, 17, 34, 0.85);
  backdrop-filter: blur(16px);
  border: 1px solid rgba(124, 58, 237, 0.3);
  border-radius: 24px;
  padding: 2.25rem;
  margin-bottom: 2rem;
  box-shadow: 0 20px 45px rgba(0, 0, 0, 0.4);
}

.contract-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  padding: 1.2rem 1.4rem;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.07);
  border-radius: 16px;
  margin-top: 1rem;
  transition: var(--transition);
}

.contract-row:hover {
  border-color: rgba(168, 85, 247, 0.4);
  background: rgba(255, 255, 255, 0.05);
}

.contract-info {
  display: flex;
  align-items: center;
  gap: 1.2rem;
}

.contract-addr {
  font-family: 'Courier New', Courier, monospace;
  font-size: 0.95rem;
  color: #38bdf8;
  font-weight: 700;
  word-break: break-all;
}

.copy-btn {
  background: rgba(124, 58, 237, 0.2);
  border: 1px solid rgba(124, 58, 237, 0.4);
  color: #c084fc;
  padding: 0.55rem 1.15rem;
  border-radius: 10px;
  font-size: 0.88rem;
  font-weight: 700;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  transition: var(--transition);
  text-decoration: none;
}

.copy-btn:hover {
  background: #7c3aed;
  color: #ffffff;
  transform: translateY(-2px);
  box-shadow: 0 0 15px rgba(124, 58, 237, 0.5);
}

.vesting-table-wrap {
  width: 100%;
  overflow-x: auto;
  border-radius: 20px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(10, 14, 28, 0.7);
  box-shadow: 0 20px 45px rgba(0, 0, 0, 0.4);
}

.vesting-table {
  width: 100%;
  border-collapse: collapse;
  text-align: left;
}

.vesting-table th {
  background: rgba(124, 58, 237, 0.15);
  color: #ffffff;
  font-family: var(--font-heading);
  font-size: 0.9rem;
  font-weight: 800;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  padding: 1.25rem 1.5rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.vesting-table td {
  padding: 1.15rem 1.5rem;
  color: #cbd5e1;
  font-size: 0.92rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.vesting-table tr:last-child td {
  border-bottom: none;
}

.vesting-table tr:hover td {
  background: rgba(255, 255, 255, 0.02);
}

.invest-section {
  padding: 90px 0;
  background: #04060f;
}

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

.invest-section-title {
  font-size: 2.8rem;
  font-family: var(--font-heading);
  color: #ffffff;
  font-weight: 900;
  margin-top: 0.5rem;
}

.invest-section-subtitle {
  color: #94a3b8;
  max-width: 680px;
  margin: 0.75rem auto 0 auto;
  font-size: 1.05rem;
}

.invest-reasons-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
  margin-bottom: 3.5rem;
}

.invest-reason-card {
  background: rgba(255, 255, 255, 0.03);
  backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 22px;
  padding: 2.5rem 2.25rem;
  transition: var(--transition);
}

.invest-reason-card:hover {
  border-color: rgba(168, 85, 247, 0.55);
  background: rgba(255, 255, 255, 0.05);
  transform: translateY(-5px);
  box-shadow: 0 20px 45px rgba(0, 0, 0, 0.5), 0 0 25px rgba(124, 58, 237, 0.15);
}

.invest-card-icon {
  width: 52px;
  height: 52px;
  border-radius: 14px;
  background: rgba(124, 58, 237, 0.15);
  border: 1px solid rgba(168, 85, 247, 0.35);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #c084fc;
  font-size: 1.4rem;
  margin-bottom: 1.5rem;
}

.invest-card-title {
  font-family: var(--font-heading);
  font-size: 1.35rem;
  font-weight: 800;
  color: #ffffff;
  margin-bottom: 0.85rem;
}

.invest-card-text {
  color: #94a3b8;
  font-size: 0.95rem;
  line-height: 1.7;
}

.invest-cta-banner {
  background: linear-gradient(135deg, rgba(124, 58, 237, 0.15) 0%, rgba(6, 182, 212, 0.1) 100%);
  border: 1px solid rgba(124, 58, 237, 0.3);
  border-radius: 20px;
  padding: 2rem 2.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  flex-wrap: wrap;
}

.invest-cta-text {
  color: #e2e8f0;
  font-size: 1.05rem;
  max-width: 620px;
  line-height: 1.6;
}

.utility-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
}

.utility-card {
  background: rgba(255, 255, 255, 0.03);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 20px;
  padding: 2rem 1.75rem;
  transition: var(--transition);
}

.utility-card:hover {
  border-color: rgba(56, 189, 248, 0.45);
  background: rgba(255, 255, 255, 0.05);
  transform: translateY(-5px);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.4);
}

.utility-icon {
  width: 50px;
  height: 50px;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.35rem;
  margin-bottom: 1.25rem;
}

@media (max-width: 1024px) {
  .token-metric-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .invest-reasons-grid {
    grid-template-columns: 1fr;
  }
  .utility-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .tokenomics-hero-title {
    font-size: 2.4rem;
  }
  .token-metric-grid {
    grid-template-columns: 1fr;
  }
  .contract-row {
    flex-direction: column;
    align-items: flex-start;
  }
  .utility-grid {
    grid-template-columns: 1fr;
  }
  .invest-cta-banner {
    flex-direction: column;
    align-items: flex-start;
  }
}

/* ==========================================================================
   ABOUT US SUBPAGE ENHANCEMENTS
   ========================================================================== */
.about-page-hero {
  position: relative;
  background: linear-gradient(180deg, rgba(6, 9, 22, 0.72) 0%, rgba(4, 6, 15, 0.95) 100%), url('../images/about_banner_opt.jpg') center center / cover no-repeat;
  padding: 175px 0 110px 0;
  min-height: 540px;
  display: flex;
  align-items: center;
  text-align: center;
  overflow: hidden;
}

.about-page-hero .badge-tag {
  color: #c084fc;
  font-size: 0.88rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin-bottom: 0.85rem;
  display: inline-block;
}

.about-page-hero-title {
  font-family: var(--font-heading);
  font-size: 3.6rem;
  font-weight: 900;
  color: #ffffff;
  line-height: 1.1;
  margin-bottom: 1.25rem;
  letter-spacing: -0.02em;
}

.about-page-hero-desc {
  font-size: 1.15rem;
  color: #cbd5e1;
  margin: 0 auto 2.5rem auto;
  line-height: 1.65;
  max-width: 680px;
}

.vision-mission-wrapper {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  margin-top: 3.5rem;
}

.vm-card {
  background: rgba(255, 255, 255, 0.03);
  backdrop-filter: blur(14px);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 24px;
  padding: 2.75rem 2.25rem;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}

.vm-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: linear-gradient(90deg, #7c3aed, #06b6d4);
  opacity: 0;
  transition: var(--transition);
}

.vm-card:hover {
  border-color: rgba(168, 85, 247, 0.6);
  background: rgba(255, 255, 255, 0.05);
  transform: translateY(-5px);
  box-shadow: 0 20px 45px rgba(0, 0, 0, 0.5), 0 0 30px rgba(124, 58, 237, 0.2);
}

.vm-card:hover::before {
  opacity: 1;
}

.vm-header {
  display: flex;
  align-items: center;
  gap: 1.25rem;
  margin-bottom: 1.5rem;
}

.vm-icon-bubble {
  width: 56px;
  height: 56px;
  border-radius: 16px;
  background: rgba(124, 58, 237, 0.18);
  border: 1px solid rgba(168, 85, 247, 0.35);
  color: #c084fc;
  font-size: 1.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: var(--transition);
}

.vm-card:hover .vm-icon-bubble {
  background: #7c3aed;
  color: #ffffff;
  box-shadow: 0 0 20px rgba(124, 58, 237, 0.6);
}

.vm-title {
  font-family: var(--font-heading);
  font-size: 1.75rem;
  font-weight: 900;
  color: #ffffff;
  letter-spacing: 0.05em;
}

.vm-text {
  color: #cbd5e1;
  font-size: 1.05rem;
  line-height: 1.75;
}

.feature-glass-card {
  background: rgba(255, 255, 255, 0.03);
  backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 20px;
  padding: 2.25rem 1.75rem;
  transition: var(--transition);
}

.feature-glass-card:hover {
  border-color: rgba(56, 189, 248, 0.5);
  background: rgba(255, 255, 255, 0.05);
  transform: translateY(-5px);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.4), 0 0 20px rgba(6, 182, 212, 0.15);
}

.card-icon-wrap {
  width: 52px;
  height: 52px;
  border-radius: 14px;
  background: rgba(56, 189, 248, 0.15);
  border: 1px solid rgba(56, 189, 248, 0.35);
  color: #38bdf8;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.35rem;
  margin-bottom: 1.35rem;
  transition: var(--transition);
}

.feature-glass-card:hover .card-icon-wrap {
  background: #06b6d4;
  color: #ffffff;
  box-shadow: 0 0 20px rgba(6, 182, 212, 0.5);
}

.card-title {
  font-family: var(--font-heading);
  font-size: 1.3rem;
  font-weight: 800;
  color: #ffffff;
  margin-bottom: 0.65rem;
}

.card-desc {
  color: #94a3b8;
  font-size: 0.95rem;
  line-height: 1.65;
}

.team-card-box {
  background: rgba(255, 255, 255, 0.03);
  backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 22px;
  padding: 2.25rem 1.75rem;
  text-align: center;
  transition: var(--transition);
}

.team-card-box:hover {
  border-color: rgba(168, 85, 247, 0.6);
  background: rgba(255, 255, 255, 0.06);
  transform: translateY(-6px);
  box-shadow: 0 20px 45px rgba(0, 0, 0, 0.5), 0 0 25px rgba(124, 58, 237, 0.2);
}

.team-avatar-wrap {
  width: 84px;
  height: 84px;
  border-radius: 50%;
  margin: 0 auto 1.35rem auto;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2.2rem;
  transition: var(--transition);
}

.team-card-box:hover .team-avatar-wrap {
  transform: scale(1.08);
}

@media (max-width: 1024px) {
  .vision-mission-wrapper {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  .about-page-hero-title {
    font-size: 2.5rem;
  }
}