:root {
  --bg: #f6f8fb;
  --bg2: #ffffff;
  --card: #ffffff;
  --border: #e5e9f2;
  --text: #0f1b2d;
  --muted: #5f6c7b;
  --faint: #8a94a3;
  --accent: #0b5db6;
  --accent2: #0a4a8f;
}

/* Offset anchor jumps for sticky header */
#approach, #focus, #contact {
  scroll-margin-top: 140px; /* adjust if needed */
}

* { box-sizing: border-box; }
html, body { height: 100%; }

body {
  margin: 0;
  font-family: ui-sans-serif, system-ui, -apple-system, Segoe UI, Roboto, Helvetica, Arial;
  color: var(--text);
  background: linear-gradient(180deg, var(--bg), var(--bg2));
}

/* Links (light theme) */
a { color: var(--accent2); text-decoration: none; }
a:hover { text-decoration: underline; }

.container {
  width: min(1040px, calc(100% - 48px));
  margin: 0 auto;
}

/* ---------- Header ---------- */
.top {
  position: sticky;
  top: 0;
  z-index: 10;
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--border);
}

.headerRow {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 24px;
  padding: 8px 0;   /* reduced from 22px */
}

.brand {
  display: flex;
  align-items: center;
}

.logo {
  height: 115px;  /* 155 * 1.15 = 178 (logo +15% again, but clean) */
  width: auto;
  display: block;
  object-fit: contain;
}

.taglineInline {
  justify-self: center;
  font-size: 18px;
  color: var(--muted);
  font-weight: 600;
  white-space: nowrap;
}

.nav {
  display: flex;
  align-items: center;
  gap: 22px;
}

/* nav links should be muted, not accent */
.nav a {
  color: var(--muted);
  font-size: 14px;
  text-decoration: none;
}
.nav a:hover { color: var(--text); text-decoration: none; }

/* Contact pill in light theme */
.pill {
  padding: 8px 12px;
  border: 1px solid var(--border);
  border-radius: 999px;
  background: #ffffff;
}

/* ---------- Hero ---------- */
.hero {
  padding: 28px 0 44px;   /* reduced from 74px */
}

h1 {
  font-size: clamp(30px, 4vw, 44px);
  line-height: 1.06;
  margin: 0 0 14px;
  letter-spacing: -0.5px;
}

.lead {
  margin: 0;
  color: var(--muted);
  font-size: 18px;
  line-height: 1.55;
  max-width: 860px;
}

.lead.small { font-size: 16px; color: var(--muted); }

.ctaRow {
  display: flex;
  gap: 12px;
  margin-top: 22px;
  flex-wrap: wrap;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 11px 16px;
  border-radius: 12px;
  background: linear-gradient(180deg, var(--accent), var(--accent2));
  color: white;
  font-weight: 600;
  text-decoration: none;
  border: 1px solid rgba(15, 27, 45, 0.08);
}

.button:hover { text-decoration: none; filter: brightness(1.06); }

.button.ghost {
  background: #ffffff;
  color: var(--text);
  border: 1px solid var(--border);
}

/* ---------- Cards ---------- */
.cards {
  margin-top: 26px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
}

.card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 18px;
  padding: 16px;
  box-shadow: 0 8px 24px rgba(15, 27, 45, 0.05);
}

.cardTitle {
  font-weight: 700;
  margin-bottom: 6px;
}

.cardBody {
  color: var(--muted);
  line-height: 1.45;
  font-size: 14.5px;
}

/* ---------- Sections ---------- */
.section {
  padding: 46px 0;
  border-top: 1px solid rgba(15, 27, 45, 0.07);
}

.section.alt {
  background: rgba(11, 93, 182, 0.03);
}

h2 {
  margin: 0 0 10px;
  font-size: 22px;
  letter-spacing: -0.2px;
}

.grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
  margin-top: 16px;
}

.panel {
  border-radius: 18px;
  background: #ffffff;
  border: 1px solid var(--border);
  padding: 16px;
  box-shadow: 0 8px 24px rgba(15, 27, 45, 0.04);
}

.panel h3 {
  margin: 0 0 6px;
  font-size: 16px;
}

.panel p {
  margin: 0;
  color: var(--muted);
  line-height: 1.5;
  font-size: 14.5px;
}

/* ---------- Bullets ---------- */
.bullets {
  margin-top: 18px;
  display: grid;
  gap: 14px;
}

.bullet {
  display: grid;
  grid-template-columns: 14px 1fr;
  gap: 12px;
  align-items: start;
  padding: 14px 14px;
  border-radius: 18px;
  background: #ffffff;
  border: 1px solid var(--border);
  box-shadow: 0 8px 24px rgba(15, 27, 45, 0.04);
}

.dot {
  width: 10px;
  height: 10px;
  margin-top: 5px;
  border-radius: 999px;
  background: linear-gradient(180deg, var(--accent), var(--accent2));
  box-shadow: 0 0 0 3px rgba(11, 93, 182, 0.18);
}

/* ---------- Contact ---------- */
.contactBox {
  margin-top: 16px;
  border-radius: 18px;
  background: #ffffff;
  border: 1px solid var(--border);
  padding: 14px;
  max-width: 620px;
  box-shadow: 0 8px 24px rgba(15, 27, 45, 0.04);
}

.contactRow {
  display: grid;
  grid-template-columns: 110px 1fr;
  gap: 10px;
  padding: 10px 6px;
}

.label { color: var(--faint); font-size: 13px; }
.value { color: var(--text); font-size: 15px; }

.footer {
  margin-top: 22px;
  color: var(--faint);
  font-size: 13px;
  padding-bottom: 8px;
}

/* ---------- Mobile ---------- */
@media (max-width: 880px) {
  .cards { grid-template-columns: 1fr; }
  .grid { grid-template-columns: 1fr; }

  .headerRow {
    flex-direction: column;
    align-items: flex-start;
    padding: 18px 0 14px;
  }

  .brand {
    min-width: 0;
    align-items: flex-start;
  }

  .taglineInline {
    white-space: normal;
    margin-bottom: 0;
  }

  .nav { justify-content: flex-start; }
}

.contactPrimary {
  font-size: 18px;
  font-weight: 600;
}

.contactPrimary a {
  color: var(--accent2);
  text-decoration: none;
}

.contactPrimary a:hover {
  text-decoration: underline;
}
