body {
  margin: 0;
  font-family: 'Segoe UI', sans-serif;
  background: #050505;
  color: #fff;
  overflow-x: hidden;
}

/* NAV */
.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem 2rem;
  background: rgba(10,10,10,0.6);
  backdrop-filter: blur(10px);
}

.logo {
  height: 40px;
}

.navbar a {
  color: #4fc3f7;
  margin-left: 1rem;
  text-decoration: none;
}

/* HERO */
.hero {
  position: relative;
  height: 90vh;
  display: flex;
  align-items: center;
}

.mesh-bg {
  position: absolute;
  width: 100%;
  height: 100%;
  background: radial-gradient(circle at 20% 30%, rgba(255,122,0,0.3), transparent),
              radial-gradient(circle at 80% 70%, rgba(79,195,247,0.3), transparent);
  animation: moveBg 10s infinite alternate ease-in-out;
}

.hero-content {
  display: flex;
  width: 100%;
  justify-content: space-between;
  padding: 0 5%;
  position: relative;
  z-index: 1;
}

.hero-text h1 {
  font-size: 3rem;
  background: linear-gradient(45deg, #ff7a00, #4fc3f7);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.hero button {
  margin-top: 1rem;
  padding: 1rem 2rem;
  border: none;
  background: linear-gradient(45deg, #ff7a00, #4fc3f7);
  color: white;
  border-radius: 8px;
  cursor: pointer;
}

/* ORB */
.hero-visual {
  display: flex;
  align-items: center;
}

.orb {
  width: 200px;
  height: 200px;
  border-radius: 50%;
  background: radial-gradient(circle, #4fc3f7, #ff7a00);
  filter: blur(20px);
  animation: pulse 3s infinite ease-in-out;
}

/* CARDS */
.card-section {
  display: flex;
  gap: 2rem;
  padding: 4rem;
  justify-content: center;
}

.card {
  background: #0f0f0f;
  padding: 2rem;
  border-radius: 16px;
  width: 260px;
  transition: all 0.4s ease;
}

.card:hover {
  transform: translateY(-10px);
  box-shadow: 0 0 20px rgba(255,122,0,0.4);
}

/* CREDIBILITY */
.credibility {
  text-align: center;
  padding: 4rem 2rem;
}

.stats {
  display: flex;
  justify-content: center;
  gap: 3rem;
}

.logos {
  margin-top: 2rem;
  opacity: 0.6;
}

/* ANIMATIONS */
@keyframes moveBg {
  from { transform: translateY(0); }
  to { transform: translateY(40px); }
}

@keyframes pulse {
  0%,100% { transform: scale(1); }
  50% { transform: scale(1.2); }
}

/* SCROLL REVEAL */
.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: all 0.8s ease;
}

.reveal.active {
  opacity: 1;
  transform: translateY(0);
}