/* Amax — color tokens. Source: Manual Amax (pp. 03–05). */
:root {
  /* Brand primaries */
  --lime-500: #DDFF55;      /* verde isotónico — signature accent */
  --lime-600: #C8EB3A;      /* hover/pressed on lime */
  --lime-300: #EAFF93;
  --lime-100: #F6FFD4;
  --neptune-500: #11425D;   /* azul neptuno */
  --neptune-400: #2A5B77;
  --neptune-300: #4E7891;
  --midnight-900: #002233;  /* azul medianoche */
  --midnight-950: #001722;
  --midnight-800: #0A2F42;

  /* Brand neutrals */
  --cream-100: #F6F2E7;     /* crema cheviot */
  --cream-200: #ECE6D6;
  --grape-300: #C5C0C9;     /* gris grape */
  --grape-500: #8F8A94;
  --grape-700: #57535C;
  --pacific-200: #C0D6EA;   /* azul pacífico */
  --pacific-300: #A3C2DE;

  /* Ink (manual dark pages / black mark) */
  --ink-900: #16191D;
  --ink-800: #22262B;
  --white: #FFFFFF;

  /* Semantic feedback (derived, kept within palette temperature) */
  --success-500: #3E9B6A;
  --warning-500: #E0A526;
  --danger-500: #D2493A;
  --info-500: var(--neptune-400);

  /* Semantic aliases — light surfaces */
  --bg-page: var(--cream-100);
  --bg-surface: var(--white);
  --bg-subtle: var(--cream-200);
  --bg-inverse: var(--midnight-900);
  --bg-accent: var(--lime-500);

  --text-primary: var(--midnight-900);
  --text-secondary: var(--neptune-500);
  --text-muted: var(--grape-700);
  --text-inverse: var(--white);
  --text-on-accent: var(--midnight-900);
  --text-accent-on-dark: var(--lime-500);

  --border-subtle: var(--grape-300);
  --border-strong: var(--midnight-900);
  --focus-ring: var(--lime-500);

  /* Dark surfaces */
  --dark-bg: var(--midnight-900);
  --dark-surface: var(--midnight-800);
  --dark-raised: var(--neptune-500);
  --dark-border: rgba(255, 255, 255, 0.14);
  --dark-text: var(--white);
  --dark-text-muted: var(--pacific-200);
}
