:root {
  color-scheme: light dark;
  font-family: Inter, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  background: #07111f;
  color: #f8fafc;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  min-height: 100vh;
  display: grid;
  place-items: center;
  background: linear-gradient(135deg, #07111f 0%, #12304f 100%);
}

.hero {
  width: min(92vw, 720px);
  padding: 2.5rem;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 24px;
  background: rgba(7, 17, 31, 0.75);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.25);
}

.eyebrow {
  margin: 0 0 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  font-size: 0.85rem;
  color: #7dd3fc;
}

h1 {
  margin: 0 0 1rem;
  font-size: clamp(2rem, 4vw, 2.8rem);
}

p {
  line-height: 1.6;
  color: #cbd5e1;
}

.button {
  display: inline-block;
  margin-top: 1rem;
  padding: 0.8rem 1.1rem;
  border-radius: 999px;
  background: #38bdf8;
  color: #07111f;
  text-decoration: none;
  font-weight: 600;
}
