:root {
  color-scheme: light dark;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--text);
  background: var(--canvas);
  font-synthesis: none;
  --canvas: #f5f2ea;
  --text: #25231f;
  --muted: #696359;
  --accent: #3d684f;
  --accent-soft: #d9e1d9;
  --glow: rgba(61, 104, 79, 0.14);
}

@media (prefers-color-scheme: dark) {
  :root {
    --canvas: #171a18;
    --text: #f0eee7;
    --muted: #aaa89f;
    --accent: #82b692;
    --accent-soft: #294335;
    --glow: rgba(130, 182, 146, 0.12);
  }
}

* { box-sizing: border-box; }

body {
  min-width: 320px;
  min-height: 100vh;
  margin: 0;
  background:
    radial-gradient(circle at 50% 35%, var(--glow), transparent 36rem),
    var(--canvas);
}

.coming-soon {
  width: min(760px, calc(100% - 40px));
  min-height: 100vh;
  margin: 0 auto;
  display: grid;
  align-content: center;
  justify-items: center;
  padding: 70px 0;
  text-align: center;
}

.wordmark {
  margin: 0 0 54px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.35rem;
  font-weight: 700;
}

.version-badge {
  margin-left: 6px;
  color: var(--muted);
  font: 700 0.62rem Inter, ui-sans-serif, system-ui, sans-serif;
  letter-spacing: 0.06em;
  vertical-align: 0.22em;
}

.status-mark {
  display: flex;
  gap: 7px;
  margin-bottom: 24px;
}

.status-mark span {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--accent);
  animation: pulse 1.4s infinite ease-in-out both;
}

.status-mark span:nth-child(2) { animation-delay: 0.16s; }
.status-mark span:nth-child(3) { animation-delay: 0.32s; }

.eyebrow {
  margin: 0 0 14px;
  color: var(--accent);
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

h1 {
  max-width: 690px;
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(2.2rem, 7vw, 4.9rem);
  line-height: 1.02;
  letter-spacing: -0.035em;
}

.lede {
  max-width: 570px;
  margin: 24px 0 0;
  color: var(--muted);
  font-size: clamp(1rem, 2.5vw, 1.18rem);
  line-height: 1.65;
}

@keyframes pulse {
  0%, 80%, 100% { opacity: 0.35; transform: scale(0.8); }
  40% { opacity: 1; transform: scale(1); }
}

@media (prefers-reduced-motion: reduce) {
  .status-mark span { animation: none; }
}
