/* Marketing-only product tokens and reset.
   This replaces the 780 KB authenticated-app stylesheet on public pages that
   do not render product UI. Keep values aligned with the leading token/reset
   sections of stelaah.css. */
:root {
  --accent: #3d3d3d;
  --accent-600: #4d4d4d;
  --accent-700: #272727;
  --accent-fg: #fff;
  --accent-soft: #efeff0;
  --accent-soft-strong: #e3e3e5;
  --bg: #fdfcfc;
  --bg-sidebar: #f5f5f5;
  --bg-sunken: #f3f2f1;
  --bg-hover: rgba(31, 36, 29, 0.045);
  --bg-active: rgba(31, 36, 29, 0.07);
  --surface: #fff;
  --surface-2: #fbfafa;
  --overlay: #fff;
  --ink: #1e231c;
  --ink-2: #565d50;
  --ink-3: #7e776a;
  --ink-4: #a39b8b;
  --border: rgba(31, 36, 29, 0.11);
  --border-strong: rgba(31, 36, 29, 0.17);
  --border-subtle: rgba(31, 36, 29, 0.06);
  --shadow-xs: 0 1px 0 rgba(31, 36, 29, 0.03);
  --shadow-sm: 0 1px 2px rgba(31, 36, 29, 0.05), 0 1px 0 rgba(31, 36, 29, 0.03);
  --shadow-md: 0 6px 18px rgba(31, 36, 29, 0.06), 0 1px 3px rgba(31, 36, 29, 0.05);
  --shadow-lg: 0 18px 44px rgba(31, 36, 29, 0.12), 0 3px 10px rgba(31, 36, 29, 0.06);
  --shadow-pop: 0 30px 70px rgba(31, 36, 29, 0.20), 0 6px 16px rgba(31, 36, 29, 0.10);
  --r-xs: 7px;
  --r-sm: 9px;
  --r-md: 12px;
  --r-lg: 16px;
  --r-xl: 22px;
  --r-2xl: 28px;
  --r-pill: 9999px;
  --sp-1: 4px;
  --sp-2: 8px;
  --sp-3: 12px;
  --sp-4: 16px;
  --sp-5: 20px;
  --sp-6: 24px;
  --sp-8: 32px;
  --sp-10: 40px;
  --sp-12: 48px;
  --t-fast: 120ms;
  --t-med: 200ms;
  --t-slow: 300ms;
  --t-drawer: 420ms;
  --ease: cubic-bezier(.32, .72, 0, 1);
  --font-app: 'Onest', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  --font-serif: var(--font-app);
  --font-title: var(--font-app);
  --font-ui: var(--font-app);
  --font-sans: var(--font-app);
  --font-mono: 'Space Mono', ui-monospace, 'SF Mono', Menlo, monospace;
  --fs-body: 14px;
}

[data-accent="pine"] {
  --accent: #21564a;
  --accent-600: #286659;
  --accent-700: #173e35;
  --accent-fg: #f1f6f3;
  --accent-soft: #e0ebe7;
  --accent-soft-strong: #cee0da;
}

*, *::before, *::after { box-sizing: border-box; }
html, body { margin: 0; padding: 0; }
body {
  overflow: hidden;
  background: var(--bg);
  color: var(--ink);
  font-family: var(--font-ui);
  font-size: var(--fs-body);
  line-height: 1.5;
  letter-spacing: -0.006em;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
button, input, textarea, select { color: inherit; font-family: inherit; }
button { cursor: pointer; }
*:focus-visible { outline: 2px solid var(--accent); outline-offset: 2px; }
