/* ============================================================
   RbxDesk landing theme tokens — extracted from popup.css :root
   ============================================================ */

:root {
  color-scheme: dark;
  --bg: #0f1115;
  --bg-2: #151821;
  --surface: #1b1f2a;
  --surface-2: #222734;
  --line: rgba(232, 234, 240, 0.09);
  --line-strong: rgba(232, 234, 240, 0.16);
  --text: #e8eaf0;
  --text-dim: #9298a8;
  --text-soft: #c6cad6;

  --accent: #5b8cff;
  --accent-strong: #7aa0ff;
  --accent-ink: #07101f;
  --accent-soft: rgba(91, 140, 255, 0.13);
  --accent-line: rgba(91, 140, 255, 0.32);

  --active: #4ade80;
  --active-soft: rgba(74, 222, 128, 0.14);
  --active-line: rgba(74, 222, 128, 0.32);

  /* semantic error tones, taken from the site's panel.css log states */
  --danger: #fb7185;
  --danger-soft: rgba(244, 63, 94, 0.12);
  --danger-line: rgba(244, 63, 94, 0.32);

  --aura: rgba(91, 140, 255, 0.17);

  --shadow-1: 0 18px 48px -16px rgba(0, 0, 0, 0.5);
  --shadow-2: 0 36px 90px -22px rgba(4, 8, 20, 0.6);

  --r-card: 16px;
  --r-control: 10px;
  --r-pill: 999px;
  --ease: cubic-bezier(0.16, 1, 0.3, 1);

  --font-sans: "Space Grotesk", system-ui, -apple-system, sans-serif;
  --font-mono: "JetBrains Mono", ui-monospace, SFMono-Regular, Menlo, monospace;
}
/* Landing base resets (not popup 380px window rules) */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

body {
  min-height: 100vh;
  background-color: var(--bg-2);
  background-image:
    radial-gradient(ellipse 90% 55% at 50% -20%, var(--aura), transparent 62%),
    linear-gradient(180deg, var(--bg-2) 0%, var(--bg) 100%);
  color: var(--text);
  font-family: var(--font-sans);
  font-size: 16px;
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

img,
svg {
  display: block;
  max-width: 100%;
}

a {
  color: inherit;
}

:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 2px;
}

:focus:not(:focus-visible) {
  outline: none;
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
}
