:root {
  --bg: #000000;
  --fg: #fafafa;
  --muted: #a1a1aa;
  --accent: #f97316;
  --accent-soft: rgba(249, 115, 22, 0.12);
  --border-soft: rgba(249, 115, 22, 0.35);
  --font: "Segoe UI", system-ui, -apple-system, sans-serif;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  min-height: 100%;
}

body {
  font-family: var(--font);
  color: var(--fg);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
}

.page {
  position: relative;
  min-height: 100dvh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 2.5rem 1.5rem 3rem;
  overflow: hidden;
}

.bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 0;
}

.bg__image {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.28;
}

.bg__scrim {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(0, 0, 0, 0.7) 0%,
    rgba(0, 0, 0, 0.45) 40%,
    rgba(0, 0, 0, 0.85) 100%
  );
}

.content {
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: 28rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 1.25rem;
}

.shield {
  width: 4.5rem;
  height: auto;
  filter: drop-shadow(0 8px 20px rgba(0, 0, 0, 0.55));
}

.logo {
  width: 7.5rem;
  height: auto;
  opacity: 0.95;
}

.brand-name {
  margin: 0;
  font-size: clamp(1.75rem, 5vw, 2.25rem);
  font-weight: 900;
  letter-spacing: -0.02em;
  line-height: 1.15;
}

.tagline {
  margin: 0;
  font-size: 0.95rem;
  color: var(--muted);
  line-height: 1.45;
}

.headline {
  margin: 0.5rem 0 0;
  font-size: clamp(1.35rem, 4vw, 1.75rem);
  font-weight: 800;
  color: var(--accent);
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.supporting {
  margin: 0;
  font-size: 0.95rem;
  color: #d4d4d8;
  line-height: 1.5;
  max-width: 22rem;
}

.countdown {
  display: grid;
  grid-template-columns: repeat(4, minmax(3.5rem, 1fr));
  gap: 0.65rem;
  width: 100%;
  margin-top: 0.75rem;
}

.countdown__unit {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.35rem;
  padding: 0.85rem 0.4rem;
  border-radius: 0.75rem;
  border: 1px solid var(--border-soft);
  background: var(--accent-soft);
}

.countdown__value {
  font-size: clamp(1.5rem, 5vw, 2rem);
  font-weight: 800;
  font-variant-numeric: tabular-nums;
  line-height: 1;
  color: var(--fg);
}

.countdown__label {
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--muted);
}

.post-launch {
  margin: 1rem 0 0;
  padding: 0.85rem 1.25rem;
  border-radius: 999px;
  border: 1px solid var(--border-soft);
  background: var(--accent-soft);
  font-size: 1rem;
  font-weight: 700;
  color: var(--accent);
}

.features {
  list-style: none;
  margin: 1rem 0 0;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.5rem;
}

.features li {
  font-size: 0.75rem;
  font-weight: 600;
  color: #fdba74;
  padding: 0.35rem 0.75rem;
  border-radius: 999px;
  border: 1px solid var(--border-soft);
  background: rgba(0, 0, 0, 0.35);
}

@media (min-width: 640px) {
  .content {
    max-width: 32rem;
    gap: 1.35rem;
  }

  .shield {
    width: 5.25rem;
  }

  .countdown {
    gap: 0.85rem;
  }

  .countdown__unit {
    padding: 1rem 0.5rem;
  }
}
