/* EDGE-1 decoy placeholder styling.
 * System font stack only — no @font-face, no @import, no url() pointing
 * anywhere but this same origin. See index.html's comment and EDGE-9. */

:root {
  color-scheme: light dark;
  --bg: #f8fafc;
  --card-bg: #ffffff;
  --text: #0f172a;
  --muted: #64748b;
  --accent: #2563eb;
  --accent-2: #4f46e5;
  --border: #e2e8f0;
}

@media (prefers-color-scheme: dark) {
  :root {
    --bg: #0b1120;
    --card-bg: #111827;
    --text: #e5e7eb;
    --muted: #94a3b8;
    --border: #1f2937;
  }
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
  background: var(--bg);
  color: var(--text);
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
}

.card {
  position: relative;
  max-width: 32rem;
  width: 100%;
  padding: 40px 32px;
  border-radius: 1rem;
  border: 1px solid var(--border);
  background: var(--card-bg);
  box-shadow: 0 1px 3px rgba(15, 23, 42, 0.08);
  text-align: center;
}

.dot {
  display: block;
  width: 48px;
  height: 4px;
  margin: 0 auto 24px;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--accent), var(--accent-2));
}

h1 {
  margin: 0 0 12px;
  font-size: 1.5rem;
}

.lead {
  margin: 0 0 4px;
  font-size: 1rem;
}

.lead-en {
  margin: 0 0 20px;
  font-size: 0.9rem;
  color: var(--muted);
}

.muted {
  margin: 0 0 24px;
  font-size: 0.875rem;
  color: var(--muted);
  line-height: 1.5;
}

footer a {
  color: var(--accent);
  text-decoration: none;
  font-size: 0.875rem;
}

footer a:hover {
  text-decoration: underline;
}
