@import url('https://fonts.googleapis.com/css2?family=IBM+Plex+Sans:wght@400;500;600;700&family=Space+Grotesk:wght@500;700&display=swap');

:root {
  --bg: #f3f8fc;
  --bg-soft: #f9fcff;
  --surface: rgba(255, 255, 255, 0.82);
  --surface-strong: #ffffff;
  --text: #15324b;
  --text-muted: #4d6579;
  --primary: #0b7cab;
  --primary-dark: #095e83;
  --border: #d8e6f1;
  --shadow: 0 14px 34px rgba(22, 69, 99, 0.12);
  --radius: 16px;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: 'IBM Plex Sans', 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  color: var(--text);
  background:
    radial-gradient(circle at 10% 15%, rgba(12, 130, 180, 0.14), transparent 44%),
    radial-gradient(circle at 90% 5%, rgba(20, 150, 200, 0.1), transparent 42%),
    linear-gradient(180deg, var(--bg-soft), var(--bg));
  min-height: 100vh;
}

h1,
h2,
h3,
h4,
h5 {
  font-family: 'Space Grotesk', 'IBM Plex Sans', sans-serif;
  letter-spacing: 0.01em;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  backdrop-filter: blur(8px);
  background: rgba(248, 252, 255, 0.88);
  border-bottom: 1px solid var(--border);
}

.navbar {
  padding-top: 0.55rem;
  padding-bottom: 0.55rem;
}

.navbar-brand {
  font-weight: 700;
  color: var(--text);
  margin-right: 1rem;
  line-height: 1;
  white-space: nowrap;
}

.brand-logo {
  height: 44px;
  width: auto;
  display: block;
}

.brand-text {
  display: inline-flex;
  align-items: center;
  line-height: 1;
  transform: translateY(1px);
  margin-left: clamp(1.4rem, 6vw, 5.5rem);
  white-space: nowrap;
}

.navbar-brand .brand-highlight {
  color: var(--primary);
  margin-left: 0.32rem;
}

.nav-link {
  color: var(--text-muted);
  font-weight: 500;
}

.navbar-nav {
  align-items: center;
}

.nav-link:hover,
.nav-link.active {
  color: var(--primary-dark);
}

.hero {
  margin-top: 1.75rem;
  border-radius: 24px;
  border: 1px solid var(--border);
  overflow: hidden;
  box-shadow: var(--shadow);
}

.hero-shell {
  padding: 3.4rem 2rem;
  background:
    linear-gradient(115deg, rgba(255, 255, 255, 0.96) 0%, rgba(240, 248, 255, 0.9) 50%, rgba(224, 244, 255, 0.88) 100%),
    repeating-linear-gradient(
      90deg,
      rgba(11, 124, 171, 0.05) 0,
      rgba(11, 124, 171, 0.05) 1px,
      transparent 1px,
      transparent 22px
    );
}

.hero p.lead {
  color: var(--text-muted);
  max-width: 760px;
}

.kpi {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 1rem 1rem;
  height: 100%;
}

.kpi .value {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--primary-dark);
  margin: 0;
}

.kpi .label {
  margin: 0;
  color: var(--text-muted);
  font-size: 0.92rem;
}

.section {
  padding: 3rem 0;
}

.section-title {
  margin-bottom: 0.4rem;
}

.section-intro {
  color: var(--text-muted);
  max-width: 820px;
}

.glass-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.25rem;
  box-shadow: 0 8px 24px rgba(20, 79, 112, 0.08);
  height: 100%;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.glass-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 14px 30px rgba(20, 79, 112, 0.14);
}

.glass-card h3,
.glass-card h4 {
  font-size: 1.12rem;
}

.lead-profile {
  display: flex;
  gap: 1.4rem;
  align-items: flex-start;
}

.lead-profile-body {
  min-width: 0;
}

.profile-photo {
  width: 120px;
  height: 120px;
  border-radius: 14px;
  object-fit: cover;
  border: 1px solid var(--border);
  box-shadow: 0 10px 24px rgba(20, 79, 112, 0.12);
  display: block;
}

.badge-soft {
  background: #eaf6ff;
  color: #0a5f85;
  border: 1px solid #cde8f9;
  font-weight: 600;
  border-radius: 999px;
  padding: 0.32rem 0.75rem;
  font-size: 0.76rem;
}

.quick-links a {
  text-decoration: none;
  color: var(--primary-dark);
  font-weight: 600;
}

.cta-band {
  background: linear-gradient(105deg, rgba(11, 124, 171, 0.1), rgba(11, 124, 171, 0.16));
  border: 1px solid #c9e9f8;
  border-radius: 18px;
  padding: 1.5rem;
}

.table-wrap {
  border: 1px solid var(--border);
  border-radius: 12px;
  background: #fff;
  overflow: hidden;
}

table {
  margin: 0;
}

thead th {
  background: #edf7fc;
  color: #12354e;
  border-bottom: 1px solid #d4e7f3;
}

tbody td {
  color: #2d475b;
}

.btn-primary {
  background: var(--primary);
  border-color: var(--primary);
}

.btn {
  transition: transform 0.18s ease;
}

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

.btn-primary:hover {
  background: var(--primary-dark);
  border-color: var(--primary-dark);
}

.btn-outline-primary {
  color: var(--primary-dark);
  border-color: #93cde7;
}

.btn-outline-primary:hover {
  background: #0b7cab;
  border-color: #0b7cab;
}

.site-footer {
  margin-top: 2.8rem;
  border-top: 1px solid var(--border);
  background: rgba(255, 255, 255, 0.74);
}

.site-footer a {
  color: #0c6690;
  text-decoration: none;
}

.site-footer a:hover {
  text-decoration: underline;
}

.sortable th button {
  border: 0;
  background: transparent;
  padding: 0;
  font-weight: 700;
  color: inherit;
}

.sortable th button:hover {
  color: var(--primary-dark);
}

@media (max-width: 767px) {
  .hero-shell {
    padding: 2.1rem 1.2rem;
  }

  .section {
    padding: 2.1rem 0;
  }

  .brand-logo {
    height: 34px;
  }

  .brand-text {
    font-size: 0.95rem;
    transform: none;
    margin-left: 0.6rem;
  }

  .lead-profile {
    flex-direction: column;
    align-items: flex-start;
  }

  .profile-photo {
    width: 140px;
    height: 140px;
  }
}
