:root {
  --ink: #062a31;
  --ivory: #fffaf0;
  --ivory-soft: rgba(255, 250, 240, 0.78);
  --gold: #e8c874;
  --gold-deep: #b98937;
  --teal: #062a31;
  --teal-soft: rgba(6, 42, 49, 0.74);
  --display: Georgia, "Times New Roman", serif;
  --body: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

* {
  box-sizing: border-box;
}

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

body {
  min-width: 320px;
  min-height: 100%;
  margin: 0;
  overflow-x: hidden;
  color: var(--ivory);
  background: var(--teal);
  font-family: var(--body);
  text-rendering: optimizeLegibility;
}

img {
  display: block;
  max-width: 100%;
}

p,
h1 {
  margin: 0;
}

.prelaunch {
  position: relative;
  display: grid;
  min-height: 100svh;
  overflow: hidden;
  isolation: isolate;
}

.world,
.world img,
.shade,
.sea-light {
  position: absolute;
  inset: 0;
}

.world {
  z-index: -4;
  background: #0b5668;
}

.world img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
  transform: scaleX(-1);
}

.shade {
  z-index: -3;
  background:
    radial-gradient(circle at 20% 24%, rgba(255, 250, 240, 0.12), transparent 24%),
    linear-gradient(90deg, rgba(3, 24, 31, 0.88) 0%, rgba(3, 24, 31, 0.64) 30%, rgba(3, 24, 31, 0.14) 62%, rgba(3, 24, 31, 0.04) 100%),
    linear-gradient(180deg, rgba(3, 24, 31, 0.52) 0%, rgba(3, 24, 31, 0.08) 42%, rgba(3, 24, 31, 0.76) 100%);
}

.sea-light {
  z-index: -2;
  pointer-events: none;
  background:
    linear-gradient(180deg, rgba(255, 250, 240, 0.12), transparent 24%),
    radial-gradient(circle at 74% 18%, rgba(232, 200, 116, 0.14), transparent 28%);
  mix-blend-mode: screen;
}

.brand {
  position: absolute;
  top: clamp(22px, 4.2vw, 48px);
  left: clamp(20px, 5vw, 72px);
  display: inline-flex;
  align-items: center;
  gap: 13px;
  color: var(--ivory);
}

.brand img {
  width: clamp(34px, 4vw, 48px);
  height: clamp(34px, 4vw, 48px);
  filter: drop-shadow(0 6px 18px rgba(0, 0, 0, 0.28));
}

.brand strong,
.brand em {
  display: block;
  letter-spacing: 0;
}

.brand strong {
  font-family: var(--display);
  font-size: clamp(1.55rem, 2.7vw, 2.35rem);
  font-weight: 500;
  line-height: 0.9;
  text-transform: uppercase;
}

.brand em {
  margin-top: 5px;
  color: var(--ivory-soft);
  font-size: clamp(0.62rem, 1vw, 0.78rem);
  font-style: normal;
  font-weight: 800;
  text-transform: uppercase;
}

.hero-copy {
  align-self: center;
  width: min(680px, calc(100vw - 40px));
  margin-left: clamp(20px, 5vw, 72px);
  padding-top: 50px;
  text-shadow: 0 16px 50px rgba(0, 0, 0, 0.42);
}

.kicker,
.availability,
.world-notes,
.footer-line {
  font-weight: 850;
  letter-spacing: 0;
  text-transform: uppercase;
}

.kicker {
  color: var(--gold);
  font-size: clamp(0.72rem, 1vw, 0.86rem);
}

h1 {
  max-width: 760px;
  margin-top: clamp(12px, 2vw, 20px);
  font-family: var(--display);
  font-size: clamp(4.3rem, 9vw, 9rem);
  font-weight: 500;
  line-height: 0.86;
  letter-spacing: 0;
}

.lede {
  max-width: 620px;
  margin-top: clamp(22px, 3vw, 34px);
  color: rgba(255, 250, 240, 0.9);
  font-size: clamp(1.08rem, 1.7vw, 1.5rem);
  font-weight: 640;
  line-height: 1.45;
}

.availability {
  display: inline-block;
  max-width: 100%;
  margin-top: clamp(22px, 3vw, 34px);
  padding-top: 15px;
  color: rgba(255, 250, 240, 0.82);
  border-top: 1px solid rgba(232, 200, 116, 0.44);
  font-size: clamp(0.68rem, 1vw, 0.82rem);
}

.world-notes {
  position: absolute;
  right: clamp(20px, 4.2vw, 58px);
  bottom: clamp(70px, 9vh, 108px);
  display: grid;
  gap: 10px;
  min-width: min(280px, calc(100vw - 40px));
  color: rgba(255, 250, 240, 0.82);
  font-size: clamp(0.68rem, 0.95vw, 0.78rem);
}

.world-notes p {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 22px;
  padding: 11px 0;
  border-bottom: 1px solid rgba(255, 250, 240, 0.22);
}

.world-notes span {
  color: var(--gold);
  font-family: var(--display);
  font-size: 1.05rem;
  font-weight: 500;
}

.footer-line {
  position: absolute;
  right: clamp(20px, 4.2vw, 58px);
  bottom: clamp(22px, 4vh, 36px);
  left: clamp(20px, 5vw, 72px);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  color: rgba(255, 250, 240, 0.58);
  font-size: clamp(0.62rem, 0.9vw, 0.76rem);
}

.footer-line a {
  color: inherit;
  text-decoration: none;
  transition: color 160ms ease;
}

.footer-line a:hover,
.footer-line a:focus-visible {
  color: var(--gold);
}

.footer-line a:focus-visible {
  outline: 2px solid var(--gold);
  outline-offset: 5px;
}

@media (max-width: 900px) {
  .world img {
    object-position: 54% center;
  }

  .shade {
    background:
      linear-gradient(180deg, rgba(3, 24, 31, 0.78) 0%, rgba(3, 24, 31, 0.28) 36%, rgba(3, 24, 31, 0.86) 100%),
      linear-gradient(90deg, rgba(3, 24, 31, 0.76), rgba(3, 24, 31, 0.08));
  }

  .prelaunch {
    min-height: 100svh;
    align-content: end;
  }

  .hero-copy {
    align-self: end;
    margin: 0;
    padding: 0 20px 154px;
  }

  h1 {
    max-width: 560px;
    font-size: clamp(3.55rem, 16vw, 5.6rem);
  }

  .lede {
    max-width: 560px;
    font-size: clamp(1rem, 4.4vw, 1.18rem);
  }

  .world-notes {
    right: 20px;
    bottom: 66px;
    left: 20px;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    min-width: 0;
    gap: 0 18px;
  }

  .world-notes p {
    gap: 12px;
    padding: 8px 0;
  }

  .footer-line {
    right: 20px;
    bottom: 18px;
    left: 20px;
  }
}

@media (max-width: 560px) {
  .world img {
    object-position: 52% center;
  }

  .brand {
    left: 18px;
    top: 18px;
    gap: 10px;
  }

  .brand img {
    width: 32px;
    height: 32px;
  }

  .brand strong {
    font-size: 1.42rem;
  }

  .brand em {
    font-size: 0.58rem;
  }

  .hero-copy {
    padding: 0 18px 150px;
  }

  h1 {
    font-size: clamp(3rem, 18vw, 4.5rem);
  }

  .lede {
    margin-top: 18px;
  }

  .availability {
    margin-top: 18px;
  }

  .world-notes {
    right: 18px;
    bottom: 60px;
    left: 18px;
    grid-template-columns: 1fr;
  }

  .world-notes p:nth-child(n + 3) {
    display: none;
  }

  .footer-line {
    right: 18px;
    left: 18px;
  }
}

@media (max-height: 720px) and (min-width: 720px) {
  h1 {
    font-size: clamp(4rem, 8vw, 7rem);
  }

  .world-notes {
    bottom: 58px;
  }
}
