:root {
  --text: rgba(255, 255, 255, 0.96);
  --muted: rgba(255, 255, 255, 0.64);
  --glass: rgba(255, 255, 255, 0.10);
  --glass-strong: rgba(255, 255, 255, 0.16);
  --border: rgba(255, 255, 255, 0.18);
}

* {
  box-sizing: border-box;
}

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

body {
  font-family: -apple-system, BlinkMacSystemFont, "SF Pro Display", "SF Pro Text", "Helvetica Neue", Arial, sans-serif;
  color: var(--text);
  background:
    radial-gradient(circle at 20% 20%, rgba(80, 140, 255, 0.35), transparent 30%),
    radial-gradient(circle at 80% 30%, rgba(160, 90, 255, 0.28), transparent 32%),
    radial-gradient(circle at 50% 90%, rgba(40, 190, 180, 0.20), transparent 34%),
    linear-gradient(135deg, #080a12 0%, #111827 45%, #070812 100%);
  overflow-x: hidden;
}

.page {
  min-height: 100vh;
  display: grid;
  place-items: center;
  padding: 32px;
}

.hero {
  width: min(980px, 100%);
  padding: 56px;
  text-align: center;
  border: 1px solid var(--border);
  border-radius: 36px;
  background: linear-gradient(180deg, var(--glass-strong), var(--glass));
  box-shadow: 0 30px 100px rgba(0, 0, 0, 0.35);
  backdrop-filter: blur(28px);
  -webkit-backdrop-filter: blur(28px);
}

.app-icon {
  width: 96px;
  height: 96px;
  border-radius: 24px;
  object-fit: cover;
  box-shadow:
    0 18px 40px rgba(0, 0, 0, 0.35),
    inset 0 1px 0 rgba(255, 255, 255, 0.24);
}

.eyebrow {
  margin: 24px 0 10px;
  color: var(--muted);
  font-size: 15px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

h1 {
  margin: 0;
  font-size: clamp(44px, 7vw, 82px);
  line-height: 0.95;
  letter-spacing: -0.06em;
}

.subtitle {
  max-width: 620px;
  margin: 24px auto 0;
  color: var(--muted);
  font-size: clamp(17px, 2vw, 21px);
  line-height: 1.45;
}

.countdown {
  display: grid;
  grid-template-columns: repeat(4, minmax(120px, 1fr));
  gap: 14px;
  margin-top: 42px;
}

.time-card {
  padding: 22px 18px;
  border: 1px solid var(--border);
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.10);
}

.time-card span {
  display: block;
  font-size: clamp(32px, 5vw, 56px);
  font-weight: 700;
  letter-spacing: -0.04em;
}

.time-card small {
  display: block;
  margin-top: 6px;
  color: var(--muted);
  font-size: 14px;
  font-weight: 600;
}

.launch-date {
  margin: 22px 0 0;
  color: var(--muted);
  font-size: 14px;
}

.cta-row {
  display: flex;
  justify-content: center;
  gap: 12px;
  flex-wrap: wrap;
  margin-top: 28px;
}

.cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  padding: 0 18px;
  border-radius: 999px;
  font-size: 15px;
  font-weight: 650;
  text-decoration: none;
  transition:
    transform 160ms ease,
    background 160ms ease,
    border-color 160ms ease;
}

.cta:hover {
  transform: translateY(-1px);
}

.primary-cta {
  color: #07101f;
  background: rgba(255, 255, 255, 0.92);
  border: 1px solid rgba(255, 255, 255, 0.92);
}

.primary-cta:hover {
  background: rgba(255, 255, 255, 1);
}

.secondary-cta {
  color: var(--text);
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid var(--border);
}

.secondary-cta:hover {
  background: rgba(255, 255, 255, 0.13);
  border-color: rgba(255, 255, 255, 0.28);
}

.footer {
  margin-top: 22px;
  display: flex;
  justify-content: center;
  gap: 14px;
  color: var(--muted);
  font-size: 13px;
}

.footer a {
  color: inherit;
  text-decoration: none;
}

.footer a:hover {
  color: var(--text);
}

@media (max-width: 720px) {
  .page {
    padding: 18px;
  }

  .hero {
    padding: 34px 22px;
    border-radius: 28px;
  }

  .countdown {
    grid-template-columns: repeat(2, 1fr);
  }

  .app-icon {
    width: 82px;
    height: 82px;
    border-radius: 21px;
  }

  .cta-row {
    flex-direction: column;
    align-items: stretch;
  }

  .cta {
    width: 100%;
  }

  .footer {
    flex-direction: column;
    align-items: center;
    gap: 6px;
  }
}