@import url('https://fonts.googleapis.com/css2?family=Plus+Jakarta+Sans:wght@400;500;600;700;800&display=swap');

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

:root {
  --bg:            #ffffff;
  --fg:            #0a0a0a;
  --fg-muted:      #6b7280;
  --fg-subtle:     #9ca3af;
  --accent:        #f59e0b;
  --accent-hover:  #d97706;
  --accent-900:    #78350f;
  --surface:       #f9fafb;
  --surface-2:     #f3f4f6;
  --border:        #e5e7eb;
  --r:             0.75rem;
  --r-lg:          1rem;
  --r-2xl:         1.5rem;
  --font-body:     'Plus Jakarta Sans', system-ui, -apple-system, sans-serif;
}

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  background: var(--bg);
  color: var(--fg);
  -webkit-font-smoothing: antialiased;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 24px;
}

/* ── Card ── */
.card {
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--r-2xl);
  padding: 48px 40px 40px;
  max-width: 480px;
  width: 100%;
  text-align: center;
  box-shadow:
    0 1px 2px rgba(0,0,0,0.04),
    0 8px 32px rgba(0,0,0,0.06);
}

/* ── Logo ── */
.logo-wrap {
  display: flex;
  justify-content: center;
  margin-bottom: 32px;
}

.logo-wrap img {
  height: 28px;
  width: auto;
}

/* ── Divider ── */
.divider {
  height: 1px;
  background: var(--border);
  margin: 0 0 28px;
}

/* ── Domain pill ── */
.domain-pill {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 4px 12px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 9999px;
  font-size: 12px;
  font-weight: 600;
  color: var(--fg-muted);
  letter-spacing: 0.02em;
  margin-bottom: 16px;
}

.domain-pill span {
  display: inline-block;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--accent);
}

/* ── Heading ── */
h1 {
  font-size: 18px;
  font-weight: 700;
  color: var(--fg);
  line-height: 1.45;
  margin-bottom: 8px;
}

.desc {
  font-size: 14px;
  color: var(--fg-muted);
  line-height: 1.6;
  margin-bottom: 36px;
}

.desc strong {
  color: var(--fg);
  font-weight: 600;
}

/* ── Countdown ── */
.countdown-section {
  margin-bottom: 20px;
}

.countdown-label {
  font-size: 12px;
  font-weight: 500;
  color: var(--fg-subtle);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 10px;
}

.countdown {
  font-size: 72px;
  font-weight: 800;
  color: var(--accent);
  line-height: 1;
  letter-spacing: -0.03em;
  transition: transform 0.15s ease;
}

.countdown.tick {
  transform: scale(1.12);
}

/* ── Progress ── */
.progress-bar {
  height: 4px;
  background: var(--surface-2);
  border-radius: 9999px;
  overflow: hidden;
  margin-bottom: 32px;
}

.progress-fill {
  height: 100%;
  background: var(--accent);
  border-radius: 9999px;
  width: 100%;
  transition: width 1s linear;
}

/* ── CTA button ── */
.cta-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 11px 22px;
  background: var(--accent);
  color: #fff;
  text-decoration: none;
  border-radius: var(--r);
  font-size: 14px;
  font-weight: 600;
  transition: background 0.15s ease, transform 0.1s ease;
}

.cta-btn:hover {
  background: var(--accent-hover);
  transform: translateY(-1px);
}

.cta-btn svg {
  flex-shrink: 0;
}

/* ── Footer ── */
.footer {
  margin-top: 28px;
  font-size: 12px;
  color: var(--fg-subtle);
}

@media (max-width: 480px) {
  .card { padding: 36px 24px 32px; }
  .countdown { font-size: 56px; }
}
