/* ===== BHAUUVERSE PAGE ===== */

.bverse-hero {
  min-height: 70vh;
  display: flex;
  align-items: center;
  padding: 100px 0 80px;
  position: relative;
  overflow: hidden;
  background: #ffffff;
}

.bverse-hero-bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 50% 60% at 20% 50%, rgba(139,92,246,0.07) 0%, transparent 60%),
    radial-gradient(ellipse 40% 50% at 80% 50%, rgba(236,72,153,0.05) 0%, transparent 60%);
  pointer-events: none;
}

.bverse-hero-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(139,92,246,0.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(139,92,246,0.05) 1px, transparent 1px);
  background-size: 50px 50px;
  mask-image: radial-gradient(ellipse 80% 80% at 50% 50%, black 20%, transparent 100%);
}

.bverse-hero-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  text-align: center;
  position: relative;
  z-index: 1;
}

.bverse-hero-title {
  font-family: 'Poppins', sans-serif;
  font-size: clamp(3rem, 7vw, 6rem);
  font-weight: 700;
  line-height: 1.0;
  letter-spacing: -2px;
  margin-bottom: 24px;
  color: #0a0a0a;
}

.bverse-hero-desc {
  color: #666666;
  font-size: 1.1rem;
  line-height: 1.9;
  max-width: 620px;
  margin: 0 auto 40px;
}

/* What is Bhauuverse */
.bverse-what {
  background: #f5f5f7;
  border-top: 1px solid rgba(0,0,0,0.06);
  border-bottom: 1px solid rgba(0,0,0,0.06);
}

.bverse-what-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.bverse-what-content .section-badge { margin-bottom: 20px; }
.bverse-what-content .section-title { margin-bottom: 20px; }

.bverse-what-content p {
  color: #666666;
  font-size: 0.95rem;
  line-height: 1.9;
  margin-bottom: 16px;
}

.bverse-what-visual {
  position: relative;
  width: 420px;
  height: 420px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.bverse-map-center {
  width: 120px; height: 120px;
  background: linear-gradient(135deg, #8b5cf6, #ec4899);
  border-radius: 28px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Poppins', sans-serif;
  font-size: 0.9rem;
  font-weight: 700;
  color: #fff;
  text-align: center;
  line-height: 1.3;
  position: relative;
  z-index: 3;
  box-shadow: 0 0 50px rgba(139,92,246,0.4);
  animation: pulse-center 3s ease-in-out infinite;
  white-space: nowrap;
}

@keyframes pulse-center {
  0%,100% { box-shadow: 0 0 30px rgba(139,92,246,0.35); }
  50%      { box-shadow: 0 0 60px rgba(139,92,246,0.55); }
}

@keyframes spin-slow { to { transform: rotate(360deg); } }

.bverse-map-ring {
  position: absolute;
  border-radius: 50%;
  border: 1px solid rgba(139,92,246,0.12);
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
}

.bverse-map-ring-1 { width: 200px; height: 200px; animation: spin-slow 15s linear infinite; }
.bverse-map-ring-2 { width: 340px; height: 340px; animation: spin-slow 25s linear infinite reverse; border-style: dashed; border-color: rgba(139,92,246,0.1); }

.bverse-map-node {
  position: absolute;
  background: #1e1e35;
  border: 1px solid rgba(139,92,246,0.3);
  border-radius: 12px;
  padding: 9px 14px;
  display: flex;
  align-items: center;
  gap: 7px;
  font-size: 0.76rem;
  font-weight: 600;
  color: rgba(255,255,255,0.9);
  white-space: nowrap;
  box-shadow: 0 4px 20px rgba(0,0,0,0.15);
  z-index: 2;
}

.bverse-map-node span { font-size: 0.95rem; }

/* Hexagonal placement — 6 nodes evenly around center */
/* top center */
.node-top         { top: 10px;  left: 50%; transform: translateX(-50%); }
/* top right */
.node-top-right   { top: 22%;  right: 10px; }
/* bottom right */
.node-bottom-right{ bottom: 22%; right: 10px; }
/* bottom center */
.node-bottom      { bottom: 10px; left: 50%; transform: translateX(-50%); }
/* bottom left */
.node-bottom-left { bottom: 22%; left: 10px; }
/* top left */
.node-top-left    { top: 22%;  left: 10px; }

/* Ecosystem Components */
.bverse-ecosystem {
  position: relative;
  background: #ffffff;
}

.bverse-ecosystem-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

.bverse-ecosystem-header {
  text-align: center;
  margin-bottom: 60px;
}

.bverse-ecosystem-header .section-desc { margin: 0 auto; }

.ecosystem-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.eco-card {
  background: var(--bg-card);
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: 24px;
  padding: 36px 28px;
  transition: all 0.35s ease;
  position: relative;
  overflow: hidden;
}

.eco-card-glow {
  position: absolute;
  top: -40px; right: -40px;
  width: 120px; height: 120px;
  border-radius: 50%;
  opacity: 0;
  transition: opacity 0.35s ease;
  filter: blur(30px);
}

.eco-card:hover .eco-card-glow { opacity: 1; }

.eco-card:hover {
  border-color: rgba(139,92,246,0.25);
  transform: translateY(-8px);
  box-shadow: 0 20px 60px rgba(0,0,0,0.3);
}

.eco-card-icon {
  width: 56px; height: 56px;
  border-radius: 16px;
  background: rgba(139,92,246,0.12);
  border: 1px solid rgba(139,92,246,0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  margin-bottom: 20px;
}

.eco-card h3 {
  font-family: 'Poppins', sans-serif;
  font-size: 1.05rem;
  font-weight: 600;
  color: #fff;
  margin-bottom: 12px;
}

.eco-card p {
  font-size: 0.87rem;
  color: rgba(255,255,255,0.5);
  line-height: 1.8;
}

/* Vision */
.bverse-vision {
  background: #f5f5f7;
  border-top: 1px solid rgba(0,0,0,0.06);
}

.bverse-vision-inner {
  max-width: 900px;
  margin: 0 auto;
  padding: 0 24px;
  text-align: center;
}

.bverse-vision-inner .section-badge { margin-bottom: 24px; }
.bverse-vision-inner .section-title { margin-bottom: 24px; }

.vision-quote {
  font-family: 'Poppins', sans-serif;
  font-size: clamp(1.2rem, 2.5vw, 1.6rem);
  font-weight: 500;
  color: #333333;
  line-height: 1.7;
  margin-bottom: 40px;
  padding: 40px;
  background: #ffffff;
  border: 1px solid rgba(139,92,246,0.12);
  border-radius: 24px;
  position: relative;
}

.vision-quote::before {
  content: '"';
  position: absolute;
  top: -20px; left: 30px;
  font-size: 5rem;
  color: rgba(139,92,246,0.3);
  font-family: Georgia, serif;
  line-height: 1;
}

.vision-points {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  text-align: left;
  margin-bottom: 40px;
}

.vision-point {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  background: #ffffff;
  border: 1px solid rgba(0,0,0,0.07);
  border-radius: 14px;
  padding: 18px;
}

.vision-point-icon {
  width: 36px; height: 36px;
  border-radius: 10px;
  background: rgba(139,92,246,0.12);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  flex-shrink: 0;
}

.vision-point-text h4 {
  font-size: 0.88rem;
  font-weight: 600;
  color: #0a0a0a;
  margin-bottom: 4px;
}

.vision-point-text p {
  font-size: 0.8rem;
  color: #777777;
  line-height: 1.6;
}

/* CTA */
.bverse-cta {
  position: relative;
  background: #ffffff;
}

.bverse-cta-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

.bverse-cta-box {
  background: #1e1e35;
  border: 1px solid rgba(139,92,246,0.2);
  border-radius: 32px;
  padding: 80px 60px;
  text-align: center;
  position: relative;
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(0,0,0,0.1);
}

.bverse-cta-box::before {
  content: '';
  position: absolute;
  top: -80px; left: 50%;
  transform: translateX(-50%);
  width: 500px; height: 300px;
  background: radial-gradient(ellipse, rgba(139,92,246,0.15) 0%, transparent 70%);
  pointer-events: none;
}

.bverse-cta-box h2 {
  font-family: 'Poppins', sans-serif;
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 700;
  margin-bottom: 16px;
  position: relative;
  z-index: 1;
  color: #fff;
}

.bverse-cta-box p {
  color: rgba(255,255,255,0.5);
  font-size: 1rem;
  margin-bottom: 40px;
  max-width: 500px;
  margin-left: auto;
  margin-right: auto;
  position: relative;
  z-index: 1;
}

.bverse-cta-btns {
  display: flex;
  gap: 14px;
  justify-content: center;
  flex-wrap: wrap;
  position: relative;
  z-index: 1;
}

@media (max-width: 1024px) {
  .bverse-what-inner { grid-template-columns: 1fr; gap: 40px; }
  .bverse-what-visual { width: 320px; height: 320px; margin: 0 auto; }
  .bverse-map-ring-2 { width: 260px; height: 260px; }
  .ecosystem-grid { grid-template-columns: 1fr 1fr; }
  .vision-points { grid-template-columns: 1fr; }
  .bverse-hero-title { letter-spacing: -1px; }
}

@media (max-width: 768px) {
  .bverse-hero { padding: 90px 0 50px; }
  .bverse-what-visual { width: 260px; height: 260px; }
  .bverse-map-ring-2 { width: 210px; height: 210px; }
  .bverse-map-center { width: 90px; height: 90px; font-size: 0.78rem; }
  .ecosystem-grid { grid-template-columns: 1fr; }
  .bverse-cta-box { padding: 40px 24px; }
  .bverse-cta-btns { flex-direction: column; align-items: center; }
  .bverse-cta-btns .btn { width: 100%; justify-content: center; }
  .vision-quote { padding: 28px 20px; font-size: 1rem; }
  .node-top-right, .node-bottom-right { right: 0; }
  .node-top-left, .node-bottom-left { left: 0; }
}

@media (max-width: 480px) {
  .bverse-hero-title { letter-spacing: -0.5px; }
  .bverse-hero-desc { font-size: 0.95rem; }
}

