:root {
  color-scheme: light dark;
  font-family: Arial, Helvetica, sans-serif;
  line-height: 1.5;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  background: linear-gradient(135deg, #0f172a, #2563eb);
  color: #f8fafc;
}

.hero {
  min-height: 70vh;
  display: grid;
  place-items: center;
  padding: 2rem;
  text-align: center;
}

.eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.3rem;
  color: #bfdbfe;
  font-size: 0.9rem;
  margin-bottom: 0.5rem;
}

h1 {
  font-size: clamp(2rem, 5vw, 3.5rem);
  margin: 0 0 1rem;
}

.intro {
  font-size: 1.1rem;
  max-width: 600px;
  margin: 0 auto 1.5rem;
}

.actions {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}

.button {
  display: inline-block;
  padding: 0.8rem 1.2rem;
  border-radius: 999px;
  text-decoration: none;
  font-weight: 600;
}

.button.primary {
  background: #f8fafc;
  color: #0f172a;
}

.button.secondary {
  background: transparent;
  color: #f8fafc;
  border: 1px solid #f8fafc;
}

.about {
  max-width: 700px;
  margin: 0 auto;
  padding: 2rem 1.5rem 3rem;
  text-align: center;
}
