/* =========================
   THEME (matches your landing page)
========================= */
:root {
  --primary: #207a43;
  --secondary: #17705a;
  --light: #f9fefb;
  --bg: #e9fbe9;

  --ink-1: #111;
  --ink-2: #333;
  --ink-3: #777;

  --card: #ffffff;
  --shadow: 0 10px 24px rgba(0,0,0,0.08);
  --radius: 14px;

  --font: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Inter",
    "Helvetica Neue", Arial, "Noto Sans", sans-serif;
}

* { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; }

body {
  font-family: var(--font);
  background: var(--bg);
  color: var(--ink-1);
  line-height: 1.6;
}

/* =========================
   HEADER (same as landing)
========================= */
.site-header {
  background: linear-gradient(to right, #b0f0c2, var(--primary));
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.05);
  padding: 15px 20px;
  position: sticky;
  top: 0;
  z-index: 1000;
}

.nav-container {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
}

.logo-img {
  height: 70px;
  width: auto;
  display: block;
}

.nav-links {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  justify-content: flex-end;
}

.nav-links .tab {
  text-decoration: none;
  font-weight: 600;
  color: var(--ink-2);
  padding: 10px 16px;
  font-size: 1rem;
  border-radius: 8px;
  background-color: #fff;
  transition: transform 0.2s ease, background-color 0.2s ease, color 0.2s ease;
}

.nav-links .tab:hover {
  background-color: #c3f2d2;
  color: var(--primary);
  transform: translateY(-2px);
}

/* =========================
   HERO
========================= */
.hero {
  background: var(--light);
  border-bottom: 1px solid rgba(0,0,0,0.06);
}

.hero-inner {
  max-width: 1100px;
  margin: 0 auto;
  padding: 54px 20px 46px;
  text-align: center;
}

.hero h1 {
  color: var(--secondary);
  font-size: 2.4rem;
  font-weight: 800;
  margin-bottom: 10px;
}

.hero-sub {
  max-width: 860px;
  margin: 0 auto;
  color: #444;
  font-size: 1.05rem;
}

/* =========================
   LAYOUT
========================= */
.page { padding: 46px 0 70px; }

.container {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 20px;
}

.section-title {
  text-align: center;
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--ink-2);
  letter-spacing: 0.2px;
  margin-bottom: 22px;
}

/* 2 cards like your clickbait layout */
.pipeline-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(280px, 1fr));
  gap: 26px;
  align-items: stretch;
}

/* =========================
   CARDS
========================= */
.insight-card {
  background: var(--card);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 22px 22px 18px;
  border: 1px solid rgba(0,0,0,0.06);
}

.chip {
  display: block;              /* important */
  width: fit-content;          /* shrink to text width */
  margin: 0 auto 14px;         /* center horizontally */

  padding: 6px 12px;
  border-radius: 999px;
  font-weight: 700;
  font-size: 0.78rem;
  color: var(--primary);
  background: rgba(32, 122, 67, 0.10);

  text-align: center;          /* center text inside */
}


.insight-card h3 {
  font-size: 1.25rem;
  font-weight: 800;
  color: var(--ink-1);
  margin-bottom: 10px;
}

.lead {
  color: var(--ink-2);
  font-size: 0.98rem;
  margin-bottom: 14px;
}

.meta {
  display: grid;
  gap: 8px;
  margin-bottom: 14px;
}

.meta-row {
  display: grid;
  grid-template-columns: 120px 1fr;
  gap: 10px;
}

.meta-label {
  color: var(--ink-3);
  font-weight: 700;
  font-size: 0.9rem;
}

.meta-value {
  color: var(--ink-2);
  font-weight: 600;
  font-size: 0.92rem;
}

.divider {
  border: none;
  border-top: 1px solid rgba(0,0,0,0.08);
  margin: 14px 0;
}

.insight-card h4 {
  font-size: 0.98rem;
  font-weight: 800;
  color: var(--ink-1);
  margin-bottom: 8px;
}

.bullets {
  padding-left: 18px;
  color: var(--ink-2);
  margin-bottom: 14px;
}

.bullets li {
  margin: 8px 0;
}

.bullets b { color: var(--ink-1); }

.card-link {
  display: inline-flex;
  gap: 8px;
  align-items: center;
  font-weight: 800;
  color: var(--secondary);
  text-decoration: none;
  margin-top: 6px;
}

.card-link:hover {
  color: var(--primary);
  text-decoration: underline;
}

/* =========================
   CTA BUTTON
========================= */
.cta-row {
  display: flex;
  justify-content: center;
  margin-top: 18px;
}

.btn {
  display: inline-block;
  padding: 12px 22px;
  background: var(--primary);
  color: #fff;
  text-decoration: none;
  border-radius: 8px;
  font-weight: 800;
  transition: transform 0.2s ease, background 0.2s ease;
}

.btn:hover {
  background: #3c5ea6;
  transform: translateY(-2px);
}

/* =========================
   RESPONSIVE
========================= */
@media (max-width: 900px) {
  .pipeline-grid { grid-template-columns: 1fr; }
  .meta-row { grid-template-columns: 1fr; }
  .meta-label { margin-bottom: -4px; }
}

@media (max-width: 600px) {
  .hero h1 { font-size: 1.9rem; }
  .nav-container { flex-direction: column; align-items: center; }
  .nav-links { justify-content: center; }
  .logo-img { height: 60px; }
}

.insight-card h3 {
  text-align: center;
}

footer {
  text-align: center;
  padding: 30px 0;
  background: #f0f0f0;
  color: #555;
  font-size: 0.9rem;
}
