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

body {
  font-family: "Segoe UI", system-ui, sans-serif;
  background: #0d0d12;
  color: #f0f0f0;
  line-height: 1.6;
}

/* Hero */
.hero {
  min-height: 100vh;
  padding: 2rem;
  position: relative;
  overflow: hidden;
}

.nav {
  padding: 1rem 2rem;
}

.brand {
  font-size: 1.5rem;
  font-weight: 300;
  color: #f0f0f0;
  letter-spacing: 3px;
}

.hero-wrapper {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: calc(100vh - 100px);
  padding: 2rem;
}

.hero-content {
  max-width: 550px;
}

.hero h1 {
  font-size: clamp(2.5rem, 5vw, 3.5rem);
  font-weight: 300;
  line-height: 1.2;
  margin-bottom: 1.5rem;
}

.hero p {
  font-size: 1.125rem;
  color: #888;
  margin-bottom: 2.5rem;
}

.btn {
  display: inline-block;
  padding: 1rem 2rem;
  background: linear-gradient(135deg, #667eea, #764ba2);
  color: #fff;
  text-decoration: none;
  border-radius: 50px;
  font-weight: 500;
  transition: all 0.3s ease;
}

.btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 30px rgba(102, 126, 234, 0.4);
}

.hero-orb {
  width: 400px;
  height: 400px;
  border-radius: 50%;
  background: radial-gradient(circle at 30% 30%, rgba(102, 126, 234, 0.4), rgba(118, 75, 162, 0.2), transparent);
  filter: blur(40px);
  animation: float 6s ease-in-out infinite;
}

@keyframes float {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-30px);
  }
}

/* Approach */
.approach {
  padding: 6rem 4rem;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  max-width: 1100px;
  margin: 0 auto;
}

.approach-card {
  padding: 3rem;
  background: rgba(255, 255, 255, 0.03);
  border-radius: 24px;
  border: 1px solid rgba(255, 255, 255, 0.05);
}

.card-tag {
  display: inline-block;
  font-size: 0.75rem;
  color: #667eea;
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 1.5rem;
}

.approach-card h2 {
  font-size: 1.75rem;
  font-weight: 400;
  margin-bottom: 1rem;
}

.approach-card p {
  color: #888;
}

.approach-features {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 1.5rem;
}

.feature {
  display: flex;
  align-items: center;
  gap: 1rem;
  font-size: 1.125rem;
}

.feature-dot {
  width: 8px;
  height: 8px;
  background: linear-gradient(135deg, #667eea, #764ba2);
  border-radius: 50%;
}

/* Stats */
.stats {
  display: flex;
  justify-content: center;
  gap: 6rem;
  padding: 5rem 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.stat {
  text-align: center;
}

.stat-value {
  display: block;
  font-size: 3rem;
  font-weight: 300;
  background: linear-gradient(135deg, #667eea, #764ba2);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.stat-label {
  font-size: 0.875rem;
  color: #888;
  text-transform: uppercase;
  letter-spacing: 1px;
}

/* Footer */
.footer {
  padding: 3rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.footer p {
  font-size: 0.875rem;
  color: #666;
}

@media (max-width: 900px) {
  .hero-wrapper {
    flex-direction: column;
    text-align: center;
  }

  .hero-orb {
    width: 250px;
    height: 250px;
    margin-top: 3rem;
  }

  .approach {
    grid-template-columns: 1fr;
    padding: 4rem 2rem;
  }

  .stats {
    flex-direction: column;
    gap: 3rem;
  }

  .footer {
    flex-direction: column;
    gap: 1rem;
    text-align: center;
  }
}
