:root {
  color-scheme: dark;
  --navy: #061b28;
  --white: #f7fcff;
  --muted: #c2d0d3;
  --lime: #b5f51b;
  --cyan: #00c4e8;
  --gutter: clamp(1.5rem, 5.4vw, 6rem);
  font-family: Arial, Helvetica, sans-serif;
  background: var(--navy);
  color: var(--white);
  font-synthesis: none;
  -webkit-text-size-adjust: 100%;
}

*, *::before, *::after { box-sizing: border-box; }
body { margin: 0; }
img { display: block; max-width: 100%; }
p, h1 { margin: 0; }
::selection { background: var(--lime); color: var(--navy); }

.page {
  position: relative;
  isolation: isolate;
  display: flex;
  flex-direction: column;
  min-height: 100vh;
  min-height: 100svh;
  min-height: 100dvh;
  padding: max(2.5rem, env(safe-area-inset-top)) max(var(--gutter), env(safe-area-inset-right)) max(1.875rem, env(safe-area-inset-bottom)) max(var(--gutter), env(safe-area-inset-left));
  overflow: clip;
  background: var(--navy);
}

.landscape, .landscape::after, .landscape picture, .landscape img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}
.landscape { z-index: -1; }
.landscape img { object-fit: cover; object-position: 62% center; }
.landscape::after {
  content: "";
  background:
    linear-gradient(180deg, rgba(3, 19, 29, .76) 0%, rgba(3, 19, 29, .04) 28%, rgba(3, 19, 29, .04) 65%, rgba(3, 19, 29, .79) 100%),
    linear-gradient(90deg, #061b28 0%, rgba(6, 27, 40, .94) 20%, rgba(6, 27, 40, .82) 39%, rgba(6, 27, 40, .35) 63%, rgba(6, 27, 40, .04) 100%);
}

.header, .footer { display: flex; align-items: center; justify-content: space-between; gap: 1.5rem; }
.header { position: relative; }
.brand { width: clamp(14rem, 20vw, 17.25rem); height: auto; }
.header-note {
  color: #e0e9e8;
  font-size: .875rem;
  letter-spacing: .015em;
  text-align: right;
}

.main { flex: 1; display: flex; align-items: center; padding: 4rem 0; }
.content { width: min(100%, 48rem); }
.eyebrow {
  display: flex;
  align-items: center;
  gap: .875rem;
  color: #d7e5e5;
  font-size: .875rem;
  font-weight: 400;
  letter-spacing: .035em;
  line-height: 1.6;
  margin-bottom: 1.65rem;
}
.eyebrow-line { display: block; flex: 0 0 1.625rem; height: 2px; background: var(--cyan); }
h1 {
  font-size: clamp(3rem, 7.7vw, 7rem);
  font-weight: 700;
  line-height: 1.01;
  letter-spacing: -.06em;
  overflow-wrap: anywhere;
}
h1 span { display: block; }
h1 .accent { color: var(--lime); }
.intro {
  margin-top: 1.875rem;
  max-width: 31rem;
  font-size: clamp(1rem, 1.42vw, 1.1875rem);
  font-weight: 400;
  line-height: 1.7;
  color: var(--muted);
}

.launch {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-top: 2.875rem;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(219, 237, 239, .22);
  width: fit-content;
  max-width: 100%;
}
.launch-mark {
  flex: 0 0 2.625rem;
  height: 2.625rem;
  display: grid;
  place-items: center;
  border: 1px solid rgba(181, 245, 27, .3);
  border-radius: 50%;
  color: var(--lime);
  background: rgba(6, 27, 40, .25);
}
.launch-title { font-size: 1rem; font-weight: 600; line-height: 1.5; }
.launch-description { margin-top: .25rem; color: var(--muted); font-size: .875rem; line-height: 1.5; }

.footer { position: relative; padding-top: 1.25rem; border-top: 1px solid rgba(219, 237, 239, .19); }
.copyright, .status { color: #c8d5d7; font-size: .8125rem; line-height: 1.5; }
.status { display: flex; align-items: center; gap: 1rem; font-size: .875rem; }
.status-line { display: block; width: 2rem; height: 2px; background: linear-gradient(90deg, var(--cyan), var(--lime)); }

@media (min-width: 1500px) {
  .main { padding-block: 5rem; }
}

@media (max-width: 800px) {
  .header-note { display: none; }
  .page { padding-top: max(2rem, env(safe-area-inset-top)); }
  .landscape img { object-position: 67% center; }
  .landscape::after {
    background:
      linear-gradient(180deg, rgba(6, 27, 40, .75) 0%, rgba(6, 27, 40, .17) 25%, rgba(6, 27, 40, .40) 44%, rgba(6, 27, 40, .90) 79%, #061b28 100%),
      linear-gradient(90deg, rgba(6, 27, 40, .82), rgba(6, 27, 40, .2));
  }
  .main { align-items: flex-end; padding-top: 6.5rem; padding-bottom: 2.5rem; }
  .content { max-width: 35rem; }
  h1 { font-size: clamp(3.1rem, 10.8vw, 5.5rem); }
  .eyebrow { margin-bottom: 1.25rem; }
  .intro { margin-top: 1.5rem; }
  .launch { margin-top: 2rem; padding-top: 1.25rem; }
}

@media (max-width: 640px) {
  .landscape picture { height: 62%; min-height: 21rem; }
  .landscape img { object-position: 90% top; }
  .landscape::after {
    background:
      linear-gradient(180deg, rgba(6, 27, 40, .72) 0%, rgba(6, 27, 40, .12) 19%, rgba(6, 27, 40, .30) 28%, rgba(6, 27, 40, .86) 43%, #061b28 61%),
      linear-gradient(90deg, rgba(6, 27, 40, .24), rgba(6, 27, 40, .03));
  }
}

@media (max-width: 480px) {
  .page { padding-bottom: max(1.25rem, env(safe-area-inset-bottom)); }
  .brand { width: 13.75rem; }
  .main { padding-top: 7.5rem; padding-bottom: 2rem; }
  .eyebrow { font-size: .8125rem; gap: .625rem; letter-spacing: 0; }
  .eyebrow-line { flex-basis: 1.25rem; }
  h1 { font-size: clamp(2.8rem, 12.6vw, 3.7rem); line-height: 1.03; letter-spacing: -.055em; }
  .intro { line-height: 1.65; }
  .launch { gap: .75rem; }
  .launch-description { max-width: 16rem; }
  .footer { flex-wrap: wrap; gap: .5rem 1rem; padding-top: 1rem; }
  .status { font-size: .8125rem; gap: .75rem; }
  .status-line { width: 1.25rem; }
}

@media (max-height: 720px) and (min-width: 801px) {
  .page { padding-top: 1.75rem; padding-bottom: 1.25rem; }
  .main { padding-block: 2rem; }
  h1 { font-size: clamp(3rem, 7vw, 5.5rem); }
  .eyebrow { margin-bottom: 1rem; }
  .intro { margin-top: 1.25rem; }
  .launch { margin-top: 1.5rem; padding-top: 1rem; }
}

@media (max-height: 740px) and (max-width: 800px) {
  .page { padding-top: max(1.5rem, env(safe-area-inset-top)); }
  .main { padding-top: 4.5rem; padding-bottom: 1.5rem; }
  .eyebrow { margin-bottom: .875rem; }
  .intro { margin-top: 1.125rem; }
  .launch { margin-top: 1.5rem; padding-top: 1rem; }
}

@media (orientation: landscape) and (max-height: 520px) {
  .main { padding-top: 2rem; padding-bottom: 2rem; }
  .content { max-width: 36rem; }
}

@media (prefers-reduced-motion: no-preference) {
  .content { animation: arrive .8s cubic-bezier(.2, .65, .3, 1) both; }
  @keyframes arrive { from { opacity: 0; transform: translateY(12px); } to { opacity: 1; transform: translateY(0); } }
}
