/*
  Waypoint hosted shell — skeleton styling (F2/CH-79).

  This is NOT the D-052 design system. That arrives with the surface port in CH-80,
  which brings the byte-pinned token file (app/src/boardnotes-tokens.css) across intact.
  Copying a subset of those tokens here would create a second, drifting source for
  values D-052 pinned precisely so there would be one — so this file deliberately
  shares nothing with them and is expected to be replaced whole.
*/

:root {
  color-scheme: light dark;
  --bg: #ffffff;
  --fg: #14171a;
  --muted: #5b6570;
  --line: #e2e6ea;
  --accent: #0b5cad;
  --error: #a6231b;
}

@media (prefers-color-scheme: dark) {
  :root {
    --bg: #14171a;
    --fg: #eef1f4;
    --muted: #98a3ad;
    --line: #2a3138;
    --accent: #6ba8e8;
    --error: #ef8279;
  }
}

* { box-sizing: border-box; }

body {
  margin: 0;
  background: var(--bg);
  color: var(--fg);
  font: 16px/1.5 -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
}

.hidden { display: none !important; }

.screen {
  display: flex;
  justify-content: center;
  padding: 3rem 1.25rem;
}

.card {
  width: 100%;
  max-width: 26rem;
  border: 1px solid var(--line);
  border-radius: 10px;
  padding: 2rem;
  text-align: center;
}

.card.wide {
  max-width: 44rem;
  text-align: left;
}

.wordmark {
  margin: 0;
  font-size: 2rem;
  font-weight: 650;
  letter-spacing: -0.02em;
}

.wordmark.small { font-size: 1.125rem; }

.sub {
  margin: 0.5rem 0 1.75rem;
  color: var(--muted);
}

button {
  font: inherit;
  padding: 0.625rem 1.25rem;
  border: 0;
  border-radius: 6px;
  background: var(--accent);
  color: #fff;
  cursor: pointer;
}

button:disabled { opacity: 0.6; cursor: default; }

button.link {
  background: none;
  color: var(--accent);
  padding: 0.25rem 0.5rem;
  text-decoration: underline;
}

.notice {
  min-height: 1.5rem;
  margin: 1rem 0 0;
  color: var(--muted);
  font-size: 0.9375rem;
}

.notice.error { color: var(--error); }

.topbar {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.875rem 1.25rem;
  border-bottom: 1px solid var(--line);
}

.spacer { flex: 1; }

.who { color: var(--muted); font-size: 0.9375rem; }

.companies {
  margin: 0.5rem 0 0;
  padding-left: 1.25rem;
}

.companies .empty {
  list-style: none;
  margin-left: -1.25rem;
  color: var(--muted);
}
