:root {
  --text: #1e293b;
  --text-muted: #64748b;
  --border: #e2e8f0;
  --accent: #000000;
  --transition: .18s cubic-bezier(.4, 0, .2, 1);
}

*, *::before, *::after { box-sizing: border-box; }

body {
  color: var(--text);
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  -webkit-font-smoothing: antialiased;
  background: #ffffff;
}

/* ── Navbar ──────────────────────────────────────────────── */
.navbar-glass {
  background: rgba(255, 255, 255, .95);
  border-bottom: 1px solid var(--border);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}

.logo-brand {
  height: 26px;
  width: auto;
}

/* ── Hero ────────────────────────────────────────────────── */
.hero-title {
  font-size: clamp(2.5rem, 6vw, 3.75rem);
  font-weight: 800;
  color: var(--text);
  letter-spacing: -.025em;
  line-height: 1.1;
}

/* ── Hero Sub ────────────────────────────────────────────── */
.hero-sub {
  font-size: 1.05rem;
  color: var(--text-muted);
}

/* ── Footer ──────────────────────────────────────────────── */
footer {
  border-top: 1px solid var(--border);
}

/* ── Login Button ────────────────────────────────────────── */
.btn-dark {
  transition: background var(--transition), box-shadow var(--transition);
}
.btn-dark:hover {
  background: #1e293b !important;
  border-color: #1e293b !important;
  box-shadow: 0 4px 12px rgba(0, 0, 0, .15);
}
