: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;
  /* Dark-green brand. Neutrals are biased green so they read as chosen. */
  --canvas: #f4f7f2;
  --text: #14201b;
  --muted: #55655d;
  --accent: #1e5e43;
  --accent-soft: #dce9e1;
  --glow: rgba(30, 94, 67, 0.12);
  --globe-rgb: 30, 94, 67;
}

@media (prefers-color-scheme: dark) {
  :root {
    --canvas: #171a18;
    --text: #eef2ec;
    --muted: #9fb1a7;
    --accent: #4bab7e;
    --accent-soft: #21332a;
    --glow: rgba(75, 171, 126, 0.14);
    --globe-rgb: 120, 190, 150;
  }
}

* { box-sizing: border-box; }

body {
  min-width: 320px;
  min-height: 100vh;
  margin: 0;
  background:
    radial-gradient(circle at 50% 42%, var(--glow), transparent 40rem),
    var(--canvas);
}

.coming-soon {
  width: min(760px, calc(100% - 40px));
  min-height: 100svh;
  margin: 0 auto;
  display: grid;
  align-content: center;
  justify-items: center;
  /* Height-aware padding so the hero fits a laptop viewport without scrolling,
     while still breathing on tall screens. */
  padding: clamp(14px, 3.2vh, 56px) 0;
  text-align: center;
}

.wordmark {
  margin: 0 0 clamp(4px, 0.8vh, 8px);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.3rem;
  font-weight: 700;
  letter-spacing: 0.01em;
}

.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;
}

/* The globe is the hero: a faint, slowly rotating geometric world. The 40vh cap
   keeps it from pushing the copy off a short laptop viewport (aspect-ratio ties
   its height to this width). */
.globe {
  width: min(440px, 74vw, 40vh);
  aspect-ratio: 1;
  margin: clamp(2px, 0.8vh, 10px) 0;
}

.globe canvas {
  display: block;
  width: 100%;
  height: 100%;
}

.eyebrow {
  margin: 0 0 clamp(8px, 1.4vh, 14px);
  color: var(--accent);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.24em;
  text-transform: uppercase;
}

h1 {
  max-width: 700px;
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  /* The 8vh term shrinks the headline only when vertical space is tight (short
     laptops), so it never forces a scroll; tall screens keep the full 4.4rem. */
  font-size: clamp(2.1rem, min(6.4vw, 8vh), 4.4rem);
  line-height: 1.05;
  letter-spacing: -0.032em;
  text-wrap: balance;
}

.lede {
  max-width: 500px;
  margin: clamp(10px, 1.8vh, 22px) 0 0;
  color: var(--muted);
  font-size: clamp(1rem, 2.4vw, 1.15rem);
  line-height: 1.6;
  font-style: italic;
}
