/* Paleta unificada con la landing principal */
:root,
html[data-theme="dark"] {
  color-scheme: dark;
  --bg: #07111f;
  --bg-soft: #0d1b2e;
  --surface: rgba(255, 255, 255, 0.07);
  --surface-strong: rgba(255, 255, 255, 0.11);
  --card: rgba(255, 255, 255, 0.07);
  --text: #f8fafc;
  --muted: #b7c4d6;
  --border: rgba(255, 255, 255, 0.13);
  --primary: #38bdf8;
  --accent: #38bdf8;
  --accent-strong: #0ea5e9;
  --accent-soft: rgba(56, 189, 248, 0.16);
  --success: #22c55e;
  --shadow: 0 24px 80px rgba(0, 0, 0, 0.35);
  --radius-lg: 34px;
  --radius-md: 22px;
  --radius-sm: 14px;
  --radius: 22px;
  --transition: 0.25s ease;
}

html[data-theme="light"] {
  color-scheme: light;
  --bg: #f7fbff;
  --bg-soft: #edf6ff;
  --surface: rgba(255, 255, 255, 0.8);
  --surface-strong: #ffffff;
  --card: rgba(255, 255, 255, 0.84);
  --text: #0f172a;
  --muted: #526176;
  --border: rgba(15, 23, 42, 0.1);
  --primary: #0284c7;
  --accent: #0284c7;
  --accent-strong: #0369a1;
  --accent-soft: rgba(2, 132, 199, 0.12);
  --success: #16a34a;
  --shadow: 0 24px 80px rgba(15, 23, 42, 0.12);
}
