/* ══════════════════════════════════════════════════════════════════════
   hydev-v11.css — hyDev Site Builder v1.1 Design Standard
   ─────────────────────────────────────────────────────────────────────
   Glue/bridge file for hydev.html v1.1 upgrade.
   hydev.html has large dedicated CSS files (hydev.css, hydev-editor.css,
   hydev-addons.css, hydev-admin.css) that handle all component styles.
   This file provides the v1.1 framework connection and any overrides.

   App-specific CSS files are preserved (5786 lines total):
     - /css/hydev.css
     - /css/hydev-editor.css
     - /css/hydev-addons.css
     - /css/hydev-admin.css
     - /css/publish-progress.css

   Old framework CSS removed:
     - ios-system.css  → replaced by liquid-glass-v2.css
     - ios-glass.css   → replaced by liquid-glass-v2.css
     - window-containers.css → replaced by hypatia-ds.css
   ══════════════════════════════════════════════════════════════════════ */

/* ── Reset ─────────────────────────────────────────────────────────── */
*{box-sizing:border-box;margin:0;padding:0}

/* ── Theme bridge — wire hyDev CSS vars to theme system ─────────────── */
:root {
  /* hyDev app-specific vars wired to theme system */
  --hd-accent:      var(--accent, #00ffa3);
  --hd-bg:          var(--bg-deep, #000000);
  --hd-surface:     var(--bg-surface, #1a1a1a);
  --hd-card:        var(--bg-card, #181818);
  --hd-border:      var(--border, rgba(255,255,255,.1));
  --hd-text:        var(--text, #ffffff);
  --hd-muted:       var(--muted, #a7a7a7);
}

/* ── Critical: html/body base ────────────────────────────────────── */
html, body {
  background: var(--hd-bg);
  color: var(--hd-text);
  font-family: -apple-system, BlinkMacSystemFont, 'Inter', 'SF Pro Text', sans-serif;
}
