:root {
  color-scheme: dark;
  --text: #f8fbff;
  --muted: #c7d5e2;
  --line: rgba(255, 255, 255, 0.28);
  --glass: rgba(6, 13, 20, 0.34);
  --accent: #8ed6ff;
  --accent-strong: #ffffff;
}

* {
  box-sizing: border-box;
}

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

body {
  font-family: Arial, Helvetica, sans-serif;
  background: #05080d;
  color: var(--text);
}

a {
  color: inherit;
}

.launch-page {
  position: relative;
  display: grid;
  min-height: 100vh;
  min-height: 100dvh;
  place-items: start center;
  overflow: hidden;
  background-image: url("20260806-100556.png");
  background-position: center;
  background-size: cover;
  isolation: isolate;
}

.backdrop {
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    linear-gradient(180deg, rgba(2, 7, 12, 0.78) 0%, rgba(2, 7, 12, 0.32) 34%, rgba(2, 7, 12, 0.08) 64%),
    linear-gradient(0deg, rgba(0, 0, 0, 0.34) 0%, rgba(0, 0, 0, 0.02) 46%, rgba(0, 0, 0, 0.18) 100%);
}

.hero {
  width: min(820px, calc(100% - 48px));
  margin: clamp(28px, 6vh, 72px) auto 0;
  padding: 0;
  text-align: center;
}

.eyebrow {
  width: fit-content;
  margin: 0 auto 18px;
  padding: 9px 14px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: var(--glass);
  color: var(--muted);
  font-size: clamp(0.72rem, 1.5vw, 0.86rem);
  font-weight: 700;
  letter-spacing: 0;
  text-transform: uppercase;
  backdrop-filter: blur(12px);
}

h1 {
  max-width: none;
  margin: 0;
  font-size: clamp(3.4rem, 8vw, 7.6rem);
  line-height: 0.88;
  font-weight: 900;
  letter-spacing: 0;
  text-wrap: balance;
  text-shadow: 0 20px 60px rgba(0, 0, 0, 0.42);
}

.lede {
  max-width: 520px;
  margin: 20px auto 0;
  color: var(--muted);
  font-size: clamp(1.02rem, 2vw, 1.24rem);
  line-height: 1.6;
  font-weight: 500;
  text-shadow: 0 12px 34px rgba(0, 0, 0, 0.55);
}

@media (max-width: 760px) {
  .launch-page {
    min-height: 100svh;
    min-height: 100dvh;
    place-items: end center;
    background-image: url("20260806-105716.png");
    background-position: center top;
  }

  .backdrop {
    background:
      linear-gradient(180deg, rgba(0, 0, 0, 0.08) 0%, rgba(0, 0, 0, 0.02) 52%, rgba(0, 0, 0, 0.72) 100%),
      linear-gradient(0deg, rgba(1, 7, 12, 0.56) 0%, rgba(1, 7, 12, 0.02) 46%, rgba(1, 7, 12, 0.08) 100%);
  }

  .hero {
    width: min(100% - 28px, 520px);
    margin: 0 auto clamp(24px, 7vh, 58px);
  }

  .eyebrow {
    display: none;
  }

  h1 {
    font-size: clamp(2.45rem, 11.5vw, 4.1rem);
    line-height: 0.92;
  }

  .lede {
    max-width: 29ch;
    margin-top: 12px;
    font-size: clamp(0.88rem, 3.4vw, 1.02rem);
    line-height: 1.45;
  }
}

@media (max-width: 420px) {
  .launch-page {
    background-position: center top;
  }

  .hero {
    width: calc(100% - 24px);
    margin-bottom: 26px;
  }

  .eyebrow {
    max-width: 100%;
    white-space: normal;
  }

  h1 {
    font-size: clamp(2.25rem, 9.5vw, 3.2rem);
  }
}

@media (max-width: 360px) {
  .eyebrow {
    font-size: 0.6rem;
  }

  h1 {
    font-size: 2.1rem;
  }

  .lede {
    font-size: 0.86rem;
  }
}

@media (max-height: 640px) and (max-width: 760px) {
  .hero {
    margin-bottom: 16px;
  }

  h1 {
    font-size: clamp(2rem, 9vw, 2.9rem);
  }

  .lede {
    margin-top: 10px;
    font-size: 0.86rem;
  }
}
