/* Arait Corporate Identity Tokens */
:root {
  --color-brand-deep: #171b75;
  --color-brand-royal: #2563eb;
  --color-brand-indigo: #4f46e5;
  --color-brand-violet: #7c3aed;
  --color-brand-cyan: #06b6d4;
  --color-brand-cyan-soft: #a5f3fc;
  --color-ink: #10162f;
  --color-muted: #5a6382;
  --color-line: #dfe5f4;
  --color-surface: #f7f9ff;
  --color-white: #ffffff;

  --gradient-brand: linear-gradient(135deg, #21d4fd, #2563eb 48%, #7c3aed);
  --gradient-deep: linear-gradient(135deg, #171b75 0%, #2563eb 52%, #7c3aed 100%);

  --font-heading: "Segoe UI", Inter, Poppins, Arial, sans-serif;
  --font-body: Inter, "Segoe UI", Arial, sans-serif;

  --radius-sm: 8px;
  --shadow-brand: 0 18px 38px rgba(37, 99, 235, .28);
}

.btn-primary {
  background: var(--gradient-brand);
  color: var(--color-white);
  border: 0;
  border-radius: var(--radius-sm);
}
