/* ==========================================================================
   Invicti Landing Page-Design System
   Tokens extracted directly from invicti.com's production stylesheet
   (Webflow build, 2026)-colors, type scale, radii, spacing, and button
   mechanics mirror the live site 1:1. See README for the one substitution
   (font family-licensing) and how these were sourced.
   ========================================================================== */

:root {
  /* ---- Color: base (from --background-color--*, --_base-primitive---swatch-*) ---- */
  --cream: #faf9f7;         /* bg-primary: main page background */
  --black: #101820;         /* swatch-primary--black: bg-alternate, text-primary */
  --white: #ffffff;

  /* ---- Color: green (primary action / brand accent) ---- */
  --green: #4bd783;
  --green-dark: #3cac69;
  --green-darkest: #2d8550;
  --green-light: #b1f3b5;

  /* ---- Color: periwinkle purple (secondary accent-gradients, taglines) ---- */
  --purple: #5d40bd;
  --purple-light: #b2a7e0;
  --purple-lighter: #ece9fa;
  --purple-lightest: #f3f2fd;
  --purple-darkest: #422991;

  /* ---- Color: highlight purple (tagline on dark surfaces) ---- */
  --highlight-purple: #cc8bdb;
  --highlight-purple-light: #daade6;
  --highlight-purple-dark: #a05bb1;
  --highlight-purple-darker: #7a2582;

  /* ---- Color: accents ---- */
  --icon-blue: #06aeef;
  --alert-orange: #fa4747;
  --text-tertiary-orange: #ff6d0b;

  /* ---- Color: neutrals ---- */
  --gray-darker: #585d63;
  --gray-default: #e7e6e6;
  --gray-dark: #d9d8d6;
  --gray-darkest: #282f36;
  --gray-lightest: #f4f3f5;
  --divider: #b1b1b2;

  /* ---- Semantic ---- */
  --bg-primary: var(--cream);
  --bg-alternate: var(--black);
  --text-primary: var(--black);
  --text-secondary: var(--white);
  --border-primary: var(--black);

  /* ---- Typography ----
     Source uses "Circularxxweb" (Lineto Circular XX, commercially
     licensed to Invicti). We substitute General Sans-a free,
     metrically similar geometric sans-rather than redistribute a
     licensed font file. Swap for the real Circular XX Web files if/when
     Invicti's brand team provides a license for this property. */
  --font-sans: "General Sans", "Circularxxweb", -apple-system, BlinkMacSystemFont, "Segoe UI", Arial, sans-serif;

  /* Font sizes-desktop values match --_responsive---font-size--* 1:1 */
  --fs-h1: clamp(1.75rem, 1.5rem + 1vw, 2rem);       /* hero heading (site uses h4-scale for h1) */
  --fs-h2: clamp(2rem, 1.3rem + 3vw, 3.125rem);       /* section headline */
  --fs-h3: clamp(1.75rem, 1.3rem + 2vw, 2.6875rem);
  --fs-h4: clamp(1.25rem, 1rem + 1vw, 2rem);
  --fs-h5: 1.25rem;
  --fs-h6: 1.25rem;
  --fs-tagline: 1.25rem;
  --fs-large: 1.25rem;
  --fs-medium: 1.125rem;   /* body default */
  --fs-regular: 1rem;
  --fs-small: 0.75rem;
  --fs-tiny: 0.625rem;

  --lh-tight: 1.16;    /* h2 */
  --lh-snug: 1.24;     /* h1 / h4 */
  --lh-heading: 1.26;  /* h3 / h5 / h6 */
  --lh-body: 1.39;
  --lh-loose: 1.6;     /* tagline */

  --fw-regular: 400;
  --fw-medium: 500;
  --fw-semibold: 600;
  --fw-bold: 700;
  --fw-xbold: 800;

  /* ---- Radius scale (--_responsive---radius--*) ---- */
  --radius-sm: 0.5rem;   /* buttons */
  --radius-md: 0.75rem;  /* testimonial cards */
  --radius-lg: 1.25rem;  /* cards, role tiles */
  --radius-xlg: 2.5rem;  /* large image containers */

  /* ---- Spacing / layout ---- */
  --pad-global: 5%;
  --pad-section-sm: 3rem;
  --pad-section-md: 5rem;
  --pad-section-lg: 7rem;
  --container-xlarge: 95rem;  /* 1520px */
  --container-large: 80rem;   /* 1280px */
  --container-medium: 64rem;
  --container-small: 48rem;

  --shadow-card: 0 1px 2px rgba(16, 24, 32, 0.05), 0 10px 28px -12px rgba(16, 24, 32, 0.14);
  --shadow-navbar: 0 4px 25px 0 rgba(93, 64, 189, 0.35); /* navbar's real periwinkle box-shadow */
  --ease: cubic-bezier(0.2, 0.7, 0.3, 1);
}

/* ---------- Reset ---------- */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body, h1, h2, h3, h4, p, figure, blockquote, dl, dd { margin: 0; }
ul, ol { margin: 0; padding: 0; list-style: none; }
img, picture, svg { display: block; max-width: 100%; }
button { font: inherit; color: inherit; background: none; border: none; cursor: pointer; }
a { color: inherit; text-decoration: none; }
input, textarea, select { font: inherit; color: inherit; }

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: 0.01ms !important; animation-iteration-count: 1 !important; transition-duration: 0.01ms !important; }
}

body {
  font-family: var(--font-sans);
  font-size: var(--fs-medium);
  line-height: var(--lh-body);
  font-weight: var(--fw-regular);
  color: var(--text-primary);
  background: var(--bg-primary);
  -webkit-font-smoothing: antialiased;
}

h1, .h1 { font-family: var(--font-sans); font-size: var(--fs-h1); line-height: var(--lh-snug); font-weight: var(--fw-bold); text-wrap: balance; }
h2, .h2 { font-family: var(--font-sans); font-size: var(--fs-h2); line-height: var(--lh-tight); font-weight: var(--fw-bold); letter-spacing: -0.01em; }
h3, .h3 { font-family: var(--font-sans); font-size: var(--fs-h3); line-height: var(--lh-heading); font-weight: var(--fw-bold); }
h4, .h4 { font-family: var(--font-sans); font-size: var(--fs-h4); line-height: var(--lh-snug); font-weight: var(--fw-bold); }
h5, h6, .h5 { font-family: var(--font-sans); font-size: var(--fs-h6); line-height: var(--lh-heading); font-weight: var(--fw-semibold); }

.container {
  width: 100%;
  max-width: var(--container-large);
  margin-inline: auto;
  padding-inline: var(--pad-global);
}
.container-xlarge { max-width: var(--container-xlarge); }

section { position: relative; }

/* ---------- Surfaces ---------- */
.surface-cream { background: var(--bg-primary); color: var(--text-primary); }
.surface-black { background: var(--bg-alternate); color: var(--text-secondary); }
.surface-purple { background: var(--purple); color: var(--white); }
.surface-gradient {
  background-color: var(--bg-alternate);
  background-image: linear-gradient(350deg, var(--purple), var(--black));
  color: var(--white);
  overflow: hidden;
}
.surface-hero {
  background-color: var(--bg-alternate);
  background-image: radial-gradient(ellipse 70% 60% at 80% 15%, rgba(93, 64, 189, 0.55), transparent 60%);
  color: var(--white);
  overflow: hidden;
}

.section-pad { padding-block: var(--pad-section-md); }
.section-pad-lg { padding-block: var(--pad-section-lg); }
.section-pad-sm { padding-block: var(--pad-section-sm); }
@media (max-width: 640px) {
  .section-pad, .section-pad-lg { padding-block: var(--pad-section-sm); }
}

/* ---------- Typography helpers ---------- */
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.6em;
  font-size: var(--fs-tagline);
  font-weight: var(--fw-medium);
  letter-spacing: 0.02em;
  text-transform: uppercase;
  line-height: var(--lh-loose);
  color: var(--highlight-purple-light);
  margin-bottom: var(--pad-section-sm) / 3;
  margin-bottom: 1rem;
}
.surface-cream .eyebrow { color: var(--highlight-purple-dark); }

.lede { font-size: var(--fs-large); color: var(--gray-darker); max-width: 46ch; }
.surface-black .lede, .surface-gradient .lede, .surface-hero .lede { color: rgba(255, 255, 255, 0.78); }

.section-head { max-width: 46rem; margin-bottom: var(--pad-section-sm); }
.section-head.center { margin-inline: auto; text-align: center; }
.section-head.center .lede { margin-inline: auto; }

/* ---------- Buttons (mirrors .button / a[data-wf--ui-button--button-type]) ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5em;
  padding: 0.5rem 1.5rem;
  border-radius: var(--radius-sm);
  font-weight: var(--fw-bold);
  font-size: var(--fs-medium);
  border: 1px solid transparent;
  white-space: nowrap;
  transition: background-color 0.3s var(--ease), color 0.3s var(--ease), border-color 0.3s var(--ease);
}

.btn-primary {
  background-color: var(--green);
  border-color: var(--green);
  color: var(--black);
}
.btn-primary .btn-text { transition: background-image 0.3s var(--ease), -webkit-text-fill-color 0.3s var(--ease); }
.btn-primary:hover {
  background-color: var(--black);
  border-color: var(--black);
}
.btn-primary:hover .btn-text {
  background-image: linear-gradient(270deg, var(--green), var(--green-light));
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.btn-secondary {
  background: transparent;
  border-color: var(--black);
  color: var(--black);
}
.btn-secondary:hover { background-color: var(--black); color: var(--white); }
.surface-black .btn-secondary, .surface-gradient .btn-secondary, .surface-hero .btn-secondary {
  border-color: rgba(255, 255, 255, 0.55);
  color: var(--white);
}
.surface-black .btn-secondary:hover, .surface-gradient .btn-secondary:hover, .surface-hero .btn-secondary:hover {
  background-color: var(--white);
  color: var(--black);
}

.btn-block { width: 100%; display: flex; }
.btn-sm { padding: 0.4rem 1.1rem; font-size: var(--fs-small); }

.cta-row { display: flex; flex-wrap: wrap; gap: 1rem; align-items: center; }

/* ---------- Version switcher (internal review only - see README) ---------- */
.version-bar {
  position: sticky;
  top: 0;
  z-index: 60;
  background: var(--gray-darkest);
  color: var(--gray-lightest);
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
}
.version-bar-inner {
  max-width: var(--container-xlarge);
  margin-inline: auto;
  padding: 0.6rem var(--pad-global);
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
}
.version-bar-label {
  font-size: var(--fs-small);
  color: rgba(255, 255, 255, 0.55);
  display: flex;
  align-items: center;
  gap: 0.5em;
}
.version-bar-label::before { content: "\1F9EA"; }
.version-bar-links { display: flex; gap: 0.5rem; }
.version-bar-links a {
  display: flex;
  flex-direction: column;
  line-height: 1.25;
  padding: 0.35rem 0.85rem;
  border-radius: var(--radius-sm);
  font-size: var(--fs-small);
  font-weight: var(--fw-semibold);
  color: rgba(255, 255, 255, 0.6);
  border: 1px solid transparent;
  transition: background-color 0.2s var(--ease), color 0.2s var(--ease), border-color 0.2s var(--ease);
}
.version-bar-links a span {
  font-size: var(--fs-tiny);
  font-weight: var(--fw-regular);
  color: rgba(255, 255, 255, 0.45);
}
.version-bar-links a:hover { border-color: rgba(255, 255, 255, 0.25); color: var(--white); }
.version-bar-links a.is-active {
  background: var(--green);
  color: var(--black);
}
.version-bar-links a.is-active span { color: rgba(16, 24, 32, 0.65); }

/* ---------- Header / navbar (mirrors .navbar) ---------- */
.site-header {
  position: sticky;
  top: var(--version-bar-h, 2.6rem);
  z-index: 50;
  background-color: var(--bg-alternate);
  color: var(--text-secondary);
  min-height: 5rem;
  box-shadow: var(--shadow-navbar);
}
.site-header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 5rem;
  gap: 1rem;
}
.brand { display: flex; align-items: center; gap: 0.6rem; }
.brand img { height: 1.5rem; width: auto; }
.brand .tagline-chip {
  font-size: var(--fs-tiny);
  color: rgba(255, 255, 255, 0.6);
  border-left: 1px solid rgba(255, 255, 255, 0.25);
  padding-left: 0.6rem;
  display: none;
}
@media (min-width: 640px) { .brand .tagline-chip { display: block; } }

/* ---------- Hero ---------- */
.hero { padding-block: 6rem 5rem; }
.hero-grid {
  display: grid;
  gap: 3rem;
  align-items: center;
}
@media (min-width: 960px) {
  .hero-grid { grid-template-columns: 1.05fr 0.95fr; gap: 4rem; }
  .hero { padding-block: 7rem 6rem; }
}
.hero-copy h1 { margin-bottom: 1.25rem; font-size: clamp(2rem, 1.6rem + 2vw, 3rem); }
.hero-copy .lede { max-width: 52ch; margin-bottom: 2rem; }

.hero-stats {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
  margin-top: 2.5rem;
  padding-top: 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.14);
}
@media (min-width: 560px) { .hero-stats { grid-template-columns: repeat(4, 1fr); } }
.stat .num { font-size: 1.5rem; font-weight: var(--fw-bold); color: var(--green); display: block; }
.stat .label { font-size: var(--fs-small); color: rgba(255, 255, 255, 0.65); }

/* ---------- Award badges (v3 only - above the fold, real G2/Latio badges) ---------- */
.award-strip {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 1.25rem;
  margin-top: 1.75rem;
}
.award-strip .award-label {
  font-size: var(--fs-tiny);
  font-weight: var(--fw-semibold);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: rgba(255, 255, 255, 0.45);
  margin-right: 0.25rem;
}
.award-strip img {
  height: 3rem;
  width: auto;
  border-radius: 6px;
}

.hero-panel {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--radius-lg);
  padding: 2rem;
}
.hero-panel-head { display: flex; justify-content: space-between; align-items: center; margin-bottom: 1.5rem; }
.hero-panel-head .tag {
  font-size: var(--fs-tiny);
  font-weight: var(--fw-bold);
  color: var(--green);
  background: rgba(75, 215, 131, 0.14);
  padding: 0.3em 0.8em;
  border-radius: 999px;
}
.proof-row { display: flex; align-items: flex-start; gap: 0.9rem; padding: 0.9rem 0; border-bottom: 1px solid rgba(255, 255, 255, 0.09); }
.proof-row:last-child { border-bottom: none; padding-bottom: 0; }
.proof-row .ico {
  flex: none; width: 2rem; height: 2rem; border-radius: var(--radius-sm);
  background: rgba(75, 215, 131, 0.16); color: var(--green);
  display: grid; place-items: center; font-weight: var(--fw-bold);
}
.proof-row strong { display: block; font-size: var(--fs-medium); }
.proof-row span { font-size: var(--fs-small); color: rgba(255, 255, 255, 0.65); }

/* ---------- Logo strip (mirrors .section_logo, purple-bg) ---------- */
.logo-strip { padding-block: 2.5rem; }
.logo-strip .logo-head {
  text-align: center;
  color: var(--white);
  margin-bottom: 1.75rem;
  font-size: var(--fs-h6);
}
.logo-row {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: clamp(1.5rem, 4vw, 3rem);
}
.logo-row img {
  height: 1.75rem;
  width: auto;
  filter: brightness(0) invert(1);
  opacity: 0.92;
}

/* ---------- Platform tabs with product screenshots (v2 only) ---------- */
.platform-tabs { padding-block: var(--pad-section-lg); }
.platform-tabs .section-head { color: var(--white); }
.platform-tabs .section-head .lede { color: rgba(255, 255, 255, 0.78); margin-inline: auto; }

.tab-pills {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.75rem;
  margin-bottom: 3rem;
}
.tab-pill {
  padding: 0.85rem 1.5rem;
  border-radius: var(--radius-sm);
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid var(--green);
  color: var(--green-light);
  font-weight: var(--fw-bold);
  font-size: var(--fs-regular);
  transition: background-color 0.25s var(--ease), color 0.25s var(--ease);
}
.tab-pill:hover { background: rgba(255, 255, 255, 0.12); }
.tab-pill.is-active {
  background: var(--purple);
  border-color: var(--purple-light);
  color: var(--white);
}

.tab-panel { display: none; }
.tab-panel.is-active {
  display: grid;
  gap: 3rem;
  align-items: center;
  grid-template-columns: 1fr;
}
@media (min-width: 900px) {
  .tab-panel.is-active { grid-template-columns: 0.8fr 1.2fr; }
}
.tab-panel-copy h3 { color: var(--white); font-size: var(--fs-h3); margin-bottom: 1rem; }
.tab-panel-copy p { color: rgba(255, 255, 255, 0.78); font-size: var(--fs-large); margin-bottom: 2rem; max-width: 34ch; }

.tab-panel-image {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: 0 30px 70px -20px rgba(7, 7, 15, 0.55);
  border: 1px solid rgba(255, 255, 255, 0.14);
  line-height: 0;
}
.tab-panel-image img { width: 100%; height: auto; display: block; }

/* ---------- Cards ---------- */
.grid-3 { display: grid; gap: 1.5rem; grid-template-columns: 1fr; }
@media (min-width: 780px) { .grid-3 { grid-template-columns: repeat(3, 1fr); } }
.grid-4 { display: grid; gap: 1.25rem; grid-template-columns: 1fr; }
@media (min-width: 640px) { .grid-4 { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 960px) { .grid-4 { grid-template-columns: repeat(4, 1fr); } }
.grid-6 { display: grid; gap: 1rem; grid-template-columns: repeat(2, 1fr); }
@media (min-width: 640px) { .grid-6 { grid-template-columns: repeat(3, 1fr); } }
@media (min-width: 960px) { .grid-6 { grid-template-columns: repeat(6, 1fr); } }
.grid-7 { display: grid; gap: 1.25rem; grid-template-columns: 1fr; }
@media (min-width: 640px) { .grid-7 { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1100px) { .grid-7 { grid-template-columns: repeat(4, 1fr); } }

.card {
  background: var(--white);
  border: 1px solid var(--gray-default);
  border-radius: var(--radius-lg);
  padding: 2rem;
}
.card .step { font-size: var(--fs-small); font-weight: var(--fw-bold); color: var(--green-darkest); letter-spacing: 0.06em; text-transform: uppercase; }
.card h3 { font-size: var(--fs-h6); margin-block: 0.6rem 0.5rem; }
.card p { color: var(--gray-darker); font-size: var(--fs-regular); }

.platform-tile {
  background: var(--white);
  border: 1px solid var(--gray-default);
  border-radius: var(--radius-lg);
  padding: 1.5rem;
  text-align: left;
}
.platform-tile .ico {
  width: 2.25rem; height: 2.25rem; border-radius: var(--radius-sm);
  background: var(--purple-lightest); color: var(--purple);
  display: grid; place-items: center; margin-bottom: 1rem; font-weight: var(--fw-bold);
}
.platform-tile h3 { font-size: var(--fs-medium); margin-bottom: 0.4em; }
.platform-tile p { font-size: var(--fs-small); color: var(--gray-darker); }
.platform-tile a.tile-link { font-size: var(--fs-small); font-weight: var(--fw-bold); color: var(--green-darkest); display: inline-block; margin-top: 0.75rem; }

/* ---------- Comparison table ---------- */
.compare-wrap {
  overflow-x: auto;
  border-radius: var(--radius-lg);
  border: 1px solid var(--gray-default);
  background: var(--white);
  box-shadow: var(--shadow-card);
}
table.compare { width: 100%; border-collapse: collapse; min-width: 640px; font-size: var(--fs-regular); }
table.compare th, table.compare td { padding: 1rem 1.5rem; text-align: left; border-bottom: 1px solid var(--gray-default); }
table.compare thead th {
  background: var(--black); color: var(--white);
  font-size: var(--fs-small); text-transform: uppercase; letter-spacing: 0.06em;
  position: sticky; top: 0;
}
table.compare thead th.highlight-col { background: var(--green-darkest); }
table.compare tbody th { font-weight: var(--fw-semibold); color: var(--text-primary); white-space: nowrap; }
table.compare td { text-align: center; color: var(--gray-darker); }
table.compare td.highlight-col { background: var(--purple-lightest); }
table.compare tbody tr:last-child td, table.compare tbody tr:last-child th { border-bottom: none; }
.mark-yes { color: var(--green-darkest); font-weight: var(--fw-bold); }
.mark-partial { color: var(--text-tertiary-orange); font-weight: var(--fw-semibold); }
.mark-no { color: var(--gray-darker); }
.compare-foot { margin-top: 1rem; font-size: var(--fs-small); color: var(--gray-darker); }

/* ---------- Integration checker (v3 only) ---------- */
.integration-checker { max-width: 40rem; margin-inline: auto; }
.integration-search-box {
  position: relative;
  margin-bottom: 1.5rem;
}
.integration-search-box input {
  width: 100%;
  padding: 1rem 1.25rem 1rem 3rem;
  border-radius: var(--radius-sm);
  border: 1.5px solid var(--gray-default);
  background: var(--white);
  color: var(--text-primary);
  font-size: var(--fs-medium);
}
.integration-search-box input:focus {
  outline: none;
  border-color: var(--green-darkest);
  box-shadow: 0 0 0 3px rgba(75, 215, 131, 0.25);
}
.integration-search-box::before {
  content: "\1F50D";
  position: absolute;
  left: 1.1rem;
  top: 50%;
  transform: translateY(-50%);
  font-size: 1.1rem;
  opacity: 0.5;
}
.integration-count {
  text-align: center;
  font-size: var(--fs-small);
  color: var(--gray-darker);
  margin-bottom: 1.5rem;
}
.integration-count strong { color: var(--text-primary); }

.integration-results {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.75rem;
  min-height: 3.5rem;
}
@media (min-width: 560px) { .integration-results { grid-template-columns: repeat(3, 1fr); } }
.integration-result {
  display: flex;
  flex-direction: column;
  gap: 0.15rem;
  background: var(--white);
  border: 1px solid var(--gray-default);
  border-radius: var(--radius-sm);
  padding: 0.75rem 0.9rem;
}
.integration-result .name { font-size: var(--fs-regular); font-weight: var(--fw-semibold); }
.integration-result .category { font-size: var(--fs-tiny); color: var(--green-darkest); font-weight: var(--fw-semibold); }

.integration-empty {
  grid-column: 1 / -1;
  text-align: center;
  padding: 1.5rem 1rem;
  color: var(--gray-darker);
  font-size: var(--fs-regular);
}
.integration-empty strong { color: var(--text-primary); }

.integration-prompt {
  grid-column: 1 / -1;
  text-align: center;
  padding: 1rem;
  color: var(--gray-darker);
  font-size: var(--fs-small);
}

/* ---------- Stats ---------- */
.stats-grid { display: grid; gap: 1.5rem; grid-template-columns: 1fr; }
@media (min-width: 640px) { .stats-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 960px) { .stats-grid { grid-template-columns: repeat(4, 1fr); } }
.stat-card { text-align: left; }
.stat-card .num { font-size: clamp(2rem, 1.6rem + 1.5vw, 2.75rem); font-weight: var(--fw-bold); color: var(--text-primary); line-height: 1; margin-bottom: 0.6rem; display: block; }
.stat-card .num .dot { color: var(--green-darkest); }
.stat-card p { font-size: var(--fs-regular); color: var(--gray-darker); max-width: 22ch; }

/* ---------- Role / persona cards (black tiles on cream bg) ---------- */
.role-grid { display: grid; gap: 1.5rem; grid-template-columns: 1fr; }
@media (min-width: 860px) { .role-grid { grid-template-columns: repeat(3, 1fr); } }
.role-card {
  background: var(--black);
  color: var(--white);
  border-radius: var(--radius-lg);
  padding: 2.25rem;
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  transition: background-color 0.3s var(--ease);
}
.role-card .role-eyebrow { font-size: var(--fs-small); font-weight: var(--fw-bold); text-transform: uppercase; letter-spacing: 0.06em; color: var(--green-light); }
.role-card h3 { font-size: var(--fs-h5); }
.role-card ul { display: flex; flex-direction: column; gap: 0.9rem; }
.role-card li { display: flex; align-items: flex-start; gap: 0.75rem; font-size: var(--fs-regular); color: rgba(255, 255, 255, 0.85); }
.role-card li::before { content: "✓"; color: var(--green); font-weight: var(--fw-bold); flex: none; }
.role-card a { margin-top: auto; font-weight: var(--fw-bold); color: var(--green); font-size: var(--fs-small); }

/* ---------- Testimonials ---------- */
.testimonial-featured {
  background: var(--purple-lightest);
  border-radius: var(--radius-md);
  padding: 2.5rem;
  margin-bottom: 1.5rem;
}
.testimonial-featured blockquote { font-size: var(--fs-h6); line-height: var(--lh-heading); font-weight: var(--fw-medium); margin-bottom: 1.25rem; }
.testimonial-featured cite { font-style: normal; font-size: var(--fs-regular); font-weight: var(--fw-bold); }
.testimonial-featured .org { color: var(--gray-darker); font-weight: var(--fw-regular); }

.testimonial-grid { display: grid; gap: 1.25rem; grid-template-columns: 1fr; }
@media (min-width: 780px) { .testimonial-grid { grid-template-columns: repeat(3, 1fr); } }
.testimonial-card { background: var(--purple-lightest); border-radius: var(--radius-md); padding: 1.75rem; display: flex; flex-direction: column; gap: 1rem; }
.testimonial-card blockquote { font-size: var(--fs-regular); line-height: var(--lh-body); }
.testimonial-card cite { font-style: normal; font-size: var(--fs-small); font-weight: var(--fw-bold); margin-top: auto; }
.testimonial-card .org { display: block; color: var(--gray-darker); font-weight: var(--fw-regular); }

/* ---------- Industries strip ---------- */
.industry-card {
  background: var(--white);
  border: 1px solid var(--gray-default);
  border-radius: var(--radius-lg);
  padding: 1.5rem;
}
.industry-card h3 { font-size: var(--fs-medium); margin-bottom: 0.4rem; }
.industry-card p { font-size: var(--fs-small); color: var(--gray-darker); }

/* ---------- Final CTA band ---------- */
.cta-band { padding-block: var(--pad-section-lg); }
.cta-band .container { text-align: center; }
.cta-band h2 { margin-bottom: 1rem; }
.cta-band .lede { margin-inline: auto; margin-bottom: 2rem; }
.cta-band .cta-row { justify-content: center; margin-bottom: 2.5rem; }
.cta-checks {
  display: flex; flex-wrap: wrap; justify-content: center; gap: 1.5rem 2.5rem;
  font-size: var(--fs-small); color: rgba(255, 255, 255, 0.8);
}
.cta-checks span::before { content: "✓ "; color: var(--green); font-weight: var(--fw-bold); }

/* ---------- Lead form ---------- */
.form-wrap { max-width: 30rem; margin-inline: auto; margin-top: 2.5rem; text-align: left; }
.form-card {
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: var(--radius-lg);
  padding: 2rem;
}
.form-card h3 { margin-bottom: 0.3rem; color: var(--white); }
.form-card .lede { font-size: var(--fs-regular); margin-bottom: 1.5rem; }
.field { margin-bottom: 1rem; }
.field label { display: block; font-size: var(--fs-small); font-weight: var(--fw-semibold); color: rgba(255, 255, 255, 0.75); margin-bottom: 0.4em; }
.field input, .field select {
  width: 100%; padding: 0.75em 0.9em; border-radius: var(--radius-sm);
  border: 1px solid rgba(255, 255, 255, 0.2); background: rgba(255, 255, 255, 0.06); color: var(--white);
}
.field input::placeholder { color: rgba(255, 255, 255, 0.4); }
.field input:focus, .field select:focus { outline: none; border-color: var(--green); box-shadow: 0 0 0 3px rgba(75, 215, 131, 0.25); }
.field-row { display: grid; gap: 1rem; grid-template-columns: 1fr; }
@media (min-width: 480px) { .field-row { grid-template-columns: 1fr 1fr; } }
.form-fineprint { font-size: var(--fs-tiny); color: rgba(255, 255, 255, 0.5); margin-top: 1rem; }
.form-success {
  display: none; align-items: center; gap: 0.6rem; padding: 1rem; border-radius: var(--radius-sm);
  background: rgba(75, 215, 131, 0.14); color: var(--green-light); font-size: var(--fs-regular); font-weight: var(--fw-semibold);
}
.form-success.is-visible { display: flex; }
.form-card.is-submitted form { display: none; }

/* ---------- Footer (mirrors .footer) ---------- */
.site-footer { background: var(--bg-alternate); color: var(--gray-lightest); padding-block: 4rem 2rem; }
.footer-top {
  display: grid; gap: 3rem;
  grid-template-columns: 1fr;
  padding-bottom: 3rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
  margin-bottom: 2rem;
}
@media (min-width: 780px) { .footer-top { grid-template-columns: 0.9fr 2fr; } }
.footer-brand-col { display: flex; flex-direction: column; gap: 1.25rem; max-width: 18rem; }
.footer-brand-col img { height: 1.5rem; filter: brightness(0) invert(1); }
.footer-brand-col p { font-size: var(--fs-small); color: rgba(255, 255, 255, 0.55); line-height: var(--lh-body); }
.footer-social { display: flex; gap: 1rem; }
.footer-social a { color: var(--green); font-size: var(--fs-small); }
.footer-social a:hover { color: var(--green-light); }

.footer-menu { display: grid; gap: 2rem; grid-template-columns: repeat(2, 1fr); }
@media (min-width: 640px) { .footer-menu { grid-template-columns: repeat(4, 1fr); } }
.footer-col-title { font-size: var(--fs-small); font-weight: var(--fw-bold); color: var(--white); margin-bottom: 1rem; }
.footer-links { display: flex; flex-direction: column; gap: 0.55rem; }
.footer-links a { font-size: var(--fs-small); color: rgba(255, 255, 255, 0.6); transition: color 0.3s var(--ease); }
.footer-links a:hover { color: var(--green-light); }

.footer-bottom { display: flex; flex-wrap: wrap; justify-content: space-between; align-items: center; gap: 1rem; }
.footer-legal { display: flex; flex-wrap: wrap; gap: 1.25rem; font-size: var(--fs-small); font-weight: var(--fw-bold); }
.footer-legal a:hover { color: var(--green-light); }
.footer-copyright { font-size: var(--fs-small); color: rgba(255, 255, 255, 0.55); }

/* ---------- Utility ---------- */
.text-center { text-align: center; }
.visually-hidden {
  position: absolute;
  width: 1px; height: 1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
  white-space: nowrap;
}
.skip-link {
  position: absolute; left: -9999px; top: 0;
  background: var(--green); color: var(--black);
  padding: 0.75em 1em; z-index: 100; border-radius: 0 0 8px 0; font-weight: var(--fw-bold);
}
.skip-link:focus { left: 0; }
