/* gruvon.app placeholder — Voltage dark, the app's default theme (tokens copied from
   apps/web/src/styles/themes.css, never imported). System fonts only: no request to a font host. */
:root {
  --bg: #0D1311;
  --text: #E7ECE9;
  --muted: #9DB0A6;
  --ink-logo: #F2F2F2;
  --lime: #D5E81A;
  --on-lime: #0D1311;
  --sans: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  --mono: ui-monospace, "SFMono-Regular", Menlo, Consolas, monospace;
}
* { box-sizing: border-box; }
html, body { margin: 0; height: 100%; }
body {
  background: var(--bg);
  color: var(--text);
  font-family: var(--sans);
  -webkit-font-smoothing: antialiased;
}
.stage {
  min-height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: max(32px, env(safe-area-inset-top)) 16px max(32px, env(safe-area-inset-bottom));
  position: relative;
}
.lang { position: absolute; top: max(16px, env(safe-area-inset-top)); right: 20px; }
.lang a, .soon a {
  color: var(--muted);
  font-family: var(--mono);
  font-size: 0.75rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  text-decoration: none;
}
.lang a:hover, .soon a:hover { color: var(--text); }
.brand { margin: 0; line-height: 0; }
.wordmark { width: min(360px, 78vw); height: auto; }
.tagline {
  margin: 22px 0 0;
  font-family: var(--mono);
  font-size: 0.8125rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--muted);
}
.tagline .dot { color: var(--lime); }
.lead { margin: 40px 0 0; max-width: 30rem; font-size: 1.0625rem; line-height: 1.6; color: var(--text); }
.cta {
  margin-top: 28px;
  display: inline-block;
  padding: 16px 28px;
  background: var(--lime);
  color: var(--on-lime);
  border-radius: 4px;
  font-weight: 700;
  font-size: 0.875rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  text-decoration: none;
}
.cta:hover { filter: brightness(0.92); }
.cta:focus-visible, .lang a:focus-visible { outline: 2px solid var(--lime); outline-offset: 3px; }
.soon { margin: 36px 0 0; font-family: var(--mono); font-size: 0.75rem; letter-spacing: 0.12em; text-transform: uppercase; color: var(--muted); }
