/* ===========================
   NEOVAULT - Sports City Token
   Blue Cyan Theme (matches logo)
   =========================== */

:root {
  --cyan-light: #00d4ff;
  --cyan: #00aaff;
  --cyan-bright: #00bfff;
  --blue: #0080ff;
  --blue-mid: #0066ff;
  --blue-deep: #1e40ff;
  --blue-dark: #0033cc;
  --black: #050a18;
  --black-soft: #0a1428;
  --black-card: #0f1a30;
  --black-elevated: #14223d;
  --white: #ffffff;
  --grey: #8a9bbf;
  --grey-light: #c5d2e6;
  --gradient-blue: linear-gradient(135deg, #00d4ff 0%, #00aaff 25%, #0080ff 50%, #1e40ff 75%, #0033cc 100%);
  --gradient-blue-soft: linear-gradient(135deg, #00d4ff 0%, #0080ff 50%, #1e40ff 100%);
  --gradient-blue-bright: linear-gradient(135deg, #00d4ff 0%, #1e40ff 100%);
  --gradient-dark: linear-gradient(135deg, #050a18 0%, #0a1428 50%, #050a18 100%);
  --shadow-blue: 0 0 30px rgba(0, 170, 255, 0.4);
  --shadow-blue-strong: 0 0 50px rgba(0, 170, 255, 0.6);
  /* Aliases for backwards-compat with inline styles (mapped to cyan) */
  --gold-primary: #00aaff;
  --gold-bright: #00d4ff;
  --gold-light: #7eb8ff;
  --gold-dark: #0066ff;
  --gradient-gold: linear-gradient(135deg, #00d4ff 0%, #00aaff 25%, #0080ff 50%, #1e40ff 75%, #0033cc 100%);
  --gradient-gold-soft: linear-gradient(135deg, #00d4ff 0%, #0080ff 50%, #1e40ff 100%);
  --font-display: 'Playfair Display', 'Georgia', serif;
  --font-body: 'Inter', 'Segoe UI', sans-serif;
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-body);
  background: var(--black);
  color: var(--white);
  line-height: 1.6;
  overflow-x: hidden;
}

/* ===========================
   TYPOGRAPHY
   =========================== */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-display);
  font-weight: 700;
  letter-spacing: 0.5px;
}

.gold-text, .blue-text {
  background: var(--gradient-blue);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  text-fill-color: transparent;
}

.gold-glow, .blue-glow {
  text-shadow: 0 0 20px rgba(0, 170, 255, 0.6);
}

/* ===========================
   BACKGROUND EFFECTS
   =========================== */
.gold-particles {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 1;
  opacity: 0.5;
}

.gold-particles::before,
.gold-particles::after {
  content: '';
  position: absolute;
  width: 600px;
  height: 600px;
  border-radius: 50%;
  filter: blur(120px);
}

.gold-particles::before {
  top: 10%;
  left: -10%;
  background: radial-gradient(circle, rgba(0, 170, 255, 0.35) 0%, transparent 70%);
  animation: float-1 15s ease-in-out infinite;
}

.gold-particles::after {
  bottom: 10%;
  right: -10%;
  background: radial-gradient(circle, rgba(30, 64, 255, 0.3) 0%, transparent 70%);
  animation: float-2 18s ease-in-out infinite;
}

@keyframes float-1 {
  0%, 100% { transform: translate(0, 0) scale(1); }
  50% { transform: translate(100px, 50px) scale(1.2); }
}

@keyframes float-2 {
  0%, 100% { transform: translate(0, 0) scale(1); }
  50% { transform: translate(-100px, -50px) scale(1.3); }
}

/* ===========================
   NAVIGATION
   =========================== */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  padding: 18px 0;
  background: rgba(5, 10, 24, 0.85);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(0, 170, 255, 0.15);
  transition: all 0.3s ease;
}

.navbar.scrolled {
  padding: 12px 0;
  background: rgba(5, 10, 24, 0.95);
  border-bottom: 1px solid rgba(0, 170, 255, 0.3);
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.5);
}

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

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

.logo-icon {
  width: 46px;
  height: 46px;
  display: flex;
  align-items: center;
  justify-content: center;
  filter: drop-shadow(0 0 15px rgba(0, 170, 255, 0.4));
  transition: transform 0.3s;
}

.logo-icon img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.logo:hover .logo-icon {
  transform: rotate(-5deg) scale(1.05);
}

.logo-text {
  font-family: 'Inter', sans-serif;
  font-size: 22px;
  font-weight: 900;
  font-style: italic;
  letter-spacing: 1.5px;
  background: linear-gradient(135deg, #0066ff 0%, #1e40ff 50%, #00d4ff 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

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

.nav-link {
  color: var(--grey-light);
  text-decoration: none;
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  position: relative;
  transition: color 0.3s ease;
}

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

.nav-link:hover,
.nav-link.active {
  color: var(--cyan-light);
}

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

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

.mobile-toggle {
  display: none;
  background: none;
  border: none;
  color: var(--cyan-light);
  font-size: 26px;
  cursor: pointer;
}

/* ===========================
   BUTTONS
   =========================== */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 32px;
  border-radius: 50px;
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  cursor: pointer;
  border: none;
  text-decoration: none;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
}

.btn-primary {
  background: var(--gradient-blue-bright);
  color: var(--white);
  box-shadow: 0 4px 20px rgba(0, 170, 255, 0.4);
}

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

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

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(0, 170, 255, 0.7);
}

.btn-outline {
  background: transparent;
  color: var(--cyan-light);
  border: 2px solid var(--cyan);
}

.btn-outline:hover {
  background: var(--gradient-blue-bright);
  color: var(--white);
  border-color: transparent;
  transform: translateY(-2px);
  box-shadow: var(--shadow-blue);
}

.btn-small {
  padding: 10px 22px;
  font-size: 12px;
}

/* ===========================
   HERO SECTION WITH SLIDER
   =========================== */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
}

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

.hero-slide {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  transition: opacity 1.5s ease-in-out;
  background-size: cover;
  background-position: center;
}

.hero-slide.active {
  opacity: 1;
}

.hero-slide::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(5, 10, 24, 0.92) 0%, rgba(10, 20, 40, 0.75) 50%, rgba(5, 10, 24, 0.85) 100%);
}

.hero-content {
  position: relative;
  z-index: 10;
  max-width: 1300px;
  margin: 0 auto;
  padding: 120px 24px 80px;
  width: 100%;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 18px;
  background: rgba(0, 170, 255, 0.1);
  border: 1px solid rgba(0, 170, 255, 0.3);
  border-radius: 50px;
  color: var(--cyan-light);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 24px;
  animation: fadeInUp 0.8s ease 0.2s both;
}

.hero-badge .pulse-dot {
  width: 8px;
  height: 8px;
  background: var(--cyan-light);
  border-radius: 50%;
  animation: pulse 2s infinite;
}

@keyframes pulse {
  0%, 100% { opacity: 1; box-shadow: 0 0 0 0 rgba(0, 212, 255, 0.7); }
  50% { opacity: 0.6; box-shadow: 0 0 0 10px rgba(0, 212, 255, 0); }
}

.hero-title {
  font-size: clamp(2.5rem, 6vw, 5.5rem);
  line-height: 1.05;
  margin-bottom: 24px;
  font-weight: 800;
  letter-spacing: -1px;
  animation: fadeInUp 0.8s ease 0.4s both;
}

.hero-title .accent {
  background: var(--gradient-blue);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  display: inline-block;
  position: relative;
}

.hero-subtitle {
  font-size: 1.25rem;
  color: var(--grey-light);
  margin-bottom: 40px;
  max-width: 640px;
  line-height: 1.7;
  animation: fadeInUp 0.8s ease 0.6s both;
}

.hero-actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  animation: fadeInUp 0.8s ease 0.8s both;
}

.hero-stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
  margin-top: 70px;
  padding-top: 40px;
  border-top: 1px solid rgba(0, 170, 255, 0.2);
  animation: fadeInUp 0.8s ease 1s both;
}

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

.hero-stat-value {
  font-family: var(--font-display);
  font-size: 2.5rem;
  font-weight: 700;
  background: var(--gradient-blue);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  display: block;
  line-height: 1;
}

.hero-stat-label {
  font-size: 13px;
  color: var(--grey);
  text-transform: uppercase;
  letter-spacing: 1.5px;
  margin-top: 8px;
}

.slider-controls {
  position: absolute;
  bottom: 40px;
  right: 40px;
  display: flex;
  gap: 10px;
  z-index: 20;
}

.slider-dot {
  width: 40px;
  height: 4px;
  background: rgba(255, 255, 255, 0.2);
  border: none;
  cursor: pointer;
  transition: all 0.3s;
  border-radius: 2px;
}

.slider-dot.active {
  background: var(--gradient-blue);
  width: 60px;
}

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

/* ===========================
   SECTION COMMON
   =========================== */
section {
  position: relative;
  padding: 100px 0;
  z-index: 5;
}

.container {
  max-width: 1300px;
  margin: 0 auto;
  padding: 0 24px;
}

.section-header {
  text-align: center;
  max-width: 800px;
  margin: 0 auto 70px;
}

.section-tag {
  display: inline-block;
  padding: 6px 16px;
  background: rgba(0, 170, 255, 0.1);
  border: 1px solid rgba(0, 170, 255, 0.3);
  border-radius: 50px;
  color: var(--cyan-light);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  margin-bottom: 20px;
}

.section-title {
  font-size: clamp(2rem, 4vw, 3.2rem);
  margin-bottom: 18px;
  line-height: 1.2;
  font-weight: 700;
}

.section-subtitle {
  font-size: 1.05rem;
  color: var(--grey-light);
  line-height: 1.7;
}

/* ===========================
   ABOUT / VISION
   =========================== */
.about {
  background: var(--black-soft);
  position: relative;
}

.about::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--cyan), transparent);
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.about-image {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.5), 0 0 40px rgba(0, 170, 255, 0.15);
  border: 1px solid rgba(0, 170, 255, 0.25);
}

.about-image::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(45deg, rgba(0, 170, 255, 0.2), transparent);
  z-index: 2;
  pointer-events: none;
}

.about-image img {
  width: 100%;
  height: 540px;
  object-fit: cover;
  display: block;
  transition: transform 0.6s ease;
}

.about-image:hover img {
  transform: scale(1.05);
}

.about-image-badge {
  position: absolute;
  bottom: 24px;
  left: 24px;
  background: var(--gradient-blue-bright);
  color: var(--white);
  padding: 14px 22px;
  border-radius: 12px;
  font-weight: 700;
  z-index: 3;
  display: flex;
  flex-direction: column;
  gap: 4px;
  box-shadow: 0 8px 24px rgba(0, 170, 255, 0.4);
}

.about-image-badge strong {
  font-size: 22px;
  font-family: var(--font-display);
}

.about-image-badge span {
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.about-content h2 {
  font-size: 2.6rem;
  margin-bottom: 24px;
  line-height: 1.2;
}

.about-content p {
  color: var(--grey-light);
  margin-bottom: 18px;
  line-height: 1.8;
  font-size: 1.02rem;
}

.about-features {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin: 32px 0;
}

.about-feature {
  display: flex;
  gap: 14px;
  align-items: flex-start;
}

.about-feature-icon {
  flex-shrink: 0;
  width: 44px;
  height: 44px;
  background: rgba(0, 170, 255, 0.1);
  border: 1px solid rgba(0, 170, 255, 0.3);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--cyan-light);
  font-size: 20px;
}

.about-feature h4 {
  font-size: 1rem;
  margin-bottom: 4px;
  color: var(--white);
}

.about-feature p {
  font-size: 0.85rem;
  margin: 0;
  color: var(--grey);
}

/* ===========================
   FEATURES / WHY CHOOSE US
   =========================== */
.features {
  background: var(--black);
  position: relative;
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.feature-card {
  background: linear-gradient(145deg, var(--black-card), var(--black-elevated));
  border: 1px solid rgba(0, 170, 255, 0.15);
  border-radius: 20px;
  padding: 40px 32px;
  position: relative;
  overflow: hidden;
  transition: all 0.4s ease;
}

.feature-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 3px;
  background: var(--gradient-blue);
  transform: translateX(-100%);
  transition: transform 0.4s ease;
}

.feature-card:hover {
  transform: translateY(-8px);
  border-color: rgba(0, 170, 255, 0.4);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5), 0 0 30px rgba(0, 170, 255, 0.15);
}

.feature-card:hover::before {
  transform: translateX(0);
}

.feature-icon {
  width: 64px;
  height: 64px;
  background: var(--gradient-blue-bright);
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
  margin-bottom: 24px;
  color: var(--white);
  box-shadow: 0 8px 20px rgba(0, 170, 255, 0.3);
}

.feature-card h3 {
  font-size: 1.4rem;
  margin-bottom: 14px;
  color: var(--white);
}

.feature-card p {
  color: var(--grey-light);
  font-size: 0.95rem;
  line-height: 1.7;
}

/* ===========================
   SPORTS CITY VIDEO SECTION
   =========================== */
.video-section {
  background: var(--black-soft);
  padding: 100px 0;
  position: relative;
  overflow: hidden;
}

.video-wrapper {
  position: relative;
  max-width: 1100px;
  margin: 0 auto;
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.6);
  border: 2px solid rgba(0, 170, 255, 0.3);
}

.video-wrapper::before {
  content: '';
  position: absolute;
  top: -2px;
  left: -2px;
  right: -2px;
  bottom: -2px;
  background: var(--gradient-blue);
  border-radius: 24px;
  z-index: -1;
  filter: blur(20px);
  opacity: 0.4;
}

.video-bg {
  width: 100%;
  height: 560px;
  object-fit: cover;
  display: block;
  background-size: cover;
  background-position: center;
}

.video-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.3));
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
}

.video-play {
  width: 100px;
  height: 100px;
  background: var(--gradient-blue-bright);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: transform 0.3s;
  box-shadow: 0 0 0 0 rgba(0, 170, 255, 0.7);
  animation: ripple 2s infinite;
  border: none;
  margin-bottom: 24px;
}

.video-play:hover {
  transform: scale(1.1);
}

.video-play svg {
  width: 36px;
  height: 36px;
  fill: var(--white);
  margin-left: 6px;
}

.video-text {
  color: var(--white);
  text-align: center;
}

.video-text h3 {
  font-size: 2rem;
  margin-bottom: 8px;
}

.video-text p {
  color: var(--grey-light);
  font-size: 1rem;
}

@keyframes ripple {
  0% { box-shadow: 0 0 0 0 rgba(0, 170, 255, 0.6); }
  70% { box-shadow: 0 0 0 30px rgba(0, 170, 255, 0); }
  100% { box-shadow: 0 0 0 0 rgba(0, 170, 255, 0); }
}

/* ===========================
   TOKENOMICS
   =========================== */
.tokenomics {
  background: var(--black);
  position: relative;
}

.tokenomics-overview {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 60px;
  align-items: center;
  margin-bottom: 80px;
}

.token-info {
  background: linear-gradient(145deg, var(--black-card), var(--black-elevated));
  border: 1px solid rgba(0, 170, 255, 0.2);
  border-radius: 20px;
  padding: 40px;
}

.token-supply {
  text-align: center;
  padding: 30px;
  background: rgba(0, 170, 255, 0.05);
  border-radius: 16px;
  margin-bottom: 24px;
  border: 1px dashed rgba(0, 170, 255, 0.3);
}

.token-supply-value {
  font-family: var(--font-display);
  font-size: 3rem;
  font-weight: 800;
  background: var(--gradient-blue);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  display: block;
  line-height: 1;
}

.token-supply-label {
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--cyan-light);
  margin-top: 10px;
}

.token-meta {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.token-meta-item {
  background: var(--black-soft);
  padding: 16px;
  border-radius: 10px;
  border: 1px solid rgba(0, 170, 255, 0.1);
}

.token-meta-label {
  font-size: 11px;
  color: var(--grey);
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 6px;
}

.token-meta-value {
  font-size: 1.05rem;
  color: var(--cyan-light);
  font-weight: 600;
}

/* Tokenomics Distribution Table */
.token-distribution {
  background: linear-gradient(145deg, var(--black-card), var(--black-elevated));
  border: 1px solid rgba(0, 170, 255, 0.2);
  border-radius: 20px;
  padding: 40px;
  overflow: hidden;
}

.distribution-table {
  width: 100%;
  border-collapse: collapse;
}

.distribution-table th {
  text-align: left;
  padding: 14px;
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: var(--cyan-light);
  border-bottom: 2px solid rgba(0, 170, 255, 0.3);
  font-weight: 600;
}

.distribution-table td {
  padding: 16px 14px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  font-size: 0.95rem;
}

.distribution-table tr:hover {
  background: rgba(0, 170, 255, 0.05);
}

.distribution-table tr:last-child td {
  border-bottom: none;
  font-weight: 700;
  color: var(--cyan-light);
  background: rgba(0, 170, 255, 0.08);
}

.dist-color {
  display: inline-block;
  width: 12px;
  height: 12px;
  border-radius: 3px;
  margin-right: 10px;
  vertical-align: middle;
}

.dist-percent {
  font-weight: 700;
  color: var(--cyan-light);
}

/* ===========================
   SEED ROUND ROUNDS
   =========================== */
.seed-rounds {
  background: var(--black-soft);
}

.rounds-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 22px;
}

.round-card {
  background: linear-gradient(145deg, var(--black-card), var(--black-elevated));
  border: 1px solid rgba(0, 170, 255, 0.15);
  border-radius: 18px;
  padding: 28px;
  position: relative;
  overflow: hidden;
  transition: all 0.3s ease;
}

.round-card::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle, rgba(0, 170, 255, 0.08) 0%, transparent 50%);
  pointer-events: none;
}

.round-card:hover {
  border-color: rgba(0, 170, 255, 0.5);
  transform: translateY(-6px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4), 0 0 30px rgba(0, 170, 255, 0.15);
}

.round-card.active {
  border-color: var(--cyan);
  background: linear-gradient(145deg, rgba(0, 170, 255, 0.08), var(--black-elevated));
}

.round-number {
  font-family: var(--font-display);
  font-size: 2.5rem;
  font-weight: 800;
  background: var(--gradient-blue);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  line-height: 1;
}

.round-label {
  font-size: 11px;
  color: var(--cyan-light);
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 18px;
}

.round-rate {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 16px 0;
  margin: 16px 0;
  border-top: 1px solid rgba(0, 170, 255, 0.15);
  border-bottom: 1px solid rgba(0, 170, 255, 0.15);
}

.round-rate-label {
  font-size: 13px;
  color: var(--grey);
}

.round-rate-value {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--cyan-light);
}

.round-stats {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin-top: 16px;
}

.round-stat-item {
  background: rgba(0, 0, 0, 0.3);
  padding: 12px;
  border-radius: 8px;
}

.round-stat-key {
  font-size: 10px;
  color: var(--grey);
  text-transform: uppercase;
  letter-spacing: 1px;
}

.round-stat-val {
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--white);
  margin-top: 4px;
}

/* ===========================
   VESTING SCHEDULE
   =========================== */
.vesting {
  background: var(--black);
}

.vesting-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.vesting-info h3 {
  font-size: 2rem;
  margin-bottom: 20px;
}

.vesting-info p {
  color: var(--grey-light);
  margin-bottom: 16px;
  line-height: 1.7;
}

.vesting-timeline {
  background: linear-gradient(145deg, var(--black-card), var(--black-elevated));
  border-radius: 20px;
  padding: 40px;
  border: 1px solid rgba(0, 170, 255, 0.2);
}

.vesting-month {
  display: grid;
  grid-template-columns: 80px 1fr 60px;
  gap: 16px;
  align-items: center;
  padding: 14px 0;
  border-bottom: 1px solid rgba(0, 170, 255, 0.1);
}

.vesting-month:last-child {
  border-bottom: none;
}

.vesting-month-num {
  font-family: var(--font-display);
  font-weight: 700;
  color: var(--cyan-light);
}

.vesting-month-num small {
  display: block;
  font-size: 10px;
  color: var(--grey);
  font-family: var(--font-body);
  font-weight: 400;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.vesting-bar {
  height: 8px;
  background: rgba(0, 170, 255, 0.1);
  border-radius: 4px;
  overflow: hidden;
  position: relative;
}

.vesting-bar-fill {
  height: 100%;
  background: var(--gradient-blue);
  border-radius: 4px;
  transition: width 0.6s ease;
}

.vesting-percent {
  font-weight: 700;
  color: var(--cyan-light);
  text-align: right;
}

.vesting-locked {
  background: rgba(220, 53, 69, 0.1);
  border: 1px solid rgba(220, 53, 69, 0.2);
  border-radius: 8px;
  padding: 10px 16px;
  margin-bottom: 16px;
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 13px;
  color: #ff8a8a;
}

/* ===========================
   ROADMAP
   =========================== */
.roadmap {
  background: var(--black-soft);
  position: relative;
  overflow: hidden;
}

.roadmap-timeline {
  position: relative;
  max-width: 900px;
  margin: 0 auto;
}

.roadmap-timeline::before {
  content: '';
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 2px;
  height: 100%;
  background: linear-gradient(180deg, transparent, var(--cyan), transparent);
}

.roadmap-item {
  display: grid;
  grid-template-columns: 1fr 80px 1fr;
  margin-bottom: 50px;
  position: relative;
}

.roadmap-content {
  background: linear-gradient(145deg, var(--black-card), var(--black-elevated));
  padding: 28px;
  border-radius: 16px;
  border: 1px solid rgba(0, 170, 255, 0.2);
  transition: all 0.3s;
}

.roadmap-content:hover {
  border-color: rgba(0, 170, 255, 0.5);
  transform: translateY(-4px);
}

.roadmap-item:nth-child(odd) .roadmap-content {
  grid-column: 1;
  text-align: right;
}

.roadmap-item:nth-child(even) .roadmap-content {
  grid-column: 3;
}

.roadmap-marker {
  grid-column: 2;
  display: flex;
  justify-content: center;
  align-items: center;
}

.roadmap-dot {
  width: 50px;
  height: 50px;
  background: var(--gradient-blue-bright);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  color: var(--white);
  box-shadow: 0 0 30px rgba(0, 170, 255, 0.5);
  z-index: 2;
  font-family: var(--font-display);
}

.roadmap-phase {
  font-size: 12px;
  color: var(--cyan-light);
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 8px;
  font-weight: 600;
}

.roadmap-content h4 {
  font-size: 1.3rem;
  margin-bottom: 10px;
  color: var(--white);
}

.roadmap-content p {
  color: var(--grey-light);
  font-size: 0.92rem;
  line-height: 1.6;
}

/* ===========================
   CTA SECTION
   =========================== */
.cta-section {
  background: var(--black);
  position: relative;
  overflow: hidden;
}

.cta-wrapper {
  background: linear-gradient(135deg, var(--black-card) 0%, rgba(0, 170, 255, 0.1) 50%, var(--black-card) 100%);
  border: 1px solid rgba(0, 170, 255, 0.3);
  border-radius: 24px;
  padding: 80px 60px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.cta-wrapper::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: conic-gradient(from 0deg, transparent, rgba(0, 170, 255, 0.2), transparent);
  animation: rotate 12s linear infinite;
  pointer-events: none;
}

.cta-wrapper > * {
  position: relative;
  z-index: 2;
}

@keyframes rotate {
  to { transform: rotate(360deg); }
}

.cta-section h2 {
  font-size: 3rem;
  margin-bottom: 16px;
  line-height: 1.2;
}

.cta-section p {
  font-size: 1.1rem;
  color: var(--grey-light);
  margin-bottom: 32px;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

/* ===========================
   FOOTER
   =========================== */
.footer {
  background: #030814;
  padding: 80px 0 30px;
  position: relative;
  border-top: 1px solid rgba(0, 170, 255, 0.2);
}

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

.footer-brand p {
  color: var(--grey);
  margin: 20px 0;
  line-height: 1.7;
  max-width: 360px;
}

.footer-social {
  display: flex;
  gap: 12px;
}

.footer-social a {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(0, 170, 255, 0.1);
  border: 1px solid rgba(0, 170, 255, 0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--cyan-light);
  text-decoration: none;
  transition: all 0.3s;
}

.footer-social a:hover {
  background: var(--gradient-blue-bright);
  color: var(--white);
  transform: translateY(-3px);
}

.footer-col h4 {
  color: var(--cyan-light);
  font-size: 1rem;
  margin-bottom: 22px;
  text-transform: uppercase;
  letter-spacing: 2px;
  font-family: var(--font-body);
  font-weight: 600;
}

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

.footer-col ul li {
  margin-bottom: 10px;
}

.footer-col ul a {
  color: var(--grey);
  text-decoration: none;
  font-size: 0.92rem;
  transition: color 0.3s;
}

.footer-col ul a:hover {
  color: var(--cyan-light);
}

.footer-bottom {
  text-align: center;
  padding-top: 30px;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  color: var(--grey);
  font-size: 0.85rem;
}

.footer-bottom a {
  color: var(--cyan-light);
  text-decoration: none;
}

/* ===========================
   PAGE HEADER
   =========================== */
.page-header {
  padding: 160px 0 80px;
  background: linear-gradient(135deg, var(--black) 0%, var(--black-soft) 50%, var(--black) 100%);
  position: relative;
  text-align: center;
  border-bottom: 1px solid rgba(0, 170, 255, 0.2);
  overflow: hidden;
}

.page-header::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image:
    radial-gradient(circle at 20% 30%, rgba(0, 170, 255, 0.18) 0%, transparent 50%),
    radial-gradient(circle at 80% 70%, rgba(30, 64, 255, 0.15) 0%, transparent 50%);
}

.page-header h1 {
  font-size: clamp(2.5rem, 5vw, 4rem);
  margin-bottom: 16px;
  position: relative;
}

.page-header p {
  color: var(--grey-light);
  font-size: 1.15rem;
  max-width: 700px;
  margin: 0 auto;
  position: relative;
}

.breadcrumb {
  display: inline-flex;
  gap: 10px;
  align-items: center;
  margin-bottom: 16px;
  font-size: 13px;
  position: relative;
}

.breadcrumb a {
  color: var(--grey);
  text-decoration: none;
}

.breadcrumb a:hover {
  color: var(--cyan-light);
}

.breadcrumb span {
  color: var(--cyan-light);
}

/* ===========================
   FORMS
   =========================== */
.form-card {
  background: linear-gradient(145deg, var(--black-card), var(--black-elevated));
  border: 1px solid rgba(0, 170, 255, 0.3);
  border-radius: 20px;
  padding: 50px;
  position: relative;
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
}

.form-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: var(--gradient-blue);
}

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

.form-label {
  display: block;
  margin-bottom: 8px;
  color: var(--cyan-light);
  font-size: 13px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.form-control {
  width: 100%;
  padding: 14px 18px;
  background: rgba(0, 0, 0, 0.4);
  border: 1px solid rgba(0, 170, 255, 0.2);
  border-radius: 10px;
  color: var(--white);
  font-family: var(--font-body);
  font-size: 1rem;
  transition: all 0.3s;
}

.form-control:focus {
  outline: none;
  border-color: var(--cyan);
  box-shadow: 0 0 0 3px rgba(0, 170, 255, 0.15);
}

.form-control::placeholder {
  color: var(--grey);
}

select.form-control {
  cursor: pointer;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.amount-display {
  background: rgba(0, 170, 255, 0.05);
  border: 1px solid rgba(0, 170, 255, 0.3);
  border-radius: 12px;
  padding: 24px;
  margin: 24px 0;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

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

.amount-label {
  font-size: 11px;
  color: var(--grey);
  text-transform: uppercase;
  letter-spacing: 1.5px;
  margin-bottom: 6px;
}

.amount-value {
  font-family: var(--font-display);
  font-size: 1.8rem;
  font-weight: 700;
  background: var(--gradient-blue);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

/* ===========================
   ANIMATIONS
   =========================== */
.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.8s, transform 0.8s;
  /* Fail-safe: if JS doesn't fire, force-reveal after 1.5s */
  animation: failsafe-reveal 0.8s ease 1.5s forwards;
}

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

@keyframes failsafe-reveal {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* When JS is unavailable / disabled, never hide content */
@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1 !important; transform: none !important; animation: none !important; }
}

/* If user has JS disabled, force-show everything immediately */
.no-js .reveal { opacity: 1; transform: none; animation: none; }

/* ===========================
   RESPONSIVE
   =========================== */
@media (max-width: 992px) {
  .nav-menu {
    position: fixed;
    top: 70px;
    left: 0;
    right: 0;
    background: rgba(5, 10, 24, 0.98);
    flex-direction: column;
    gap: 0;
    padding: 20px;
    border-bottom: 1px solid rgba(0, 170, 255, 0.2);
    transform: translateY(-150%);
    transition: transform 0.3s;
  }
  .nav-menu.open { transform: translateY(0); }
  .nav-menu li { width: 100%; padding: 12px 0; border-bottom: 1px solid rgba(0, 170, 255, 0.1); }
  .mobile-toggle { display: block; }
  .nav-actions .btn-outline { display: none; }
  .about-grid, .tokenomics-overview, .vesting-content { grid-template-columns: 1fr; gap: 40px; }
  .features-grid { grid-template-columns: 1fr 1fr; }
  .roadmap-timeline::before { left: 24px; }
  .roadmap-item { grid-template-columns: 60px 1fr; }
  .roadmap-marker { grid-column: 1; justify-content: flex-start; }
  .roadmap-item:nth-child(odd) .roadmap-content,
  .roadmap-item:nth-child(even) .roadmap-content {
    grid-column: 2;
    text-align: left;
  }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 640px) {
  .hero-stats { grid-template-columns: 1fr 1fr; gap: 20px; }
  .features-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; gap: 30px; }
  .form-card { padding: 30px 24px; }
  .form-row { grid-template-columns: 1fr; }
  .cta-wrapper { padding: 50px 24px; }
  .cta-section h2 { font-size: 2rem; }
  .about-features { grid-template-columns: 1fr; }
  .video-bg { height: 320px; }
  .slider-controls { bottom: 20px; right: 20px; }
}
