/* ── Ditther Landing — Theme ── */
/* Mirror of app theme.css — same tokens, keep in sync */

:root {
  /* Backgrounds */
  --bg:  #0d0d0f;
  --bg2: #141417;
  --bg3: #1b1b23;

  /* Borders */
  --border:  rgba(255, 255, 255, 0.1);
  --border2: rgba(255, 255, 255, 0.174);
  --border3: rgba(168, 168, 168, 0.08);

  /* Text */
  --text:  #ffffff;
  --text1: rgba(255, 255, 255, 0.722)f;
  --text2: #8d8d95;
  --text3: #4e4e53;

  /* Accent — lime, intentional */
  --accent:  #c8f542;
  --accent2: rgba(200, 245, 66, 0.10);

  /* Glass — thin (buttons, cards) */
  --glass-from: rgba(255, 255, 255, 0.115);
  --glass-to:   rgba(255, 255, 255, 0.03);
  --glass-blur: 8px;

  /* Glass — thick (primary CTA, active tabs) */
  --thickglass-from: rgba(255, 255, 255, 0.9);
  --thickglass-to:   rgba(195, 195, 195, 0.7);

  /* Shadows */
  --shadow-inset-top:    rgba(255, 255, 255, 0.272);
  --shadow-inset-bottom: rgba(0, 0, 0, 0.407);
  --shadow-drop:         rgba(0, 0, 0, 0.579);

  /* Radius */
  --radius-sm:  0.25rem;
  --radius-md:  0.5rem;
  --radius-lg:  1.2rem;
  --radius-xl:  1.5rem;
  --radius-2xl: 2rem;

  /* Transitions */
  --ease-sm: 0.2s cubic-bezier(0.25, 0, 0, 1);
  --ease-md: 0.3s cubic-bezier(0.25, 0, 0, 1);
  --ease-lg: 0.4s cubic-bezier(0.25, 0, 0, 1);
}