/* Bitcoin Guava — design tokens (source of truth: docs/BITCOIN_GUAVA_DESIGN_MASTER.md §2.1)
   Rule: no color exists outside this file. */
@font-face { font-family: 'Sora'; font-weight: 600; font-display: swap; src: url('/assets/fonts/sora-latin-600-normal.woff2') format('woff2'); }
@font-face { font-family: 'Sora'; font-weight: 700; font-display: swap; src: url('/assets/fonts/sora-latin-700-normal.woff2') format('woff2'); }
@font-face { font-family: 'Sora'; font-weight: 800; font-display: swap; src: url('/assets/fonts/sora-latin-800-normal.woff2') format('woff2'); }
@font-face { font-family: 'Inter'; font-weight: 400; font-display: swap; src: url('/assets/fonts/inter-latin-400-normal.woff2') format('woff2'); }
@font-face { font-family: 'Inter'; font-weight: 500; font-display: swap; src: url('/assets/fonts/inter-latin-500-normal.woff2') format('woff2'); }
@font-face { font-family: 'Inter'; font-weight: 600; font-display: swap; src: url('/assets/fonts/inter-latin-600-normal.woff2') format('woff2'); }
@font-face { font-family: 'Inter'; font-weight: 700; font-display: swap; src: url('/assets/fonts/inter-latin-700-normal.woff2') format('woff2'); }

:root {
  color-scheme: light;
  /* core — from the logo */
  --gold: #F2C230; --gold-light: #F7DC4E;
  --orange: #F08000; --ember: #D84A00;
  --leaf: #3E8E1E; --leaf-deep: #1E5C10; --sprout: #6FB52C;
  --cream: #FFF3D6;
  --grad-sunrise: linear-gradient(135deg, #F7DC4E 0%, #F08000 55%, #D84A00 100%);
  /* warm neutrals */
  --paper: #FAF7F1; --surface: #FFFFFF;
  --ink: #1A1512; --ink-2: #5C544A; --muted: #8E857A; --hairline: #EAE3D8;
  /* semantic */
  --up: #1E7D32; --down: #C6362B; --warn: #B87A00; --danger: #C6362B;
  --warn-text: #B87A00;
  /* type */
  --font-display: 'Sora', system-ui, -apple-system, 'Segoe UI', sans-serif;
  --font-ui: 'Inter', system-ui, -apple-system, 'Segoe UI', sans-serif;
  /* shape */
  --r-s: 8px; --r-m: 12px; --r-l: 16px; --r-xl: 24px;
  --shadow-sm: 0 1px 2px rgba(58,31,8,.06);
  --shadow-md: 0 4px 12px rgba(58,31,8,.08);
  --shadow-lg: 0 12px 32px rgba(58,31,8,.12);
  /* space (base 4) */
  --s1: 4px; --s2: 8px; --s3: 12px; --s4: 16px; --s5: 24px; --s6: 32px; --s7: 48px; --s8: 64px;
}
[data-theme="dark"] {
  color-scheme: dark;
  --paper: #14100D; --surface: #1F1913;
  --ink: #F5EFE6; --ink-2: #C7BEB1; --hairline: #33291F;
  --orange: #F5921F; --leaf: #5CA838;
  --cream: #2A2114;
  --shadow-sm: none; --shadow-md: none; --shadow-lg: none;
}
@media (prefers-color-scheme: dark) {
  :root:not([data-theme="light"]) {
    color-scheme: dark;
    --paper: #14100D; --surface: #1F1913;
    --ink: #F5EFE6; --ink-2: #C7BEB1; --hairline: #33291F;
    --orange: #F5921F; --leaf: #5CA838;
    --cream: #2A2114;
    --shadow-sm: none; --shadow-md: none; --shadow-lg: none;
  }
}
