:root {
  /* Brand colors — Bauhaus palette from original clock app */
  --brand-blue: #1D73C9;
  --brand-red: #DA4E55;
  --brand-amber: #F6B355;

  /* Semantic colors */
  --color-primary: var(--brand-blue);
  --color-secondary: var(--brand-red);

  /* Surfaces */
  --bg-app: #F0F0F0;
  --bg-surface: #FFFFFF;

  /* Text */
  --text-primary: #1A1A1A;
  --text-secondary: #606770;
  --text-muted: #65707B;
  --text-inverse: #FFFFFF;

  /* Borders */
  --border-color: #DADDE1;
  --border-color-strong: #BEC3C9;

  /* Toolbar */
  --toolbar-bg: #FFFFFF;
  --toolbar-border: var(--border-color);
  --toolbar-button-hover: rgba(0, 0, 0, 0.06);
  --toolbar-button-active: rgba(29, 115, 201, 0.12);

  /* Sidebar */
  --sidebar-bg: var(--bg-surface);
  --sidebar-tz-width: 280px;
  --sidebar-scripts-width: 320px;
  --sidebar-item-hover: rgba(0, 0, 0, 0.05);

  /* Clock face */
  --clock-face: #FFFFFF;
  --clock-border: #1A1A1A;
  --marker-color: #1A1A1A;
  --hand-hour: var(--brand-blue);
  --hand-minute: var(--brand-amber);
  --hand-second: var(--brand-red);

  /* Sizing */
  --toolbar-height: 60px;
  --touch-target-min: 44px;
  --border-radius-xs: 3px;
  --border-radius-sm: 6px;
  --border-radius-md: 8px;
  --border-radius-lg: 12px;

  /* Spacing */
  --spacing-xs: 4px;
  --spacing-sm: 8px;
  --spacing-md: 12px;
  --spacing-lg: 16px;
  --spacing-xl: 24px;

  /* Typography */
  --font-family: system-ui, -apple-system, "Segoe UI", Roboto, Ubuntu, Cantarell, "Noto Sans", sans-serif;
  --font-size-xs: 11px;
  --font-size-sm: 12px;
  --font-size-md: 14px;
  --font-size-lg: 16px;
  --font-size-xl: 20px;
  --line-height: 1.65;

  /* Focus rings */
  --focus-ring-primary: 0 0 0 3px rgba(29, 115, 201, 0.12);

  /* Shadows */
  --shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.1);
  --shadow-md: 0 5px 40px rgba(0, 0, 0, 0.12);
  --shadow-lg: 0 12px 28px 0 rgba(0, 0, 0, 0.2), 0 2px 4px 0 rgba(0, 0, 0, 0.1);

  /* Transitions */
  --transition-fast: 150ms ease;
  --transition-normal: 400ms cubic-bezier(0.08, 0.52, 0.52, 1);
}
