/* Baqəme V4 design tokens — canonical source for the whole website.
   Matches the driver/rider app V4 tokens (src/lib/theme.js) and the
   approved baqeme-website-v3.html reference. Link this before any other
   stylesheet so page-specific CSS can consume these custom properties.

   Font <link> tags cannot live in a .css file — copy this block into every
   page's <head>, before this stylesheet's own <link> tag:

   <link rel="preconnect" href="https://cdn.jsdelivr.net">
   <link rel="stylesheet" href="https://cdn.jsdelivr.net/fontsource/css/manjari@latest/index.min.css" />
   <link rel="stylesheet" href="https://cdn.jsdelivr.net/fontsource/css/inter@latest/index.min.css" />
   <link rel="stylesheet" href="https://cdn.jsdelivr.net/fontsource/css/noto-sans-ethiopic@latest/index.min.css" />
*/

:root {
  --lime: #C7FF2E;
  --lime-deep: #ADE317;
  --ink: #0F0F0F;
  --ink-2: #1A1A1A;
  --ink-3: #2E2E2E;
  --ink-4: #3A3A3A;
  --grey-1: #F2F2F2;
  --grey-2: #E4E4E4;
  --muted: #808080;
  --muted-2: #A8A8A8;
  --white: #FFF;
  --red: #FF5A4E;
  --amber: #FFB020;

  --display: 'Manjari', 'Inter', sans-serif;
  --ui: 'Inter', -apple-system, sans-serif;
  --amharic: 'Noto Sans Ethiopic', sans-serif;

  --pad: clamp(20px, 5vw, 72px);
  --max: 1280px;
}

/* Pill buttons — shared across every page. */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 16px 26px;
  border-radius: 99px;
  border: none;
  cursor: pointer;
  font-family: var(--ui);
  font-size: 14.5px;
  font-weight: 700;
  letter-spacing: -0.015em;
  transition: transform 0.2s, background 0.25s, color 0.25s;
}
.btn:active { transform: scale(0.97); }
.btn-lime { background: var(--lime); color: var(--ink); }
.btn-lime:hover { background: var(--lime-deep); }
.btn-ink { background: var(--ink); color: var(--white); }
.btn-ink:hover { background: var(--ink-4); }
.btn-line { background: transparent; color: var(--white); border: 1.5px solid rgba(255,255,255,.2); }
.btn-line:hover { border-color: var(--lime); color: var(--lime); }
.btn-line.on-light { color: var(--ink); border-color: rgba(15,15,15,.18); }
.btn-line.on-light:hover { border-color: var(--ink); background: var(--ink); color: var(--white); }
.arr { width: 24px; height: 24px; border-radius: 50%; background: rgba(255,255,255,.16); display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.btn-lime .arr { background: rgba(15,15,15,.12); }

/* Eyebrow label. */
.eyebrow {
  display: inline-flex; align-items: center; gap: 10px;
  font-size: 11px; font-weight: 700; letter-spacing: .16em; color: var(--lime); margin-bottom: 20px;
}
.eyebrow b {
  font-family: var(--display); font-size: 13px; letter-spacing: 0;
  background: var(--lime); color: var(--ink); border-radius: 99px; padding: 2px 9px;
}

/* Section contrast classes — dark is the page default, these are the exceptions. */
.light { background: var(--white); color: var(--ink); }
.light .lead, .light .body { color: var(--muted); }
.light .eyebrow { color: var(--ink); }
.light .eyebrow b { background: var(--ink); color: var(--lime); }
.limeblock { background: var(--lime); color: var(--ink); }
.limeblock .lead { color: rgba(15,15,15,.62); }
.limeblock .eyebrow { color: var(--ink); }
.limeblock .eyebrow b { background: var(--ink); color: var(--lime); }
