@font-face {
  font-family: "Plus Jakarta Sans";
  src: url("/assets/fonts/plus-jakarta-sans-variable.woff2") format("woff2");
  font-display: swap;
  font-weight: 200 800;
}

:root {
  color-scheme: light;
  --canvas: #f2f5f8;
  --surface: #ffffff;
  --ink: #0d1828;
  --ink-soft: #26384b;
  --muted: #526274;
  --border: #d4dee7;
  --blue: #0078d4;
  --blue-strong: #0068ba;
  --blue-soft: #dceeff;
  --cyan: #00a7ea;
  --signal: #16843f;
  --signal-soft: #e6f5eb;
  --focus: #006cc0;
  --shadow: 0 1.4rem 4rem rgb(13 24 40 / 12%);
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

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

html {
  background: var(--canvas);
}

body {
  margin: 0;
  background: var(--canvas);
  color: var(--ink);
  font-family: "Plus Jakarta Sans", Arial, sans-serif;
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
}

a {
  color: var(--blue-strong);
}

:where(a, [tabindex]):focus-visible {
  outline: 3px solid var(--focus);
  outline-offset: 3px;
}

.skip-link {
  position: fixed;
  z-index: 100;
  top: 0.75rem;
  left: 0.75rem;
  border-radius: 0.5rem;
  background: var(--ink);
  color: var(--surface);
  padding: 0.65rem 0.9rem;
  font-weight: 750;
  text-decoration: none;
  transform: translateY(-150%);
}

.skip-link:focus {
  transform: translateY(0);
}

.landing-shell {
  display: grid;
  min-height: 100vh;
  min-height: 100dvh;
  grid-template-rows: 4rem minmax(0, 1fr) minmax(3.5rem, auto);
  background: var(--canvas);
}

.masthead {
  display: flex;
  min-width: 0;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid var(--border);
  background: color-mix(in srgb, var(--surface) 94%, transparent);
  padding-inline: clamp(1rem, 4vw, 3rem);
}

.wordmark {
  display: inline-flex;
  align-items: center;
  font-size: 1.375rem;
  font-weight: 800;
  letter-spacing: 0.25em;
  line-height: 1;
  text-decoration: none;
}

.wordmark__ele {
  color: var(--ink);
}

.wordmark__vayt {
  color: var(--blue);
}

.landing-main {
  position: relative;
  display: grid;
  width: min(100%, 90rem);
  min-height: 0;
  margin-inline: auto;
  grid-template-columns: minmax(15rem, 1fr) minmax(22rem, 2fr) minmax(18rem, 1fr);
  align-items: center;
  gap: 1.25rem;
  padding: 1.25rem 3rem;
  outline: 0;
}

.landing-message {
  min-width: 0;
}

.eyebrow {
  margin: 0 0 0.75rem;
  color: var(--blue-strong);
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.landing-message h1 {
  max-width: 8ch;
  margin: 0 0 1rem;
  font-size: clamp(3rem, 4vw, 3.5rem);
  font-weight: 780;
  letter-spacing: -0.05em;
  line-height: 0.98;
}

.landing-lead {
  max-width: 31rem;
  margin: 0 0 1.25rem;
  color: var(--ink-soft);
  font-size: 1.0625rem;
}

.landing-proof {
  display: flex;
  max-width: 28rem;
  align-items: center;
  gap: 0.75rem;
  color: var(--muted);
  font-size: 0.8125rem;
  font-weight: 650;
}

.proof-avatars {
  display: flex;
  flex: 0 0 auto;
  padding-left: 0.5rem;
}

.proof-avatars img {
  width: 2.25rem;
  height: 2.25rem;
  margin-left: -0.5rem;
  border: 2px solid var(--canvas);
  border-radius: 50%;
  object-fit: cover;
}

.landing-visual {
  position: relative;
  width: 100%;
  max-width: min(42rem, calc(100dvh - 10rem));
  margin: 0;
  aspect-ratio: 1;
}

.mosaic {
  position: relative;
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.launch-card {
  position: relative;
  display: grid;
  width: min(100%, 25.5rem);
  justify-self: center;
  gap: 1rem;
  overflow: hidden;
  border: 1px solid var(--border);
  border-radius: 1.1rem;
  background: var(--surface);
  box-shadow: var(--shadow);
  padding: 1.45rem;
}

.launch-card__signal {
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--blue), var(--cyan));
}

.launch-status {
  display: inline-flex;
  width: fit-content;
  min-height: 1.8rem;
  align-items: center;
  gap: 0.55rem;
  border-radius: 999px;
  background: var(--signal-soft);
  color: var(--signal);
  padding: 0.3rem 0.7rem;
  font-size: 0.67rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.launch-status span {
  width: 0.48rem;
  height: 0.48rem;
  border-radius: 50%;
  background: currentColor;
  box-shadow: 0 0 0 0.22rem color-mix(in srgb, currentColor 14%, transparent);
}

.launch-card h2 {
  margin: 0;
  font-size: clamp(1.55rem, 2vw, 1.9rem);
  letter-spacing: -0.045em;
  line-height: 1.08;
}

.launch-card > p {
  margin: -0.2rem 0 0;
  color: var(--muted);
  font-size: 0.84rem;
  line-height: 1.58;
}

.access-status {
  display: grid;
  min-height: 4.25rem;
  align-content: center;
  gap: 0.1rem;
  border: 1px solid color-mix(in srgb, var(--blue) 28%, var(--border));
  border-radius: 0.8rem;
  background: linear-gradient(135deg, var(--blue-soft), color-mix(in srgb, var(--blue-soft) 35%, var(--surface)));
  padding: 0.8rem 1rem;
}

.access-status span {
  color: var(--muted);
  font-size: 0.65rem;
  font-weight: 700;
}

.access-status strong {
  color: var(--blue-strong);
  font-size: 0.95rem;
}

.launch-facts {
  display: grid;
  margin: 0;
  border-block: 1px solid var(--border);
}

.launch-facts div {
  display: grid;
  grid-template-columns: 3.25rem minmax(0, 1fr);
  gap: 0.75rem;
  padding-block: 0.65rem;
}

.launch-facts div + div {
  border-top: 1px solid var(--border);
}

.launch-facts dt {
  color: var(--blue-strong);
  font-size: 0.66rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.launch-facts dd {
  margin: 0;
  color: var(--ink-soft);
  font-size: 0.75rem;
  font-weight: 650;
}

.launch-contact {
  display: grid;
  gap: 0.18rem;
}

.launch-contact span {
  color: var(--muted);
  font-size: 0.68rem;
}

.launch-contact a {
  width: fit-content;
  font-size: 0.78rem;
  font-weight: 750;
  text-decoration: none;
}

.launch-contact a:hover {
  text-decoration: underline;
}

.site-footer {
  display: grid;
  min-height: 3.5rem;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: center;
  gap: 1rem;
  border-top: 1px solid var(--border);
  background: var(--surface);
  padding: 0.5rem clamp(1rem, 4vw, 3rem);
  color: var(--muted);
  font-size: 0.75rem;
}

.site-footer nav,
.footer-identity {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.55rem 1rem;
}

.site-footer a {
  display: inline-flex;
  min-height: 2.75rem;
  align-items: center;
  color: var(--muted);
  font-weight: 650;
  text-decoration: none;
}

.site-footer a:hover {
  color: var(--blue-strong);
}

.footer-identity {
  justify-content: flex-end;
}

.footer-identity p {
  margin: 0;
}

@media (min-width: 75rem) and (max-width: 89.9375rem) {
  .landing-main {
    width: min(100%, 110rem);
    grid-template-columns: repeat(12, minmax(0, 1fr));
    column-gap: clamp(1rem, 2vw, 1.25rem);
  }

  .landing-message {
    z-index: 1;
    width: min(100%, 20rem);
    grid-column: 1 / span 3;
    align-self: center;
    justify-self: center;
  }

  .landing-visual {
    width: 100%;
    max-width: min(50rem, calc(100dvh - 10rem));
    grid-column: 4 / span 6;
    justify-self: center;
  }

  .launch-card {
    z-index: 1;
    width: min(100%, 23rem);
    grid-column: 10 / span 3;
    align-self: center;
    justify-self: center;
  }
}

@media (min-width: 90rem) {
  .landing-main {
    width: 100%;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    column-gap: 0;
  }

  .landing-message {
    z-index: 1;
    width: min(100%, 20rem);
    grid-column: 1;
    align-self: center;
    justify-self: center;
  }

  .landing-visual {
    width: min(56rem, calc(100dvh - 10rem), calc(66.667vw - 25rem));
    max-width: none;
    grid-column: 2;
    justify-self: unsafe center;
  }

  .launch-card {
    z-index: 1;
    width: min(100%, 25.5rem);
    grid-column: 3;
    align-self: center;
    justify-self: center;
  }
}

@media (max-width: 63.9375rem) {
  .landing-main {
    grid-template-columns: minmax(0, 1fr) 22.5rem;
  }

  .landing-message {
    grid-column: 1;
    text-align: center;
  }

  .landing-message h1 {
    max-width: none;
  }

  .landing-visual {
    grid-column: 1;
    max-width: 32rem;
  }

  .launch-card {
    grid-column: 2;
    grid-row: 1 / span 2;
  }
}

@media (max-width: 47.9375rem) {
  .landing-shell {
    grid-template-rows: 4rem auto auto;
  }

  .masthead {
    padding-inline: 1rem;
  }

  .landing-main {
    grid-template-columns: 1fr;
    padding: 1.5rem 1rem 2rem;
  }

  .landing-message,
  .landing-visual,
  .launch-card {
    grid-column: 1;
    grid-row: auto;
  }

  .landing-message h1 {
    font-size: 2.25rem;
  }

  .landing-lead {
    margin-inline: auto;
  }

  .landing-proof {
    justify-content: center;
    margin-inline: auto;
    text-align: left;
  }

  .landing-visual {
    max-width: 25rem;
  }

  .site-footer {
    grid-template-columns: 1fr;
    padding-block: 0.5rem;
    text-align: center;
  }

  .site-footer nav,
  .footer-identity {
    justify-content: center;
  }

  .site-footer nav {
    grid-row: 1;
  }

  .footer-identity {
    grid-row: 2;
    gap: 0.3rem 0.65rem;
    margin-bottom: 0.5rem;
  }
}

@media (max-width: 24rem) {
  .landing-proof {
    align-items: flex-start;
  }

  .proof-avatars img {
    width: 2rem;
    height: 2rem;
  }

  .launch-card {
    padding: 1.15rem;
  }

  .footer-identity span {
    display: none;
  }

  .footer-identity {
    flex-direction: column;
  }
}

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

@media (forced-colors: active) {
  .launch-card__signal {
    background: Highlight;
  }

  .launch-status,
  .access-status {
    border: 1px solid CanvasText;
  }
}
