:root {
  color-scheme: light;
  font-family:
    Inter,
    ui-sans-serif,
    -apple-system,
    BlinkMacSystemFont,
    'Segoe UI',
    sans-serif;
  color: #172027;
  background: #f4f8fc;
  font-synthesis: none;
}

* {
  box-sizing: border-box;
}

html {
  min-width: 320px;
  min-height: 100%;
  background: #f4f8fc;
}

body {
  min-height: 100vh;
  min-height: 100dvh;
  margin: 0;
  background:
    radial-gradient(circle at 85% 15%, rgb(43 134 205 / 16%), transparent 34rem),
    radial-gradient(circle at 8% 82%, rgb(0 90 158 / 10%), transparent 30rem),
    linear-gradient(145deg, #fbfdff 0%, #f1f7fc 52%, #f7fbfe 100%);
}

body::before {
  position: fixed;
  inset: 0;
  z-index: -1;
  background-image:
    linear-gradient(rgb(0 90 158 / 3%) 1px, transparent 1px),
    linear-gradient(90deg, rgb(0 90 158 / 3%) 1px, transparent 1px);
  background-size: 32px 32px;
  mask-image: linear-gradient(to bottom, transparent, black 24%, black 76%, transparent);
  content: '';
  pointer-events: none;
}

.page-shell {
  display: grid;
  grid-template-rows: 1fr auto;
  width: min(100% - 40px, 1180px);
  min-height: 100vh;
  min-height: 100dvh;
  margin: 0 auto;
}

.hero {
  display: grid;
  align-content: center;
  min-height: 78vh;
  padding: 72px 0 56px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  width: fit-content;
  margin-bottom: clamp(64px, 12vh, 128px);
  color: #11334b;
  font-size: 1.35rem;
  font-weight: 700;
  letter-spacing: -0.03em;
}

.brand img {
  width: 44px;
  height: 44px;
  border-radius: 10px;
  box-shadow: 0 12px 32px rgb(0 90 158 / 18%);
}

.hero-copy {
  max-width: 820px;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  min-height: 32px;
  margin: 0 0 24px;
  padding: 6px 12px;
  border: 1px solid rgb(0 90 158 / 18%);
  border-radius: 999px;
  color: #005a9e;
  background: rgb(255 255 255 / 72%);
  font-size: 0.76rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

h1 {
  max-width: 780px;
  margin: 0;
  color: #102b3d;
  font-size: clamp(3rem, 8vw, 6.75rem);
  font-weight: 730;
  letter-spacing: -0.072em;
  line-height: 0.96;
  text-wrap: balance;
}

h1 span {
  display: block;
  color: #0067b5;
}

.intro {
  max-width: 650px;
  margin: 36px 0 0;
  color: #50697a;
  font-size: clamp(1.05rem, 2.2vw, 1.35rem);
  line-height: 1.6;
  text-wrap: pretty;
}

.status {
  display: flex;
  align-items: center;
  gap: 10px;
  width: fit-content;
  margin: 40px 0 0;
  color: #355466;
  font-size: 0.92rem;
  font-weight: 650;
}

.status-dot {
  width: 9px;
  height: 9px;
  border: 2px solid #d6edff;
  border-radius: 50%;
  background: #0082d9;
  box-shadow: 0 0 0 5px rgb(0 130 217 / 10%);
}

footer {
  display: flex;
  justify-content: space-between;
  gap: 24px;
  padding: 28px 0 34px;
  border-top: 1px solid rgb(17 51 75 / 10%);
  color: #69808f;
  font-size: 0.82rem;
}

@media (max-width: 640px) {
  .page-shell {
    width: min(100% - 32px, 1180px);
  }

  .hero {
    min-height: 82vh;
    padding-top: 38px;
  }

  .brand {
    margin-bottom: 64px;
  }

  h1 {
    font-size: clamp(3rem, 14.5vw, 4.75rem);
    letter-spacing: -0.065em;
  }

  .intro {
    margin-top: 28px;
  }

  footer {
    flex-direction: column;
    gap: 8px;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
  }
}
