/* Design tokens — color, type, layout, effects. Load first; everything else references these. */
:root {
  color-scheme: dark;

  /* color */
  --bg: #0e0e0e;
  --text: #f4f4f4;
  --text-soft: #cfcfcf;
  --border: rgba(255, 255, 255, 0.08);
  --green: #43b96a;
  --green-soft: #6dd092;
  --amber: #d5a528;
  --purple: #bda2ff;
  --blue: #5b9bf0;

  /* type */
  --sans: "Inter", system-ui, -apple-system, BlinkMacSystemFont, sans-serif;
  --mono: "IBM Plex Mono", ui-monospace, SFMono-Regular, Menlo, Consolas, monospace;

  /* layout */
  --container: 720px;
  --gutter: 24px;

  /* effects */
  --shadow-pill:
    0 0 0 0.5px rgba(255, 255, 255, 0.08),
    inset 0 1px 0 rgba(255, 255, 255, 0.08),
    0 1px 2px rgba(0, 0, 0, 0.4),
    0 4px 12px rgba(0, 0, 0, 0.25);
  --pressed-text: 0 1px 1px rgba(0, 0, 0, 0.5);

  /* latitude-style framed panel — shared by the hero screenshot and the
     feature grid so the two frames stay identical */
  --frame-ring: rgba(255, 255, 255, 0.03);
  --frame-hairline: rgba(255, 255, 255, 0.07);
  --frame-radius: 22px;
  --frame-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.09),
    0 18px 40px -10px rgba(0, 0, 0, 0.5),
    0 70px 100px -28px rgba(0, 0, 0, 0.55);
}
