/* Aqurio — components.css (deferred load)
 * All page sections, deeply aligned with the Netlify wireframe reference.
 */

/* ───────── MEGA-MENU ───────── */
.mega-menu {
  position: absolute;
  top: calc(100% + 8px);
  left: 50%;
  transform: translateX(-50%) translateY(-10px);
  width: 960px;
  max-width: calc(100vw - 32px);
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-lg);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 0.3s ease, transform 0.3s ease, visibility 0.3s;
  overflow: hidden;
  z-index: 400;
}
.nav__item.is-open .mega-menu {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translateX(-50%) translateY(0);
}
/* Reset white-space: nowrap inherited from .nav__item */
.mega-menu p,
.mega-menu h3,
.mega-menu span,
.mega-menu a,
.mega-menu div { white-space: normal; }

.mega-menu__body { display: flex; }
.mega-menu__sidebar {
  width: 240px;
  flex-shrink: 0;
  background: var(--color-fill);
  padding: 28px 24px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.mega-menu__sidebar h3 {
  font-size: 14px;
  font-weight: var(--weight-bold) !important;
  color: var(--color-text);
  line-height: 1.3;
  margin-bottom: 8px;
}
.mega-menu__sidebar p {
  font-size: 12px;
  color: var(--color-text-muted);
  line-height: 1.45;
  margin-bottom: 12px;
}
.mega-menu__sidebar-link {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  font-size: 13px;
  font-weight: var(--weight-semibold);
  color: var(--color-text);
  margin-bottom: 8px;
}
.mega-menu__sidebar-list { display: flex; flex-direction: column; gap: 6px; margin-top: 8px; }
.mega-menu__sidebar-list a {
  font-size: 12px;
  color: var(--color-text);
  display: inline-flex;
  align-items: center;
  gap: 4px;
}

.mega-menu__right {
  flex: 1;
  padding: 28px 24px 20px;
  display: flex;
  flex-direction: column;
  gap: 20px;
  min-width: 0;
}
.mega-menu__cols {
  display: flex;
  gap: 28px;
}
.mega-menu__col {
  flex: 1 1 0;
  min-width: 0;
  padding-right: 24px;
  border-right: 1px solid var(--color-border);
}
.mega-menu__col:last-child { border-right: none; padding-right: 0; }
.mega-menu__col-label {
  font-size: 9px;
  font-weight: var(--weight-bold);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--color-text-label);
  margin-bottom: 14px;
}
.mega-menu__item { margin-bottom: 16px; }
.mega-menu__item:last-child { margin-bottom: 0; }
.mega-menu__item a {
  display: block;
  transition: transform 150ms ease;
}
.mega-menu__item a:hover { transform: translateX(3px); }
.mega-menu__item a:hover .mega-menu__item-title { color: var(--color-coral); }
.mega-menu__item-title {
  display: block;
  font-size: 13px;
  font-weight: var(--weight-semibold);
  color: var(--color-text);
  line-height: 1.35;
  margin-bottom: 4px;
  transition: color 150ms ease;
}
.mega-menu__item-desc {
  display: block;
  font-size: 11px;
  color: var(--color-text-muted);
  line-height: 1.45;
}
.mega-menu__cta-bar {
  border-top: 1px solid var(--color-fill);
  padding-top: 12px;
  font-size: 12px;
}
.mega-menu__cta-bar a {
  color: var(--color-text);
  font-weight: var(--weight-semibold);
}
.mega-menu__cta-bar a:hover { text-decoration: none; }

.mega-menu__promo { display: flex; flex-direction: column; gap: 10px; }
.mega-menu__promo-img {
  width: 100%;
  aspect-ratio: 4 / 3;
  border-radius: 8px;
  background: var(--color-coral);
  opacity: 0.6;
  position: relative;
}
.mega-menu__promo-title {
  font-size: 13px;
  font-weight: var(--weight-semibold);
  color: var(--color-text);
  line-height: 1.3;
}
.mega-menu__promo-desc {
  font-size: 11px;
  color: var(--color-text-muted);
  line-height: 1.4;
}
.mega-menu__promo-link {
  font-size: 12px;
  font-weight: var(--weight-semibold);
  color: var(--color-text);
  align-self: flex-start;
  border-bottom: 1.5px solid var(--color-fill-dark);
  padding-bottom: 2px;
}

@media (max-width: 1100px) {
  .mega-menu { width: 720px; }
  .mega-menu__cols { flex-wrap: wrap; }
  .mega-menu__col { flex: 1 1 45%; border-right: none; padding-right: 0; }
}

/* ───────── GLOBAL MOBILE PADDING (≤480px) ───────── */
@media (max-width: 480px) {
  .section { padding: 56px 16px; }
  .value-prop { padding: 72px 16px; }
  .container { padding: 0 16px; }
}

/* ───────── SECTION BASE ───────── */
.section { padding: 96px 24px; }
.section__inner { max-width: var(--container-max); margin: 0 auto; }
.section--surface { background: var(--color-surface); }
.section--bg { background: var(--color-bg); }
.section--dark { background: var(--color-bg-dark-2); color: var(--color-text-on-dark); }
/* ── Base eyebrow style — applied to every __eyebrow element sitewide ── */
[class*="__eyebrow"] {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--color-coral);
  margin-bottom: 16px;
}
[class*="__eyebrow"]::before {
  content: "";
  width: 10px;
  height: 10px;
  background: var(--color-coral);
  flex-shrink: 0;
}
.section__eyebrow {
}
.section--dark .section__eyebrow { color: var(--color-coral); }
.section__heading {
  font-size: clamp(28px, 3.4vw, 42px);
  line-height: 1.15;
  letter-spacing: -0.02em;
  font-weight: var(--weight-bold);
  color: var(--color-text);
  max-width: 22ch;
  margin-bottom: 16px;
}
.section--dark .section__heading { color: #fff; }
.section__heading em { color: var(--color-coral); font-style: italic; font-weight: inherit; }
.section__sub {
  font-size: 16px;
  line-height: 1.55;
  color: var(--color-text-muted);
  max-width: 60ch;
}
.section--dark .section__sub { color: rgba(255, 255, 255, 0.65); }

/* ───────── SOCIAL PROOF (between hero and overlap) ───────── */
.proof {
  background: var(--color-surface);
  padding: 48px 24px;
  border-bottom: 1px solid var(--color-border);
}
.proof__label {
  text-align: center;
  font-size: 10px;
  font-weight: var(--weight-bold);
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--color-text-label);
  margin-bottom: 28px;
}
.proof__carousel {
  display: flex;
  align-items: center;
  gap: 48px;
  overflow: hidden;
  mask-image: linear-gradient(to right, transparent 0%, #000 8%, #000 92%, transparent 100%);
  -webkit-mask-image: linear-gradient(to right, transparent 0%, #000 8%, #000 92%, transparent 100%);
  margin-bottom: 28px;
  padding: 12px 0;
}
.proof__track {
  display: flex;
  align-items: center;
  gap: 48px;
  width: max-content;
  animation: proof-marquee 30s linear infinite;
}
.proof__carousel:hover .proof__track { animation-play-state: paused; }
@keyframes proof-marquee {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}
.proof__logo {
  flex-shrink: 0;
  height: 32px;
  padding: 0 18px;
  background: var(--color-fill);
  border-radius: 4px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 11px;
  font-weight: var(--weight-semibold);
  letter-spacing: 0.04em;
  color: var(--color-text-muted);
}

/* ───────── HERO TRUST MARQUEE (on dark hero bg, below CTAs) ───────── */
.hero-trust {
  margin-top: 88px;
  margin-bottom: 64px;
  align-self: stretch;
  width: 100%;
  text-align: center;
}
.hero-trust__label {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  font-size: 14px;
  font-weight: var(--weight-bold);
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #ffffff;
  margin-bottom: 36px;
}
.hero-trust__label strong { color: #FF5A6F; }
.hero-trust__stars { color: #FFC857; letter-spacing: 0.1em; font-size: 22px; }
.hero-trust__star { opacity: 0.7; animation: star-pulse 5s infinite ease-in-out; }
.hero-trust__star:nth-child(1) { animation-delay: 0s; }
.hero-trust__star:nth-child(2) { animation-delay: 1s; }
.hero-trust__star:nth-child(3) { animation-delay: 2s; }
.hero-trust__star:nth-child(4) { animation-delay: 3s; }
.hero-trust__star:nth-child(5) { animation-delay: 4s; }
@keyframes star-pulse {
  0%, 100% { opacity: 0.7; }
  10% { opacity: 1; }
  20% { opacity: 0.7; }
}
.hero-trust__tagline { display: block; font-size: 14px !important; font-weight: 600 !important; text-decoration: none; border-bottom: none; color: #ffffff !important; }
.hero-trust__carousel {
  width: 100%;
  max-width: 720px;
  margin-left: auto;
  margin-right: auto;
  overflow: hidden;
  mask-image: linear-gradient(to right, transparent 0%, #000 8%, #000 92%, transparent 100%);
  -webkit-mask-image: linear-gradient(to right, transparent 0%, #000 8%, #000 92%, transparent 100%);
}
.hero-trust__track {
  display: flex;
  align-items: center;
  gap: 56px;
  width: max-content;
  animation: hero-trust-marquee 28s linear infinite;
}
.hero-trust__carousel:hover .hero-trust__track { animation-play-state: paused; }
@keyframes hero-trust-marquee {
  from { transform: translateX(0); }
  to   { transform: translateX(-33.3333%); }
}
.hero-trust__logo {
  flex-shrink: 0;
  height: 24px;
  width: auto;
  max-width: 140px;
  object-fit: contain;
  filter: brightness(0) invert(1);
  opacity: 0.85;
  transition: opacity var(--t-fast);
}
.hero-trust__logo:hover { opacity: 1; }

/* ───────── CLIMATE & MARKET FORCES ───────── */
.climate {
  background: #0A1A1F;
  padding: 160px 40px 96px;
}
.climate__inner {
  max-width: var(--container-max);
  margin: 0 auto;
}
.climate__header {
  text-align: center;
  max-width: 760px;
  margin: 0 auto 64px;
}
.climate__eyebrow {
}
.climate__eyebrow::before {
  content: "";
  width: 10px;
  height: 10px;
  background: var(--color-coral);
  flex-shrink: 0;
}
.climate__headline {
  font-family: 'Lora', Georgia, serif;
  font-size: clamp(32px, 3.2vw, 48px);
  font-weight: 400;
  line-height: 1.2;
  color: #ffffff;
  margin-bottom: 24px;
}
.climate__subhead {
  font-size: 18px;
  line-height: 1.65;
  color: #9FBCC3;
  max-width: 680px;
  margin: 0 auto;
}
.climate__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2px;
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 16px;
  overflow: hidden;
}
.climate__card {
  background: #0F2C33;
  padding: 40px 44px;
  transition: background 0.2s ease;
  opacity: 0;
  transform: translateY(24px);
  transition: background 0.2s ease, opacity 0.6s ease, transform 0.6s cubic-bezier(0.22, 0.61, 0.36, 1);
}
.climate__card.is-visible {
  opacity: 1;
  transform: translateY(0);
}
.climate__card:hover {
  background: #133840;
}
.climate__card-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  background: rgba(255, 90, 111, 0.12);
  border-radius: 10px;
  color: var(--color-coral);
  margin-bottom: 20px;
  padding: 10px;
  flex-shrink: 0;
}
.climate__card-icon svg {
  width: 24px;
  height: 24px;
  stroke: var(--color-coral);
  stroke-width: 1.75;
}
.climate__card-title {
  font-family: 'Poppins', system-ui, sans-serif;
  font-size: 18px;
  font-weight: 600;
  color: #ffffff;
  margin-bottom: 14px;
  line-height: 1.3;
}
.climate__card-body {
  font-size: 15px;
  line-height: 1.7;
  color: #9FBCC3;
}

@media (max-width: 768px) {
  .climate { padding: 64px 24px; }
  .climate__grid { grid-template-columns: 1fr; }
  .climate__card { padding: 32px 28px; }
  .climate__subhead { font-size: 16px; }
}
@media (prefers-reduced-motion: reduce) {
  .climate__card,
  .problem-stats__item { opacity: 1; transform: none; transition: none; }
}

/* ───────── PROBLEM STATS ───────── */
.problem-stats {
  background: #F7F9FA;
  padding: 96px 40px;
}
.problem-stats__inner {
  max-width: var(--container-max);
  margin: 0 auto;
}
.problem-stats__header {
  margin-bottom: 48px;
}
.problem-stats__eyebrow {
}
.problem-stats__eyebrow::before {
  content: "";
  width: 10px;
  height: 10px;
  background: var(--color-coral);
  flex-shrink: 0;
}
.problem-stats__headline {
  font-family: 'Lora', Georgia, serif;
  font-size: clamp(28px, 2.8vw, 42px);
  font-weight: 400;
  line-height: 1.2;
  color: #0B1F24;
  max-width: 640px;
}
.problem-stats__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border: 1px solid #E6ECEF;
  border-radius: 12px;
  overflow: hidden;
  margin-bottom: 48px;
}
.problem-stats__item {
  padding: 36px 32px;
  border-right: 1px solid #E6ECEF;
  background: #ffffff;
  opacity: 0;
  transform: translateY(16px);
  transition: opacity 0.5s ease, transform 0.5s cubic-bezier(0.22, 0.61, 0.36, 1);
}
.problem-stats__item.is-visible {
  opacity: 1;
  transform: translateY(0);
}
.problem-stats__item:last-child {
  border-right: none;
}
.problem-stats__number {
  font-family: 'Lora', Georgia, serif;
  font-size: clamp(28px, 2.8vw, 40px);
  font-weight: 700;
  color: var(--color-mint-green);
  line-height: 1;
  margin-bottom: 12px;
}
.problem-stats__item--pivot .problem-stats__number {
  color: var(--color-mint-green);
}
.problem-stats__label {
  font-size: 15px;
  line-height: 1.55;
  color: #4F6B73;
}
.problem-stats__body {
  font-size: 15px;
  line-height: 1.7;
  color: #4F6B73;
  max-width: 880px;
  border-left: 3px solid var(--color-coral);
  padding-left: 24px;
}

@media (max-width: 960px) {
  .problem-stats__grid { grid-template-columns: repeat(2, 1fr); }
  .problem-stats__item:nth-child(2) { border-right: none; }
  .problem-stats__item:nth-child(1),
  .problem-stats__item:nth-child(2) { border-bottom: 1px solid #E6ECEF; }
}
@media (max-width: 600px) {
  .problem-stats { padding: 64px 24px; }
  .problem-stats__grid { grid-template-columns: 1fr; }
  .problem-stats__item { border-right: none; border-bottom: 1px solid #E6ECEF; }
  .problem-stats__item:last-child { border-bottom: none; }
}

/* ───────── SOLUTION INTRO ───────── */
.solution-intro {
  background: #ffffff;
  padding: 96px 40px;
  border-top: 1px solid #E6ECEF;
}
.solution-intro__inner {
  max-width: var(--container-max);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1.6fr;
  gap: 80px;
  align-items: start;
}
.solution-intro__left {
  position: sticky;
  top: 120px;
}
.solution-intro__eyebrow {
}
.solution-intro__eyebrow::before {
  content: "";
  width: 10px;
  height: 10px;
  background: var(--color-coral);
  flex-shrink: 0;
}
.solution-intro__headline {
  font-family: 'Lora', Georgia, serif;
  font-size: clamp(26px, 2.6vw, 38px);
  font-weight: 400;
  line-height: 1.25;
  color: #0B1F24;
  margin-bottom: 16px;
}
.solution-intro__subtext {
  font-size: 16px;
  line-height: 1.65;
  color: #4F6B73;
  margin-bottom: 36px;
}

/* Cards column */
.solution-intro__cards {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.solution-intro__card,
a.solution-intro__card,
a.solution-intro__card:hover,
a.solution-intro__card:visited,
a.solution-intro__card:focus {
  display: flex;
  flex-direction: column;
  padding: 28px 28px 24px;
  text-decoration: none;
  background: #ffffff;
  border: 1px solid #D8E2E6;
  border-bottom: 1px solid #D8E2E6 !important;
  border-radius: 12px;
  transition: border-color 0.2s ease, box-shadow 0.2s ease, transform 0.2s ease;
}
.solution-intro__card:hover {
  border-color: #C8D8DC;
  box-shadow: 0 4px 20px rgba(0,0,0,0.06);
  transform: translateY(-6px);
}

.solution-intro__card-header {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 14px;
}
.solution-intro__icon-wrap {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border-radius: 10px;
  flex-shrink: 0;
}
.solution-intro__icon-wrap svg {
  width: 20px;
  height: 20px;
  stroke-width: 1.75;
}
.solution-intro__icon-wrap img {
  width: 36px;
  height: 36px;
}
.solution-intro__card--agent .solution-intro__icon-wrap    { background: #F5F6F8; }
.solution-intro__card--engage .solution-intro__icon-wrap   { background: #F5F6F8; }
.solution-intro__card--analytics .solution-intro__icon-wrap { background: #F5F6F8; }

.solution-intro__badge {
  display: inline-block;
  font-size: 11px;
  font-weight: var(--weight-semibold);
  padding: 4px 10px;
  border-radius: var(--radius-pill);
  background: rgba(46, 196, 182, 0.12);
  color: #1a9e92;
  border: 1px solid rgba(46, 196, 182, 0.35);
  margin-bottom: 10px;
}
.solution-intro__name {
  font-family: 'Poppins', system-ui, sans-serif;
  font-size: 18px;
  font-weight: 700;
  color: #0B1F24;
  line-height: 1.2;
}
.solution-intro__name sup {
  font-size: 10px;
  font-weight: 500;
  vertical-align: super;
  opacity: 0.5;
}
.solution-intro__desc {
  font-size: 15px;
  line-height: 1.7;
  color: #4F6B73;
  margin-bottom: 16px;
  padding-left: 60px;
}
.solution-intro__link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 14px;
  font-weight: 600;
  padding-left: 60px;
  transition: gap 0.2s ease;
}
.solution-intro__card--agent .solution-intro__link    { color: #FF5A6F; }
.solution-intro__card--engage .solution-intro__link   { color: #2EC4B6; }
.solution-intro__card--analytics .solution-intro__link { color: #5B5FFF; }
.solution-intro__card:hover .solution-intro__link { gap: 10px; }

@media (max-width: 960px) {
  .solution-intro__inner { grid-template-columns: 1fr; gap: 48px; }
  .solution-intro__left { position: static; }
  .solution-intro__desc,
  .solution-intro__link { padding-left: 60px; }
}
@media (max-width: 600px) {
  .solution-intro { padding: 64px 24px; }
  .solution-intro__desc,
  .solution-intro__link { padding-left: 0; }
}
@media (prefers-reduced-motion: reduce) {
  .solution-intro__card { transition: none; }
}

/* ───────── OVERLAP CTA CARD (event promo) ───────── */
/* Card straddles the section boundary above (hero) and below (stats) */
.overlap {
  background: transparent;
  padding: 0 24px;
  margin-top: -80px;
  margin-bottom: 0;
  position: relative;
  z-index: 5;
  pointer-events: none;
}
.overlap__card {
  max-width: 980px;
  margin: 0 auto;
  background: #fff;
  border-radius: 6px;
  box-shadow: var(--shadow-lg);
  display: flex;
  align-items: center;
  gap: 24px;
  padding: 16px 32px 16px 0;
  border: none;
  pointer-events: auto;
  overflow: hidden;
}
.overlap__eyebrow {
}
.overlap__title {
  font-size: 20px;
  font-weight: 500 !important;
  line-height: 1.2;
  margin: 0 0 8px;
  padding-top: 0;
  color: var(--color-text);
}
.overlap__text { flex: 1; }
.overlap__body {
  font-size: 16px;
  color: var(--color-text-muted);
  line-height: 1.55;
  margin: 0;
}
.overlap__cta { flex-shrink: 0; padding-top: 16px; padding-bottom: 16px; }
.overlap__icon {
  flex-shrink: 0;
  width: 140px;
  height: 100px;
  border-radius: 6px;
  border-top-left-radius: 0;
  border-bottom-left-radius: 0;
  background: var(--gradient-core);
  display: flex;
  align-items: center;
  justify-content: center;
}
.overlap__icon svg { width: 48px; height: 48px; }

@media (max-width: 720px) {
  .overlap__card { flex-direction: column; align-items: flex-start; padding: 24px; }
  .overlap__cta { width: 100%; }
}

/* ───────── STATS STRIP (dark teal band — slice v02) ───────── */
.stats {
  background: #053944;
  color: var(--color-text-on-dark);
  padding: 48px 24px;
}
.stats__row {
  max-width: var(--container-max);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
}
.stats__item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 8px;
  padding-left: 32px;
  border-left: 1px solid rgba(255, 255, 255, 0.14);
}
.stats__item:first-child {
  padding-left: 0;
  border-left: none;
}
.stats__value {
  font-size: clamp(36px, 3.6vw, 54px);
  font-weight: var(--weight-bold);
  line-height: 1;
  letter-spacing: -0.02em;
  color: #FF5A6F;
  flex-shrink: 0;
}
.stats__label {
  font-size: 16px;
  font-weight: 400;
  color: rgba(255,255,255,0.7);
  line-height: 1.4;
}
@media (max-width: 720px) {
  .stats__row { grid-template-columns: repeat(2, 1fr); gap: 32px 24px; }
  .stats__item:nth-child(3) { padding-left: 0; border-left: none; }
}
@media (max-width: 480px) {
  .stats { padding: 40px 16px; }
  .stats__item { padding-left: 16px; }
  .stats__item:first-child { padding-left: 0; }
  .stats__value { font-size: clamp(28px, 8vw, 42px); }
  .stats__label { font-size: 13px; }
}

/* ───────── VALUE PROPOSITION (calm replaceable filler — slice placeholder slot) ───────── */
.value-prop {
  background: transparent;
  padding: 120px var(--container-padding);
  text-align: center;
  scroll-margin-top: var(--nav-h);
}
.value-prop__inner {
  max-width: 880px;
  margin: 0 auto;
}
.value-prop__statement {
  font-family: var(--font-display, 'Lora', Georgia, serif);
  font-size: clamp(24px, 2.8vw, 34px);
  line-height: 1.4;
  letter-spacing: -0.01em;
  color: var(--color-text);
  font-weight: var(--weight-regular);
}
.value-prop__statement em {
  font-style: italic !important;
  color: inherit !important;
  font-weight: 400 !important;
}

/* ───────── PLATFORM REVEAL (scroll-pinned, 4 beats) ───────── */
.reveal {
  background: var(--color-surface);
  padding: 80px 0 40px;
}
.reveal__intro {
  max-width: var(--container-max);
  margin: 0 auto 24px;
  padding: 0 24px;
  text-align: left;
}
.reveal__eyebrow {
}
.reveal__eyebrow::before {
  content: "";
  width: 10px;
  height: 10px;
  background: var(--color-coral);
  flex-shrink: 0;
}
.reveal__intro h2 {
  font-size: clamp(28px, 3.4vw, 40px);
  line-height: 1.15;
  letter-spacing: -0.01em;
  font-weight: var(--weight-bold);
  color: var(--color-text);
  margin-bottom: 12px;
}
.reveal__intro h2 em { color: var(--color-coral); font-style: italic; font-weight: inherit; }
.reveal__intro p { font-size: 16px; color: var(--color-text-muted); line-height: 1.55; }

.reveal__grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: 80px;
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 24px;
  align-items: flex-start;
}
.reveal__beats { display: flex; flex-direction: column; }
.reveal__beat {
  min-height: calc(100vh - 108px);
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 18px;
  padding: 16px 0;
}
.reveal__step {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 11px;
  font-weight: var(--weight-bold);
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--color-text-muted);
}
.reveal__step-num {
  width: 24px; height: 24px;
  border: 1.5px solid var(--color-border);
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 11px;
  transition: all 0.35s ease;
}
.reveal__beat.is-active .reveal__step-num {
  background: var(--color-bg-dark);
  color: #fff;
  border-color: var(--color-bg-dark);
}
.reveal__beat h3 {
  font-size: 36px;
  font-weight: var(--weight-bold);
  line-height: 1.1;
  color: var(--color-text);
  letter-spacing: -0.01em;
}
.reveal__beat p {
  font-size: 16px;
  line-height: 1.5;
  color: var(--color-text-muted);
  max-width: 480px;
}
.reveal__tags { display: flex; flex-wrap: wrap; gap: 6px; margin-top: 4px; }
.reveal__tag {
  font-size: 11px;
  font-weight: var(--weight-semibold);
  padding: 4px 10px;
  border-radius: var(--radius-pill);
  background: rgba(46, 196, 182, 0.12);
  color: #1a9e92;
  border: 1px solid rgba(46, 196, 182, 0.35);
}
.reveal__cta {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 14px;
  font-weight: var(--weight-semibold);
  align-self: flex-start;
  margin-top: 8px;
  border-bottom: none;
  text-decoration: none !important;
}

.reveal__stage {
  position: sticky;
  top: 108px;
  height: calc(100vh - 108px);
  display: flex;
  align-items: center;
  justify-content: center;
}
.reveal__frame-wrap {
  position: relative;
  width: 100%;
  height: min(640px, calc(100vh - 180px));
  min-height: 460px;
  max-width: 520px;
  margin: 0 auto;
}
.reveal__frame {
  position: absolute;
  inset: 0;
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-xl);
  padding: 24px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  opacity: 0;
  transform: translateY(20px) scale(0.98);
  transition: opacity 0.55s ease, transform 0.55s ease;
  pointer-events: none;
}
.reveal__frame.is-active { opacity: 1; transform: translateY(0) scale(1); pointer-events: auto; }
.reveal__frame-chrome {
  display: flex;
  align-items: center;
  gap: 6px;
  padding-bottom: 14px;
  border-bottom: 1px solid var(--color-surface-3);
}
.reveal__frame-chrome .dot { width: 10px; height: 10px; border-radius: 50%; background: var(--color-fill); }
.reveal__frame-chrome .url {
  margin-left: 12px;
  font-size: 11px;
  color: var(--color-text-muted);
  font-family: var(--font-mono);
  letter-spacing: 0.04em;
}

/* Frame 1 — Incoming call */
.frame-call { display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 18px; flex: 1; text-align: center; padding: 24px 12px; }
.frame-call__avatar {
  width: 84px; height: 84px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--color-surface-3), var(--color-fill));
  border: 2px solid var(--color-border);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 30px;
  color: var(--color-text-muted);
  position: relative;
}
.frame-call__avatar::before,
.frame-call__avatar::after {
  content: "";
  position: absolute;
  inset: -10px;
  border-radius: 50%;
  border: 2px solid var(--color-coral);
  opacity: 0;
  animation: frame-pulse 1.8s ease-out infinite;
}
.frame-call__avatar::after { animation-delay: 0.9s; }
@keyframes frame-pulse {
  0% { transform: scale(0.9); opacity: 0.7; }
  80% { transform: scale(1.4); opacity: 0; }
  100% { transform: scale(1.4); opacity: 0; }
}
.frame-call__caller { font-size: 18px; font-weight: var(--weight-semibold); color: var(--color-text); }
.frame-call__meta { font-size: 12px; color: var(--color-text-muted); }
.frame-call__meta .live-dot {
  display: inline-block;
  width: 8px; height: 8px;
  background: var(--color-coral);
  border-radius: 50%;
  margin-right: 6px;
  animation: frame-blink 1.2s ease-in-out infinite;
  vertical-align: middle;
}
@keyframes frame-blink { 0%, 100% { opacity: 0.35; } 50% { opacity: 1; } }
.frame-waveform { display: flex; align-items: center; justify-content: center; gap: 4px; height: 36px; }
.frame-waveform span {
  width: 3px;
  background: var(--color-coral);
  border-radius: 2px;
  animation: frame-wave 1s ease-in-out infinite;
}
.frame-waveform span:nth-child(1) { animation-delay: 0s; height: 30%; }
.frame-waveform span:nth-child(2) { animation-delay: 0.1s; height: 60%; }
.frame-waveform span:nth-child(3) { animation-delay: 0.2s; height: 90%; }
.frame-waveform span:nth-child(4) { animation-delay: 0.3s; height: 70%; }
.frame-waveform span:nth-child(5) { animation-delay: 0.4s; height: 40%; }
.frame-waveform span:nth-child(6) { animation-delay: 0.5s; height: 75%; }
.frame-waveform span:nth-child(7) { animation-delay: 0.6s; height: 50%; }
@keyframes frame-wave {
  0%, 100% { transform: scaleY(1); }
  50%      { transform: scaleY(1.6); }
}

/* Frame 2 — Chat transcript */
.frame-chat { flex: 1; display: flex; flex-direction: column; gap: 10px; padding: 8px 4px; overflow-y: auto; }
.frame-chat__msg {
  max-width: 80%;
  padding: 10px 14px;
  border-radius: 14px;
  font-size: 13px;
  line-height: 1.4;
  opacity: 0;
  transform: translateY(8px);
  transition: opacity 0.3s ease, transform 0.3s ease;
}
.frame-chat__msg.show { opacity: 1; transform: translateY(0); }
.frame-chat__msg.from-agent {
  align-self: flex-start;
  background: var(--color-surface-3);
  color: var(--color-text);
  border-bottom-left-radius: 4px;
}
.frame-chat__msg.from-patient {
  align-self: flex-end;
  background: var(--color-bg-dark);
  color: #fff;
  border-bottom-right-radius: 4px;
}
.frame-chat__typing {
  align-self: flex-start;
  background: var(--color-surface-3);
  padding: 12px 14px;
  border-radius: 14px;
  border-bottom-left-radius: 4px;
  display: inline-flex;
  gap: 4px;
  opacity: 0;
  transition: opacity 0.2s ease;
}
.frame-chat__typing.show { opacity: 1; }
.frame-chat__typing span {
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--color-text-muted);
  animation: typing-dot 1.2s infinite;
}
.frame-chat__typing span:nth-child(2) { animation-delay: 0.2s; }
.frame-chat__typing span:nth-child(3) { animation-delay: 0.4s; }
@keyframes typing-dot {
  0%, 60%, 100% { opacity: 0.3; transform: translateY(0); }
  30%           { opacity: 1; transform: translateY(-3px); }
}

/* Frame 3 — SmartEngage feed */
.frame-engage { flex: 1; display: flex; flex-direction: column; gap: 6px; padding: 4px; overflow: hidden; }
.frame-engage__row {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 12px;
  border-radius: 10px;
  background: var(--color-surface-2);
  font-size: 12px;
  opacity: 0;
  transform: translateY(8px);
  transition: opacity 0.3s ease, transform 0.3s ease;
}
.frame-engage__row.show { opacity: 1; transform: translateY(0); }
.frame-engage__row-icon {
  width: 28px; height: 28px;
  border-radius: 8px;
  background: var(--color-fill);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--color-text-muted);
  flex-shrink: 0;
}
.frame-engage__row-name { font-weight: var(--weight-semibold); color: var(--color-text); }
.frame-engage__row-msg { color: var(--color-text-muted); flex: 1; min-width: 0; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
.frame-engage__row-time { font-size: 11px; color: var(--color-text-label); flex-shrink: 0; }

/* Frame 4 — Dashboard counters */
.frame-dash { flex: 1; display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.frame-dash__tile {
  padding: 16px;
  background: var(--color-surface-2);
  border-radius: 12px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 10px;
}
.frame-dash__tile-label {
  font-size: 10px;
  font-weight: var(--weight-bold);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--color-text-muted);
}
.frame-dash__tile-value {
  font-size: 28px;
  font-weight: var(--weight-bold);
  color: var(--color-text);
  letter-spacing: -0.02em;
  font-variant-numeric: tabular-nums;
}
.frame-dash__tile-trend {
  font-size: 11px;
  color: var(--color-mint);
  font-weight: var(--weight-semibold);
}
.frame-dash__tile.full-width { grid-column: 1 / -1; }
.frame-dash__chart {
  display: flex;
  align-items: flex-end;
  gap: 4px;
  height: 50px;
  margin-top: 8px;
}
.frame-dash__chart span {
  flex: 1;
  background: linear-gradient(to top, var(--color-coral), var(--color-yellow));
  border-radius: 3px 3px 0 0;
}

@media (max-width: 1000px) {
  .reveal__grid { grid-template-columns: 1fr; gap: 40px; }
  .reveal__beat { min-height: auto; padding: 32px 0; }
  .reveal__stage { position: relative; top: 0; height: auto; }
  .reveal__frame-wrap { height: 480px; }
}

/* ───────── SOLUTIONS (tabbed) ───────── */
.solutions {
  background: var(--color-surface-3);
  padding: 96px 24px;
}
.solutions__inner { max-width: var(--container-max); margin: 0 auto; }
.solutions__head { max-width: 720px; margin-bottom: 40px; }
.solutions__head h2 {
  font-size: clamp(28px, 3.4vw, 40px);
  line-height: 1.15;
  letter-spacing: -0.01em;
  font-weight: var(--weight-bold);
  color: var(--color-text);
  margin-bottom: 12px;
}
.solutions__head h2 em { color: var(--color-coral); font-style: italic; font-weight: inherit; }
.solutions__head p { font-size: 16px; color: var(--color-text-muted); line-height: 1.55; }
.solutions__tabs {
  display: flex;
  gap: 4px;
  border-bottom: 1px solid var(--color-border);
  margin-bottom: 32px;
  overflow-x: auto;
}
.solutions__tab {
  padding: 14px 18px;
  font-size: 13px;
  font-weight: var(--weight-semibold);
  color: var(--color-text-muted);
  border-bottom: 2px solid transparent;
  margin-bottom: -1px;
  cursor: pointer;
  white-space: nowrap;
  transition: color var(--t-fast), border-color var(--t-fast);
}
.solutions__tab:hover { color: var(--color-text); }
.solutions__tab.is-active { color: var(--color-text); border-bottom-color: var(--color-coral); }
.solutions__panel {
  display: none;
  grid-template-columns: 1fr 1.2fr;
  gap: 48px;
  align-items: stretch;
}
.solutions__panel.is-active { display: grid; }
.solutions__list { display: flex; flex-direction: column; gap: 8px; }
.solutions__list-item {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 14px 16px;
  background: #fff;
  border: 1px solid var(--color-border);
  border-radius: 10px;
  font-size: 13px;
  color: var(--color-text);
  cursor: pointer;
  transition: border-color var(--t-fast), transform var(--t-fast);
}
.solutions__list-item:hover { border-color: var(--color-coral); transform: translateX(2px); }
.solutions__list-dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  flex-shrink: 0;
}
.solutions__list-dot--purple { background: var(--color-violet); }
.solutions__list-dot--blue { background: var(--color-indigo); }
.solutions__list-dot--green { background: var(--color-mint); }
.solutions__list-dot--navy { background: var(--color-teal); }
.solutions__list-dot--coral { background: var(--color-coral); }
.solutions__list-item-arrow { margin-left: auto; opacity: 0.4; }

.solutions__detail {
  background: #fff;
  border-radius: 16px;
  padding: 32px;
  border: 1px solid var(--color-border);
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.solutions__detail h3 {
  font-size: 24px;
  font-weight: var(--weight-bold);
  line-height: 1.2;
  color: var(--color-text);
}
.solutions__detail p { font-size: 14px; color: var(--color-text-muted); line-height: 1.55; }
.solutions__detail-cta {
  align-self: flex-start;
  margin-top: 8px;
  font-size: 13px;
  font-weight: var(--weight-semibold);
  color: var(--color-text);
  border-bottom: 1.5px solid var(--color-fill-dark);
  padding-bottom: 2px;
}

@media (max-width: 800px) {
  .solutions__panel.is-active { grid-template-columns: 1fr; }
}

/* ───────── INTEGRATIONS (dark band, split layout) ───────── */
.integrations {
  background-color: var(--color-bg-dark-2);
  background-image: url('/images/integrations-partners.webp');
  background-repeat: no-repeat;
  background-position: right center;
  background-size: cover;
  color: var(--color-text-on-dark);
  padding: 80px 24px 180px;
  min-height: 640px;
}
.integrations__inner {
  max-width: var(--container-max);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 5fr 7fr;
  gap: 64px;
  align-items: start;
}
.integrations__copy { max-width: 56ch; }
.integrations__visual { display: none; }
.integrations__eyebrow {
}
.integrations__eyebrow::before {
  content: "";
  width: 10px;
  height: 10px;
  background: var(--color-coral);
  flex-shrink: 0;
}
.integrations__heading {
  font-size: clamp(28px, 3vw, 36px);
  line-height: 1.15;
  letter-spacing: -0.01em;
  font-weight: var(--weight-bold);
  color: #fff;
  margin-bottom: 16px;
}
.integrations__heading em { color: var(--color-coral); font-style: italic; font-weight: inherit; }
.integrations__sub {
  font-size: 16px;
  line-height: 1.55;
  color: rgba(255, 255, 255, 0.65);
  margin-bottom: 24px;
}
.integrations__cta {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 13px;
  font-weight: var(--weight-semibold);
  border-bottom: none;
  text-decoration: none !important;
}
.integrations__visual {
  position: relative;
  -webkit-mask-image: linear-gradient(to right, transparent 0%, #000 14%, #000 100%);
          mask-image: linear-gradient(to right, transparent 0%, #000 14%, #000 100%);
}
.integrations__img {
  display: block;
  width: 100%;
  height: auto;
  border-radius: 12px;
}

@media (max-width: 1080px) {
  .integrations__inner { grid-template-columns: 1fr; gap: 48px; }
  .integrations__visual {
    -webkit-mask-image: none;
            mask-image: none;
  }
}

@media (max-width: 768px) {
  .integrations {
    background-image:
      linear-gradient(rgba(8, 22, 28, 0.82), rgba(8, 22, 28, 0.82)),
      url('/images/integrations-partners.webp');
  }
}

/* ───────── TESTIMONIAL (slice v02 card layout) ───────── */
.testimonial {
  background: #ffffff;
  padding: 96px var(--container-padding) 120px;
  position: relative;
  overflow: visible;
  z-index: 1;
}
/* Shadow that fades out on left and right */
.testimonial::after {
  content: "";
  position: absolute;
  bottom: -8px;
  left: 2%;
  right: 2%;
  height: 8px;
  background: radial-gradient(ellipse at center, rgba(0,0,0,0.06) 0%, transparent 70%);
  pointer-events: none;
  z-index: 2;
}
/* Aqurio mark watermark behind the card */
.testimonial::before {
  content: "";
  position: absolute;
  top: 50%;
  left: -240px;
  transform: translateY(calc(-50% + 70px));
  width: 600px;
  height: 600px;
  background-image: url('/images/logo/aqurio-mark-color.svg');
  filter: brightness(0);
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
  opacity: 0.09;
  pointer-events: none;
  z-index: 0;
}
.testimonial__inner { position: relative; z-index: 1; }
.testimonial__inner {
  max-width: var(--container-max);
  margin: 0 auto;
}
.testimonial__head {
  text-align: left;
  margin-bottom: 56px;
}
.testimonial__eyebrow {
}
.testimonial__eyebrow::before {
  content: "";
  width: 10px;
  height: 10px;
  background: var(--color-coral);
  flex-shrink: 0;
}
.testimonial__title {
  font-size: clamp(28px, 3.4vw, 42px);
  font-weight: var(--weight-bold);
  letter-spacing: -0.015em;
  line-height: 1.15;
  color: var(--color-text);
}
.testimonial__title em {
  font-style: italic;
  color: var(--color-coral);
}
.testimonial__card {
  background: rgba(255, 255, 255, 0.7);
  border: none;
  border-radius: 8px;
  padding: 48px;
  display: grid;
  grid-template-columns: 1.5fr 1fr;
  gap: 48px;
  align-items: center;
  box-shadow: var(--shadow-lg);
}
.testimonial__card-body {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.testimonial__brand {
  font-size: 18px;
  font-weight: var(--weight-bold);
  letter-spacing: 0.18em;
  color: var(--color-teal);
  margin-bottom: 4px;
}
.testimonial__brand-sub {
  display: block;
  font-size: 10px;
  letter-spacing: 0.32em;
  margin-top: 2px;
  color: var(--color-text-muted);
}
.testimonial__brand-img {
  display: block;
  width: auto !important;
  height: auto;
  max-height: 56px;
  max-width: 132px;
  object-fit: contain;
  margin-bottom: 8px;
}
/* white-on-transparent logos need to be darkened to read on the light card */
.testimonial__brand-img--white { filter: brightness(0); }
.testimonial__quote {
  font-size: 18px;
  line-height: 1.5;
  color: var(--color-text-muted);
  font-weight: var(--weight-regular);
}
.testimonial__attribution {
  font-size: 14px;
  line-height: 1.5;
  color: var(--color-text-muted);
  text-align: right;
}
.testimonial__attribution strong {
  display: inline;
  font-weight: var(--weight-semibold);
  color: var(--color-text);
}
.testimonial__divider {
  border: none;
  height: 1px;
  background: var(--color-border);
  margin: 8px 0 4px;
}
.testimonial__stats {
  display: flex;
  gap: 32px;
  flex-wrap: wrap;
  margin-bottom: 4px;
}
.testimonial__stat {
  display: flex;
  align-items: center;
  gap: 12px;
}
.testimonial__stat-value {
  font-size: clamp(28px, 3vw, 38px);
  font-weight: var(--weight-bold);
  letter-spacing: -0.02em;
  color: #FF5A6F;
  line-height: 1;
}
.testimonial__stat-label {
  font-size: 12px;
  font-weight: var(--weight-bold);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--color-text);
  line-height: 1.2;
}
.testimonial__ctas {
  display: flex;
  gap: 24px;
  flex-wrap: wrap;
}
.testimonial__cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  font-weight: var(--weight-semibold);
  transition: color var(--t-fast);
}
.testimonial__cta svg {
  flex-shrink: 0;
  width: 14px;
  height: 14px;
}
.testimonial__photo {
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}
.testimonial__photo-frame {
  width: 100%;
  max-width: 320px;
  aspect-ratio: 7 / 8;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}
/* Organic teal blob removed */
.testimonial__photo-initials {
  font-size: 72px;
  font-weight: var(--weight-bold);
  color: rgba(255, 255, 255, 0.85);
  letter-spacing: 0.02em;
}
.testimonial__photo-img {
  position: relative;
  width: 100%;
  max-width: 320px;
  height: auto;
  display: block;
  z-index: 2;
}

/* ── Customer carousel: viewport spans full width, card stays ~1100px so neighbors peek ── */
.testimonial__carousel {
  position: relative;
  /* Break out of the 1100px container */
  width: 100vw;
  margin-left: calc(50% - 50vw);
  margin-right: calc(50% - 50vw);
}
.testimonial__viewport {
  overflow-x: hidden;
  overflow-y: visible;
  width: 100%;
  padding: 32px 0 56px 0;
}
.testimonial__track {
  display: flex;
  /* Dynamic padding centers the active card no matter the viewport size */
  padding-left: max(24px, calc((100vw - 1100px) / 2));
  padding-right: max(24px, calc((100vw - 1100px) / 2));
  gap: 32px;
  transition: transform 0.45s ease;
  will-change: transform;
}
.testimonial__track > .testimonial__card {
  flex: 0 0 min(1100px, calc(100vw - 48px));
  width: min(1100px, calc(100vw - 48px));
  max-width: 1100px;
  margin: 0;
}
.testimonial__dots {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin: 28px 0 20px;
}
.testimonial__dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(0, 0, 0, 0.20);
  border: none;
  padding: 0;
  cursor: pointer;
  transition: background var(--t-fast), transform var(--t-fast);
}
.testimonial__dot:hover { background: rgba(0, 0, 0, 0.4); }
.testimonial__dot.is-active { background: var(--color-coral); transform: scale(1.2); }

.testimonial__nav {
  display: flex;
  align-items: center;
  gap: 12px;
  max-width: 880px;
  margin: 0 auto;
}
.testimonial__nav-arrow {
  flex-shrink: 0;
  width: 32px;
  height: 32px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: transparent;
  border: none;
  color: var(--color-link);
  cursor: pointer;
  padding: 0;
}
.testimonial__nav-arrow:hover { color: #4E52E5; }
.testimonial__nav-arrow:disabled { opacity: 0.35; cursor: default; }
.testimonial__chevron {
  display: inline-block;
  width: 10px;
  height: 10px;
  border-right: 2px solid currentColor;
  border-bottom: 2px solid currentColor;
}
.testimonial__chevron--prev { transform: rotate(135deg); margin-left: 4px; }
.testimonial__chevron--next { transform: rotate(-45deg); margin-right: 4px; }

.testimonial__nav-logos {
  display: flex;
  align-items: center;
  flex: 1;
  min-width: 0;
  gap: 0;
  overflow-x: auto;
  scroll-behavior: smooth;
  scrollbar-width: none;
  -ms-overflow-style: none;
}
.testimonial__nav-logos::-webkit-scrollbar { display: none; }
.testimonial__nav-logo {
  flex: 0 0 25%;
  width: 25%;
  height: 44px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: transparent;
  border: none;
  padding: 4px 12px;
  cursor: pointer;
  opacity: 0.5;
  transition: opacity var(--t-fast);
}
.testimonial__nav-logo img {
  max-height: 28px;
  max-width: 100%;
  width: auto;
  height: auto;
  object-fit: contain;
  filter: grayscale(1) brightness(0);
}
.testimonial__nav-logo:hover { opacity: 0.85; }
.testimonial__nav-logo.is-active { opacity: 1; }
@media (max-width: 960px) {
  .testimonial__card { grid-template-columns: 1fr; padding: 32px; gap: 32px; }
  .testimonial__photo { order: -1; }
  .testimonial__photo-frame { max-width: 200px; }
  .testimonial__stats { flex-direction: column; gap: 16px; }
}
@media (max-width: 600px) {
  .testimonial__card { padding: 24px 20px; gap: 24px; }
  .testimonial__quote { font-size: 16px; }
  .testimonial { padding: 64px var(--container-padding) 80px; }
}
@media (max-width: 480px) {
  .testimonial__card { padding: 20px 16px; }
  .testimonial__nav { gap: 8px; }
}

/* ───────── CUSTOMER STORIES (asymmetric) ───────── */
.stories {
  background: var(--color-bg);
  padding: 96px 24px;
}
.stories__inner { max-width: var(--container-max); margin: 0 auto; }
.stories__head { max-width: 720px; margin-bottom: 40px; }
.stories__eyebrow {
}
.stories__head h2 {
  font-size: clamp(28px, 3.4vw, 40px);
  line-height: 1.15;
  letter-spacing: -0.01em;
  font-weight: var(--weight-bold);
  color: var(--color-text);
  margin-bottom: 12px;
}
.stories__head h2 em { color: var(--color-coral); font-style: italic; font-weight: inherit; }
.stories__grid {
  display: grid;
  grid-template-columns: 3fr 2fr;
  gap: 24px;
}
.stories__featured {
  background: var(--color-bg-dark);
  color: #fff;
  border-radius: var(--radius-lg);
  padding: 40px;
  display: flex;
  flex-direction: column;
  gap: 20px;
  min-height: 360px;
}
.stories__featured-quote {
  font-size: clamp(20px, 1.8vw, 24px);
  line-height: 1.4;
  font-weight: var(--weight-medium);
  color: #fff;
}
.stories__featured-quote::before {
  content: "\201C";
  display: block;
  font-size: 56px;
  line-height: 1;
  color: var(--color-coral);
  margin-bottom: 8px;
}
.stories__featured-author { display: flex; align-items: center; gap: 14px; margin-top: auto; }
.stories__featured-avatar {
  width: 44px; height: 44px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--color-coral), var(--color-yellow));
  flex-shrink: 0;
}
.stories__featured-meta { display: flex; flex-direction: column; }
.stories__featured-name { font-weight: var(--weight-semibold); color: #fff; font-size: 14px; }
.stories__featured-role { font-size: 12px; color: rgba(255, 255, 255, 0.6); }
.stories__featured-ctas { display: flex; flex-wrap: wrap; gap: 20px; margin-top: 4px; }
.stories__featured-cta {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 13px;
  font-weight: var(--weight-semibold);
  color: #fff;
  padding-bottom: 2px;
  border-bottom: 1.5px solid var(--color-coral);
}
.stories__featured-cta--alt { color: rgba(255, 255, 255, 0.7); border-bottom-color: rgba(255, 255, 255, 0.25); }
.stories__stats { display: flex; flex-direction: column; gap: 16px; }
.stories__stat {
  background: #fff;
  border-radius: var(--radius-lg);
  padding: 24px;
  border: 1px solid var(--color-border);
  display: flex;
  flex-direction: column;
  gap: 6px;
  flex: 1;
}
.stories__stat-value {
  font-size: 36px;
  font-weight: var(--weight-bold);
  letter-spacing: -0.02em;
  color: var(--color-text);
  line-height: 1;
}
.stories__stat-label { font-size: 13px; color: var(--color-text-muted); line-height: 1.4; }

.stories__strip {
  margin-top: 32px;
  display: flex;
  gap: 16px;
  overflow-x: auto;
  padding-bottom: 8px;
}
.stories__card {
  flex-shrink: 0;
  width: 320px;
  background: #fff;
  border: 1px solid var(--color-border);
  border-radius: 12px;
  padding: 24px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.stories__card-quote { font-size: 14px; color: var(--color-text); line-height: 1.5; }
.stories__card-author { font-size: 12px; color: var(--color-text-muted); font-weight: var(--weight-semibold); }

.stories__proof-bar {
  margin-top: 32px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  padding: 20px 24px;
  background: #fff;
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
}
.stories__proof-item {
  display: flex;
  flex-direction: column;
  gap: 4px;
  padding: 4px 12px;
  border-left: 2px solid var(--color-coral, #FF5A6F);
}
.stories__proof-name {
  font-size: 12px;
  font-weight: var(--weight-bold);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--color-text);
}
.stories__proof-stat {
  font-size: 14px;
  color: var(--color-text-muted);
  line-height: 1.4;
}

@media (max-width: 900px) {
  .stories__grid { grid-template-columns: 1fr; }
  .stories__featured { min-height: auto; }
  .stories__proof-bar { grid-template-columns: 1fr; }
}

/* ───────── CUSTOMER STRIP (below testimonial) ───────── */
.customer-strip {
  background: var(--color-surface, #FFFFFF);
  padding: 0 var(--container-padding) 56px;
  border-top: none;
  border-bottom: 1px solid var(--color-border);
  margin-top: -32px;
}
.customer-strip__inner {
  max-width: var(--container-max);
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 32px;
}
.customer-strip__label {
  font-size: 12px;
  font-weight: var(--weight-bold);
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--color-text-muted);
  flex-shrink: 0;
}
.customer-strip__carousel {
  display: flex;
  align-items: center;
  gap: 12px;
  width: 100%;
  max-width: 640px;
  margin: 0 auto;
  min-width: 0;
}
.customer-strip__logos {
  display: flex;
  align-items: center;
  gap: 0;
  flex: 1;
  min-width: 0;
  overflow-x: auto;
  scroll-behavior: smooth;
  scroll-snap-type: x mandatory;
  scrollbar-width: none;
  -ms-overflow-style: none;
}
.customer-strip__logos::-webkit-scrollbar { display: none; }
/* Smooth momentum scrolling on iOS for touch swipe */
.customer-strip__logos { -webkit-overflow-scrolling: touch; touch-action: pan-x; }
.customer-strip__arrow {
  flex-shrink: 0;
  width: 28px;
  height: 28px;
  display: inline-flex !important;
  align-items: center;
  justify-content: center;
  background: transparent !important;
  border: none !important;
  color: var(--color-coral) !important;
  cursor: pointer;
  padding: 0;
  border-radius: 0;
  transition: opacity var(--t-fast), color var(--t-fast);
}
.customer-strip__arrow svg { display: block; }
.customer-strip__arrow:hover { color: #E04860 !important; }
.customer-strip__arrow:disabled { opacity: 0.35; cursor: default; }
.customer-strip__chevron {
  display: inline-block;
  width: 10px;
  height: 10px;
  border-right: 2px solid currentColor;
  border-bottom: 2px solid currentColor;
}
.customer-strip__chevron--prev { transform: rotate(135deg); margin-left: 4px; }
.customer-strip__chevron--next { transform: rotate(-45deg); margin-right: 4px; }
.customer-strip__logo {
  flex: 0 0 25%;
  height: 28px;
  width: 25%;
  max-width: none;
  object-fit: contain;
  scroll-snap-align: start;
  /* this strip sits on a light bg, so darken the white source logos */
  filter: brightness(0);
  opacity: 0.65;
  transition: opacity var(--t-fast);
}
.customer-strip__logo:hover { opacity: 1; }

/* ───────── FRESH PERSPECTIVES (resource teaser) ───────── */
.fresh-perspectives {
  background-color: #e6f2f4;
  padding: 96px var(--container-padding);
  position: relative;
}
.fresh-perspectives::before {
  content: "";
  position: absolute;
  inset: 0;
  background: url('/images/squiggly-line-bg.svg') center center / cover no-repeat;
  opacity: 0.6;
  pointer-events: none;
  z-index: 0;
}
.fresh-perspectives__inner { position: relative; z-index: 1; }
.fresh-perspectives__inner {
  max-width: var(--container-max);
  margin: 0 auto;
}
.fresh-perspectives__head {
  text-align: left;
  max-width: 800px;
  margin: 0 0 56px;
}
.fresh-perspectives__eyebrow {
}
.fresh-perspectives__eyebrow::before {
  content: "";
  width: 10px;
  height: 10px;
  background: var(--color-coral);
  flex-shrink: 0;
}
.fresh-perspectives__title {
  font-size: clamp(28px, 3.4vw, 42px);
  font-weight: var(--weight-bold);
  letter-spacing: -0.015em;
  line-height: 1.15;
  color: var(--color-text);
}
.fresh-perspectives__title em {
  font-style: italic;
  color: var(--color-coral);
}
.fresh-perspectives__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.fresh-perspectives__grid--2 { grid-template-columns: repeat(2, 1fr); max-width: 900px; }
.fresh-perspectives__card {
  background: var(--color-surface, #FFFFFF);
  border-radius: 6px;
  overflow: hidden;
  box-shadow: var(--shadow-md);
  display: flex;
  flex-direction: column;
  transition: transform var(--t-fast), box-shadow var(--t-fast);
}
.fresh-perspectives__card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-lg);
}
.fresh-perspectives__card-img {
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  display: block;
  background: var(--color-teal-tint);
}
.fresh-perspectives__card-body {
  padding: 24px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  flex: 1;
}
.fresh-perspectives__card-tag {
  align-self: flex-start;
  display: inline-block;
  background: var(--color-mint-green);
  color: #ffffff !important;
  border-radius: 20px;
  padding: 6px 14px;
  font-size: 12px;
  font-weight: var(--weight-bold);
  letter-spacing: 0.06em;
  text-transform: none;
}
/* Per-tag type colors */
.fresh-perspectives__card-tag[class*="tag"]:where([data-tag="ebook"], [data-tag="eBook"]) { background: var(--color-mint-green); }
.fresh-perspectives__card-tag-ebook { background: var(--color-mint-green); }
.fresh-perspectives__card-tag-report { background: var(--color-vivid-violet); }
.fresh-perspectives__card-tag-case { background: var(--color-electric-indigo); }
.fresh-perspectives__card-tag-playbook { background: var(--color-electric-indigo); }
.fresh-perspectives__card-tag-whitepaper { background: var(--color-mint-green); }
.fresh-perspectives__card-tag-webinar { background: var(--color-signal-yellow); color: #333333 !important; }
.fresh-perspectives__card-title {
  font-size: 18px;
  font-weight: var(--weight-bold);
  letter-spacing: -0.005em;
  line-height: 1.35;
  color: var(--color-text);
}
.fresh-perspectives__card-desc {
  font-size: 14px;
  line-height: 1.55;
  color: var(--color-text-muted);
  flex: 1;
}
.fresh-perspectives__card-link {
  font-size: 14px;
  font-weight: var(--weight-semibold);
  margin-top: 8px;
}
.fresh-perspectives__card-link:hover { text-decoration: none; }
.fresh-perspectives__more {
  text-align: left;
  margin-top: 48px;
}
.fresh-perspectives__more-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 15px;
  font-weight: var(--weight-semibold);
}
@media (max-width: 960px) {
  .fresh-perspectives__grid { grid-template-columns: 1fr; }
  .customer-strip__inner { flex-direction: column; align-items: flex-start; }
}
@media (max-width: 480px) {
  .fresh-perspectives { padding: 56px 16px; }
  .customer-strip { padding: 0 16px 40px; }
  .customer-strip__carousel { max-width: 100%; }
}

/* ───────── RESOURCES (cards with filter tabs) ───────── */
.resources {
  background: #e6f2f4;
  padding: 96px 24px;
}
.resources__inner { max-width: var(--container-max); margin: 0 auto; }
.resources__header {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 32px;
  margin-bottom: 32px;
  flex-wrap: wrap;
}
.resources__head { max-width: 560px; }
.resources__eyebrow {
}
.resources__head h2 {
  font-size: clamp(28px, 3.4vw, 40px);
  line-height: 1.15;
  letter-spacing: -0.01em;
  font-weight: var(--weight-bold);
  color: var(--color-text);
  margin-bottom: 12px;
}
.resources__head h2 em { color: var(--color-coral); font-style: italic; font-weight: inherit; }
.resources__head p { font-size: 16px; color: var(--color-text-muted); }
.resources__tabs { display: flex; gap: 8px; flex-wrap: wrap; }
.resources__tab {
  padding: 10px 18px;
  border-radius: var(--radius-pill);
  font-size: 13px;
  font-weight: var(--weight-semibold);
  color: var(--color-text-muted);
  background: var(--color-surface-3);
  border: 1px solid var(--color-border);
  cursor: pointer;
  transition: all var(--t-fast);
}
.resources__tab:hover { color: var(--color-text); }
.resources__tab.is-active { background: var(--color-text); color: #fff; border-color: var(--color-text); }
.resources__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.home-feature-card {
  background: #fff;
  border: 1px solid var(--color-border);
  border-radius: 14px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: transform var(--t-fast), box-shadow var(--t-fast);
}
.home-feature-card:hover { transform: translateY(-3px); box-shadow: var(--shadow-lg); }
.home-feature-card__img {
  aspect-ratio: 16 / 9;
  background: linear-gradient(135deg, var(--color-surface-3), var(--color-fill));
  position: relative;
}
.home-feature-card__body { padding: 20px; display: flex; flex-direction: column; gap: 10px; flex: 1; }
.home-feature-card__badge {
  display: inline-block;
  font-size: 10px;
  font-weight: var(--weight-bold);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--color-coral);
  align-self: flex-start;
}
.home-feature-card__title {
  font-size: 16px;
  font-weight: var(--weight-semibold);
  line-height: 1.35;
  color: var(--color-text);
}
.home-feature-card__desc {
  font-size: 13px;
  line-height: 1.5;
  color: var(--color-text-muted);
  flex: 1;
}
.home-feature-card__cta {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  font-size: 13px;
  font-weight: var(--weight-semibold);
  color: var(--color-text);
  margin-top: 4px;
}
.home-feature-card__cta::after { content: "→"; transition: transform var(--t-fast); }
.home-feature-card:hover .home-feature-card__cta::after { transform: translateX(3px); }
.resources__more { margin-top: 32px; text-align: center; }
.resources__more-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 14px;
  font-weight: var(--weight-semibold);
  color: var(--color-coral);
  padding-bottom: 2px;
  border-bottom: 1.5px solid rgba(255, 90, 111, 0.4);
}

@media (max-width: 900px) {
  .resources__grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 600px) {
  .resources__grid { grid-template-columns: 1fr; }
}

/* ───────── FINAL CTA ───────── */
.final-cta .btn--yellow { background: #ffc857; border-color: #ffc857; color: #333333; }
.final-cta .btn--yellow:hover { background: #FFB31A; border-color: #FFB31A; color: #333333; }
.final-cta .btn--yellow-outline { border-color: #ffc857; color: #ffc857; }
.final-cta .btn--yellow-outline:hover { background: transparent; border-color: #FFB31A; color: #FFB31A; }
/* .final-cta base styles merged with .sub-final above */
.final-cta__inner {
  position: relative;
  max-width: 980px;
  margin: 0 auto;
}
.final-cta__mark {
  display: block;
  width: 44px;
  height: 44px;
  margin: 0 auto 24px;
}
.final-cta__headline {
  font-size: clamp(24px, 3vw, 40px);
  font-weight: var(--weight-bold);
  line-height: 1.1;
  letter-spacing: -0.02em;
  margin-bottom: 20px;
  white-space: normal;
}
.final-cta__headline em { color: var(--color-coral); font-style: italic; font-weight: inherit; }
.final-cta__sub {
  font-size: 17px;
  line-height: 1.55;
  color: rgba(255, 255, 255, 0.72);
  max-width: 70ch;
  margin: 0 auto 32px;
}
.final-cta__ctas {
  display: flex;
  justify-content: center;
  gap: 14px;
  flex-wrap: wrap;
}

@media (max-width: 600px) {
  .final-cta__ctas,
  .sub-final__ctas,
  .subhero__ctas { flex-direction: column; align-items: stretch; }
  .final-cta__ctas .btn,
  .sub-final__ctas .btn,
  .subhero__ctas .btn { width: 100%; text-align: center; justify-content: center; }
}

/* ───────── FOOTER ───────── */
.footer {
  background: #0A1A1F;
  color: rgba(255, 255, 255, 0.65);
  padding: 64px 24px 24px;
}
.footer__inner { max-width: var(--container-max); margin: 0 auto; }
.footer__grid {
  display: grid;
  grid-template-columns: 1.6fr 1.2fr 1.2fr 1.2fr;
  gap: 40px 32px;
  padding-bottom: 40px;
  border-bottom: none;
}
.footer__brand-logo { display: inline-flex; align-items: center; margin-bottom: 16px; }
.footer__brand-logo img { display: block; height: 34px; width: auto; }
.footer__tagline { font-size: 14px; line-height: 1.55; margin-bottom: 20px; max-width: 32ch; }
.footer__newsletter-label { font-size: 16px; font-weight: var(--weight-semibold); color: #fff; margin-bottom: 6px; }
.footer__newsletter-helper {
  font-size: 12px;
  line-height: 1.5;
  color: var(--color-text-on-dark-muted, rgba(255, 255, 255, 0.55));
  margin: 4px 0 12px;
}
.footer__newsletter-form {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 24px;
  max-width: 360px;
}
.footer__newsletter-input {
  width: 100%;
  padding: 12px 16px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.5);
  border-radius: 10px;
  outline: none;
  color: #ffffff;
  font-size: 14px;
  font-family: inherit;
  transition: border-color var(--t-fast);
}
.footer__newsletter-input:focus { border-color: #ffffff; }
.footer__newsletter-input::placeholder { color: rgba(255, 255, 255, 0.6); }
.footer__newsletter-select {
  appearance: none;
  -webkit-appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 24 24' fill='none' stroke='%23ffffff' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 14px center;
  padding-right: 40px;
  cursor: pointer;
}
.footer__newsletter-select option { color: #0a0a0a; }
.footer__newsletter-consent {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 12px;
  line-height: 1.5;
  color: rgba(255, 255, 255, 0.6);
  cursor: pointer;
}
.footer__newsletter-consent input[type="checkbox"] {
  flex-shrink: 0;
  width: 18px;
  height: 18px;
  margin-top: 1px;
  accent-color: var(--color-yellow);
  cursor: pointer;
}
.footer__newsletter-btn {
  align-self: flex-end;
  padding: 10px 28px;
  background: transparent;
  border: 1px solid var(--color-yellow);
  border-radius: 9999px;
  color: var(--color-yellow);
  font-size: 14px;
  font-weight: var(--weight-semibold);
  cursor: pointer;
  transition: background var(--t-fast), color var(--t-fast);
  white-space: nowrap;
}
.footer__newsletter-btn:hover { background: var(--color-yellow); color: var(--color-text); }
.footer__newsletter-legal {
  font-size: 12px;
  color: var(--color-text-muted);
  margin-top: 8px;
  line-height: 1.5;
}
.footer__newsletter-legal a {
  color: var(--color-text-muted);
  text-decoration: none;
}
.footer__newsletter-legal a:hover {
  color: var(--color-yellow);
}
.footer__social { display: flex; gap: 10px; }
.footer__social a {
  width: 32px; height: 32px;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.05);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: rgba(255, 255, 255, 0.7);
  transition: background var(--t-fast), color var(--t-fast);
}
.footer__social a:hover { background: rgba(255, 255, 255, 0.12); color: #fff; }
.footer__social svg { width: 16px; height: 16px; fill: currentColor; }
.footer__col-label {
  font-size: 11px;
  font-weight: var(--weight-bold);
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #FF5A6F;
  margin-bottom: 18px;
}
/* second label within a column (e.g. Trust under Products) needs top spacing */
.footer__col ul + .footer__col-label { margin-top: 28px; }
.footer__col--newsletter {
  min-width: 0;
  background: #0F2D35;
  border-radius: 8px;
  padding: 28px;
  margin: -8px 0;
}
.footer__col--newsletter .footer__newsletter-form { max-width: none; }
.footer__col ul { display: flex; flex-direction: column; gap: 10px; }
.footer__col a { font-size: 14px; color: rgba(255, 255, 255, 0.65); transition: color var(--t-fast); }
.footer__col a:hover { color: #fff; }
/* Trust bar: social left, compliance right */
.footer__trust-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  padding: 20px 0;
  border-top: none;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  flex-wrap: wrap;
}
.footer__trust-social {
  display: flex;
  align-items: center;
  gap: 12px;
}
.footer__trust-social a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: 6px;
  background: rgba(255, 255, 255, 0.08);
  color: rgba(255, 255, 255, 0.7);
  transition: background var(--t-fast), color var(--t-fast);
}
.footer__trust-social a:hover { background: rgba(255, 255, 255, 0.16); color: #fff; }
.footer__trust-social svg { width: 16px; height: 16px; fill: currentColor; }
.footer__trust-compliance {
  display: flex;
  align-items: center;
  gap: 20px;
}
.footer__trust-label {
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #ffffff;
  line-height: 0.95;
  flex-shrink: 0;
  text-align: right;
}
.footer__compliance {
  padding: 20px 0;
  text-align: left;
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}
.footer__compliance-label {
  font-size: 11px;
  font-weight: var(--weight-bold);
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.4);
  margin-right: 8px;
}
.footer__compliance .badge {
  font-size: 10px;
  font-weight: var(--weight-bold);
  letter-spacing: 0.04em;
  color: rgba(255, 255, 255, 0.55);
  border: 1px solid rgba(255, 255, 255, 0.12);
  padding: 4px 10px;
  border-radius: var(--radius-pill);
}
.footer__compliance-img {
  width: 100%;
  max-width: 480px;
  height: auto;
  display: block;
}
.footer__bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
  padding-top: 20px;
  font-size: 13px;
  color: rgba(255, 255, 255, 0.45);
}
.footer__bottom-copy { display: inline-flex; align-items: center; gap: 10px; font-size: 13px !important; }
.footer__bottom-mark { height: 20px; width: auto; filter: brightness(0) invert(1); opacity: 0.5; }
.footer__legal { display: flex; gap: 12px; flex-wrap: wrap; }
.footer__legal a { color: rgba(255, 255, 255, 0.5); font-size: 13px !important; transition: color var(--t-fast); }
.footer__legal a:hover { color: #fff; }
.footer__region {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius-pill);
  padding: 6px 12px;
  font-size: 12px;
  color: rgba(255, 255, 255, 0.65);
  cursor: pointer;
}
.footer__region:hover { background: rgba(255, 255, 255, 0.08); color: #fff; }
.footer__region svg { width: 13px; height: 13px; flex-shrink: 0; }

@media (max-width: 1100px) {
  .footer__grid { grid-template-columns: repeat(3, 1fr); gap: 36px 32px; }
  .footer__col--newsletter { grid-column: 1 / -1; }
  .footer__col--newsletter .footer__newsletter-form { max-width: 420px; }
}
@media (max-width: 700px) {
  .footer__grid { grid-template-columns: 1fr 1fr; }
  .footer__col--newsletter { grid-column: 1 / -1; }
  .footer__bottom { flex-direction: column; align-items: flex-start; }
}
@media (max-width: 480px) {
  .footer__grid { grid-template-columns: 1fr; }
  .footer__col--newsletter { grid-column: auto; }
  .footer__trust-bar { flex-direction: column; align-items: flex-start; gap: 16px; }
  .footer__trust-compliance { flex-wrap: wrap; }
  .footer { padding: 48px 16px 24px; }
}

/* ───────── REVEAL UTILITY (scroll-triggered fade) ───────── */
.reveal-fade {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.reveal-fade.in-view { opacity: 1; transform: translateY(0); }

/* ═══════════════════════════════════════════════════════════════════
   SUBPAGE TEMPLATES (specialty + product)
   Placeholder copy phase — design tokens reused throughout.
   ═══════════════════════════════════════════════════════════════════ */

/* ───────── SUBPAGE: shared HERO (split) ───────── */
.subhero {
  position: relative;
  background: var(--gradient-depth);
  color: var(--color-text-on-dark);
  padding: 180px var(--container-padding) 80px;
  overflow: hidden;
}
@keyframes globe-spin {
  from { transform: translateY(-50%) rotate(0deg); }
  to   { transform: translateY(-50%) rotate(360deg); }
}
@keyframes product-hero-float {
  0%, 100% { transform: translateY(-50%); }
  50%       { transform: translateY(calc(-50% - 18px)); }
}
.subhero__globe {
  position: absolute;
  right: -785px;
  top: 50%;
  transform: translateY(-50%);
  height: 1100px;
  width: auto;
  opacity: 0.50;
  pointer-events: none;
  z-index: 0;
  animation: globe-spin 90s linear infinite;
}
.subhero__inner {
  max-width: var(--container-max);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  gap: 56px;
  align-items: center;
  position: relative;
  z-index: 1;
}
.subhero__chip {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 11px;
  font-weight: var(--weight-bold);
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--color-coral);
  border: 1px solid rgba(255, 90, 111, 0.4);
  background: rgba(255, 90, 111, 0.08);
  padding: 6px 14px;
  border-radius: var(--radius-pill);
  margin-bottom: 24px;
}
.subhero__headline {
  font-size: clamp(32px, 4vw, 50px);
  line-height: 1.05;
  font-weight: var(--weight-bold);
  letter-spacing: -0.02em;
  margin: 0 0 24px;
}
.subhero__headline em {
  font-style: italic;
  color: var(--color-coral);
}
.subhero__sub {
  font-size: 18px;
  line-height: 1.55;
  color: var(--color-text-on-dark-muted);
  margin: 0 0 32px;
  max-width: 520px;
}
.subhero__ctas {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-bottom: 28px;
}
.subhero__trust {
  display: none;
}
.subhero__visual {
  position: relative;
  aspect-ratio: 16 / 11;
  border-radius: var(--radius-lg);
  background: linear-gradient(135deg, rgba(46, 196, 182, 0.18), rgba(15, 76, 92, 0.4));
  border: 1px solid rgba(255, 255, 255, 0.08);
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}
.subhero__visual-chip {
  position: absolute;
  top: 14px;
  left: 14px;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 10px;
  font-weight: var(--weight-bold);
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #fff;
  background: rgba(0, 0, 0, 0.5);
  padding: 5px 10px;
  border-radius: var(--radius-pill);
}
.subhero__visual-chip::before {
  content: '';
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--color-coral);
  box-shadow: 0 0 8px rgba(255, 90, 111, 0.8);
}
.subhero__visual-chip--dur {
  left: auto;
  right: 14px;
  background: rgba(0, 0, 0, 0.4);
  color: rgba(255, 255, 255, 0.75);
}
.subhero__visual-chip--dur::before { display: none; }
.subhero__play {
  width: 76px;
  height: 76px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.18);
  border: 1px solid rgba(255, 255, 255, 0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  backdrop-filter: blur(6px);
}
.subhero__play svg {
  width: 28px;
  height: 28px;
  stroke: #fff;
  stroke-width: 1.75;
  fill: rgba(255, 255, 255, 0.15);
  margin-left: 3px; /* optical centering for play icon */
}
.subhero__play::before {
  content: '';
  position: absolute;
  inset: -8px;
  border-radius: 50%;
  border: 1px solid rgba(255, 90, 111, 0.5);
  animation: subhero-pulse 2.2s ease-out infinite;
}
@keyframes subhero-pulse {
  0% { transform: scale(0.9); opacity: 1; }
  100% { transform: scale(1.4); opacity: 0; }
}
.subhero__visual-caption {
  position: absolute;
  bottom: 14px;
  left: 14px;
  right: 14px;
  font-size: 12px;
  color: rgba(255, 255, 255, 0.65);
  font-weight: var(--weight-medium);
}
@media (max-width: 900px) {
  .subhero__inner { grid-template-columns: 1fr !important; gap: 36px; }
  .subhero { padding: 120px var(--container-padding) 56px; }
  .subhero__chip { font-size: 9px; padding: 4px 10px; }
  .subhero__headline { font-size: 32px; }
  .subhero__sub { font-size: 16px; }
}

/* ───────── SUBPAGE: TRUST BAND (slim logo strip) ───────── */
.trust-band {
  background: var(--color-surface);
  padding: 36px var(--container-padding);
  border-bottom: 1px solid var(--color-border);
}
.trust-band__inner {
  max-width: var(--container-max);
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 32px;
  flex-wrap: nowrap;
}
.trust-band__divider {
  width: 1px;
  align-self: center;
  height: 40px;
  background: var(--color-border);
  flex-shrink: 0;
}
[data-theme="dark"] .trust-band__divider {
  background: rgba(255,255,255,0.18);
}
.trust-band__copy {
  font-size: 11px;
  font-weight: var(--weight-semibold);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--color-text-muted);
  flex: 0 1 auto;
  text-align: left;
}
.trust-band__logos {
  display: flex;
  gap: 20px;
  flex-wrap: nowrap;
  align-items: center;
  flex: 1;
  justify-content: flex-start;
}
.trust-band__logo {
  font-family: var(--font-serif);
  font-style: italic;
  font-size: 14px;
  color: var(--color-text-muted);
  letter-spacing: -0.01em;
  opacity: 0.7;
  white-space: nowrap;
}
img.trust-band__logo {
  height: 26px;
  width: auto;
  display: block;
  font-style: normal;
  filter: brightness(0) opacity(0.45);
}
[data-theme="dark"].trust-band {
  background: var(--color-surface-dark);
  border-bottom-color: rgba(255,255,255,0.08);
}
[data-theme="dark"] .trust-band__copy {
  color: var(--color-text-on-dark);
}
[data-theme="dark"] img.trust-band__logo {
  filter: brightness(0) invert(1);
  opacity: 1;
}
[data-theme="dark"] .trust-band__logo {
  color: #ffffff;
  opacity: 1;
  font-style: normal;
}
.trust-band__copy em {
  color: var(--color-coral);
  font-style: normal;
}

@media (max-width: 900px) {
  .trust-band__copy { display: none; }
  .trust-band__logos { justify-content: center; }
}

/* ───────── SUBPAGE: PILLARS (3-card grid) ───────── */
.sub-pillars {
  background: var(--color-bg);
  padding: 96px var(--container-padding);
}
.sub-pillars__inner {
  max-width: var(--container-max);
  margin: 0 auto;
}
.sub-pillars__head {
  text-align: center;
  max-width: 780px;
  margin: 0 auto 56px;
}
.sub-pillars__eyebrow {
}
.sub-pillars__head h2 {
  font-size: clamp(28px, 3.6vw, 44px);
  line-height: 1.15;
  font-weight: var(--weight-bold);
  letter-spacing: -0.01em;
  margin: 0 0 16px;
}
.sub-pillars__head h2 em { font-style: italic; color: var(--color-coral); }
.sub-pillars__head p {
  font-size: 17px;
  line-height: 1.6;
  color: var(--color-text-muted);
  margin: 0;
}
.sub-pillars__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.sub-pillars__grid--4 { grid-template-columns: repeat(4, 1fr); }
.sub-pillar {
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  padding: 36px 28px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  transition: transform var(--t-fast), box-shadow var(--t-fast);
}
.sub-pillar:hover { transform: translateY(-3px); box-shadow: var(--shadow-lg); }
.sub-pillar .btn { align-self: flex-start; margin-top: auto; }
.sub-pillar__icon {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  background: var(--color-coral);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-weight: var(--weight-bold);
  font-size: 20px;
  margin-bottom: 8px;
}
.sub-pillar__icon:has(img) {
  background: transparent;
}
.sub-pillar__icon img {
  width: 48px;
  height: 48px;
}
.sub-pillar h3 {
  font-size: 22px;
  line-height: 1.25;
  font-weight: var(--weight-bold);
  margin: 0;
  color: var(--color-text);
}
.sub-pillar p {
  font-size: 15px;
  line-height: 1.6;
  color: var(--color-text-muted);
  margin: 0;
}
/* ============================================
   PRODUCT CARDS
   ============================================ */
.product-card {
  background: #fff;
  border: 1px solid #E5E7EB;
  border-radius: 16px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.product-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.10);
}
.product-card__header {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 36px 32px;
}
.product-card__header--analytics { background: #EEEEFF; }
.product-card__header--agent     { background: #FFF5EE; }
.product-card__header--engage    { background: #EDFAF9; }
.product-card__lockup {
  height: 36px;
  width: auto;
}
.product-card__body {
  padding: 28px;
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.product-card__body h3 {
  font-size: 18px;
  font-weight: var(--weight-bold);
  color: var(--color-text-dark);
  margin: 0;
  line-height: 1.3;
}
.product-card__body p {
  font-size: 15px;
  line-height: 1.6;
  color: var(--color-text-muted);
  margin: 0;
  flex: 1;
}
.product-card__body .sub-pillar__stat {
  margin-top: 0;
}
.product-card__body a {
  font-size: 14px;
  font-weight: var(--weight-semibold);
  margin-top: 4px;
}

.sub-pillar__stat {
  margin-top: auto;
  padding-top: 16px;
  border-top: 1px solid var(--color-border);
  font-size: 13px;
  color: var(--color-teal);
  font-weight: var(--weight-semibold);
}
.sub-pillars__cta {
  margin-top: 48px;
  text-align: center;
}
.sub-pillars__cta-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--color-teal);
  font-weight: var(--weight-semibold);
  text-decoration: none;
  border-bottom: 1px solid currentColor;
  padding-bottom: 2px;
}
@media (max-width: 900px) {
  .sub-pillars__grid { grid-template-columns: 1fr; }
  .sub-pillars { padding: 64px var(--container-padding); }
}

/* ───────── SUBPAGE: JOURNEY (horizontal stages) ───────── */
.sub-journey {
  background: var(--color-surface);
  padding: 96px var(--container-padding);
}
.sub-journey__inner {
  max-width: var(--container-max);
  margin: 0 auto;
}
.sub-journey__head {
  text-align: center;
  max-width: 720px;
  margin: 0 auto 64px;
}
.sub-journey__head h2 {
  font-size: clamp(28px, 3.6vw, 44px);
  line-height: 1.15;
  font-weight: var(--weight-bold);
  margin: 0 0 16px;
  letter-spacing: -0.01em;
}
.sub-journey__head h2 em { font-style: italic; color: var(--color-coral); }
.sub-journey__head p { color: var(--color-text-muted); font-size: 17px; margin: 0; }
.sub-journey__track {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 16px;
  position: relative;
}
.sub-journey__track::before {
  content: '';
  position: absolute;
  top: 24px;
  left: 8%;
  right: 8%;
  height: 2px;
  background: var(--color-coral);
  z-index: 0;
}
.sub-journey__node {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  z-index: 1;
}
.sub-journey__num {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--color-surface);
  border: 2px solid var(--color-coral);
  color: var(--color-coral);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: var(--weight-bold);
  font-size: 17px;
  margin-bottom: 14px;
  transition: transform var(--t-base), background var(--t-base), color var(--t-base);
}
.sub-journey__node:hover .sub-journey__num {
  background: var(--color-coral);
  color: #fff;
  transform: scale(1.1);
}
.sub-journey__node h4 {
  font-size: 14px;
  font-weight: var(--weight-bold);
  margin: 0 0 6px;
  color: var(--color-text);
}
.sub-journey__node p {
  font-size: 12px;
  line-height: 1.5;
  color: var(--color-text-muted);
  margin: 0;
}
.sub-journey__callout {
  margin-top: 56px;
  background: var(--color-bg);
  border-radius: var(--radius-lg);
  padding: 28px;
  font-size: 15px;
  line-height: 1.6;
  color: var(--color-text);
  text-align: center;
}
.sub-journey__callout b { color: var(--color-coral); }
@media (max-width: 900px) {
  .sub-journey__track { grid-template-columns: 1fr; gap: 28px; }
  .sub-journey__track::before { display: none; }
  .sub-journey__node { flex-direction: row; text-align: left; gap: 16px; align-items: flex-start; }
  .sub-journey__num { flex-shrink: 0; margin-bottom: 0; }
  .sub-journey { padding: 64px var(--container-padding); }
}

/* ───────── SUBPAGE: USE CASES (tabbed split panel) ───────── */
.sub-uc {
  background: var(--color-bg);
  padding: 96px var(--container-padding);
}
.sub-uc__inner {
  max-width: var(--container-max);
  margin: 0 auto;
}
.sub-uc__head {
  text-align: center;
  max-width: 720px;
  margin: 0 auto 36px;
}
.sub-uc__head h2 {
  font-size: clamp(28px, 3.6vw, 44px);
  line-height: 1.15;
  font-weight: var(--weight-bold);
  margin: 0;
  letter-spacing: -0.01em;
  text-wrap: balance;
}
.sub-uc__head h2 em { font-style: italic; color: var(--color-coral); display: block; }
.sub-uc__tabs {
  display: flex;
  gap: 8px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 32px;
}
.sub-uc__tab {
  border: 1px solid var(--color-border);
  background: var(--color-surface);
  color: var(--color-text);
  padding: 10px 22px;
  border-radius: var(--radius-pill);
  font-family: inherit;
  font-size: 14px;
  font-weight: var(--weight-semibold);
  cursor: pointer;
  transition: all var(--t-base);
}
.sub-uc__tab:hover { border-color: var(--color-coral); color: var(--color-coral); }
.sub-uc__tab.is-active {
  background: var(--color-teal);
  border-color: var(--color-teal);
  color: #fff;
}
.sub-uc__panel {
  display: none;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
  background: var(--color-surface);
  border-radius: var(--radius-lg);
  padding: 40px;
}
.sub-uc__panel.is-active { display: grid; }
.sub-uc__panel-label {
  font-size: 11px;
  font-weight: var(--weight-bold);
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--color-coral);
  margin-bottom: 12px;
  display: block;
}
.sub-uc__panel h3 {
  font-size: 26px;
  line-height: 1.2;
  font-weight: var(--weight-bold);
  margin: 0 0 16px;
}
.sub-uc__panel p {
  font-size: 15px;
  line-height: 1.6;
  color: var(--color-text-muted);
  margin: 0 0 20px;
}
.sub-uc__panel-list {
  list-style: none;
  padding: 0;
  margin: 0 0 24px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.sub-uc__panel-list li {
  position: relative;
  padding-left: 22px;
  font-size: 14px;
  color: var(--color-text);
  line-height: 1.5;
}
.sub-uc__panel-list li::before {
  content: '→';
  position: absolute;
  left: 0;
  color: var(--color-coral);
  font-weight: var(--weight-bold);
}
.sub-uc__diagram {
  background: var(--color-bg);
  border-radius: var(--radius-md);
  padding: 28px;
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.sub-uc__node {
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  padding: 14px 18px;
  font-size: 13px;
  font-weight: var(--weight-semibold);
  color: var(--color-text);
  display: flex;
  align-items: center;
  gap: 10px;
}
.sub-uc__node::before {
  content: '';
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--color-coral);
  flex-shrink: 0;
}
.sub-uc__arrow {
  align-self: center;
  color: var(--color-text-muted);
  font-size: 14px;
}
@media (max-width: 900px) {
  .sub-uc__panel { grid-template-columns: 1fr; padding: 28px; }
  .sub-uc { padding: 64px var(--container-padding); }
}

/* ───────── SUBPAGE: CUSTOMER STORIES (carousel-ish) ───────── */
.sub-stories {
  background: #0f2c33;
  padding: 96px var(--container-padding);
}
.sub-stories__inner { max-width: var(--container-max); margin: 0 auto; }
.sub-stories__head {
  text-align: left;
  max-width: 720px;
  margin: 0 0 48px;
}
.sub-stories__head h2 {
  font-size: clamp(28px, 3.6vw, 44px);
  line-height: 1.15;
  font-weight: var(--weight-bold);
  color: #ffffff;
  margin: 0 0 12px;
  letter-spacing: -0.01em;
}
.sub-stories__head h2 em { font-style: italic; color: var(--color-coral); }
.sub-stories__head p { color: rgba(255,255,255,0.65); font-size: 16px; margin: 0; }
.sub-stories__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}
.sub-story {
  display: grid;
  grid-template-columns: 1fr 1fr;
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: var(--color-surface);
  min-height: 280px;
}
.sub-story__quote {
  background: var(--color-surface);
  padding: 32px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.sub-story__quote-text {
  font-size: 15px;
  line-height: 1.55;
  font-weight: var(--weight-medium);
  color: var(--color-text);
  margin: 0 0 20px;
}
.sub-story__author {
  font-size: 13px;
  color: var(--color-text-muted);
  border-top: 1px solid var(--color-border);
  padding-top: 14px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}
.sub-story__author-info { display: flex; flex-direction: column; gap: 2px; text-align: right; font-family: var(--font-display); }
.sub-story__author-info b { color: var(--color-text); font-weight: var(--weight-semibold); font-size: 12px; }
.sub-story__author-info span { font-size: 12px; color: var(--color-text-muted); font-style: italic; }
.sub-story__logo {
  height: 28px;
  width: auto;
  object-fit: contain;
  opacity: 0.75;
  flex-shrink: 0;
  border-left: 1px solid var(--color-border);
  padding-left: 16px;
}
.sub-story__outcome {
  background: #F7F9FA;
  position: relative;
  padding: 32px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 20px;
}
.sub-story__outcome::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 14px;
  background: linear-gradient(to right, rgba(0,0,0,0.07), transparent);
  mask-image: linear-gradient(to bottom, transparent 0%, black 20%, black 80%, transparent 100%);
  -webkit-mask-image: linear-gradient(to bottom, transparent 0%, black 20%, black 80%, transparent 100%);
  pointer-events: none;
}
.sub-story__stat {
  display: flex;
  flex-direction: column;
}
.sub-story__stat b {
  font-size: 32px;
  font-weight: var(--weight-bold);
  font-family: var(--font-display);
  color: var(--color-coral);
  line-height: 1;
}
.sub-story__stat span {
  font-size: 11px;
  color: var(--color-text-muted);
  margin-top: 4px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}
@media (max-width: 1024px) {
  .sub-stories__grid { grid-template-columns: 1fr; }
}
@media (max-width: 700px) {
  .sub-story { grid-template-columns: 1fr; }
  .sub-stories { padding: 64px var(--container-padding); }
}

/* ───────── SUBPAGE: RESOURCES (3-card grid) ───────── */
.sub-resources {
  background: var(--color-bg);
  padding: 96px var(--container-padding);
  position: relative;
}
.sub-resources::before {
  content: "";
  position: absolute;
  inset: 0;
  background: url('/images/squiggly-line-bg.svg') center center / cover no-repeat;
  opacity: 0.6;
  pointer-events: none;
  z-index: 0;
}
.sub-resources__inner { position: relative; z-index: 1; max-width: var(--container-max); margin: 0 auto; }
.sub-resources__head {
  max-width: 800px;
  margin: 0 0 56px;
}
.sub-resources__eyebrow {
}
.sub-resources__eyebrow::before {
  content: "";
  width: 10px;
  height: 10px;
  background: var(--color-coral);
  flex-shrink: 0;
}
.sub-resources__head h2 {
  font-size: clamp(28px, 3.4vw, 42px);
  line-height: 1.15;
  font-weight: var(--weight-bold);
  margin: 0;
  letter-spacing: -0.015em;
}
.sub-resources__more {
  text-align: left;
  margin-top: 48px;
}
.sub-resources__more a {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 15px;
  font-weight: var(--weight-semibold);
}
.sub-resources__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.sub-resource {
  background: var(--color-surface, #FFFFFF);
  border-radius: 6px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  box-shadow: var(--shadow-md);
  transition: transform var(--t-fast), box-shadow var(--t-fast);
}
.sub-resource:hover { transform: translateY(-3px); box-shadow: var(--shadow-lg); }
.sub-resource__image {
  width: 100%;
  aspect-ratio: 16 / 9;
  background: var(--gradient-core);
  font-size: 0;
}
.sub-resource:nth-child(1) .sub-resource__image { background: var(--color-coral); }
.sub-resource:nth-child(2) .sub-resource__image { background: var(--gradient-depth); }
.sub-resource:nth-child(3) .sub-resource__image { background: var(--gradient-core); }
.sub-resource__image img { display: block; width: 100%; height: 100%; object-fit: cover; }
.sub-resource__body { padding: 24px; display: flex; flex-direction: column; gap: 12px; flex: 1; }
.sub-resource__pill {
  align-self: flex-start;
  display: inline-block;
  background: var(--color-mint-green);
  color: #ffffff !important;
  border-radius: 20px;
  padding: 6px 14px;
  font-size: 12px;
  font-weight: var(--weight-bold);
  letter-spacing: 0.06em;
  text-transform: none;
}
.sub-resource h3 {
  font-size: 18px;
  line-height: 1.35;
  font-weight: var(--weight-bold);
  letter-spacing: -0.005em;
  margin: 0;
}
.sub-resource__arrow {
  margin-top: auto;
  padding-top: 8px;
  font-size: 14px;
  font-weight: var(--weight-semibold);
}
@media (max-width: 960px) {
  .sub-resources__grid { grid-template-columns: 1fr; }
}
@media (max-width: 480px) {
  .sub-resources { padding: 56px 16px; }
}

/* ───────── SUBPAGE: FAQ (accordion) ───────── */
.sub-faq {
  background: var(--color-surface);
  padding: 96px var(--container-padding);
}
.sub-faq__inner {
  display: grid;
  grid-template-columns: 1fr 1.6fr;
  gap: 80px;
  align-items: start;
  max-width: var(--container-max);
  margin: 0 auto;
}
.sub-faq__left { position: sticky; top: 100px; }
.sub-faq__headline {
  font-size: clamp(26px, 3.2vw, 36px);
  font-weight: var(--weight-bold);
  line-height: 1.15;
  letter-spacing: -0.01em;
  margin: 0 0 20px;
}
.sub-faq__headline em {
  font-style: normal;
  color: var(--color-teal);
}
.sub-faq__desc {
  font-size: 16px;
  line-height: 1.6;
  color: var(--color-text-muted);
  margin: 0;
  max-width: 320px;
}
.sub-faq__list { display: flex; flex-direction: column; }
.sub-faq__item {
  border-bottom: 1px solid var(--color-border);
  overflow: hidden;
}
.sub-faq__item:first-child { border-top: 1px solid var(--color-border); }
.sub-faq__item summary {
  cursor: pointer;
  list-style: none;
  display: flex;
  align-items: flex-start;
  gap: 14px;
  padding: 20px 0;
  font-weight: var(--weight-semibold);
  font-size: 16px;
  line-height: 1.4;
  color: var(--color-text);
  user-select: none;
  transition: color 0.2s ease;
}
.sub-faq__item[open] summary { color: var(--color-teal); }
.sub-faq__item summary::-webkit-details-marker { display: none; }
.sub-faq__item summary::before {
  content: '';
  flex-shrink: 0;
  width: 8px;
  height: 8px;
  border-right: 2px solid var(--color-coral);
  border-top: 2px solid var(--color-coral);
  transform: rotate(45deg);
  margin-top: 5px;
  transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}
.sub-faq__item[open] summary::before {
  transform: rotate(135deg);
  margin-top: 2px;
}
/* Slide animation — height + opacity driven by JS */
.sub-faq__answer {
  display: block !important;
  height: 0;
  overflow: hidden;
  opacity: 0;
  transition: height 0.42s cubic-bezier(0.16, 1, 0.3, 1),
              opacity 0.3s ease;
}
.sub-faq__answer-inner {
  padding: 0 0 22px 22px;
  font-size: 15px;
  line-height: 1.65;
  color: var(--color-text-muted);
}
.sub-faq__cta {
  margin-top: 28px;
  font-size: 15px;
  color: var(--color-text-muted);
}
.sub-faq__cta a { color: var(--color-coral); font-weight: var(--weight-semibold); }
@media (max-width: 900px) {
  .sub-faq__inner { grid-template-columns: 1fr; gap: 40px; }
  .sub-faq__left { position: static; }
  .sub-faq__headline { font-size: clamp(32px, 8vw, 48px); }
}
@media (max-width: 700px) {
  .sub-faq { padding: 64px var(--container-padding); }
}

/* ───────── SUBPAGE: FINAL CTA BAND ───────── */
/* sub-final shares identical design with final-cta — only content differs per page */
.sub-final,
.final-cta {
  background: radial-gradient(ellipse at center, #0F4C5C 0%, #053944 60%, #021A1F 100%);
  color: var(--color-text-on-dark);
  padding: 96px var(--container-padding);
  text-align: center;
  position: relative;
  overflow: visible;
  z-index: 1;
}
.sub-final::after,
.final-cta::after {
  content: "";
  position: absolute;
  bottom: -20px;
  left: 8%;
  right: 8%;
  height: 20px;
  background: radial-gradient(ellipse at center, rgba(0,0,0,0.25) 0%, transparent 65%);
  pointer-events: none;
  z-index: 2;
}
.sub-final::before,
.final-cta::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 70% 30%, rgba(46, 196, 182, 0.18), transparent 55%);
  pointer-events: none;
}
.sub-final__inner { max-width: 760px; margin: 0 auto; }
.sub-final__head h2 {
  font-size: clamp(30px, 4.2vw, 50px);
  line-height: 1.15;
  font-weight: var(--weight-bold);
  margin: 0 0 16px;
  letter-spacing: -0.02em;
}
.sub-final__head h2 em { font-style: italic; color: var(--color-coral); }
.sub-final__sub {
  font-size: 17px;
  line-height: 1.55;
  color: var(--color-text-on-dark-muted);
  margin: 0 0 32px;
}
.sub-final__ctas {
  display: flex;
  gap: 12px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 20px;
}
.sub-final__footnote {
  font-size: 13px;
  color: var(--color-text-on-dark-subtle);
}
/* sub-final + final-cta button styles */
.sub-final .btn--white, .sub-final .btn--yellow,
.final-cta .btn--white, .final-cta .btn--yellow { background: #ffc857; border-color: #ffc857; color: #333333; }
.sub-final .btn--white:hover, .sub-final .btn--yellow:hover,
.final-cta .btn--white:hover, .final-cta .btn--yellow:hover { background: #FFB31A; border-color: #FFB31A; color: #333333; }
.sub-final .btn--white-outline, .sub-final .btn--yellow-outline,
.final-cta .btn--white-outline, .final-cta .btn--yellow-outline { background: transparent; border-color: #ffc857; color: #ffc857; }
.sub-final .btn--white-outline:hover, .sub-final .btn--yellow-outline:hover,
.final-cta .btn--white-outline:hover, .final-cta .btn--yellow-outline:hover { background: transparent; border-color: #FFB31A; color: #FFB31A; }
@media (max-width: 700px) {
  .sub-final { padding: 64px var(--container-padding); }
}

/* ═══════════════════════════════════════════════════════════════════
   PRODUCT PAGE SPECIFIC (smartagent / smartanalytics)
   ═══════════════════════════════════════════════════════════════════ */

/* ───────── PRODUCT: STEPPER (numbered process) ───────── */
.product-stepper {
  background: var(--color-surface);
  padding: 96px var(--container-padding);
}
.product-stepper__inner { max-width: var(--container-max); margin: 0 auto; }
.product-stepper__head {
  text-align: center;
  max-width: 720px;
  margin: 0 auto 56px;
}
.product-stepper__head h2 {
  font-size: clamp(28px, 3.6vw, 44px);
  line-height: 1.15;
  font-weight: var(--weight-bold);
  margin: 0 0 14px;
  letter-spacing: -0.01em;
  text-wrap: balance;
}
.product-stepper__head h2 em { font-style: italic; color: var(--color-coral); }
.product-stepper__head p { color: var(--color-text-muted); font-size: 16px; margin: 0; }
.product-stepper__rail {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 8px;
  margin-bottom: 36px;
}
.product-stepper__step {
  border: 1px solid var(--color-border);
  background: var(--color-surface);
  border-radius: var(--radius-md);
  padding: 14px 12px;
  font-family: inherit;
  text-align: center;
  font-size: 12px;
  font-weight: var(--weight-semibold);
  color: var(--color-text);
  cursor: pointer;
  transition: all var(--t-base);
}
.product-stepper__step:hover { border-color: var(--color-coral); color: var(--color-coral); }
.product-stepper__step.is-active {
  background: var(--color-teal);
  border-color: var(--color-teal);
  color: #fff;
}
.product-stepper__step span {
  display: block;
  font-size: 10px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  opacity: 0.7;
  margin-bottom: 4px;
}
.product-stepper__panels { position: relative; }
.product-stepper__panel {
  display: none;
  grid-template-columns: 1fr 1fr;
  gap: 36px;
  background: var(--color-bg);
  border-radius: var(--radius-lg);
  padding: 40px;
}
.product-stepper__panel.is-active { display: grid; }
.product-stepper__panel h3 {
  font-size: 26px;
  line-height: 1.2;
  font-weight: var(--weight-bold);
  margin: 0 0 16px;
}
.product-stepper__panel p {
  font-size: 15px;
  line-height: 1.6;
  color: var(--color-text-muted);
  margin: 0 0 20px;
}
.product-stepper__panel ul { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 10px; }
.product-stepper__panel ul li { font-size: 14px; padding-left: 28px; position: relative; line-height: 1.5; }
.product-stepper__panel ul li::before { content: '✓'; position: absolute; left: 0; top: 1px; width: 18px; height: 18px; border-radius: 50%; background: transparent; border: 1.5px solid var(--color-coral); color: var(--color-coral); font-size: 10px; font-weight: 900; line-height: 17px; text-align: center; }
.product-stepper__visual {
  background: #ffffff;
  border-radius: var(--radius-md);
  border: 1px solid var(--color-border);
  padding: 24px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  min-height: 240px;
  overflow: hidden;
}
.product-stepper__viz-chrome {
  display: flex;
  align-items: center;
  gap: 10px;
  margin: -24px -24px 8px -24px;
  padding: 10px 16px;
  background: var(--color-surface);
  border-bottom: 1px solid var(--color-border);
}
.product-stepper__viz-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #D1D5DB;
  flex-shrink: 0;
}
.product-stepper__viz-label {
  font-size: 12px;
  color: var(--color-text-muted);
  font-family: var(--font-mono);
  margin-left: 4px;
}
.product-stepper__viz-line {
  background: #F3F4F6;
  border-radius: var(--radius-sm);
  padding: 10px 14px;
  font-size: 13px;
  color: var(--color-text);
  font-family: var(--font-mono);
}
.product-stepper__viz-line b { color: var(--color-coral); }
@media (max-width: 900px) {
  .product-stepper__rail { grid-template-columns: repeat(2, 1fr); }
  .product-stepper__panel { grid-template-columns: 1fr; padding: 28px; }
  .product-stepper { padding: 64px var(--container-padding); }
}

/* ───────── PRODUCT: CHANNELS (feature showcase) ───────── */
.product-channels {
  background: #e6f2f4;
  padding: 96px var(--container-padding);
}
.product-channels__inner { max-width: var(--container-max); margin: 0 auto; }
.product-channels__head {
  text-align: left;
  max-width: 720px;
  margin: 0 0 56px;
}
.product-channels__head h2 {
  font-size: clamp(28px, 3.6vw, 44px);
  line-height: 1.15;
  font-weight: var(--weight-bold);
  margin: 0 0 14px;
  letter-spacing: -0.01em;
}
.product-channels__head h2 em { font-style: italic; color: var(--color-coral); }
.product-channels__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}
.product-channel {
  background: var(--color-surface);
  border-radius: var(--radius-lg);
  border: none;
  padding: 32px 24px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.product-channel:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
}
.product-channel__icon {
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 8px;
}
.product-channel__icon svg {
  width: 22px;
  height: 22px;
  stroke: currentColor;
  stroke-width: 1.75;
  flex-shrink: 0;
}
.product-channel h3 {
  font-size: 19px;
  font-weight: var(--weight-bold);
  margin: 0;
}
.product-channel p {
  font-size: 14px;
  line-height: 1.55;
  color: var(--color-text-muted);
  margin: 0;
}
.product-channel__tags {
  display: flex;
  gap: 6px;
  flex-wrap: wrap;
  margin-top: auto;
  padding-top: 20px;
  border-top: 1px solid rgba(0,0,0,0.08);
}
.product-channel__tags span {
  font-size: 11px;
  font-weight: var(--weight-semibold);
  letter-spacing: 0;
  text-transform: none;
  background: rgba(46, 196, 182, 0.12);
  color: #1a9e92;
  border: 1px solid rgba(46, 196, 182, 0.35);
  padding: 4px 10px;
  border-radius: var(--radius-pill);
}
@media (max-width: 1024px) {
  .product-channels__grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 600px) {
  .product-channels__grid { grid-template-columns: 1fr; }
  .product-channels { padding: 64px var(--container-padding); }
}

/* ───────── PRODUCT: PERFORMANCE STATS (dark band) ───────── */
.product-perf {
  background-color: var(--color-bg-deep);
  background-image: url('/images/land-expand-bg.svg');
  background-repeat: no-repeat;
  background-position: center right;
  background-size: auto 100%;
  color: var(--color-text-on-dark);
  padding: 80px var(--container-padding);
}
.product-perf__inner {
  max-width: var(--container-max);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}
.product-perf__copy h2 {
  font-size: clamp(26px, 3.4vw, 38px);
  line-height: 1.15;
  font-weight: var(--weight-bold);
  margin: 0 0 14px;
  letter-spacing: -0.01em;
}
.product-perf__copy h2 em { font-style: italic; color: var(--color-coral); }
.product-perf__copy p {
  font-size: 16px;
  line-height: 1.6;
  color: var(--color-text-on-dark-muted);
  margin: 0;
}
.product-perf__stats {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px;
}
.product-perf__stat {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--radius-md);
  padding: 22px;
}
.product-perf__stat b {
  display: block;
  font-size: 32px;
  font-weight: var(--weight-bold);
  font-family: var(--font-display);
  color: var(--color-coral);
  line-height: 1;
  letter-spacing: -0.01em;
}
.product-perf__stat span {
  display: block;
  font-size: 12px;
  margin-top: 6px;
  color: #ffffff;
  letter-spacing: 0.04em;
}
@media (max-width: 1024px) {
  .product-perf__inner { grid-template-columns: 1fr; }
  .product-perf__stats { grid-template-columns: repeat(2, 1fr); }
}

/* ───────── REVENUE RECOVERY CALLOUT (Q2 2026 SmartEngage band) ───────── */
.revrec-callout {
  background: linear-gradient(135deg, #FF5A6F 0%, #FFC857 100%);
  color: #0a0a0a;
  padding: 80px var(--container-padding);
  position: relative;
  overflow: hidden;
}
.revrec-callout::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 30% 20%, rgba(255, 255, 255, 0.25), transparent 55%),
              radial-gradient(ellipse at 75% 80%, rgba(0, 0, 0, 0.06), transparent 55%);
  pointer-events: none;
}
.revrec-callout__inner {
  max-width: var(--container-max);
  margin: 0 auto;
  position: relative;
  text-align: center;
}
.revrec-callout__chip {
  display: inline-block;
  font-size: 11px;
  font-weight: var(--weight-bold);
  letter-spacing: 0.18em;
  text-transform: uppercase;
  background: rgba(10, 10, 10, 0.85);
  color: #FFC857;
  padding: 6px 14px;
  border-radius: 999px;
  margin-bottom: 18px;
}
.revrec-callout__headline {
  font-size: clamp(28px, 4vw, 44px);
  line-height: 1.1;
  font-weight: var(--weight-bold);
  margin: 0 auto 16px;
  max-width: 880px;
}
.revrec-callout__headline em { font-style: italic; color: #0F4C5C; }
.revrec-callout__sub {
  font-size: clamp(16px, 1.6vw, 19px);
  line-height: 1.55;
  max-width: 760px;
  margin: 0 auto 36px;
  color: rgba(10, 10, 10, 0.85);
}
.revrec-callout__bullets {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  max-width: 880px;
  margin: 0 auto 36px;
}
.revrec-callout__bullet {
  background: rgba(255, 255, 255, 0.55);
  border: 1px solid rgba(10, 10, 10, 0.1);
  border-radius: 14px;
  padding: 18px 16px;
  text-align: left;
}
.revrec-callout__bullet b {
  display: block;
  font-size: 15px;
  font-weight: var(--weight-bold);
  margin-bottom: 4px;
  color: #0a0a0a;
}
.revrec-callout__bullet span {
  font-size: 14px;
  line-height: 1.4;
  color: rgba(10, 10, 10, 0.7);
}
.revrec-callout__cta {
  margin-top: 8px;
}
@media (max-width: 768px) {
  .revrec-callout { padding: 56px var(--container-padding); }
  .revrec-callout__bullets { grid-template-columns: 1fr; gap: 12px; }
}

/* ───────── PLATFORM LAND-AND-EXPAND BAND ───────── */
.platform-expand {
  background-color: #0A1A1F;
  background-image: url('/images/land-expand-bg.svg');
  background-repeat: no-repeat;
  background-position: center right;
  background-size: auto 100%;
  color: var(--color-text-on-dark);
  padding: 88px var(--container-padding);
  position: relative;
  overflow: hidden;
}
.platform-expand__inner {
  max-width: 1360px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.platform-expand__eyebrow {
}
.platform-expand__eyebrow::before {
  content: '';
  width: 10px;
  height: 10px;
  background: var(--color-coral);
  flex-shrink: 0;
}
.platform-expand__headline {
  font-size: clamp(28px, 3.2vw, 42px);
  line-height: 1.15;
  font-weight: var(--weight-bold);
  margin: 0 0 16px;
}
.platform-expand__headline em { font-style: italic; color: var(--color-coral); }
.platform-expand__sub {
  font-size: clamp(15px, 1.4vw, 17px);
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.72);
  margin: 0;
}
.platform-expand__stats {
  display: flex;
  flex-direction: column;
  max-width: 270px;
  margin: 0 auto;
  width: 100%;
}
.platform-expand__stat {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 16px;
  padding: 20px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
}
.platform-expand__stat:first-child { border-top: none; }
.platform-expand__stat:last-child  { border-bottom: none; }
.platform-expand__stat b {
  font-family: 'Lora', Georgia, serif;
  font-size: clamp(28px, 3vw, 38px);
  font-weight: 700;
  color: var(--color-coral);
  line-height: 1;
  flex-shrink: 0;
}
.platform-expand__stat span {
  font-size: 11px;
  font-weight: var(--weight-bold);
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.9);
  text-align: left;
  max-width: 120px;
}
@media (max-width: 900px) {
  .platform-expand__inner { grid-template-columns: 1fr; gap: 48px; }
}
@media (max-width: 768px) {
  .platform-expand { padding: 64px var(--container-padding); }
}

/* ───────── PLATFORM FOUNDATIONS ───────── */
.platform-foundations {
  background: #fff;
  padding: 96px var(--container-padding);
}
.platform-foundations__inner {
  max-width: 1360px;
  margin: 0 auto;
}
.platform-foundations__eyebrow {
}
.platform-foundations__eyebrow::before {
  content: '';
  width: 10px;
  height: 10px;
  background: var(--color-coral);
  flex-shrink: 0;
}
.platform-foundations__headline {
  font-family: 'Lora', Georgia, serif;
  font-size: clamp(28px, 3.4vw, 48px);
  font-weight: 400;
  line-height: 1.2;
  color: var(--color-text);
  margin: 0 0 20px;
}
.platform-foundations__headline em {
  font-style: italic;
  color: var(--color-coral);
}
.platform-foundations__sub {
  font-size: clamp(15px, 1.4vw, 17px);
  line-height: 1.65;
  color: var(--color-text-muted);
  margin: 0 0 48px;
  max-width: 620px;
}
.platform-foundations__pills {
  display: flex;
  flex-wrap: nowrap;
  gap: 12px;
}
.platform-foundations__pill {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  cursor: none;
  padding: 12px 22px;
  border: 2px solid var(--color-indigo) !important;
  border-radius: 50px;
  font-size: 14px;
  font-weight: var(--weight-medium);
  color: var(--color-indigo) !important;
  white-space: nowrap;
  transition: background 0.2s ease-out, color 0.2s ease-out;
}
.platform-foundations__pill:hover {
  background: var(--color-indigo);
  color: #fff !important;
  transition: background 0.2s ease-in, color 0.2s ease-in;
}
@media (max-width: 900px) {
  .platform-foundations__pills { flex-wrap: wrap; }
}
@media (max-width: 768px) {
  .platform-foundations { padding: 64px var(--container-padding); }
  .platform-foundations__pills { flex-direction: column; }
  .platform-foundations__pill { white-space: normal; }
}

/* ───────── PMS ALLIANCE CALLOUT (Tebra + NexHealth) ───────── */
.pms-alliance {
  background: linear-gradient(180deg, #FAFAFA 0%, #F2F4F7 100%);
  padding: 80px var(--container-padding);
}
.pms-alliance__inner {
  max-width: var(--container-max);
  margin: 0 auto;
}
.pms-alliance__head {
  text-align: center;
  margin-bottom: 40px;
}
.pms-alliance__eyebrow {
}
.pms-alliance__headline {
  font-size: clamp(26px, 3.4vw, 38px);
  line-height: 1.15;
  font-weight: var(--weight-bold);
  margin: 0 auto 14px;
  max-width: 800px;
  color: #0a0a0a;
}
.pms-alliance__headline em { font-style: italic; color: var(--color-coral); }
.pms-alliance__sub {
  font-size: clamp(15px, 1.4vw, 17px);
  line-height: 1.55;
  max-width: 720px;
  margin: 0 auto;
  color: rgba(10, 10, 10, 0.72);
}
.pms-alliance__cards {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  margin-bottom: 24px;
}
.pms-alliance__card {
  background: #fff;
  border: 1px solid rgba(15, 76, 92, 0.12);
  border-radius: 18px;
  padding: 32px 28px;
  box-shadow: 0 4px 14px rgba(10, 26, 31, 0.04);
}
.pms-alliance__card-name {
  font-size: 13px;
  font-weight: var(--weight-bold);
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--color-teal);
  margin-bottom: 10px;
}
.pms-alliance__card-stat {
  font-size: clamp(38px, 4.6vw, 56px);
  font-weight: var(--weight-bold);
  line-height: 1;
  color: #0a0a0a;
  margin-bottom: 14px;
}
.pms-alliance__card-detail {
  font-size: 15px;
  line-height: 1.55;
  color: rgba(10, 10, 10, 0.72);
}
.pms-alliance__footnote {
  font-size: 12px;
  color: rgba(10, 10, 10, 0.48);
  text-align: center;
  margin: 14px auto 0;
  max-width: 720px;
}
@media (max-width: 768px) {
  .pms-alliance { padding: 56px var(--container-padding); }
  .pms-alliance__cards { grid-template-columns: 1fr; gap: 16px; }
  .pms-alliance__card { padding: 24px 20px; }
}

/* ───────── HUB PAGES (overview pages with card grids) ───────── */
.hub-hero {
  background: radial-gradient(ellipse at center, #165F70 0%, #0C3D4C 35%, #081E26 65%, #040D10 100%);
  color: var(--color-text-on-dark);
  padding: 110px var(--container-padding) 80px;
  position: relative;
  overflow: hidden;
}
.hub-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 20% 0%, rgba(91, 95, 255, 0.18), transparent 60%),
              radial-gradient(ellipse at 80% 100%, rgba(46, 196, 182, 0.14), transparent 55%);
  pointer-events: none;
}
.hub-hero__inner {
  max-width: var(--container-max);
  margin: 0 auto;
  position: relative;
  text-align: center;
}
@keyframes hub-hero-fadein {
  from { opacity: 0; }
  to   { opacity: 1; }
}
@keyframes hub-hero-brightness-flash {
  0%   { filter: brightness(1); }
  50%  { filter: brightness(1.5); }
  100% { filter: brightness(1); }
}
@keyframes hub-hero-layer-float {
  0%, 100% { transform: translateY(0); }
  50%       { transform: translateY(-10px); }
}
.hub-hero__stack-layers {
  width: 100%;
  max-width: 640px;
  margin: 36px auto 0;
  overflow: hidden;
  /* aspect ratio matches combined stacked-three.svg */
  aspect-ratio: 638.42 / 415.92;
  will-change: transform;
  animation: hub-hero-layer-float 4s ease-in-out 2.2s infinite;
}
.hub-hero__layer {
  display: block;
  width: 100%;
  cursor: none;
  will-change: opacity, transform;
  transition: filter 0.5s ease-out;
}
.hub-hero__layer:hover {
  filter: brightness(1.5);
  transition: filter 0.3s ease-in;
}
/* Red — top slab */
.hub-hero__layer--1 {
  position: relative;
  z-index: 3;
  animation: hub-hero-fadein 1.4s ease-out 0s both,
             hub-hero-brightness-flash 1.4s ease-out 0s;
}
/* Gold — middle slab, pull up to create overlap with red */
.hub-hero__layer--2 {
  position: relative;
  z-index: 2;
  margin-top: -20%;
  animation: hub-hero-fadein 1.4s ease-out 0.4s both,
             hub-hero-brightness-flash 1.4s ease-out 0.4s;
}
/* Teal — bottom slab, pull up to sit under gold */
.hub-hero__layer--3 {
  position: relative;
  z-index: 1;
  margin-top: -33%;
  width: 92%;
  margin-left: auto;
  margin-right: auto;
  animation: hub-hero-fadein 1.4s ease-out 0.8s both,
             hub-hero-brightness-flash 1.4s ease-out 0.8s;
}
.hub-hero__sub strong { color: #fff; font-weight: var(--weight-semibold); }
.hub-hero__chip {
  display: inline-block;
  font-size: 12px;
  font-weight: var(--weight-bold);
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--color-coral);
  background: rgba(255, 90, 111, 0.12);
  padding: 6px 14px;
  border-radius: var(--radius-pill);
  margin-bottom: 18px;
}
.hub-hero__headline {
  font-size: clamp(36px, 5vw, 56px);
  line-height: 1.08;
  font-weight: var(--weight-bold);
  margin: 0 0 18px;
  letter-spacing: -0.02em;
}
.hub-hero__headline em {
  font-style: italic;
  color: var(--color-coral);
  display: inline-block;
}
.hub-hero__sub {
  font-size: 19px;
  line-height: 1.55;
  color: var(--color-text-on-dark-muted);
  margin: 0 auto 28px;
  max-width: 720px;
}
.hub-hero__ctas {
  display: flex;
  gap: 12px;
  justify-content: center;
  flex-wrap: wrap;
}

@media (max-width: 768px) {
  .hub-hero { padding: 100px var(--container-padding) 60px; }
  .hub-hero__stack-layers { max-width: 100%; margin-top: 20px; }
}
@media (max-width: 480px) {
  .hub-hero { padding: 88px 16px 48px; }
  .hub-hero__chip { font-size: 9px; padding: 4px 10px; }
  .hub-hero__headline { font-size: 32px; }
  .hub-hero__sub { font-size: 16px; }
}
@media (prefers-reduced-motion: reduce) {
  .hub-hero__stack-layers { animation: none; }
  .hub-hero__layer { animation: none; }
}

.hub-grid {
  background: var(--color-bg);
  padding: 96px var(--container-padding);
}
.hub-grid__inner {
  max-width: var(--container-max);
  margin: 0 auto;
}
.hub-grid__head {
  max-width: 760px;
  margin-bottom: 48px;
}
.hub-grid__eyebrow {
}
.hub-grid__head h2 {
  font-size: clamp(28px, 3.4vw, 40px);
  font-weight: var(--weight-bold);
  line-height: 1.15;
  margin: 0 0 14px;
  letter-spacing: -0.015em;
  color: var(--color-text);
}
.hub-grid__head h2 em { font-style: italic; color: var(--color-coral); }
.hub-grid__head p {
  font-size: 17px;
  line-height: 1.55;
  color: var(--color-text-muted);
  margin: 0;
}
.hub-grid__cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}
.hub-grid__cards--two { grid-template-columns: repeat(2, 1fr); }
.hub-grid__cards--four { grid-template-columns: repeat(4, 1fr); }

.hub-card {
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  padding: 28px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  text-decoration: none;
  color: inherit;
  transition: border-color 0.2s, transform 0.2s, box-shadow 0.2s;
}
.hub-card:hover {
  border-color: var(--color-coral);
  transform: translateY(-2px);
  box-shadow: 0 12px 28px rgba(15, 76, 92, 0.08);
}
.hub-card__pill {
  align-self: flex-start;
  font-size: 11px;
  font-weight: var(--weight-bold);
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--color-teal);
  background: rgba(46, 196, 182, 0.12);
  padding: 4px 10px;
  border-radius: var(--radius-pill);
}
.hub-card__title {
  font-size: 20px;
  font-weight: var(--weight-bold);
  line-height: 1.25;
  margin: 0;
  color: var(--color-text);
}
.hub-card__desc {
  font-size: 14px;
  line-height: 1.55;
  color: var(--color-text-muted);
  margin: 0;
  flex: 1;
}
.hub-card__arrow {
  font-size: 14px;
  font-weight: var(--weight-bold);
  color: var(--color-coral);
  margin-top: 4px;
}

.hub-group {
  background: var(--color-surface);
  padding: 88px var(--container-padding);
  border-top: 1px solid var(--color-border);
}
.hub-group--alt { background: var(--color-bg); }
.hub-group__inner { max-width: var(--container-max); margin: 0 auto; }
.hub-group__label {
  display: block;
  font-size: 12px;
  font-weight: var(--weight-bold);
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--color-coral);
  margin-bottom: 10px;
}
.hub-group__title {
  font-size: clamp(26px, 3vw, 34px);
  font-weight: var(--weight-bold);
  line-height: 1.18;
  margin: 0 0 8px;
  letter-spacing: -0.015em;
  color: var(--color-text);
}
.hub-group__title em { font-style: italic; color: var(--color-coral); }
.hub-group__lead {
  font-size: 16px;
  line-height: 1.55;
  color: var(--color-text-muted);
  margin: 0 0 36px;
  max-width: 640px;
}
.hub-group__links {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
  list-style: none;
  padding: 0;
  margin: 0;
}
.hub-group__links li a {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
  padding: 18px 20px;
  background: var(--color-surface-2);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  text-decoration: none;
  color: var(--color-text);
  font-weight: var(--weight-medium);
  transition: border-color 0.2s, background 0.2s;
}
.hub-group__links li a:hover {
  border-color: var(--color-coral);
  background: var(--color-surface);
}
.hub-group__links li a::after {
  content: '→';
  color: var(--color-coral);
  font-weight: var(--weight-bold);
}

@media (max-width: 900px) {
  .hub-grid__cards,
  .hub-grid__cards--two,
  .hub-grid__cards--four,
  .hub-group__links { grid-template-columns: 1fr; }
}

/* ============================================
   LEADERSHIP — /company/leadership/
   ============================================ */
.leadership {
  padding: 96px 32px;
  background: #e6f2f4;
}
.leadership__inner {
  max-width: var(--container-max);
  margin: 0 auto;
}
.leadership__head {
  text-align: left;
  margin: 0 0 56px;
}
.leadership__eyebrow {
}
.leadership__eyebrow::before {
  content: "";
  display: inline-block;
  width: 10px;
  height: 10px;
  background: var(--color-coral);
  border-radius: 2px;
  flex-shrink: 0;
}
.leadership__head h2 {
  font-size: clamp(22px, 2.8vw, 38px);
  line-height: 1.15;
  margin: 0 0 16px;
  color: var(--color-text-primary);
  white-space: nowrap;
}
.leadership__head h2 em {
  font-style: italic;
  color: var(--color-coral);
}
.leadership__head p {
  color: var(--color-text-muted);
  font-size: 17px;
  margin: 0;
}
.leadership__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}
.leadership__card {
  background: #fff;
  border: none;
  border-radius: 6px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  cursor: pointer;
  box-shadow:
    0 1px 2px rgba(15,31,36,0.03),
    0 10px 24px rgba(15,31,36,0.05),
    0 24px 48px rgba(15,31,36,0.04);
  transition: box-shadow 0.35s cubic-bezier(0.22,0.61,0.36,1);
}
.leadership__card:hover {
  box-shadow:
    0 2px 4px rgba(15,31,36,0.08),
    0 16px 32px rgba(15,31,36,0.14),
    0 34px 64px rgba(15,31,36,0.12);
}
.leadership__photo {
  position: relative;
  width: 100%;
  height: 260px;
  background: #232529;
  overflow: hidden;
}
.leadership__img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  display: block;
}
.leadership__img--front {
  z-index: 2;
  opacity: 1;
  transition: opacity 0.35s cubic-bezier(0.22,0.61,0.36,1);
}
.leadership__card:hover .leadership__img--front { opacity: 0; }
.leadership__photo--alt {
  background: linear-gradient(135deg, var(--color-coral) 0%, var(--color-yellow) 100%);
}
.leadership__photo--mint {
  background: linear-gradient(135deg, var(--color-mint) 0%, var(--color-teal) 100%);
}
.leadership__photo--violet {
  background: linear-gradient(135deg, var(--color-violet) 0%, var(--color-indigo) 100%);
}
.leadership__photo--indigo {
  background: linear-gradient(135deg, var(--color-indigo) 0%, var(--color-violet) 100%);
}
.leadership__photo--image {
  background-size: cover;
  background-position: center top;
  background-repeat: no-repeat;
  background-color: #1a1a1a;
  position: relative;
  overflow: hidden;
}
/* Back image overlays on hover via ::after */
.leadership__photo--image::after {
  content: "";
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center top;
  background-repeat: no-repeat;
  opacity: 0;
  transition: opacity 0.4s ease;
}
.leadership__card:hover .leadership__photo--image::after { opacity: 1; }

.leadership__photo--frank  { background-image: url('/images/team/Frank-front.jpg'); }
.leadership__photo--frank::after  { background-image: url('/images/team/Frank-back.jpg'); }

.leadership__photo--clay   { background-image: url('/images/team/Clayton-front.jpg'); }
.leadership__photo--clay::after   { background-image: url('/images/team/Clayton-back.jpg'); }

.leadership__photo--brian  { background-image: url('/images/team/Brian-front.jpg'); }
.leadership__photo--brian::after  { background-image: url('/images/team/Brian-back.jpg'); }

.leadership__photo--mark   { background-image: url('/images/team/Mark-front.jpg'); }
.leadership__photo--mark::after   { background-image: url('/images/team/Mark-back.jpg'); }

.leadership__photo--derek  { background-image: url('/images/team/Derek-front.jpg'); }
.leadership__photo--derek::after  { background-image: url('/images/team/Derek-back.jpg'); }

.leadership__photo--gary   { background-image: url('/images/team/Gary-front.jpg'); }
.leadership__photo--gary::after   { background-image: url('/images/team/Gary-back.jpg'); }

.leadership__photo--mike   { background-image: url('/images/team/Mike-front.jpg'); }
.leadership__photo--mike::after   { background-image: url('/images/team/Mike-back.jpg'); }

.leadership__photo--matt   { background-image: url('/images/team/Matt-front.jpg'); }
.leadership__photo--matt::after   { background-image: url('/images/team/Matt-back.jpg'); }

.leadership__photo--nancy  { background-image: url('/images/team/Nancy-front.jpg'); }
.leadership__photo--nancy::after  { background-image: url('/images/team/Nancy-back.jpg'); }

/* No rollover for IntelePeer members */
.leadership__photo--kristin   { background-image: url('/images/team/Kristin-front.png'); }
.leadership__photo--andre-s   { background-image: url('/images/team/Andre-front.png'); }
.leadership__photo--stephanie { background-image: url('/images/team/Stephanie-front.jpg'); }
.leadership__photo--stephanie::after { background-image: url('/images/team/Stephanie-back.jpg'); }
/* Disable hover crossfade for kristin and andre-s */
.leadership__card:hover .leadership__photo--kristin::after,
.leadership__card:hover .leadership__photo--andre-s::after { opacity: 0; }
.leadership__initials {
  user-select: none;
}
.leadership__body {
  padding: 20px 22px 24px;
}
.leadership__name {
  font-family: var(--font-display);
  font-size: 1.3em;
  font-weight: 700 !important;
  line-height: 1.1;
  color: #0b1f24;
  margin: 0 0 6px;
}
.leadership__title-window {
  height: 1.25em;
  overflow: hidden;
  font-size: 14pt;
}
.leadership__title-track {
  display: flex;
  flex-direction: column;
  transform: translateY(0);
  transition: transform 0.35s cubic-bezier(0.22,0.61,0.36,1);
}
.leadership__card:hover .leadership__title-track { transform: translateY(-1.4em); }
.leadership__title {
  font-size: .65em;
  font-weight: var(--weight-bold);
  line-height: 2em;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: #4f6b73;
  white-space: nowrap;
  display: block;
}
.leadership__learn {
  color: var(--color-electric-indigo) !important;
  float: right;
  margin-right: 2px;
  font-size: 1em;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  font-weight: var(--weight-semibold);
  display: inline-flex;
  align-items: center;
  gap: 4px;
}
.leadership__learn:hover { color: #0F4C5C !important; }
.leadership__bio { display: none; }
.leadership__tags {
  font-size: 13px;
  color: var(--color-text-muted);
  margin: 8px 0 0;
  padding-top: 12px;
  border-top: 1px solid var(--color-border);
  font-style: italic;
}
.leadership__disclaimer {
  margin: 48px auto 0;
  max-width: 720px;
  text-align: center;
  font-size: 13px;
  color: var(--color-text-muted);
  font-style: italic;
}
@media (max-width: 900px) {
  .leadership__grid { grid-template-columns: repeat(2, 1fr); }
  .leadership__head h2 { white-space: normal; }
  .leadership { padding: 64px 20px; }
}
@media (max-width: 480px) {
  .leadership__grid { grid-template-columns: 1fr; }
}

/* ============================================
   PARTNERS LOGO GRID — /company/partners/
   ============================================ */
.partners-logos {
  padding: 96px 32px;
  background: var(--color-bg-alt, #F5F6F8);
}
.partners-logos__inner {
  max-width: var(--container-max);
  margin: 0 auto;
}
.partners-logos__head {
  text-align: center;
  max-width: 760px;
  margin: 0 auto 56px;
}
.partners-logos__eyebrow {
}
.partners-logos__title {
  font-size: clamp(28px, 4vw, 42px);
  line-height: 1.15;
  margin: 0 0 16px;
}
.partners-logos__title em {
  font-style: italic;
  color: var(--color-coral);
}
.partners-logos__sub {
  color: var(--color-text-muted);
  font-size: 17px;
  margin: 0;
}
.partners-logos__grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 12px;
}
.partners-logos__cell {
  background: #fff;
  border: 1px solid var(--color-border);
  border-radius: 12px;
  padding: 24px 16px;
  text-align: center;
  font-weight: var(--weight-semibold);
  color: var(--color-text);
  font-size: 15px;
  letter-spacing: 0.02em;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 72px;
  transition: transform 0.2s ease, border-color 0.2s ease;
}
.partners-logos__cell:hover {
  transform: translateY(-2px);
  border-color: var(--color-coral);
}
/* Plain variant — no box background or border (partners page) */
.partners-logos--plain .partners-logos__cell { background: transparent; border-color: transparent; }
.partners-logos--plain .partners-logos__cell:hover { border-color: transparent; }
.partners-logos__cell img {
  max-height: 36px;
  width: auto;
  max-width: 100%;
  display: block;
}
.partners-logos__footnote {
  text-align: center;
  font-size: 13px;
  color: var(--color-text-muted);
  margin: 40px 0 0;
  font-style: italic;
}
@media (max-width: 900px) {
  .partners-logos__grid { grid-template-columns: repeat(3, 1fr); }
  .partners-logos { padding: 64px 20px; }
}
@media (max-width: 560px) {
  .partners-logos__grid { grid-template-columns: repeat(2, 1fr); }
}

/* ============================================
   CAREERS — /company/careers/
   ============================================ */
.careers-roles {
  padding: 96px 32px;
  background: var(--color-bg);
}
.careers-roles__inner {
  max-width: var(--container-max);
  margin: 0 auto;
}
.careers-roles__head {
  text-align: center;
  max-width: 760px;
  margin: 0 auto 56px;
}
.careers-roles__eyebrow {
}
.careers-roles__title {
  font-size: clamp(28px, 4vw, 42px);
  line-height: 1.15;
  margin: 0 0 16px;
}
.careers-roles__title em {
  font-style: italic;
  color: var(--color-coral);
}
.careers-roles__sub {
  color: var(--color-text-muted);
  font-size: 17px;
  margin: 0;
}
.careers-roles__list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.careers-role {
  background: #fff;
  border: 1px solid var(--color-border);
  border-radius: 16px;
  padding: 28px 32px;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 32px;
  align-items: center;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.careers-role:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-lg);
}
.careers-role__left {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.careers-role__pill {
  display: inline-block;
  align-self: flex-start;
  background: rgba(255, 90, 111, 0.1);
  color: var(--color-coral);
  font-size: 12px;
  font-weight: var(--weight-semibold);
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 6px 12px;
  border-radius: 999px;
}
.careers-role__title {
  font-size: 20px;
  font-weight: var(--weight-semibold);
  margin: 0;
}
.careers-role__desc {
  font-size: 15px;
  color: var(--color-text-muted);
  margin: 0;
  line-height: 1.6;
}
.careers-role__meta {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 6px;
  min-width: 180px;
}
.careers-role__loc {
  font-size: 13px;
  color: var(--color-text);
  font-weight: var(--weight-semibold);
}
.careers-role__type {
  font-size: 12px;
  color: var(--color-text-muted);
  letter-spacing: 0.04em;
  text-transform: uppercase;
}
.careers-role__cta {
  margin-top: 8px;
  color: var(--color-coral);
  font-weight: var(--weight-semibold);
  font-size: 15px;
  text-decoration: none;
  transition: gap 0.2s ease;
}
.careers-role__cta:hover {
  text-decoration: none;
}
.careers-roles__footnote {
  text-align: center;
  font-size: 13px;
  color: var(--color-text-muted);
  margin: 40px 0 0;
  font-style: italic;
}
@media (max-width: 720px) {
  .careers-role {
    grid-template-columns: 1fr;
    padding: 24px;
  }
  .careers-role__meta {
    align-items: flex-start;
    flex-direction: row;
    flex-wrap: wrap;
    min-width: 0;
    gap: 12px 16px;
  }
  .careers-roles { padding: 64px 20px; }
}

/* ============================================
   PRESS — /company/press/
   ============================================ */
.press {
  padding: 96px 32px;
  background: var(--color-bg);
}
.press__inner {
  max-width: var(--container-max);
  margin: 0 auto;
}
.press__head {
  text-align: center;
  margin: 0 auto 56px;
}
.press__eyebrow {
}
.press__title {
  font-size: clamp(28px, 4vw, 42px);
  line-height: 1.15;
  margin: 0 0 16px;
}
.press__title em {
  font-style: italic;
  color: var(--color-coral);
}
.press__sub {
  color: var(--color-text-muted);
  font-size: 17px;
  margin: 0;
}
.press__list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.press-item {
  background: #fff;
  border: 1px solid var(--color-border);
  border-radius: 16px;
  padding: 28px 32px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.press-item:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-lg);
}
.press-item__meta {
  display: flex;
  align-items: center;
  gap: 12px;
}
.press-item__date {
  font-size: 13px;
  color: var(--color-text-muted);
  font-weight: var(--weight-semibold);
  letter-spacing: 0.04em;
  text-transform: uppercase;
}
.press-item__tag {
  display: inline-block;
  background: rgba(255, 90, 111, 0.1);
  color: var(--color-coral);
  font-size: 11px;
  font-weight: var(--weight-semibold);
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 4px 10px;
  border-radius: 999px;
}
.press-item__headline {
  font-size: 22px;
  font-weight: var(--weight-semibold);
  line-height: 1.3;
  margin: 0;
}
.press-item__excerpt {
  font-size: 15px;
  color: var(--color-text-muted);
  line-height: 1.6;
  margin: 0;
}
.press-item__cta {
  color: var(--color-coral);
  font-weight: var(--weight-semibold);
  font-size: 14px;
  text-decoration: none;
  align-self: flex-start;
  margin-top: 4px;
}
.press-item__cta:hover {
  text-decoration: none;
}
.press__footnote {
  text-align: center;
  font-size: 13px;
  color: var(--color-text-muted);
  margin: 40px 0 0;
  font-style: italic;
}
@media (max-width: 720px) {
  .press-item { padding: 24px; }
  .press { padding: 64px 20px; }
}

/* ============================================
   CONTACT BLOCKS — /contact/
   ============================================ */
.contact-blocks {
  padding: 96px 32px;
  background: var(--color-bg);
}
.contact-blocks__inner {
  max-width: var(--container-max);
  margin: 0 auto;
}
.contact-blocks__head {
  text-align: center;
  max-width: 760px;
  margin: 0 auto 56px;
}
.contact-blocks__eyebrow {
}
.contact-blocks__title {
  font-size: clamp(28px, 4vw, 42px);
  line-height: 1.15;
  margin: 0 0 16px;
}
.contact-blocks__title em {
  font-style: italic;
  color: var(--color-coral);
}
.contact-blocks__sub {
  color: var(--color-text-muted);
  font-size: 17px;
  margin: 0;
}
.contact-blocks__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}
.contact-block {
  background: #fff;
  border: 1px solid var(--color-border);
  border-radius: 16px;
  padding: 28px 24px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.contact-block:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}
.contact-block__pill {
  display: inline-block;
  align-self: flex-start;
  background: rgba(255, 90, 111, 0.1);
  color: var(--color-coral);
  font-size: 12px;
  font-weight: var(--weight-semibold);
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 6px 12px;
  border-radius: 999px;
  margin-bottom: 6px;
}
.contact-block__pill--mint {
  background: rgba(46, 196, 182, 0.12);
  color: var(--color-mint);
}
.contact-block__pill--violet {
  background: rgba(155, 93, 229, 0.12);
  color: var(--color-violet);
}
.contact-block__pill--indigo {
  background: rgba(91, 95, 255, 0.12);
  color: var(--color-indigo);
}
.contact-block__title {
  font-size: 20px;
  font-weight: var(--weight-semibold);
  margin: 0 0 4px;
}
.contact-block__desc {
  font-size: 14px;
  color: var(--color-text-muted);
  margin: 0 0 12px;
  line-height: 1.6;
}
.contact-block__email {
  margin: 0;
  font-size: 15px;
  font-weight: var(--weight-semibold);
}
.contact-block__email a {
  color: var(--color-coral);
  text-decoration: none;
  font-weight: var(--weight-semibold);
}
.contact-block__email a:hover {
  opacity: 0.8;
}
.contact-block__phone {
  font-size: 15px;
  color: var(--color-text);
  margin: 0;
  font-variant-numeric: tabular-nums;
  font-weight: var(--weight-semibold);
}
.contact-block__hours {
  font-size: 12px;
  color: var(--color-text-muted);
  margin: 4px 0 0;
  font-style: italic;
}

/* ============================================
   CONTACT FORM — /contact/
   ============================================ */
.contact-form {
  padding: 96px 32px;
  background: var(--color-bg-alt, #F5F6F8);
}
.contact-form__inner {
  max-width: 720px;
  margin: 0 auto;
}
.contact-form__head {
  text-align: center;
  margin-bottom: 48px;
}
.contact-form__eyebrow {
}
.contact-form__title {
  font-size: clamp(28px, 4vw, 38px);
  line-height: 1.15;
  margin: 0 0 16px;
}
.contact-form__title em {
  font-style: italic;
  color: var(--color-coral);
}
.contact-form__sub {
  color: var(--color-text-muted);
  font-size: 16px;
  margin: 0;
}
.contact-form__form {
  background: #fff;
  border: 1px solid var(--color-border);
  border-radius: 16px;
  padding: 32px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.contact-form__row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}
.contact-form__field {
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.contact-form__label {
  font-size: 13px;
  font-weight: var(--weight-semibold);
  color: var(--color-text);
  letter-spacing: 0.02em;
}
.contact-form__required {
  color: var(--color-coral);
  margin-left: 2px;
  font-weight: 700;
}
.contact-form__input,
.contact-form__textarea {
  width: 100%;
  background: var(--color-bg-alt, #F5F6F8);
  border: 1px solid var(--color-border);
  border-radius: 10px;
  padding: 12px 14px;
  font-size: 15px;
  font-family: inherit;
  color: var(--color-text);
  transition: border-color 0.15s ease, background 0.15s ease;
}
.contact-form__input:focus,
.contact-form__textarea:focus {
  outline: none;
  border-color: var(--color-coral);
  background: #fff;
}
.contact-form__textarea {
  resize: vertical;
  min-height: 120px;
  font-family: inherit;
}
.contact-form__actions {
  display: flex;
  flex-direction: column;
  gap: 12px;
  align-items: flex-start;
  margin-top: 8px;
}
.contact-form__legal {
  font-size: 12px;
  color: var(--color-text-muted);
  margin: 0;
  line-height: 1.6;
}
.contact-form__legal a {
  color: var(--color-coral);
}
@media (max-width: 900px) {
  .contact-blocks__grid { grid-template-columns: repeat(2, 1fr); }
  .contact-blocks { padding: 64px 20px; }
}
@media (max-width: 560px) {
  .contact-blocks__grid { grid-template-columns: 1fr; }
  .contact-form__row { grid-template-columns: 1fr; }
  .contact-form { padding: 64px 20px; }
  .contact-form__form { padding: 24px; }
}

/* ============================================
   CONTACT SPLIT — /contact/ (two-column form)
   ============================================ */
.contact-split {
  padding: 120px 32px 96px;
  background: #fff;
}
.contact-split__inner {
  max-width: var(--container-max);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 44fr 56fr;
  gap: 72px;
  align-items: start;
}
.contact-split__left {
  padding-top: 8px;
  position: sticky;
  top: 120px;
}
.contact-split__eyebrow {
}
.contact-split__title {
  font-size: clamp(30px, 3.5vw, 48px);
  line-height: 1.1;
  color: var(--color-text);
  margin: 16px 0 20px;
}
.contact-split__title em {
  font-style: italic;
  color: var(--color-coral);
}
.contact-split__sub {
  color: var(--color-text-muted);
  font-size: 17px;
  line-height: 1.65;
  margin: 0 0 40px;
}
.contact-split__trust {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.contact-split__trust li {
  font-size: 15px;
  color: var(--color-text-muted);
  display: flex;
  align-items: flex-start;
  gap: 12px;
  line-height: 1.5;
}
.contact-split__trust li::before {
  content: "";
  width: 8px;
  height: 8px;
  min-width: 8px;
  background: var(--color-coral);
  flex-shrink: 0;
  margin-top: 5px;
}
.contact-split__form-wrap {
  background: #fff;
  border: 1px solid var(--color-border);
  border-radius: 20px;
  padding: 40px;
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.06);
}

/* ============================================
   CONTACT CHANNELS — /contact/ (four direct lines)
   ============================================ */
.contact-channels {
  padding: 96px 32px;
  background: var(--color-bg);
}
.contact-channels__inner {
  max-width: var(--container-max);
  margin: 0 auto;
}
.contact-channels__eyebrow {
}
.contact-channels__head {
  text-align: center;
  max-width: 640px;
  margin: 0 auto 52px;
}
.contact-channels__title {
  font-size: clamp(26px, 3.2vw, 38px);
  line-height: 1.2;
  margin: 12px 0 16px;
}
.contact-channels__title em {
  font-style: italic;
  color: var(--color-coral);
}
.contact-channels__sub {
  color: var(--color-text-muted);
  font-size: 16px;
  margin: 0;
}
.contact-channels__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}
@media (max-width: 1100px) {
  .contact-split__inner { gap: 48px; }
}
@media (max-width: 900px) {
  .contact-split__inner { grid-template-columns: 1fr; gap: 40px; }
  .contact-split { padding: 88px 20px 64px; }
  .contact-split__left { position: static; }
  .contact-channels__grid { grid-template-columns: repeat(2, 1fr); }
  .contact-channels { padding: 64px 20px; }
}
@media (max-width: 560px) {
  .contact-channels__grid { grid-template-columns: 1fr; }
  .contact-split__form-wrap { padding: 24px; }
}

/* ============================================
   MARKETO FORM — all forms site-wide
   ============================================ */
form[id^="mktoForm_"],
form[id^="mktoForm_"] * { box-sizing: border-box !important; font-family: 'Poppins', system-ui, sans-serif !important; }

form[id^="mktoForm_"] { width: 100% !important; background: transparent !important; }

/* Rows & fields */
form[id^="mktoForm_"] .mktoFormRow { width: 100% !important; display: flex !important; gap: 20px !important; margin-bottom: 16px !important; }
form[id^="mktoForm_"] .mktoFormRow:last-of-type { margin-bottom: 0 !important; }
form[id^="mktoForm_"] .mktoFormCol { width: 100% !important; flex: 1 !important; float: none !important; margin-left: 0 !important; min-width: 0 !important; }
form[id^="mktoForm_"] .mktoFieldWrap { width: 100% !important; float: none !important; }
form[id^="mktoForm_"] .mktoField { width: 100% !important; }
form[id^="mktoForm_"] .mktoGutter,
form[id^="mktoForm_"] .mktoOffset { display: none !important; width: 0 !important; }

/* Labels */
form[id^="mktoForm_"] .mktoLabel {
  width: auto !important;
  float: none !important;
  display: flex !important;
  align-items: center !important;
  gap: 3px !important;
  font-size: 13px !important;
  font-weight: 600 !important;
  color: #2E3038 !important;
  letter-spacing: 0.02em !important;
  padding-bottom: 6px !important;
  padding-right: 0 !important;
}
form[id^="mktoForm_"] .mktoAsterix {
  float: none !important;
  color: #FF5A6F !important;
  padding-left: 0 !important;
  order: 1 !important;
}

/* Inputs & textarea */
form[id^="mktoForm_"] input[type="text"],
form[id^="mktoForm_"] input[type="email"],
form[id^="mktoForm_"] input[type="tel"],
form[id^="mktoForm_"] input[type="number"],
form[id^="mktoForm_"] input[type="url"],
form[id^="mktoForm_"] select,
form[id^="mktoForm_"] textarea {
  width: 100% !important;
  background: #F5F6F8 !important;
  border: 1px solid #C5C7CC !important;
  border-radius: 10px !important;
  padding: 12px 14px !important;
  font-size: 15px !important;
  color: #2E3038 !important;
  box-shadow: none !important;
  transition: border-color 0.15s ease, background 0.15s ease !important;
  appearance: none !important;
}
form[id^="mktoForm_"] input[type="text"]:focus,
form[id^="mktoForm_"] input[type="email"]:focus,
form[id^="mktoForm_"] input[type="tel"]:focus,
form[id^="mktoForm_"] select:focus,
form[id^="mktoForm_"] textarea:focus {
  outline: none !important;
  border-color: #FF5A6F !important;
  background: #fff !important;
  box-shadow: none !important;
}
form[id^="mktoForm_"] textarea {
  resize: vertical !important;
  min-height: 120px !important;
}

/* Checkbox — put checkbox left of label text */
form[id^="mktoForm_"] .mktoFieldWrap:has(input[type="checkbox"]) {
  display: flex !important;
  flex-direction: row !important;
  align-items: flex-start !important;
  gap: 10px !important;
}
form[id^="mktoForm_"] .mktoFieldWrap:has(input[type="checkbox"]) .mktoLabel {
  order: 2 !important;
  font-weight: 400 !important;
  font-size: 13px !important;
  padding-bottom: 0 !important;
  flex: 1 !important;
}
form[id^="mktoForm_"] .mktoLogicalField.mktoCheckboxList,
form[id^="mktoForm_"] input[type="checkbox"] {
  order: 1 !important;
  width: 16px !important;
  min-width: 16px !important;
  height: 16px !important;
  margin-top: 2px !important;
  flex-shrink: 0 !important;
  cursor: pointer !important;
}

/* Submit button */
form[id^="mktoForm_"] .mktoButtonWrap { margin-left: 0 !important; }
form[id^="mktoForm_"] .mktoButton {
  display: inline-flex !important;
  align-items: center !important;
  gap: 8px !important;
  background: #ffc857 !important;
  background-image: none !important;
  border: 2px solid #ffc857 !important;
  border-radius: 9999px !important;
  color: #333333 !important;
  font-size: 14px !important;
  font-weight: 600 !important;
  padding: 14px 28px !important;
  line-height: 1 !important;
  box-shadow: none !important;
  text-shadow: none !important;
  cursor: pointer !important;
  transition: background 0.15s, border-color 0.15s !important;
}
form[id^="mktoForm_"] .mktoButton::after {
  content: "→";
  font-size: 14px !important;
  line-height: 1 !important;
}
form[id^="mktoForm_"] .mktoButton:hover {
  background: #FFB31A !important;
  background-image: none !important;
  border-color: #FFB31A !important;
  color: #333333 !important;
}

/* Validation errors */
form[id^="mktoForm_"] .mktoError { right: auto !important; }
form[id^="mktoForm_"] .mktoErrorMsg {
  background: transparent !important;
  border: none !important;
  box-shadow: none !important;
  font-size: 12px !important;
  color: #FF5A6F !important;
  padding: 2px 0 0 !important;
}
form[id^="mktoForm_"] .mktoErrorArrow { display: none !important; }

@media (max-width: 560px) {
  form[id^="mktoForm_"] .mktoFormCol { width: 100% !important; float: none !important; }
}

/* ============================================
   RESOURCE LISTING — /resources/blog/, /resources/case-study/,
   /resources/white-paper/, /resources/webinars/
   ============================================ */
.resource-list {
  padding: 96px 32px;
  background: var(--color-bg);
}
.resource-list__inner {
  max-width: var(--container-max);
  margin: 0 auto;
}
.resource-list__head {
  text-align: center;
  max-width: 760px;
  margin: 0 auto 32px;
}
.resource-list__eyebrow {
}
.resource-list__title {
  font-size: clamp(28px, 4vw, 42px);
  line-height: 1.15;
  margin: 0 0 16px;
}
.resource-list__title em {
  font-style: italic;
  color: var(--color-coral);
}
.resource-list__sub {
  color: var(--color-text-muted);
  font-size: 17px;
  margin: 0;
}
.filter-pills {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
  margin: 0 auto 48px;
  max-width: 880px;
}
.filter-pills__pill {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: #fff;
  border: 1px solid var(--color-border);
  color: var(--color-text);
  font-size: 13px;
  font-weight: var(--weight-semibold);
  letter-spacing: 0.02em;
  padding: 8px 16px;
  border-radius: 999px;
  cursor: pointer;
  transition: all 0.15s ease;
}
.filter-pills__pill:hover {
  border-color: var(--color-coral);
  color: var(--color-coral);
}
.filter-pills__pill.is-active {
  background: var(--color-text);
  color: #fff;
  border-color: var(--color-text);
}
.filter-pills__pill-count {
  font-size: 11px;
  color: var(--color-text-muted);
  font-weight: var(--weight-regular);
}
.filter-pills__pill.is-active .filter-pills__pill-count {
  color: rgba(255, 255, 255, 0.7);
}
.resource-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-bottom: 48px;
}
.resource-cards--two { grid-template-columns: repeat(2, 1fr); }
.resource-card {
  background: #fff;
  border: 1px solid var(--color-border);
  border-radius: 16px;
  padding: 28px 24px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  text-decoration: none;
  color: inherit;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.resource-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}
.resource-card__pill {
  display: inline-block;
  align-self: flex-start;
  background: rgba(255, 90, 111, 0.1);
  color: var(--color-coral);
  font-size: 11px;
  font-weight: var(--weight-semibold);
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 5px 11px;
  border-radius: 999px;
}
.resource-card__pill--mint { background: rgba(46, 196, 182, 0.12); color: var(--color-mint); }
.resource-card__pill--violet { background: rgba(155, 93, 229, 0.12); color: var(--color-violet); }
.resource-card__pill--indigo { background: rgba(91, 95, 255, 0.12); color: var(--color-indigo); }
.resource-card__pill--yellow { background: rgba(255, 200, 87, 0.18); color: #8a6b1a; }
.resource-card__title {
  font-size: 19px;
  font-weight: var(--weight-semibold);
  line-height: 1.3;
  margin: 0;
}
.resource-card__excerpt {
  font-size: 14px;
  color: var(--color-text-muted);
  margin: 0;
  line-height: 1.6;
  flex-grow: 1;
}
.resource-card__metric {
  background: var(--color-bg-alt, #F5F6F8);
  border-radius: 10px;
  padding: 14px 16px;
  margin-top: 4px;
}
.resource-card__metric-value {
  font-size: 22px;
  font-weight: var(--weight-bold);
  color: var(--color-teal);
  font-variant-numeric: tabular-nums;
  line-height: 1;
  margin: 0 0 4px;
}
.resource-card__metric-label {
  font-size: 12px;
  color: var(--color-text-muted);
  margin: 0;
}
.resource-card__meta {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 10px;
  font-size: 12px;
  color: var(--color-text-muted);
  border-top: 1px solid var(--color-border);
  padding-top: 14px;
  margin-top: 4px;
}
.resource-card__meta-author {
  font-weight: var(--weight-semibold);
  color: var(--color-text);
}
.resource-card__meta-dot {
  width: 3px;
  height: 3px;
  background: var(--color-text-muted);
  border-radius: 50%;
}
.resource-card__cta {
  font-size: 13px;
  font-weight: var(--weight-semibold);
  color: var(--color-coral);
  text-decoration: none;
  margin-top: 4px;
}
.resource-card__cta:hover { text-decoration: none; }
.resource-list__pagination {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 12px;
  margin-top: 16px;
}
.resource-list__pagination-btn {
  background: #fff;
  border: 1px solid var(--color-border);
  color: var(--color-text);
  font-size: 14px;
  font-weight: var(--weight-semibold);
  padding: 10px 20px;
  border-radius: 999px;
  cursor: pointer;
  transition: all 0.15s ease;
  text-decoration: none;
}
.resource-list__pagination-btn:hover {
  border-color: var(--color-coral);
  color: var(--color-coral);
}
.resource-list__pagination-info {
  font-size: 13px;
  color: var(--color-text-muted);
}
.resource-list__footnote {
  text-align: center;
  font-size: 12px;
  color: var(--color-text-muted);
  margin-top: 32px;
  font-style: italic;
}
@media (max-width: 900px) {
  .resource-cards { grid-template-columns: repeat(2, 1fr); }
  .resource-list { padding: 64px 20px; }
}
@media (max-width: 600px) {
  .resource-cards,
  .resource-cards--two { grid-template-columns: 1fr; }
}

/* ============================================
   WEBINAR / EVENT CARDS — /resources/webinars/
   ============================================ */
.webinar-card {
  background: #fff;
  border: 1px solid var(--color-border);
  border-radius: 16px;
  padding: 28px 24px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.webinar-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}
.webinar-card__status {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  align-self: flex-start;
  font-size: 11px;
  font-weight: var(--weight-semibold);
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 5px 11px;
  border-radius: 999px;
}
.webinar-card__status--upcoming {
  background: rgba(255, 90, 111, 0.1);
  color: var(--color-coral);
}
.webinar-card__status--upcoming::before {
  content: '';
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--color-coral);
  display: inline-block;
}
.webinar-card__status--ondemand {
  background: rgba(46, 196, 182, 0.12);
  color: var(--color-mint);
}
.webinar-card__date {
  font-size: 13px;
  color: var(--color-text);
  font-weight: var(--weight-semibold);
  font-variant-numeric: tabular-nums;
  margin: 0;
}
.webinar-card__date-time {
  color: var(--color-text-muted);
  font-weight: var(--weight-regular);
  margin-left: 6px;
}
.webinar-card__title {
  font-size: 19px;
  font-weight: var(--weight-semibold);
  line-height: 1.3;
  margin: 0;
}
.webinar-card__desc {
  font-size: 14px;
  color: var(--color-text-muted);
  margin: 0;
  line-height: 1.6;
  flex-grow: 1;
}
.webinar-card__speakers {
  font-size: 12px;
  color: var(--color-text-muted);
  margin: 0;
}
.webinar-card__speakers strong {
  color: var(--color-text);
  font-weight: var(--weight-semibold);
}
.webinar-card__action {
  margin-top: 8px;
}

/* ============================================
   DEMO PAGE — /demo/
   ============================================ */
.demo-hero {
  padding: 180px 32px 64px;
  background: var(--gradient-depth);
  color: var(--color-text-on-dark);
  text-align: center;
  position: relative;
  overflow: hidden;
}
.demo-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 50% 0%, rgba(255, 90, 111, 0.18) 0%, transparent 60%);
  pointer-events: none;
}
.demo-hero__inner {
  max-width: 800px;
  margin: 0 auto;
  position: relative;
}
.demo-hero__chip {
  display: inline-block;
  background: rgba(255, 255, 255, 0.08);
  color: var(--color-text-on-dark);
  font-size: 12px;
  font-weight: var(--weight-semibold);
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 6px 14px;
  border-radius: 999px;
  margin-bottom: 24px;
  border: 1px solid rgba(255, 255, 255, 0.15);
}
.demo-hero__headline {
  font-size: clamp(36px, 5vw, 56px);
  font-weight: var(--weight-bold);
  line-height: 1.05;
  margin: 0 0 20px;
}
.demo-hero__headline em {
  font-style: italic;
  color: var(--color-coral);
}
.demo-hero__sub {
  font-size: 18px;
  line-height: 1.6;
  color: var(--color-text-on-dark-muted);
  margin: 0 auto 8px;
  max-width: 640px;
}
.demo-hero__trust {
  font-size: 12px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--color-text-on-dark-subtle);
  margin: 24px 0 0;
}
@media (max-width: 768px) {
  .demo-hero { padding: 100px 20px 56px; }
}
@media (max-width: 480px) {
  .demo-hero { padding: 88px 16px 40px; }
}

.demo-reasons {
  padding: 96px 32px;
  background: var(--color-bg);
}
.demo-reasons__inner {
  max-width: var(--container-max);
  margin: 0 auto;
}
.demo-reasons__head {
  text-align: center;
  max-width: 720px;
  margin: 0 auto 56px;
}
.demo-reasons__eyebrow {
}
.demo-reasons__title {
  font-size: clamp(28px, 4vw, 38px);
  line-height: 1.15;
  margin: 0 0 16px;
}
.demo-reasons__title em {
  font-style: italic;
  color: var(--color-coral);
}
.demo-reasons__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.demo-reason {
  background: #fff;
  border: 1px solid var(--color-border);
  border-radius: 16px;
  padding: 32px 28px;
}
.demo-reason__num {
  font-family: var(--font-serif);
  font-size: 44px;
  font-weight: var(--weight-bold);
  color: var(--color-coral);
  line-height: 1;
  margin: 0 0 16px;
}
.demo-reason__title {
  font-size: 20px;
  font-weight: var(--weight-semibold);
  margin: 0 0 12px;
}
.demo-reason__desc {
  font-size: 15px;
  color: var(--color-text-muted);
  line-height: 1.6;
  margin: 0;
}
.demo-expect {
  padding: 96px 32px;
  background: var(--color-surface);
}
.demo-expect__inner {
  max-width: var(--container-max);
  margin: 0 auto;
}
.demo-expect__head {
  text-align: center;
  margin-bottom: 56px;
}
.demo-expect__eyebrow {
}
.demo-expect__title {
  font-size: clamp(28px, 4vw, 38px);
  line-height: 1.15;
  margin: 0 0 16px;
}
.demo-expect__title em {
  font-style: italic;
  color: var(--color-coral);
}
.demo-expect__steps {
  display: flex;
  flex-direction: column;
  gap: 24px;
  list-style: none;
  padding: 0;
  margin: 0;
}
.demo-expect__step {
  display: grid;
  grid-template-columns: 56px 1fr;
  gap: 20px;
  align-items: flex-start;
  padding: 24px;
  background: var(--color-bg-alt, #F5F6F8);
  border-radius: 14px;
  border-left: 3px solid var(--color-coral);
}
.demo-expect__step-num {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: #fff;
  color: var(--color-coral);
  font-family: var(--font-serif);
  font-size: 24px;
  font-weight: var(--weight-bold);
  display: flex;
  align-items: center;
  justify-content: center;
  border: 2px solid var(--color-coral);
}
.demo-expect__step-title {
  font-size: 18px;
  font-weight: var(--weight-semibold);
  margin: 0 0 6px;
}
.demo-expect__step-desc {
  font-size: 14px;
  color: var(--color-text-muted);
  line-height: 1.6;
  margin: 0;
}
.demo-form {
  padding: 96px 32px;
  background: var(--color-bg);
}
.demo-form__inner {
  max-width: 640px;
  margin: 0 auto;
}
.demo-form__head {
  text-align: center;
  margin-bottom: 40px;
}
.demo-form__eyebrow {
}
.demo-form__title {
  font-size: clamp(28px, 4vw, 38px);
  line-height: 1.15;
  margin: 0 0 16px;
}
.demo-form__title em {
  font-style: italic;
  color: var(--color-coral);
}
.demo-form__sub {
  color: var(--color-text-muted);
  font-size: 16px;
  margin: 0;
}
.demo-trust {
  padding: 64px 32px;
  background: var(--color-surface);
  text-align: center;
}
.demo-trust__inner {
  max-width: var(--container-max);
  margin: 0 auto;
}
.demo-trust__label {
  font-size: 12px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--color-text-muted);
  margin: 0 0 24px;
  font-weight: var(--weight-semibold);
}
.demo-trust__logos {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 40px;
  align-items: center;
}
.demo-trust__logo {
  font-family: var(--font-serif);
  font-size: 20px;
  font-weight: var(--weight-bold);
  color: var(--color-text-muted);
  letter-spacing: 0.02em;
  opacity: 0.7;
}
@media (max-width: 900px) {
  .demo-reasons__grid { grid-template-columns: 1fr; gap: 16px; }
  .demo-reasons,
  .demo-expect,
  .demo-form { padding: 64px 20px; }
  .demo-trust__logos { gap: 24px; }
  .demo-trust__logo { font-size: 16px; }
}
@media (max-width: 600px) {
  .demo-expect__step { grid-template-columns: 1fr; }
}


/* ============================================================
 * Legal pages (.legal__) — prose-friendly typography
 * Used by /legal/privacy/, /terms/, /cookies/, /hipaa/,
 * /accessibility/, /do-not-sell/. Stub boilerplate, AI-generated.
 * ============================================================ */
.legal {
  background: var(--color-bg);
  padding: 120px var(--container-padding) 96px;
}
.legal__inner {
  max-width: 1200px;
  margin: 0 auto;
}
.legal__notice {
  background: rgba(255, 200, 87, 0.18);
  border: 1px solid rgba(255, 200, 87, 0.45);
  border-left: 4px solid var(--color-yellow);
  border-radius: var(--radius-md);
  padding: 14px 18px;
  margin-bottom: 32px;
  font-size: 14px;
  line-height: 1.55;
  color: var(--color-text);
}
.legal__notice strong { font-weight: var(--weight-bold); }
.legal__updated {
  display: block;
  font-size: 13px;
  font-weight: var(--weight-medium);
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--color-text-muted);
  margin-bottom: 10px;
}
.legal__title {
  font-size: clamp(32px, 4vw, 44px);
  font-weight: var(--weight-bold);
  line-height: 1.1;
  letter-spacing: -0.02em;
  color: var(--color-text);
  margin: 0 0 16px;
}
.legal__lede {
  font-size: 18px;
  line-height: 1.6;
  color: var(--color-text-muted);
  margin: 0 0 40px;
}
.legal__body h2 {
  font-size: 22px;
  font-weight: var(--weight-bold);
  color: var(--color-text);
  letter-spacing: -0.01em;
  margin: 40px 0 12px;
  line-height: 1.25;
}
.legal__body h3 {
  font-size: 17px;
  font-weight: var(--weight-semibold);
  color: var(--color-text);
  margin: 24px 0 8px;
  line-height: 1.3;
}
.legal__body p {
  font-size: 16px;
  line-height: 1.7;
  color: var(--color-text);
  margin: 0 0 16px;
}
.legal__body ul,
.legal__body ol {
  font-size: 16px;
  line-height: 1.7;
  color: var(--color-text);
  margin: 0 0 16px;
  padding-left: 22px;
}
.legal__body li { margin-bottom: 6px; }
.legal__body li::marker { color: var(--color-coral); }
.legal__body a {
  color: var(--color-teal);
  text-decoration: none;
  text-underline-offset: 2px;
  text-decoration-thickness: 1px;
}
.legal__body strong { font-weight: var(--weight-bold); color: var(--color-text); }
.legal__contact {
  display: none;
  margin-top: 48px;
  padding: 24px;
  background: var(--color-surface);
  border-radius: var(--radius-lg);
  border: 1px solid var(--color-border);
}
.legal__contact h3 {
  font-size: 16px;
  font-weight: var(--weight-bold);
  margin: 0 0 8px;
  color: var(--color-text);
}
.legal__contact p {
  font-size: 15px;
  line-height: 1.6;
  color: var(--color-text-muted);
  margin: 0;
}
.legal__contact a { color: var(--color-teal); font-weight: var(--weight-semibold); }

/* ============================================================
 * Stub pages (.stub__) — for /weekly-demo/, /support/, /resources/roi-calculator/
 * ============================================================ */
.stub-info {
  background: var(--color-bg);
  padding: 80px var(--container-padding);
}
.stub-info__inner {
  max-width: var(--container-max);
  margin: 0 auto;
}
.stub-info__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  margin-bottom: 40px;
}
.stub-info__card {
  background: var(--color-surface);
  border-radius: var(--radius-lg);
  padding: 28px;
  border: 1px solid var(--color-border);
}
.stub-info__card h3 {
  font-size: 18px;
  font-weight: var(--weight-bold);
  margin: 0 0 10px;
  color: var(--color-text);
}
.stub-info__card p {
  font-size: 15px;
  line-height: 1.6;
  color: var(--color-text-muted);
  margin: 0 0 14px;
}
.stub-info__card a {
  font-size: 14px;
  font-weight: var(--weight-semibold);
  color: var(--color-teal);
  text-decoration: none;
}
.stub-info__card ul {
  margin: 0;
  padding-left: 18px;
}
.stub-info__card li {
  font-size: 15px;
  line-height: 1.7;
  color: var(--color-text-muted);
}
.stub-info__notice {
  text-align: center;
  font-size: 14px;
  color: var(--color-text-muted);
  margin: 0;
}
@media (max-width: 700px) {
  .stub-info__grid { grid-template-columns: 1fr; }
}

/* ───────── ROI CALCULATOR (interactive) ───────── */
.roi-calc {
  background: var(--color-bg);
  padding: 80px var(--container-padding);
}
.roi-calc__inner {
  max-width: var(--container-max);
  margin: 0 auto;
}
.roi-calc__intro {
  text-align: center;
  max-width: 720px;
  margin: 0 auto 40px;
}
.roi-calc__chip {
  display: inline-block;
  font-size: 12px;
  font-weight: var(--weight-bold);
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--color-coral);
  background: rgba(255, 90, 111, 0.12);
  padding: 6px 14px;
  border-radius: var(--radius-pill);
  margin-bottom: 18px;
}
.roi-calc__intro h2 {
  font-size: clamp(26px, 3.2vw, 36px);
  font-weight: var(--weight-bold);
  letter-spacing: -0.015em;
  margin: 0 0 14px;
  color: var(--color-text);
  line-height: 1.2;
}
.roi-calc__intro h2 em { font-style: italic; color: var(--color-coral); }
.roi-calc__intro p {
  font-size: 17px;
  line-height: 1.6;
  color: var(--color-text-muted);
  margin: 0;
}

.roi-calc__widget {
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  gap: 24px;
  align-items: stretch;
}

/* Inputs panel */
.roi-calc__inputs {
  background: var(--color-surface);
  border-radius: var(--radius-xl);
  padding: 32px;
  border: 1px solid var(--color-border);
  box-shadow: var(--shadow-md);
}
.roi-calc__inputs-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 22px;
  padding-bottom: 18px;
  border-bottom: 1px solid var(--color-border);
}
.roi-calc__inputs-head h3 {
  font-size: 18px;
  font-weight: var(--weight-bold);
  letter-spacing: -0.01em;
  margin: 0;
}
.roi-calc__reset {
  font-size: 13px;
  font-weight: var(--weight-semibold);
  color: var(--color-text-muted);
  background: transparent;
  border: 1px solid var(--color-border);
  border-radius: var(--radius-pill);
  padding: 6px 14px;
  cursor: pointer;
  transition: color var(--t-fast), border-color var(--t-fast), background var(--t-fast);
}
.roi-calc__reset:hover {
  color: var(--color-coral);
  border-color: var(--color-coral);
  background: rgba(255, 90, 111, 0.06);
}

.roi-calc__cluster-head {
  font-size: 11px;
  font-weight: var(--weight-bold);
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--color-coral);
  margin: 4px 0 18px;
  padding-bottom: 8px;
  border-bottom: 1px dashed var(--color-border);
}
.roi-calc__cluster-head + .roi-calc__field { margin-top: 0; }
/* Separate the second cluster header from the preceding field */
.roi-calc__field + .roi-calc__cluster-head { margin-top: 28px; }

.roi-calc__field { margin-bottom: 22px; }
.roi-calc__field:last-child { margin-bottom: 0; }
.roi-calc__field-head {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  margin-bottom: 8px;
  gap: 12px;
}
.roi-calc__field-label {
  font-size: 14px;
  font-weight: var(--weight-semibold);
  color: var(--color-text);
}
.roi-calc__field-hint {
  font-size: 12px;
  color: var(--color-text-muted);
}
.roi-calc__field-row {
  display: flex;
  align-items: center;
  gap: 14px;
}
.roi-calc__slider {
  -webkit-appearance: none;
  appearance: none;
  flex: 1;
  height: 6px;
  background: var(--color-surface-3);
  border-radius: var(--radius-pill);
  outline: none;
  cursor: pointer;
}
.roi-calc__slider::-webkit-slider-thumb {
  -webkit-appearance: none;
  appearance: none;
  width: 20px;
  height: 20px;
  background: var(--color-coral);
  border-radius: 50%;
  border: 3px solid #fff;
  box-shadow: 0 2px 6px rgba(255, 90, 111, 0.35);
  cursor: grab;
  transition: transform var(--t-fast);
}
.roi-calc__slider::-webkit-slider-thumb:active { cursor: grabbing; transform: scale(1.1); }
.roi-calc__slider::-moz-range-thumb {
  width: 20px;
  height: 20px;
  background: var(--color-coral);
  border-radius: 50%;
  border: 3px solid #fff;
  box-shadow: 0 2px 6px rgba(255, 90, 111, 0.35);
  cursor: grab;
}
.roi-calc__slider:focus-visible::-webkit-slider-thumb { outline: 2px solid var(--color-coral); outline-offset: 2px; }
.roi-calc__number {
  width: 110px;
  padding: 10px 12px;
  font-size: 15px;
  font-weight: var(--weight-semibold);
  font-family: var(--font-primary);
  background: var(--color-surface-2);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  color: var(--color-text);
  text-align: right;
}
.roi-calc__number:focus { outline: 2px solid var(--color-coral); outline-offset: 1px; border-color: var(--color-coral); }
.roi-calc__field-prefix,
.roi-calc__field-suffix {
  font-size: 13px;
  color: var(--color-text-muted);
  font-weight: var(--weight-semibold);
}

/* Outputs panel */
.roi-calc__outputs {
  background: var(--gradient-depth);
  color: var(--color-text-on-dark);
  border-radius: var(--radius-xl);
  padding: 32px;
  display: flex;
  flex-direction: column;
}
.roi-calc__outputs-head {
  margin-bottom: 22px;
  padding-bottom: 18px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
}
.roi-calc__outputs-head h3 {
  font-size: 18px;
  font-weight: var(--weight-bold);
  letter-spacing: -0.01em;
  margin: 0 0 4px;
  color: #fff;
}
.roi-calc__outputs-head p {
  font-size: 13px;
  color: var(--color-text-on-dark-muted);
  margin: 0;
}
.roi-calc__grid {
  display: flex;
  flex-direction: column;
  gap: 14px;
  flex: 1;
}
.roi-calc__card {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--radius-lg);
  padding: 18px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  min-height: 110px;
}
.roi-calc__card--hero {
  grid-column: 1 / -1;
  background: rgba(255, 90, 111, 0.10);
  border-color: rgba(255, 90, 111, 0.28);
}
.roi-calc__card-label {
  font-size: 11px;
  font-weight: var(--weight-bold);
  letter-spacing: 0.10em;
  text-transform: uppercase;
  color: var(--color-text-on-dark-muted);
  margin-bottom: 8px;
}
.roi-calc__card--hero .roi-calc__card-label { color: var(--color-coral); }
.roi-calc__card-value {
  font-size: 30px;
  font-weight: var(--weight-bold);
  letter-spacing: -0.02em;
  color: #fff;
  line-height: 1.05;
  transition: opacity var(--t-fast);
}
.roi-calc__card--hero .roi-calc__card-value {
  font-size: clamp(34px, 4vw, 46px);
  color: var(--color-yellow);
}
.roi-calc__card-unit {
  display: inline-block;
  font-size: 13px;
  font-weight: var(--weight-semibold);
  color: var(--color-text-on-dark-muted);
  margin-left: 4px;
}
.roi-calc__actions {
  margin-top: 22px;
  padding-top: 18px;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}
.roi-calc__email-status {
  font-size: 12px;
  color: var(--color-mint);
  margin: 10px 0 0;
  min-height: 16px;
  opacity: 0;
  transition: opacity var(--t-base);
}
.roi-calc__email-status.is-visible { opacity: 1; }

/* Methodology */
.roi-calc__methodology {
  background: var(--color-surface);
  padding: 80px var(--container-padding);
}
.roi-calc__methodology-inner {
  max-width: 820px;
  margin: 0 auto;
}
.roi-calc__methodology h2 {
  font-size: clamp(24px, 2.8vw, 32px);
  font-weight: var(--weight-bold);
  letter-spacing: -0.015em;
  margin: 0 0 24px;
  color: var(--color-text);
  text-align: center;
}
.roi-calc__methodology h2 em { font-style: italic; color: var(--color-coral); }
.roi-calc__methodology p {
  font-size: 16px;
  line-height: 1.65;
  color: var(--color-text-muted);
  margin: 0 0 16px;
}
.roi-calc__methodology p:last-child { margin-bottom: 0; }
.roi-calc__methodology-note {
  margin-top: 24px;
  padding: 14px 18px;
  background: var(--color-surface-2);
  border-left: 3px solid var(--color-coral);
  border-radius: 0 var(--radius-md) var(--radius-md) 0;
  font-size: 14px;
  color: var(--color-text-muted);
}

/* Outcomes strip */
.roi-calc__outcomes {
  background: var(--color-surface-2);
  padding: 64px var(--container-padding);
}
.roi-calc__outcomes-inner {
  max-width: var(--container-max);
  margin: 0 auto;
  text-align: center;
}
.roi-calc__outcomes-label {
  display: block;
  font-size: 12px;
  font-weight: var(--weight-bold);
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--color-text-label);
  margin-bottom: 28px;
}
.roi-calc__outcomes-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}
.roi-calc__outcome-stat {
  font-size: clamp(28px, 3.4vw, 38px);
  font-weight: var(--weight-bold);
  color: var(--color-teal);
  letter-spacing: -0.02em;
  line-height: 1.05;
  margin-bottom: 6px;
}
.roi-calc__outcome-label {
  font-size: 13px;
  color: var(--color-text-muted);
  line-height: 1.4;
}

/* Responsive */
@media (max-width: 960px) {
  .roi-calc__widget { grid-template-columns: 1fr; }
  .roi-calc__outcomes-grid { grid-template-columns: repeat(2, 1fr); gap: 28px; }
}
@media (max-width: 600px) {
  .roi-calc { padding: 56px var(--container-padding); }
  .roi-calc__inputs, .roi-calc__outputs { padding: 24px; }
  .roi-calc__grid { grid-template-columns: 1fr; }
  .roi-calc__card--hero { grid-column: auto; }
  .roi-calc__field-row { flex-wrap: wrap; }
  .roi-calc__number { width: 100%; text-align: left; }
  .roi-calc__methodology, .roi-calc__outcomes { padding: 56px var(--container-padding); }
}

/* ─────────────────────────────────────────────────────────────────
   DATA FLYWHEEL (homepage centerpiece — Batch 3.5)
   Circular SVG layout on >=720px, stacked card layout on <720px.
   ───────────────────────────────────────────────────────────────── */
.flywheel {
  background: var(--color-bg-deep);
  color: var(--color-text-on-dark);
  padding: 112px 24px;
  position: relative;
  overflow: hidden;
}
.flywheel::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(800px 500px at 20% 0%, rgba(46, 196, 182, 0.10), transparent 65%),
    radial-gradient(700px 500px at 100% 100%, rgba(255, 90, 111, 0.12), transparent 65%);
  pointer-events: none;
}
.flywheel__inner {
  max-width: var(--container-max);
  margin: 0 auto;
  position: relative;
  z-index: 1;
}
.flywheel__head {
  text-align: center;
  max-width: 720px;
  margin: 0 auto 56px;
}
.flywheel__eyebrow {
}
.flywheel__heading {
  font-size: clamp(32px, 4vw, 52px);
  line-height: 1.1;
  letter-spacing: -0.02em;
  font-weight: var(--weight-bold);
  color: #fff;
  margin-bottom: 20px;
}
.flywheel__heading em {
  color: var(--color-coral);
  font-style: italic;
  font-weight: inherit;
}
.flywheel__sub {
  font-size: 17px;
  line-height: 1.55;
  color: rgba(255, 255, 255, 0.68);
}

.flywheel__stage {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 0 auto;
  max-width: 760px;
}

.flywheel__svg {
  width: 100%;
  height: auto;
  display: block;
  filter: drop-shadow(0 24px 80px rgba(255, 90, 111, 0.20));
}

/* Stacked-card fallback (mobile-only) */
.flywheel__list {
  display: none;
  list-style: none;
  margin: 0;
  padding: 0;
  width: 100%;
  max-width: 520px;
}
.flywheel__list-item {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 16px 20px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.10);
  border-radius: var(--radius-md);
  margin-bottom: 12px;
  position: relative;
}
.flywheel__list-item:not(:last-of-type)::after {
  content: "↓";
  position: absolute;
  left: 50%;
  bottom: -16px;
  transform: translateX(-50%);
  color: var(--color-coral);
  font-size: 14px;
  line-height: 1;
}
.flywheel__num {
  font-size: 20px;
  font-weight: var(--weight-bold);
  color: var(--color-yellow);
  font-family: var(--font-serif);
  min-width: 32px;
}
.flywheel__name {
  font-size: 15px;
  font-weight: var(--weight-semibold);
  color: #fff;
}
.flywheel__list-loop {
  margin-top: 16px;
  text-align: center;
  font-size: 12px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--color-coral);
  font-weight: var(--weight-bold);
}

.flywheel__caption {
  text-align: center;
  margin: 48px auto 0;
  max-width: 640px;
  font-size: 15px;
  line-height: 1.55;
  color: rgba(255, 255, 255, 0.55);
  font-style: italic;
}

@media (max-width: 720px) {
  .flywheel { padding: 80px 20px; }
  .flywheel__svg { display: none; }
  .flywheel__list { display: block; margin: 0 auto; }
  .flywheel__stage { min-height: 0; }
}

/* COMPETITIVE-MATRIX-START */
/* ─────────────────────────────────────────────────────────────────
   COMPETITIVE MATRIX (Batch 3.5)
   ───────────────────────────────────────────────────────────────── */
.competitive-matrix {
  background: var(--color-bg);
  padding: 96px 24px;
}
.competitive-matrix__inner {
  max-width: var(--container-max);
  margin: 0 auto;
}
.competitive-matrix__head {
  text-align: center;
  max-width: 760px;
  margin: 0 auto 56px;
}
.competitive-matrix__eyebrow {
}
.competitive-matrix__heading {
  font-size: clamp(28px, 3.4vw, 44px);
  line-height: 1.12;
  letter-spacing: -0.02em;
  font-weight: var(--weight-bold);
  color: var(--color-text);
  margin-bottom: 16px;
}
.competitive-matrix__heading em {
  color: var(--color-coral);
  font-style: italic;
  font-weight: inherit;
}
.competitive-matrix__sub {
  font-size: 16px;
  line-height: 1.55;
  color: var(--color-text-muted);
}

.competitive-matrix__table-wrap {
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: 0 12px 40px rgba(15, 76, 92, 0.06);
}
.competitive-matrix__table {
  width: 100%;
  border-collapse: collapse;
  text-align: left;
  font-size: 15px;
}
.competitive-matrix__table thead th {
  padding: 22px 24px;
  font-size: 12px;
  font-weight: var(--weight-bold);
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--color-text-muted);
  background: var(--color-surface-2);
  border-bottom: 1px solid var(--color-border);
  vertical-align: bottom;
}
.competitive-matrix__table thead th:first-child {
  color: var(--color-text);
  width: 36%;
}
.competitive-matrix__table thead th.is-aqurio {
  background: var(--color-teal);
  color: #fff;
  position: relative;
}
.competitive-matrix__table thead th.is-aqurio::after {
  content: "";
  position: absolute;
  inset: auto 0 0 0;
  height: 3px;
  background: var(--color-coral);
}
.competitive-matrix__table tbody tr {
  border-bottom: 1px solid var(--color-surface-3);
}
.competitive-matrix__table tbody tr:last-child { border-bottom: 0; }
.competitive-matrix__table tbody th {
  padding: 18px 24px;
  font-size: 14px;
  font-weight: var(--weight-semibold);
  color: var(--color-text);
  text-align: left;
  background: var(--color-surface);
}
.competitive-matrix__table tbody td {
  padding: 18px 24px;
  font-size: 14px;
  font-weight: var(--weight-semibold);
  vertical-align: middle;
}
.competitive-matrix__table tbody td.is-aqurio {
  background: rgba(15, 76, 92, 0.045);
  border-left: 1px solid rgba(15, 76, 92, 0.10);
  border-right: 1px solid rgba(15, 76, 92, 0.10);
}
.competitive-matrix__table tbody tr:last-child td.is-aqurio {
  border-bottom: 0;
}

.competitive-matrix__cell {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}
.competitive-matrix__cell--no {
  color: var(--color-text-label);
}
.competitive-matrix__cell--limited,
.competitive-matrix__cell--partial {
  color: var(--color-text-muted);
}
.competitive-matrix__cell--yes {
  color: var(--color-teal);
  font-weight: var(--weight-bold);
}
.competitive-matrix__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  font-size: 11px;
  font-weight: var(--weight-bold);
  flex-shrink: 0;
}
.competitive-matrix__icon--no {
  background: var(--color-fill);
  color: var(--color-text-label);
}
.competitive-matrix__icon--limited,
.competitive-matrix__icon--partial {
  background: rgba(255, 90, 111, 0.15);
  color: var(--color-coral);
}
.competitive-matrix__icon--yes {
  background: var(--color-teal);
  color: var(--color-yellow);
}

.competitive-matrix__callout {
  margin-top: 48px;
  text-align: center;
  font-size: clamp(22px, 2.8vw, 32px);
  font-weight: var(--weight-bold);
  line-height: 1.2;
  letter-spacing: -0.01em;
  color: var(--color-teal);
}
.competitive-matrix__callout em {
  color: var(--color-coral);
  font-style: italic;
  font-weight: inherit;
}

/* Mobile: stacked card layout */
@media (max-width: 760px) {
  .competitive-matrix__table thead,
  .competitive-matrix__table tbody tr { display: block; }
  .competitive-matrix__table thead {
    display: none;
  }
  .competitive-matrix__table tbody tr {
    padding: 20px 18px;
    border-bottom: 1px solid var(--color-surface-3);
  }
  .competitive-matrix__table tbody th {
    display: block;
    padding: 0 0 14px 0;
    font-size: 15px;
    background: transparent;
  }
  .competitive-matrix__table tbody td {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 8px 0;
    background: transparent;
    border: none;
    font-size: 13px;
  }
  .competitive-matrix__table tbody td::before {
    content: attr(data-label);
    font-size: 11px;
    font-weight: var(--weight-bold);
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--color-text-muted);
  }
  .competitive-matrix__table tbody td.is-aqurio {
    background: rgba(15, 76, 92, 0.04);
    border-radius: var(--radius-sm);
    padding: 10px 12px;
    margin-top: 4px;
  }
}

/* COMPETITIVE-MATRIX-END */

/* LEADERSHIP-CLAIMS-START */
/* ─────────────────────────────────────────────────────────────────
   QUANTIFIED CATEGORY LEADERSHIP (Batch 3.5)
   ───────────────────────────────────────────────────────────────── */
.leadership-claims {
  background: var(--color-bg-final);
  color: var(--color-text-on-dark);
  padding: 96px 24px;
  position: relative;
  overflow: hidden;
}
.leadership-claims::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(900px 500px at 50% -20%, rgba(255, 200, 87, 0.10), transparent 60%);
  pointer-events: none;
}
.leadership-claims__inner {
  max-width: var(--container-max);
  margin: 0 auto;
  position: relative;
  z-index: 1;
}
.leadership-claims__head {
  text-align: center;
  max-width: 720px;
  margin: 0 auto 56px;
}
.leadership-claims__eyebrow {
}
.leadership-claims__heading {
  font-size: clamp(32px, 4vw, 52px);
  line-height: 1.1;
  letter-spacing: -0.02em;
  font-weight: var(--weight-bold);
  color: #fff;
}
.leadership-claims__heading span {
  display: inline-block;
}
.leadership-claims__heading span + span { margin-left: 0.25em; }

.leadership-claims__grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 20px;
}
.leadership-claims__card {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.10);
  border-radius: var(--radius-lg);
  padding: 28px 24px 32px;
  display: flex;
  flex-direction: column;
  gap: 18px;
  position: relative;
  transition: transform 0.25s ease, border-color 0.25s ease, background 0.25s ease;
}
.leadership-claims__card:hover {
  transform: translateY(-4px);
  border-color: rgba(255, 90, 111, 0.45);
  background: rgba(255, 255, 255, 0.06);
}
.leadership-claims__label {
  font-size: 11px;
  font-weight: var(--weight-bold);
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--color-coral);
}
.leadership-claims__desc {
  font-size: 14px;
  line-height: 1.45;
  color: rgba(255, 255, 255, 0.75);
  flex: 1;
}
.leadership-claims__number {
  font-size: clamp(36px, 3.6vw, 48px);
  font-weight: var(--weight-bold);
  line-height: 1;
  letter-spacing: -0.02em;
  background: var(--color-coral);
  -webkit-background-clip: text;
          background-clip: text;
  color: transparent;
}

@media (max-width: 1080px) {
  .leadership-claims__grid { grid-template-columns: repeat(3, 1fr); }
  .leadership-claims__card:nth-child(4),
  .leadership-claims__card:nth-child(5) { grid-column: span 1; }
}
@media (max-width: 720px) {
  .leadership-claims { padding: 72px 20px; }
  .leadership-claims__grid { grid-template-columns: 1fr 1fr; gap: 14px; }
  .leadership-claims__card { padding: 22px 20px 24px; }
  .leadership-claims__card:last-child {
    grid-column: span 2;
  }
}
/* LEADERSHIP-CLAIMS-END */

/* ── All numbered stats use Lora display font ── */
.stats__value,
.testimonial__stat-value,
.stories__stat-value,
.resource-card__metric-value,
.leadership-claims__number { font-family: var(--font-display); }

/* ─── Leadership Bio Modal ─── */
.ldr-overlay {
  position: fixed;
  inset: 0;
  background: rgba(10,14,18,0.72);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, visibility 0.3s ease;
}
.ldr-overlay.is-open { opacity: 1; visibility: visible; }

.ldr-modal {
  background: #fff;
  border-radius: 16px;
  overflow: hidden;
  width: 100%;
  max-width: 900px;
  height: 440px;
  display: flex;
  flex-direction: column;
  box-shadow: 0 32px 80px rgba(0,0,0,0.35);
  transform: translateY(20px) scale(0.97);
  transition: transform 0.35s cubic-bezier(0.2,0.8,0.3,1);
}
.ldr-overlay.is-open .ldr-modal { transform: translateY(0) scale(1); }

/* Header */
.ldr-modal__header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  padding: 24px 28px 16px;
  flex-shrink: 0;
}
.ldr-modal__title-row {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-top: 4px;
}
.ldr-modal__name {
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 700;
  color: #0b1f24;
  margin: 0;
}
.ldr-modal__title {
  font-size: 11px;
  font-weight: var(--weight-bold);
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #4f6b73;
  margin: 0;
}
.ldr-modal__linkedin {
  color: var(--color-electric-indigo) !important;
  display: inline-flex;
  align-items: center;
  flex-shrink: 0;
  transition: color 0.15s;
}
.ldr-modal__linkedin:hover { color: #2A2FBF !important; }
.ldr-modal__close {
  background: none;
  border: none;
  cursor: pointer;
  padding: 0;
  display: inline-flex;
  align-items: center;
  flex-shrink: 0;
  transition: transform 0.15s;
}
.ldr-modal__close:hover { transform: scale(1.1); }
.ldr-modal__divider {
  border: none;
  border-top: 1px solid var(--color-border);
  margin: 0 28px;
  flex-shrink: 0;
}
/* Body — photo natural size, bio scrollable */
.ldr-modal__body {
  display: grid;
  grid-template-columns: 380px 1fr;
  gap: 28px;
  padding: 24px 28px;
  flex: 1;
  min-height: 0;
  overflow: hidden;
}
.ldr-modal__photo {
  width: 100%;
  height: auto;
  border-radius: 6px;
  object-fit: cover;
  object-position: center top;
  display: block;
  align-self: start;
}
.ldr-modal__bio {
  font-size: 15px;
  line-height: 1.7;
  color: #0b1f24;
  overflow-y: auto;
  scrollbar-width: thin;
  scrollbar-color: #C5C7CC #EAEBEE;
}
.ldr-modal__bio::-webkit-scrollbar { width: 6px; }
.ldr-modal__bio::-webkit-scrollbar-track { background: #EAEBEE; border-radius: 9999px; }
.ldr-modal__bio::-webkit-scrollbar-thumb { background: #C5C7CC; border-radius: 9999px; }
.ldr-modal__bio p { margin: 0 0 16px; }
.ldr-modal__bio p:last-child { margin: 0; }

@media (max-width: 680px) {
  .ldr-modal { height: auto; max-height: 85vh; }
  .ldr-modal__body { grid-template-columns: 1fr; }
  .ldr-modal__photo { height: 240px; }
}

/* ───────── DIFFERENTIATORS ───────── */
.differentiators { padding: 96px 24px; background: #e6f2f4; }
.differentiators__inner { max-width: var(--container-max); margin: 0 auto; }
.differentiators__header { display: flex; flex-direction: column; align-items: center; text-align: center; margin-bottom: 64px; }
.differentiators__eyebrow {
}
.differentiators__eyebrow::before {
  content: "";
  width: 10px;
  height: 10px;
  background: var(--color-coral);
  flex-shrink: 0;
}
.differentiators__headline { font-size: clamp(28px, 3.5vw, 44px); font-weight: 700; line-height: 1.2; max-width: 700px; margin: 0; }
.differentiators__cards { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.differentiators__card { padding: 44px 36px; background: #fff; border: 1px solid #D8E2E6; border-radius: 14px; transition: border-color 0.2s ease, box-shadow 0.2s ease, transform 0.2s ease; }
.differentiators__card:hover { border-color: #C8D8DC; box-shadow: 0 4px 20px rgba(0,0,0,0.06); transform: translateY(-6px); }
.differentiators__card-title { font-size: 24px; font-weight: 700; margin: 0 0 8px; }
.differentiators__card-sub { font-size: 12px; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; color: var(--color-coral); margin: 0 0 20px; }
.differentiators__card-body { font-size: 15px; line-height: 1.7; opacity: 0.8; margin: 0; }
@media (max-width: 860px) {
  .differentiators__cards { grid-template-columns: 1fr; }
}


/* ───────── HIDDEN SECTIONS ───────── */
.value-prop { display: none; }

/* ───────── SITE SEARCH ───────── */
.nav__search-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border: none;
  border-radius: 50%;
  background: transparent;
  color: #ffffff;
  cursor: pointer;
  transition: background 0.15s ease, color 0.15s ease;
  flex-shrink: 0;
}
.nav__search-btn:hover { background: rgba(255,255,255,0.1); }

.search-modal {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 9999;
  align-items: flex-start;
  justify-content: center;
  padding-top: 80px;
}
.search-modal.is-open {
  display: flex;
  animation: search-backdrop-in 0.2s ease forwards;
}
.search-modal.is-open .search-modal__panel {
  animation: search-panel-in 0.2s ease forwards;
}
@keyframes search-backdrop-in {
  from { opacity: 0; }
  to   { opacity: 1; }
}
@keyframes search-panel-in {
  from { opacity: 0; transform: translateY(-10px) scale(0.97); }
  to   { opacity: 1; transform: translateY(0)    scale(1);    }
}
.search-modal__backdrop {
  position: absolute;
  inset: 0;
  z-index: 0;
  background: rgba(0,0,0,0.6);
  backdrop-filter: blur(4px);
}
.search-modal__panel {
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: 640px;
  background: #ffffff;
  border-radius: 9999px;
  box-shadow: 0 24px 64px rgba(0,0,0,0.25);
  overflow: hidden;
  margin: 0 16px;
}
.search-modal__panel #search-pagefind { padding: 0; }
.search-modal__close {
  position: absolute;
  top: calc(3px * var(--pagefind-ui-scale, 0.8));
  right: calc(3px * var(--pagefind-ui-scale, 0.8));
  height: calc(58px * var(--pagefind-ui-scale, 0.8));
  width: calc(44px * var(--pagefind-ui-scale, 0.8));
  border: none;
  background: transparent;
  color: var(--color-text-muted);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: calc(var(--pagefind-ui-border-radius, 8px) * 0.8);
  z-index: 2;
  transition: background 0.15s ease;
}
.search-modal__close:hover { background: rgba(0,0,0,0.06); }

/* Pagefind UI overrides */
.pagefind-ui__search-clear { display: none !important; }
#search-pagefind { --pagefind-ui-border-radius: 9999px; --pagefind-ui-scale: 1; }
.pagefind-ui__search-input {
  border-radius: 9999px !important;
  border-color: transparent !important;
  background: transparent !important;
  font-family: var(--font-body) !important;
  box-shadow: none !important;
}
.pagefind-ui__search-input:focus {
  border-color: transparent !important;
  box-shadow: none !important;
  outline: none !important;
}
.pagefind-ui__drawer { padding: 0 16px 16px 16px !important; }
.pagefind-ui__result { position: relative !important; cursor: pointer; border-radius: 0 !important; transition: background-color 0.15s ease-in; }
.pagefind-ui__result-inner { padding-left: 16px !important; padding-right: 16px !important; }
.pagefind-ui__result:hover { background-color: rgba(0,0,0,0.04); }
.pagefind-ui__result-title { font-size: 16px !important; }
.pagefind-ui__result-link { color: var(--color-coral) !important; line-height: 1.2 !important; }
.pagefind-ui__button {
  background: #FFC857 !important;
  color: #333333 !important;
  border: 2px solid #FFC857 !important;
  font-family: var(--font-primary) !important;
  font-size: 13px !important;
  font-weight: var(--weight-semibold) !important;
  border-radius: var(--radius-pill) !important;
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  gap: 8px !important;
  padding: 10px 24px !important;
  width: 100% !important;
  cursor: pointer !important;
  transition: background 0.15s ease, border-color 0.15s ease !important;
}
.pagefind-ui__button:hover { background: #FFB31A !important; border-color: #FFB31A !important; }
.pagefind-ui__result-link::before { content: ''; position: absolute; inset: 0; z-index: 0; }
.search-modal__panel .pagefind-ui__results { max-height: 60vh; overflow-y: auto; }

html:has(body.search-open) { overflow: hidden; }
body.search-open { overflow: hidden; padding-right: var(--sb, 0px); }
body.search-open .nav { right: var(--sb, 0px); }

/* ============================================================
   BLOG POST PAGES (shared template — single source of truth)
   Category badges are also used on the blog index.
   ============================================================ */
.blog-cat { display:inline-block; font-size:10px; font-weight:700; letter-spacing:.08em; text-transform:uppercase; padding:3px 9px; border-radius:99px; font-family:var(--font-primary); }
.blog-cat--agentic-ai    { background:rgba(46,125,125,.12); color:#1B5E5E; }
.blog-cat--healthcare    { background:rgba(255,90,111,.1);  color:#B91C1C; }
.blog-cat--revenue-cycle { background:rgba(124,58,237,.1);  color:#6D28D9; }
.blog-cat--analytics     { background:rgba(37,99,235,.1);   color:#1D4ED8; }
.blog-cat--compliance    { background:rgba(71,85,105,.1);   color:#334155; }
.blog-cat--case-study    { background:rgba(217,119,6,.12);  color:#92400E; }
.blog-cat--agentic-ai-dk    { background:rgba(46,125,125,.3); color:#7FD4D4; }
.blog-cat--healthcare-dk    { background:rgba(255,90,111,.25); color:#FFA0AF; }
.blog-cat--revenue-cycle-dk { background:rgba(124,58,237,.25); color:#C4B5FD; }
.blog-cat--analytics-dk     { background:rgba(37,99,235,.25);  color:#93C5FD; }
.blog-cat--compliance-dk    { background:rgba(71,85,105,.25);  color:#CBD5E1; }
.blog-cat--case-study-dk    { background:rgba(217,119,6,.25);  color:#FCD34D; }

/* ── Post hero ───────────────────────────────────── */
.post-hero {
  padding: 128px 24px 80px;
  background: var(--color-bg-deep, #0A1A1F);
}
.post-hero__inner {
  max-width: 1160px; margin: 0 auto;
  display: grid; grid-template-columns: 1fr 1fr; gap: 56px; align-items: center;
}
.post-hero__breadcrumb {
  font-size: 12px; font-weight: 500; color: rgba(255,255,255,.4);
  margin-bottom: 20px; display: flex; align-items: center; gap: 6px;
}
.post-hero__breadcrumb a { color: rgba(255,255,255,.5); }
.post-hero__breadcrumb a:hover { color: rgba(255,255,255,.8); }
.post-hero h1 {
  font-family: var(--font-display);
  font-size: clamp(28px, 4vw, 44px);
  font-weight: 700; color: #fff; line-height: 1.15; margin: 16px 0 20px;
}
.post-hero__meta {
  font-size: 13px; color: rgba(255,255,255,.45); letter-spacing: .02em; margin-bottom: 24px;
}
.post-hero__meta span + span::before { content: " · "; }
.post-hero__excerpt {
  font-size: 16px; font-style: italic; color: rgba(255,255,255,.7); line-height: 1.7;
  max-width: 600px; margin: 0;
}
.post-hero__media img {
  width: 100%; aspect-ratio: 16 / 9; object-fit: cover;
  border-radius: 12px; display: block;
}
@media (max-width: 900px) {
  .post-hero__inner { grid-template-columns: 1fr; gap: 32px; }
  .post-hero__media { order: -1; }
}

/* ── Post body ───────────────────────────────────── */
.post-body {
  padding: 64px 24px;
  background: #fff;
}
.post-body__layout {
  max-width: 1160px; margin: 0 auto;
  display: grid; grid-template-columns: minmax(0, 1fr) 300px; gap: 64px;
  align-items: start;
}
.post-body__inner { max-width: 720px; }
.post-body__inner h2 {
  font-family: var(--font-display);
  font-size: clamp(20px, 2.5vw, 26px);
  font-weight: 700; color: #111827; line-height: 1.25;
  margin: 48px 0 16px; scroll-margin-top: 96px;
}

/* ── Post sidebar (sticky: share + table of contents) ── */
.post-sidebar {
  position: sticky; top: 92px; align-self: start;
  background: #F9FAFB; border-radius: 12px; padding: 20px;
}
.post-sidebar__sticky { display: flex; flex-direction: column; gap: 32px; }
.post-share h3, .post-toc h3 {
  font-family: var(--font-display); font-size: 15px; font-weight: 700; color: #6B7280;
  margin: 0 0 16px; padding-bottom: 14px; border-bottom: 1px solid #E5E7EB;
}
.post-share__links { display: flex; gap: 12px; }
.post-share__links a {
  width: 40px; height: 40px; border-radius: 8px;
  display: inline-flex; align-items: center; justify-content: center;
  color: #1f2937; box-shadow: inset 0 0 0 1px #E5E7EB; transition: box-shadow .15s, color .15s;
}
.post-share__links a:hover { box-shadow: inset 0 0 0 1px #2E7D7D; color: #2E7D7D; }
.post-share__links svg { width: 20px; height: 20px; }
.post-toc ol {
  list-style: decimal; padding-left: 22px; margin: 0;
  display: flex; flex-direction: column; gap: 16px;
}
.post-toc li { font-size: 14px; line-height: 1.45; color: #9CA3AF; }
.post-toc li::marker { color: #9CA3AF; }
.post-toc a { font-size: 14px !important; line-height: 1.45; }
.post-cta {
  background: var(--color-bg-deep, #0A1A1F); border-radius: 10px;
  padding: 22px 20px; text-align: center;
}
.post-cta__title {
  font-family: var(--font-display); font-size: 17px; font-weight: 700;
  color: #fff; margin: 0 0 8px; line-height: 1.3;
}
.post-cta__text {
  font-size: 13px; color: rgba(255,255,255,.7); line-height: 1.55; margin: 0 0 16px;
}
.post-cta .btn { width: 100%; justify-content: center; }

/* ── Mid-article inline CTA (breaks up long posts) ── */
.post-inline-cta {
  display: flex; align-items: center; justify-content: space-between; gap: 28px;
  margin: 44px 0; padding: 26px 30px;
  background: linear-gradient(135deg, #2E7D7D 0%, #1B5E5E 100%); border-radius: 12px;
}
.post-inline-cta__title {
  font-family: var(--font-display); font-size: 19px; font-weight: 700;
  color: #fff; margin: 0 0 4px; line-height: 1.3;
}
.post-body__inner .post-inline-cta p {
  font-size: 14px; color: rgba(255,255,255,.85); line-height: 1.5; margin: 0;
}
.post-inline-cta .btn { flex-shrink: 0; }
@media (max-width: 600px) {
  .post-inline-cta { flex-direction: column; align-items: flex-start; gap: 18px; }
  .post-inline-cta .btn { width: 100%; justify-content: center; }
}

/* ── End-of-article author card ──────────────────── */
.post-author {
  display: flex; gap: 16px; align-items: flex-start;
  margin: 56px 0 0; padding: 24px;
  background: #F9FAFB; border-radius: 12px;
}
.post-author__avatar {
  flex-shrink: 0; width: 56px; height: 56px; border-radius: 50%;
  background: #2E7D7D; color: #fff; object-fit: cover;
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-display); font-weight: 700; font-size: 18px; letter-spacing: .02em;
}
.post-author__name { font-family: var(--font-display); font-size: 16px; font-weight: 700; color: #111827; }
.post-author__role { font-size: 13px; font-weight: 600; color: #2E7D7D; margin: 2px 0 8px; }
.post-author__bio { font-size: 14px; color: #4B5563; line-height: 1.6; margin: 0; }
.post-author__link { font-size: 13px; font-weight: 600; margin-top: 8px; display: inline-block; }
@media (max-width: 900px) {
  .post-body__layout { grid-template-columns: 1fr; gap: 40px; }
  .post-body__inner { max-width: 720px; margin: 0 auto; }
  .post-sidebar { position: static; }
}
.post-body__inner h2:first-child { margin-top: 0; }
.post-body__inner h3 {
  font-family: var(--font-display);
  font-size: 18px; font-weight: 700; color: #1f2937; margin: 32px 0 12px;
}
.post-body__inner p {
  font-size: 16px; color: #374151; line-height: 1.8; margin: 0 0 20px;
}
.post-body__inner ul {
  margin: 0 0 20px; padding-left: 24px;
}
.post-body__inner ul li {
  font-size: 16px; color: #374151; line-height: 1.8; margin-bottom: 8px;
}
.post-body__inner blockquote {
  border-left: 3px solid #2E7D7D;
  padding: 16px 24px; margin: 32px 0;
  background: rgba(46,125,125,.05); border-radius: 0 8px 8px 0;
}
.post-body__inner blockquote p {
  font-size: 17px; font-style: italic; color: #1f2937; margin: 0;
}
.post-body__back {
  display: inline-flex; align-items: center; gap: 6px;
  font-size: 13px; font-weight: 600; color: #2E7D7D;
  margin-top: 48px;
}

/* ── Post footer CTA ─────────────────────────────── */
.post-footer-cta {
  padding: 80px 24px;
  background: linear-gradient(135deg, #061A1A 0%, #0D3B3B 50%, #2E7D7D 100%);
  text-align: center;
}
.post-footer-cta__inner { max-width: 560px; margin: 0 auto; }
.post-footer-cta h2 {
  font-family: var(--font-display);
  font-size: clamp(24px, 3vw, 34px);
  font-weight: 700; color: #fff; margin: 0 0 16px;
}
.post-footer-cta p {
  font-size: 16px; color: rgba(255,255,255,.65); line-height: 1.7; margin: 0 0 32px;
}

/* ============================================================
   ABOUT PAGE — origin, company timeline, awards
   (added for /company/about/)
   ============================================================ */
.about-imgph {
  border: 1.5px dashed rgba(15, 76, 92, 0.35);
  border-radius: 12px;
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  gap: 8px; padding: 24px; min-height: 200px;
  color: var(--color-text-secondary); font-size: 13px; text-align: center;
  background: rgba(15, 76, 92, 0.04);
}
.about-imgph i { width: 28px; height: 28px; opacity: 0.6; }

/* Origin — From IntelePeer to Aqurio */
.about-origin { background: var(--color-teal-tint); padding: 88px var(--container-padding); }
.about-origin__inner {
  max-width: var(--container-max); margin: 0 auto;
  display: grid; grid-template-columns: 0.9fr 1.1fr; gap: 56px; align-items: center;
}
.about-origin__body h2 {
  font-size: clamp(26px, 3.2vw, 40px); line-height: 1.15; letter-spacing: -0.01em;
  margin: 0 0 14px; color: var(--color-teal);
}
.about-origin__body h2 em { font-style: italic; color: var(--color-coral); }
.about-origin__body p { font-size: 17px; line-height: 1.65; color: var(--color-text-secondary); margin: 0 0 14px; }
.about-origin__body p:last-child { margin-bottom: 0; }

/* Company timeline */
.about-timeline { background: var(--color-surface); padding: 96px var(--container-padding); }
.about-timeline__inner { max-width: var(--container-max); margin: 0 auto; }
.about-timeline__head { text-align: center; max-width: 760px; margin: 0 auto 60px; }
.about-timeline__head h2 { font-size: clamp(28px, 3.6vw, 44px); line-height: 1.15; letter-spacing: -0.01em; margin: 0; }
.about-timeline__head h2 em { font-style: italic; color: var(--color-coral); }
.about-tl { display: flex; }
.about-tl__item { flex: 1; position: relative; text-align: center; padding: 0 6px; }
.about-tl__item::before {
  content: ""; position: absolute; top: 39px; right: 50%; width: 100%; height: 3px;
  background: #E5E7EB; z-index: 0;
}
.about-tl__item:first-child::before { display: none; }
.about-tl__item--aqurio::before { background: var(--color-teal); }
.about-tl__year { display: block; height: 26px; font-family: var(--font-primary); font-size: 14px; font-weight: 700; color: #43617A; }
.about-tl__dot {
  position: relative; z-index: 2; display: block; width: 16px; height: 16px; border-radius: 50%;
  background: #43617A; margin: 6px auto; box-shadow: 0 0 0 4px var(--color-surface);
}
.about-tl__label { font-size: 13px; line-height: 1.4; color: var(--color-text-secondary); margin: 12px 0 0; }
.about-tl__item--aqurio .about-tl__year { color: var(--color-teal); font-size: 15px; }
.about-tl__item--aqurio .about-tl__dot {
  width: 22px; height: 22px; margin-top: 3px; background: var(--color-teal);
  box-shadow: 0 0 0 4px var(--color-surface), 0 0 0 6px var(--color-coral);
}
.about-tl__item--aqurio .about-tl__label { color: var(--color-teal); font-weight: 600; }
.about-note { text-align: center; font-size: 12px; font-style: italic; color: var(--color-text-muted); margin: 30px 0 0; }

/* Awards & recognition */
.about-awards { background: var(--color-teal-tint); padding: 88px var(--container-padding); }
.about-awards__inner { max-width: var(--container-max); margin: 0 auto; }
.about-awards__head { text-align: center; max-width: 760px; margin: 0 auto 44px; }
.about-awards__head h2 { font-size: clamp(28px, 3.6vw, 44px); line-height: 1.15; letter-spacing: -0.01em; margin: 0 0 12px; color: var(--color-teal); }
.about-awards__head h2 em { font-style: italic; color: var(--color-coral); }
.about-awards__head p { font-size: 17px; line-height: 1.6; color: var(--color-text-secondary); margin: 0; }
.about-awards__grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }
.about-award { background: var(--color-surface); border-radius: 14px; padding: 24px 18px; text-align: center; }
.about-award__logo {
  height: 64px; display: flex; align-items: center; justify-content: center; margin-bottom: 14px;
  border: 1.5px dashed rgba(15, 76, 92, 0.3); border-radius: 10px;
  color: var(--color-text-secondary); background: rgba(15, 76, 92, 0.03);
}
.about-award__logo i { width: 24px; height: 24px; opacity: 0.6; }
.about-award__title { font-size: 15px; font-weight: 600; color: var(--color-teal); margin: 0 0 4px; line-height: 1.3; }
.about-award__meta { font-size: 12px; color: var(--color-text-muted); margin: 0; }

@media (max-width: 900px) { .about-awards__grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 768px) {
  .about-origin { padding: 60px var(--container-padding); }
  .about-origin__inner { grid-template-columns: 1fr; gap: 32px; }
  .about-timeline { padding: 64px var(--container-padding); }
  .about-awards { padding: 60px var(--container-padding); }
  .about-tl { flex-direction: column; padding-left: 8px; }
  .about-tl__item { flex: none; text-align: left; padding: 0 0 26px 30px; }
  .about-tl__item::before { top: 6px; left: 7px; right: auto; width: 3px; height: 100%; }
  .about-tl__item:first-child::before { display: block; }
  .about-tl__item:last-child::before { height: 22px; }
  .about-tl__dot { position: absolute; left: 0; top: 4px; margin: 0; }
  .about-tl__item--aqurio .about-tl__dot { left: -3px; }
  .about-tl__year { height: auto; }
  .about-tl__label { margin: 3px 0 0; }
}
@media (max-width: 480px) { .about-awards__grid { grid-template-columns: 1fr; } }

/* About page — real-image overlay (drops in over the dashed placeholder when the file exists) */
.about-imgph, .about-award__logo { position: relative; overflow: hidden; }
.about-fillimg {
  position: absolute; inset: 0; width: 100%; height: 100%;
  object-fit: contain; padding: 12px; box-sizing: border-box; background: #fff;
}

/* About page — core values (dark band) */
.about-values { background: var(--color-bg-deep); padding: 96px var(--container-padding); }
.about-values__inner { max-width: var(--container-max); margin: 0 auto; }
.about-values__head { text-align: center; max-width: 760px; margin: 0 auto 52px; }
.about-values__head h2 { font-size: clamp(28px, 3.6vw, 44px); line-height: 1.15; letter-spacing: -0.01em; margin: 0; color: #fff; }
.about-values__head h2 em { font-style: italic; color: var(--color-coral); }
.about-values__grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }
.about-value { background: rgba(255, 255, 255, 0.04); border: 1px solid rgba(255, 255, 255, 0.08); border-radius: 14px; padding: 28px 22px; }
.about-value__icon { width: 48px; height: 48px; border-radius: 12px; background: rgba(255, 200, 87, 0.14); color: var(--color-signal-yellow); display: flex; align-items: center; justify-content: center; margin-bottom: 18px; }
.about-value__icon i { width: 24px; height: 24px; }
.about-value h3 { font-size: 19px; line-height: 1.2; margin: 0 0 8px; color: #fff; }
.about-value p { font-size: 14px; line-height: 1.6; color: var(--color-text-secondary-dark, #9FBCC3); margin: 0; }
@media (max-width: 900px) { .about-values__grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 768px) { .about-values { padding: 64px var(--container-padding); } }
@media (max-width: 480px) { .about-values__grid { grid-template-columns: 1fr; } }

/* ============================================================
   About page — INTERACTIVE PINNED TIMELINE (progressive enhancement)
   ============================================================ */
.about-tlx { position: relative; background: var(--color-surface); }
.about-tlx__sticky { display: flex; flex-direction: column; }
.about-tlx__head { text-align: center; padding: 72px var(--container-padding) 12px; }
.about-tlx__head h2 { font-size: clamp(26px, 3.4vw, 42px); line-height: 1.15; letter-spacing: -0.01em; margin: 0 auto; max-width: 820px; }
.about-tlx__head h2 em { font-style: italic; color: var(--color-coral); }
.about-tlx__viewport { display: flex; align-items: center; overflow-x: auto; overflow-y: hidden; -webkit-overflow-scrolling: touch; }
.about-tlx__track { display: flex; align-items: stretch; gap: 40px; padding: 30px max(24px, calc((100% - 1160px) / 2)); position: relative; }
.about-tlx__track::before { content: ""; position: absolute; left: 0; right: 0; top: 62px; height: 3px; background: #E5E7EB; z-index: 0; }
.tlx-card { position: relative; z-index: 1; flex: 0 0 320px; }
.tlx-card__node { width: 64px; height: 64px; border-radius: 50%; background: var(--color-surface); border: 3px solid #43617A; color: #43617A; display: flex; align-items: center; justify-content: center; margin-bottom: 22px; box-shadow: 0 0 0 8px var(--color-surface); }
.tlx-card__node i { width: 28px; height: 28px; }
.tlx-card__year { font-family: var(--font-primary); font-size: 13px; font-weight: 700; letter-spacing: 0.1em; color: #43617A; margin-bottom: 6px; }
.tlx-card__title { font-size: 22px; line-height: 1.15; margin: 0 0 10px; }
.tlx-card__desc { font-size: 15px; line-height: 1.6; color: var(--color-text-secondary); margin: 0; }
.tlx-card--aqurio .tlx-card__node { background: var(--color-teal); border-color: var(--color-teal); color: #fff; box-shadow: 0 0 0 8px var(--color-surface), 0 0 0 11px var(--color-coral); }
.tlx-card--aqurio .tlx-card__year, .tlx-card--aqurio .tlx-card__title { color: var(--color-teal); }
.about-tlx__foot { padding: 8px var(--container-padding) 64px; }
.about-tlx__progress { max-width: 1160px; margin: 0 auto; height: 4px; background: #E5E7EB; border-radius: 4px; overflow: hidden; }
.about-tlx__progress-bar { display: block; height: 100%; width: 0; background: var(--color-teal); }
.about-tlx__hint { text-align: center; font-size: 12px; letter-spacing: 0.04em; color: var(--color-text-muted); margin: 14px 0 0; }

.about-tlx--pinned .about-tlx__sticky { position: sticky; top: 0; height: 100vh; min-height: 600px; overflow: hidden; justify-content: center; }
.about-tlx--pinned .about-tlx__viewport { flex: 1; overflow: hidden; }
.about-tlx--pinned .about-tlx__track { will-change: transform; }
.about-tlx:not(.about-tlx--pinned) .about-tlx__progress { display: none; }

@media (max-width: 900px) {
  .about-tlx__head { padding: 56px var(--container-padding) 8px; }
  .tlx-card { flex-basis: 258px; }
  .about-tlx__foot { padding-bottom: 48px; }
}

/* ============================================================
   About page — interactive scroll timeline (pinned scrubber)
   ============================================================ */
.tlab { position: relative; background: var(--color-surface); }
.tlab__sticky { display: flex; flex-direction: column; }
.tlab__head { text-align: center; padding: 8px 24px 0; }
.tlab__head h2 { font-family: var(--font-display); font-size: clamp(26px, 3.4vw, 42px); line-height: 1.15; margin: 10px 0 0; }
.tlab__head h2 em { font-style: italic; color: var(--color-coral); }
.tlab__stage { position: relative; display: flex; align-items: center; justify-content: center; margin: clamp(80px, 15vh, 190px) 0; }
.tlab__year { position: absolute; top: 50%; left: 50%; transform: translate(-50%, -60%); font-family: var(--font-display); font-weight: 600; font-size: clamp(140px, 24vw, 300px); color: rgba(15, 76, 92, 0.06); letter-spacing: -0.02em; pointer-events: none; z-index: 0; user-select: none; }
.tlab__details { position: relative; z-index: 1; width: 100%; max-width: 640px; height: 200px; padding: 0 24px; text-align: center; }
.tlab-detail { position: absolute; inset: 0; display: flex; flex-direction: column; align-items: center; justify-content: center; opacity: 0; transform: translateY(18px); transition: opacity 0.5s ease, transform 0.5s ease; pointer-events: none; }
.tlab-detail.is-active { opacity: 1; transform: none; pointer-events: auto; }
.tlab-detail__icon { width: 74px; height: 74px; border-radius: 18px; background: var(--color-teal-tint); color: var(--color-teal); display: flex; align-items: center; justify-content: center; margin-bottom: 20px; }
.tlab-detail__icon i { width: 34px; height: 34px; }
.tlab-detail.is-aqurio .tlab-detail__icon { background: var(--color-teal); color: #fff; box-shadow: 0 0 0 4px var(--color-surface), 0 0 0 7px var(--color-coral); }
.tlab-detail__year { font-size: 13px; font-weight: 700; letter-spacing: 0.14em; color: #43617A; margin-bottom: 10px; }
.tlab-detail.is-aqurio .tlab-detail__year { color: var(--color-teal); }
.tlab-detail__title { font-family: var(--font-display); font-size: 31px; line-height: 1.12; margin: 0 0 12px; color: var(--color-text-primary); }
.tlab-detail.is-aqurio .tlab-detail__title { color: var(--color-teal); }
.tlab-detail__desc { font-size: 16px; line-height: 1.6; color: var(--color-text-secondary); margin: 0; }
.tlab-rail { position: relative; width: 100%; max-width: 1000px; margin: 0 auto; padding: 6px 44px 56px; }
.tlab-rail__track { position: relative; display: flex; justify-content: space-between; }
.tlab-rail__line { position: absolute; left: 24px; right: 24px; top: 24px; height: 3px; background: #E5E7EB; border-radius: 3px; }
.tlab-rail__fill { position: absolute; left: 24px; top: 24px; height: 3px; width: 0; background: var(--color-teal); border-radius: 3px; transition: width 0.12s linear; }
.tlab-node { position: relative; width: 48px; flex: 0 0 48px; background: none; border: 0; padding: 0; cursor: pointer; }
.tlab-node__dot { width: 48px; height: 48px; border-radius: 50%; background: #fff; border: 2px solid #E5E7EB; color: #B4B2A9; display: flex; align-items: center; justify-content: center; box-shadow: 0 0 0 6px var(--color-surface); transition: border-color 0.3s, color 0.3s, background 0.3s, transform 0.3s; }
.tlab-node__dot i { width: 22px; height: 22px; }
.tlab-node__year { position: absolute; top: 60px; left: 50%; transform: translateX(-50%); font-size: 12px; font-weight: 600; letter-spacing: 0.05em; color: var(--color-text-muted); transition: color 0.3s; white-space: nowrap; }
.tlab-node.is-lit .tlab-node__dot { border-color: var(--color-teal); color: var(--color-teal); }
.tlab-node.is-lit .tlab-node__year { color: #43617A; }
.tlab-node.is-current .tlab-node__dot { background: var(--color-teal); border-color: var(--color-teal); color: #fff; transform: scale(1.08); }
.tlab-node.is-current .tlab-node__year { color: var(--color-teal); font-weight: 700; }
.tlab-node--aqurio.is-current .tlab-node__dot { box-shadow: 0 0 0 6px var(--color-surface), 0 0 0 9px var(--color-coral); }
.tlab-node:focus-visible { outline: none; }
.tlab-node:focus-visible .tlab-node__dot { box-shadow: 0 0 0 6px var(--color-surface), 0 0 0 9px var(--color-signal-yellow); }
.tlab__hint { text-align: center; font-size: 12px; letter-spacing: 0.06em; color: var(--color-text-muted); padding: 4px 0 28px; transition: opacity 0.35s; }

.tlab--pinned .tlab__sticky { position: sticky; top: 0; height: 100vh; min-height: 600px; overflow: hidden; justify-content: center; padding-top: var(--nav-h); box-sizing: border-box; }

.tlab--static .tlab__year, .tlab--static .tlab-rail, .tlab--static .tlab__hint { display: none; }
.tlab--static .tlab__stage { margin: 36px 0; }
.tlab--static .tlab__details { position: static; height: auto; max-width: 680px; margin: 0 auto; padding: 0; }
.tlab--static .tlab-detail { position: static; opacity: 1; transform: none; pointer-events: auto; padding: 32px 24px; border-top: 1px solid #eef1f2; }
.tlab--static .tlab-detail:first-child { border-top: 0; }

/* About page — awards as 2 badge cards */
.about-awards__grid--2 { grid-template-columns: repeat(2, 1fr); max-width: 520px; margin: 0 auto; gap: 24px; }
.about-award__badge { position: relative; overflow: hidden; height: 128px; display: flex; align-items: center; justify-content: center; margin-bottom: 12px; color: var(--color-text-muted); }
.about-award__badge i { width: 26px; height: 26px; opacity: 0.5; }
.about-award__badge .about-fillimg { background: transparent; padding: 6px; }
@media (max-width: 600px) { .about-awards__grid--2 { grid-template-columns: 1fr; max-width: 300px; } }

/* ============================================================
   Company mega-menu — video poster CTA column + video modal
   ============================================================ */
/* widen the Company menu on large screens to fit the 4th (video) column */
@media (min-width: 1101px) {
  .nav__item[data-menu="company"] .mega-menu { width: 1120px; }
}
.mega-menu__col--video { flex: 1.35 1 0; border-right: none; padding-right: 0; border-left: 1px solid var(--color-border); padding-left: 28px; display: flex; }
.mega-menu__videocard {
  position: relative; width: 100%; min-height: 210px; display: flex; flex-direction: column;
  justify-content: flex-end; padding: 16px; border: 0; cursor: pointer; text-align: left;
  border-radius: 10px; overflow: hidden; color: #fff;
  background: linear-gradient(to top, rgba(10,26,31,0.92) 0%, rgba(10,26,31,0.30) 45%, rgba(10,26,31,0.05) 100%), url('/images/video/aqurio-sizzle-poster.jpg') center / cover no-repeat;
}
.mega-menu__videocard-play {
  position: absolute; top: 42%; left: 50%; transform: translate(-50%, -50%);
  width: 48px; height: 48px; border-radius: 50%; background: rgba(255,255,255,0.92); color: var(--color-teal);
  display: flex; align-items: center; justify-content: center; transition: transform 150ms ease, background 150ms ease;
}
.mega-menu__videocard-play i { width: 22px; height: 22px; margin-left: 2px; }
.mega-menu__videocard:hover .mega-menu__videocard-play { transform: translate(-50%, -50%) scale(1.08); background: #fff; }
.mega-menu__videocard-body { position: relative; z-index: 1; }
.mega-menu__videocard-eyebrow { display: block; font-size: 9px; font-weight: var(--weight-bold); letter-spacing: 0.12em; text-transform: uppercase; color: var(--color-signal-yellow); margin-bottom: 5px; }
.mega-menu__videocard-title { display: block; font-size: 14px; font-weight: var(--weight-semibold); line-height: 1.25; color: #fff; }
.mega-menu__videocard-cta { display: inline-flex; align-items: center; gap: 5px; font-size: 12px; font-weight: var(--weight-semibold); color: var(--color-signal-yellow); margin-top: 7px; }

/* Video modal (sizzle reel) */
.video-modal { position: fixed; inset: 0; z-index: 2000; display: flex; align-items: center; justify-content: center; padding: 28px; background: rgba(10,26,31,0.85); }
.video-modal[hidden] { display: none; }
.video-modal__dialog { position: relative; width: 100%; max-width: 980px; }
.video-modal__video { display: block; width: 100%; height: auto; aspect-ratio: 16 / 9; max-height: 82vh; object-fit: contain; background: #000; border-radius: 12px; box-shadow: var(--shadow-lg); }
.video-modal__close { position: absolute; top: -46px; right: 0; width: 38px; height: 38px; border-radius: 50%; border: 0; background: rgba(255,255,255,0.16); color: #fff; display: flex; align-items: center; justify-content: center; cursor: pointer; transition: background 150ms ease; }
.video-modal__close:hover { background: rgba(255,255,255,0.30); }
.video-modal__close i { width: 20px; height: 20px; }
@media (max-width: 560px) { .video-modal { padding: 16px; } .video-modal__close { top: 0; right: 0; transform: translateY(-118%); } }

/* About page — Brand Foundation (header + 6-card grid) */
.about-foundation { background: var(--color-bg); padding: 88px var(--container-padding); }
.about-foundation__inner { max-width: var(--container-max); margin: 0 auto; }
.about-foundation__head { text-align: center; max-width: 720px; margin: 0 auto 48px; }
.about-foundation__head h2 { font-family: var(--font-display); font-size: clamp(28px, 3.6vw, 44px); line-height: 1.15; margin: 0; }
.about-foundation__head h2 em { font-style: italic; color: var(--color-coral); }
.about-foundation__grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.about-foundation__card { background: var(--color-surface); border-radius: 14px; padding: 28px 24px; }
.about-foundation__icon { width: 44px; height: 44px; border-radius: 11px; background: var(--color-teal-tint); color: var(--color-teal); display: flex; align-items: center; justify-content: center; margin-bottom: 16px; }
.about-foundation__icon i { width: 22px; height: 22px; }
.about-foundation__card h3 { font-family: var(--font-primary); font-size: 12px; font-weight: 700; letter-spacing: 0.12em; text-transform: uppercase; color: var(--color-coral); margin: 0 0 10px; }
.about-foundation__card p { font-size: 15px; line-height: 1.6; color: var(--color-text-secondary); margin: 0; }
.about-foundation__pron { color: var(--color-text-muted); font-style: italic; }
@media (max-width: 900px) { .about-foundation__grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 600px) { .about-foundation { padding: 56px var(--container-padding); } .about-foundation__grid { grid-template-columns: 1fr; } }

/* About timeline — lede under the headline */
.tlab__lede { max-width: 620px; margin: 14px auto 0; font-size: 15px; line-height: 1.6; color: var(--color-text-secondary); }

/* About page — The Flywheel */
.about-flywheel { background: var(--color-bg); padding: 96px var(--container-padding); }
.about-flywheel__inner { max-width: var(--container-max); margin: 0 auto; }
.about-flywheel__head { text-align: center; max-width: 840px; margin: 0 auto 52px; }
.about-flywheel__head h2 { font-family: var(--font-display); font-size: clamp(28px, 3.6vw, 44px); line-height: 1.15; margin: 0 0 16px; }
.about-flywheel__head h2 em { font-style: italic; color: var(--color-coral); }
.about-flywheel__head p { font-size: 17px; line-height: 1.6; color: var(--color-text-muted); margin: 0; }
.about-flywheel__grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; margin-bottom: 48px; }
.about-flywheel__card { background: var(--color-surface); border-radius: 14px; padding: 28px 24px; }
.about-flywheel__icon { width: 48px; height: 48px; border-radius: 12px; background: var(--color-teal-tint); color: var(--color-teal); display: flex; align-items: center; justify-content: center; margin-bottom: 18px; }
.about-flywheel__icon i { width: 24px; height: 24px; }
.about-flywheel__card h3 { font-size: 19px; line-height: 1.2; margin: 0 0 10px; color: var(--color-text-primary); }
.about-flywheel__card p { font-size: 14px; line-height: 1.6; color: var(--color-text-secondary); margin: 0; }
.about-flywheel__quote { font-family: var(--font-display); font-style: italic; font-size: clamp(20px, 2.6vw, 28px); line-height: 1.4; color: var(--color-teal); text-align: center; max-width: 860px; margin: 0 auto; border: 0; padding: 0; }
@media (max-width: 900px) { .about-flywheel__grid { grid-template-columns: 1fr; } }
@media (max-width: 768px) { .about-flywheel { padding: 64px var(--container-padding); } }

/* About page — By the Numbers */
.about-numbers { background: var(--color-surface); padding: 88px var(--container-padding); }
.about-numbers__inner { max-width: var(--container-max); margin: 0 auto; }
.about-numbers__head { text-align: center; margin: 0 auto 46px; }
.about-numbers__head h2 { font-family: var(--font-display); font-size: clamp(28px, 3.6vw, 44px); line-height: 1.15; margin: 0; }
.about-numbers__head h2 em { font-style: italic; color: var(--color-coral); }
.about-numbers__grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; max-width: 1000px; margin: 0 auto; }
.about-numbers__stat { text-align: center; padding: 30px 18px; background: var(--color-bg); border-radius: 14px; }
.about-numbers__value { display: block; font-family: var(--font-display); font-size: clamp(38px, 5vw, 56px); line-height: 1; color: var(--color-teal); margin-bottom: 10px; }
.about-numbers__label { display: block; font-size: 14px; line-height: 1.45; color: var(--color-text-secondary); }
@media (max-width: 760px) { .about-numbers__grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 460px) { .about-numbers__grid { grid-template-columns: 1fr; } }

/* About page — card hover lift */
.about-foundation__card, .about-flywheel__card, .about-numbers__stat, .about-award, .about-value {
  transition: transform 200ms ease, box-shadow 200ms ease, background 200ms ease, border-color 200ms ease;
}
.about-foundation__card:hover, .about-flywheel__card:hover, .about-numbers__stat:hover, .about-award:hover {
  transform: translateY(-4px);
  box-shadow: 0 14px 30px rgba(11, 31, 36, 0.12);
}
.about-value:hover {
  transform: translateY(-4px);
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.18);
}
@media (prefers-reduced-motion: reduce) {
  .about-foundation__card, .about-flywheel__card, .about-numbers__stat, .about-award, .about-value { transition: none; }
  .about-foundation__card:hover, .about-flywheel__card:hover, .about-numbers__stat:hover, .about-award:hover, .about-value:hover { transform: none; }
}

/* ───────── Resource landing pages (gated download) ───────── */
.res-lp {
  background: #e6f2f4;
  padding: calc(var(--nav-h) + 72px) var(--container-padding) 96px;
  position: relative;
}
.res-lp__inner {
  max-width: var(--container-max);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 64px;
  align-items: start;
}
.res-lp__content { color: var(--color-text-primary); min-width: 0; }
.res-lp__crumbs { display: flex; flex-wrap: wrap; align-items: center; gap: 8px; font-size: 13px; color: var(--color-text-muted); margin-bottom: 22px; }
.res-lp__crumbs a:hover { text-decoration: none; }
.res-lp__title { font-family: var(--font-display); font-size: clamp(30px, 4vw, 48px); line-height: 1.12; letter-spacing: -0.01em; color: var(--color-text-primary); margin: 14px 0 18px; }
.res-lp__subtitle { font-size: clamp(17px, 1.6vw, 20px); line-height: 1.5; color: var(--color-text-secondary); margin: 0 0 26px; max-width: 62ch; }
.res-lp__lead { font-family: var(--font-display); font-size: clamp(20px, 2vw, 24px); line-height: 1.25; color: var(--color-text-primary); margin: 24px 0 12px; }
.res-lp__body { font-size: 16px; line-height: 1.65; color: var(--color-text-secondary); margin: 0 0 16px; max-width: 62ch; }
.res-lp__inside { margin-top: 34px; }
.res-lp__inside-title { font-size: 13px; font-weight: var(--weight-bold); letter-spacing: 0.12em; text-transform: uppercase; color: var(--color-text-primary); margin: 0 0 18px; }
.res-lp__list { list-style: none; margin: 0; padding: 0; display: flex; flex-direction: column; gap: 14px; }
.res-lp__list li { display: flex; gap: 12px; align-items: flex-start; font-size: 15px; line-height: 1.5; color: var(--color-text-secondary); }
.res-lp__list li i, .res-lp__list li svg { color: var(--color-mint); flex-shrink: 0; width: 20px; height: 20px; margin-top: 1px; }
.res-lp__stats { display: flex; flex-wrap: wrap; gap: 26px 40px; margin-top: 36px; padding-top: 32px; border-top: 1px solid rgba(11,31,36,0.12); }
.res-lp__stat { flex: 1 1 120px; min-width: 110px; display: flex; flex-direction: column; gap: 6px; }
.res-lp__stat-num { font-family: var(--font-display); font-size: clamp(26px, 2.6vw, 34px); line-height: 1; color: var(--color-teal); }
.res-lp__stat-label { font-size: 12.5px; line-height: 1.4; color: var(--color-text-secondary); }
.res-lp__closing { margin-top: 28px; font-size: 16px; font-style: italic; line-height: 1.5; color: var(--color-text-secondary); max-width: 62ch; }
/* Form card */
.res-lp__aside { position: sticky; top: calc(var(--nav-h) + 20px); }
.res-lp__card { background: #fff; border-radius: 16px; overflow: hidden; box-shadow: 0 20px 48px rgba(15,76,92,0.16); border: 1px solid rgba(15,76,92,0.06); }
.res-lp__card-body { padding: 32px 28px 30px; }
.res-lp__form-title { font-family: var(--font-display); font-size: 24px; line-height: 1.2; color: var(--color-text-primary); margin: 0 0 6px; }
.res-lp__form-note { font-size: 14px; color: var(--color-text-secondary); margin: 0 0 20px; }
@media (max-width: 900px) {
  .res-lp__inner { grid-template-columns: 1fr; gap: 40px; }
  .res-lp__aside { position: static; max-width: 480px; }
}
@media (max-width: 480px) {
  .res-lp { padding: calc(var(--nav-h) + 40px) var(--container-padding) 64px; }
}
