/* ===== BHAUU HOME PAGE ===== */

/* ---- HERO ---- */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  padding: 100px 0 80px;
  background: #ffffff;
}

.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.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: 60px 60px;
  mask-image: radial-gradient(ellipse 80% 80% at 50% 50%, black 30%, transparent 100%);
}

.hero-orb-1 {
  position: absolute;
  top: -100px; left: -100px;
  width: 600px; height: 600px;
  background: radial-gradient(circle, rgba(139,92,246,0.08) 0%, transparent 70%);
  border-radius: 50%;
  animation: float-orb 8s ease-in-out infinite;
}

.hero-orb-2 {
  position: absolute;
  bottom: -100px; right: -100px;
  width: 500px; height: 500px;
  background: radial-gradient(circle, rgba(236,72,153,0.06) 0%, transparent 70%);
  border-radius: 50%;
  animation: float-orb 10s ease-in-out infinite reverse;
}

@keyframes float-orb {
  0%,100% { transform: translate(0,0) scale(1); }
  50%      { transform: translate(30px,-30px) scale(1.05); }
}

.hero-inner {
  position: relative;
  z-index: 1;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(139,92,246,0.08);
  border: 1px solid rgba(139,92,246,0.25);
  color: #7c3aed;
  padding: 6px 16px;
  border-radius: 50px;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 28px;
}

.hero-eyebrow-dot {
  width: 6px; height: 6px;
  background: #8b5cf6;
  border-radius: 50%;
  animation: pulse-dot 1.5s ease-in-out infinite;
}

@keyframes pulse-dot {
  0%,100% { opacity:1; transform:scale(1); }
  50%      { opacity:0.3; transform:scale(0.5); }
}

.hero-title {
  font-family: 'Poppins', sans-serif;
  font-size: clamp(3rem, 5vw, 5rem);
  font-weight: 700;
  line-height: 1.05;
  letter-spacing: -1px;
  margin-bottom: 10px;
}

.hero-title .line-1 { display: block; color: #0a0a0a; }
.hero-title .line-2 {
  display: block;
  background: linear-gradient(135deg, #8b5cf6, #ec4899);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-desc {
  color: #666666;
  font-size: 1.05rem;
  line-height: 1.8;
  margin-bottom: 30px;
  max-width: 480px;
}

.hero-btns {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-bottom: 26px;
}

.hero-stats {
  display: flex;
  gap: 40px;
}

.hero-stat-num {
  font-family: 'Poppins', sans-serif;
  font-size: 2rem;
  font-weight: 700;
  background: linear-gradient(135deg, #8b5cf6, #7c3aed);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1;
  margin-bottom: 4px;
}

.hero-stat-label {
  font-size: 0.78rem;
  color: #999999;
  letter-spacing: 0.5px;
}

/* Right — Visual */
.hero-right {
  display: flex;
  justify-content: center;
  align-items: center;
}

.hero-visual {
  position: relative;
  width: 420px;
  height: 420px;
}

.hero-ring {
  position: absolute;
  inset: 0;
  border-radius: 50%;
  border: 1px solid rgba(139,92,246,0.15);
  animation: spin-slow 20s linear infinite;
}

.hero-ring-2 {
  position: absolute;
  inset: 30px;
  border-radius: 50%;
  border: 1px dashed rgba(236,72,153,0.12);
  animation: spin-slow 15s linear infinite reverse;
}

@keyframes spin-slow { to { transform: rotate(360deg); } }

.hero-center-card {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: 220px;
  background: #1e1e35;
  border: 1px solid rgba(139,92,246,0.3);
  border-radius: 24px;
  padding: 28px 24px;
  text-align: center;
  box-shadow: 0 20px 60px rgba(0,0,0,0.15), 0 0 40px rgba(139,92,246,0.1);
}

.hero-center-logo {
  width: 60px; height: 60px;
  margin: 0 auto 16px;
  background: rgba(255,255,255,0.15);
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-center-name {
  font-family: 'Poppins', sans-serif;
  font-size: 1.4rem;
  font-weight: 700;
  color: #9354f9;
  margin-bottom: 6px;
}

.hero-center-tag {
  font-size: 0.68rem;
  color: rgba(255,255,255,0.5);
  letter-spacing: 2px;
  text-transform: uppercase;
}

.orbit-card {
  position: absolute;
  background: #1e1e35;
  border: 1px solid rgba(139,92,246,0.2);
  border-radius: 14px;
  padding: 12px 16px;
  display: flex;
  align-items: center;
  gap: 10px;
  white-space: nowrap;
  animation: float-card 4s ease-in-out infinite;
  box-shadow: 0 4px 20px rgba(0,0,0,0.1);
}

.orbit-card:nth-child(3) { top: 10%; right: -10%; animation-delay: 0s; }
.orbit-card:nth-child(4) { bottom: 15%; left: -10%; animation-delay: 1.5s; }
.orbit-card:nth-child(5) { top: 55%; right: -15%; animation-delay: 0.8s; }

@keyframes float-card {
  0%,100% { transform: translateY(0); }
  50%      { transform: translateY(-10px); }
}

.orbit-card-icon {
  width: 36px; height: 36px;
  border-radius: 10px;
  background: rgba(139,92,246,0.2);
  border: 1px solid rgba(139,92,246,0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.orbit-card-text p:first-child {
  font-size: 0.78rem;
  font-weight: 600;
  color: #fff;
}

.orbit-card-text p:last-child {
  font-size: 0.68rem;
  color: rgba(255,255,255,0.5);
}

/* ---- MISSION ---- */
.mission {
  background: #f5f5f7;
  border-top: 1px solid rgba(0,0,0,0.06);
  border-bottom: 1px solid rgba(0,0,0,0.06);
}

.mission-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.mission-quote {
  font-family: 'Poppins', sans-serif;
  font-size: clamp(1.5rem, 3vw, 2.2rem);
  font-weight: 600;
  line-height: 1.4;
  margin-bottom: 24px;
  color: #0a0a0a;
}

.mission-quote span {
  background: linear-gradient(135deg, #8b5cf6, #ec4899);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.mission-text {
  color: #666666;
  font-size: 0.95rem;
  line-height: 1.9;
  margin-bottom: 36px;
}

.mission-right {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.mission-card {
  background: #1e1e35;
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: 20px;
  padding: 28px 22px;
  transition: all 0.35s ease;
}

.mission-card:hover {
  border-color: rgba(139,92,246,0.3);
  box-shadow: 0 8px 40px rgba(139,92,246,0.15);
  transform: translateY(-4px);
}

.mission-card-icon { font-size: 1.8rem; margin-bottom: 14px; }

.mission-card h4 {
  font-size: 0.95rem;
  font-weight: 600;
  margin-bottom: 8px;
  color: #fff;
}

.mission-card p {
  font-size: 0.82rem;
  color: rgba(255,255,255,0.5);
  line-height: 1.7;
}

/* ---- WHAT IS BHAUU ---- */
.what-bhauu { position: relative; background: #ffffff; }

.what-bhauu-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

.what-bhauu-header {
  text-align: center;
  margin-bottom: 70px;
}

.what-bhauu-header .section-desc { margin: 0 auto; }

.pillars-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.pillar-card {
  background: #1e1e35;
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: 24px;
  padding: 36px 28px;
  position: relative;
  overflow: hidden;
  transition: all 0.35s ease;
}

.pillar-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
  background: linear-gradient(135deg, #8b5cf6, #ec4899);
  opacity: 0;
  transition: opacity 0.35s ease;
}

.pillar-card:hover {
  box-shadow: 0 20px 60px rgba(0,0,0,0.12), 0 0 30px rgba(139,92,246,0.1);
  transform: translateY(-8px);
}

.pillar-card:hover::before { opacity: 1; }

.pillar-num {
  font-size: 3.5rem;
  font-weight: 700;
  color: #f5f5f7;
  line-height: 1;
  margin-bottom: 16px;
}

.pillar-icon { font-size: 2rem; margin-bottom: 16px; }

.pillar-card h3 {
  font-size: 1.1rem;
  font-weight: 600;
  margin-bottom: 12px;
  color: #fff;
}

.pillar-card p {
  font-size: 0.88rem;
  color: rgba(255,255,255,0.5);
  line-height: 1.8;
}

/* ---- BHAUUVERSE ---- */
.bhauuverse {
  background: #f5f5f7;
  position: relative;
  overflow: hidden;
  border-top: 1px solid rgba(0,0,0,0.06);
}

.bhauuverse-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.bhauuverse-visual {
  position: relative;
  width: 380px;
  height: 380px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.bverse-center {
  width: 120px; height: 120px;
  background: linear-gradient(135deg, #8b5cf6, #ec4899);
  border-radius: 28px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.9rem;
  font-weight: 700;
  color: #fff;
  position: relative;
  z-index: 2;
  box-shadow: 0 0 60px rgba(139,92,246,0.3);
  animation: pulse-center 3s ease-in-out infinite;
  text-align: center;
  line-height: 1.3;
  white-space: nowrap;
}

@keyframes pulse-center {
  0%,100% { box-shadow: 0 0 40px rgba(139,92,246,0.3); }
  50%      { box-shadow: 0 0 70px rgba(139,92,246,0.5); }
}

.bverse-ring {
  position: absolute;
  border-radius: 50%;
  border: 1px solid rgba(139,92,246,0.12);
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  animation: spin-slow 20s linear infinite;
}

.bverse-ring-1 { width: 200px; height: 200px; }
.bverse-ring-2 { width: 320px; height: 320px; animation-duration: 30s; animation-direction: reverse; border-style: dashed; }
.bverse-ring-3 { width: 380px; height: 380px; animation-duration: 40s; border-color: rgba(236,72,153,0.08); }

.bverse-node {
  position: absolute;
  width: 46px; height: 46px;
  background: #1e1e35;
  border: 1px solid rgba(139,92,246,0.3);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  box-shadow: 0 4px 20px rgba(0,0,0,0.1);
  z-index: 2;
}

/* 4 nodes — top, right, bottom, left */
.bverse-node:nth-child(1) { top: 10px;  left: 50%; transform: translateX(-50%); }
.bverse-node:nth-child(2) { top: 50%;   right: 10px; transform: translateY(-50%); }
.bverse-node:nth-child(3) { bottom: 10px; left: 50%; transform: translateX(-50%); }
.bverse-node:nth-child(4) { top: 50%;   left: 10px; transform: translateY(-50%); }

.bhauuverse-content p {
  color: #666666;
  font-size: 0.95rem;
  line-height: 1.9;
  margin-bottom: 16px;
}

.bhauuverse-features {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin: 28px 0 36px;
}

.bverse-feature {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 0.88rem;
  color: #444444;
}

.bverse-feature-dot {
  width: 8px; height: 8px;
  background: linear-gradient(135deg, #8b5cf6, #ec4899);
  border-radius: 50%;
  flex-shrink: 0;
}

/* ---- FOUNDER ---- */
.founder { position: relative; background: #ffffff; }

.founder-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

.founder-header {
  text-align: center;
  margin-bottom: 60px;
}

.founder-card {
  background: #1e1e35;
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: 32px;
  padding: 60px;
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 60px;
  align-items: center;
  position: relative;
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(0,0,0,0.1);
}

.founder-card::before {
  content: '';
  position: absolute;
  top: -100px; right: -100px;
  width: 400px; height: 400px;
  background: radial-gradient(circle, rgba(139,92,246,0.08) 0%, transparent 70%);
  pointer-events: none;
}

.founder-avatar { position: relative; flex-shrink: 0; }

.founder-avatar img {
  width: 160px; height: 160px;
  border-radius: 24px;
  object-fit: cover;
  border: 2px solid rgba(139,92,246,0.3);
}

.founder-avatar-ring {
  position: absolute;
  inset: -8px;
  border-radius: 30px;
  border: 1px solid rgba(139,92,246,0.2);
  animation: spin-slow 10s linear infinite;
}

.founder-tag {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(139,92,246,0.12);
  border: 1px solid rgba(139,92,246,0.25);
  color: #a78bfa;
  padding: 4px 12px;
  border-radius: 50px;
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  margin-bottom: 16px;
}

.founder-name {
  font-size: 2rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 6px;
}

.founder-role {
  color: rgba(255,255,255,0.4);
  font-size: 0.88rem;
  margin-bottom: 20px;
}

.founder-bio {
  color: rgba(255,255,255,0.55);
  font-size: 0.92rem;
  line-height: 1.9;
  margin-bottom: 28px;
  max-width: 600px;
}

.founder-chips { display: flex; gap: 8px; flex-wrap: wrap; }

.founder-chip {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.1);
  color: rgba(255,255,255,0.6);
  padding: 5px 14px;
  border-radius: 50px;
  font-size: 0.78rem;
  font-weight: 500;
}

/* ---- FOUNDER PROJECTS ---- */
.founder-projects {
  background: #ffffff;
  border-top: 1px solid rgba(0,0,0,0.06);
}

.founder-projects-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

.founder-projects-header {
  text-align: center;
  max-width: 760px;
  margin: 0 auto 52px;
}

.founder-projects-header .section-desc {
  margin: 0 auto;
}

.founder-projects-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}

.founder-project-card {
  display: flex;
  flex-direction: column;
  overflow: hidden;
  min-width: 0;
  color: inherit;
  text-decoration: none;
  background: #1e1e35;
  border: 1px solid rgba(139,92,246,0.2);
  border-radius: 24px;
  box-shadow: 0 14px 44px rgba(0,0,0,0.1);
  transition: all 0.3s ease;
}

.founder-project-card:hover {
  transform: translateY(-6px);
  border-color: rgba(139,92,246,0.42);
  box-shadow: 0 20px 60px rgba(0,0,0,0.14);
}

.founder-project-card img {
  width: 100%;
  aspect-ratio: 16 / 9;
  height: auto;
  object-fit: cover;
  object-position: center;
  background: #f5f5f7;
  display: block;
}

.founder-project-card.profile-card img {
  object-position: top center;
  border-radius: 0;
}

.founder-project-card div {
  padding: 22px;
}

.founder-project-card span {
  display: inline-flex;
  margin-bottom: 10px;
  color: #a78bfa;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
}

.founder-project-card h3 {
  color: #fff;
  font-size: 1.08rem;
  margin-bottom: 8px;
}

.founder-project-card p {
  color: rgba(255,255,255,0.58);
  font-size: 0.86rem;
  line-height: 1.7;
}

.founder-projects-actions {
  display: flex;
  gap: 14px;
  justify-content: center;
  flex-wrap: wrap;
  margin-top: 36px;
}

/* ---- CTA ---- */
.home-cta {
  background: #f5f5f7;
  border-top: 1px solid rgba(0,0,0,0.06);
}

.cta-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

.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);
}

.cta-box::before {
  content: '';
  position: absolute;
  top: -50%; left: 50%;
  transform: translateX(-50%);
  width: 400px; height: 400px;
  background: radial-gradient(circle, rgba(139,92,246,0.12) 0%, transparent 70%);
  pointer-events: none;
}

.cta-box h2 {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 700;
  margin-bottom: 16px;
  position: relative;
  z-index: 1;
  color: #fff;
}

.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;
}

.cta-btns {
  display: flex;
  gap: 14px;
  justify-content: center;
  flex-wrap: wrap;
  position: relative;
  z-index: 1;
}

/* ---- RESPONSIVE ---- */
@media (max-width: 1024px) {
  .hero-inner { grid-template-columns: 1fr; gap: 40px; text-align: center; }
  .hero-right { display: none; }
  .hero-btns { justify-content: center; }
  .hero-stats { justify-content: center; }
  .hero-desc { margin-left: auto; margin-right: auto; }
  .mission-inner { grid-template-columns: 1fr; gap: 40px; }
  .bhauuverse-inner { grid-template-columns: 1fr; gap: 40px; }
  .bhauuverse-visual { width: 300px; height: 300px; margin: 0 auto; }
  .bverse-ring-2 { width: 260px; height: 260px; }
  .bverse-ring-3 { width: 300px; height: 300px; }
  .founder-card { grid-template-columns: 1fr; text-align: center; gap: 24px; padding: 36px 28px; }
  .founder-avatar { margin: 0 auto; }
  .founder-chips { justify-content: center; }
  .founder-projects-grid { grid-template-columns: 1fr; }
  .pillars-grid { grid-template-columns: 1fr 1fr; }
  .mission-right { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 768px) {
  .hero { padding: 90px 0 50px; }
  .hero-title { font-size: clamp(2.2rem, 7vw, 3rem); letter-spacing: -0.5px; }
  .hero-eyebrow { font-size: 0.65rem; }
  .hero-stats { gap: 24px; }
  .mission-right { grid-template-columns: 1fr 1fr; }
  .pillars-grid { grid-template-columns: 1fr; }
  .cta-box { padding: 40px 24px; }
  .founder-card { padding: 28px 20px; }
  .bhauuverse-visual { width: 260px; height: 260px; }
  .bverse-ring-2 { width: 220px; height: 220px; }
  .bverse-ring-3 { width: 260px; height: 260px; }
}

@media (max-width: 480px) {
  .hero-btns { flex-direction: column; align-items: center; }
  .hero-btns .btn { width: 100%; justify-content: center; }
  .hero-stats { gap: 16px; }
  .mission-right { grid-template-columns: 1fr; }
  .cta-btns { flex-direction: column; align-items: center; }
  .cta-btns .btn { width: 100%; justify-content: center; }
}

