:root {
  color-scheme: light;
  --paper: #f5f3eb;
  --ink: #202c2a;
  --muted: #57635d;
  --line: #d7dbd1;
  --orange: #e36639;
  --green: #234d43;
  font-family: Inter, "Helvetica Neue", Arial, sans-serif;
  font-synthesis: none;
  text-rendering: optimizeLegibility;
}
* {
  box-sizing: border-box;
}
body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-size: 16px;
  line-height: 1.65;
}
a {
  color: inherit;
  text-underline-offset: 4px;
}
a:focus-visible {
  outline: 3px solid var(--orange);
  outline-offset: 6px;
}
a:hover {
  color: #ae3b17;
}
.shell {
  width: min(1180px, calc(100% - 96px));
  margin-inline: auto;
}
.masthead {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 34px 0;
}
.wordmark {
  display: flex;
  align-items: center;
  font-size: 28px;
  font-weight: 750;
  letter-spacing: -1.2px;
  text-decoration: none;
  line-height: 1;
}
.mark {
  display: grid;
  place-items: center;
  width: 35px;
  height: 35px;
  background: var(--ink);
  color: var(--paper);
  font-family: Georgia, serif;
  font-style: italic;
  font-weight: 400;
  font-size: 32px;
  border-radius: 50%;
  margin-right: 12px;
  padding-bottom: 5px;
}
.dot {
  color: var(--orange);
}
.quiet-link {
  font-size: 14px;
  text-decoration: none;
}
.hero {
  position: relative;
  isolation: isolate;
  padding: 90px 0 100px;
  min-height: 680px;
  overflow: hidden;
}
.eyebrow {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 2px;
  margin: 0 0 26px;
}
.eyebrow > span {
  display: inline-block;
  background: var(--orange);
  width: 7px;
  height: 7px;
  border-radius: 50%;
  margin-right: 8px;
}
.hero h1 {
  font-size: clamp(72px, 8.5vw, 116px);
  letter-spacing: -7px;
  line-height: 0.98;
  margin: 0 0 32px;
  font-weight: 550;
  max-width: 650px;
}
.hero em {
  font-family: Georgia, "Times New Roman", serif;
  font-weight: 400;
  color: var(--green);
  letter-spacing: -6px;
}
.intro {
  font-size: 19px;
  line-height: 1.6;
  color: var(--muted);
  max-width: 390px;
  margin-bottom: 32px;
}
.button {
  display: inline-flex;
  align-items: center;
  gap: 26px;
  text-decoration: none;
  border: 1px solid var(--ink);
  border-radius: 100px;
  padding: 12px 20px;
  font-size: 14px;
  font-weight: 600;
  background: var(--paper);
}
.button:hover {
  background: var(--ink);
  color: var(--paper);
}
.orbit {
  position: absolute;
  z-index: -1;
  right: -35px;
  top: 90px;
  width: 510px;
  height: 460px;
  transform: rotate(-24deg);
}
.orb {
  position: absolute;
  width: 255px;
  height: 255px;
  left: 132px;
  top: 110px;
  border-radius: 50%;
  background: radial-gradient(
    circle at 27% 23%,
    #acc3a6 0%,
    #628976 35%,
    #254d43 62%,
    #172d28 88%
  );
  box-shadow:
    25px 35px 50px #294e4322,
    inset -12px -5px 24px #0d2926;
}
.orbit-line {
  position: absolute;
  border: 1px solid #91a795;
  border-radius: 50%;
  width: 500px;
  height: 230px;
  left: 5px;
  top: 125px;
}
.orbit-line.two {
  width: 470px;
  height: 205px;
  left: 20px;
  top: 137px;
}
.orbit-line.three {
  width: 535px;
  height: 260px;
  left: -13px;
  top: 109px;
  border-color: #b9c4b4;
}
.satellite {
  position: absolute;
  left: 48px;
  top: 169px;
  width: 26px;
  height: 26px;
  border-radius: 50%;
  background: radial-gradient(circle at 30% 24%, #f1b480, #d9693f 60%, #973a23);
}
.about,
.connection {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  border-top: 1px solid var(--line);
  padding: 62px 0;
}
.about h2,
.connection h2 {
  font-size: 33px;
  line-height: 1.2;
  letter-spacing: -1.2px;
  font-weight: 500;
  margin: 0;
}
.body-copy p {
  margin: 0 0 16px;
  color: var(--muted);
  max-width: 490px;
}
.process {
  list-style: none;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  padding: 0;
  margin: 10px 0 72px;
  gap: 42px;
}
.process li {
  border-top: 1px solid var(--line);
  padding-top: 20px;
}
.process li > span {
  font-size: 12px;
  color: var(--orange);
  font-weight: 650;
}
.process h3 {
  font-size: 21px;
  font-weight: 550;
  margin: 20px 0 8px;
}
.process p {
  font-size: 15px;
  color: var(--muted);
  margin: 0;
  max-width: 270px;
}
.connection {
  padding-bottom: 76px;
}
.text-link {
  font-size: 15px;
  font-weight: 600;
}
.footer {
  border-top: 1px solid var(--line);
  padding: 25px 0 32px;
  display: flex;
  gap: 22px;
  align-items: center;
  justify-content: space-between;
  font-size: 12px;
  color: var(--muted);
}
.footer a {
  text-decoration: none;
}
.policy {
  max-width: 760px;
  padding-block: 72px 80px;
}
.policy h1 {
  font-size: clamp(45px, 6vw, 68px);
  font-weight: 500;
  letter-spacing: -3px;
  line-height: 1.1;
  margin: 0 0 16px;
}
.policy-date {
  font-size: 13px;
  color: var(--muted);
}
.policy-lead {
  font-size: 20px;
  line-height: 1.6;
  margin: 35px 0 48px;
}
.policy section {
  margin: 34px 0;
}
.policy h2 {
  font-size: 22px;
  letter-spacing: -0.5px;
  font-weight: 600;
  margin: 0 0 12px;
}
.policy section p {
  color: var(--muted);
  margin: 0 0 14px;
}
.policy section a {
  color: var(--green);
}
@media (max-width: 950px) {
  .orbit {
    right: -190px;
    opacity: 0.7;
  }
  .hero h1,
  .intro {
    max-width: 65%;
  }
  .about,
  .connection {
    gap: 40px;
  }
}
@media (max-width: 640px) {
  .shell {
    width: calc(100% - 40px);
  }
  .masthead {
    padding-block: 25px;
  }
  .wordmark {
    font-size: 25px;
  }
  .hero {
    padding: 55px 0 45px;
    min-height: 0;
  }
  .hero h1 {
    font-size: 76px;
    letter-spacing: -4px;
    max-width: 100%;
  }
  .hero em {
    letter-spacing: -4px;
  }
  .intro {
    max-width: 310px;
    font-size: 17px;
  }
  .orbit {
    position: relative;
    right: auto;
    top: auto;
    width: 510px;
    height: 400px;
    margin: 10px 0 -70px;
    left: calc(50% - 255px);
    transform: rotate(-24deg) scale(0.75);
    opacity: 1;
  }
  .about,
  .connection {
    grid-template-columns: 1fr;
    gap: 28px;
    padding-block: 40px;
  }
  .about h2,
  .connection h2 {
    font-size: 30px;
  }
  .eyebrow {
    font-size: 10px;
    margin-bottom: 18px;
  }
  .process {
    grid-template-columns: 1fr;
    gap: 25px;
    margin-bottom: 45px;
  }
  .process h3 {
    margin-top: 10px;
  }
  .process p {
    max-width: 100%;
  }
  .footer {
    flex-wrap: wrap;
    gap: 10px 20px;
  }
  .footer span:nth-child(2) {
    display: none;
  }
  .policy {
    padding-block: 48px;
  }
  .policy h1 {
    font-size: 48px;
    letter-spacing: -2px;
  }
  .policy-lead {
    font-size: 18px;
  }
  .policy section {
    margin-block: 30px;
  }
}
