:root {
  color-scheme: light dark;
  --bg: #f7f8f8;
  --surface: #ffffff;
  --surface-soft: #f1f4f3;
  --surface-raised: #ffffff;
  --text: #1c2221;
  --text-secondary: #5f6967;
  --text-muted: #7b8583;
  --border: #dfe4e3;
  --border-strong: #c8d0ce;
  --accent: #287b74;
  --accent-hover: #216b65;
  --accent-strong: #1e625d;
  --accent-soft: #e5f1ef;
  --success: #36785a;
  --success-soft: #e8f2ec;
  --warning: #8d672a;
  --warning-soft: #f7f0e2;
  --danger: #a14a4a;
  --danger-hover: #873d3d;
  --danger-soft: #f7eaea;
  --focus: rgba(40, 123, 116, .28);
  --shadow-dialog: 0 18px 55px rgba(18, 28, 26, .18);

  --space-1: 4px;
  --space-2: 8px;
  --space-3: 12px;
  --space-4: 16px;
  --space-5: 20px;
  --space-6: 24px;
  --space-8: 32px;
  --space-10: 40px;
  --space-12: 48px;
  --space-16: 64px;

  --radius-sm: 6px;
  --radius-md: 8px;
  --radius-lg: 10px;
  --radius-dialog: 12px;

  --content-width: 740px;
  --study-width: 650px;
  --sidebar-width: 218px;
  --bottom-nav-height: 66px;
  --mobile-header-height: 56px;

  --ease: cubic-bezier(.2, .8, .2, 1);
}

:root[data-theme="dark"] {
  --bg: #151918;
  --surface: #1d2221;
  --surface-soft: #242a29;
  --surface-raised: #202625;
  --text: #f0f3f2;
  --text-secondary: #b6bfbd;
  --text-muted: #8f9996;
  --border: #333a38;
  --border-strong: #45504d;
  --accent: #70b8ae;
  --accent-hover: #86c7be;
  --accent-strong: #9bd3ca;
  --accent-soft: #203a36;
  --success: #78b495;
  --success-soft: #20352a;
  --warning: #d0a65a;
  --warning-soft: #3b3120;
  --danger: #d67d7d;
  --danger-hover: #e29191;
  --danger-soft: #3c2525;
  --focus: rgba(112, 184, 174, .28);
  --shadow-dialog: 0 20px 60px rgba(0, 0, 0, .42);
}

@media (prefers-color-scheme: dark) {
  :root:not([data-theme="light"]):not([data-theme="dark"]) {
    --bg: #151918;
    --surface: #1d2221;
    --surface-soft: #242a29;
    --surface-raised: #202625;
    --text: #f0f3f2;
    --text-secondary: #b6bfbd;
    --text-muted: #8f9996;
    --border: #333a38;
    --border-strong: #45504d;
    --accent: #70b8ae;
    --accent-hover: #86c7be;
    --accent-strong: #9bd3ca;
    --accent-soft: #203a36;
    --success: #78b495;
    --success-soft: #20352a;
    --warning: #d0a65a;
    --warning-soft: #3b3120;
    --danger: #d67d7d;
    --danger-hover: #e29191;
    --danger-soft: #3c2525;
    --focus: rgba(112, 184, 174, .28);
  }
}
