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

:root {
  --navy-950: #060A12;
  --navy-900: #0B111D;
  --navy-800: #131C2E;
  --navy-700: #243044;
  --navy-600: #38507A;
  --navy-500: #5878AE;
  --navy-400: #8AA6D4;
  --navy-100: #E8EEF6;
  --navy-50: #F4F7FB;

  --accent-600: #0A6FC2;
  --accent-500: #1488E0;
  --accent-400: #4FA8EC;

  --slate-600: #475569;
  --slate-500: #64748B;
  --slate-400: #94A3B8;

  --hairline: rgb(13 23 42 / 0.08);
  --hairline-strong: rgb(13 23 42 / 0.14);

  --font-heading: "Plus Jakarta Sans", sans-serif;
  --font-body: Inter, sans-serif;
  --font-mono: "IBM Plex Mono", ui-monospace, monospace;

  --shadow-card: 0 1px 3px rgb(11 17 29 / 0.04), 0 6px 20px -6px rgb(11 17 29 / 0.07);
  --shadow-card-hover: 0 10px 34px -8px rgb(11 17 29 / 0.14), 0 2px 6px rgb(11 17 29 / 0.05);
  --shadow-subtle: 0 1px 2px rgb(11 17 29 / 0.04), 0 1px 1px rgb(11 17 29 / 0.03);
  --shadow-glow: 0 0 0 1px rgb(20 136 224 / 0.18), 0 12px 36px -10px rgb(20 136 224 / 0.28);
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }

body {
  margin: 0;
  font-family: var(--font-body);
  color: var(--slate-600);
  background: #fff;
  -webkit-font-smoothing: antialiased;
  font-feature-settings: 'cv02', 'cv03', 'cv04', 'cv11';
  text-rendering: optimizeLegibility;
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  color: var(--navy-900);
  letter-spacing: -0.02em;
  margin: 0;
}

a { color: inherit; text-decoration: none; }

img { max-width: 100%; display: block; }

::selection { background-color: rgb(20 136 224 / 0.18); color: var(--navy-900); }

.wrap { max-width: 1280px; margin: 0 auto; padding: 0 1.5rem; }
.wrap-narrow { max-width: 780px; margin: 0 auto; padding: 0 1.5rem; }

/* Eyebrow */
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  font-family: var(--font-mono);
  font-size: 0.7rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: var(--accent-600);
}
.eyebrow::before {
  content: '';
  display: inline-block;
  height: 1px;
  width: 1.5rem;
  background: rgb(10 111 194 / 0.5);
}
.eyebrow.light { color: var(--accent-400); }
.eyebrow.light::before { background: rgb(79 168 236 / 0.6); }

/* Header */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: #fff;
  border-bottom: 1px solid var(--hairline);
}
.site-header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 4.25rem;
}
.brand { display: inline-flex; align-items: center; gap: 0.65rem; }
.brand img { height: 2rem; width: 2rem; border-radius: 0.5rem; object-fit: cover; }
.brand-name { font-family: var(--font-heading); font-weight: 700; color: var(--navy-900); font-size: 1.125rem; letter-spacing: -0.01em; }

.site-nav { display: none; align-items: center; gap: 0.25rem; }
.site-nav a {
  padding: 0.5rem 0.875rem;
  font-family: var(--font-heading);
  font-weight: 500;
  font-size: 0.9rem;
  color: var(--slate-600);
  border-radius: 0.375rem;
  transition: color 0.15s;
  white-space: nowrap;
}
.site-nav a:hover { color: var(--navy-900); }
.site-nav a.is-active { color: var(--navy-900); }

.site-header-actions { display: flex; align-items: center; gap: 0.75rem; }
.site-header-actions .btn-primary { display: none; }

.nav-toggle {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 4px;
  width: 2.25rem;
  height: 2.25rem;
  border: 1px solid var(--hairline);
  border-radius: 0.5rem;
  background: #fff;
  cursor: pointer;
  padding: 0;
}
.nav-toggle span { display: block; width: 1.1rem; height: 2px; background: var(--navy-900); border-radius: 1px; }

.mobile-nav {
  display: none;
  flex-direction: column;
  gap: 0.25rem;
  padding: 0.75rem 1.5rem 1.5rem;
  border-top: 1px solid var(--hairline);
}
.mobile-nav a.nav-link {
  padding: 0.7rem 0.25rem;
  font-family: var(--font-heading);
  font-weight: 500;
  font-size: 0.95rem;
  color: var(--slate-600);
  border-bottom: 1px solid var(--hairline);
}
.mobile-nav a.nav-link.is-active { color: var(--navy-900); }
.mobile-nav .btn-primary { margin-top: 0.85rem; justify-content: center; }
body.nav-open .mobile-nav { display: flex; }

@media (min-width: 1024px) {
  .site-nav { display: flex; }
  .site-header-actions .btn-primary { display: inline-flex; }
  .nav-toggle { display: none; }
  .mobile-nav { display: none !important; }
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  font-family: var(--font-heading);
  font-weight: 600;
  border-radius: 0.5rem;
  letter-spacing: -0.01em;
  transition: all 0.2s;
  padding: 0.6rem 1.25rem;
  font-size: 0.9rem;
  border: 1px solid transparent;
}
.btn-primary {
  background: var(--accent-500);
  color: #fff;
  box-shadow: var(--shadow-subtle);
}
.btn-primary:hover { background: var(--accent-600); box-shadow: var(--shadow-glow); }
.btn-secondary {
  border-color: var(--hairline-strong);
  color: var(--navy-900);
}
.btn-secondary:hover { background: var(--navy-900); color: #fff; border-color: var(--navy-900); }
.btn-secondary-dark { border-color: rgb(255 255 255 / 0.2); color: #fff; }
.btn-secondary-dark:hover { background: rgb(255 255 255 / 0.08); border-color: rgb(255 255 255 / 0.35); }

/* Hero */
.page-hero {
  position: relative;
  overflow: hidden;
  background: var(--navy-50);
  border-bottom: 1px solid var(--hairline);
  background-image:
    linear-gradient(to right, rgb(13 23 42 / 0.04) 1px, transparent 1px),
    linear-gradient(to bottom, rgb(13 23 42 / 0.04) 1px, transparent 1px);
  background-size: 56px 56px;
}
.page-hero::before {
  content: '';
  position: absolute;
  top: -10rem;
  right: 0;
  height: 460px;
  width: 460px;
  border-radius: 9999px;
  background: rgb(20 136 224 / 0.10);
  filter: blur(64px);
  pointer-events: none;
}
.page-hero-inner { position: relative; padding-top: 7rem; padding-bottom: 4.5rem; }
.page-hero-inner.narrow { max-width: 780px; margin: 0 auto; }
.page-hero-top { margin-bottom: 2rem; }
.page-hero-top a {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-family: var(--font-mono);
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--slate-400);
}
.page-hero-top a:hover { color: var(--navy-900); }
.page-hero-meta { display: flex; align-items: center; gap: 0.75rem; margin-bottom: 1.25rem; flex-wrap: wrap; }
.page-hero h1 {
  max-width: 46rem;
  font-size: 2.5rem;
  font-weight: 800;
  line-height: 1.08;
  letter-spacing: -0.03em;
  margin-top: 1.25rem;
}
.page-hero p.lead {
  margin-top: 1.25rem;
  max-width: 38rem;
  font-size: 1.125rem;
  color: var(--slate-600);
  line-height: 1.6;
}
@media (min-width: 1024px) {
  .page-hero-inner { padding-top: 9rem; padding-bottom: 5rem; }
  .page-hero h1 { font-size: 3.5rem; }
}

/* Badge */
.badge {
  display: inline-flex;
  align-items: center;
  padding: 0.15rem 0.5rem;
  border-radius: 0.375rem;
  font-family: var(--font-mono);
  font-size: 0.65rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  background: #EAF4FD;
  color: var(--accent-600);
  box-shadow: inset 0 0 0 1px rgb(10 111 194 / 0.15);
}

.meta-mono {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  font-family: var(--font-mono);
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--slate-400);
}

/* Post grid / cards */
.section { padding: 4.5rem 0; }
.post-grid {
  display: grid;
  grid-template-columns: repeat(1, 1fr);
  gap: 1.5rem;
}
@media (min-width: 768px) { .post-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .post-grid { grid-template-columns: repeat(3, 1fr); } }

.post-card {
  position: relative;
  display: flex;
  flex-direction: column;
  height: 100%;
  background: #fff;
  border: 1px solid var(--hairline);
  border-radius: 0.75rem;
  box-shadow: var(--shadow-card);
  overflow: hidden;
  transition: box-shadow 0.3s, border-color 0.3s;
}
.post-card:hover { box-shadow: var(--shadow-card-hover); border-color: var(--hairline-strong); }
.post-card-image { aspect-ratio: 16/9; overflow: hidden; border-bottom: 1px solid var(--hairline); background: #F6F7FB; }
.post-card-image img { height: 100%; width: 100%; object-fit: contain; transition: transform 0.5s; }
.post-card:hover .post-card-image img { transform: scale(1.03); }
.post-card-body { padding: 1.5rem; display: flex; flex-direction: column; flex: 1; }
.post-card-tags { display: flex; align-items: center; gap: 0.65rem; margin-bottom: 0.75rem; }
.post-card h2 {
  font-size: 1rem;
  font-weight: 700;
  line-height: 1.4;
  letter-spacing: -0.01em;
  margin-bottom: 0.5rem;
  flex: 1;
}
.post-card:hover h2 { color: var(--accent-600); }
.post-card p.excerpt {
  font-size: 0.875rem;
  color: var(--slate-500);
  line-height: 1.6;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.post-card-footer {
  margin-top: 1.25rem;
  padding-top: 1rem;
  border-top: 1px solid var(--hairline);
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.post-card-read {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  font-family: var(--font-mono);
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--accent-600);
}

/* Article body */
.article-wrap { background: #fff; padding: 4rem 0 6rem; }
.article-hero-image {
  margin-bottom: 3rem;
  border-radius: 0.75rem;
  border: 1px solid var(--hairline);
  box-shadow: var(--shadow-card);
  overflow: hidden;
}
.gh-content {
  font-size: 1.125rem;
  line-height: 1.75;
  color: var(--slate-600);
}
.gh-content h1, .gh-content h2, .gh-content h3, .gh-content h4 {
  font-family: var(--font-heading);
  color: var(--navy-900);
  letter-spacing: -0.01em;
  margin-top: 2.25em;
  margin-bottom: 0.6em;
}
.gh-content h2 { font-size: 1.5em; font-weight: 700; }
.gh-content h3 { font-size: 1.25em; font-weight: 700; }
.gh-content p { margin: 1.25em 0; }
.gh-content a { color: var(--accent-600); text-decoration: none; }
.gh-content a:hover { text-decoration: underline; }
.gh-content strong { color: var(--navy-900); font-weight: 600; }
.gh-content img {
  border-radius: 0.75rem;
  border: 1px solid var(--hairline);
  box-shadow: var(--shadow-card);
  margin: 2em auto;
}
.gh-content blockquote {
  margin: 2em 0;
  padding: 0.25em 0 0.25em 1.5em;
  border-left: 3px solid var(--accent-500);
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 1.2em;
  color: var(--navy-900);
  font-style: normal;
}
.gh-content ul, .gh-content ol { padding-left: 1.4em; margin: 1.25em 0; }
.gh-content li { margin: 0.5em 0; }
.gh-content code {
  font-family: var(--font-mono);
  background: var(--navy-50);
  padding: 0.15em 0.4em;
  border-radius: 0.3em;
  font-size: 0.88em;
}
.gh-content pre {
  background: var(--navy-900);
  color: #E8EEF6;
  padding: 1.25em;
  border-radius: 0.6em;
  overflow-x: auto;
}
.gh-content pre code { background: none; padding: 0; color: inherit; }
.gh-content figcaption {
  text-align: center;
  font-size: 0.85em;
  color: var(--slate-400);
  margin-top: -1.25em;
  margin-bottom: 2em;
}
.gh-content hr { border: none; border-top: 1px solid var(--hairline); margin: 3em 0; }

.pagination { margin-top: 3.5rem; display: flex; align-items: center; justify-content: space-between; gap: 1rem; }
.pagination-link { display: inline-flex; align-items: center; gap: 0.5rem; font-family: var(--font-mono); font-size: 0.75rem; text-transform: uppercase; letter-spacing: 0.12em; color: var(--accent-600); }
.pagination-count { font-family: var(--font-mono); font-size: 0.7rem; text-transform: uppercase; letter-spacing: 0.1em; color: var(--slate-400); }

/* Diagram blocks — hand-built replacements for the source site's interactive React visuals. */
.diagram { margin: 2em 0; padding: 1.5rem; border: 1px solid var(--hairline); border-radius: 0.75rem; background: #fff; box-shadow: var(--shadow-card); }
.diagram-label { display: flex; align-items: center; gap: 0.5rem; font-family: var(--font-mono); font-size: 0.7rem; text-transform: uppercase; letter-spacing: 0.14em; color: var(--accent-600); margin-bottom: 1.25rem; }
.diagram-row { display: flex; flex-wrap: wrap; align-items: stretch; gap: 0.75rem; }
.diagram-col { flex: 1; min-width: 160px; display: flex; flex-direction: column; gap: 0.5rem; }
.diagram-arrow { display: flex; align-items: center; justify-content: center; color: rgb(20 136 224 / 0.5); font-size: 1.25rem; padding: 0 0.25rem; }
.diagram-box { border: 1px solid var(--hairline); border-radius: 0.6rem; padding: 0.75rem 0.9rem; background: var(--navy-50); font-size: 0.8rem; color: var(--slate-600); line-height: 1.5; }
.diagram-box.accent { border-color: rgb(20 136 224 / 0.3); background: rgb(20 136 224 / 0.06); }
.diagram-box.good { border-color: rgb(16 185 129 / 0.3); background: rgb(16 185 129 / 0.08); }
.diagram-box.warn { border-color: rgb(245 158 11 / 0.3); background: rgb(245 158 11 / 0.08); }
.diagram-box-title { display: flex; align-items: center; justify-content: space-between; font-family: var(--font-mono); font-size: 0.62rem; text-transform: uppercase; letter-spacing: 0.12em; color: var(--accent-600); margin-bottom: 0.5rem; }
.diagram-box.good .diagram-box-title { color: #047857; }
.diagram-box.warn .diagram-box-title { color: #B45309; }
.diagram-tag { display: inline-block; font-family: var(--font-mono); font-size: 0.6rem; text-transform: uppercase; letter-spacing: 0.08em; padding: 0.15rem 0.4rem; border-radius: 0.25rem; background: #fff; border: 1px solid var(--hairline); color: var(--slate-500); margin: 0.15rem 0.15rem 0 0; }

@media (max-width: 640px) {
  .diagram-row { flex-direction: column; }
  .diagram-arrow { transform: rotate(90deg); padding: 0.1rem 0; }
}
.diagram-steps { display: grid; grid-template-columns: repeat(auto-fit, minmax(150px, 1fr)); gap: 0.75rem; }
.diagram-step-num { font-family: var(--font-mono); font-size: 0.62rem; letter-spacing: 0.14em; color: var(--accent-600); }

/* Koenig editor wide/full image cards break out of the narrow article column. */
.kg-width-wide {
  margin-left: 50%;
  transform: translateX(-50%);
  width: 100vw;
  max-width: 1200px;
}
.kg-width-full {
  margin-left: 50%;
  transform: translateX(-50%);
  width: 100vw;
  max-width: 100vw;
}
.kg-width-full img { border-radius: 0; border: none; box-shadow: none; }

/* Course lesson layout */
.course-lesson-grid { display: block; }
.course-sidebar { display: none; margin-bottom: 2rem; }
@media (min-width: 1024px) {
  .course-lesson-grid { display: grid; grid-template-columns: 220px 1fr; gap: 3rem; align-items: start; }
  .course-sidebar { display: block; position: sticky; top: 6rem; margin-bottom: 0; }
}

/* Home hero */
.home-hero {
  position: relative;
  overflow: hidden;
  background: var(--navy-50);
  background-image:
    linear-gradient(to right, rgb(13 23 42 / 0.04) 1px, transparent 1px),
    linear-gradient(to bottom, rgb(13 23 42 / 0.04) 1px, transparent 1px);
  background-size: 56px 56px;
  border-bottom: 1px solid var(--hairline);
}
.home-hero::before {
  content: '';
  position: absolute;
  top: -12rem;
  right: -8rem;
  height: 640px;
  width: 640px;
  border-radius: 9999px;
  background: rgb(20 136 224 / 0.08);
  filter: blur(70px);
  pointer-events: none;
}
.home-hero-inner { position: relative; padding-top: 7rem; padding-bottom: 4.5rem; max-width: 46rem; }
@media (min-width: 1024px) { .home-hero-inner { padding-top: 9rem; padding-bottom: 6rem; } }
.home-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  padding: 0.4rem 0.9rem;
  border-radius: 9999px;
  background: #fff;
  border: 1px solid var(--hairline);
  color: var(--accent-600);
  font-family: var(--font-mono);
  font-size: 0.7rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  margin-bottom: 1.75rem;
}
.home-badge .dot { height: 0.4rem; width: 0.4rem; border-radius: 9999px; background: var(--accent-500); }
.home-hero h1 {
  font-size: 2.5rem;
  font-weight: 800;
  line-height: 1.08;
  letter-spacing: -0.03em;
}
@media (min-width: 1024px) { .home-hero h1 { font-size: 3.75rem; } }
.home-hero h1 .accent { color: var(--accent-600); }
.home-hero p.lead { margin-top: 1.5rem; font-size: 1.1rem; line-height: 1.65; color: var(--slate-600); max-width: 40rem; }
.home-hero-ctas { margin-top: 2.25rem; display: flex; flex-wrap: wrap; gap: 0.85rem; }
.home-hero-industries { margin-top: 3rem; padding-top: 1.75rem; border-top: 1px solid var(--hairline); }
.home-hero-industries p { margin: 0 0 0.75rem; }
.industry-tag {
  display: inline-flex;
  padding: 0.3rem 0.7rem;
  border-radius: 0.375rem;
  background: #fff;
  border: 1px solid var(--hairline);
  font-family: var(--font-heading);
  font-weight: 500;
  font-size: 0.75rem;
  color: var(--slate-600);
  margin: 0 0.4rem 0.4rem 0;
}

/* Stats bar */
.stats-bar { background: #fff; border-bottom: 1px solid var(--hairline); padding: 3.5rem 0; }
.stats-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 2rem; }
@media (min-width: 1024px) { .stats-grid { grid-template-columns: repeat(4, 1fr); } }
.stat-value { font-family: var(--font-heading); font-weight: 800; font-size: 2.5rem; letter-spacing: -0.03em; color: var(--navy-900); line-height: 1; }
.stat-value .accent { color: var(--accent-600); }
.stat-label { margin-top: 0.6rem; font-family: var(--font-mono); font-size: 0.7rem; text-transform: uppercase; letter-spacing: 0.16em; color: var(--slate-500); }

/* Feature cards (services / products / team) */
.feature-card {
  position: relative;
  background: #fff;
  border: 1px solid var(--hairline);
  border-radius: 0.75rem;
  box-shadow: var(--shadow-card);
  padding: 1.5rem;
  height: 100%;
  display: flex;
  flex-direction: column;
  transition: box-shadow 0.3s, border-color 0.3s;
}
.feature-card:hover { box-shadow: var(--shadow-card-hover); border-color: var(--hairline-strong); }
.feature-icon {
  display: grid;
  place-items: center;
  height: 2.75rem;
  width: 2.75rem;
  border-radius: 0.5rem;
  background: rgb(20 136 224 / 0.08);
  box-shadow: inset 0 0 0 1px rgb(20 136 224 / 0.15);
  color: var(--accent-600);
  font-family: var(--font-mono);
  font-weight: 600;
  margin-bottom: 1.1rem;
}
.feature-card h3 { font-size: 1rem; font-weight: 700; letter-spacing: -0.01em; margin-bottom: 0.4rem; }
.feature-card p.desc { font-size: 0.875rem; color: var(--slate-500); line-height: 1.6; flex: 1; }
.feature-tags { margin-top: 1.25rem; padding-top: 1rem; border-top: 1px solid var(--hairline); display: flex; flex-wrap: wrap; gap: 0.4rem; }
.feature-tag {
  font-family: var(--font-mono);
  font-size: 0.65rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  padding: 0.15rem 0.5rem;
  border-radius: 0.25rem;
  background: var(--navy-50);
  color: var(--slate-500);
}
.feature-list { margin: 1.1rem 0 0; padding: 0; list-style: none; display: flex; flex-direction: column; gap: 0.5rem; }
.feature-list li { display: flex; align-items: flex-start; gap: 0.6rem; font-size: 0.78rem; color: var(--slate-600); line-height: 1.5; }
.feature-list li::before { content: ''; display: block; margin-top: 0.5rem; height: 0.25rem; width: 0.25rem; border-radius: 9999px; background: var(--accent-500); flex-shrink: 0; }
.feature-cta {
  margin-top: 1.25rem;
  padding-top: 1rem;
  border-top: 1px solid var(--hairline);
  display: flex;
  align-items: center;
  gap: 0.4rem;
  font-family: var(--font-mono);
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--accent-600);
}

/* Team card */
.team-card { display: flex; align-items: flex-start; gap: 1rem; margin-bottom: 1rem; }
.team-avatar { height: 3.5rem; width: 3.5rem; border-radius: 0.5rem; object-fit: cover; box-shadow: inset 0 0 0 1px var(--hairline); flex-shrink: 0; }
.team-avatar-fallback {
  height: 3.5rem; width: 3.5rem; border-radius: 0.5rem; background: var(--navy-800);
  display: grid; place-items: center; flex-shrink: 0;
  font-family: var(--font-mono); font-weight: 600; color: var(--accent-400); font-size: 0.85rem;
}
.team-name { font-size: 0.9rem; font-weight: 700; letter-spacing: -0.01em; line-height: 1.3; }
.team-title { margin-top: 0.2rem; font-family: var(--font-mono); font-size: 0.65rem; text-transform: uppercase; letter-spacing: 0.1em; color: var(--accent-600); }
.team-bio { font-size: 0.78rem; color: var(--slate-500); line-height: 1.6; }

.section-header { text-align: center; max-width: 42rem; margin: 0 auto 3rem; }
.section-header h2 { font-size: 1.75rem; font-weight: 800; letter-spacing: -0.02em; margin-top: 1rem; }
@media (min-width: 1024px) { .section-header h2 { font-size: 2.25rem; } }
.section-header p { margin-top: 1rem; color: var(--slate-500); font-size: 1rem; line-height: 1.6; }
.section-more { margin-top: 3rem; text-align: center; }
.section-more a {
  display: inline-flex; align-items: center; gap: 0.5rem;
  font-family: var(--font-mono); font-size: 0.75rem; text-transform: uppercase; letter-spacing: 0.14em; color: var(--accent-600);
}

/* CTA banner */
.cta-banner {
  position: relative;
  overflow: hidden;
  background: var(--navy-900);
  padding: 5rem 0;
  text-align: center;
}
.cta-banner::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(to right, rgb(255 255 255 / 0.04) 1px, transparent 1px),
    linear-gradient(to bottom, rgb(255 255 255 / 0.04) 1px, transparent 1px);
  background-size: 56px 56px;
}
.cta-banner-inner { position: relative; max-width: 36rem; margin: 0 auto; }
.cta-banner h2 { color: #fff; font-size: 1.75rem; font-weight: 800; letter-spacing: -0.02em; margin-top: 1rem; }
@media (min-width: 1024px) { .cta-banner h2 { font-size: 2.25rem; } }
.cta-banner p { margin-top: 1rem; color: var(--navy-400); font-size: 1rem; line-height: 1.6; }
.cta-banner-ctas { margin-top: 2rem; display: flex; flex-wrap: wrap; justify-content: center; gap: 0.85rem; }

/* Calendly */
.calendly-panel { border-radius: 0.75rem; border: 1px solid var(--hairline); box-shadow: var(--shadow-card); overflow: hidden; }

/* Footer */
.site-footer {
  position: relative;
  background: var(--navy-50);
  border-top: 1px solid var(--hairline);
  padding: 4rem 0;
}
.footer-grid { display: grid; grid-template-columns: 1fr; gap: 2.5rem; }
@media (min-width: 640px) { .footer-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .footer-grid { grid-template-columns: repeat(4, 1fr); } }
.footer-blurb { font-size: 0.875rem; line-height: 1.6; color: var(--slate-600); max-width: 20rem; margin-top: 1.25rem; }
.footer-social { display: flex; gap: 0.65rem; margin-top: 1.5rem; }
.footer-social a {
  display: grid;
  place-items: center;
  height: 2.25rem;
  width: 2.25rem;
  border-radius: 0.5rem;
  background: #fff;
  border: 1px solid var(--hairline);
  color: var(--slate-500);
}
.footer-social a:hover { color: var(--navy-900); border-color: var(--hairline-strong); }
.footer-heading {
  color: var(--navy-900);
  font-family: var(--font-mono);
  font-size: 0.7rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  margin-bottom: 1rem;
}
.footer-links { list-style: none; margin: 0; padding: 0; display: flex; flex-direction: column; gap: 0.6rem; }
.footer-links a { font-size: 0.875rem; }
.footer-links a:hover { color: var(--navy-900); }
.footer-bottom {
  margin-top: 3.5rem;
  padding-top: 2rem;
  border-top: 1px solid var(--hairline);
  display: flex;
  flex-direction: column;
  gap: 1rem;
  justify-content: space-between;
  font-size: 0.75rem;
  color: var(--slate-500);
}
@media (min-width: 640px) { .footer-bottom { flex-direction: row; align-items: center; } }
.footer-bottom-links { display: flex; gap: 1.5rem; }
.footer-bottom-links a:hover { color: var(--navy-900); }
