*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  overflow-x: hidden;
}

body {
  min-height: 100%;
  overflow-x: hidden;
  overflow-y: auto;
  font-family: "Montserrat", system-ui, sans-serif;
  background: #0a0a0a;
  color: #fff;
}

.page {
  position: relative;
  min-height: 100vh;
  min-height: 100dvh;
}

#amber-bg {
  position: fixed;
  inset: 0;
  z-index: 1;
  width: 100%;
  height: 100%;
  pointer-events: auto;
  touch-action: pan-y;
  -webkit-tap-highlight-color: transparent;
}

.page__content a {
  touch-action: manipulation;
}

.page__overlay {
  position: fixed;
  inset: 0;
  z-index: 2;
  pointer-events: none;
  background:
    radial-gradient(circle at 20% 20%, rgba(232, 196, 150, 0.15), transparent 40%),
    radial-gradient(circle at 80% 80%, rgba(201, 169, 110, 0.12), transparent 45%);
}

.page__content {
  position: relative;
  z-index: 10;
  pointer-events: none;
  min-height: 100vh;
  min-height: 100dvh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: clamp(2rem, 6vh, 4rem) 1.25rem 3rem;
  text-align: center;
}

.page__content > * {
  pointer-events: auto;
}

@media (max-height: 720px) {
  .page__content {
    justify-content: flex-start;
    padding-top: 2rem;
  }
}

.brand {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.25rem;
  margin-bottom: 2.5rem;
}

.brand__lockup {
  margin: 0;
  line-height: 0;
  cursor: pointer;
}

.brand__logo {
  display: block;
  width: min(440px, 90vw);
  height: auto;
  object-fit: contain;
  filter: drop-shadow(0 0 20px rgba(255, 255, 255, 0.15));
  cursor: pointer;
}

.tagline {
  font-size: clamp(0.7rem, 2vw, 0.85rem);
  font-weight: 400;
  letter-spacing: 0.45em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.85);
  margin-top: 0.5rem;
}

.tagline__chevron {
  display: block;
  margin-top: 1rem;
  font-size: 1rem;
  opacity: 0.6;
  animation: bounce 2s ease-in-out infinite;
}

@keyframes bounce {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(6px);
  }
}

@media (prefers-reduced-motion: reduce) {
  .tagline__chevron {
    animation: none;
  }
}

.countdown {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: clamp(0.75rem, 3vw, 1.25rem);
  margin-bottom: 2rem;
  max-width: 720px;
}

.countdown__unit {
  flex: 1 1 120px;
  max-width: 150px;
  min-width: 100px;
  padding: 1.25rem 0.75rem 1rem;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 4px;
  background: rgba(10, 10, 10, 0.5);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  box-shadow:
    0 0 20px rgba(255, 255, 255, 0.08),
    inset 0 0 30px rgba(255, 255, 255, 0.03);
}

.countdown__value {
  display: block;
  font-family: "Montserrat", sans-serif;
  font-size: clamp(2.5rem, 8vw, 3.5rem);
  font-weight: 300;
  line-height: 1;
  color: #fff;
  text-shadow:
    0 0 20px rgba(255, 255, 255, 0.8),
    0 0 40px rgba(255, 255, 255, 0.4);
  font-variant-numeric: tabular-nums;
}

.countdown__label {
  display: block;
  margin-top: 0.65rem;
  font-size: 0.65rem;
  font-weight: 500;
  letter-spacing: 0.2em;
  color: rgba(255, 255, 255, 0.7);
}

.launch-meta {
  display: inline-flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 0.5rem 1rem;
  padding: 0.85rem 1.5rem;
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 999px;
  background: rgba(10, 10, 10, 0.45);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 2.5rem;
}

.launch-meta__divider {
  width: 1px;
  height: 1.25rem;
  background: rgba(255, 255, 255, 0.25);
}

.launch-meta__item {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
}

.launch-meta__icon {
  width: 1rem;
  height: 1rem;
  opacity: 0.85;
}

.launch-live-msg {
  margin-top: -1.5rem;
  margin-bottom: 1.5rem;
  font-size: 0.95rem;
  color: rgba(232, 196, 150, 0.95);
}

.social {
  display: flex;
  gap: 1.5rem;
  align-items: center;
  justify-content: center;
}

.social__link {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 2.5rem;
  height: 2.5rem;
  color: rgba(255, 255, 255, 0.85);
  transition: color 0.2s ease, transform 0.2s ease;
}

.social__link:hover {
  color: #e8c496;
  transform: translateY(-2px);
}

.social__link svg {
  width: 1.35rem;
  height: 1.35rem;
  fill: currentColor;
}

@media (max-width: 520px) {
  .countdown__unit {
    flex: 1 1 calc(50% - 0.75rem);
    max-width: none;
  }

  .launch-meta__divider {
    display: none;
  }

  .launch-meta {
    flex-direction: column;
    border-radius: 1rem;
    padding: 1rem 1.25rem;
  }
}
