/* ============================================================
   Spruce Street — Shared Stylesheet
   Brand tokens per Website v0.9 Design Handoff (Apr 2026)
   ============================================================ */

:root {
  /* Color palette */
  --navy: #1F4E79;
  --electric: #2E75B6;
  --light-blue: #7CB3DE;
  --text-primary: #1A1A2E;
  --text-secondary: #64748B;
  --bg-page: #F7F8FA;
  --bg-section: #EDF1F7;
  --bg-tint: #F2F6FB;
  --bg-card: #FFFFFF;
  --border: #E2E8F0;
  --green: #1D9E75;
  --amber: #BA7517;
  --red: #E24B4A;

  /* Layout */
  --container-max: 1160px;
  --radius-lg: 12px;
  --radius-md: 8px;
  --radius-sm: 6px;
}

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

html { scroll-behavior: smooth; }

body {
  font-family: 'Geist', -apple-system, BlinkMacSystemFont, 'Segoe UI', system-ui, sans-serif;
  font-size: 16px;
  line-height: 1.6;
  color: var(--text-primary);
  background: var(--bg-page);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
}

a { color: var(--electric); text-decoration: none; transition: color 0.15s ease; }
a:hover { color: var(--light-blue); }

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

/* ---------- Container ---------- */
.container {
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 32px;
}

/* ============================================================
   NAV  —  navy bar w/ electric accent line under
   ============================================================ */
.nav {
  position: sticky;
  top: 0;
  z-index: 100;
  background: #FFFFFF;
  border-bottom: 1px solid var(--border);
}
.nav-inner {
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 10px 32px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
}
.nav-left {
  display: flex;
  align-items: center;
  gap: 40px;
}

.nav-logo { display: inline-flex; align-items: center; line-height: 1; }
.nav-logo img { height: 44px; width: auto; display: block; }

.nav-links {
  display: flex;
  gap: 28px;
}
.nav-links a {
  font-size: 15px;
  font-weight: 400;
  color: var(--text-secondary);
  transition: color 0.15s ease;
}
.nav-links a:hover {
  color: var(--navy);
  opacity: 1;
}
.nav-links a.active {
  color: var(--navy);
  font-weight: 600;
}

.nav-cta {
  display: inline-block;
  background: var(--navy);
  white-space: nowrap;
  color: #FFFFFF;
  font-size: 13px;
  font-weight: 600;
  padding: 9px 20px;
  border-radius: var(--radius-md);
  border: none;
  transition: background 0.15s ease, color 0.15s ease;
}
.nav-cta:hover {
  background: var(--electric);
  color: #FFFFFF;
  opacity: 1;
}

/* Mobile hamburger (hidden on desktop) */
.nav-toggle {
  display: none;
  background: none;
  border: 0;
  padding: 8px;
  cursor: pointer;
}
.nav-toggle span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--navy);
  margin: 5px 0;
  transition: 0.2s;
}

/* ============================================================
   LOGO variants (used outside nav)
   ============================================================ */

.logo-footer-img { height: 32px; width: auto; display: inline-block; vertical-align: middle; }
.cta-logo-img { height: 42px; }

/* Primary horizontal logo — light backgrounds (About, etc.) */
.logo-horizontal-light {
  display: inline-flex;
  align-items: baseline;
  gap: 6px;
  font-family: 'Geist', sans-serif;
  line-height: 1;
  letter-spacing: -0.3px;
}
.logo-horizontal-light .logo-spruce {
  font-size: 24px;
  font-weight: 600;
  color: var(--navy);
}
.logo-horizontal-light .logo-street {
  font-size: 24px;
  font-weight: 300;
  color: var(--electric);
}

/* Secondary horizontal — for footers, signatures */
.logo-horizontal {
  display: inline-flex;
  align-items: baseline;
  gap: 6px;
  line-height: 1;
  font-family: 'Geist', sans-serif;
}
.logo-horizontal .logo-spruce {
  font-size: 20px; font-weight: 600;
  color: var(--navy); letter-spacing: -0.3px;
}
.logo-horizontal .logo-street {
  font-size: 20px; font-weight: 300;
  color: var(--electric); letter-spacing: -0.2px;
}
.logo-horizontal.reversed .logo-spruce { color: #fff; }
.logo-horizontal.reversed .logo-street { color: var(--light-blue); }

/* ============================================================
   Section base
   ============================================================ */
.section {
  padding: 64px 0;
}
.section.bg-white { background: #fff; }
.section.bg-light { background: var(--bg-section); }
.section.bg-alt   { background: var(--bg-page); }
.section.bg-tint  { background: var(--bg-tint); }
.section.bg-navy  { background: var(--navy); }

/* Panel: a rounded container inside a section */
.panel {
  border-radius: var(--radius-lg);
  padding: 40px;
}
.panel.panel-white { background: #fff; }
.panel.panel-light { background: var(--bg-section); }
.panel.panel-alt { background: var(--bg-page); }

.section-head {
  text-align: center;
  margin: 0 auto 24px;
  max-width: 760px;
}
.eyebrow {
  display: inline-block;
  font-family: 'Geist', sans-serif;
  font-size: 11px;
  font-weight: 600;
  color: var(--light-blue);
  text-transform: uppercase;
  letter-spacing: 1.4px;
  margin-bottom: 12px;
}
.eyebrow .num {
  font-family: 'Libre Baskerville', Georgia, serif;
  font-weight: 700;
  letter-spacing: 0;
  margin-right: 8px;
  color: var(--electric);
}
.section-title {
  font-family: 'Geist', sans-serif;
  font-size: 40px;
  font-weight: 600;
  color: var(--navy);
  letter-spacing: -0.02em;
  line-height: 1.1;
  margin-bottom: 12px;
}
.section-head .section-sub { margin-top: 18px; }
.section-sub {
  font-family: 'Geist', sans-serif;
  font-size: 15px;
  font-weight: 500;
  color: var(--text-secondary);
  line-height: 1.6;
}

/* ============================================================
   HERO  —  Libre Baskerville headline
   ============================================================ */
.hero {
  padding: 80px 0 64px;
  text-align: center;
  background: #fff;
}
/* Hero eyebrow */
.hero-eyebrow {
  font-family: 'Geist', sans-serif;
  font-size: 13px;
  font-weight: 500;
  color: var(--electric);
  letter-spacing: 0.06em;
  margin: 0 auto 18px;
  text-align: center;
}

.hero h1 {
  font-family: 'Geist', sans-serif;
  font-size: 72px;
  font-weight: 600;
  color: var(--navy);
  line-height: 1.06;
  letter-spacing: -0.03em;
  max-width: 980px;
  margin: 0 auto 32px;
}
.hero p {
  font-family: 'Geist', sans-serif;
  font-size: 16px;
  font-weight: 400;
  color: var(--text-secondary);
  max-width: 560px;
  margin: 0 auto 36px;
  line-height: 1.6;
  letter-spacing: 0.1px;
}

/* ============================================================
   Buttons
   ============================================================ */
.btn {
  display: inline-block;
  font-family: inherit;
  font-size: 14px;
  font-weight: 500;
  padding: 12px 28px;
  border-radius: var(--radius-md);
  border: 1px solid transparent;
  cursor: pointer;
  transition: all 0.15s ease;
  letter-spacing: -0.005em;
  text-align: center;
}
.btn-lg {
  font-size: 16px;
  padding: 14px 32px;
}
.btn-primary {
  background: var(--navy);
  color: #fff;
}
.btn-primary:hover {
  background: var(--light-blue);
  color: var(--navy);
  opacity: 1;
}
.btn-white {
  background: #fff;
  color: var(--navy);
}
.btn-white:hover {
  background: var(--light-blue);
  color: var(--navy);
  opacity: 1;
}

/* ============================================================
   Credibility strip
   ============================================================ */
.cred-strip {
  padding: 44px 0;
  background: var(--bg-page);
}
.cred-inner {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 24px;
  text-align: center;
}
.cred-label {
  font-size: 16px;
  font-weight: 400;
  color: var(--text-secondary);
  letter-spacing: 0;
  margin-bottom: 20px;
}
.cred-tiles {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border: 1px solid var(--border);
  border-radius: 10px;
  overflow: hidden;
  background: #fff;
}
.cred-tile {
  padding: 22px 20px;
  text-align: center;
  border-right: 1px solid var(--border);
  transition: background 0.15s ease;
}
.cred-tile:last-child { border-right: none; }
.cred-tile:hover {
  background: rgba(46, 117, 182, 0.06);
}
.cred-tile-num {
  font-family: 'Geist', sans-serif;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.08em;
  color: var(--electric);
  margin-bottom: 6px;
}
.cred-tile-name {
  font-family: 'Geist', sans-serif;
  font-size: 16px;
  font-weight: 500;
  color: var(--navy);
  letter-spacing: -0.005em;
  line-height: 1.3;
}

/* ============================================================
   Problems — pull-quote hero + stacked statement rows
   ============================================================ */
.pain-wrap {
  max-width: 900px;
  margin: 0 auto;
}
.pain-quote {
  position: relative;
  padding: 28px 32px 28px 44px;
  margin: 0 0 8px;
  border-left: 3px solid var(--electric);
  background: linear-gradient(90deg, rgba(124,179,222,0.08) 0%, rgba(124,179,222,0) 70%);
  border-radius: 0 8px 8px 0;
}
.pain-quote blockquote {
  font-family: 'Libre Baskerville', Georgia, serif;
  font-size: 22px;
  font-weight: 400;
  font-style: italic;
  color: var(--navy);
  line-height: 1.4;
  letter-spacing: -0.005em;
  margin: 0 0 10px;
}
.pain-quote blockquote::before {
  content: '\201C';
  position: absolute;
  left: 12px;
  top: 18px;
  font-size: 48px;
  line-height: 1;
  color: var(--light-blue);
  font-family: 'Libre Baskerville', Georgia, serif;
}
.pain-quote cite {
  display: block;
  font-style: normal;
  font-family: 'Geist', sans-serif;
  font-size: 13px;
  font-weight: 600;
  color: var(--navy);
  letter-spacing: 0.2px;
}
.pain-list {
  margin-top: 8px;
}
.pain-row {
  display: grid;
  grid-template-columns: minmax(260px, 340px) 1fr;
  gap: 48px;
  padding: 24px 16px;
  border-top: 1px solid var(--border);
  align-items: start;
  transition: background 0.15s ease, padding-left 0.15s ease;
}
.pain-row:last-child {
  border-bottom: 1px solid var(--border);
}
.pain-row:hover {
  background: rgba(46, 117, 182, 0.08);
  padding-left: 24px;
}
.pain-row .pain-title {
  font-family: 'Geist', sans-serif;
  font-size: 17px;
  font-weight: 600;
  color: var(--navy);
  letter-spacing: -0.01em;
  line-height: 1.35;
  margin: 0;
  display: block;
}
.pain-row .pain-body {
  font-family: 'Geist', sans-serif;
  font-size: 15px;
  font-weight: 400;
  color: var(--text-secondary);
  line-height: 1.6;
}

/* ============================================================
   Grids
   ============================================================ */
.grid {
  display: grid;
  gap: 12px;
}
.grid.cols-2 { grid-template-columns: repeat(2, 1fr); }
.grid.cols-3 { grid-template-columns: repeat(3, 1fr); }
.grid.cols-4 { grid-template-columns: repeat(4, 1fr); }

/* ============================================================
   Capability card (left-border accent)
   ============================================================ */
.cap-card {
  background: var(--bg-page);
  border-left: 3px solid var(--electric);
  border-radius: 0 var(--radius-md) var(--radius-md) 0;
  padding: 16px 18px;
  transition: border-left-color 0.15s ease, transform 0.15s ease, box-shadow 0.15s ease, background 0.15s ease;
}
.cap-card:hover {
  border-left-color: var(--light-blue);
  background: #fff;
  transform: translateY(-2px);
  box-shadow: 0 6px 18px rgba(31, 78, 121, 0.06);
}
.cap-card h4 {
  font-size: 17px;
  font-weight: 600;
  color: var(--navy);
  margin-bottom: 6px;
  line-height: 1.35;
  letter-spacing: -0.005em;
}
.cap-card p {
  font-size: 13px;
  line-height: 1.6;
  color: var(--text-secondary);
}

/* ============================================================
   Card (flat, "What you get")
   ============================================================ */
.card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 16px;
  transition: border-color 0.15s ease, transform 0.15s ease, box-shadow 0.15s ease;
}
.card:hover {
  border-color: var(--light-blue);
  transform: translateY(-2px);
  box-shadow: 0 6px 18px rgba(31, 78, 121, 0.06);
}
.card h4 {
  font-size: 17px;
  font-weight: 600;
  color: var(--navy);
  margin-bottom: 6px;
  letter-spacing: -0.005em;
}
.card p {
  font-size: 13px;
  line-height: 1.55;
  color: var(--text-secondary);
}

/* ============================================================
   AI Economics — full-width charts with centered cues beneath
   ============================================================ */
.chart-block-stack {
  max-width: 900px;
  margin: 0 auto 24px;
}
.chart-block-stack .chart-block-heading {
  font-family: 'Geist', sans-serif;
  font-size: 19px;
  font-weight: 600;
  color: var(--navy);
  letter-spacing: -0.01em;
  line-height: 1.35;
  margin: 0 0 20px;
  text-align: center;
}
.chart-block-svg-wide {
  max-width: 820px;
  margin: 0 auto 24px;
}
.chart-block-svg-wide img,
.chart-block-svg-wide object {
  width: 100%;
  height: auto;
  display: block;
}
.chart-cues {
  max-width: 900px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
  padding-top: 20px;
  border-top: 1px solid var(--border);
  align-items: start;
}
.chart-cue strong {
  display: block;
  font-family: 'Geist', sans-serif;
  font-size: 15px;
  font-weight: 600;
  color: var(--navy);
  letter-spacing: -0.005em;
  line-height: 1.35;
  margin-bottom: 6px;
}
.chart-cue p {
  font-family: 'Geist', sans-serif;
  font-size: 14px;
  line-height: 1.55;
  color: var(--text-secondary);
  margin: 0;
}
.chart-bridge {
  text-align: center;
  font-style: italic;
  color: #888780;
  font-size: 15px;
  line-height: 1.55;
  margin: 56px auto;
  max-width: 760px;
  padding: 0 24px;
}
.chart-closing {
  text-align: center;
  font-family: 'Geist', sans-serif;
  font-size: 19px;
  font-weight: 500;
  color: var(--navy);
  line-height: 1.5;
  letter-spacing: -0.005em;
  margin: 48px auto 0;
  max-width: 820px;
  padding: 0 24px;
}
@media (max-width: 768px) {
  .chart-block-stack .chart-block-heading { font-size: 17px; margin-bottom: 16px; }
  .chart-cues { grid-template-columns: 1fr; gap: 18px; padding-top: 16px; }
  .chart-cue strong { font-size: 14.5px; }
  .chart-cue p { font-size: 13.5px; }
  .chart-bridge { margin: 36px auto; font-size: 14px; }
  .chart-closing { font-size: 17px; margin-top: 32px; }
}

/* Allow the "Built for…" section title to fit on a single line on tablet/mobile */
@media (max-width: 991px) {
  .section-head h2.section-title[style*="nowrap"] { white-space: normal !important; font-size: 32px; }
}
@media (max-width: 600px) {
  .section-head h2.section-title[style*="nowrap"] { font-size: 26px; }
}
.wcs-section { background: #fff; }
.wcs-eyebrow {
  display: inline-block;
  font-family: 'Geist', sans-serif;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--electric);
  margin-bottom: 18px;
}
.wcs-h2 {
  font-family: 'Geist', sans-serif;
  font-size: clamp(28px, 4vw, 40px);
  font-weight: 700;
  line-height: 1.12;
  letter-spacing: -0.02em;
  color: var(--navy);
  margin-bottom: 18px;
}
.wcs-intro {
  font-family: 'Geist', sans-serif;
  font-size: 18px;
  color: var(--text-secondary);
  line-height: 1.6;
}
.wcs-rows { display: flex; flex-direction: column; }
.wcs-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  align-items: stretch;
  border-top: 1px solid var(--border);
  position: relative;
  opacity: 0;
  transform: translateY(14px);
  animation: wcsRise .55s ease forwards;
}
.wcs-row:last-child { border-bottom: 1px solid var(--border); }
.wcs-row:nth-child(1) { animation-delay: .05s; }
.wcs-row:nth-child(2) { animation-delay: .14s; }
.wcs-row:nth-child(3) { animation-delay: .23s; }
.wcs-row:nth-child(4) { animation-delay: .32s; }
@keyframes wcsRise { to { opacity: 1; transform: translateY(0); } }
.wcs-num {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  padding-top: 34px;
  font-family: 'Geist', sans-serif;
  font-size: 13px;
  font-weight: 700;
  color: var(--electric);
  letter-spacing: 0.04em;
}
.wcs-cell { padding: 34px 36px 38px 28px; position: relative; }
.wcs-cell.wcs-now { background: #fbfcfe; }
.wcs-cell.wcs-with { border-left: 1px solid var(--border); background: #fff; }
.wcs-cell.wcs-with::before {
  content: "";
  position: absolute;
  left: 0; top: 0; bottom: 0;
  width: 3px;
  background: linear-gradient(180deg, var(--electric), var(--navy));
  opacity: 0;
  transition: opacity .25s ease;
}
.wcs-row:hover .wcs-cell.wcs-with::before { opacity: 1; }
.wcs-cell-label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: 'Geist', sans-serif;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 12px;
}
.wcs-cell.wcs-now .wcs-cell-label { color: var(--text-secondary); }
.wcs-cell.wcs-with .wcs-cell-label { color: var(--electric); }
.wcs-cue { display: inline-flex; align-items: center; }
.wcs-cue svg { width: 13px; height: 13px; stroke: var(--electric); }
.wcs-cell-title {
  font-family: 'Geist', sans-serif;
  font-size: 17px;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 10px;
  letter-spacing: -0.01em;
}
.wcs-cell.wcs-now .wcs-cell-title { color: var(--text-primary); }
.wcs-cell-body {
  font-family: 'Geist', sans-serif;
  font-size: 15px;
  color: var(--text-secondary);
  line-height: 1.6;
}
.wcs-cell.wcs-with .wcs-cell-body { color: #3a4d61; }
.wcs-arrow { display: none; }
@media (max-width: 760px) {
  .wcs-row { grid-template-columns: 1fr; }
  .wcs-cell { padding: 14px 24px 26px; }
  .wcs-cell.wcs-with { border-left: none; border-top: 1px solid var(--border); }
  .wcs-cell.wcs-with::before {
    left: 0; right: 0; top: 0; bottom: auto;
    width: 100%; height: 3px;
    background: linear-gradient(90deg, var(--electric), var(--navy));
  }
}

/* ============================================================
   SVG block — full container width
   ============================================================ */
.svg-block {
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 32px;
  position: relative;
}
.svg-block object,
.svg-block svg,
.svg-block img {
  width: 100%;
  height: auto;
  display: block;
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  background: #fff;
  padding: 16px;
  display: block;
}

/* ============================================================
   Pull-quote
   ============================================================ */
.pull-quote {
  max-width: 860px;
  margin: 0 auto;
  padding: 28px 40px;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  text-align: center;
  font-family: 'Geist', sans-serif;
  font-size: 18px;
  font-weight: 600;
  color: var(--navy);
  line-height: 1.5;
  letter-spacing: -0.005em;
}
.pull-quote br { display: block; }

/* ============================================================
   How we work (steps)
   ============================================================ */
.steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 28px;
}
.step {
  text-align: center;
}
.step-num {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: transparent;
  color: var(--navy);
  font-family: 'Geist', sans-serif;
  font-size: 20px;
  font-weight: 600;
  letter-spacing: -0.01em;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 18px;
  border: 1.5px solid var(--navy);
  transition: background 0.2s ease, color 0.2s ease, border-color 0.2s ease;
}
.step:hover .step-num {
  background: var(--navy);
  color: #FFFFFF;
}
.step h4 {
  font-size: 17px;
  font-weight: 600;
  color: var(--navy);
  margin-bottom: 6px;
}
.step p {
  font-size: 13px;
  color: var(--text-secondary);
  line-height: 1.55;
  max-width: 220px;
  margin: 0 auto;
}

/* ============================================================
   Differentiators (Why Spruce Street)
   ============================================================ */
.diff-card {
  background: #FFFFFF;
  border: 1px solid var(--border);
  border-left: 3px solid var(--electric);
  border-radius: var(--radius-sm);
  padding: 20px 24px;
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 20px;
  min-height: 0;
  transition: box-shadow 0.15s ease, border-color 0.15s ease;
}
.diff-card:hover {
  box-shadow: 0 2px 8px rgba(31, 78, 121, 0.08);
  border-color: var(--light-blue);
}
.diff-card .diff-num { display: none; }
.diff-card .diff-icon {
  width: 44px;
  height: 44px;
  background: rgba(46, 117, 182, 0.08);
  border-radius: 10px;
  color: var(--electric);
  flex-shrink: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 8px;
  margin: 0;
}
.diff-card .diff-icon svg {
  width: 100%;
  height: 100%;
  display: block;
}
.diff-card h4 {
  font-family: 'Geist', sans-serif;
  font-size: 17px;
  font-weight: 600;
  color: var(--navy);
  letter-spacing: -0.01em;
  line-height: 1.35;
  margin: 0;
  flex: 1;
}

/* ============================================================
   Designed For
   ============================================================ */
.designed-label {
  font-size: 16px;
  font-weight: 400;
  color: var(--text-secondary);
  letter-spacing: 0;
  text-align: center;
  margin-bottom: 28px;
}
.personas {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}
.persona {
  background: #F7F8FA;
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 20px;
  text-align: left;
}
.persona h4 {
  font-size: 17px;
  font-weight: 600;
  color: var(--navy);
  margin-bottom: 10px;
  letter-spacing: -0.005em;
}
.persona p {
  font-size: 13px;
  color: var(--text-secondary);
  line-height: 1.65;
}

.bio-subhead {
  font-family: 'Geist', sans-serif;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--electric);
  margin: 28px 0 14px;
}
.bio-subhead:first-of-type { margin-top: 24px; }

/* ============================================================
   CTA footer — light variant (matches rest of page)
   ============================================================ */
.cta-footer {
  padding: 64px 0;
}
.cta-footer .panel-navy {
  background: var(--bg-page);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 56px;
  text-align: center;
}
.cta-footer h2 {
  font-family: 'Geist', sans-serif;
  font-size: 40px;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 16px;
  letter-spacing: -0.02em;
  text-align: center;
  line-height: 1.1;
}
.cta-footer p {
  font-size: 15px;
  color: var(--text-secondary);
  margin: 0 auto 28px;
  max-width: 560px;
  line-height: 1.6;
  text-align: center;
}
.cta-footer .cta-headline {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 20px;
}
.cta-footer .cta-logo-inline {
  height: 44px;
  width: auto;
  display: block;
}
.cta-footer .cta-arrow {
  font-family: 'Geist', sans-serif;
  font-size: 38px;
  font-weight: 400;
  color: var(--electric);
  line-height: 1;
  position: relative;
  top: -1px;
}
.cta-footer .cta-headline h2 {
  margin: 0;
  font-family: 'Geist', sans-serif;
  font-size: 38px;
  font-weight: 700;
  color: var(--navy);
  letter-spacing: -0.02em;
  line-height: 1;
}
.cta-footer .cta-logo {
  margin-bottom: 24px;
}

/* CTA footer button: panel is light now, so the .btn-white needs to read as primary */
.cta-footer .btn-white {
  background: var(--navy);
  color: #fff;
  border-color: var(--navy);
}
.cta-footer .btn-white:hover {
  background: var(--electric);
  color: #fff;
  border-color: var(--electric);
}

/* ============================================================
   Global footer
   ============================================================ */
.global-footer {
  background: var(--bg-page);
  border-top: 1px solid var(--border);
  padding: 24px 0;
}
.footer-inner {
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 32px;
  display: flex;
  justify-content: space-between;
  gap: 32px;
  flex-wrap: wrap;
  align-items: flex-start;
}
.footer-left {
  font-size: 13px;
  color: var(--text-secondary);
  line-height: 1.8;
}
.footer-left .logo-horizontal {
  margin-bottom: 6px;
}
.footer-left a { color: var(--text-secondary); }
.footer-links {
  display: flex;
  gap: 48px;
  font-size: 13px;
}
.footer-col {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.footer-col a { color: var(--text-secondary); }
.footer-col a:hover { color: var(--light-blue); }
.footer-col a.ext { color: var(--electric); }

/* ============================================================
   Founder section (About)
   ============================================================ */
.founder {
  display: grid;
  grid-template-columns: 260px 1fr;
  gap: 48px;
  align-items: flex-start;
  max-width: 1000px;
  margin: 0 auto;
}
.founder-photo {
  width: 260px;
  aspect-ratio: 3 / 4;
  background: var(--bg-section);
  border-radius: var(--radius-md);
  overflow: hidden;
}
.founder-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.founder-bio h2 {
  font-size: 22px;
  font-weight: 500;
  color: var(--navy);
  margin-bottom: 2px;
  letter-spacing: -0.01em;
}
.founder-bio .role {
  font-size: 14px;
  color: var(--electric);
  margin-bottom: 18px;
}
.founder-bio p {
  font-size: 14px;
  color: var(--text-secondary);
  line-height: 1.7;
  margin-bottom: 12px;
}
.founder-bio a.linkedin {
  color: var(--electric);
  font-size: 14px;
  font-weight: 500;
}

/* ============================================================
   Contact form
   ============================================================ */
.form-wrap {
  max-width: 620px;
  margin: 0 auto;
  background: #fff;
  border-radius: var(--radius-lg);
  padding: 32px;
}
.form-wrap h3 {
  font-size: 16px;
  font-weight: 500;
  color: var(--navy);
  margin-bottom: 20px;
}
.field {
  margin-bottom: 14px;
}
.field label {
  display: block;
  font-size: 13px;
  font-weight: 500;
  color: var(--text-primary);
  margin-bottom: 6px;
}
.field .req {
  color: var(--red);
  margin-left: 2px;
}
.field input,
.field select,
.field textarea {
  width: 100%;
  font-family: inherit;
  font-size: 15px;
  color: var(--text-primary);
  background: var(--bg-page);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 14px 16px;
  transition: border-color 0.15s ease, background 0.15s ease;
}
.field input:focus,
.field select:focus,
.field textarea:focus {
  outline: none;
  border-color: var(--electric);
  background: #fff;
}
.field textarea {
  min-height: 120px;
  resize: vertical;
  padding: 10px 14px;
}
.field select {
  appearance: none;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'><path fill='%2364748B' d='M6 8L0 0h12z'/></svg>");
  background-repeat: no-repeat;
  background-position: right 14px center;
  padding-right: 36px;
}
.form-submit {
  width: 100%;
  background: var(--navy);
  color: #fff;
  border: 0;
  border-radius: var(--radius-sm);
  padding: 12px;
  font-size: 14px;
  font-weight: 500;
  cursor: pointer;
  transition: background 0.15s ease;
  font-family: inherit;
  margin-top: 6px;
}
.form-submit:hover { background: var(--light-blue); color: var(--navy); }

/* ============================================================
   Scheduling placeholder
   ============================================================ */
.schedule-box {
  max-width: 620px;
  margin: 16px auto 0;
  background: var(--bg-page);
  border: 1px dashed var(--border);
  border-radius: var(--radius-md);
  padding: 28px;
  text-align: center;
}
.schedule-box .label {
  font-size: 13px;
  color: var(--text-secondary);
  font-weight: 500;
  margin-bottom: 4px;
}
.schedule-box .sub {
  font-size: 12px;
  color: #94a3b8;
}

/* ============================================================
   Trust strip
   ============================================================ */
.trust-strip {
  text-align: center;
  padding: 24px 0 40px;
  font-size: 14px;
  color: var(--text-secondary);
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 24px;
  flex-wrap: wrap;
}
.trust-strip a { color: var(--electric); }

html, body { overflow-x: hidden; }

/* ============================================================
   Responsive
   ============================================================ */

/* Tablet */
@media (max-width: 991px) {
  .hero { padding: 56px 0 44px; }
  .hero h1 { font-size: 52px; max-width: 760px; letter-spacing: -0.025em; }
  .hero p { font-size: 15px; }
  .section { padding: 48px 0; }
  .panel { padding: 32px; }
  .section-title { font-size: 32px; }

  .nav-cta { padding: 8px 14px; font-size: 12px; }

  .grid.cols-3 { grid-template-columns: repeat(2, 1fr); }
  .steps { grid-template-columns: repeat(2, 1fr); gap: 28px 24px; }
  .pull-quote { font-size: 17px; padding: 24px 24px; }

  .cta-footer .panel-navy { padding: 44px 32px; }

  .footer-links { gap: 32px; }
}

/* Mobile landscape */
@media (max-width: 768px) {
  .container { padding: 0 20px; }
  .nav-inner { padding: 10px 18px; gap: 12px; }
  .nav-left { gap: 16px; }
  .nav-links { display: none; }
  .nav-toggle { display: inline-flex; flex-direction: column; padding: 11px 10px; }

  /* Keep the CTA small but visible on mobile landscape */
  .nav-cta { padding: 7px 12px; font-size: 12px; }

  .nav.open .nav-links {
    display: flex;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--navy);
    border-bottom: 2px solid var(--electric);
    flex-direction: column;
    padding: 16px 24px 20px;
    gap: 16px;
  }
  .nav.open .nav-links a {
    color: #fff;
    padding: 10px 0;
    font-size: 16px;
  }

  .cred-tiles { grid-template-columns: repeat(2, 1fr); }
  .cred-tile:nth-child(2) { border-right: none; }
  .cred-tile:nth-child(1),
  .cred-tile:nth-child(2) { border-bottom: 1px solid var(--border); }

  .grid.cols-2,
  .grid.cols-3,
  .grid.cols-4 { grid-template-columns: 1fr; }
  .personas { grid-template-columns: 1fr; gap: 12px; }
  .steps { grid-template-columns: repeat(2, 1fr); }

  .founder { grid-template-columns: 1fr; gap: 24px; text-align: center; }
  .founder-photo { margin: 0 auto; }

  /* SVG dashboards are desktop-oriented — give breathing room but avoid pinching */
  .svg-block { padding: 0 12px; overflow-x: auto; -webkit-overflow-scrolling: touch; }
  .svg-block object,
  .svg-block svg { min-width: 560px; padding: 0; }

  .panel { padding: 24px 20px; }
  .pull-quote { padding: 22px 20px; font-size: 16px; }

  /* Touch-target: form fields */
  .field input,
  .field select,
  .field textarea { padding: 12px 14px; font-size: 15px; min-height: 44px; }
  .form-submit { padding: 14px; font-size: 15px; min-height: 48px; }

  /* Ensure buttons meet 44px tap target */
  .btn { min-height: 44px; }
}

/* Mobile portrait */
/* Mobile portrait */
@media (max-width: 479px) {
  .container { padding: 0 16px; }
  .hero { padding: 44px 0 36px; }
  .hero-eyebrow { font-size: 12px; margin-bottom: 14px; }
  .hero h1 { font-size: 34px; line-height: 1.1; letter-spacing: -0.02em; }
  .step-num { width: 48px; height: 48px; font-size: 18px; margin-bottom: 14px; }
  .cred-label { font-size: 14px; line-height: 1.5; padding: 0 8px; }
  .btn-lg { font-size: 15px; padding: 13px 28px; }
  .hero p { font-size: 14px; }
  .section { padding: 44px 0; }
  .section-title { font-size: 26px; }
  .section-sub { font-size: 13px; }
  .section-head { margin-bottom: 20px; }

  /* Hide the white CTA on phones — hamburger menu includes it */
  .nav-cta { display: none; }

  /* Credibility: 2x2 already set at 768; tighten tile padding */
  .cred-strip { padding: 36px 0; }
  .cred-tile { padding: 18px 14px; }
  .cred-tile-name { font-size: 14px; }

  .pain-quote { padding: 22px 20px 22px 32px; }
  .pain-quote blockquote { font-size: 18px; }
  .pain-quote blockquote::before { font-size: 36px; top: 14px; left: 8px; }
  .pain-row { grid-template-columns: 1fr; gap: 8px; padding: 20px 0; }
  .pain-row:hover { padding-left: 0; }
  .pain-row .pain-title { font-size: 16px; }
  .pain-row .pain-body { font-size: 14px; }

  .cap-card { padding: 14px 16px; }
  .cap-card h4 { font-size: 14px; }
  .cap-card p { font-size: 13px; }

  .card { padding: 16px; }

  .diff-card { padding: 16px 18px; min-height: auto; gap: 14px; }
  .diff-card h4 { font-size: 15px; }
  .diff-card .diff-icon { width: 38px; height: 38px; padding: 7px; margin: 0; }

  .persona { padding: 18px; }

  .pull-quote { font-size: 16px; padding: 22px 20px; }
  .pull-quote br { display: none; }

  .cta-footer { padding: 24px 0 56px; }
  .cta-footer .panel-navy { padding: 36px 24px; }
  .cta-footer h2 { font-size: 20px; }
  .steps { grid-template-columns: 1fr; gap: 20px; }
  .step { padding: 0; }

  /* Hero CTA full-width on phones for easy tap */
  .hero .btn { width: 100%; text-align: center; }
  /* General buttons can remain inline unless in the hero/footer context */

  .form-wrap { padding: 24px 20px; }
  .founder-photo { width: 220px; }
  .founder-bio h2 { font-size: 20px; }
  .founder-bio p { font-size: 14px; }

  .trust-strip { flex-direction: column; gap: 10px; padding: 20px 0 32px; text-align: center; }
  .footer-inner { flex-direction: column; gap: 24px; text-align: center; }
  .footer-links { gap: 24px; flex-wrap: wrap; justify-content: center; }

  .panel { padding: 22px 18px; }
}
