:root {
  /* Brand palette (extracted from Canva March 2025 template) */
  --ns-peach: #FCC8A4;
  --ns-peach-dark: #F8B07C;
  --ns-black: #000000;
  --ns-white: #FCFCFC;
  --ns-gray-100: #F0F0F0;
  --ns-gray-200: #C4C4C4;
  --ns-gray-500: #7C7C7C;
  --ns-gray-800: #181818;

  /* Status palette */
  --status-pendiente: var(--ns-peach);
  --status-en-progreso: #FFE08A;
  --status-resuelto: #5BC489;
  --status-aprobado: #4DAF7C;
  --status-error: #E76F51;

  /* Typography */
  --font-display: "Anton", "Arial Black", sans-serif;
  --font-sans: "Montserrat", system-ui, -apple-system, "Segoe UI", sans-serif;

  /* Spacing */
  --space-1: 4px; --space-2: 8px; --space-3: 12px;
  --space-4: 16px; --space-6: 24px; --space-8: 32px;

  /* Radii */
  --radius-sm: 6px; --radius-md: 12px;
  --radius-lg: 16px; --radius-xl: 20px;

  /* Shadows */
  --shadow-sm: 0 1px 2px rgba(0,0,0,0.06);
  --shadow-md: 0 4px 12px rgba(0,0,0,0.08);
  --shadow-pin: 0 2px 6px rgba(0,0,0,0.18);
}

* { box-sizing: border-box; }
html, body { margin: 0; padding: 0; }
body {
  font-family: var(--font-sans);
  background: var(--ns-white);
  color: var(--ns-black);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

h1, h2, h3 { font-family: var(--font-sans); font-weight: 800; letter-spacing: -0.01em; }
.display { font-family: var(--font-display); font-weight: 400; letter-spacing: 0.02em; }
</content>
