:root {
  --ink: #050505;
  --ink-deep: #010101;
  --cream: #f4efe7;
  --muted: #b9b0a3;
  --gold: #d4ae61;
  --gold-soft: #efd18a;
  --gold-line: rgba(212, 174, 97, 0.58);
  --white-soft: rgba(244, 239, 231, 0.78);
  --display: "Barlow Condensed", "Arial Narrow", sans-serif;
  --serif: "Cormorant Garamond", Georgia, serif;
  --sans: "Manrope", Arial, sans-serif;
}

* {
  box-sizing: border-box;
  letter-spacing: 0;
}

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

body {
  min-height: 100%;
  margin: 0;
  color: var(--cream);
  background: var(--ink);
  font-family: var(--sans);
  overflow-x: hidden;
}

img,
svg {
  display: block;
}

img {
  max-width: 100%;
}

a {
  color: inherit;
}

::selection {
  color: var(--ink);
  background: var(--gold);
}

.svg-sprite {
  position: absolute;
  width: 0;
  height: 0;
  overflow: hidden;
}

.launch-page {
  position: relative;
  isolation: isolate;
  display: grid;
  min-height: 100vh;
  min-height: 100svh;
  grid-template-rows: auto 1fr auto;
  padding: 3rem min(6.8vw, 6.75rem) 2rem;
  overflow: hidden;
}

.launch-page::before,
.launch-page::after {
  position: absolute;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  content: "";
}

.launch-page::before {
  background:
    linear-gradient(90deg, rgba(1, 1, 1, 0.98) 0%, rgba(1, 1, 1, 0.88) 32%, rgba(1, 1, 1, 0.42) 60%, rgba(1, 1, 1, 0.78) 100%),
    linear-gradient(180deg, rgba(1, 1, 1, 0.72) 0%, rgba(1, 1, 1, 0.2) 38%, rgba(1, 1, 1, 0.96) 100%);
}

.launch-page::after {
  background:
    radial-gradient(circle at 31% 61%, rgba(239, 209, 138, 0.15), transparent 2.7rem),
    linear-gradient(135deg, rgba(212, 174, 97, 0.1), transparent 32%, rgba(255, 255, 255, 0.04) 68%, transparent);
  mix-blend-mode: screen;
  opacity: 0.46;
}

.launch-bg {
  position: absolute;
  inset: 0;
  z-index: -3;
  background: var(--ink-deep);
}

.launch-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 64% center;
  filter: grayscale(1) contrast(1.16) brightness(0.66);
  transform: scale(1.02);
}

.launch-header {
  position: relative;
  z-index: 2;
  display: flex;
  min-width: 0;
  min-height: 3rem;
  align-items: flex-start;
  justify-content: flex-end;
}

.launch-status {
  position: relative;
  display: block;
  flex: 0 0 auto;
  width: 7.2rem;
  height: 0.9rem;
  margin: 0;
  color: var(--white-soft);
  font-size: 0.72rem;
  font-weight: 800;
  line-height: 1;
  white-space: nowrap;
  text-transform: uppercase;
}

.status-dot {
  position: absolute;
  top: 50%;
  left: 0;
  width: 0.55rem;
  height: 0.55rem;
  border-radius: 50%;
  background: var(--gold);
  box-shadow: 0 0 1.35rem rgba(212, 174, 97, 0.9);
  transform: translateY(-50%);
}

.status-text {
  position: absolute;
  top: 50%;
  left: 1.35rem;
  transform: translateY(-50%);
}

.launch-layout {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(31rem, 0.82fr);
  gap: 5rem;
  align-items: center;
  width: 100%;
  min-width: 0;
}

.launch-content {
  width: min(48rem, 100%);
  min-width: 0;
  animation: reveal 900ms cubic-bezier(0.22, 1, 0.36, 1) both;
}

.kicker {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin: 0 0 1.45rem;
  color: var(--gold-soft);
  font-size: 0.9rem;
  font-weight: 800;
  line-height: 1.2;
  text-transform: uppercase;
}

.kicker::before {
  width: 3.85rem;
  height: 1px;
  background: currentColor;
  content: "";
}

h1 {
  max-width: 15ch;
  margin: 0;
  color: var(--cream);
  font-family: var(--display);
  font-size: 6.1rem;
  font-weight: 700;
  line-height: 0.88;
  text-transform: uppercase;
  text-wrap: balance;
}

h1 span,
h1 strong {
  display: block;
}

h1 span {
  white-space: nowrap;
}

h1 strong {
  color: var(--gold);
  font-family: var(--serif);
  font-size: 0.72em;
  font-style: italic;
  font-weight: 600;
  line-height: 0.9;
  text-transform: none;
}

.title-rule {
  position: relative;
  display: block;
  width: min(34rem, 84%);
  height: 1px;
  margin-top: 2.2rem;
  background: linear-gradient(90deg, var(--gold-line), rgba(212, 174, 97, 0.08));
}

.title-rule::after {
  position: absolute;
  top: -2px;
  left: 29%;
  width: 4.2rem;
  height: 5px;
  border-radius: 999px;
  background: radial-gradient(circle, rgba(239, 209, 138, 0.95), transparent 72%);
  filter: blur(1px);
  content: "";
}

.launch-copy {
  max-width: 32rem;
  margin: 1.45rem 0 0 4.25rem;
  color: rgba(244, 239, 231, 0.72);
  font-size: 1.02rem;
  font-weight: 500;
  line-height: 1.65;
  text-align: center;
}

.signature {
  position: relative;
  margin: 3.9rem 0 0;
  padding-left: 2rem;
  border-left: 1px solid var(--gold-line);
  color: var(--cream);
  font-family: var(--display);
  font-size: 2rem;
  font-weight: 700;
  line-height: 0.95;
  text-transform: uppercase;
}

.signature small {
  display: block;
  margin-bottom: 0.85rem;
  color: var(--gold-soft);
  font-family: var(--sans);
  font-size: 0.78rem;
  font-weight: 800;
  line-height: 1.2;
  text-transform: uppercase;
}

.launch-countdown {
  align-self: end;
  width: min(100%, 39rem);
  min-width: 0;
  margin-left: auto;
  padding-bottom: 4.5rem;
  text-align: center;
  animation: reveal 900ms 160ms cubic-bezier(0.22, 1, 0.36, 1) both;
}

.countdown-title {
  margin: 0 0 2rem;
  color: var(--gold-soft);
  font-size: 0.88rem;
  font-weight: 800;
  line-height: 1.2;
  text-transform: uppercase;
}

.countdown-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  align-items: stretch;
}

.countdown-item {
  position: relative;
  display: grid;
  min-width: 0;
  place-items: center;
  padding: 0 1.1rem;
}

.countdown-item + .countdown-item::before {
  position: absolute;
  left: 0;
  top: 0.2rem;
  bottom: 0.2rem;
  width: 1px;
  background: var(--gold-line);
  content: "";
}

.countdown-item strong {
  color: var(--gold);
  font-family: var(--display);
  font-size: 2.05rem;
  font-weight: 600;
  line-height: 0.9;
}

.countdown-item span {
  margin-top: 0.55rem;
  color: rgba(244, 239, 231, 0.7);
  font-size: 0.68rem;
  font-weight: 800;
  line-height: 1.2;
  text-transform: uppercase;
}

.notify-link {
  display: flex;
  width: 100%;
  max-width: 25.5rem;
  min-height: 3.6rem;
  align-items: center;
  justify-content: center;
  gap: 1.2rem;
  margin: 3.35rem auto 0;
  border: 1px solid rgba(212, 174, 97, 0.68);
  border-radius: 999px;
  color: var(--gold-soft);
  font-size: 0.8rem;
  font-weight: 800;
  line-height: 1.2;
  text-decoration: none;
  text-transform: uppercase;
  transition: border-color 180ms ease, color 180ms ease, transform 180ms ease, background 180ms ease;
}

.notify-link svg {
  width: 1.3rem;
  height: 1.3rem;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.6;
}

.notify-link:hover,
.notify-link:focus-visible {
  color: var(--ink);
  border-color: var(--gold);
  background: var(--gold);
  outline: none;
  transform: translateY(-1px);
}

.launch-footer {
  position: relative;
  z-index: 2;
  display: flex;
  min-width: 0;
  min-height: 2.25rem;
  align-items: center;
  gap: 1.9rem;
  color: rgba(244, 239, 231, 0.72);
}

.socials {
  display: flex;
  align-items: center;
  gap: 1.25rem;
}

.socials a,
.socials span {
  display: inline-grid;
  width: 1.35rem;
  height: 1.35rem;
  place-items: center;
  color: var(--gold);
}

.socials svg {
  width: 100%;
  height: 100%;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.85;
}

.socials a {
  text-decoration: none;
  transition: color 180ms ease, transform 180ms ease;
}

.socials a:hover,
.socials a:focus-visible {
  color: var(--cream);
  outline: none;
  transform: translateY(-1px);
}

.footer-divider {
  width: 1px;
  height: 1.8rem;
  background: var(--gold-line);
}

.launch-footer p {
  margin: 0;
  color: var(--gold-soft);
  font-size: 0.74rem;
  font-weight: 800;
  line-height: 1.4;
  text-transform: uppercase;
}

@keyframes reveal {
  from {
    opacity: 0;
    transform: translateY(1.25rem);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@media (min-width: 1500px) {
  h1 {
    font-size: 6.7rem;
  }

  .launch-copy {
    font-size: 1.08rem;
  }
}

@media (max-width: 1180px) {
  .launch-page {
    padding: 2.2rem 2.5rem 1.8rem;
  }

  .launch-layout {
    grid-template-columns: minmax(0, 1fr) minmax(25rem, 0.8fr);
    gap: 3rem;
  }

  h1 {
    font-size: 5rem;
  }

  .launch-copy {
    margin-left: 2rem;
  }

  .launch-countdown {
    padding-bottom: 3rem;
  }
}

@media (max-width: 920px) {
  .launch-page {
    min-height: auto;
    padding: 1.5rem;
  }

  .launch-page::before {
    background:
      linear-gradient(180deg, rgba(1, 1, 1, 0.62) 0%, rgba(1, 1, 1, 0.42) 34%, rgba(1, 1, 1, 0.98) 100%),
      linear-gradient(90deg, rgba(1, 1, 1, 0.9) 0%, rgba(1, 1, 1, 0.46) 100%);
  }

  .launch-bg img {
    object-position: 58% center;
  }

  .launch-layout {
    grid-template-columns: 1fr;
    gap: 3.5rem;
    padding: 4.2rem 0 2rem;
  }

  .launch-content,
  .launch-countdown {
    width: 100%;
  }

  .launch-countdown {
    margin: 0;
    padding-bottom: 0;
  }

  h1 {
    font-size: 4.8rem;
  }

  .launch-copy {
    margin-left: 0;
    text-align: left;
  }
}

@media (max-width: 620px) {
  .launch-page {
    min-height: 100vh;
    min-height: 100dvh;
    padding: 1.15rem;
  }

  .launch-header {
    justify-content: flex-start;
    min-height: 2.2rem;
  }

  .launch-status {
    width: 6.7rem;
    font-size: 0.68rem;
  }

  .launch-layout {
    gap: 2.7rem;
    padding: 3rem 0 1.8rem;
  }

  .kicker {
    gap: 0.85rem;
    margin-bottom: 1.05rem;
    font-size: 0.78rem;
  }

  .kicker::before {
    width: 2.55rem;
  }

  h1 {
    font-size: 3.35rem;
    line-height: 0.92;
  }

  h1 span {
    white-space: normal;
  }

  h1 strong {
    font-size: 0.78em;
  }

  .title-rule {
    width: 100%;
    margin-top: 1.5rem;
  }

  .launch-copy {
    margin-top: 1.25rem;
    font-size: 0.96rem;
    line-height: 1.6;
  }

  .signature {
    margin-top: 2.3rem;
    padding-left: 1.1rem;
    font-size: 1.62rem;
  }

  .signature small {
    margin-bottom: 0.65rem;
    font-size: 0.7rem;
  }

  .countdown-title {
    margin-bottom: 1.35rem;
    text-align: left;
  }

  .countdown-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1.2rem 0;
  }

  .countdown-item {
    min-height: 4.3rem;
    padding: 0 0.85rem;
  }

  .countdown-item:nth-child(3)::before {
    display: none;
  }

  .countdown-item strong {
    font-size: 1.85rem;
  }

  .notify-link {
    min-height: 3.25rem;
    max-width: 18.5rem;
    margin-top: 2rem;
    font-size: 0.72rem;
  }

  .launch-footer {
    align-items: flex-start;
    gap: 1.1rem;
  }

  .socials {
    gap: 1rem;
  }

  .footer-divider {
    height: 1.55rem;
  }

  .launch-footer p {
    max-width: 14rem;
    font-size: 0.66rem;
  }
}

@media (max-width: 380px) {
  h1 {
    font-size: 3rem;
  }

  .launch-copy br {
    display: none;
  }

  .launch-footer {
    flex-wrap: wrap;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    animation-duration: 1ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 1ms !important;
  }
}
