@font-face {
  font-family: "Fraunces";
  src: url("assets/Fraunces.ttf") format("truetype");
  font-weight: 100 900;
  font-display: swap;
}

@font-face {
  font-family: "Nunito Sans";
  src: url("assets/NunitoSans-Variable.ttf") format("truetype");
  font-weight: 200 1000;
  font-display: swap;
}

:root {
  --navy: #1B548D;
  --coral: #E2554A;
  --cream: #FFF8F0;
  --sky: #DDEFF8;
  --sky-border: #A9D2F4;
  --ink: #26445E;
}

* {
  box-sizing: border-box;
}

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

body {
  background:
    radial-gradient(circle at 50% -24%, rgba(221, 239, 248, 0.82), transparent 51%),
    var(--cream);
  color: var(--ink);
  font-family: "Nunito Sans", sans-serif;
  font-size: 19px;
  font-weight: 400;
  line-height: 1.6;
}

.page-shell {
  display: grid;
  min-height: 100svh;
  place-items: center;
  overflow: hidden;
  padding: clamp(42px, 7vw, 92px) 24px;
}

.intro {
  position: relative;
  width: min(100%, 920px);
  isolation: isolate;
}

.intro::before,
.intro::after {
  position: absolute;
  z-index: -1;
  width: clamp(280px, 43vw, 620px);
  aspect-ratio: 1;
  border: 1px solid var(--sky-border);
  border-radius: 50%;
  content: "";
  opacity: 0.45;
  pointer-events: none;
}

.intro::before {
  top: -270px;
  right: -330px;
}

.intro::after {
  bottom: -340px;
  left: -360px;
}

.content {
  max-width: 760px;
  margin: 0 auto;
  text-align: center;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 13px;
  margin: 0 0 20px;
  color: var(--navy);
  font-size: 16px;
  font-weight: 600;
  letter-spacing: 0.015em;
}

.eyebrow::before,
.eyebrow::after {
  width: 26px;
  height: 1px;
  background: var(--coral);
  content: "";
}

h1 {
  margin: 0;
  color: var(--navy);
  font-family: "Fraunces", Georgia, serif;
  font-size: clamp(55px, 7.5vw, 92px);
  font-weight: 600;
  letter-spacing: -0.052em;
  line-height: 1.04;
  text-wrap: balance;
}

.lead {
  max-width: 660px;
  margin: 32px auto 0;
  text-wrap: pretty;
}

.lead a {
  color: var(--navy);
  font-weight: 600;
  text-decoration: underline;
  text-decoration-color: var(--coral);
  text-decoration-thickness: 2px;
  text-underline-offset: 4px;
  transition: color 0.15s ease;
}

.lead a:hover,
.lead a:focus-visible {
  color: var(--coral);
}

.lead a:focus-visible {
  outline: 2px solid var(--sky-border);
  outline-offset: 3px;
  border-radius: 3px;
}

.status {
  display: inline-block;
  margin: 42px 0 0;
  padding: 9px 17px;
  border: 1px solid var(--sky-border);
  border-radius: 999px;
  background: var(--sky);
  color: var(--navy);
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.035em;
}

@media (max-width: 600px) {
  body {
    font-size: 17px;
  }

  .page-shell {
    padding: 54px 25px;
  }

  .intro::before {
    top: -220px;
    right: -280px;
  }

  .intro::after {
    bottom: -260px;
    left: -280px;
  }

  .eyebrow {
    margin-bottom: 17px;
    font-size: 15px;
  }

  h1 {
    font-size: clamp(50px, 13vw, 70px);
  }

  .lead {
    margin-top: 25px;
  }

  .status {
    margin-top: 32px;
  }
}
