@font-face {
  font-family: "Figtree";
  src: url("/Figtree.ttf") format("truetype");
  font-display: swap;
  font-style: normal;
  font-weight: 400 800;
}

:root {
  color-scheme: light;
  font-family: "Figtree", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: #15202e;
  background: #ffffff;
  font-synthesis: none;
  text-rendering: optimizeLegibility;
  --ink: #15202e;
  --grey: #77839a;
  --line: #e9ecf1;
  --surface: #ffffff;
  --fill: #f3f5f8;
  --teal: #0e7c6b;
}

* {
  box-sizing: border-box;
}

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

body {
  min-height: 100svh;
  margin: 0;
  display: grid;
  grid-template-rows: auto 1fr auto;
  background: var(--surface);
}

a {
  color: inherit;
}

.site-header {
  border-bottom: 1px solid var(--line);
}

.header-inner {
  width: min(100%, 1120px);
  min-height: 76px;
  margin-inline: auto;
  padding: 0 32px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--ink);
  font-size: 22px;
  font-weight: 750;
  letter-spacing: -0.8px;
  line-height: 1;
  text-decoration: none;
}

.brand-mark {
  width: 36px;
  height: 36px;
  flex: 0 0 auto;
}

.pilot-label {
  color: var(--grey);
  font-size: 13px;
  font-weight: 600;
}

main {
  width: 100%;
}

.launch-main {
  display: grid;
  align-items: center;
}

.launchpad {
  width: min(100%, 1120px);
  margin-inline: auto;
  padding: 88px 32px 104px;
  display: grid;
  grid-template-columns: minmax(0, 0.85fr) minmax(420px, 1fr);
  gap: clamp(72px, 10vw, 148px);
  align-items: end;
}

.launch-copy {
  align-self: start;
}

.section-label {
  margin: 0 0 14px;
  color: var(--grey);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.9px;
  line-height: 1.3;
  text-transform: uppercase;
}

h1 {
  max-width: 580px;
  margin: 0;
  color: var(--ink);
  font-size: clamp(42px, 6.5vw, 76px);
  font-weight: 700;
  letter-spacing: -2.8px;
  line-height: 0.98;
}

.intro {
  max-width: 510px;
  margin: 28px 0 0;
  color: var(--grey);
  font-size: 17px;
  font-weight: 500;
  line-height: 1.55;
}

.destinations {
  border-top: 1px solid var(--line);
}

.destinations a {
  min-height: 148px;
  display: grid;
  grid-template-columns: minmax(0, 1fr) 44px;
  gap: 24px;
  align-items: center;
  border-bottom: 1px solid var(--line);
  text-decoration: none;
}

.destination-copy,
.destinations strong,
.description,
.destination-audience {
  display: block;
}

.destination-audience {
  margin-bottom: 8px;
  color: var(--grey);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.8px;
  text-transform: uppercase;
}

.destinations strong {
  color: var(--ink);
  font-size: 20px;
  font-weight: 650;
  letter-spacing: -0.3px;
}

.description {
  margin-top: 6px;
  color: var(--grey);
  font-size: 14px;
  font-weight: 500;
  line-height: 1.45;
}

.arrow {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: var(--fill);
  color: var(--ink);
  font-size: 20px;
  line-height: 1;
  transition:
    background-color 140ms ease,
    color 140ms ease,
    transform 140ms ease;
}

.destinations a:hover .arrow,
.destinations a:focus-visible .arrow {
  background: var(--teal);
  color: var(--surface);
  transform: translateX(2px);
}

.brand:focus-visible,
.destinations a:focus-visible,
footer a:focus-visible,
.legal a:focus-visible {
  outline: 2px solid var(--teal);
  outline-offset: 5px;
}

footer {
  width: min(100%, 1120px);
  min-height: 64px;
  margin-inline: auto;
  padding: 18px 32px;
  border-top: 1px solid var(--line);
  color: var(--grey);
  font-size: 13px;
  font-weight: 500;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

footer nav {
  display: flex;
  gap: 22px;
}

footer a {
  text-underline-offset: 3px;
}

.legal-main {
  padding: 72px 32px 96px;
}

.legal {
  width: min(100%, 720px);
  margin-inline: auto;
  color: #455164;
  font-size: 16px;
  font-weight: 500;
  line-height: 1.7;
}

.legal h1 {
  font-size: clamp(42px, 7vw, 64px);
  letter-spacing: -2.1px;
  line-height: 1;
}

.legal h2 {
  margin: 36px 0 8px;
  color: var(--ink);
  font-size: 18px;
  font-weight: 700;
  letter-spacing: -0.25px;
}

.legal p {
  margin: 0 0 16px;
}

.legal a {
  color: var(--teal);
  text-underline-offset: 3px;
}

.effective {
  margin: 14px 0 38px !important;
  color: var(--grey);
  font-size: 13px;
}

@media (max-width: 760px) {
  .header-inner {
    min-height: 68px;
    padding-inline: 24px;
  }

  .launchpad {
    padding: 64px 24px 80px;
    grid-template-columns: 1fr;
    gap: 58px;
  }

  h1 {
    font-size: clamp(42px, 14vw, 64px);
    letter-spacing: -2.2px;
  }

  .destinations a {
    min-height: 132px;
  }

  footer {
    padding-inline: 24px;
  }

  .legal-main {
    padding: 56px 24px 80px;
  }
}

@media (max-width: 480px) {
  .pilot-label {
    display: none;
  }

  .launchpad {
    padding-top: 52px;
  }

  .intro {
    font-size: 16px;
  }

  .destinations a {
    grid-template-columns: minmax(0, 1fr) 42px;
  }

  footer {
    align-items: flex-start;
    flex-direction: column;
    gap: 10px;
  }
}

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