/* ============================================================
   Syto Design Tokens — shared by static marketing pages
   (discover.html, /l/*.html). Keep small and dependency-free.
   ============================================================ */
:root {
  /* Brand */
  --syto-primary: #1689d4;
  --syto-primary-dark: #0e5a8e;
  --syto-primary-soft: #e1f0fa;
  --syto-gradient: linear-gradient(135deg, #1689d4, #0e5a8e);
  --syto-accent: #059669;

  /* Neutrals */
  --syto-ink: #0f172a;
  --syto-ink-mid: #334155;
  --syto-muted: #64748b;
  --syto-border: #e2e8f0;
  --syto-bg: #f1f5f9;
  --syto-surface: #ffffff;

  /* Shape & depth */
  --syto-radius-sm: 10px;
  --syto-radius: 16px;
  --syto-radius-lg: 24px;
  --syto-shadow: 0 4px 20px rgba(15, 23, 42, 0.06);
  --syto-shadow-hover: 0 8px 30px rgba(15, 23, 42, 0.10);

  /* Spacing scale */
  --syto-space-1: 4px;
  --syto-space-2: 8px;
  --syto-space-3: 16px;
  --syto-space-4: 24px;
  --syto-space-5: 40px;
  --syto-space-6: 64px;

  /* Typography */
  --syto-font: 'Heebo', system-ui, -apple-system, sans-serif;
}

/* ---- Base helpers for static pages ---- */
.syto-page {
  font-family: var(--syto-font);
  background: var(--syto-bg);
  color: var(--syto-ink);
  margin: 0;
  line-height: 1.6;
}

.syto-container {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 var(--syto-space-3);
}

.syto-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 28px;
  border-radius: var(--syto-radius-sm);
  background: var(--syto-gradient);
  color: #fff;
  font-family: var(--syto-font);
  font-weight: 700;
  font-size: 16px;
  border: 0;
  cursor: pointer;
  text-decoration: none;
  transition: opacity 0.15s ease, transform 0.15s ease;
}

.syto-btn:hover { opacity: 0.9; transform: translateY(-1px); }

.syto-btn--outline {
  background: var(--syto-surface);
  color: var(--syto-primary-dark);
  border: 1.5px solid var(--syto-primary);
}

.syto-card {
  background: var(--syto-surface);
  border-radius: var(--syto-radius);
  padding: var(--syto-space-4);
  box-shadow: var(--syto-shadow);
}

.syto-chip {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 8px 16px;
  border-radius: 100px;
  border: 1px solid var(--syto-border);
  background: var(--syto-surface);
  color: var(--syto-ink-mid);
  font-family: var(--syto-font);
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.15s ease;
}

.syto-chip:hover { border-color: var(--syto-primary); color: var(--syto-primary-dark); }

.syto-chip--active {
  background: var(--syto-gradient);
  border-color: transparent;
  color: #fff;
}
