/* Suite core pages. APPROVED ARCHITECTURE (2026-09-25) · local build, not deployed. COL palette, system fonts. */
:root {
  --ink: #0b1220;
  --muted: #4a5468;
  --paper: #fffdf8;
  --bone: #f3f0e8;
  --line: #ddd8cb;
  --accent: #1d3ed0;
  --gold: #f2b84b;
  --danger: #a3261a;
  color-scheme: light dark;
}
@media (prefers-color-scheme: dark) {
  :root { --ink: #f3f0e8; --muted: #aab3c5; --paper: #0b1220; --bone: #1a2540; --line: #2b3858; --accent: #8ea6ff; --danger: #ff8f80; }
}
* { box-sizing: border-box; }
body { margin: 0; background: var(--paper); color: var(--ink); font: 16px/1.5 system-ui, -apple-system, "Segoe UI", Roboto, sans-serif; }
a { color: var(--accent); }
a:focus-visible, button:focus-visible, input:focus-visible { outline: 3px solid var(--gold); outline-offset: 2px; }
.prototype-banner { margin: 0; padding: 0.4rem 1rem; background: var(--gold); color: #0b1220; font-size: 0.85rem; font-weight: 600; text-align: center; }
.site-header { display: flex; align-items: center; justify-content: space-between; gap: 1rem; padding: 0.75rem 1rem; border-bottom: 1px solid var(--line); }
.brand { font-weight: 800; font-size: 1.1rem; color: var(--ink); text-decoration: none; }
.top-nav { display: flex; align-items: center; gap: 1rem; }
.top-nav mw-app-switcher .mw-sw-panel { inset-inline-start: auto; inset-inline-end: 0; }
main { max-width: 60rem; margin: 0 auto; padding: 1.5rem 1rem 3rem; }
h1 { font-size: 1.8rem; line-height: 1.2; margin: 0.5rem 0 0.75rem; }
h2 { font-size: 1.15rem; margin: 2rem 0 0.75rem; }
form { display: grid; gap: 0.9rem; max-width: 26rem; margin: 1rem 0; }
label { display: grid; gap: 0.3rem; font-weight: 600; }
label.check { display: flex; gap: 0.5rem; align-items: center; font-weight: 400; }
input { min-height: 44px; padding: 0.5rem 0.75rem; border: 1px solid var(--line); border-radius: 10px; background: var(--paper); color: var(--ink); font-size: 16px; }
button, .button { display: inline-flex; align-items: center; justify-content: center; min-height: 44px; padding: 0 1.1rem; border: 0; border-radius: 10px; background: var(--accent); color: #fffdf8; font: 600 1rem/1 inherit; text-decoration: none; cursor: pointer; }
.button.secondary { background: var(--bone); color: var(--ink); border: 1px solid var(--line); }
button.danger { background: var(--danger); }
.actions { display: flex; gap: 0.75rem; flex-wrap: wrap; }
.muted, .note { color: var(--muted); }
.note { font-size: 0.9rem; }
.error { padding: 0.6rem 0.8rem; border-left: 4px solid var(--danger); background: var(--bone); }
.app-grid { list-style: none; padding: 0; display: grid; gap: 1rem; grid-template-columns: repeat(auto-fill, minmax(14rem, 1fr)); }
.app-card { display: flex; flex-direction: column; gap: 0.4rem; padding: 1rem; border: 1px solid var(--line); border-radius: 14px; background: var(--paper); }
.app-card h3 { margin: 0; font-size: 1.05rem; }
.app-card p { margin: 0; }
.app-card .meta { font-size: 0.85rem; color: var(--muted); }
.app-card .button, .app-card .muted { margin-top: auto; align-self: flex-start; }
.members { padding-left: 1.1rem; }
.site-footer { padding: 1.5rem 1rem; border-top: 1px solid var(--line); color: var(--muted); font-size: 0.85rem; text-align: center; }
details { margin-top: 2rem; }
