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

body {
  font-family: 'Poppins', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
}

.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  background: linear-gradient(135deg, #0b1638 0%, #16264f 35%, #2c4d82 70%, #4a7bb5 100%);
  color: #ffffff;
  padding: 6vw;
}

.hero-content {
  max-width: 40rem;
}

.hero-content h1 {
  font-size: clamp(2.5rem, 6vw, 4.5rem);
  font-weight: 700;
  letter-spacing: 0.02em;
  line-height: 1.1;
  margin-bottom: 1rem;
}

.hero-content h2 {
  font-size: clamp(1.25rem, 3vw, 2rem);
  font-weight: 300;
  color: #a9c3e8;
  margin-bottom: 1.5rem;
}

.hero-content p {
  font-size: clamp(1rem, 1.5vw, 1.125rem);
  font-weight: 300;
  line-height: 1.6;
  color: #d3e0f2;
}

@media (max-width: 600px) {
  .hero {
    padding: 8vw 6vw;
  }
}
