@font-face {
  font-family: Archivo;
  font-style: normal;
  font-weight: 500 900;
  font-display: swap;
  src: url("/fonts/archivo-latin.woff2") format("woff2");
}
@font-face {
  font-family: "DM Sans";
  font-style: normal;
  font-weight: 400 700;
  font-display: swap;
  src: url("/fonts/dm-sans-latin.woff2") format("woff2");
}
:root {
  color-scheme: dark;
  --navy: #14233f;
  --coral: #ff8f73;
  --ground: #f3f1ec;
  font-family: "DM Sans", sans-serif;
  color: var(--ground);
  background: var(--navy);
  font-synthesis: none;
  -webkit-font-smoothing: antialiased;
}
* {
  box-sizing: border-box;
}
body {
  margin: 0;
}
a {
  color: inherit;
  text-decoration: none;
}
a:hover {
  color: var(--coral);
}
a:focus-visible {
  outline: 2px solid var(--coral);
  outline-offset: 6px;
}
::selection {
  background: var(--coral);
  color: var(--navy);
}
.launch {
  min-height: 100svh;
  display: grid;
  grid-template-rows: auto 1fr auto;
  background: radial-gradient(
    ellipse at 50% 38%,
    #203859 0%,
    #14233f 52%,
    #0c1629 100%
  );
}
.site-header,
.site-footer {
  padding: 32px 48px;
}
.site-header {
  display: flex;
  justify-content: flex-end;
}
.login {
  display: inline-flex;
  align-items: center;
  gap: 28px;
  min-height: 44px;
  padding: 11px 20px;
  border: 1px solid #7b879b;
  border-radius: 4px;
  font-size: 14px;
}
.login:hover {
  border-color: var(--coral);
}
.hero {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 50px 24px 88px;
  text-align: center;
}
.wordmark {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.13em;
  margin: 0;
  font-family: Archivo, "Arial Narrow", sans-serif;
  font-weight: 900;
  font-size: clamp(78px, 15vw, 204px);
  letter-spacing: -0.04em;
  line-height: 0.9;
  color: var(--coral);
}
.wordmark svg {
  display: block;
  width: 3.15em;
  height: 0.36em;
  fill: currentColor;
}
.tagline {
  margin: 32px 0 0;
  font-size: clamp(15px, 2vw, 21px);
  line-height: 1.6;
}
.coming-soon {
  display: flex;
  align-items: center;
  gap: 10px;
  margin: 48px 0 0;
  color: #b7c2d2;
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}
.coming-soon span {
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--coral);
}
.site-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 24px;
  color: #b7c2d2;
  font-size: 12px;
}
.site-footer nav {
  display: flex;
  gap: 28px;
}
.site-footer a {
  display: inline-flex;
  align-items: center;
  min-height: 44px;
}
.legal {
  background: var(--ground);
  color: var(--navy);
  color-scheme: light;
}
.legal .site-header {
  justify-content: space-between;
  align-items: center;
}
.home-link {
  font:
    900 24px Archivo,
    sans-serif;
  letter-spacing: -0.04em;
}
.legal main {
  max-width: 840px;
  margin: 32px auto 96px;
  padding: 0 24px;
  line-height: 1.75;
  overflow-wrap: anywhere;
}
.legal h1,
.legal h2 {
  font-family: Archivo, sans-serif;
  line-height: 1.2;
  letter-spacing: -0.035em;
}
.legal h1 {
  font-size: clamp(32px, 6vw, 48px);
}
.legal h2 {
  margin-top: 40px;
  font-size: 24px;
}
.legal main a {
  text-decoration: underline;
  text-underline-offset: 3px;
}
.legal a:hover {
  color: #8a2f1d;
}
.legal li {
  margin-bottom: 10px;
}
.legal .site-footer {
  color: #535b6b;
  border-top: 1px solid #dedbd3;
}
.table-scroll {
  overflow-x: auto;
}
table {
  width: 100%;
  border-collapse: collapse;
  font-size: 14px;
}
th,
td {
  text-align: left;
  vertical-align: top;
  padding: 12px;
  border: 1px solid #d7d4cb;
}
th {
  background: #e8e5dd;
}
.draft-notice {
  padding: 16px 20px;
  border-left: 3px solid #b2492e;
  background: #fbe5dc;
}
@media (max-width: 600px) {
  .site-header,
  .site-footer {
    padding: 20px 24px;
  }
  .hero {
    padding: 36px 20px 64px;
  }
  .tagline {
    max-width: 260px;
    margin-top: 26px;
  }
  .coming-soon {
    margin-top: 36px;
  }
  .site-footer {
    flex-wrap: wrap;
    gap: 4px 24px;
  }
  .site-footer nav {
    gap: 20px;
  }
}
