* , *::before, *::after {
  box-sizing: border-box;
}

html, body {
  height: 100%;
  margin: 0;
  padding: 0;
}

body {
  font-family: 'Inter', -apple-system, sans-serif;
  -webkit-font-smoothing: antialiased;
}

.page {
  position: relative;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  background-color: #070D1A;
  background-image:
    radial-gradient(ellipse 700px 500px at 78% 18%, rgba(1,69,132,0.10) 0%, transparent 60%),
    radial-gradient(ellipse 300px 300px at 25% 75%, rgba(1,69,132,0.05) 0%, transparent 60%),
    radial-gradient(circle at 1px 1px, rgba(255,255,255,0.025) 1px, transparent 0);
  background-size: auto, auto, 32px 32px;
}

.orb {
  position: absolute;
  pointer-events: none;
  border-radius: 50%;
  filter: blur(80px);
}

.orb--blue {
  width: 640px;
  height: 640px;
  top: 6%;
  right: 4%;
  background: radial-gradient(circle, rgba(1,69,132,0.16) 0%, transparent 70%);
}

.orb--coral {
  width: 380px;
  height: 380px;
  bottom: 12%;
  left: 8%;
  background: radial-gradient(circle, rgba(254,167,129,0.08) 0%, transparent 70%);
}

.content {
  position: relative;
  z-index: 10;
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 96px 24px;
}

.logo {
  height: 34px;
  width: auto;
  margin-bottom: 40px;
}

.eyebrow {
  font-family: 'Inter', -apple-system, sans-serif;
  color: rgba(254,167,129,0.88);
  font-size: 12px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  margin-bottom: 20px;
}

.headline {
  font-family: 'Didact Gothic', sans-serif;
  font-size: 40px;
  line-height: 1.05;
  letter-spacing: -1px;
  color: #EEF1F7;
  max-width: 900px;
  margin: 0 0 24px;
  font-weight: 400;
}

.headline-accent {
  color: #FEA781;
  text-shadow: 0 0 24px rgba(254,167,129,0.35);
}

.subtext {
  font-family: 'Inter', -apple-system, sans-serif;
  font-size: 16px;
  color: #8A96A8;
  line-height: 1.65;
  max-width: 540px;
  margin: 0 0 40px;
}

.email-btn {
  display: inline-flex;
  align-items: center;
  height: 44px;
  padding: 0 28px;
  background: #014584;
  color: #fff;
  font-family: 'Didact Gothic', sans-serif;
  font-size: 15px;
  letter-spacing: 0.04em;
  border-radius: 8px;
  border: 0;
  cursor: pointer;
  text-decoration: none;
  white-space: nowrap;
  margin-bottom: 48px;
  transition: all 150ms ease;
}

.email-btn:hover {
  background: #0157A8;
  box-shadow: 0 0 0 1px rgba(1,69,132,0.60), 0 4px 20px rgba(1,69,132,0.40);
}

.socials {
  display: flex;
  gap: 24px;
}

.social {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  text-decoration: none;
}

.social svg {
  width: 18px;
  height: 18px;
  stroke: #4E5A6C;
  transition: stroke 150ms ease;
}

.social span {
  font-family: 'Inter', -apple-system, sans-serif;
  font-size: 10px;
  color: #4E5A6C;
  letter-spacing: 0.04em;
  transition: color 150ms ease;
}

.social:hover svg {
  stroke: #8A96A8;
}

.social:hover span {
  color: #8A96A8;
}

.footer {
  position: relative;
  z-index: 10;
  border-top: 1px solid rgba(255,255,255,0.05);
  padding: 20px 0;
  text-align: center;
}

.footer-text {
  font-family: 'JetBrains Mono', monospace;
  font-size: 11px;
  color: rgba(78,90,108,0.65);
}

@media (min-width: 640px) {
  .headline {
    font-size: 56px;
  }
}

@media (min-width: 1024px) {
  .headline {
    font-size: 64px;
  }
}
