:root {
  color-scheme: dark;
  font-family: Arial, Helvetica, sans-serif;
  background: #08111f;
  color: #f4f8ff;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  min-height: 100vh;
  background:
    radial-gradient(circle at 25% 15%, rgba(36, 214, 255, 0.22), transparent 28rem),
    radial-gradient(circle at 80% 20%, rgba(255, 194, 71, 0.14), transparent 22rem),
    linear-gradient(180deg, #101c36 0%, #08111f 65%, #050914 100%);
}

a {
  color: inherit;
}

.page {
  width: min(980px, calc(100% - 32px));
  min-height: 100vh;
  margin: 0 auto;
  display: grid;
  align-items: center;
  padding: 48px 0;
}

.page.narrow {
  width: min(760px, calc(100% - 32px));
  display: block;
}

.hero {
  padding: 24px 0;
}

.eyebrow {
  margin: 0 0 12px;
  color: #62e6ff;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

h1 {
  margin: 0 0 18px;
  max-width: 820px;
  font-size: clamp(2.2rem, 6vw, 4.8rem);
  line-height: 1;
}

.narrow h1 {
  font-size: 2.4rem;
  line-height: 1.08;
  margin-top: 40px;
}

h2 {
  margin-top: 32px;
  color: #8cf0ff;
}

p {
  color: #d8e4f4;
  font-size: 1rem;
  line-height: 1.65;
}

.lead {
  max-width: 700px;
  font-size: 1.2rem;
}

.actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 28px;
}

.button {
  display: inline-flex;
  min-height: 44px;
  align-items: center;
  justify-content: center;
  padding: 0 18px;
  border-radius: 6px;
  background: #25d7ff;
  color: #06101d;
  font-weight: 700;
  text-decoration: none;
}

.button.secondary {
  border: 1px solid rgba(255, 255, 255, 0.32);
  background: rgba(255, 255, 255, 0.08);
  color: #f4f8ff;
}
