/* ==========================================================================
   Partner2Impact — design system
   Palette per the 2026 brand brief: deep navy (authority), teal (data science),
   amber (currency / value).
   ========================================================================== */

:root {
  /* Brand */
  --navy-900: #020617;
  --navy: #0f172a;
  --navy-700: #1e293b;
  --ink: #0f172a;
  --ink-800: #1e293b;
  /* Brand teal / amber from the brief. The bright shades (--teal-bright,
     --amber-bright) are for fills, borders and graphics only; the darker
     --teal / --amber are used wherever text sits on them, so button labels
     and links clear WCAG AA. */
  --teal: #0f766e;          /* 5.47:1 on white */
  --teal-600: #115e59;      /* 7.58:1 on white — hover */
  --teal-bright: #0d9488;   /* brief primary, graphics only */
  --teal-400: #2dd4bf;      /* on dark backgrounds only */
  --amber: #b45309;         /* 5.02:1 with white text */
  --amber-600: #92400e;     /* 7.09:1 — hover */
  --amber-bright: #d97706;  /* brief accent, graphics only */
  --amber-400: #f59e0b;     /* on dark backgrounds only */

  /* Neutrals */
  --sand: #f8fafc;
  --sand-200: #e2e8f0;
  --paper: #ffffff;
  --slate-700: #334155;
  --slate-500: #55657d; /* AA on #fff (5.93:1) and --sand */
  --slate-300: #cbd5e1;
  --line: #e2e8f0;

  /* Type */
  --font-display: "Plus Jakarta Sans", "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  --font-sans: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  --font-mono: ui-monospace, SFMono-Regular, "SF Mono", Menlo, Consolas, monospace;

  /* Space & shape */
  --shell: 1200px;
  --gutter: clamp(1.25rem, 4vw, 3rem);
  --radius-sm: 10px;
  --radius: 16px;
  --radius-lg: 26px;
  --shadow-sm: 0 1px 2px rgba(15, 23, 42, 0.06), 0 4px 12px rgba(15, 23, 42, 0.05);
  --shadow: 0 12px 30px rgba(15, 23, 42, 0.09);
  --shadow-lg: 0 28px 70px rgba(15, 23, 42, 0.18);
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

/* --------------------------------------------------------------------------
   Base
   -------------------------------------------------------------------------- */

*, *::before, *::after { box-sizing: border-box; }

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
  scroll-padding-top: 6rem;
}

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: var(--font-sans);
  font-size: clamp(1rem, 0.97rem + 0.15vw, 1.075rem);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}

img, picture, svg, video { display: block; max-width: 100%; height: auto; }

h1, h2, h3, h4 {
  font-family: var(--font-display);
  font-weight: 700;
  line-height: 1.12;
  letter-spacing: -0.015em;
  margin: 0 0 0.5em;
  color: var(--ink);
  text-wrap: balance;
}

h1 { font-size: clamp(2.4rem, 1.5rem + 4.2vw, 4.15rem); letter-spacing: -0.028em; }
h2 { font-size: clamp(1.85rem, 1.25rem + 2.4vw, 2.85rem); letter-spacing: -0.022em; }
h3 { font-size: clamp(1.2rem, 1.05rem + 0.6vw, 1.4rem); letter-spacing: -0.012em; }
h4 { font-size: 1.05rem; letter-spacing: -0.005em; }

p { margin: 0 0 1.15em; text-wrap: pretty; }
p:last-child { margin-bottom: 0; }

a { color: var(--teal); text-decoration-thickness: 1px; text-underline-offset: 3px; }
a:hover { color: var(--teal-600); }

ul, ol { margin: 0 0 1.15em; padding-left: 1.2em; }
li { margin-bottom: 0.4em; }

strong { font-weight: 650; }

:focus-visible {
  outline: 3px solid var(--amber);
  outline-offset: 3px;
  border-radius: 4px;
}

.skip-link {
  position: absolute;
  left: 1rem;
  top: -100px;
  z-index: 999;
  background: var(--navy);
  color: #fff;
  padding: 0.75rem 1.15rem;
  border-radius: var(--radius-sm);
  font-weight: 600;
  text-decoration: none;
  transition: top 0.2s var(--ease);
}
.skip-link:focus { top: 1rem; color: #fff; }

.visually-hidden {
  position: absolute !important;
  width: 1px; height: 1px;
  padding: 0; margin: -1px;
  overflow: hidden; clip: rect(0 0 0 0);
  white-space: nowrap; border: 0;
}

/* --------------------------------------------------------------------------
   Layout primitives
   -------------------------------------------------------------------------- */

.shell {
  width: min(100% - (var(--gutter) * 2), var(--shell));
  margin-inline: auto;
}
.shell--narrow { width: min(100% - (var(--gutter) * 2), 780px); }

.section { padding-block: clamp(4rem, 2.5rem + 6vw, 7.5rem); }
.section--tight { padding-block: clamp(3rem, 2rem + 4vw, 5rem); }
.section--sand { background: var(--sand); }
.section--ink {
  background:
    radial-gradient(90rem 45rem at 78% -10%, rgba(13, 148, 136, 0.38), transparent 62%),
    linear-gradient(165deg, var(--navy-700) 0%, var(--navy) 58%, var(--navy-900) 100%);
  color: #e2e8f0;
}
.section--ink h2, .section--ink h3, .section--ink h4 { color: #fff; }
.section--ink p { color: rgba(226, 232, 240, 0.82); }

.section-head { max-width: 46rem; margin-bottom: clamp(2.25rem, 1.5rem + 2.5vw, 3.5rem); }
.section-head--center { margin-inline: auto; text-align: center; }
.section-head p { color: var(--slate-500); font-size: 1.08em; }
.section--ink .section-head p { color: rgba(226, 232, 240, 0.8); }

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  font-family: var(--font-sans);
  font-size: 0.775rem;
  font-weight: 650;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--teal);
  margin: 0 0 1rem;
}
.eyebrow::before {
  content: "";
  width: 1.85rem; height: 2px;
  background: currentColor;
  border-radius: 2px;
}
.section--ink .eyebrow { color: var(--teal-400); }

.grid { display: grid; gap: clamp(1.15rem, 0.9rem + 1.1vw, 1.85rem); }
.grid--2 { grid-template-columns: repeat(auto-fit, minmax(min(100%, 22rem), 1fr)); }
.grid--3 { grid-template-columns: repeat(auto-fit, minmax(min(100%, 18.5rem), 1fr)); }
.grid--4 { grid-template-columns: repeat(auto-fit, minmax(min(100%, 14rem), 1fr)); }

/* --------------------------------------------------------------------------
   Buttons
   -------------------------------------------------------------------------- */

.btn {
  --btn-bg: var(--teal);
  --btn-fg: #fff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.55rem;
  padding: 0.92rem 1.6rem;
  border: 1px solid transparent;
  border-radius: 999px;
  background: var(--btn-bg);
  color: var(--btn-fg);
  font-family: var(--font-sans);
  font-size: 0.965rem;
  font-weight: 620;
  letter-spacing: 0.005em;
  line-height: 1.2;
  text-decoration: none;
  cursor: pointer;
  transition: transform 0.22s var(--ease), box-shadow 0.22s var(--ease),
              background-color 0.22s var(--ease), color 0.22s var(--ease),
              border-color 0.22s var(--ease);
  box-shadow: 0 10px 22px rgba(13, 148, 136, 0.22);
}
.btn:hover {
  color: var(--btn-fg);
  transform: translateY(-2px);
  box-shadow: 0 16px 32px rgba(13, 148, 136, 0.3);
  background: var(--teal-600);
}
.btn:active { transform: translateY(0); }

.btn--ghost {
  --btn-bg: transparent;
  --btn-fg: var(--navy);
  border-color: var(--slate-300);
  box-shadow: none;
}
.btn--ghost:hover {
  background: var(--navy);
  border-color: var(--navy);
  --btn-fg: #fff;
  box-shadow: var(--shadow);
}

.btn--light {
  --btn-bg: #fff;
  --btn-fg: var(--navy);
  box-shadow: 0 10px 26px rgba(4, 14, 26, 0.28);
}
.btn--light:hover { background: #fff; --btn-fg: var(--teal); }

.btn--outline-light {
  --btn-bg: transparent;
  --btn-fg: #fff;
  border-color: rgba(255, 255, 255, 0.4);
  box-shadow: none;
}
.btn--outline-light:hover { background: rgba(255, 255, 255, 0.12); border-color: #fff; }

.btn--sm { padding: 0.66rem 1.15rem; font-size: 0.88rem; }
.btn--block { width: 100%; }

.btn .arrow { transition: transform 0.22s var(--ease); }
.btn:hover .arrow { transform: translateX(3px); }

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-weight: 620;
  font-size: 0.95rem;
  text-decoration: none;
  color: var(--teal);
}
.text-link::after { content: "→"; transition: transform 0.2s var(--ease); }
.text-link:hover::after { transform: translateX(4px); }

/* --------------------------------------------------------------------------
   Header / navigation
   -------------------------------------------------------------------------- */

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255, 255, 255, 0.86);
  backdrop-filter: saturate(180%) blur(14px);
  -webkit-backdrop-filter: saturate(180%) blur(14px);
  border-bottom: 1px solid transparent;
  transition: border-color 0.3s var(--ease), box-shadow 0.3s var(--ease),
              background-color 0.3s var(--ease);
}
.site-header.is-stuck {
  border-bottom-color: var(--line);
  box-shadow: 0 6px 24px rgba(15, 23, 42, 0.07);
}

.nav {
  display: flex;
  align-items: center;
  gap: 1.25rem;
  min-height: 5.75rem;
}

.brand { margin-right: auto; display: inline-flex; align-items: center; }
.brand img { width: auto; height: clamp(46px, 3.4vw, 60px); }

.nav-links {
  display: flex;
  align-items: center;
  gap: 0.35rem;
  list-style: none;
  margin: 0;
  padding: 0;
}
.nav-links a:not(.btn) {
  display: block;
  padding: 0.55rem 0.85rem;
  border-radius: 999px;
  color: var(--slate-700);
  font-size: 0.95rem;
  font-weight: 550;
  text-decoration: none;
  transition: color 0.2s var(--ease), background-color 0.2s var(--ease);
}
.nav-links a:not(.btn):hover { color: var(--navy); background: var(--sand); }
.nav-links a[aria-current="page"] { color: var(--navy); font-weight: 650; }

.nav-cta { display: inline-flex; }

/* The in-menu CTA is for the mobile drawer only. */
@media (min-width: 901px) {
  .nav-links .nav-links__cta { display: none; }
}

.nav-toggle {
  display: none;
  width: 2.9rem; height: 2.9rem;
  align-items: center; justify-content: center;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: #fff;
  cursor: pointer;
  color: var(--navy);
}
.nav-toggle span {
  position: relative;
  display: block;
  width: 18px; height: 2px;
  background: currentColor;
  border-radius: 2px;
  transition: background-color 0.2s var(--ease);
}
.nav-toggle span::before,
.nav-toggle span::after {
  content: "";
  position: absolute; left: 0;
  width: 18px; height: 2px;
  background: currentColor;
  border-radius: 2px;
  transition: transform 0.28s var(--ease);
}
.nav-toggle span::before { top: -6px; }
.nav-toggle span::after { top: 6px; }
.nav-toggle[aria-expanded="true"] span { background: transparent; }
.nav-toggle[aria-expanded="true"] span::before { transform: translateY(6px) rotate(45deg); }
.nav-toggle[aria-expanded="true"] span::after { transform: translateY(-6px) rotate(-45deg); }

@media (max-width: 900px) {
  .brand img { height: 42px; }
  .nav-toggle { display: inline-flex; }
  .nav-cta { display: none; }
  .nav-links {
    position: fixed;
    inset: 5.75rem 0 auto;
    flex-direction: column;
    align-items: stretch;
    gap: 0.15rem;
    padding: 1rem var(--gutter) 1.75rem;
    background: #fff;
    border-bottom: 1px solid var(--line);
    box-shadow: var(--shadow);
    transform: translateY(-12px);
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.25s var(--ease), transform 0.25s var(--ease), visibility 0.25s;
  }
  .nav-links.is-open { opacity: 1; visibility: visible; transform: translateY(0); }
  .nav-links li { margin-bottom: 0; }
  .nav-links a:not(.btn) { padding: 0.9rem 0.75rem; font-size: 1.05rem; border-radius: 12px; }
  .nav-links .nav-links__cta { margin-top: 0.75rem; }
  .nav-links .nav-links__cta .btn { width: 100%; padding-block: 0.95rem; font-size: 1rem; }
}

/* --------------------------------------------------------------------------
   Hero — dark
   One continuous section: headline, actions, and the four signals. The
   signals are the hero's visual payload, so there is a single headline at
   the top of the page rather than two competing ones.
   -------------------------------------------------------------------------- */

.hero {
  position: relative;
  overflow: hidden;
  padding-block: clamp(3.5rem, 2rem + 6vw, 6rem) clamp(3.5rem, 2rem + 6vw, 6.5rem);
  background:
    radial-gradient(55rem 32rem at 50% -8%, rgba(13, 148, 136, 0.28), transparent 64%),
    radial-gradient(40rem 26rem at 88% 108%, rgba(217, 119, 6, 0.18), transparent 62%),
    linear-gradient(168deg, var(--navy-700) 0%, var(--navy) 46%, var(--navy-900) 100%);
  color: #e2e8f0;
}

/* Faint measurement grid — reads as data without being a texture */
.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.028) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.028) 1px, transparent 1px);
  background-size: 64px 64px;
  mask-image: radial-gradient(70% 60% at 50% 30%, #000 30%, transparent 100%);
  -webkit-mask-image: radial-gradient(70% 60% at 50% 30%, #000 30%, transparent 100%);
  pointer-events: none;
}

.hero > * { position: relative; z-index: 1; }

.hero-lead {
  max-width: 54rem;
  margin-inline: auto;
  text-align: center;
}
.hero-lead .eyebrow { color: var(--teal-400); justify-content: center; }
.hero h1 { color: #fff; margin-bottom: 0.42em; }

.hero-lede {
  font-size: clamp(1.06rem, 0.98rem + 0.5vw, 1.28rem);
  color: rgba(226, 232, 240, 0.82);
  max-width: 44rem;
  margin-inline: auto;
  margin-bottom: 2rem;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.75rem;
}

/* Divider label introducing the signal row */
.hero-label {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin: clamp(3rem, 2.2rem + 2.5vw, 4.25rem) 0 clamp(1.5rem, 1.2rem + 1vw, 2rem);
  font-size: 0.74rem;
  font-weight: 650;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(226, 232, 240, 0.62);
  white-space: nowrap;
}
.hero-label::before,
.hero-label::after {
  content: "";
  flex: 1;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.16), transparent);
}
@media (max-width: 34rem) {
  .hero-label { white-space: normal; text-align: center; }
}

/* --------------------------------------------------------------------------
   The four signals
   Rebuild of the "Fusion of Predictive Data and Strategy" panels.
   -------------------------------------------------------------------------- */

.signals {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 14rem), 1fr));
  gap: clamp(0.85rem, 0.7rem + 0.7vw, 1.25rem);
  list-style: none;
  margin: 0;
  padding: 0;
}

.signal {
  --accent: var(--teal-400);
  --accent-soft: rgba(45, 212, 191, 0.18);
  --accent-line: rgba(45, 212, 191, 0.42);

  position: relative;
  display: flex;
  flex-direction: column;
  margin: 0;
  padding: clamp(1.25rem, 1.1rem + 0.6vw, 1.6rem);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.045);
  border: 1px solid rgba(255, 255, 255, 0.11);
  backdrop-filter: blur(2px);
  -webkit-backdrop-filter: blur(2px);
  transition: transform 0.32s var(--ease), background-color 0.32s var(--ease),
              border-color 0.32s var(--ease), box-shadow 0.32s var(--ease);
}
.signal:hover {
  transform: translateY(-5px);
  background: rgba(255, 255, 255, 0.075);
  border-color: var(--accent-line);
  box-shadow: 0 18px 40px rgba(2, 6, 23, 0.55);
}
.signal--risk {
  --accent: var(--amber-400);
  --accent-soft: rgba(245, 158, 11, 0.18);
  --accent-line: rgba(245, 158, 11, 0.42);
}

.signal-icon {
  display: grid;
  place-items: center;
  width: 2.6rem; height: 2.6rem;
  margin-bottom: 1rem;
  border-radius: 12px;
  background: var(--accent-soft);
  border: 1px solid var(--accent-line);
  color: var(--accent);
}

.signal-chip {
  align-self: flex-start;
  padding: 0.3rem 0.8rem;
  margin-bottom: 0.75rem;
  border-radius: 999px;
  background: var(--accent-soft);
  font-family: var(--font-mono);
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--accent);
}

.signal h2,
.signal h3 {
  font-size: 1.06rem;
  color: #fff;
  margin-bottom: 0.35rem;
}
.signal p {
  font-size: 0.885rem;
  line-height: 1.55;
  color: rgba(226, 232, 240, 0.72);
  margin-bottom: 0;
}

/* Ascending mini bar chart — the rising trend of the original graphic */
/* height = the 1.35rem breathing space above + 2.4rem of actual bar area,
   because border-box makes padding eat into the percentage heights below */
.signal-bars {
  display: flex;
  align-items: flex-end;
  gap: 4px;
  height: 3.75rem;
  margin-top: auto;
  padding-top: 1.35rem;
}
.signal-bars i {
  flex: 1;
  height: var(--h, 50%);
  min-height: 3px;
  border-radius: 3px;
  background: linear-gradient(180deg, var(--accent), var(--accent-soft));
  opacity: 0.85;
  transform-origin: bottom;
  animation: signal-rise 0.7s var(--ease) both;
  animation-delay: calc(var(--i, 0) * 70ms);
}
@keyframes signal-rise { from { transform: scaleY(0); } to { transform: scaleY(1); } }

.hero-footnote {
  margin-top: clamp(1.5rem, 1.2rem + 1vw, 2rem);
  text-align: center;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.13em;
  text-transform: uppercase;
  color: rgba(226, 232, 240, 0.6); /* 4.9:1 on the darkest hero stop */
}

/* The eyebrow rule reads as a stray dash once the label wraps on narrow screens */
@media (max-width: 30rem) {
  .hero-lead .eyebrow::before { display: none; }
}

@media (prefers-reduced-motion: reduce) {
  .signal-bars i { animation: none; }
}

/* Page hero (interior pages) */
.page-hero {
  padding-block: clamp(3rem, 2rem + 4vw, 5.5rem) clamp(2.5rem, 1.5rem + 3.5vw, 4rem);
  background:
    radial-gradient(50rem 30rem at 85% 0%, rgba(13, 148, 136, 0.09), transparent 60%),
    linear-gradient(180deg, var(--sand), #ffffff);
  border-bottom: 1px solid var(--sand-200);
}
.page-hero h1 { font-size: clamp(2.1rem, 1.4rem + 3.2vw, 3.4rem); }
.page-hero p {
  max-width: 46rem;
  font-size: clamp(1.03rem, 0.98rem + 0.4vw, 1.2rem);
  color: var(--slate-700);
}

.breadcrumb {
  display: flex; gap: 0.5rem; align-items: center;
  list-style: none; margin: 0 0 1.15rem; padding: 0;
  font-size: 0.85rem; color: var(--slate-500);
}
.breadcrumb a { color: var(--slate-500); text-decoration: none; }
.breadcrumb a:hover { color: var(--teal); }
.breadcrumb li + li::before { content: "/"; margin-right: 0.5rem; color: var(--slate-300); }

/* --------------------------------------------------------------------------
   Capability strip
   -------------------------------------------------------------------------- */

.strip {
  border-block: 1px solid var(--line);
  background: #fff;
}
.strip-list {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 15rem), 1fr));
  list-style: none;
  margin: 0;
  padding: 0;
}
.strip-list li {
  display: flex;
  align-items: flex-start;
  gap: 0.7rem;
  margin: 0;
  padding: 1.6rem clamp(1rem, 2vw, 1.75rem);
  border-right: 1px solid var(--line);
  font-size: 0.98rem;
  font-weight: 550;
  color: var(--ink-800);
  line-height: 1.4;
}
.strip-list li:last-child { border-right: 0; }
.strip-list svg { flex: none; margin-top: 0.15rem; color: var(--teal); }
@media (max-width: 640px) {
  .strip-list li { border-right: 0; border-bottom: 1px solid var(--line); padding-block: 1.15rem; }
  .strip-list li:last-child { border-bottom: 0; }
}

/* --------------------------------------------------------------------------
   Cards
   -------------------------------------------------------------------------- */

.card {
  position: relative;
  display: flex;
  flex-direction: column;
  padding: clamp(1.5rem, 1.2rem + 1vw, 2.1rem);
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow-sm);
  transition: transform 0.3s var(--ease), box-shadow 0.3s var(--ease), border-color 0.3s var(--ease);
}
.card:hover { transform: translateY(-4px); box-shadow: var(--shadow); border-color: var(--sand-200); }
.card h3 { margin-bottom: 0.5rem; }
.card p { color: var(--slate-500); font-size: 0.985rem; }

.card-icon {
  display: grid;
  place-items: center;
  width: 3rem; height: 3rem;
  margin-bottom: 1.15rem;
  border-radius: 14px;
  background: linear-gradient(140deg, rgba(13, 148, 136, 0.14), rgba(217, 119, 6, 0.14));
  color: var(--teal-600);
}

.card-list {
  list-style: none;
  margin: 1.25rem 0 0;
  padding: 1.25rem 0 0;
  border-top: 1px solid var(--line);
  display: grid;
  gap: 0.55rem;
}
.card-list li {
  position: relative;
  margin: 0;
  padding-left: 1.4rem;
  font-size: 0.94rem;
  color: var(--slate-700);
}
.card-list li::before {
  content: "";
  position: absolute;
  left: 0; top: 0.6em;
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--teal);
}

.card--feature { background: linear-gradient(165deg, #fff, var(--sand)); }

/* Numbered process steps */
.steps { counter-reset: step; }
.step {
  position: relative;
  padding: 1.85rem clamp(1.25rem, 1rem + 1vw, 1.85rem);
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.13);
  border-radius: var(--radius);
  transition: transform 0.3s var(--ease), background-color 0.3s var(--ease);
}
.step:hover { transform: translateY(-4px); background: rgba(255, 255, 255, 0.09); }
.step .num {
  display: inline-block;
  font-family: var(--font-display);
  font-size: 0.95rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  color: var(--teal-400);
  margin-bottom: 0.9rem;
}
.step h3 { font-size: 1.13rem; margin-bottom: 0.45rem; }
.step p { font-size: 0.95rem; }

/* --------------------------------------------------------------------------
   Split feature (Trusted Advisor)
   -------------------------------------------------------------------------- */

.split {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 21rem), 1fr));
  gap: clamp(2rem, 1rem + 4vw, 4rem);
  align-items: center;
}
/* Flip the visual order on wide screens while keeping the heading first in the
   DOM (and therefore first on mobile and for screen readers). */
@media (min-width: 801px) {
  .split--flip > :first-child { order: 2; }
}

/* Two-up card pair sized for the narrower column inside a split */
.grid--pair { grid-template-columns: repeat(auto-fit, minmax(min(100%, 13rem), 1fr)); }

.split-media {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow);
}
.split-media img { width: 100%; }

.quote-card {
  padding: clamp(1.5rem, 1.2rem + 1.4vw, 2.35rem);
  background: #fff;
  border: 1px solid var(--line);
  border-left: 4px solid var(--teal);
  border-radius: var(--radius);
  box-shadow: var(--shadow-sm);
}
.quote-card blockquote {
  margin: 0 0 1rem;
  font-family: var(--font-display);
  font-size: clamp(1.1rem, 1rem + 0.6vw, 1.35rem);
  line-height: 1.4;
  color: var(--ink);
}
.quote-card cite {
  font-style: normal;
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--slate-500);
}

/* Stat tiles */
.stats {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 12rem), 1fr));
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
}
.stat { padding: 1.65rem 1.35rem; background: #fff; }
.stat .n {
  display: block;
  font-family: var(--font-display);
  font-size: clamp(1.85rem, 1.4rem + 1.6vw, 2.5rem);
  font-weight: 600;
  line-height: 1;
  color: var(--navy);
  margin-bottom: 0.4rem;
}
.stat .l { font-size: 0.88rem; color: var(--slate-500); line-height: 1.45; }
.section--ink .stats { background: rgba(255, 255, 255, 0.14); border-color: rgba(255, 255, 255, 0.14); }
.section--ink .stat { background: rgba(255, 255, 255, 0.04); }
.section--ink .stat .n { color: #fff; }
.section--ink .stat .l { color: rgba(233, 240, 248, 0.72); }

/* --------------------------------------------------------------------------
   Team
   -------------------------------------------------------------------------- */

.team-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 22rem), 1fr));
  gap: clamp(1.25rem, 1rem + 1.5vw, 2.25rem);
}

.person {
  display: grid;
  grid-template-columns: 8.5rem 1fr;
  gap: clamp(1.15rem, 1rem + 1vw, 1.75rem);
  align-items: start;
  padding: clamp(1.35rem, 1.1rem + 1vw, 1.9rem);
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow-sm);
  transition: transform 0.3s var(--ease), box-shadow 0.3s var(--ease);
}
.person:hover { transform: translateY(-4px); box-shadow: var(--shadow); }
.person-photo {
  position: relative;
  border-radius: 14px;
  overflow: hidden;
  aspect-ratio: 1;
  background: var(--sand-200);
}
.person-photo img { width: 100%; height: 100%; object-fit: cover; }
.person h3 { margin-bottom: 0.15rem; }
.person .role {
  display: block;
  font-size: 0.85rem;
  font-weight: 620;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--teal);
  margin-bottom: 0.85rem;
}
.person p { font-size: 0.95rem; color: var(--slate-700); }
.person-tags {
  display: flex; flex-wrap: wrap; gap: 0.4rem;
  list-style: none; margin: 1rem 0 0; padding: 0;
}
.person-tags li {
  margin: 0;
  padding: 0.28rem 0.7rem;
  border-radius: 999px;
  background: var(--sand);
  border: 1px solid var(--sand-200);
  font-size: 0.78rem;
  font-weight: 550;
  color: var(--slate-700);
}
@media (max-width: 520px) {
  .person { grid-template-columns: 1fr; }
  .person-photo { width: 7.5rem; }
}

/* --------------------------------------------------------------------------
   Clients
   -------------------------------------------------------------------------- */

.client-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(min(100%, 17rem), 1fr));
  gap: 0.75rem;
  list-style: none;
  margin: 0;
  padding: 0;
}
.client-grid li {
  margin: 0;
  padding: 1.05rem 1.25rem;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  font-size: 0.94rem;
  font-weight: 550;
  color: var(--ink-800);
  line-height: 1.35;
  transition: border-color 0.25s var(--ease), transform 0.25s var(--ease), box-shadow 0.25s var(--ease);
}
.client-grid li:hover {
  transform: translateY(-2px);
  border-color: var(--slate-300);
  box-shadow: var(--shadow-sm);
}
.section--sand .client-grid li { background: #fff; }

.sector-chips {
  display: flex; flex-wrap: wrap; gap: 0.5rem;
  list-style: none; margin: 0; padding: 0;
}
.sector-chips li {
  margin: 0;
  padding: 0.5rem 1rem;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: #fff;
  font-size: 0.9rem;
  font-weight: 550;
  color: var(--slate-700);
}

/* --------------------------------------------------------------------------
   CTA band
   -------------------------------------------------------------------------- */

.cta-band {
  position: relative;
  overflow: hidden;
  padding-block: clamp(3.25rem, 2rem + 5vw, 5.5rem);
  background:
    radial-gradient(60rem 30rem at 12% 125%, rgba(13, 148, 136, 0.55), transparent 62%),
    radial-gradient(45rem 28rem at 92% -20%, rgba(217, 119, 6, 0.3), transparent 62%),
    linear-gradient(120deg, var(--navy-700) 0%, var(--navy-900) 78%);
  color: #fff;
  text-align: center;
}
.cta-band h2 { color: #fff; margin-bottom: 0.4em; }
.cta-band p {
  max-width: 40rem;
  margin-inline: auto;
  color: rgba(226, 232, 240, 0.86);
  font-size: 1.08rem;
}
.cta-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.75rem;
  margin-top: 2rem;
}
.cta-note { margin-top: 1.35rem; font-size: 0.88rem; color: rgba(226, 232, 240, 0.66); }

/* --------------------------------------------------------------------------
   Forms
   -------------------------------------------------------------------------- */

.contact-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.85fr) minmax(0, 1.15fr);
  gap: clamp(2rem, 1rem + 4vw, 4rem);
  align-items: start;
}
@media (max-width: 900px) { .contact-layout { grid-template-columns: 1fr; } }

.contact-details { display: grid; gap: 1.15rem; }
.contact-item {
  display: flex;
  gap: 0.9rem;
  align-items: flex-start;
  padding: 1.15rem 1.25rem;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
}
.contact-item svg { flex: none; margin-top: 0.15rem; color: var(--teal); }
.contact-item .k {
  display: block;
  font-size: 0.78rem;
  font-weight: 650;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--slate-500);
  margin-bottom: 0.15rem;
}
.contact-item .v { font-weight: 600; color: var(--ink); word-break: break-word; }
.contact-item a { color: var(--ink); text-decoration: none; }
.contact-item a:hover { color: var(--teal); }

.form-card {
  padding: clamp(1.5rem, 1.2rem + 1.5vw, 2.5rem);
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
}

.field { display: grid; gap: 0.4rem; margin-bottom: 1.15rem; }
.field label {
  font-size: 0.86rem;
  font-weight: 620;
  letter-spacing: 0.02em;
  color: var(--ink-800);
}
.field .req { color: var(--teal); }

.field input,
.field select,
.field textarea {
  width: 100%;
  padding: 0.85rem 1rem;
  border: 1px solid var(--slate-300);
  border-radius: var(--radius-sm);
  background: #fff;
  font-family: inherit;
  font-size: 1rem;
  color: var(--ink);
  transition: border-color 0.2s var(--ease), box-shadow 0.2s var(--ease);
}
.field textarea { min-height: 8.5rem; resize: vertical; }
.field input:focus,
.field select:focus,
.field textarea:focus {
  outline: none;
  border-color: var(--navy);
  box-shadow: 0 0 0 3px rgba(16, 47, 84, 0.13);
}
.field input[aria-invalid="true"],
.field textarea[aria-invalid="true"] { border-color: #c0392b; }
.field .error {
  font-size: 0.82rem;
  color: #c0392b;
  min-height: 0;
}

.field-row {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 13rem), 1fr));
  gap: 0 1rem;
}

.field--consent { margin-bottom: 1.35rem; }
.form-consent {
  display: flex;
  gap: 0.6rem;
  align-items: flex-start;
  font-size: 0.86rem;
  font-weight: 400;
  color: var(--slate-500);
  cursor: pointer;
}
.form-consent input {
  width: auto;
  margin-top: 0.25rem;
  accent-color: var(--teal);
}
.form-consent input[aria-invalid="true"] { outline: 2px solid #c0392b; outline-offset: 2px; }

.form-status {
  margin-top: 1rem;
  padding: 0.85rem 1rem;
  border-radius: var(--radius-sm);
  font-size: 0.92rem;
  display: none;
}
.form-status.is-visible { display: block; }
.form-status.is-success { background: #edf7f0; border: 1px solid #bfe3ca; color: #1e6b3a; }
.form-status.is-error { background: #fdeeec; border: 1px solid #f3c4bd; color: #a13226; }

.hp-field { position: absolute; left: -9999px; opacity: 0; }

/* --------------------------------------------------------------------------
   FAQ / accordion
   -------------------------------------------------------------------------- */

.faq { display: grid; gap: 0.75rem; }
.faq details {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
}
.faq summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1.15rem 1.35rem;
  font-family: var(--font-display);
  font-size: 1.08rem;
  font-weight: 600;
  color: var(--ink);
  cursor: pointer;
  list-style: none;
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after {
  content: "+";
  flex: none;
  font-family: var(--font-sans);
  font-size: 1.4rem;
  font-weight: 400;
  color: var(--teal);
  transition: transform 0.25s var(--ease);
}
.faq details[open] summary::after { transform: rotate(45deg); }
.faq .faq-body { padding: 0 1.35rem 1.35rem; color: var(--slate-700); font-size: 0.97rem; }

/* --------------------------------------------------------------------------
   Footer
   -------------------------------------------------------------------------- */

.site-footer {
  background: var(--navy-900);
  color: rgba(226, 232, 240, 0.74);
  padding-block: clamp(3rem, 2rem + 3vw, 4.25rem) 2rem;
  font-size: 0.94rem;
}
.footer-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 11rem), 1fr));
  gap: clamp(1.75rem, 1rem + 3vw, 3.5rem);
  padding-bottom: 2.5rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
}
@media (min-width: 900px) {
  .footer-grid { grid-template-columns: minmax(0, 1.6fr) repeat(3, minmax(0, 1fr)); }
}
.footer-brand img {
  width: 190px;
  height: auto;
  margin-bottom: 1.1rem;
}
.footer-brand p { max-width: 24rem; color: rgba(226, 232, 240, 0.68); }
.site-footer h4 {
  color: #fff;
  font-family: var(--font-sans);
  font-size: 0.8rem;
  font-weight: 650;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin-bottom: 1rem;
}
.footer-links { list-style: none; margin: 0; padding: 0; display: grid; gap: 0.6rem; }
.footer-links a {
  color: rgba(226, 232, 240, 0.74);
  text-decoration: none;
  transition: color 0.2s var(--ease);
}
.footer-links a:hover { color: #fff; }
.footer-bottom {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem 1.5rem;
  justify-content: space-between;
  align-items: center;
  padding-top: 1.75rem;
  font-size: 0.85rem;
  color: rgba(226, 232, 240, 0.55);
}
.footer-bottom a { color: inherit; text-decoration: none; }
.footer-bottom a:hover { color: #fff; }

/* --------------------------------------------------------------------------
   Motion
   -------------------------------------------------------------------------- */

[data-reveal] {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 0.7s var(--ease), transform 0.7s var(--ease);
  transition-delay: var(--reveal-delay, 0ms);
}
[data-reveal].is-visible { opacity: 1; transform: none; }

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.001ms !important;
  }
  [data-reveal] { opacity: 1; transform: none; }
}

/* --------------------------------------------------------------------------
   Print
   -------------------------------------------------------------------------- */

@media print {
  .site-header, .cta-band, .nav-toggle, .site-footer { display: none; }
  body { font-size: 11pt; }
  .section { padding-block: 1rem; }
}

/* ==========================================================================
   2026 refresh — data-intelligence components
   ========================================================================== */

/* --------------------------------------------------------------------------
   Hero dashboard mockup
   A CSS/SVG stand-in for the predictive donor dashboard. No stock photography,
   and nothing here claims to be a screenshot of live software.
   -------------------------------------------------------------------------- */

.dash {
  position: relative;
  border-radius: var(--radius-lg);
  background: linear-gradient(165deg, var(--navy-700), var(--navy-900));
  box-shadow: var(--shadow-lg);
  padding: 1.15rem;
  color: #e2e8f0;
  overflow: hidden;
}
.dash::before {
  content: "";
  position: absolute;
  inset: -40% -30% auto auto;
  width: 26rem; aspect-ratio: 1;
  background: radial-gradient(circle, rgba(13, 148, 136, 0.35), transparent 62%);
  pointer-events: none;
}

.dash-bar {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0 0.35rem 0.9rem;
}
.dash-bar i {
  width: 0.65rem; height: 0.65rem;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.2);
}
.dash-bar i:first-child { background: rgba(217, 119, 6, 0.75); }
.dash-bar i:nth-child(2) { background: rgba(13, 148, 136, 0.75); }
.dash-bar span {
  margin-left: auto;
  font-family: var(--font-mono);
  font-size: 0.68rem;
  letter-spacing: 0.06em;
  color: rgba(226, 232, 240, 0.55);
}

.dash-body {
  position: relative;
  display: grid;
  gap: 0.7rem;
}

.dash-panel {
  background: rgba(255, 255, 255, 0.055);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 14px;
  padding: 0.95rem 1.05rem;
}
.dash-panel h4 {
  margin: 0 0 0.75rem;
  font-family: var(--font-sans);
  font-size: 0.68rem;
  font-weight: 650;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(226, 232, 240, 0.6);
}

.dash-kpis { display: grid; grid-template-columns: repeat(3, 1fr); gap: 0.7rem; }
.dash-kpi {
  background: rgba(255, 255, 255, 0.055);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 14px;
  padding: 0.85rem 0.9rem;
}
.dash-kpi .k {
  display: block;
  font-size: 0.66rem;
  font-weight: 600;
  letter-spacing: 0.09em;
  text-transform: uppercase;
  color: rgba(226, 232, 240, 0.55);
  margin-bottom: 0.3rem;
}
.dash-kpi .v {
  display: block;
  font-family: var(--font-display);
  font-size: clamp(1.1rem, 1rem + 0.5vw, 1.45rem);
  font-weight: 700;
  line-height: 1;
  color: #fff;
}
.dash-kpi .d { font-size: 0.7rem; font-weight: 600; color: var(--teal-400); }
.dash-kpi .d--amber { color: var(--amber-400); }

/* Score rows */
.dash-rows { display: grid; gap: 0.6rem; }
.dash-row {
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: 0.75rem;
}
.dash-row .who { font-size: 0.8rem; font-weight: 550; color: rgba(226, 232, 240, 0.9); }
.dash-row .meta {
  display: block;
  font-size: 0.68rem;
  color: rgba(226, 232, 240, 0.5);
}
.dash-score {
  font-family: var(--font-mono);
  font-size: 0.75rem;
  font-weight: 600;
  padding: 0.2rem 0.55rem;
  border-radius: 999px;
  background: rgba(13, 148, 136, 0.22);
  border: 1px solid rgba(45, 212, 191, 0.4);
  color: var(--teal-400);
}
.dash-score--amber {
  background: rgba(217, 119, 6, 0.2);
  border-color: rgba(245, 158, 11, 0.4);
  color: var(--amber-400);
}
.dash-track {
  grid-column: 1 / -1;
  height: 4px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.1);
  overflow: hidden;
}
.dash-track i {
  display: block;
  height: 100%;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--teal-bright), var(--teal-400));
  width: var(--w, 50%);
  transform-origin: left;
  animation: dash-grow 1.1s var(--ease) both;
}
.dash-track i.is-amber { background: linear-gradient(90deg, var(--amber-bright), var(--amber-400)); }

@keyframes dash-grow { from { transform: scaleX(0); } to { transform: scaleX(1); } }

/* Sparkline chart */
.dash-chart { display: block; width: 100%; height: auto; }
.dash-chart .line {
  fill: none;
  stroke: var(--teal-400);
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-dasharray: 400;
  stroke-dashoffset: 400;
  animation: dash-draw 1.6s var(--ease) 0.2s forwards;
}
.dash-chart .area { fill: url(#dashFill); opacity: 0; animation: dash-fade 0.8s var(--ease) 1s forwards; }
.dash-chart .grid-line { stroke: rgba(255, 255, 255, 0.08); stroke-width: 1; }

@keyframes dash-draw { to { stroke-dashoffset: 0; } }
@keyframes dash-fade { to { opacity: 1; } }

@media (prefers-reduced-motion: reduce) {
  .dash-track i, .dash-chart .line, .dash-chart .area { animation: none; }
  .dash-chart .line { stroke-dashoffset: 0; }
  .dash-chart .area { opacity: 1; }
}

/* Floating stat card over the dashboard */
.dash-float {
  position: absolute;
  left: clamp(-1.75rem, -2.5vw, -0.75rem);
  bottom: -1.35rem;
  z-index: 3;
  display: grid;
  gap: 0.1rem;
  padding: 0.9rem 1.2rem;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}
.dash-float .n {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 700;
  line-height: 1;
  color: var(--navy);
}
.dash-float .l {
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--slate-500);
}
@media (max-width: 940px) {
  .dash-float { left: -0.5rem; bottom: -1rem; }
}

/* --------------------------------------------------------------------------
   Pain points
   -------------------------------------------------------------------------- */

.pain-list { display: grid; gap: 1rem; list-style: none; margin: 0; padding: 0; }
.pain {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 1rem;
  margin: 0;
  padding: 1.35rem 1.5rem;
  background: #fff;
  border: 1px solid var(--line);
  border-left: 4px solid var(--amber-bright);
  border-radius: var(--radius);
  box-shadow: var(--shadow-sm);
}
.pain svg { color: var(--amber); margin-top: 0.2rem; }
.pain h3 { margin-bottom: 0.25rem; font-size: 1.08rem; }
.pain p { font-size: 0.95rem; color: var(--slate-500); }

/* --------------------------------------------------------------------------
   Comparison grid — the tool vs the consulting
   -------------------------------------------------------------------------- */

.compare {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 20rem), 1fr));
  gap: clamp(1.15rem, 0.9rem + 1.1vw, 1.85rem);
}

.compare-col {
  display: flex;
  flex-direction: column;
  padding: clamp(1.5rem, 1.2rem + 1vw, 2.15rem);
  border-radius: var(--radius-lg);
  border: 1px solid var(--line);
  background: #fff;
  box-shadow: var(--shadow-sm);
}
.compare-col--data { border-top: 4px solid var(--teal-bright); }
.compare-col--strategy { border-top: 4px solid var(--amber-bright); }

.compare-col > header { margin-bottom: 1.35rem; }
.compare-col .tag {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  padding: 0.32rem 0.8rem;
  border-radius: 999px;
  font-size: 0.72rem;
  font-weight: 650;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 0.9rem;
}
.compare-col--data .tag { background: rgba(13, 148, 136, 0.13); color: var(--teal-600); }
.compare-col--strategy .tag { background: rgba(217, 119, 6, 0.14); color: var(--amber-600); }
.compare-col h3 { margin-bottom: 0.35rem; font-size: clamp(1.25rem, 1.1rem + 0.6vw, 1.5rem); }
.compare-col > header p { color: var(--slate-500); font-size: 0.95rem; }

.compare-items { list-style: none; margin: 0; padding: 0; display: grid; gap: 1.1rem; }
.compare-items li { margin: 0; padding-top: 1.1rem; border-top: 1px solid var(--line); }
.compare-items li:first-child { padding-top: 0; border-top: 0; }
.compare-items strong {
  display: block;
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 0.2rem;
  color: var(--ink);
}
.compare-items span { font-size: 0.93rem; color: var(--slate-500); }

/* --------------------------------------------------------------------------
   Extract / Enrich / Execute
   -------------------------------------------------------------------------- */

.flow {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 16rem), 1fr));
  gap: clamp(1.15rem, 0.9rem + 1.1vw, 1.75rem);
  counter-reset: flow;
}
.flow-step {
  position: relative;
  padding: 1.75rem clamp(1.25rem, 1rem + 1vw, 1.75rem);
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.13);
  border-radius: var(--radius);
}
.flow-step .icon {
  display: grid;
  place-items: center;
  width: 2.75rem; height: 2.75rem;
  margin-bottom: 1.1rem;
  border-radius: 12px;
  background: rgba(13, 148, 136, 0.2);
  border: 1px solid rgba(45, 212, 191, 0.32);
  color: var(--teal-400);
}
.flow-step h3 { font-size: 1.15rem; margin-bottom: 0.4rem; }
.flow-step p { font-size: 0.95rem; }
.flow-step .who {
  display: inline-block;
  margin-top: 0.85rem;
  font-size: 0.74rem;
  font-weight: 650;
  letter-spacing: 0.09em;
  text-transform: uppercase;
  color: var(--teal-400);
}

/* --------------------------------------------------------------------------
   Pull quote (David / Tracey)
   -------------------------------------------------------------------------- */

.pull {
  padding: clamp(1.75rem, 1.4rem + 1.6vw, 2.75rem);
  border-radius: var(--radius-lg);
  background: linear-gradient(150deg, rgba(13, 148, 136, 0.1), rgba(217, 119, 6, 0.09));
  border: 1px solid var(--line);
}
.pull blockquote {
  margin: 0 0 1rem;
  font-family: var(--font-display);
  font-size: clamp(1.2rem, 1.05rem + 0.9vw, 1.7rem);
  font-weight: 600;
  line-height: 1.32;
  letter-spacing: -0.015em;
  color: var(--ink);
}
.pull cite {
  font-style: normal;
  font-size: 0.9rem;
  font-weight: 650;
  color: var(--teal-600);
}
.section--ink .pull {
  background: rgba(255, 255, 255, 0.05);
  border-color: rgba(255, 255, 255, 0.13);
}
.section--ink .pull blockquote { color: #fff; }
.section--ink .pull cite { color: var(--teal-400); }

/* --------------------------------------------------------------------------
   CRM logos / integration row
   -------------------------------------------------------------------------- */

.crm-row {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.6rem;
  list-style: none;
  margin: 0;
  padding: 0;
}
.crm-row li {
  margin: 0;
  padding: 0.55rem 1.1rem;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: #fff;
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--slate-700);
}

/* --------------------------------------------------------------------------
   Amber CTA variant — used for the primary "data audit" action
   -------------------------------------------------------------------------- */

.btn--amber {
  --btn-bg: var(--amber);
  --btn-fg: #fff;
  box-shadow: 0 10px 22px rgba(180, 83, 9, 0.3);
}
.btn--amber:hover {
  background: var(--amber-600);
  box-shadow: 0 16px 32px rgba(180, 83, 9, 0.36);
}

/* Dashboard framing on the tool page */
.dash-frame {
  max-width: 56rem;
  margin-inline: auto;
}
.dash-caption {
  margin-top: 1.15rem;
  text-align: center;
  font-size: 0.84rem;
  color: var(--slate-500);
}

/* --------------------------------------------------------------------------
   Logo placements beyond the header and footer
   -------------------------------------------------------------------------- */

/* Hero lockup — replaces the eyebrow above the headline */
.hero-logo {
  width: clamp(13rem, 10rem + 9vw, 18rem);
  height: auto;
  margin: 0 auto clamp(1.25rem, 1rem + 1vw, 2rem);
}

/* Closing CTA band */
.cta-logo {
  width: clamp(9rem, 7rem + 6vw, 12.5rem);
  height: auto;
  margin: 0 auto clamp(1.25rem, 1rem + 1vw, 1.85rem);
  opacity: 0.92;
}

/* --------------------------------------------------------------------------
   Emphasised section lede
   One step up from body copy and set in the display face, for the line that
   carries the positioning rather than merely introducing the section.
   -------------------------------------------------------------------------- */

.section-head .section-head__lead {
  font-family: var(--font-display);
  font-size: clamp(1.15rem, 1rem + 0.8vw, 1.5rem);
  font-weight: 700;
  line-height: 1.4;
  letter-spacing: -0.01em;
  color: var(--ink);
  max-width: 44rem;
  margin-inline: auto;
}
.section--ink .section-head .section-head__lead { color: #fff; }
