:root {
  color-scheme: dark;
  --ink: #f2efe8;
  --muted: #b7b4ac;
  --accent: #c98242;
  --background: #020b08;
}

* {
  box-sizing: border-box;
}

html,
body {
  width: 100%;
  min-height: 100%;
  margin: 0;
  background: var(--background);
}

body {
  overflow-x: hidden;
  overflow-y: auto;
  color: var(--ink);
  font-family: Arial, Helvetica, sans-serif;
  text-rendering: optimizeLegibility;
}

.holding-page {
  position: relative;
  display: grid;
  min-height: 100vh;
  min-height: 100svh;
  place-items: center;
  isolation: isolate;
  overflow: hidden;
  background:
    radial-gradient(circle at 50% 48%, rgba(24, 88, 62, 0.32), transparent 48%),
    linear-gradient(145deg, #020706 0%, #03110c 52%, #020806 100%);
}

.sky,
.shade {
  position: fixed;
  inset: 0;
  width: 100%;
  height: 100%;
}

.photo-gallery {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 0.55rem;
  width: 100%;
  margin: 1.9rem auto 0;
}

.gallery-item {
  aspect-ratio: 4 / 3;
  min-width: 0;
  margin: 0;
  overflow: hidden;
  border: 1px solid rgba(225, 210, 184, 0.18);
  border-radius: 7px;
  background: rgba(3, 15, 10, 0.72);
  box-shadow: 0 9px 24px rgba(0, 0, 0, 0.28);
}

.gallery-item img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.84;
  filter: saturate(0.88) contrast(0.96);
}

.sky {
  z-index: -3;
}

.shade {
  z-index: -2;
  background:
    linear-gradient(180deg, rgba(1, 6, 4, 0.38), rgba(1, 8, 5, 0.01) 40%, rgba(1, 5, 4, 0.52)),
    radial-gradient(circle at center, rgba(1, 8, 5, 0.02) 18%, rgba(1, 5, 4, 0.62) 92%);
}

.message {
  width: min(90vw, 840px);
  padding: 3.5rem 2rem;
  text-align: center;
  animation: reveal 1.4s cubic-bezier(0.22, 1, 0.36, 1) both;
}

.eyebrow {
  margin: 0 0 1.25rem;
  color: rgba(224, 224, 213, 0.6);
  font-size: 0.68rem;
  font-weight: 500;
  letter-spacing: 0.34em;
  text-transform: uppercase;
}

h1 {
  margin: 0;
  color: #d2a05b;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(2.3rem, 7vw, 5.35rem);
  font-weight: 400;
  letter-spacing: 0.075em;
  line-height: 1.04;
  text-transform: uppercase;
  text-shadow:
    0 2px 28px rgba(0, 0, 0, 0.72),
    0 0 32px rgba(182, 115, 48, 0.15);
}

.ornament {
  display: block;
  width: 74px;
  height: 1px;
  margin: 2rem auto 1.75rem;
  background: linear-gradient(90deg, transparent, var(--accent), transparent);
  box-shadow: 0 0 14px rgba(201, 130, 66, 0.34);
}

.lead {
  margin: 0;
  color: var(--muted);
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(1rem, 2.1vw, 1.22rem);
  font-weight: 400;
  letter-spacing: 0.025em;
  line-height: 1.8;
  text-wrap: balance;
}

.launch-countdown {
  margin-top: 2.15rem;
}

.countdown-title {
  margin: 0 0 0.8rem;
  color: rgba(225, 225, 214, 0.62);
  font-size: 0.62rem;
  font-weight: 500;
  letter-spacing: 0.25em;
  text-transform: uppercase;
}

.countdown {
  display: grid;
  grid-template-columns: repeat(4, minmax(64px, 92px));
  justify-content: center;
  margin: 0;
}

.countdown-unit {
  position: relative;
  margin: 0;
  padding: 0.1rem 0.8rem;
}

.countdown-unit + .countdown-unit::before {
  position: absolute;
  top: 18%;
  bottom: 18%;
  left: 0;
  width: 1px;
  background: linear-gradient(transparent, rgba(201, 130, 66, 0.52), transparent);
  content: "";
}

.countdown dd {
  margin: 0;
  color: #f5f1e8;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(1.55rem, 3.2vw, 2.05rem);
  font-variant-numeric: tabular-nums;
  font-weight: 400;
  letter-spacing: 0.04em;
  line-height: 1.1;
  text-shadow: 0 0 20px rgba(201, 130, 66, 0.18);
}

.countdown dt {
  margin-top: 0.38rem;
  color: rgba(190, 192, 183, 0.66);
  font-size: 0.57rem;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.launch-date {
  display: block;
  margin-top: 0.82rem;
  color: rgba(173, 178, 168, 0.48);
  font-size: 0.59rem;
  letter-spacing: 0.12em;
}

.launch-message {
  margin: 2.15rem 0 0;
  color: var(--ink);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.35rem;
}

@keyframes reveal {
  from {
    opacity: 0;
    transform: translateY(14px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@media (max-width: 640px) {
  .message {
    padding: 1.9rem 0.8rem;
  }

  .eyebrow {
    margin-bottom: 1rem;
    font-size: 0.61rem;
    letter-spacing: 0.27em;
  }

  h1 {
    letter-spacing: 0.04em;
  }

  .ornament {
    margin-top: 1.5rem;
    margin-bottom: 1.35rem;
  }

  .lead {
    line-height: 1.7;
  }

  .launch-countdown {
    margin-top: 1.65rem;
  }

  .countdown {
    grid-template-columns: repeat(4, minmax(56px, 74px));
  }

  .countdown-unit {
    padding-inline: 0.5rem;
  }

  .photo-gallery {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 0.45rem;
    margin-top: 1.5rem;
  }

  .gallery-item {
    border-radius: 6px;
  }
}

@media (max-height: 650px) {
  .eyebrow {
    margin-bottom: 0.7rem;
  }

  .ornament {
    margin-block: 1rem;
  }

  .launch-countdown {
    margin-top: 1.1rem;
  }

  .launch-date {
    margin-top: 0.55rem;
  }

  .photo-gallery {
    margin-top: 1rem;
  }
}

@media (prefers-reduced-motion: reduce) {
  .message {
    animation: none;
  }
}
