/* =============================================================
   Boston App Developers — OrangeLoops lead-gen landing page
   Maps the OrangeLoops Enterprise layout vocabulary onto a
   single, responsive, conversion-focused scrolling page.
   ============================================================= */
@import url("colors_and_type.css");

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

html {
  scroll-behavior: smooth;
  scroll-padding-top: 88px;
  overflow-x: clip;
}

body {
  margin: 0;
  background: var(--ol-cloud);
  color: var(--ol-black);
  font-family: var(--font-sans);
  -webkit-font-smoothing: antialiased;
  overflow-x: clip;
}

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

/* link reset — design-system stylesheet underlines all <a> */
a { border-bottom: 0; padding-bottom: 0; }

.wrap {
  width: 100%;
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 40px;
}

section { position: relative; }

/* ===================== Buttons ============================= */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 10px;
  font-family: var(--font-sans); font-weight: 600; font-size: 17px; line-height: 1;
  padding: 17px 30px; border-radius: var(--radius); cursor: pointer;
  text-decoration: none; border: 1px solid transparent; white-space: nowrap;
  transition: transform var(--dur-fast) var(--ease-out),
              background var(--dur-fast) var(--ease-out),
              box-shadow var(--dur-fast) var(--ease-out),
              border-color var(--dur-fast) var(--ease-out),
              filter var(--dur-fast) var(--ease-out),
              color var(--dur-fast) var(--ease-out);
}
.btn .arr { font-size: 1.05em; line-height: 0; transition: transform var(--dur-fast) var(--ease-out); }
.cta-primary { background: var(--ol-orange); color: var(--ol-black); }
.cta-primary:hover {
  background: var(--ol-black); color: var(--ol-orange);
  transform: translateY(-2px);
  box-shadow: 0 10px 24px -8px rgba(0,0,0,.5);
}
.cta-primary:hover .arr { transform: translateX(3px); }
.cta-primary:active { transform: translateY(0) scale(.99); box-shadow: 0 4px 12px -8px rgba(0,0,0,.45); }
.cta-secondary {
  background: transparent; color: var(--ol-black);
  border-color: rgba(0,0,0,.26);
}
.cta-secondary:hover {
  background: var(--ol-black); color: var(--ol-cloud);
  border-color: var(--ol-black); transform: translateY(-2px);
  box-shadow: 0 10px 24px -10px rgba(0,0,0,.5);
}
.cta-secondary:active { transform: translateY(0) scale(.99); }
.btn-dark { background: var(--ol-black); color: var(--ol-cloud); }
.btn-dark:hover {
  background: #1d1d1d; color: var(--ol-cloud);
  transform: translateY(-2px);
  box-shadow: 0 10px 24px -10px rgba(0,0,0,.55);
}
.btn-dark:active { transform: translateY(0) scale(.99); }
.btn-sm { font-size: 15px; padding: 12px 22px; }

/* on-dark variants */
.on-dark .cta-secondary,
.dark-band .cta-secondary { color: var(--ol-cloud); border-color: rgba(240,239,235,.42); }
.on-dark .cta-secondary:hover,
.dark-band .cta-secondary:hover {
  background: var(--ol-cloud); color: var(--ol-black);
  border-color: var(--ol-cloud); transform: translateY(-2px);
  box-shadow: 0 10px 24px -10px rgba(0,0,0,.5);
}

/* primary button on dark surfaces: flip orange → cloud so it stays visible */
.dark-band .cta-primary:hover,
.on-dark .cta-primary:hover {
  background: var(--ol-cloud); color: var(--ol-black);
  box-shadow: 0 10px 24px -8px rgba(0,0,0,.55);
}

/* text link CTA (→ inline) */
.link-cta {
  display: inline-flex; align-items: center; gap: 9px;
  font-size: 18px; font-weight: 600; color: var(--ol-black);
  text-decoration: none; border-bottom: 0;
  transition: gap var(--dur-fast) var(--ease-out), color var(--dur-fast);
}
.link-cta .arr { color: var(--ol-orange); transition: transform var(--dur-fast) var(--ease-out); }
.link-cta:hover { color: var(--ol-orange); }
.link-cta:hover .arr { transform: translateX(4px); }

/* ===================== Pill eyebrow ======================== */
.pill {
  display: inline-flex; align-items: center; gap: 9px;
  background: var(--ol-cloud-90); color: var(--ol-black);
  font-weight: 600; font-size: 14px; letter-spacing: .02em; white-space: nowrap;
  padding: 9px 16px 9px 13px; border-radius: var(--radius); width: fit-content;
}
.pill .ico { width: 16px; height: 16px; color: var(--ol-orange); display: inline-flex; }
.pill .ico svg { width: 100%; height: 100%; }
.dark-band .pill, .on-dark .pill { background: rgba(240,239,235,.1); color: var(--ol-cloud); }

/* accent word inside headings */
.accent { color: var(--ol-orange); }

/* ===================== Top nav ============================= */
.site-nav {
  position: sticky; top: 0; z-index: 60;
  transition: background var(--dur-base) var(--ease-out),
              box-shadow var(--dur-base) var(--ease-out),
              backdrop-filter var(--dur-base);
}
.site-nav.scrolled {
  background: rgba(240,239,235,.72);
  backdrop-filter: blur(14px) saturate(1.4);
  box-shadow: 0 1px 0 var(--ol-divider-on-light);
}

/* ---- Inverted nav over dark sections ---- */
.site-nav.nav-dark .wordmark { color: var(--ol-cloud); }
.site-nav.nav-dark .nav-links a { color: var(--ol-cloud-80); }
.site-nav.nav-dark .nav-links a:hover { color: var(--ol-orange); }
.site-nav.nav-dark .cta-primary:hover {
  background: var(--ol-cloud);
  color: var(--ol-black);
}
.site-nav.nav-dark.scrolled {
  background: rgba(0,0,0,.62);
  box-shadow: 0 1px 0 var(--ol-divider-on-dark);
}
.nav-inner {
  display: flex; align-items: center; justify-content: space-between;
  height: 76px;
}
.nav-links { display: flex; align-items: center; gap: 26px; }
.nav-links a {
  font-size: 16px; font-weight: 500; color: var(--ol-ink-70);
  text-decoration: none; border-bottom: 0; transition: color var(--dur-fast);
}
.nav-links a:hover { color: var(--ol-orange); }
.nav-right { display: flex; align-items: center; gap: 32px; }

/* Logo lockup */
.lockup { display: inline-flex; align-items: center; gap: 11px; text-decoration: none; border-bottom: 0; }
.lockup .tile {
  width: 42px; height: 42px; border-radius: 11px; flex-shrink: 0;
  display: flex; align-items: center; justify-content: center; background: var(--ol-orange);
}
.lockup .tile img { width: 70%; height: 70%; }
.lockup .wordmark {
  font-weight: 700; font-size: 25px; line-height: .78;
  letter-spacing: -.02em; display: flex; flex-direction: column; margin-top: -.04em;
  color: var(--ol-black);
}
.lockup .wordmark span:nth-child(2) { padding-left: .42em; }
.lockup.on-dark .wordmark { color: var(--ol-cloud); }

/* ===================== Section rhythm ====================== */
.section { padding: 104px 0; }
.section-tight { padding: 72px 0; }
.dark-band { background: var(--ol-black); color: var(--ol-cloud); }

.section-head { max-width: 760px; }
.section-head.center { margin: 0 auto; text-align: center; }
.section-head h2 {
  font-size: clamp(34px, 4.4vw, 56px); font-weight: 800;
  letter-spacing: -.03em; line-height: 1.03; margin: 20px 0 0;
}
.section-head p {
  font-size: 20px; line-height: 1.5; color: var(--ol-ink-60);
  margin: 22px 0 0; max-width: 56ch;
}

/* ===================== Hero ================================ */
.hero { padding: 40px 0 72px; overflow: hidden; }
.hero-pixels {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
  pointer-events: none;
  /* fade the field out behind the left-aligned copy so text stays crisp */
  -webkit-mask-image: linear-gradient(90deg, transparent 0%, transparent 30%, rgba(0,0,0,.55) 52%, #000 78%);
          mask-image: linear-gradient(90deg, transparent 0%, transparent 30%, rgba(0,0,0,.55) 52%, #000 78%);
}
.hero-grid {
  display: block;
  position: relative;
  z-index: 1;
}
.hero h1 { max-width: 16ch; }
.hero-claim {
  font-size: clamp(24px, 3vw, 38px); font-weight: 700; line-height: 1.1;
  letter-spacing: -.018em; color: var(--ol-black); margin: 16px 0 0; max-width: 20ch;
}
.hero .lede { max-width: 60ch; }
.eyebrow {
  display: inline-flex; align-items: center; gap: 11px;
  font-size: 14px; font-weight: 600; letter-spacing: .02em; color: var(--ol-ink-60);
}
.eyebrow .dot { width: 7px; height: 7px; border-radius: 2px; background: var(--ol-orange); }
.hero h1 {
  font-size: clamp(40px, 5vw, 66px); font-weight: 800; line-height: 1.0;
  letter-spacing: -.02em; margin: 20px 0 0; max-width: 14ch;
}
.hero .lede {
  font-size: 19px; line-height: 1.5; color: var(--ol-ink-60);
  margin: 22px 0 0; max-width: 54ch;
}
.hero .cta-row { display: flex; flex-wrap: wrap; gap: 14px; margin-top: 28px; }
.hero .trust-line {
  margin-top: 40px; padding-top: 28px; border-top: 1px solid var(--ol-divider-on-light);
  font-size: 15px; font-weight: 500; color: var(--ol-ink-50);
  display: flex; flex-wrap: wrap; gap: 10px 18px; align-items: center;
}
.hero .trust-line .sep { width: 4px; height: 4px; border-radius: 50%; background: var(--ol-ink-30); }

/* Client logos inside hero */
.hero-logos {
  margin-top: 30px; padding-top: 26px;
  border-top: 1px solid var(--ol-divider-on-light);
  max-width: 900px;
}
.hl-label {
  margin: 0 0 18px; font-size: 13px; font-weight: 600;
  letter-spacing: .12em; text-transform: uppercase; color: var(--ol-ink-50);
}
.logo-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 34px 36px;
  align-items: center;
  justify-items: center;
  max-width: 760px;
}
.logo-cell {
  height: 42px; width: 100%;
  display: flex; align-items: center; justify-content: center;
}
.logo-cell img {
  /* base optical cap — individual logos tuned below so they weigh evenly */
  max-height: 26px; max-width: 100%; width: auto; height: auto;
  object-fit: contain;
  /* unify every logo to one ink-grey silhouette on the cream field */
  filter: grayscale(1) brightness(0);
  opacity: .5;
  transition: opacity var(--dur-base) var(--ease-out);
}
.logo-cell img:hover { opacity: .78; }
/* per-logo optical sizing — order matches the markup */
.logo-cell:nth-child(1) img { max-height: 34px; }   /* Grubhub */
.logo-cell:nth-child(2) img { max-height: 25px; }   /* WHOOP */
.logo-cell:nth-child(3) img { max-height: 23px; }   /* Forrester */
.logo-cell:nth-child(4) img { max-height: 40px; }   /* BIDMC (detailed stack) */
.logo-cell:nth-child(5) img { max-height: 34px; }   /* Lexington */
.logo-cell:nth-child(6) img { max-height: 36px; }   /* Verve Motion (two-line) */
.logo-cell:nth-child(7) img { max-height: 31px; }   /* till */
.logo-cell:nth-child(8) img { max-height: 37px; }   /* loog */
.logo-cell:nth-child(9) img { max-height: 37px; }   /* DUST Identity */
.logo-cell:nth-child(10) img { max-height: 36px; }  /* Opt-In */

/* Inline contact card (hero right) */
.hero-media { align-self: center; }
.hero-media .mock-dark { aspect-ratio: 4 / 3.3; }
.hero-form-card {
  background: var(--ol-pure-white); border: 1px solid var(--ol-divider-on-light);
  border-radius: var(--radius-xl); box-shadow: var(--shadow-2);
  padding: 34px; align-self: start;
}
.hero-form-card .hf-head { display: flex; align-items: baseline; justify-content: space-between; gap: 14px; }
.hero-form-card h2 { font-size: 24px; font-weight: 700; letter-spacing: -.02em; margin: 0; }
.hero-form-card .hf-tag {
  font-size: 12px; font-weight: 600; color: var(--ol-orange);
  text-transform: uppercase; letter-spacing: .12em; white-space: nowrap;
}
.hero-form-card p.hf-sub { font-size: 15px; color: var(--ol-ink-60); margin: 8px 0 0; line-height: 1.45; }

/* ===================== Forms ============================== */
.field { display: flex; flex-direction: column; gap: 7px; }
.field label { font-size: 14px; font-weight: 600; color: var(--ol-ink-80); }
.field label .opt { font-weight: 500; color: var(--ol-ink-40); }
.field input,
.field select,
.field textarea {
  font-family: var(--font-sans); font-size: 16px; color: var(--ol-black);
  background: var(--ol-cloud-95); border: 1px solid var(--ol-divider-on-light);
  border-radius: var(--radius); padding: 13px 15px; width: 100%;
  transition: border-color var(--dur-fast), box-shadow var(--dur-fast), background var(--dur-fast);
}
.field textarea { resize: vertical; min-height: 84px; }
.field input::placeholder, .field textarea::placeholder { color: var(--ol-ink-40); }
.field input:focus,
.field select:focus,
.field textarea:focus {
  outline: none; background: var(--ol-pure-white);
  border-color: var(--ol-orange); box-shadow: var(--shadow-orange-ring);
}
.field select { appearance: none; cursor: pointer;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='14' height='14' viewBox='0 0 24 24' fill='none' stroke='%235C5C5C' stroke-width='2.4'%3E%3Cpath d='M6 9l6 6 6-6'/%3E%3C/svg%3E");
  background-repeat: no-repeat; background-position: right 14px center; padding-right: 40px;
}
.contact-form { display: flex; flex-direction: column; gap: 16px; }
.hero-form-card .contact-form { margin-top: 22px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.contact-form .btn { width: 100%; margin-top: 4px; }
.form-fineprint { font-size: 13px; color: var(--ol-ink-50); margin: 0; text-align: center; line-height: 1.5; }

.form-success {
  display: none; flex-direction: column; align-items: center; text-align: center;
  gap: 14px; padding: 28px 18px;
}
.form-success.show { display: flex; }
.form-success .check {
  width: 52px; height: 52px; border-radius: 50%; background: var(--ol-orange);
  display: flex; align-items: center; justify-content: center; color: var(--ol-black);
}
.form-success .check svg { width: 26px; height: 26px; }
.form-success h3 { margin: 0; font-size: 22px; font-weight: 700; letter-spacing: -.01em; }
.form-success p { margin: 0; font-size: 16px; color: var(--ol-ink-60); max-width: 36ch; }

/* ===================== Trust strip ========================= */
.trust-strip { padding: 56px 0; border-bottom: 1px solid var(--ol-divider-on-light); }
.trust-strip .lead {
  text-align: center; font-size: 14px; font-weight: 600; letter-spacing: .12em;
  text-transform: uppercase; color: var(--ol-ink-50); margin: 0 0 36px;
}
.logo-row {
  display: flex; align-items: center; justify-content: center;
  gap: 30px 64px; flex-wrap: wrap;
}
.logo-row .lg {
  font-weight: 700; font-size: 28px; letter-spacing: -.01em; color: var(--ol-ink-40);
  filter: grayscale(1); transition: color var(--dur-base);
}
.logo-row .lg.serif { font-family: Georgia, 'Times New Roman', serif; font-weight: 600; letter-spacing: .02em; }
.logo-img {
  height: 30px; width: auto; max-width: 160px; object-fit: contain;
  filter: grayscale(1); opacity: .5;
  transition: opacity var(--dur-base) var(--ease-out);
}
.logo-img.tall { height: 46px; }
.logo-img:hover { opacity: .85; }

/* ===================== Feature split ======================= */
.feature {
  display: grid; grid-template-columns: 1fr 1.12fr; gap: 84px; align-items: center;
}
.feature-copy,
.feature-media { min-width: 0; }
.feature.flip .feature-copy { order: 2; }
.feature.flip .feature-media { order: 1; }
.feature-copy h2 {
  font-size: clamp(32px, 4vw, 50px); font-weight: 800; line-height: 1.04;
  letter-spacing: -.028em; margin: 22px 0 0; max-width: 15ch;
}
.feature-copy .geo {
  position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px;
  overflow: hidden; clip: rect(0 0 0 0); white-space: nowrap; border: 0;
}
.feature-copy p {
  font-size: 20px; line-height: 1.55; color: var(--ol-ink-60);
  margin: 24px 0 0; max-width: 46ch;
}
.feature-copy .link-cta { margin-top: 32px; }

/* ---- Dark product-UI mockup card (App Development) -------- */
.mock {
  position: relative; border-radius: var(--radius-xl); overflow: hidden;
  box-shadow: var(--shadow-2);
}
.mock-dark {
  background: var(--ol-black); border: 1px solid var(--ol-divider-on-dark);
  aspect-ratio: 4 / 3.1;
}
.mock-dark .mk-bar {
  display: flex; align-items: center; gap: 7px; padding: 16px 20px;
  border-bottom: 1px solid var(--ol-divider-on-dark);
}
.mock-dark .mk-bar .dot { width: 11px; height: 11px; border-radius: 50%; background: var(--ol-ink-70); }
.mock-dark .mk-bar .mk-title {
  margin-left: 10px; font-size: 13px; font-weight: 600; color: var(--ol-ink-40);
  font-family: var(--font-mono); letter-spacing: .02em;
}
.mock-dark .mk-body { display: grid; grid-template-columns: 116px 1fr; height: calc(100% - 54px); }
.mock-dark .mk-rail { border-right: 1px solid var(--ol-divider-on-dark); padding: 16px 12px; display: flex; flex-direction: column; gap: 6px; }
.mk-rail .rail-item { display: flex; align-items: center; gap: 9px; padding: 9px 10px; border-radius: 7px; font-size: 13px; font-weight: 500; color: var(--ol-ink-40); }
.mk-rail .rail-item .sq { width: 14px; height: 14px; border-radius: 4px; background: var(--ol-ink-70); flex-shrink: 0; }
.mk-rail .rail-item.active { background: rgba(240,239,235,.07); color: var(--ol-cloud); }
.mk-rail .rail-item.active .sq { background: var(--ol-orange); }
.mock-dark .mk-main { padding: 20px; display: flex; flex-direction: column; gap: 14px; }
.mk-main .mk-pillrow { display: flex; gap: 8px; }
.mk-main .mk-chip { font-size: 12px; font-weight: 600; padding: 6px 11px; border-radius: 6px; background: rgba(240,239,235,.08); color: var(--ol-ink-30); }
.mk-main .mk-chip.on { background: var(--ol-orange); color: var(--ol-black); }
.mk-main .mk-window { flex: 1; border: 1px solid var(--ol-divider-on-dark); border-radius: 10px; padding: 16px; display: flex; flex-direction: column; gap: 11px; }
.mk-window .mk-h { font-size: 14px; font-weight: 600; color: var(--ol-cloud); }
.mk-window .ln { height: 8px; border-radius: 4px; background: rgba(240,239,235,.12); }
.mk-window .ln.w90 { width: 90%; } .mk-window .ln.w70 { width: 70%; } .mk-window .ln.w55 { width: 55%; } .mk-window .ln.w40 { width: 40%; }
.mk-window .ln.accent { background: var(--ol-orange); opacity: .85; }
.mk-main .mk-status { display: flex; align-items: center; gap: 9px; font-size: 12px; font-family: var(--font-mono); color: var(--ol-ink-40); }
.mk-main .mk-status .pulse { width: 8px; height: 8px; border-radius: 50%; background: var(--ol-orange); }

/* ---- Light roster/scorecard card (Teams) ----------------- */
.mock-light {
  background: var(--ol-pure-white); border: 1px solid var(--ol-divider-on-light);
  aspect-ratio: 4 / 3.1; padding: 26px; display: flex; flex-direction: column; gap: 16px;
}
.mock-light .ml-head { display: flex; align-items: center; justify-content: space-between; }
.mock-light .ml-head .ml-title { font-size: 15px; font-weight: 700; }
.mock-light .ml-head .ml-tag { font-size: 12px; font-weight: 600; color: var(--ol-ink-50); font-family: var(--font-mono); }
.roster { display: flex; flex-direction: column; gap: 10px; }
.roster .person {
  display: flex; align-items: center; gap: 13px;
  border: 1px solid var(--ol-divider-on-light); border-radius: 10px; padding: 13px 15px;
}
.roster .avatar { width: 34px; height: 34px; border-radius: 9px; background: var(--ol-cloud-90); flex-shrink: 0; }
.roster .person.lead .avatar { background: var(--ol-orange); }
.roster .meta { flex: 1; display: flex; flex-direction: column; gap: 5px; }
.roster .meta .ln { height: 8px; border-radius: 4px; background: var(--ol-cloud-90); }
.roster .meta .ln.role { width: 46%; height: 7px; background: var(--ol-cloud-80); }
.roster .meta .ln.name { width: 64%; }
.roster .score { display: flex; gap: 4px; }
.roster .score .bar { width: 7px; height: 22px; border-radius: 2px; background: var(--ol-cloud-90); }
.roster .score .bar.on { background: var(--ol-orange); }
.mock-light .ml-foot { margin-top: auto; display: flex; align-items: center; justify-content: space-between; font-size: 13px; color: var(--ol-ink-50); }
.mock-light .ml-foot .scorecard { display: inline-flex; align-items: center; gap: 8px; font-weight: 600; color: var(--ol-ink-70); }
.mock-light .ml-foot .scorecard .ico { width: 16px; height: 16px; color: var(--ol-orange); }

/* discovery checklist (inside mock-light) */
.dlist { display: flex; flex-direction: column; gap: 10px; }
.dlist .ditem {
  display: flex; align-items: center; gap: 13px;
  border: 1px solid var(--ol-divider-on-light); border-radius: 10px; padding: 14px 16px;
  font-size: 16px; font-weight: 600; color: var(--ol-ink-40);
}
.dlist .ditem.done { color: var(--ol-black); }
.dlist .dcheck {
  width: 22px; height: 22px; border-radius: 6px; flex-shrink: 0;
  display: flex; align-items: center; justify-content: center;
  border: 1px solid var(--ol-divider-on-light); background: var(--ol-cloud-90);
}
.dlist .ditem.done .dcheck { background: var(--ol-orange); border-color: var(--ol-orange); color: var(--ol-black); }
.dlist .dcheck svg { width: 14px; height: 14px; }

/* ---- AI: glass card on tinted orange gradient ------------ */
.media-tint {
  position: relative; aspect-ratio: 4 / 3.1; border-radius: var(--radius-xl); overflow: hidden;
  background: linear-gradient(150deg, #f7dcc9 0%, #ffb38a 55%, var(--ol-orange) 135%);
  box-shadow: var(--shadow-2);
}
.ai-run {
  position: absolute; top: 8%; left: 8%; right: 8%;
  display: flex; align-items: center; gap: 11px;
  background: var(--ol-pure-white); border-radius: var(--radius-lg);
  box-shadow: 0 16px 44px -16px rgba(0,0,0,.4); padding: 15px 18px;
}
.ai-run .ar-ic {
  width: 32px; height: 32px; border-radius: 9px; flex-shrink: 0;
  display: flex; align-items: center; justify-content: center;
  background: var(--ol-orange); color: var(--ol-black);
}
.ai-run .ar-ic svg { width: 18px; height: 18px; }
.ai-run .ar-name { font-size: 18px; font-weight: 700; color: var(--ol-black); }
.ai-run .ar-status {
  margin-left: auto; display: inline-flex; align-items: center; gap: 7px;
  font-size: 14px; font-weight: 600; color: var(--ol-ink-50);
}
.ai-run .ar-status .dot {
  width: 8px; height: 8px; border-radius: 50%; background: var(--ol-orange);
  animation: sdRing 1.6s var(--ease-out) infinite;
}

.ai-steps {
  position: absolute; left: 8%; right: 8%; top: 27%;
  background: var(--ol-pure-white); border-radius: var(--radius-lg);
  box-shadow: 0 22px 60px -18px rgba(0,0,0,.45); padding: 9px; overflow: hidden;
}
@property --on { syntax: '<number>'; initial-value: 0; inherits: true; }
.ai-steps .step {
  display: flex; align-items: center; gap: 12px; padding: 12px 12px;
  border-radius: 9px;
  color: color-mix(in oklab, var(--ol-ink-30), var(--ol-black) calc(var(--on) * 100%));
  background: color-mix(in oklab, transparent, rgba(254,86,0,.07) calc(var(--on) * 100%));
}
.ai-steps .step.s1 { animation: aiOn1 6.6s linear infinite; }
.ai-steps .step.s2 { animation: aiOn2 6.6s linear infinite; }
.ai-steps .step.s3 { animation: aiOn3 6.6s linear infinite; }
.ai-steps .step.s4 { animation: aiOn4 6.6s linear infinite; }
/* status disc — fills orange and reveals the check as each step completes */
.ai-steps .st {
  width: 24px; height: 24px; border-radius: 50%; flex-shrink: 0;
  display: flex; align-items: center; justify-content: center;
  border: 2px solid color-mix(in oklab, var(--ol-ink-30), transparent calc(var(--on) * 100%));
  background: color-mix(in oklab, transparent, var(--ol-orange) calc(var(--on) * 100%));
}
.ai-steps .st .ck { width: 14px; height: 14px; opacity: var(--on); }
.ai-steps .step .act { font-size: 16px; font-weight: 600; }
.ai-steps .step.final .act { color: inherit; }
.ai-steps .step.final .act strong { color: var(--ol-orange); font-weight: 700; }
/* connected-system chip — lights up while its step is active */
.ai-steps .sys {
  margin-left: auto; display: inline-flex; align-items: center; gap: 8px;
  font-size: 13px; font-weight: 600;
  color: color-mix(in oklab, var(--ol-ink-30), var(--ol-ink-70) calc(var(--on) * 100%));
}
.ai-steps .sys .ic {
  width: 24px; height: 24px; border-radius: 7px; flex-shrink: 0;
  display: flex; align-items: center; justify-content: center;
  filter: saturate(calc(var(--on))) brightness(calc(0.75 + var(--on) * 0.25));
  box-shadow: 0 0 0 calc(var(--on) * 3px) rgba(254,86,0,.28);
}
.ai-steps .sys .ic svg { width: 14px; height: 14px; color: #fff; }

@keyframes aiOn1 { 0%,7%{--on:0} 11%,91%{--on:1} 100%{--on:0} }
@keyframes aiOn2 { 0%,25%{--on:0} 29%,91%{--on:1} 100%{--on:0} }
@keyframes aiOn3 { 0%,43%{--on:0} 47%,91%{--on:1} 100%{--on:0} }
@keyframes aiOn4 { 0%,62%{--on:0} 66%,91%{--on:1} 100%{--on:0} }

/* ===================================================================
   SERVICE DIAGRAMS — free-floating mockups on the light page
   App = device mockups · Teams = org + scorecard · Discovery = flow
   All motion is always-on CSS loops (no scroll trigger).
   =================================================================== */
.sd {
  position: relative; aspect-ratio: 4 / 3.25;
  display: flex; align-items: center; justify-content: center;
}
/* soft brand glow behind the focal point (user opted in to glows) */
.sd::before {
  content: ""; position: absolute; z-index: 0; pointer-events: none;
  width: 66%; height: 60%; border-radius: 50%;
  background: radial-gradient(circle, rgba(254,86,0,.16), rgba(254,86,0,0) 70%);
  filter: blur(26px);
}
.sd-app::before  { right: 4%;  top: 8%; }
.sd-teams::before { left: 38%; bottom: 4%; width: 56%; }
.sd-disc::before  { left: 50%; top: 50%; transform: translate(-50%,-50%); width: 48%; height: 48%; }

/* ---- 1 · App — phone + monitor device mockups ------------- */
.sd-app { display: block; }
.sd-monitor { position: absolute; left: 0; top: 4%; width: 86%; z-index: 1; }
.sd-screen {
  position: relative; border-radius: 13px 13px 4px 4px;
  background: var(--ol-black); border: 1px solid #1c1c1c;
  box-shadow: var(--shadow-2); overflow: hidden;
  aspect-ratio: 16 / 10.2; display: flex; flex-direction: column;
  color: var(--ol-cloud);
}
.sd-topbar {
  display: flex; align-items: center; gap: 8px; flex-shrink: 0;
  padding: 10px 13px; border-bottom: 1px solid var(--ol-divider-on-dark);
}
.sd-topbar .tile { width: 16px; height: 16px; border-radius: 5px; background: var(--ol-orange); flex-shrink: 0; }
.sd-topbar .nm { font-size: 11px; font-weight: 600; color: var(--ol-cloud); }
.sd-topbar .nav { margin-left: 14px; display: flex; gap: 12px; }
.sd-topbar .nav span { font-size: 10px; color: var(--ol-ink-40); font-weight: 500; }
.sd-topbar .nav span.on { color: var(--ol-cloud); }
.sd-topbar .who { margin-left: auto; width: 16px; height: 16px; border-radius: 50%; background: rgba(240,239,235,.18); }
.sd-body { flex: 1; display: flex; flex-direction: column; gap: 10px; padding: 13px 15px; min-height: 0; }
.sd-buildhd { display: flex; align-items: center; justify-content: space-between; }
.sd-buildhd .t { font-size: 11px; font-weight: 600; color: var(--ol-cloud); }
.sd-buildhd .ai { font-family: var(--font-mono); font-size: 9.5px; color: var(--ol-ink-40); }

/* sequential PR-style flow: spec → build → senior review → production */
.sd-flowv { position: relative; flex: 1; display: flex; flex-direction: column; min-height: 0; }
.sd-flowv .rail { position: absolute; left: 10px; top: 12.5%; bottom: 12.5%; width: 2px; background: rgba(240,239,235,.1); }
.sd-flowv .token {
  position: absolute; left: 5px; top: 12.5%; width: 12px; height: 12px; border-radius: 3px;
  background: var(--ol-cloud); transform: translateY(-50%); z-index: 2;
  animation: sdRun 6.4s var(--ease-in-out) infinite, sdTokenGlow 6.4s var(--ease-in-out) infinite;
}
.sd-step { position: relative; flex: 1; display: grid; grid-template-columns: 22px 1fr auto; align-items: center; gap: 11px; }
.sd-step .ic {
  width: 22px; height: 22px; border-radius: 6px; z-index: 1;
  background: rgba(240,239,235,.06); border: 1px solid var(--ol-divider-on-dark);
  display: flex; align-items: center; justify-content: center; color: var(--ol-ink-30);
}
.sd-step .ic svg { width: 12px; height: 12px; }
.sd-step .nm { display: flex; flex-direction: column; gap: 1px; min-width: 0; }
.sd-step .nm b { font-size: 11px; font-weight: 600; color: var(--ol-cloud); line-height: 1.1; }
.sd-step .nm small { font-size: 9px; font-family: var(--font-mono); color: var(--ol-ink-40); }
.sd-step .st { font-family: var(--font-mono); font-size: 9px; color: var(--ol-ink-40); white-space: nowrap; }
.sd-step.gate .ic { animation: sdGateIc 6.4s var(--ease-in-out) infinite; }
.sd-step.gate .st { animation: sdGateSt 6.4s var(--ease-in-out) infinite; }
.sd-step.prod .ic { animation: sdProdIc 6.4s var(--ease-in-out) infinite; }
.sd-step.prod .st { animation: sdProdSt 6.4s var(--ease-in-out) infinite; }
.sd-ship {
  margin-top: auto; display: flex; align-items: center; gap: 8px;
  padding: 8px 10px; border-radius: 7px;
  background: rgba(254,86,0,.1); border: 1px solid rgba(254,86,0,.28);
  font-family: var(--font-mono); font-size: 10px; color: var(--ol-cloud);
}
.sd-ship .ck { width: 14px; height: 14px; color: var(--ol-orange); flex-shrink: 0; }
.sd-ship .ck svg { width: 100%; height: 100%; }
.sd-ship .dot { margin-left: auto; width: 7px; height: 7px; border-radius: 50%; background: var(--ol-orange); animation: sdPulse 2.2s var(--ease-out) infinite; }
/* monitor stand */
.sd-stand { width: 100%; display: flex; flex-direction: column; align-items: center; }
.sd-stand .neck { width: 13%; height: 16px; background: linear-gradient(180deg,#d6d5cf,#c7c6c0); }
.sd-stand .base { width: 34%; height: 7px; border-radius: 3px; background: #c7c6c0; }

.sd-phone {
  position: absolute; right: 0; bottom: 0; width: 27%; z-index: 2;
  animation: sdFloat 6s var(--ease-in-out) infinite;
}
.sd-phone .pscreen {
  position: relative; border-radius: 20px; background: var(--ol-black);
  border: 4px solid #15140f; box-shadow: var(--shadow-2);
  aspect-ratio: 9 / 19; overflow: hidden; display: flex; flex-direction: column;
}
.sd-phone .notch { position: absolute; top: 7px; left: 50%; transform: translateX(-50%); width: 32%; height: 5px; border-radius: 3px; background: #15140f; z-index: 3; }
.sd-phone .phd { padding: 18px 11px 8px; }
.sd-phone .phd .pt { font-size: 9px; font-weight: 700; color: var(--ol-cloud); }
.sd-phone .phd .ps { font-size: 7.5px; color: var(--ol-ink-40); font-family: var(--font-mono); }
.sd-phone .hero {
  margin: 4px 11px; border-radius: 9px; aspect-ratio: 5/3;
  background: linear-gradient(150deg,#ff7a3c,var(--ol-orange));
  display: flex; align-items: flex-end; padding: 9px;
}
.sd-phone .hero b { width: 46%; height: 5px; border-radius: 3px; background: rgba(0,0,0,.32); }
.sd-phone .prow { display: flex; align-items: center; gap: 7px; margin: 7px 11px 0; }
.sd-phone .prow .av { width: 16px; height: 16px; border-radius: 5px; background: rgba(240,239,235,.16); flex-shrink: 0; }
.sd-phone .prow .ln { flex: 1; display: flex; flex-direction: column; gap: 3px; }
.sd-phone .prow .ln i { height: 4px; border-radius: 2px; background: rgba(240,239,235,.14); }
.sd-phone .prow .ln i.s { width: 54%; background: rgba(240,239,235,.08); }
.sd-phone .ptab {
  margin-top: auto; display: flex; justify-content: space-around; align-items: center;
  padding: 9px 0; border-top: 1px solid var(--ol-divider-on-dark);
}
.sd-phone .ptab span { width: 13px; height: 13px; border-radius: 4px; background: rgba(240,239,235,.16); }
.sd-phone .ptab span.on { background: var(--ol-orange); }

/* ---- 2 · Teams — org embedding + legible scorecard -------- */
.sd-teams { display: grid; grid-template-columns: 1fr 1.04fr; gap: 22px; align-items: center; }
.sd-org { position: relative; z-index: 1; display: flex; flex-direction: column; gap: 0; }
.sd-gov { display: flex; flex-direction: column; align-items: center; gap: 7px; }
.sd-gov .chip {
  display: inline-flex; align-items: center; gap: 8px;
  background: var(--ol-pure-white); border: 1px solid var(--ol-divider-on-light);
  border-radius: 8px; padding: 7px 12px; box-shadow: var(--shadow-1);
  font-size: 12px; font-weight: 600; color: var(--ol-black); white-space: nowrap;
}
.sd-gov .chip .d { width: 7px; height: 7px; border-radius: 2px; background: var(--ol-ink-70); }
.sd-gov .chip small { font-weight: 500; color: var(--ol-ink-50); font-size: 11px; }
.sd-gov .pair { display: flex; gap: 9px; }
.sd-conn { width: 1px; height: 20px; background: var(--ol-divider-strong-on-light); margin: 0 auto; }
.sd-zone {
  position: relative; border: 1.5px dashed var(--ol-divider-strong-on-light);
  border-radius: 12px; padding: 17px 13px 13px;
}
.sd-zone .ztag {
  position: absolute; top: -9px; left: 14px; background: var(--ol-cloud);
  padding: 0 8px; font-size: 11px; font-weight: 600; color: var(--ol-ink-50);
  font-family: var(--font-mono);
}
.sd-people { display: grid; grid-template-columns: repeat(2, 1fr); gap: 8px; }
.sd-person {
  display: flex; align-items: center; gap: 8px;
  background: var(--ol-pure-white); border: 1px solid var(--ol-divider-on-light);
  border-radius: 8px; padding: 7px 8px;
}
.sd-person .av { width: 22px; height: 22px; border-radius: 6px; background: var(--ol-cloud-90); flex-shrink: 0; }
.sd-person .mt { flex: 1; min-width: 0; display: flex; flex-direction: column; gap: 3px; }
.sd-person .mt i { height: 5px; border-radius: 3px; background: var(--ol-cloud-90); }
.sd-person .mt i.s { width: 60%; background: var(--ol-cloud-80); }
.sd-person.ol { border-color: rgba(254,86,0,.5); box-shadow: 0 0 0 1px rgba(254,86,0,.18); }
.sd-person.ol .av { background: var(--ol-orange); animation: sdRing 3s var(--ease-out) infinite; }
.sd-person.ol .tag {
  font-size: 8px; font-weight: 700; letter-spacing: .04em; text-transform: uppercase;
  color: var(--ol-orange); flex-shrink: 0;
}

/* monthly scorecard — a real, legible document */
.sd-card {
  position: relative; z-index: 1;
  background: var(--ol-pure-white); border: 1px solid var(--ol-divider-on-light);
  border-radius: var(--radius-lg); box-shadow: var(--shadow-2);
  padding: 16px 17px; display: flex; flex-direction: column; gap: 12px;
}
.sd-card .hd { display: flex; align-items: flex-start; justify-content: space-between; }
.sd-card .hd .ttl { font-size: 13px; font-weight: 700; color: var(--ol-black); }
.sd-card .hd .by { font-size: 10.5px; color: var(--ol-ink-50); margin-top: 2px; }
.sd-card .hd .mo {
  font-family: var(--font-mono); font-size: 10px; font-weight: 600; color: var(--ol-ink-60);
  border: 1px solid var(--ol-divider-on-light); border-radius: 6px; padding: 3px 7px; white-space: nowrap;
}
.sd-rows { display: flex; flex-direction: column; gap: 9px; }
.sd-metric { display: grid; grid-template-columns: 1fr auto auto; align-items: center; gap: 10px; }
.sd-metric .ml { font-size: 12px; font-weight: 500; color: var(--ol-ink-80); }
.sd-metric .dots { display: flex; gap: 4px; }
.sd-metric .dots b {
  width: 9px; height: 9px; border-radius: 3px; background: var(--ol-cloud-90); display: block;
}
.sd-metric .dots b.on { background: var(--ol-orange); animation: sdDot 4.4s steps(1) infinite; animation-delay: var(--d,0s); }
.sd-metric .val { font-family: var(--font-mono); font-size: 11px; font-weight: 600; color: var(--ol-black); min-width: 26px; text-align: right; }
.sd-card .ft { display: flex; align-items: center; justify-content: space-between; border-top: 1px solid var(--ol-divider-on-light); padding-top: 11px; }
.sd-card .ft .lbl { font-size: 11px; font-weight: 600; color: var(--ol-ink-60); }
.sd-card .ft .score { display: flex; align-items: baseline; gap: 4px; }
.sd-card .ft .score b { font-size: 22px; font-weight: 800; letter-spacing: -.02em; color: var(--ol-orange); line-height: 1; }
.sd-card .ft .score span { font-size: 11px; color: var(--ol-ink-50); }

/* ---- 3 · Discovery — flowing decision diagram ------------- */
.sd-disc { display: block; }
.sd-flow { position: absolute; inset: 0; }
.sd-flow .wires { position: absolute; inset: 0; width: 100%; height: 100%; overflow: visible; }
.sd-flow .wires path {
  fill: none; vector-effect: non-scaling-stroke; stroke-linecap: round;
}
/* faint always-on dotted rails */
.sd-flow .wires path.rail {
  stroke: var(--ol-ink-30); stroke-width: 1.5; stroke-dasharray: 1.5 7;
}
/* a cluster of bright dots that travels along each rail in the flow direction, on loop */
.sd-flow .wires path.flow {
  stroke: var(--ol-orange); stroke-width: 2.5;
  stroke-dasharray: 1.5 7 1.5 7 1.5 7 1.5 73;
  filter: drop-shadow(0 0 3px rgba(254,86,0,.85));
  animation: sdTrace 2.1s linear infinite;
  animation-delay: var(--lag, 0s);
}
.sd-node {
  position: absolute; transform: translate(-50%, -50%);
  display: inline-flex; align-items: center; gap: 7px; white-space: nowrap;
  background: var(--ol-pure-white); border: 1px solid var(--ol-divider-on-light);
  border-radius: 9px; padding: 8px 12px; box-shadow: var(--shadow-1);
  font-size: 12px; font-weight: 600; color: var(--ol-black);
}
.sd-node .ic { width: 14px; height: 14px; color: var(--ol-ink-50); flex-shrink: 0; }
.sd-node .ic svg { width: 100%; height: 100%; }
.sd-node.start { font-weight: 700; }
.sd-node.eval { font-weight: 500; color: var(--ol-ink-70); }
.sd-node.eval .pip { width: 8px; height: 8px; border-radius: 50%; background: var(--ol-orange); animation: sdPulse 2.4s var(--ease-out) infinite; animation-delay: var(--d,0s); }
.sd-node.deliver {
  flex-direction: column; align-items: center; gap: 2px; text-align: center;
  background: var(--ol-orange); border-color: var(--ol-orange); color: var(--ol-black);
  padding: 11px 16px; box-shadow: 0 0 0 1px rgba(254,86,0,.3);
  animation: sdGlow 3s var(--ease-in-out) infinite;
}
.sd-node.deliver .ic { color: var(--ol-black); }
.sd-node.deliver strong { font-size: 12px; font-weight: 700; }
.sd-node.deliver span { font-size: 10px; font-weight: 600; color: rgba(0,0,0,.6); }

/* ---- keyframes (always running) -------------------------- */
@keyframes sdRun {
  0%, 9%    { top: 12.5%; }   /* spec */
  20%, 38%  { top: 37.5%; }   /* build · agents */
  50%, 74%  { top: 62.5%; }   /* senior review — long dwell at the gate */
  86%, 100% { top: 87.5%; }   /* production */
}
@keyframes sdTokenGlow {
  0%, 52%  { background: var(--ol-cloud); box-shadow: 0 0 0 0 rgba(254,86,0,0); }
  60%      { background: var(--ol-orange); box-shadow: 0 0 0 0 rgba(254,86,0,.55); }
  74%      { background: var(--ol-orange); box-shadow: 0 0 0 7px rgba(254,86,0,0); }
  100%     { background: var(--ol-orange); box-shadow: 0 0 0 0 rgba(254,86,0,0); }
}
@keyframes sdGateIc {
  0%, 52%  { background: rgba(240,239,235,.06); border-color: var(--ol-divider-on-dark); color: var(--ol-ink-30); box-shadow: 0 0 0 0 rgba(254,86,0,0); }
  60%, 100%{ background: var(--ol-orange); border-color: var(--ol-orange); color: var(--ol-black); box-shadow: 0 0 16px -2px rgba(254,86,0,.7); }
}
@keyframes sdGateSt {
  0%, 56%  { color: var(--ol-ink-40); }
  62%, 100%{ color: var(--ol-orange); }
}
@keyframes sdProdIc {
  0%, 80%  { background: rgba(240,239,235,.06); border-color: var(--ol-divider-on-dark); color: var(--ol-ink-30); }
  88%, 100%{ background: var(--ol-cloud); border-color: var(--ol-cloud); color: var(--ol-black); }
}
@keyframes sdProdSt {
  0%, 82%  { color: var(--ol-ink-40); }
  90%, 100%{ color: var(--ol-cloud); }
}
@keyframes sdPulse { 0% { box-shadow: 0 0 0 0 rgba(254,86,0,.5); } 70% { box-shadow: 0 0 0 7px rgba(254,86,0,0); } 100% { box-shadow: 0 0 0 0 rgba(254,86,0,0); } }
@keyframes sdFloat { 0%, 100% { transform: translateY(0); } 50% { transform: translateY(-7px); } }
@keyframes sdRing { 0% { box-shadow: 0 0 0 0 rgba(254,86,0,.45); } 70% { box-shadow: 0 0 0 6px rgba(254,86,0,0); } 100% { box-shadow: 0 0 0 0 rgba(254,86,0,0); } }
@keyframes sdDot { 0%, 18% { background: var(--ol-cloud-90); } 30%, 100% { background: var(--ol-orange); } }
@keyframes sdDash { to { stroke-dashoffset: -14; } }
@keyframes sdTrace { from { stroke-dashoffset: 0; } to { stroke-dashoffset: -100; } }
@keyframes sdGlow { 0%, 100% { box-shadow: 0 0 0 1px rgba(254,86,0,.3), 0 0 18px -4px rgba(254,86,0,.5); } 50% { box-shadow: 0 0 0 1px rgba(254,86,0,.55), 0 0 30px 0 rgba(254,86,0,.7); } }

@media (prefers-reduced-motion: reduce) {
  .sd-flowv .token { animation: none !important; top: 62.5% !important; background: var(--ol-orange) !important; }
  .sd-step.gate .ic { animation: none !important; background: var(--ol-orange) !important; border-color: var(--ol-orange) !important; color: var(--ol-black) !important; }
  .sd-step.gate .st { animation: none !important; color: var(--ol-orange) !important; }
  .sd-step.prod .ic, .sd-step.prod .st { animation: none !important; }
  .sd-ship .dot, .sd-phone, .sd-person.ol .av, .sd-node.eval .pip, .sd-node.deliver { animation: none !important; }
  .sd-metric .dots b.on { animation: none !important; background: var(--ol-orange) !important; }
  .sd-flow .wires path.flow { animation: none !important; stroke-dasharray: 1.5 7 !important; }
  .ai-steps .step { animation: none !important; --on: 1; }
  .ai-run .ar-status .dot { animation: none !important; }
}

/* ===================== Why — 3 columns ===================== */
.three-col { display: grid; grid-template-columns: repeat(3, 1fr); gap: 56px; margin-top: 64px; }
.three-col .col .ic { display: block; width: 38px; height: 38px; color: var(--ol-black); margin-bottom: 24px; }
.three-col .col .ic svg { display: block; width: 38px; height: 38px; }
.three-col .col h3 { font-size: 26px; font-weight: 700; letter-spacing: -.02em; margin: 0 0 14px; line-height: 1.12; }
.three-col .col p { font-size: 18px; line-height: 1.55; color: var(--ol-ink-60); margin: 0; }
.dark-band .three-col .col .ic { color: var(--ol-cloud); }
.dark-band .three-col .col p { color: var(--fg-muted); }

/* ===================== Proof — bento ======================= */
.bento { display: grid; grid-template-columns: repeat(12, 1fr); gap: 20px; margin-top: 60px; }
.proof-card {
  background: var(--ol-cloud-95); border-radius: var(--radius-lg);
  padding: 36px; display: flex; flex-direction: column; gap: 12px;
}
.proof-card .pc-num { font-size: 48px; font-weight: 800; letter-spacing: -.03em; line-height: 1; }
.proof-card .pc-num .a { color: var(--ol-orange); }
.proof-card .pc-label { font-size: 13px; font-weight: 600; letter-spacing: .1em; text-transform: uppercase; color: var(--ol-ink-50); }
.proof-card p { font-size: 18px; line-height: 1.5; color: var(--ol-ink-70); margin: 0; }
.proof-card.span-3 { grid-column: span 3; }
.proof-card.span-4 { grid-column: span 4; }
.proof-card.span-6 { grid-column: span 6; }
.proof-card.quote { background: var(--ol-black); color: var(--ol-cloud); justify-content: space-between; gap: 28px; }
.proof-card.quote blockquote { margin: 0; font-size: 22px; line-height: 1.45; font-weight: 500; color: var(--ol-cloud); }
.proof-card.quote .who { font-size: 15px; color: var(--ol-ink-40); }
.proof-card.quote .who strong { color: var(--ol-cloud); font-weight: 600; display: block; }

/* ===================== Featured testimonial =============== */
.testimonial-featured {
  padding: 64px 0 72px;
  border-bottom: 1px solid var(--ol-divider-on-light);
}
.tf-inner { max-width: 960px; }
.tf-quote {
  margin: 26px 0 0;
  font-size: clamp(30px, 4vw, 43px);
  font-weight: 500; line-height: 1.18; letter-spacing: -.022em;
  color: var(--ol-black); text-wrap: balance;
}
.tf-foot {
  display: flex; flex-wrap: wrap; align-items: center; justify-content: space-between;
  gap: 20px 32px; margin-top: 40px;
}
.tf-attr { display: flex; align-items: center; gap: 16px; }
.tf-photo {
  width: 56px; height: 56px; border-radius: 50%; flex-shrink: 0;
  object-fit: cover; background: var(--ol-cloud-90);
}
.tf-colog {
  height: 56px; width: auto; max-width: 220px; object-fit: contain;
  margin-top: 12px; align-self: flex-start;
  filter: grayscale(1); opacity: .7;
}
.tf-meta { display: flex; flex-direction: column; align-items: flex-start; gap: 3px; }
.tf-who { font-size: 18px; font-weight: 700; letter-spacing: -.01em; }
.tf-who .tf-co { color: var(--ol-orange); }
.tf-role { font-size: 15px; color: var(--ol-ink-50); }

/* ===================== Reviews carousel =================== */
.reviews-head {
  display: flex; align-items: center; justify-content: space-between;
  gap: 20px; margin-bottom: 28px;
}
.reviews-nav { display: flex; gap: 10px; }
.rc-arrow {
  width: 46px; height: 46px; border-radius: var(--radius);
  display: inline-flex; align-items: center; justify-content: center;
  background: transparent; color: var(--ol-black);
  border: 1px solid rgba(0,0,0,.2); cursor: pointer;
  transition: background var(--dur-fast) var(--ease-out),
              color var(--dur-fast) var(--ease-out),
              border-color var(--dur-fast) var(--ease-out);
}
.rc-arrow svg { width: 20px; height: 20px; }
.rc-arrow:hover { background: var(--ol-black); color: var(--ol-cloud); border-color: var(--ol-black); }

.reviews-carousel { position: relative; }
.rc-card {
  display: none;
  background: var(--ol-pure-white);
  border: 1px solid var(--ol-divider-on-light);
  border-radius: var(--radius-xl);
  padding: 44px 48px;
  box-shadow: var(--shadow-1);
  color: inherit;
  cursor: pointer;
  text-decoration: none;
  transition: border-color var(--dur-fast) var(--ease-out),
              box-shadow var(--dur-fast) var(--ease-out),
              transform var(--dur-fast) var(--ease-out);
}
.rc-card:hover {
  border-color: rgba(254,86,0,.35);
  box-shadow: var(--shadow-2);
  transform: translateY(-2px);
}
.rc-card.active { display: block; animation: rcfade var(--dur-base) var(--ease-out); }
@keyframes rcfade { from { opacity: 0; transform: translateY(8px); } to { opacity: 1; transform: none; } }

.rc-top { display: flex; align-items: center; justify-content: space-between; gap: 20px; }
.rc-person { display: flex; align-items: center; gap: 15px; }
.rc-avatar {
  width: 52px; height: 52px; border-radius: 50%; flex-shrink: 0;
  overflow: hidden; background: var(--ol-cloud-90);
}
.rc-avatar img { width: 100%; height: 100%; object-fit: cover; display: block; }
.rc-id { display: flex; flex-direction: column; align-items: flex-start; gap: 2px; }
.rc-name { font-size: 18px; font-weight: 700; letter-spacing: -.01em; }
.rc-title { font-size: 14px; color: var(--ol-ink-50); }
.rc-rating { display: flex; flex-direction: column; align-items: flex-end; gap: 4px; }
.rc-stars { color: var(--ol-orange); font-size: 17px; letter-spacing: 2px; line-height: 1; }
.rc-score { font-size: 16px; font-weight: 800; letter-spacing: -.01em; }

.rc-colog {
  height: 28px; width: auto; max-width: 150px; object-fit: contain;
  display: block; margin: 12px auto 0 0;
  filter: grayscale(1); opacity: .75;
}
.rc-quote {
  margin: 28px 0 0; font-size: clamp(20px, 2.2vw, 26px); font-weight: 500;
  line-height: 1.45; letter-spacing: -.01em; color: var(--ol-black);
  text-wrap: pretty;
}
.rc-foot {
  display: flex; flex-wrap: wrap; align-items: center; justify-content: space-between;
  gap: 10px 24px; margin-top: 32px; padding-top: 24px;
  border-top: 1px solid var(--ol-divider-on-light);
}
.rc-tag { font-size: 13px; font-weight: 700; letter-spacing: .08em; text-transform: uppercase; color: var(--ol-orange); }
.rc-verified { font-size: 13px; font-weight: 600; letter-spacing: .08em; text-transform: uppercase; color: var(--ol-ink-40); }

.reviews-dots { display: flex; justify-content: center; gap: 11px; margin-top: 28px; }
.reviews-dots button {
  width: 11px; height: 11px; border-radius: 50%; padding: 0; cursor: pointer;
  background: transparent; border: 1.5px solid rgba(0,0,0,.28);
  transition: background var(--dur-fast) var(--ease-out), border-color var(--dur-fast) var(--ease-out);
}
.reviews-dots button.on { background: var(--ol-orange); border-color: var(--ol-orange); }

/* ===================== FAQ accordion ======================= */
.faq-list { max-width: 880px; margin: 56px auto 0; }
.faq-item { border-bottom: 1px solid var(--ol-divider-on-light); }
.faq-item:first-child { border-top: 1px solid var(--ol-divider-on-light); }
.faq-q {
  width: 100%; background: none; border: 0; cursor: pointer;
  display: flex; align-items: center; justify-content: space-between; gap: 24px;
  padding: 28px 4px; text-align: left; font-family: var(--font-sans);
  font-size: 21px; font-weight: 600; letter-spacing: -.01em; color: var(--ol-black);
}
.faq-item.open .faq-q { color: var(--ol-orange); }
.dark-band .faq-q { color: var(--ol-cloud); }
.dark-band .faq-item.open .faq-q { color: var(--ol-orange); }
.faq-q .plus { position: relative; width: 20px; height: 20px; flex-shrink: 0; }
.faq-q .plus::before, .faq-q .plus::after {
  content: ''; position: absolute; background: currentColor; border-radius: 2px;
  transition: transform var(--dur-base) var(--ease-out);
}
.faq-q .plus::before { left: 0; top: 9px; width: 20px; height: 2px; }
.faq-q .plus::after { left: 9px; top: 0; width: 2px; height: 20px; }
.faq-item.open .faq-q .plus::after { transform: scaleY(0); }
.faq-a { overflow: hidden; max-height: 0; transition: max-height var(--dur-slow) var(--ease-out); }
.faq-a-inner { padding: 0 4px 30px; font-size: 18px; line-height: 1.6; color: var(--ol-ink-60); max-width: 70ch; }
.dark-band .faq-a-inner { color: var(--fg-muted); }

/* ===================== Contact section ===================== */
.contact-section { background: var(--ol-cloud-95); }
.contact-grid { display: grid; grid-template-columns: 1fr 1.1fr; gap: 72px; align-items: start; }
.contact-intro h2 { font-size: clamp(32px, 4vw, 50px); font-weight: 800; letter-spacing: -.028em; line-height: 1.04; margin: 18px 0 0; }
.contact-intro p { font-size: 20px; line-height: 1.5; color: var(--ol-ink-60); margin: 22px 0 0; max-width: 38ch; }
.contact-intro .contact-points { list-style: none; margin: 36px 0 0; padding: 0; display: flex; flex-direction: column; gap: 16px; }
.contact-intro .contact-points li { display: flex; align-items: center; gap: 13px; font-size: 17px; font-weight: 500; color: var(--ol-ink-70); }
.contact-intro .contact-points .ic { width: 20px; height: 20px; color: var(--ol-orange); flex-shrink: 0; }
.contact-card {
  background: var(--ol-pure-white); border: 1px solid var(--ol-divider-on-light);
  border-radius: var(--radius-xl); box-shadow: var(--shadow-2); padding: 38px;
}

/* ===================== Final CTA + footer ================== */
/* One continuous branded surface: the brand gradient is painted ONCE
   across the whole closing block, then a vertical darkening layer pulls
   the lower (footer) region back to solid black so light footer text and
   the near-white cloud bloom never collide. */
.closing {
  position: relative;
  background-color: var(--ol-black);
  background-image:
    linear-gradient(180deg, rgba(0,0,0,0) 0%, rgba(0,0,0,0) 46%, rgba(0,0,0,.6) 66%, var(--ol-black) 86%),
    var(--ol-brand-gradient);
  background-repeat: no-repeat;
  background-size: 100% 100%;
}
.final-cta {
  background: transparent;
  color: var(--ol-cloud); text-align: center; padding: 120px 0 96px;
  position: relative; z-index: 1;
}
.final-cta h2 { font-size: clamp(38px, 5vw, 64px); font-weight: 800; letter-spacing: -.03em; line-height: 1.03; margin: 0; color: var(--ol-cloud); }
.final-cta p { font-size: 20px; color: var(--ol-cloud-80); margin: 22px auto 0; max-width: 40ch; }
.final-cta .cta-row { display: flex; gap: 14px; justify-content: center; margin-top: 40px; flex-wrap: wrap; }

.footer { background: transparent; color: var(--ol-cloud); padding: 56px 0 40px; position: relative; z-index: 1; }
.footer-grid { display: grid; grid-template-columns: 1.6fr repeat(4, 1fr); gap: 40px; }
.footer .brandcol { display: flex; flex-direction: column; gap: 20px; max-width: 280px; }
.footer .brandcol p { font-size: 15px; color: var(--ol-ink-40); margin: 0; line-height: 1.55; }
.footer .fcol h4 { font-size: 13px; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; color: var(--ol-ink-40); margin: 0 0 18px; }
.footer .fcol ul { list-style: none; margin: 0; padding: 0; display: flex; flex-direction: column; gap: 12px; }
.footer .fcol a { font-size: 16px; color: var(--ol-cloud-80); text-decoration: none; border-bottom: 0; transition: color var(--dur-fast); }
.footer .fcol a:hover { color: var(--ol-orange); }
.footer-bottom {
  margin-top: 56px; padding-top: 28px; border-top: 1px solid var(--ol-divider-on-dark);
  display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 12px;
  font-size: 14px; color: var(--ol-ink-50);
}

/* ===================== Mobile nav menu ===================== */
.mobile-menu-toggle {
  display: none;
  min-height: 44px;
  padding: 0 14px;
  border: 1px solid rgba(0,0,0,.16);
  border-radius: var(--radius);
  background: rgba(255,255,255,.86);
  color: var(--ol-black);
  align-items: center;
  justify-content: center;
  gap: 10px;
  font-family: var(--font-sans);
  font-size: 15px;
  font-weight: 700;
  cursor: pointer;
  box-shadow: 0 10px 24px -18px rgba(0,0,0,.45);
  backdrop-filter: blur(12px) saturate(1.2);
}
.hamburger {
  width: 18px;
  height: 13px;
  display: inline-flex;
  flex-direction: column;
  justify-content: space-between;
}
.hamburger span {
  display: block;
  width: 100%;
  height: 2px;
  border-radius: 2px;
  background: currentColor;
  transition: transform var(--dur-base) var(--ease-out), opacity var(--dur-base) var(--ease-out);
}
.site-nav.menu-open .hamburger span:nth-child(1) { transform: translateY(5.5px) rotate(45deg); }
.site-nav.menu-open .hamburger span:nth-child(2) { opacity: 0; }
.site-nav.menu-open .hamburger span:nth-child(3) { transform: translateY(-5.5px) rotate(-45deg); }
.mobile-menu-panel {
  position: absolute;
  left: 16px;
  right: 16px;
  top: calc(100% + 10px);
  padding: 10px;
  background: rgba(255,255,255,.96);
  border: 1px solid var(--ol-divider-on-light);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-2);
  backdrop-filter: blur(16px) saturate(1.3);
}
.mobile-menu-links {
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.mobile-menu-links a {
  display: flex;
  align-items: center;
  min-height: 46px;
  padding: 0 12px;
  border-radius: 8px;
  color: var(--ol-black);
  font-size: 16px;
  font-weight: 650;
  text-decoration: none;
}
.mobile-menu-links a:hover,
.mobile-menu-links a:focus-visible {
  background: var(--ol-cloud-90);
}
.mobile-menu-panel .btn {
  width: 100%;
  margin-top: 10px;
}
.site-nav.nav-dark .mobile-menu-toggle {
  border-color: rgba(240,239,235,.24);
  background: rgba(240,239,235,.92);
  color: var(--ol-black);
}

/* ===================== Skip link =========================== */
.skip-link {
  position: absolute; left: -9999px; top: 0; z-index: 100;
  background: var(--ol-black); color: var(--ol-cloud); padding: 12px 18px; border-radius: var(--radius);
}
.skip-link:focus { left: 16px; top: 16px; }

/* ===================== Responsive ========================== */
@media (max-width: 980px) {
  .nav-links { display: none; }
  .hero-grid { grid-template-columns: 1fr; gap: 48px; }
  .hero-form-card { order: 2; }
  .feature, .contact-grid { grid-template-columns: 1fr; gap: 44px; }
  .feature.flip .feature-copy { order: 1; }
  .feature.flip .feature-media { order: 2; }
  .three-col { grid-template-columns: 1fr; gap: 44px; }
  .bento { grid-template-columns: repeat(6, 1fr); }
  .proof-card.span-3 { grid-column: span 3; }
  .proof-card.span-4, .proof-card.span-6 { grid-column: span 6; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 36px; }
  .footer .brandcol { grid-column: 1 / -1; max-width: none; }
}

@media (max-width: 680px) {
  .wrap { padding: 0 22px; }
  .section { padding: 72px 0; }
  .pill {
    max-width: 100%;
    white-space: normal;
    line-height: 1.3;
  }
  .nav-right .btn { display: none; }
  .mobile-menu-toggle { display: inline-flex; }
  body { padding-bottom: 0; }
  .form-row { grid-template-columns: 1fr; }
  .bento { grid-template-columns: 1fr; }
  .proof-card.span-3, .proof-card.span-4, .proof-card.span-6 { grid-column: 1 / -1; }
  .hero .trust-line { font-size: 14px; }
  .hero .cta-row {
    flex-direction: column;
    align-items: stretch;
  }
  .hero .cta-row .btn {
    width: 100%;
  }
  .logo-row { gap: 22px 40px; }
  .hero-logos { max-width: 100%; }
  .logo-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 20px 24px;
    max-width: none;
  }
  .feature-media {
    width: 100%;
    max-width: 386px;
    margin-inline: auto;
    min-width: 0;
  }
  .sd {
    width: 100%;
    max-width: 100%;
  }
  .sd-app {
    aspect-ratio: 4 / 3;
    max-width: 360px;
    margin-inline: auto;
  }
  .sd-app::before {
    width: 58%;
    height: 52%;
  }
  .sd-monitor {
    top: 8%;
    width: 78%;
  }
  .sd-screen {
    border-radius: 11px 11px 4px 4px;
  }
  .sd-topbar {
    gap: 6px;
    padding: 8px 10px;
  }
  .sd-topbar .tile,
  .sd-topbar .who {
    width: 13px;
    height: 13px;
  }
  .sd-topbar .nm {
    font-size: 10px;
  }
  .sd-topbar .nav {
    display: none;
  }
  .sd-body {
    gap: 5px;
    padding: 10px 11px;
  }
  .sd-buildhd .t {
    font-size: 10px;
  }
  .sd-buildhd .ai {
    display: none;
  }
  .sd-step {
    grid-template-columns: 18px 1fr;
    gap: 7px;
    min-height: 0;
  }
  .sd-step .ic {
    width: 18px;
    height: 18px;
    border-radius: 5px;
  }
  .sd-step .ic svg {
    width: 10px;
    height: 10px;
  }
  .sd-step .nm b {
    font-size: 10px;
    line-height: 1.05;
    white-space: nowrap;
  }
  .sd-step.gate .nm b {
    word-spacing: 2px;
  }
  .sd-step .nm small {
    display: none;
  }
  .sd-step .st {
    display: none;
  }
  .sd-ship {
    align-self: flex-start;
    max-width: 70%;
    padding: 6px 8px;
    font-size: 0;
  }
  .sd-ship::after {
    content: "senior-reviewed";
    font-size: 8.5px;
  }
  .sd-ship .ck {
    width: 12px;
    height: 12px;
  }
  .sd-ship .dot {
    display: none;
  }
  .sd-stand .neck {
    height: 12px;
  }
  .sd-stand .base {
    height: 6px;
  }
  .sd-phone {
    right: 3%;
    bottom: 3%;
    width: 22%;
  }
  .sd-phone .pscreen {
    border-width: 3px;
    border-radius: 16px;
  }
  .sd-phone .notch {
    top: 6px;
    height: 4px;
  }
  .sd-phone .phd {
    padding: 15px 8px 6px;
  }
  .sd-phone .phd .pt {
    font-size: 8px;
  }
  .sd-phone .phd .ps {
    font-size: 6.5px;
  }
  .sd-phone .hero {
    margin: 4px 8px;
    border-radius: 7px;
    padding: 7px;
  }
  .sd-phone .prow {
    gap: 5px;
    margin: 6px 8px 0;
  }
  .sd-phone .prow .av {
    width: 13px;
    height: 13px;
    border-radius: 4px;
  }
  .sd-phone .ptab {
    padding: 7px 0;
  }
  .sd-phone .ptab span {
    width: 10px;
    height: 10px;
    border-radius: 3px;
  }
  .sd-teams {
    grid-template-columns: 1fr;
    aspect-ratio: auto;
    gap: 18px;
    justify-items: center;
  }
  .sd-org,
  .sd-card {
    width: 100%;
    max-width: 100%;
  }
  .sd-gov .pair {
    flex-wrap: wrap;
    justify-content: center;
  }
  .sd-card {
    padding: 15px;
  }
  .tf-quote {
    font-size: clamp(24px, 7vw, 30px);
    line-height: 1.25;
    text-wrap: pretty;
  }
  .media-tint {
    aspect-ratio: 4 / 3.05;
    max-width: 360px;
    margin-inline: auto;
    border-radius: 16px;
  }
  .ai-run {
    top: 8%;
    left: 8%;
    right: 8%;
    gap: 9px;
    padding: 11px 13px;
    border-radius: 12px;
  }
  .ai-run .ar-ic {
    width: 28px;
    height: 28px;
    border-radius: 8px;
  }
  .ai-run .ar-ic svg {
    width: 15px;
    height: 15px;
  }
  .ai-run .ar-name {
    font-size: 16px;
  }
  .ai-run .ar-status {
    gap: 6px;
    font-size: 12px;
  }
  .ai-run .ar-status .dot {
    width: 7px;
    height: 7px;
  }
  .ai-steps {
    top: 26%;
    left: 8%;
    right: 8%;
    padding: 7px;
    border-radius: 12px;
  }
  .ai-steps .step {
    display: grid;
    grid-template-columns: 21px minmax(0, 1fr) auto;
    gap: 9px;
    padding: 9px 8px;
    border-radius: 8px;
  }
  .ai-steps .st {
    width: 21px;
    height: 21px;
    border-width: 1.5px;
  }
  .ai-steps .st .ck {
    width: 12px;
    height: 12px;
  }
  .ai-steps .step .act {
    font-size: 14px;
    line-height: 1.12;
  }
  .ai-steps .sys {
    gap: 6px;
    max-width: 108px;
    font-size: 11px;
    line-height: 1.15;
  }
  .ai-steps .sys .ic {
    width: 20px;
    height: 20px;
    border-radius: 6px;
  }
  .ai-steps .sys .ic svg {
    width: 11px;
    height: 11px;
  }
  .rc-card { padding: 30px 26px; }
  .reviews-head { flex-wrap: wrap; }
  .logo-row .lg { font-size: 22px; }
  .hero-form-card, .contact-card { padding: 26px; }
}

/* =============================================================
   New sections: Local Expertise, Case Studies, Who We Are
   ============================================================= */

/* overline (uppercase section tag) */
.overline {
  display: inline-block;
  font-size: 13px; font-weight: 600; letter-spacing: .12em;
  text-transform: uppercase; color: var(--ol-ink-50);
}
.dark-band .overline, .on-dark .overline { color: var(--ol-orange); }

/* ---- Local Expertise (Boston ecosystem) ---- */
.local-expertise { overflow-x: clip; }
.le-grid {
  display: grid; grid-template-columns: 1fr 1fr; gap: 46px; align-items: center;
}
.le-copy h2 {
  font-size: clamp(32px, 4vw, 50px); font-weight: 800;
  letter-spacing: -.028em; line-height: 1.05; margin: 18px 0 0; max-width: 15ch;
}
.le-copy p {
  font-size: 19px; line-height: 1.6; color: var(--ol-cloud-80);
  margin: 22px 0 0; max-width: 52ch;
}
.membership-list {
  list-style: none; margin: 32px 0 0; padding: 0;
  display: grid; grid-template-columns: 1fr 1fr; gap: 16px 28px;
}
.membership-list li {
  display: flex; align-items: center; gap: 12px;
  font-size: 16px; font-weight: 500; color: var(--ol-cloud); line-height: 1.3;
}
.membership-list .mc { width: 22px; height: 22px; flex-shrink: 0; color: var(--ol-orange); }
.membership-list .mc svg { width: 100%; height: 100%; }
.le-copy .le-close {
  margin-top: 30px; font-size: 19px; font-weight: 500;
  color: var(--ol-cloud); max-width: 54ch;
}
/* Boston collage as a living photo stack: the images overlap and physically
   change places — every few seconds the front photo recedes to the back and
   the rest move forward, so the section feels alive without flashing all at once. */
/* Boston collage — staggered two-column masonry: more vertical breathing room
   and offset columns so the photos sit at different heights down the scroll.
   All tiles share one ratio so photos never distort; caption reveals on hover. */
.le-collage {
  display: grid; grid-template-columns: 1fr 1fr; gap: 22px; margin: 0; width: 100%;
  align-items: start;
}
.le-col { display: flex; flex-direction: column; gap: 48px; will-change: transform; }
.le-col:last-child { margin-top: 96px; }
.le-cell {
  position: relative; margin: 0;
  aspect-ratio: 4 / 3; overflow: hidden;
  border-radius: var(--radius-lg);
  border: 1px solid var(--ol-divider-on-dark);
}
.le-cell img {
  width: 100%; height: 100%; object-fit: cover; display: block;
  transition: transform .5s var(--ease-out);
}
.le-cell:hover img { transform: scale(1.05); }
.le-cap {
  position: absolute; inset: 0;
  display: flex; align-items: flex-end; padding: 16px 18px;
  color: var(--ol-cloud); font-size: 14px; font-weight: 500; line-height: 1.35;
  background: linear-gradient(to top, rgba(0,0,0,.82) 0%, rgba(0,0,0,.32) 46%, rgba(0,0,0,0) 78%);
  opacity: 0; transition: opacity .4s var(--ease-out);
}
.le-cell:hover .le-cap { opacity: 1; }
@media (prefers-reduced-motion: reduce) {
  .le-cell:hover img { transform: none; }
}

/* Memberships & partners strip */
.le-partners {
  margin-top: 36px; padding-top: 40px;
  border-top: 1px solid var(--ol-divider-on-dark);
}
.le-partners .overline { display: block; margin-bottom: 30px; }
.partner-logos {
  display: flex; flex-wrap: wrap; align-items: center;
  gap: 44px 76px;
}
.partner-logos .pl-cell { height: 64px; display: flex; align-items: center; }
.partner-logos img {
  max-height: 64px; max-width: 280px; width: auto; height: auto;
  object-fit: contain;
  /* render every partner mark as one clean cloud-white silhouette on the dark field */
  filter: grayscale(1) brightness(0) invert(1);
  opacity: .7;
  transition: opacity var(--dur-base) var(--ease-out);
}
.partner-logos img:hover { opacity: 1; }
/* the Forbes round badge packs a lot inside — give it noticeably more room so it reads */
.partner-logos .pl-cell:nth-child(4) { height: 104px; }
.partner-logos .pl-cell:nth-child(4) img { max-height: 104px; max-width: 104px; }

/* ---- Case studies ---- */
.case-grid {
  display: grid; grid-template-columns: 1fr 1fr; gap: 28px;
  margin-top: 60px; align-items: start;
}
.case-card {
  background: var(--ol-pure-white); border: 1px solid var(--ol-divider-on-light);
  border-radius: var(--radius-xl); overflow: hidden; box-shadow: var(--shadow-1);
  display: flex; flex-direction: column;
  transition: transform var(--dur-base) var(--ease-out), box-shadow var(--dur-base) var(--ease-out);
}
.case-card:hover { transform: translateY(-3px); box-shadow: var(--shadow-2); }
.case-media {
  background: var(--ol-cloud-95); aspect-ratio: 16 / 10;
  display: flex; align-items: center; justify-content: center; padding: 18px;
  overflow: hidden;
  border-bottom: 1px solid var(--ol-divider-on-light);
}
.case-media img { width: 88%; height: 100%; max-width: 88%; max-height: 100%; object-fit: contain; }
.case-body { padding: 28px 30px 32px; display: flex; flex-direction: column; }
.case-meta { font-size: 13px; font-weight: 700; letter-spacing: .08em; text-transform: uppercase; color: var(--ol-orange); }
.case-body h3 { font-size: 26px; font-weight: 700; letter-spacing: -.02em; margin: 10px 0 0; }
.case-points { list-style: none; margin: 0; padding: 0; display: flex; flex-direction: column; gap: 10px; }
.case-points li { position: relative; padding-left: 22px; font-size: 16px; line-height: 1.4; color: var(--ol-ink-70); }
.case-points li::before { content: ''; position: absolute; left: 0; top: .52em; width: 8px; height: 8px; border-radius: 2px; background: var(--ol-orange); }
/* hover crossfade: bullet points → narrative description, stacked so the card never resizes */
.case-switch { display: grid; margin-top: 20px; }
.case-switch > * { grid-area: 1 / 1; }
.case-points { transition: opacity var(--dur-base) var(--ease-out); }
.case-desc {
  margin: 0; font-size: 16px; line-height: 1.5; color: var(--ol-ink-70);
  text-wrap: pretty; opacity: 0; transition: opacity var(--dur-base) var(--ease-out);
}
.case-card:hover .case-points { opacity: 0; }
.case-card:hover .case-desc { opacity: 1; }
.case-quote { margin: 26px 0 0; padding-top: 24px; border-top: 1px solid var(--ol-divider-on-light); }
.case-quote p { font-size: 17px; line-height: 1.5; font-weight: 500; color: var(--ol-black); margin: 0; text-wrap: pretty; }
.cq-attr { display: flex; align-items: center; gap: 12px; margin-top: 18px; }
.cq-attr img { width: 44px; height: 44px; border-radius: 50%; object-fit: cover; flex-shrink: 0; background: var(--ol-cloud-90); }
.cq-attr span { display: flex; flex-direction: column; font-size: 14px; color: var(--ol-ink-50); line-height: 1.35; }
.cq-attr strong { font-size: 15px; font-weight: 700; color: var(--ol-black); }

/* ---- Who we are ---- */
.who-grid { display: grid; grid-template-columns: 1fr 1.05fr; gap: 66px; align-items: center; }
.who-copy h2 {
  font-size: clamp(32px, 4.2vw, 52px); font-weight: 800;
  letter-spacing: -.03em; line-height: 1.04; margin: 18px 0 0; max-width: 14ch;
}
.who-copy p { font-size: 19px; line-height: 1.6; color: var(--ol-cloud-80); margin: 24px 0 0; max-width: 50ch; }
.who-media { margin: 0; }
.who-media img {
  width: 100%; border-radius: var(--radius-xl); display: block;
  border: 1px solid var(--ol-divider-on-dark);
}
.who-media figcaption { margin-top: 14px; font-size: 14px; color: var(--ol-ink-40); }
.who-rtb {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 44px;
  margin-top: 72px; padding-top: 56px; border-top: 1px solid var(--ol-divider-on-dark);
}
.who-rtb .rtb .rtb-ico { display: block; width: 30px; height: 30px; color: var(--ol-orange); margin: 0 0 18px; }
.who-rtb .rtb .rtb-ico svg { width: 100%; height: 100%; display: block; }
.who-rtb .rtb h3 { font-size: 24px; font-weight: 700; letter-spacing: -.02em; margin: 0 0 12px; color: var(--ol-cloud); }
.who-rtb .rtb p { font-size: 18px; line-height: 1.55; color: var(--fg-muted); margin: 0; }

/* ---- Reviews section heading ---- */
.reviews-title { display: flex; flex-direction: column; gap: 16px; }
.reviews-title h2 { font-size: clamp(30px, 3.6vw, 46px); font-weight: 800; letter-spacing: -.03em; line-height: 1.03; margin: 0; }

/* ---- Footer NAP ---- */
.footer-nap ul li { font-size: 15px; color: var(--ol-cloud-80); line-height: 1.5; }

/* ---- Responsive for new sections ---- */
@media (max-width: 980px) {
  .le-grid, .who-grid { grid-template-columns: 1fr; gap: 44px; }
  .case-grid { grid-template-columns: 1fr; gap: 24px; }
  .who-rtb { gap: 32px; margin-top: 52px; padding-top: 44px; }
  .reviews-title h2 { font-size: 30px; }
}
@media (max-width: 680px) {
  .membership-list { grid-template-columns: 1fr; gap: 13px; }
  .who-rtb { grid-template-columns: 1fr; gap: 28px; }
  .le-collage { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 14px; }
  .le-col { gap: 14px; }
  .le-col:last-child { margin-top: 32px; }
  .le-cell { border-radius: 10px; }
  .le-cap { display: none; }
  .case-media {
    aspect-ratio: 4 / 3;
    padding: 18px 14px;
  }
  .case-media img {
    width: 100%;
    max-width: 100%;
  }
  .partner-logos { gap: 30px 38px; }
  .partner-logos .pl-cell { height: 50px; }
  .partner-logos img { max-height: 50px; max-width: 170px; }
  .partner-logos .pl-cell:nth-child(4) { height: 76px; }
  .partner-logos .pl-cell:nth-child(4) img { max-height: 76px; max-width: 76px; }
}
