:root {
  --navy: #0b2d52;
  --deep-blue: #154c86;
  --accent: #2f7de1;
  --ink: #e8eef6;
  --muted: #8fa3bb;
  --white: #ffffff;
  --font-heading: "Space Grotesk", -apple-system, "Segoe UI", Roboto, sans-serif;
  --font-body: Inter, -apple-system, "Segoe UI", Roboto, sans-serif;
}

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

html,
body {
  height: 100%;
}

body {
  margin: 0;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  background: var(--navy);
  color: var(--ink);
  font-family: var(--font-body);
  font-weight: 400;
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
}

.glow {
  position: fixed;
  inset: -20% auto auto 50%;
  width: min(72rem, 140vw);
  height: 42rem;
  transform: translateX(-50%);
  background: radial-gradient(
    ellipse at center,
    rgba(47, 125, 225, 0.28) 0%,
    rgba(21, 76, 134, 0.12) 42%,
    transparent 70%
  );
  pointer-events: none;
  z-index: 0;
}

.top {
  position: relative;
  z-index: 3;
  flex: 0 0 auto;
  width: 100%;
  background: #ffffff;
  padding: 0 1.75rem;
  line-height: 0;
}

.hero,
.foot {
  position: relative;
  z-index: 1;
}

.mark {
  display: inline-flex;
  align-items: center;
  text-decoration: none;
  line-height: 0;
}

.mark img {
  display: block;
  height: 71px;
  width: auto;
  background: #ffffff;
}

.hero {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 2rem 1.75rem 4rem;
  max-width: 44rem;
  margin: 0 auto;
  width: 100%;
  text-align: center;
}

.hero h1 {
  margin: 0 0 1.25rem;
  color: var(--white);
  font-family: var(--font-heading);
  font-size: clamp(2.25rem, 6vw, 3.5rem);
  font-weight: 600;
  letter-spacing: -0.035em;
  line-height: 1.1;
}

.lede {
  margin: 0 auto 1.75rem;
  max-width: 34rem;
  color: var(--muted);
  font-size: 1.0625rem;
  line-height: 1.55;
}

.cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.7rem 1.25rem;
  border-radius: 999px;
  background: var(--accent);
  color: var(--white);
  font-size: 0.9375rem;
  font-weight: 500;
  text-decoration: none;
}

.cta:hover {
  filter: brightness(1.08);
}

.foot {
  padding: 1.25rem 1.75rem 1.75rem;
  text-align: center;
}

.foot p {
  margin: 0;
  color: rgba(143, 163, 187, 0.8);
  font-size: 0.8125rem;
  line-height: 1.45;
}

.foot p + p {
  margin-top: 0.15rem;
}

.foot-name {
  color: rgba(232, 238, 246, 0.88);
  font-weight: 500;
  margin-bottom: 0.2rem;
}

.foot a {
  color: rgba(232, 238, 246, 0.88);
  text-decoration: underline;
  text-underline-offset: 2px;
}

.foot a:hover {
  color: var(--white);
}

.legal {
  flex: 1;
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: 40rem;
  margin: 0 auto;
  padding: 2rem 1.75rem 3rem;
  text-align: left;
}

.legal h1 {
  margin: 0 0 0.4rem;
  color: var(--white);
  font-family: var(--font-heading);
  font-size: clamp(1.5rem, 4vw, 2rem);
  font-weight: 600;
  letter-spacing: -0.03em;
  line-height: 1.2;
}

.legal .updated {
  margin: 0 0 1.5rem;
  color: var(--muted);
  font-size: 0.8125rem;
}

.legal h2 {
  margin: 1.5rem 0 0.5rem;
  color: var(--white);
  font-family: var(--font-heading);
  font-size: 1.0625rem;
  font-weight: 600;
}

.legal p,
.legal li {
  margin: 0 0 0.75rem;
  color: var(--muted);
  font-size: 0.9375rem;
  line-height: 1.6;
}

.legal ul {
  margin: 0 0 0.75rem;
  padding-left: 1.2rem;
}

.legal a {
  color: #9cc4f5;
}

@media (min-width: 720px) {
  .top {
    padding: 0 2.5rem;
  }

  .hero {
    padding: 2rem 2.5rem 5rem;
  }

  .legal {
    padding: 2.5rem 2.5rem 4rem;
  }

  .foot {
    padding: 1.5rem 2.5rem 2rem;
  }
}
