body {
  min-height: 100vh;
  font-family: "Inter", sans-serif;
  background:
    radial-gradient(circle at top left, #132238 0%, transparent 30%),
    radial-gradient(circle at bottom right, #0c1d33 0%, transparent 35%),
    var(--background);

  color: var(--text-primary);
  overflow-x: hidden;
  position: relative;
  transition:
    background 0.4s ease,
    color 0.4s ease;
}

.background-glow {
  position: fixed;
  width: 400px;
  height: 400px;
  border-radius: 50%;
  filter: blur(120px);
  opacity: 0.25;
  z-index: -1;
}

.glow-1 {
  background: #2563eb;
  top: -100px;
  left: -100px;
}

.glow-2 {
  background: #14b8a6;
  bottom: -120px;
  right: -100px;
}

.container {
  width: min(1200px, 92%);
  margin: 0 auto;
  padding-bottom: 80px;
}

.header {
  width: min(1200px, 92%);
  margin: 0 auto;

  display: flex;
  justify-content: space-between;
  align-items: center;

  padding: 28px 0;
}

.hero {
  padding: 60px 0 50px;
}

.hero-content {
  max-width: 700px;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  padding: 10px 16px;
  border-radius: 999px;
  background: var(--accent-soft);
  color: var(--accent);
  font-size: 0.9rem;
  font-weight: 600;
  margin-bottom: 24px;
}

.hero h2 {
  font-size: clamp(2rem, 5vw, 4.8rem);
  line-height: 1.05;
  letter-spacing: -2px;
  margin-bottom: 20px;
}

.hero p {
  color: var(--text-secondary);
  font-size: 1.05rem;
  line-height: 1.7;
  max-width: 620px;
}

.section-title {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 28px;
}

.section-title h3 {
  font-size: 1.3rem;
  font-weight: 600;
}

.search-section {
  margin-bottom: 50px;
}
