* {
  box-sizing: border-box;
}

html, body {
  margin: 0;
  min-height: 100%;
  font-family: Arial, Helvetica, sans-serif;
  background:
    radial-gradient(circle at top, rgba(255, 189, 89, 0.3), transparent 35%),
    linear-gradient(135deg, #0f172a, #1e293b 55%, #334155);
  color: #f8fafc;
}

body {
  min-height: 100vh;
}

.page {
  min-height: 100vh;
  display: grid;
  place-items: center;
  padding: 24px;
}

.hero {
  width: min(720px, 100%);
  padding: 56px 32px;
  text-align: center;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 28px;
  background: rgba(15, 23, 42, 0.72);
  backdrop-filter: blur(10px);
  box-shadow: 0 24px 80px rgba(0, 0, 0, 0.35);
}

.eyebrow {
  margin: 0 0 16px;
  text-transform: uppercase;
  letter-spacing: 0.28em;
  color: #fdba74;
  font-size: 0.85rem;
}

.hero h1 {
  margin: 0;
  font-size: clamp(2.5rem, 6vw, 4.8rem);
  line-height: 1;
}

.lead {
  margin: 20px auto 0;
  max-width: 42rem;
  font-size: 1.05rem;
  line-height: 1.7;
  color: #cbd5e1;
}

.banner {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-top: 28px;
  padding: 14px 22px;
  border-radius: 999px;
  background: linear-gradient(135deg, #fb923c, #f59e0b);
  color: #111827;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

@media (max-width: 640px) {
  .hero {
    padding: 40px 20px;
    border-radius: 22px;
  }

  .eyebrow {
    letter-spacing: 0.18em;
  }
}