:root {
  color-scheme: dark;
  --ink: #f0f6fb;
  --muted: #9aa8b5;
  --hairline: rgba(219, 239, 252, 0.2);
  --ocean: #93d8fb;
  --page: #03070b;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  min-height: 100%;
  background: var(--page);
}

body {
  min-width: 320px;
  min-height: 100vh;
  margin: 0;
  color: var(--ink);
  background: var(--page);
}

a {
  color: inherit;
  text-underline-offset: 0.23em;
  text-decoration-color: rgba(147, 216, 251, 0.55);
}

a:hover {
  color: var(--ocean);
}

a:focus-visible {
  outline: 2px solid var(--ocean);
  outline-offset: 5px;
}

.landing-page {
  display: grid;
  grid-template-rows: minmax(0, 1fr) auto;
}

.hero {
  isolation: isolate;
  position: relative;
  min-height: min(760px, calc(100vh - 70px));
  overflow: hidden;
  background: #020609;
}

.hero-art,
.hero-shade {
  inset: 0;
  position: absolute;
  width: 100%;
  height: 100%;
}

.hero-art {
  z-index: -2;
  object-fit: cover;
  object-position: 61% 50%;
  opacity: 0.88;
}

.hero-shade {
  z-index: -1;
  background:
    linear-gradient(90deg, rgba(2, 6, 9, 0.98) 0%, rgba(2, 6, 9, 0.91) 34%, rgba(2, 6, 9, 0.37) 73%, rgba(2, 6, 9, 0.18) 100%),
    linear-gradient(180deg, rgba(2, 6, 9, 0.28), rgba(2, 6, 9, 0.72));
}

.hero-content {
  display: flex;
  flex-direction: column;
  min-height: inherit;
  padding: clamp(2rem, 5vw, 4.75rem) clamp(1.5rem, 7vw, 8rem) clamp(2.75rem, 7vh, 5rem);
}

.wordmark {
  margin: 0;
  font-size: 0.73rem;
  font-weight: 700;
  letter-spacing: 0.28em;
  line-height: 1;
}

.wordmark-link {
  color: var(--ink);
  text-decoration: none;
}

.hero-copy {
  max-width: 720px;
  margin: auto 0;
  padding: 4.5rem 0 3.4rem;
}

h1,
h2,
p {
  margin-top: 0;
}

.hero h1 {
  max-width: 18ch;
  margin-bottom: 1.75rem;
  font-size: clamp(2.35rem, 5vw, 5.55rem);
  font-weight: 470;
  letter-spacing: -0.061em;
  line-height: 0.97;
}

.platforms {
  max-width: 34rem;
  margin-bottom: 0.65rem;
  color: #d8e8f2;
  font-size: clamp(1rem, 1.4vw, 1.21rem);
  line-height: 1.45;
}

.coming-soon {
  margin-bottom: 0;
  color: var(--ocean);
  font-size: clamp(1rem, 1.4vw, 1.21rem);
  font-weight: 600;
  letter-spacing: 0.01em;
}

.site-footer {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 0.35rem 0.58rem;
  min-height: 70px;
  padding: 1.2rem 1.5rem;
  color: #9caab5;
  font-size: 0.72rem;
  letter-spacing: 0.025em;
  line-height: 1.5;
  text-align: center;
  background: #03070b;
  border-top: 1px solid var(--hairline);
}

.site-footer a {
  color: #c5d2dc;
  text-decoration: none;
}

.site-footer a:hover,
.site-footer a[aria-current="page"] {
  color: var(--ocean);
}

.document-page {
  display: flex;
  flex-direction: column;
}

.document-header {
  width: min(100% - 3rem, 70rem);
  margin: 0 auto;
  padding: 2.25rem 0 1.3rem;
}

.document-content {
  width: min(100% - 3rem, 49rem);
  margin: 0 auto;
  padding: clamp(3.5rem, 9vw, 7rem) 0 clamp(4rem, 9vw, 7rem);
}

.document-content h1 {
  max-width: 13ch;
  margin-bottom: 1.7rem;
  font-size: clamp(2.7rem, 7vw, 5.6rem);
  font-weight: 480;
  letter-spacing: -0.062em;
  line-height: 0.94;
}

.eyebrow {
  margin-bottom: 1.25rem;
  color: var(--ocean);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.17em;
  text-transform: uppercase;
}

.lead {
  max-width: 41rem;
  margin-bottom: 3.6rem;
  color: #c4d2dc;
  font-size: clamp(1.13rem, 2vw, 1.39rem);
  letter-spacing: -0.02em;
  line-height: 1.48;
}

.contact-email {
  margin-bottom: 4.75rem;
  font-size: clamp(1.5rem, 3vw, 2.3rem);
  letter-spacing: -0.04em;
}

.company-address {
  color: var(--muted);
  line-height: 1.62;
}

.company-address p {
  margin-bottom: 0;
}

.document-content section {
  max-width: 43rem;
  padding: 1.85rem 0;
  border-top: 1px solid var(--hairline);
}

.document-content section:first-of-type {
  margin-top: 1rem;
}

.document-content h2 {
  margin-bottom: 0.7rem;
  color: #e9f2f7;
  font-size: 1rem;
  font-weight: 650;
  letter-spacing: -0.015em;
}

.document-content section p {
  margin-bottom: 0;
  color: #b3c0ca;
  font-size: 0.97rem;
  line-height: 1.65;
}

.document-content section p + p {
  margin-top: 1rem;
}

.updated {
  margin: 2.4rem 0 0;
  color: #758591;
  font-size: 0.78rem;
}

.document-footer {
  margin-top: auto;
}

@media (max-width: 640px) {
  .hero {
    min-height: min(700px, calc(100vh - 102px));
  }

  .hero-art {
    object-position: 69% 50%;
  }

  .hero-shade {
    background:
      linear-gradient(90deg, rgba(2, 6, 9, 0.94), rgba(2, 6, 9, 0.52)),
      linear-gradient(180deg, rgba(2, 6, 9, 0.22), rgba(2, 6, 9, 0.77));
  }

  .hero-copy {
    padding: 4rem 0 2rem;
  }

  .hero h1 {
    max-width: 15ch;
    letter-spacing: -0.055em;
  }

  .site-footer {
    min-height: 102px;
    padding-inline: 1rem;
  }

  .document-header,
  .document-content {
    width: min(100% - 2.5rem, 49rem);
  }
}

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