:root {
  /* ── Palette ─────────────────────────────────────────────── */
  --c-bg:           #0f0d0b;
  --c-surface:      #1a1612;
  --c-surface-2:    #241e18;
  --c-surface-3:    #2e261e;
  --c-border:       rgba(255, 190, 80, 0.10);
  --c-border-strong:rgba(255, 190, 80, 0.22);

  /* Amber scale */
  --c-amber:        #d97706;
  --c-amber-light:  #f59e0b;
  --c-amber-dim:    #92400e;
  --c-amber-pale:   rgba(217, 119, 6, 0.12);
  --c-amber-glow:   rgba(245, 158, 11, 0.20);

  /* Text */
  --c-text:         #f5f0e8;
  --c-text-muted:   #9a8a78;
  --c-text-faint:   #5a4e42;

  /* Semantic */
  --c-success:      #22c55e;
  --c-success-pale: rgba(34, 197, 94, 0.12);
  --c-danger:       #ef4444;
  --c-danger-pale:  rgba(239, 68, 68, 0.12);
  --c-blue:         #60a5fa;
  --c-blue-pale:    rgba(96, 165, 250, 0.12);

  /* ── Typography ──────────────────────────────────────────── */
  --font-display: 'Georgia', 'Times New Roman', serif;
  --font-body:    -apple-system, BlinkMacSystemFont, 'Segoe UI', system-ui, sans-serif;
  --font-mono:    'SF Mono', 'Consolas', 'Monaco', monospace;

  --text-xs:   11px;
  --text-sm:   13px;
  --text-base: 15px;
  --text-md:   17px;
  --text-lg:   20px;
  --text-xl:   24px;
  --text-2xl:  30px;
  --text-3xl:  38px;

  /* ── Spacing ─────────────────────────────────────────────── */
  --sp-1:  4px;
  --sp-2:  8px;
  --sp-3:  12px;
  --sp-4:  16px;
  --sp-5:  24px;
  --sp-6:  32px;
  --sp-7:  48px;
  --sp-8:  64px;

  /* ── Radii ───────────────────────────────────────────────── */
  --r-sm:   6px;
  --r-md:  10px;
  --r-lg:  16px;
  --r-xl:  22px;
  --r-2xl: 28px;
  --r-full: 9999px;

  /* ── Shadows ─────────────────────────────────────────────── */
  --shadow-sm:    0 1px 3px rgba(0,0,0,0.4);
  --shadow-card:  0 2px 8px rgba(0,0,0,0.4), 0 1px 2px rgba(0,0,0,0.3);
  --shadow-float: 0 8px 32px rgba(0,0,0,0.6), 0 2px 8px rgba(0,0,0,0.4);
  --shadow-amber: 0 0 0 1px var(--c-border-strong), 0 4px 24px rgba(217, 119, 6, 0.25);

  /* ── Shell dimensions ────────────────────────────────────── */
  --header-h: 56px;
  --bnav-h:   64px;

  /* ── Transitions ─────────────────────────────────────────── */
  --ease:        cubic-bezier(0.4, 0, 0.2, 1);
  --ease-spring: cubic-bezier(0.34, 1.56, 0.64, 1);
  --ease-out:    cubic-bezier(0, 0, 0.2, 1);
  --t-fast:  120ms;
  --t-mid:   220ms;
  --t-slow:  380ms;
}

/* Reset */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html {
  font-size: 16px;
  -webkit-text-size-adjust: 100%;
  height: 100%;
}

body {
  background: var(--c-bg);
  color: var(--c-text);
  font-family: var(--font-body);
  font-size: var(--text-base);
  line-height: 1.5;
  min-height: 100dvh;
  overflow: hidden; /* App shell controls scroll */
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

a { color: inherit; text-decoration: none; }
button { font-family: inherit; font-size: inherit; cursor: pointer; border: none; background: none; }
input, textarea, select { font-family: inherit; }
img { max-width: 100%; display: block; }
