:root {
  color-scheme: dark;
  --bg: #030509;
  --fg: #f5f7fb;
  --muted: #c8ced9;
  --soft: #aab2c0;
  --line: rgba(255,255,255,.20);
}

* { box-sizing: border-box; }

html, body {
  margin: 0;
  min-height: 100%;
  background: var(--bg);
  color: var(--fg);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

body { min-height: 100vh; }

.hero {
  position: relative;
  min-height: 100svh;
  overflow: hidden;
  isolation: isolate;
  background: #030509;
}

.hero__image {
  position: absolute;
  inset: 0;
  z-index: -4;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
}

#stars {
  position: absolute;
  inset: 0;
  z-index: -3;
  width: 100%;
  height: 58%;
  pointer-events: none;
  opacity: .58;
  -webkit-mask-image: linear-gradient(to bottom, #000 0%, #000 68%, transparent 100%);
  mask-image: linear-gradient(to bottom, #000 0%, #000 68%, transparent 100%);
}

.hero__shade {
  position: absolute;
  inset: 0;
  z-index: -2;
  pointer-events: none;
  background:
    linear-gradient(90deg, rgba(2,4,8,.03) 0%, rgba(2,4,8,.06) 36%, rgba(2,4,8,.30) 66%, rgba(2,4,8,.72) 100%),
    linear-gradient(180deg, rgba(2,4,8,.17) 0%, rgba(2,4,8,.05) 46%, rgba(2,4,8,.44) 100%);
}

.hero__content {
  position: absolute;
  top: clamp(30px, 5.2vh, 62px);
  right: clamp(24px, 4vw, 70px);
  left: auto;
  width: min(760px, calc(100% - 48px));
  text-shadow: 0 2px 14px rgba(0,0,0,.62);
}

.hero__eyebrow {
  margin: 0 0 11px;
  color: #e2e6ed;
  text-transform: uppercase;
  letter-spacing: .18em;
  font-size: clamp(.67rem, .8vw, .78rem);
  font-weight: 700;
}

h1 {
  margin: 0;
  width: max-content;
  max-width: 100%;
  white-space: nowrap;
  display: inline-flex;
  align-items: center;
  gap: .04em;
  font-size: clamp(3rem, 5.25vw, 6.3rem);
  line-height: .92;
  letter-spacing: -.055em;
  font-weight: 820;
}

.hero__word {
  display: inline-block;
}

.hero__arrow {
  display: inline-block;
  margin-inline: .02em .06em;
  font-weight: 690;
  letter-spacing: 0;
  line-height: 1;
  transform: translateY(-.02em);
}

.hero__horizon {
  margin: 9px 0 0;
  color: #eef1f7;
  font-size: clamp(1.3rem, 2.1vw, 2rem);
  line-height: 1.08;
  font-weight: 750;
}

.hero__taglines {
  margin-top: 18px;
  max-width: 735px;
}

.hero__tagline-line {
  margin: 0;
  color: #fff;
  line-height: 1.3;
}

.hero__tagline-primary {
  font-size: clamp(1.06rem, 1.52vw, 1.3rem);
  font-weight: 720;
}

.hero__tagline-secondary {
  margin-top: 4px;
  color: #e6eaf1;
  font-size: clamp(.98rem, 1.35vw, 1.16rem);
  font-weight: 620;
}

.hero__copy-group {
  margin-top: 14px;
  max-width: 735px;
}

.hero__copy {
  margin: 0;
  color: var(--muted);
  font-size: clamp(.88rem, 1.02vw, 1rem);
  line-height: 1.55;
}

.hero__copy-second { margin-top: 10px; }

.hero__coming {
  display: inline-block;
  margin: 17px 0 0;
  padding: 8px 13px;
  border: 1px solid var(--line);
  border-radius: 999px;
  color: #edf0f6;
  background: rgba(3,5,9,.24);
  backdrop-filter: blur(7px);
  font-size: .86rem;
}

.hero__footer {
  position: absolute;
  left: 50%;
  bottom: max(18px, env(safe-area-inset-bottom));
  transform: translateX(-50%);
  width: calc(100% - 32px);
  text-align: center;
  color: #b6bfce;
  font-size: .82rem;
  line-height: 1.35;
  text-shadow: 0 2px 10px rgba(0,0,0,.72);
}

.hero__footer p { margin: 0; }

.hero__footer-brand {
  color: #d4dae4;
  font-weight: 650;
}

.hero__credit {
  margin-top: 3px !important;
}

.hero__location {
  margin-top: 2px !important;
}

.hero__handle {
  display: inline-block;
}

.hero__share {
  margin-top: 8px;
  padding: 6px 12px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(3,5,9,.28);
  color: #dce2eb;
  font: inherit;
  cursor: pointer;
  backdrop-filter: blur(7px);
}

.hero__share:hover,
.hero__share:focus-visible {
  color: #fff;
  border-color: rgba(255,255,255,.38);
}

.hero__footer a {
  color: #b6bfce;
  text-decoration: none;
  text-underline-offset: 3px;
  transition: color .2s ease, opacity .2s ease;
}

.hero__footer a:hover,
.hero__footer a:focus-visible {
  color: #fff;
  text-decoration: underline;
}

@media (max-width: 760px) {
  .hero__image { object-position: 7% center; }

  #stars {
    height: 54%;
    opacity: .5;
  }

  .hero__shade {
    background:
      linear-gradient(180deg, rgba(2,4,8,.50) 0%, rgba(2,4,8,.14) 48%, rgba(2,4,8,.58) 100%),
      linear-gradient(90deg, rgba(2,4,8,.34) 0%, rgba(2,4,8,.10) 100%);
  }

  .hero__content {
    top: max(24px, env(safe-area-inset-top));
    right: auto;
    left: 18px;
    width: calc(100% - 36px);
  }

  .hero__eyebrow { margin-bottom: 10px; }

  h1 {
    font-size: clamp(1.95rem, 11.3vw, 3.15rem);
    letter-spacing: -.06em;
    gap: .08em;
  }

  .hero__arrow {
    position: relative;
    flex: 0 0 auto;
    align-self: center;
    width: 1.02em;
    height: .48em;
    margin-inline: .08em;
    overflow: hidden;
    line-height: 1;
    text-indent: -9999px;
    transform: none;
  }

  .hero__arrow::before {
    content: "";
    position: absolute;
    inset: 0;
    background: currentColor;
    clip-path: polygon(
      0 50%,
      22% 0,
      22% 34%,
      78% 34%,
      78% 0,
      100% 50%,
      78% 100%,
      78% 66%,
      22% 66%,
      22% 100%
    );
  }

  .hero__horizon {
    margin-top: 7px;
    font-size: clamp(1.18rem, 5.6vw, 1.55rem);
  }

  .hero__taglines {
    margin-top: 15px;
    max-width: 100%;
  }

  .hero__tagline-primary {
    font-size: clamp(1rem, 4.4vw, 1.18rem);
    line-height: 1.28;
  }

  .hero__tagline-secondary {
    margin-top: 5px;
    font-size: clamp(.94rem, 4vw, 1.08rem);
    line-height: 1.3;
  }

  .hero__tagline-secondary-line {
    display: block;
    white-space: nowrap;
  }

  .hero__copy-group { display: none; }

  .hero__coming { margin-top: 15px; }

  .hero__footer {
    bottom: max(12px, env(safe-area-inset-bottom));
    font-size: .76rem;
    line-height: 1.28;
  }

  .hero__share {
    margin-top: 6px;
    padding: 5px 11px;
  }
}

@media (max-width: 360px) {
  .hero__content {
    left: 15px;
    width: calc(100% - 30px);
  }
}

@media (max-height: 680px) and (min-width: 761px) {
  .hero__content { top: 24px; }
  h1 { font-size: clamp(2.8rem, 4.8vw, 5.35rem); }
  .hero__horizon { font-size: clamp(1.2rem, 1.85vw, 1.7rem); }
  .hero__taglines { margin-top: 12px; }
  .hero__copy-group { margin-top: 10px; }
  .hero__copy {
    font-size: clamp(.82rem, .92vw, .92rem);
    line-height: 1.43;
  }
  .hero__copy-second { margin-top: 7px; }
  .hero__coming { margin-top: 11px; }
}

@media (max-height: 620px) and (max-width: 760px) {
  .hero__content { top: max(14px, env(safe-area-inset-top)); }
  .hero__eyebrow { margin-bottom: 7px; }
  .hero__taglines { margin-top: 10px; }
  .hero__coming {
    margin-top: 10px;
    padding-block: 6px;
  }
  .hero__footer { bottom: max(8px, env(safe-area-inset-bottom)); }
}

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