@import url('https://fonts.googleapis.com/css2?family=Plus+Jakarta+Sans:wght@400;500;600;700;800&family=Heebo:wght@300;400;500;600;700;800&display=swap');

/* ── Tech Horizon · Clean SaaS · Light Default ── */

:root {
  --bg: #f8fafc;
  --surface: #ffffff;
  --border: #e2e8f0;
  --border-light: #f1f5f9;
  --text: #334155;
  --text-light: #64748b;
  --text-lighter: #94a3b8;
  --text-bright: #0f172a;
  --primary: #3b82f6;
  --primary-hover: #2563eb;
  --primary-pale: #eff6ff;
  --success: #16a34a;
  --success-bg: #f0fdf4;
  --success-border: #bbf7d0;
  --error: #dc2626;
  --error-bg: #fef2f2;
  --error-border: #fecaca;
  --font-body: 'Plus Jakarta Sans', 'Heebo', sans-serif;
  --font-heading: 'Plus Jakarta Sans', 'Heebo', sans-serif;
  --font-mono: 'Plus Jakarta Sans', 'Heebo', monospace;
  --radius: 10px;
  --radius-lg: 16px;
}

[data-theme="dark"] {
  --bg: #0f0f17;
  --surface: #1a1a26;
  --border: #2a2a3c;
  --border-light: #222234;
  --text: #b0b8c8;
  --text-light: #8890a4;
  --text-lighter: #5a6278;
  --text-bright: #e8ecf4;
  --primary: #60a5fa;
  --primary-hover: #93c5fd;
  --primary-pale: rgba(96, 165, 250, 0.08);
  --success: #4ade80;
  --success-bg: rgba(74, 222, 128, 0.06);
  --success-border: rgba(74, 222, 128, 0.18);
  --error: #f87171;
  --error-bg: rgba(248, 113, 113, 0.06);
  --error-border: rgba(248, 113, 113, 0.18);
}

body {
  font-family: var(--font-body);
  background: var(--bg);
  color: var(--text);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

/* Cards get generous radius and subtle shadow */
.jb-apply,
.jb-details {
  border-radius: var(--radius-lg);
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.04), 0 4px 12px rgba(0, 0, 0, 0.03);
}

.jb-company-logo {
  border-radius: var(--radius-lg);
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.04);
}

/* Section labels get blue dot */
.jb-section-label::before {
  content: '';
  display: inline-block;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--primary);
  margin-inline-end: .5rem;
  vertical-align: middle;
}

/* Apply button soft shadow */
.jb-apply-btn {
  border-radius: var(--radius);
  box-shadow: 0 1px 3px rgba(59, 130, 246, 0.2);
}
.jb-apply-btn:hover {
  box-shadow: 0 4px 12px rgba(59, 130, 246, 0.25);
}

/* Tags rounded pill style */
.jb-tag {
  border-radius: 20px;
}

/* Flash messages rounded */
.jb-flash {
  border-radius: var(--radius);
}
