/* Majo design system tokens — single source of truth */
:root {
  --bg: #f7f7f2;
  --surface: #ffffff;
  --surface-alt: #f0f0ea;
  --surface-sunk: #efefe8;
  --text: #1a1a1a;
  --text-secondary: #555555;
  --text-sec: #555555;
  --text-muted: #888888;
  --accent: #C9CF00;
  --accent-dark: #A8AC00;
  --accent-light: #f5f6dc;
  --accent-glow: rgba(201, 207, 0, 0.35);
  --dark-bg: #2D2D2A;
  --border: #e0e0d8;
  --border-strong: #ccccc4;
  --danger: #d64848;
  --warning: #d97706;
  --info: #3b82f6;
  --good: #4d8e3f;
  --r-sm: 8px;
  --r-md: 12px;
  --r-lg: 16px;
  --r-xl: 22px;
  --shadow-sm: 0 1px 2px rgba(0,0,0,0.04);
  --shadow-md: 0 8px 24px rgba(0,0,0,0.06);
  --shadow-lg: 0 20px 60px rgba(0,0,0,0.08);
  --shadow-accent: 0 8px 24px var(--accent-glow);
  --font-display: 'Barlow Condensed', 'Helvetica Neue', sans-serif;
  --font-body: 'DM Sans', 'Helvetica Neue', sans-serif;
}

/* Utility classes */
.h-display {
  font-family: var(--font-display);
  font-style: italic;
  font-weight: 700;
  letter-spacing: -0.01em;
  line-height: 1.0;
}

.u-label {
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--text-sec);
}

@keyframes fadeUp {
  from { opacity: 0; transform: translateY(8px); }
  to   { opacity: 1; transform: translateY(0); }
}
.fade-up { animation: fadeUp 0.35s ease-out both; }

/* AC-01 — focus visible global. Outline oscuro contrasta sobre fondos crema y lima. */
:focus-visible {
  outline: 3px solid var(--text);
  outline-offset: 2px;
  border-radius: 2px;
}
:focus:not(:focus-visible) { outline: none; }
