/* Landing page styles. Standalone by design -- see apps/core/middleware.py.
 *
 * Served verbatim: this stack has no build step, so anything written here is
 * published. Keep it terse and mechanical; reasoning belongs in Python, which
 * is never served.
 */
:root {
  --color-bg: #ffffff;
  --color-surface: #f9fafb;
  --color-text: #111827;
  --color-text-muted: #6b7280;
  --color-border: #d1d5db;
  --color-primary: #2563eb;
}

@media (prefers-color-scheme: dark) {
  :root {
    --color-bg: #111827;
    --color-surface: #1f2937;
    --color-text: #f9fafb;
    --color-text-muted: #9ca3af;
    --color-border: #374151;
    --color-primary: #3b82f6;
  }
}

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

body {
  font-family: system-ui, -apple-system, sans-serif;
  background-color: var(--color-bg);
  color: var(--color-text);
  line-height: 1.6;
}

/* Full-height layout: no surrounding chrome on this page. */
.soon-body {
  min-height: 100vh;
  min-height: 100dvh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1.5rem;
}
.soon { text-align: center; }
.soon-brand {
  font-size: clamp(1.5rem, 5vw, 2.25rem);
  font-weight: 800;
  letter-spacing: -0.02em;
  color: var(--color-primary);
  margin-bottom: clamp(1.5rem, 6vw, 2.75rem);
}
.soon-clock {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: clamp(0.5rem, 3vw, 1.5rem);
}
.soon-unit {
  display: flex;
  flex-direction: column;
  gap: 0.375rem;
  min-width: clamp(4.25rem, 18vw, 7rem);
  padding: clamp(0.75rem, 3vw, 1.25rem) 0.5rem;
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: 14px;
}
.soon-value {
  /* Tabular figures stop the box jittering as the seconds change width. */
  font-variant-numeric: tabular-nums;
  font-feature-settings: "tnum";
  font-size: clamp(1.75rem, 8vw, 3.25rem);
  font-weight: 800;
  line-height: 1;
  letter-spacing: -0.02em;
}
.soon-label {
  font-size: clamp(0.625rem, 2vw, 0.75rem);
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--color-text-muted);
}

/* The pre-launch privacy notice shares this stylesheet. Left-aligned prose
   rather than the countdown's centered layout. */
.soon-prose { text-align: left; max-width: 42rem; }
.soon-prose h1 { font-size: 1.5rem; font-weight: 800; margin-bottom: 1rem; }
.soon-prose p { margin-bottom: 0.875rem; color: var(--color-text-muted); }
.soon-prose a { color: var(--color-primary); }

/* Share lists */
.share-items { list-style: none; margin: 1.25rem 0; }
.share-item {
  padding: 0.875rem 0;
  border-top: 1px solid var(--color-border);
}
.share-item a { font-weight: 600; color: var(--color-primary); }
.share-note { font-size: 0.9375rem; margin-top: 0.25rem; }
.share-disclosure {
  font-size: 0.75rem;
  color: var(--color-text-muted);
  border-top: 1px solid var(--color-border);
  padding-top: 0.875rem;
}
