/* Cay Digital — components (faithful clone of live caydigital.ai)
   Class names mirror the live Webflow class names where possible so updates trace easily.
   Sourced values from the production Webflow CSS, sampled 2026-05-04. */

/* ========== Utilities (shared visual primitives) ========== */

/* Skewed parallelogram rule (the green bar motif) */
.cay-rule {
  display: inline-block;
  background: var(--c-accent);
  transform: skewX(-20deg);
  width: 64px;
  height: 10px;
}
.cay-rule--thin { width: 56px; height: 1px; transform: none; }
.cay-rule--md { width: 56px; height: 8px; }
.cay-rule--xs { width: 28px; height: 12px; }
.cay-rule--dot {
  width: 8px; height: 8px;
  transform: none;
  box-shadow: 0 0 12px rgba(110, 255, 149, 0.7);
}

/* Small uppercase letter-spaced label */
.cay-eyebrow {
  font-family: var(--f-body);
  font-weight: 600;
  font-size: 12px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  margin: 0;
}
.cay-eyebrow--accent { color: var(--c-accent); }
.cay-eyebrow--muted-dark { color: rgba(249, 249, 249, 0.62); }
.cay-eyebrow--muted-light { color: rgba(28, 28, 28, 0.62); }
.cay-eyebrow--lg { font-size: 14px; font-weight: 700; }
.cay-eyebrow--xs { font-size: 11px; letter-spacing: 0.22em; }

/* Italic green-gradient text-fill */
.cay-accent-grad {
  font-style: normal;
  font-weight: 900;
  background: linear-gradient(120deg, #6EFF95 0%, #00D9A6 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent;
}
.cay-accent-grad--deep {
  background: linear-gradient(120deg, #6EFF95 0%, #2FCB6A 60%, #1F8A48 100%);
  -webkit-background-clip: text;
  background-clip: text;
}

/* Plain green accent (no gradient) */
.cay-accent {
  font-style: normal;
  color: var(--c-accent);
  font-weight: 900;
}

/* Large outlined ghost numeral (decorative bg digit) */
.cay-ghost-num {
  font-family: var(--f-display);
  font-weight: 900;
  line-height: 0.85;
  letter-spacing: -0.04em;
  color: transparent;
  -webkit-text-stroke: 1px rgba(110, 255, 149, 0.16);
  pointer-events: none;
  user-select: none;
}

/* Section header wrapper (eyebrow + lead h2 + body in flex column) */
.cay-section-head {
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin-bottom: clamp(36px, 4vw, 56px);
  max-width: 880px;
}

/* Section inner container */
.cay-section-inner {
  position: relative;
  max-width: 1300px;
  margin-inline: auto;
}
.cay-section-inner--wide { max-width: 1700px; }

/* Section large lead h2 (the big italic-accented section headline) */
.cay-section-lead {
  font-family: var(--f-display);
  font-weight: 900;
  font-size: clamp(36px, 4.4vw, 56px);
  line-height: 1.05;
  letter-spacing: -0.02em;
  margin: 0;
}

/* Card base — shared by offering / principle / engagement / image / story-row cards.
   Variants set their own bg, padding, hover treatment. */
.cay-card {
  position: relative;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  isolation: isolate;
  transition: border-color var(--t-fast) var(--ease-out),
              transform var(--t-fast) var(--ease-out),
              background var(--t-base) var(--ease-out),
              box-shadow var(--t-base) var(--ease-out);
}

/* ========== Top nav ========== */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 60;
  background: var(--c-navbar);
  padding: 14px 32px;
}
.nav__inner {
  display: flex;
  align-items: center;
  gap: 2rem;
  max-width: none;
  padding-inline: 0;
}
.nav__menu { margin-left: auto; }
.nav__brand img {
  width: 85px;
  height: 33px;
  object-fit: contain;
  object-position: left center;
}
.nav__menu {
  display: flex;
  gap: 40px;
  align-items: center;
}
.nav__menu a {
  color: var(--c-secondary);
  font-family: var(--f-body);
  font-weight: 200;
  font-size: var(--fs-nav);
  line-height: 22px;
  text-decoration: none;
  position: relative;
}
.nav__menu a.is-active {
  font-weight: 700;
}
.nav__menu a.is-active::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -8px;
  width: 100%;
  height: 3px;
  background: var(--c-accent);
  border-radius: 0;
}
.nav__menu-item--has-sub { position: relative; }
.nav__sub {
  position: absolute;
  top: calc(100% + 14px);
  left: -16px;
  min-width: 240px;
  padding: 8px;
  background: var(--c-navbar);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 0;
  display: flex;
  flex-direction: column;
  gap: 2px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-6px);
  transition: opacity var(--t-fast) var(--ease-out),
              transform var(--t-fast) var(--ease-out),
              visibility 0s linear var(--t-fast);
}
.nav__menu-item--has-sub:hover .nav__sub,
.nav__menu-item--has-sub:focus-within .nav__sub {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
  transition-delay: 0s;
}
.nav__sub a {
  display: block;
  padding: 10px 14px;
  font-style: italic;
  font-weight: 200;
  font-size: 17px;
}
.nav__sub a:hover { background: rgba(255, 255, 255, 0.05); }
.nav__menu-toggle { display: none; }

.nav__cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 9px 18px;
  background: var(--c-accent);
  color: var(--c-text);
  font-family: var(--f-display);
  font-weight: 800;
  font-size: 14px;
  letter-spacing: -0.005em;
  border-radius: 0;
  text-decoration: none;
  white-space: nowrap;
  transition: transform var(--t-fast) var(--ease-out), filter var(--t-fast) var(--ease-out);
}
.nav__cta:hover { transform: translateY(-1px); filter: brightness(1.05); }

@media (max-width: 991px) {
  .nav__menu { display: none; }
  .nav__cta { display: none; }
  .nav__menu-toggle {
    display: inline-flex;
    width: 40px; height: 40px;
    align-items: center;
    justify-content: center;
    color: var(--c-secondary);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 0;
    position: relative;
    z-index: 60;
    background: transparent;
    font-size: 22px;
    line-height: 1;
    cursor: pointer;
  }
}

/* ========== Mobile nav drawer (injected by JS for ≤991px) ========== */
.nav__drawer {
  position: fixed;
  inset: 0;
  z-index: 50;
  display: none;
  flex-direction: column;
  gap: 32px;
  background: var(--c-navbar);
  color: var(--c-secondary);
  padding: 96px clamp(24px, 6vw, 48px) 48px;
  overflow-y: auto;
  transform: translateY(-100%);
  transition: transform 280ms var(--ease-out);
  border-bottom: 2px solid var(--c-accent);
}
@media (max-width: 991px) {
  .nav__drawer { display: flex; }
}
.nav__drawer.is-open { transform: translateY(0); }

.nav__drawer-list {
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.nav__drawer-link {
  font-family: var(--f-display);
  font-weight: 900;
  font-size: clamp(28px, 7vw, 40px);
  line-height: 1.1;
  letter-spacing: -0.015em;
  color: var(--c-secondary);
  text-decoration: none;
  padding: 10px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}
.nav__drawer-link:last-child { border-bottom: 0; }
.nav__drawer-link.is-active { color: var(--c-accent); }
.nav__drawer-link--sub {
  font-size: clamp(18px, 4.5vw, 24px);
  font-weight: 700;
  padding: 8px 0 8px 20px;
  color: rgba(249, 249, 249, 0.78);
}
.nav__drawer-group {
  display: block;
  font-family: var(--f-body);
  font-weight: 600;
  font-size: 12px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--c-accent);
  padding: 24px 0 4px;
}
.nav__drawer .nav__drawer-cta {
  display: inline-flex;
  align-self: flex-start;
  margin-top: 16px;
}

body.nav-locked { overflow: hidden; }

@media (prefers-reduced-motion: reduce) {
  .nav__drawer { transition: none; }
}

/* ========== Buttons ========== */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  border-radius: 0;
  font-family: var(--f-body);
  font-style: italic;
  font-weight: 200;
  font-size: var(--fs-body);
  line-height: 26px;
  padding: 6px 16px;
  transition: opacity var(--t-fast) var(--ease-out);
}
.btn:hover { opacity: 0.85; }
/* button-2 — hero ghost */
.btn--ghost {
  background: transparent;
  color: var(--c-secondary);
  border: 1px solid var(--c-secondary);
  padding: 4px 15px;
}
/* button-3 default — workshop dark */
.btn--dark {
  background: var(--c-navbar);
  color: var(--c-secondary);
}

/* ========== Hero (editorial dark) ========== */
.hero-stage {
  position: relative;
  height: 175vh;
}
.hero {
  position: sticky;
  top: 0;
  height: 100vh;
  min-height: 100vh;
  background: var(--c-navbar);
  color: var(--c-secondary);
  isolation: isolate;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}
.hero__title { transform-origin: left top; will-change: transform; }
.hero__char {
  display: inline-block;
  will-change: transform, opacity;
  transform-origin: 50% 50%;
}
.hero__title-accent .hero__char {
  background: linear-gradient(120deg, #6EFF95 0%, #00D9A6 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent;
  font-style: italic;
  /* Italic glyphs (f, l, etc.) lean right; without enough padding the top-right
     of each letter gets clipped by background-clip:text rendering. */
  padding-right: 0.16em;
}
.bold-build-char {
  display: inline-block;
  opacity: 0;
  will-change: transform, opacity;
}
.bold-build-char-word {
  display: inline-block;
  white-space: nowrap;
}
.hero__layout {
  position: relative;
  z-index: 1;
  flex: 1;
  display: grid;
  grid-template-rows: auto 1fr auto;
  gap: 48px;
  padding: 120px clamp(96px, 10vw, 168px) 56px;
}
.hero__bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  background-image:
    radial-gradient(80% 45% at 50% -10%, rgba(110, 255, 149, 0.32) 0%, rgba(110, 255, 149, 0.12) 35%, rgba(110, 255, 149, 0) 75%),
    radial-gradient(60% 50% at 70% 55%, rgba(110, 255, 149, 0.18) 0%, rgba(110, 255, 149, 0) 70%),
    radial-gradient(40% 35% at 30% 25%, rgba(110, 255, 149, 0.10) 0%, rgba(110, 255, 149, 0) 70%),
    radial-gradient(120% 80% at 100% 0%, #2B2B2B 0%, var(--c-navbar) 60%, #0F0F0F 100%);
  background-size: auto, auto, auto, cover;
  background-position: center;
  background-repeat: no-repeat;
  opacity: 0.95;
}

/* ---------- Architectural slab composition (replaces skyline image) ----------
   Stacked, skewed parallelograms in mint→teal recede into the dark hero from
   the right edge, building depth from the brand's existing graphic vocabulary. */
.hero__arch {
  position: absolute;
  top: 120px; right: 0;
  width: min(50%, 720px);
  height: calc(60% - 120px);
  z-index: 0;
  pointer-events: none;
  overflow: hidden;
  -webkit-mask-image: linear-gradient(180deg, #000 0%, #000 70%, transparent 100%);
          mask-image: linear-gradient(180deg, #000 0%, #000 70%, transparent 100%);
}
.hero__arch .slab {
  position: absolute;
  display: block;
  background: linear-gradient(180deg, var(--c-mint) 0%, var(--c-teal) 100%);
  transform: skewX(-20deg);
  transform-origin: center;
  border-radius: 0;
}
/* Far-back wash — barely there, sets atmospheric depth */
.hero__arch .slab--bg-1 {
  right: -120px; top: -80px;
  width: 360px; height: 540px;
  opacity: 0.08;
}
.hero__arch .slab--bg-2 {
  right: 40px; top: -20px;
  width: 220px; height: 480px;
  opacity: 0.10;
  background: linear-gradient(180deg, var(--c-teal) 0%, #0F8E6F 100%);
}
/* Mid-ground slabs */
.hero__arch .slab--mid-1 {
  right: 200px; top: 80px;
  width: 240px; height: 380px;
  opacity: 0.18;
}
.hero__arch .slab--mid-2 {
  right: 110px; top: 40px;
  width: 70px; height: 440px;
  opacity: 0.32;
}
/* Foreground — the architectural face */
.hero__arch .slab--front-1 {
  right: 320px; top: 140px;
  width: 110px; height: 320px;
  opacity: 0.5;
}
.hero__arch .slab--front-2 {
  right: 230px; top: 220px;
  width: 80px; height: 240px;
  opacity: 0.68;
}
/* Bright accents — punctuation, like the tip of a tower or a single illuminated face */
.hero__arch .slab--accent-1 {
  right: 440px; top: 80px;
  width: 46px; height: 220px;
  opacity: 0.95;
  background: var(--c-mint);
  box-shadow: 0 0 36px rgba(110, 255, 149, 0.4);
}
.hero__arch .slab--accent-2 {
  right: 36px; top: 180px;
  width: 30px; height: 150px;
  opacity: 0.85;
  background: var(--c-mint);
}
/* Horizontal beam — a thin deck above the architectural face */
.hero__arch .slab--beam {
  right: 260px; top: 130px;
  width: 200px; height: 10px;
  opacity: 0.5;
  background: linear-gradient(90deg, var(--c-mint) 0%, var(--c-teal) 100%);
}
/* Cover — the headline parallelogram, larger and brighter than the rest,
   stacked above the others. Numerals (.hero__ghost) still paint over this
   because they're a later sibling outside .hero__arch. */
.hero__arch .slab--cover {
  right: 150px; top: 30px;
  width: 320px; height: 620px;
  opacity: 0.92;
  background: linear-gradient(180deg, var(--c-mint) 0%, var(--c-teal) 65%, #0F8E6F 100%);
  box-shadow: 0 24px 80px rgba(110, 255, 149, 0.18);
}
/* Homepage only — taller arch frame + taller signature cover slab. */
.hero-stage .hero__arch { height: calc(88% - 120px); }
.hero-stage .hero__arch .slab--cover {
  top: 0;
  height: clamp(720px, 92vh, 920px);
}
/* Homepage only — quiet the supporting decoration so the cover slab leads. */
.hero-stage .hero__arch .slab--bg-1     { opacity: 0.04; }
.hero-stage .hero__arch .slab--bg-2     { opacity: 0.05; }
.hero-stage .hero__arch .slab--mid-1    { opacity: 0.09; }
.hero-stage .hero__arch .slab--mid-2    { opacity: 0.16; }
.hero-stage .hero__arch .slab--front-1  { opacity: 0.25; }
.hero-stage .hero__arch .slab--front-2  { opacity: 0.34; }
.hero-stage .hero__arch .slab--accent-1 { opacity: 0.50; box-shadow: 0 0 24px rgba(110, 255, 149, 0.22); }
.hero-stage .hero__arch .slab--accent-2 { opacity: 0.45; }
.hero-stage .hero__arch .slab--beam     { opacity: 0.28; }
.hero-stage .hero__lines { opacity: 0.55; }
.hero-stage .hero__ghost { opacity: 0.6; }

@media (max-width: 991px) {
  .hero__arch { width: 70%; opacity: 0.5; }
}
@media (max-width: 640px) {
  .hero__arch { display: none; }
}
.hero__layout { position: relative; z-index: 1; }
.hero__lines {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
  pointer-events: none;
  mix-blend-mode: screen;
}
.hero__ghost {
  position: absolute;
  right: clamp(-40px, -2vw, 40px);
  bottom: -8vw;
  font-family: var(--f-display);
  font-weight: 900;
  font-size: clamp(280px, 36vw, 560px);
  line-height: 0.85;
  letter-spacing: -0.04em;
  color: transparent;
  -webkit-text-stroke: 1px rgba(110, 255, 149, 0.16);
  pointer-events: none;
  user-select: none;
  z-index: 0;
}
@media (max-width: 991px) {
  .hero__ghost { font-size: clamp(180px, 60vw, 320px); right: -20px; bottom: -40px; }
}

/* Status bar */
.hero__status {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 24px;
  font-family: var(--f-body);
  font-size: 12px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: rgba(249, 249, 249, 0.65);
}
.hero__status-left { display: flex; flex-direction: column; gap: 8px; }
.hero__status-line { margin: 0; display: inline-flex; align-items: center; gap: 10px; }
.hero__tagline {
  margin: 0;
  display: inline-flex;
  align-items: center;
  gap: 12px;
  color: var(--c-accent);
}
/* .hero__tagline-rule: use combo `cay-rule cay-rule--thin` in markup. */
.hero__status-right { margin: 0; }
/* .hero__dot: use combo `cay-rule cay-rule--dot` in markup. */

/* Main row */
.hero__main {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 64px;
  align-items: end;
}
.hero__copy {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  max-width: 1100px;
}
.hero__title {
  margin: 0 0 32px;
  padding-bottom: 0.08em;
  font-family: var(--f-display);
  font-weight: 900;
  font-size: clamp(64px, 9vw, 140px);
  line-height: 1.15;
  letter-spacing: -0.02em;
  color: var(--c-secondary);
}
/* Requires combo class `cay-accent-grad`. */
.hero__title-accent {
  display: inline-block;
  font-style: normal;
  padding: 0.04em 0.12em 0.12em 0.04em;
  margin-bottom: -0.12em;
  line-height: 1.25;
}
.hero__sub {
  margin: 0 0 40px;
  font-family: var(--f-body);
  font-weight: 300;
  font-size: 19px;
  line-height: 1.55;
  color: rgba(249, 249, 249, 0.82);
  max-width: 560px;
}
.hero__ctas { display: flex; align-items: center; gap: 24px; flex-wrap: wrap; }
.btn--accent {
  background: var(--c-accent);
  color: #0E2A19;
  border-radius: 0;
  padding: 18px 32px;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  border: none;
  transition: transform var(--t-fast) var(--ease-out), filter var(--t-fast) var(--ease-out);
}
.btn--accent:hover { transform: translateY(-1px); filter: brightness(1.05); }
.hero__ghost-link {
  font-family: var(--f-body);
  font-size: 15px;
  color: rgba(249, 249, 249, 0.85);
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  letter-spacing: 0.02em;
}
.hero__ghost-link:hover { color: var(--c-secondary); }

/* Stats column — hidden on the landing page hero per design direction;
   keep the markup so the layout grid retains its column slot allocation. */
.hero__stats {
  display: grid;
  grid-auto-rows: min-content;
  gap: 28px;
  min-width: 220px;
  padding-bottom: 4px;
}
body:not(.body--interior):not(.body--our-story):not(.body--contacts) .hero__stats { display: none; }
.hero__stat {
  display: flex;
  flex-direction: column;
  gap: 6px;
  padding-top: 20px;
  border-top: 1px solid rgba(249, 249, 249, 0.18);
}
.hero__stat-num {
  font-family: var(--f-display);
  font-weight: 900;
  font-size: 40px;
  line-height: 1;
  letter-spacing: -0.01em;
  color: var(--c-secondary);
}
.hero__stat--accent .hero__stat-num { color: var(--c-accent); }
.hero__stat-label {
  font-family: var(--f-body);
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: rgba(249, 249, 249, 0.55);
}

/* Foot bar */
.hero__foot {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 24px;
  font-family: var(--f-body);
  font-size: 12px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: rgba(249, 249, 249, 0.55);
}
.hero__foot-left { margin: 0; display: inline-flex; align-items: center; gap: 10px; }
.hero__foot-right { margin: 0; display: flex; flex-direction: column; align-items: flex-end; gap: 4px; }

@media (max-width: 991px) {
  .hero { min-height: auto; }
  .hero__layout { padding: 110px 24px 32px; gap: 32px; }
  .hero__status { flex-direction: column; }
  .hero__status-right { font-size: 11px; }
  .hero__main { grid-template-columns: 1fr; gap: 40px; }
  .hero__title { font-size: clamp(56px, 14vw, 96px); margin-bottom: 24px; }
  .hero__sub { font-size: 17px; margin-bottom: 28px; }
  .hero__stats { grid-template-columns: repeat(3, 1fr); min-width: 0; gap: 16px; }
  .hero__stat-num { font-size: 28px; }
  .hero__foot { flex-direction: column; align-items: flex-start; }
  .hero__foot-right { align-items: flex-start; }
}

/* ========== Hero — interior variant ==========
   Calmer cousin of the landing hero. Reuses slabs, SVG grid, ghost numeral,
   tagline rule. Drops sticky scroll, character-fall, stats, and footer row. */
.hero--interior {
  position: relative;          /* not sticky — no .hero-stage wrapper */
  height: auto;
  min-height: 0;
}
.hero--interior .hero__title {
  transform: none;
  will-change: auto;
}
.hero--interior .hero__layout {
  grid-template-rows: auto auto;
  gap: 32px;
  width: 100%;
  max-width: 1160px;
  margin-inline: auto;
  padding: 96px 36px 96px;
}
/* Bleed-left — every interior hero shifts 300px to the left at desktop, scaling
   linearly down to 0 at the mobile breakpoint (≤768px). The right edge always pins
   to the viewport's right edge via width = 100% − bleed.
   Linear interpolation: f(768) = 0, f(1280) = −300 → f(vw) = 450 − 58.6vw.
   Body overflow-x: clip prevents the negative margin from creating a horizontal scroll. */
.hero--interior {
  --bleed: clamp(-300px, calc(450px - 58.6vw), 0px);
  margin-left: var(--bleed);
  width: calc(100% - var(--bleed));
}
body { overflow-x: clip; }
.hero--interior .hero__main {
  display: grid;
  grid-template-columns: minmax(0, 1fr);   /* no stats panel */
  align-items: start;
}
.hero--interior .hero__title {
  font-size: clamp(40px, 5.2vw, 72px);
  line-height: 1.05;
  letter-spacing: -0.02em;
  max-width: 18ch;
}
.hero--interior .hero__sub { max-width: 56ch; }
/* Calmer interior pages — quiet the busy decoration so the breakout
   parallelogram is the loudest brand element. */
.hero--interior .hero__arch { opacity: 0.2; }
.hero--interior .hero__lines { opacity: 0.4; }
.hero--interior .hero__ghost { opacity: 0.55; }

/* Light variant (e.g. thought-leadership) — keep grid + ghost, drop slabs */
.hero--interior.hero--light .hero__arch { display: none; }

@media (max-width: 991px) {
  .hero--interior { --bleed: 0px; margin-left: 0; width: 100%; }
  .hero--interior .hero__layout { padding: 110px 24px 72px; gap: 28px; }
  .hero--interior .hero__title { font-size: clamp(40px, 9vw, 64px); }
}

/* ========== Homepage hero — non-sticky, sized and styled like interior ========== */
.hero--home {
  position: relative;
  height: auto;
  min-height: 0;
  --bleed: clamp(-300px, calc(450px - 58.6vw), 0px);
  margin-left: var(--bleed);
  width: calc(100% - var(--bleed));
}
.hero--home .hero__layout {
  grid-template-rows: auto auto;
  gap: 32px;
  width: 100%;
  max-width: 1160px;
  margin-inline: auto;
  padding: 96px 36px 96px;
}
.hero--home .hero__main { align-items: start; }
.hero--home .hero__arch  { opacity: 0.2; }
.hero--home .hero__lines { opacity: 0.4; }
.hero--home .hero__ghost { opacity: 0.55; }
.hero--home .hero__title {
  font-size: clamp(40px, 5.2vw, 72px);
  line-height: 1.05;
  letter-spacing: -0.02em;
  max-width: 18ch;
  margin-bottom: 24px;
}
@media (max-width: 991px) {
  .hero--home { --bleed: 0px; margin-left: 0; width: 100%; }
  .hero--home .hero__layout { padding: 110px 24px 72px; gap: 28px; }
  .hero--home .hero__title { font-size: clamp(40px, 9vw, 64px); }
}

/* ========== Bold Impact (homepage, dark editorial) ========== */
.bold-impact {
  position: relative;
  background: #1C1C1C;
  color: var(--c-secondary);
  padding: 120px 64px 140px;
  overflow: hidden;
  isolation: isolate;
}
.bold-impact__inner {
  position: relative;
  z-index: 1;
  max-width: 1700px;
  margin-inline: auto;
  display: flex;
  flex-direction: column;
  gap: 56px;
}
.bold-impact__ghost {
  position: absolute;
  top: -40px;
  right: 60px;
  font-family: var(--f-display);
  font-weight: 900;
  font-size: clamp(120px, 28vw, 360px);
  line-height: 1;
  letter-spacing: -0.04em;
  color: transparent;
  -webkit-text-stroke: 1px rgba(110, 255, 149, 0.18);
  pointer-events: none;
  z-index: 0;
  user-select: none;
}
.bold-impact__headline {
  font-family: var(--f-display);
  font-weight: 900;
  font-size: clamp(32px, 4.4vw, 72px);
  line-height: 1.08;
  letter-spacing: -0.015em;
  margin: 0;
  max-width: 1300px;
}
.bold-impact__headline > * {
  display: inline;
}
.bold-impact__headline .is-bright { color: #F9F9F9; }
.bold-impact__headline .is-dim { color: rgba(249, 249, 249, 0.42); font-weight: 800; }
.bold-impact__headline .is-accent {
  font-style: normal;
  color: var(--c-accent);
  font-weight: 900;
}

@media (max-width: 991px) {
  .bold-impact { padding: 80px 24px 100px; }
  .bold-impact__ghost { right: 16px; top: -20px; }
}

/* ========== Eyebrow (with accent rule) — homepage dark sections ========== */
/* Requires combo classes `cay-eyebrow cay-eyebrow--accent` in markup. */
.eyebrow--accent {
  display: inline-flex;
  align-items: center;
  gap: 14px;
}
/* .eyebrow--accent .eyebrow__rule: use combo `cay-rule cay-rule--thin` in markup. */

/* ========== Our Offerings v2 (dark, 4-up cards row) ========== */
.offerings-v2 {
  position: relative;
  background: #0D0D0D;
  color: var(--c-secondary);
  padding: 96px 0 0;
  overflow: hidden;
  isolation: isolate;
  border-top: 1px solid rgba(255, 255, 255, 0.04);
}
.offerings-v2__corner {
  position: absolute;
  top: 22px;
  left: 22px;
  width: 18px;
  height: 18px;
  border: 2px solid var(--c-accent);
  border-radius: 0;
  z-index: 2;
}
.offerings-v2__corner::after {
  content: "";
  position: absolute;
  inset: 4px;
  border-radius: 0;
  background: var(--c-accent);
}
.offerings-v2__head {
  position: relative;
  max-width: 1700px;
  margin-inline: auto;
  padding: 0 64px 80px;
  display: flex;
  flex-direction: column;
  gap: 28px;
}
.offerings-v2__headline {
  font-family: var(--f-display);
  font-weight: 900;
  font-size: clamp(32px, 4.4vw, 64px);
  line-height: 1.04;
  letter-spacing: -0.015em;
  color: var(--c-secondary);
  margin: 0;
}
.offerings-v2__headline em {
  font-style: normal;
  color: var(--c-accent);
  font-weight: 900;
  background: linear-gradient(180deg, #6EFF95 0%, #2EB76A 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}
.offerings-v2__intro {
  max-width: 640px;
  font-family: var(--f-body);
  font-weight: 400;
  font-size: 15px;
  line-height: 22px;
  color: rgba(249, 249, 249, 0.62);
  margin: 0;
}

.offerings-v2__grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
}
/* Requires combo class `cay-card`. */
.offering-card {
  justify-content: space-between;
  min-height: 360px;
  padding: 32px 28px 40px;
  color: var(--c-secondary);
  text-decoration: none;
  border-right: 1px solid rgba(255, 255, 255, 0.06);
  background: transparent;
}
.offering-card:last-child { border-right: 0; }

/* Reveal-on-scroll: cards drift up + fade in, staggered left → right */
.offering-card[data-reveal] {
  opacity: 0;
  transform: translateY(48px);
  transition:
    opacity 720ms cubic-bezier(0.22, 0.61, 0.36, 1),
    transform 720ms cubic-bezier(0.22, 0.61, 0.36, 1),
    background var(--t-base) var(--ease-out),
    box-shadow var(--t-base) var(--ease-out);
}
.offering-card[data-reveal]:nth-child(1) { transition-delay: 0ms, 0ms; }
.offering-card[data-reveal]:nth-child(2) { transition-delay: 110ms, 110ms; }
.offering-card[data-reveal]:nth-child(3) { transition-delay: 220ms, 220ms; }
.offering-card[data-reveal]:nth-child(4) { transition-delay: 330ms, 330ms; }
.offering-card[data-reveal].is-in {
  opacity: 1;
  transform: translateY(0);
}
@media (prefers-reduced-motion: reduce) {
  .offering-card[data-reveal] {
    opacity: 1;
    transform: none;
    transition: none;
  }
}
.offering-card__ghost {
  position: absolute;
  bottom: -36px;
  right: -8px;
  font-family: var(--f-display);
  font-weight: 900;
  font-size: clamp(96px, 22vw, 220px);
  line-height: 1;
  letter-spacing: -0.04em;
  color: rgba(255, 255, 255, 0.025);
  pointer-events: none;
  z-index: 0;
  user-select: none;
}
.offering-card__top,
.offering-card__bottom { position: relative; z-index: 1; }
.offering-card__top {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 16px;
}
.offering-card__num {
  font-family: var(--f-body);
  font-weight: 600;
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: rgba(249, 249, 249, 0.42);
  transition: color var(--t-base) var(--ease-out);
}
.offering-card__icon {
  display: inline-flex;
  width: 44px;
  height: 44px;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, 0.06);
  border-radius: 0;
  color: var(--c-secondary);
  transition: background var(--t-base) var(--ease-out),
              color var(--t-base) var(--ease-out),
              transform var(--t-base) var(--ease-out);
}
.offering-card__icon svg { width: 22px; height: 22px; }
.offering-card__bottom {
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.offering-card__title {
  font-family: var(--f-display);
  font-weight: 900;
  font-size: 26px;
  line-height: 1.15;
  letter-spacing: -0.01em;
  color: var(--c-secondary);
  margin: 0;
  transform: translateY(0);
  transition: transform 420ms var(--ease-out);
}
.offering-card__body {
  font-family: var(--f-body);
  font-weight: 400;
  font-size: 14px;
  line-height: 21px;
  color: rgba(249, 249, 249, 0.64);
  margin: 0;
  max-height: 0;
  opacity: 0;
  overflow: hidden;
  transform: translateY(14px);
  transition: max-height 420ms var(--ease-out),
              opacity 280ms var(--ease-out) 60ms,
              transform 420ms var(--ease-out);
}
.offering-card__cta {
  font-family: var(--f-body);
  font-weight: 600;
  font-size: 13px;
  letter-spacing: 0.04em;
  color: rgba(249, 249, 249, 0.62);
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transform: translateY(0);
  transition: color 320ms var(--ease-out),
              gap 320ms var(--ease-out),
              transform 420ms var(--ease-out);
}

/* Hover — animated reveal of body copy + green wash + soft glow */
.offering-card:hover,
.offering-card:focus-visible {
  background:
    radial-gradient(ellipse at 80% 100%, rgba(110, 255, 149, 0.20) 0%, rgba(110, 255, 149, 0) 60%),
    rgba(255, 255, 255, 0.02);
  box-shadow:
    inset 0 0 0 1px rgba(110, 255, 149, 0.18),
    0 0 60px -8px rgba(110, 255, 149, 0.28);
}
.offering-card:hover .offering-card__icon,
.offering-card:focus-visible .offering-card__icon {
  background: var(--c-accent);
  color: #0D0D0D;
  transform: translateY(-2px);
}
.offering-card:hover .offering-card__num,
.offering-card:focus-visible .offering-card__num {
  color: var(--c-accent);
}
.offering-card:hover .offering-card__title,
.offering-card:focus-visible .offering-card__title {
  transform: translateY(-4px);
}
.offering-card:hover .offering-card__body,
.offering-card:focus-visible .offering-card__body {
  max-height: 240px;
  opacity: 1;
  transform: translateY(0);
}
.offering-card:hover .offering-card__cta,
.offering-card:focus-visible .offering-card__cta {
  color: var(--c-accent);
  gap: 12px;
}

@media (prefers-reduced-motion: reduce) {
  .offering-card,
  .offering-card__icon,
  .offering-card__body,
  .offering-card__cta { transition: none; }
}

@media (max-width: 1100px) {
  .offerings-v2__head { padding: 0 32px 64px; }
  .offerings-v2__grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .offering-card:nth-child(2) { border-right: 0; }
  .offering-card:nth-child(-n+2) { border-bottom: 1px solid rgba(255, 255, 255, 0.06); }
}
@media (max-width: 640px) {
  .offerings-v2__head { padding: 0 24px 56px; }
  .offerings-v2__grid { grid-template-columns: 1fr; }
  .offering-card { border-right: 0; border-bottom: 1px solid rgba(255, 255, 255, 0.06); min-height: 280px; }
  .offering-card:last-child { border-bottom: 0; }
}

/* ========== Section wrapper (Bold impact + Real outcomes) ========== */
.section {
  padding-block: 96px;
}
.section-wrapper {
  display: grid;
  gap: 80px 18px;
  grid-template-columns: 1.25fr 2.25fr;
  align-items: center;
  width: 100%;
  max-width: var(--container-max);
  margin-inline: auto;
  padding-inline: 0;
}
.section-wrapper__media img {
  width: 100%;
  height: auto;
  max-width: 600px;
}
.section-wrapper__copy {
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.section-title {
  font-family: var(--f-display);
  font-weight: 900;
  font-size: var(--fs-section);
  line-height: var(--lh-section);
  color: var(--c-text);
  margin: 0;
}
.text-light {
  font-family: var(--f-body);
  font-weight: 200;
  font-size: var(--fs-body);
  line-height: var(--lh-body);
  color: var(--c-text);
}
.text-light strong { font-weight: 700; }
.text-light em { font-style: italic; }

/* ========== Testimonial (Real Outcomes) ========== */
.testimonial {
  position: relative;
  background: var(--c-navbar);
  color: var(--c-secondary);
  padding-block: 120px;
  overflow: hidden;
}
.testimonial__angle {
  position: absolute;
  top: -40px;
  right: -120px;
  width: 440px;
  height: auto;
  opacity: 0.85;
  pointer-events: none;
  z-index: 0;
}
.testimonial__inner {
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: var(--container-max);
  margin-inline: auto;
  padding-inline: var(--gutter);
}
.testimonial__mark {
  position: absolute;
  top: -28px;
  left: var(--gutter);
  font-family: var(--f-display);
  font-weight: 900;
  font-size: clamp(120px, 30vw, 320px);
  line-height: 1;
  color: rgba(110, 255, 149, 0.08);
  pointer-events: none;
  user-select: none;
}
.testimonial__eyebrow {
  display: flex;
  align-items: center;
  gap: 24px;
  margin-bottom: 48px;
  position: relative;
}
/* Requires combo classes `cay-eyebrow cay-eyebrow--accent` in markup. */
.testimonial__eyebrow-text {
  font-size: 13px;
  white-space: nowrap;
}
.testimonial__eyebrow-rule {
  flex: 1;
  height: 1px;
  background: var(--c-accent);
  opacity: 0.5;
}
.testimonial__quote {
  position: relative;
  margin: 0 0 64px;
  font-family: var(--f-display);
  font-weight: 500;
  font-style: italic;
  font-size: clamp(1.5rem, 2.6vw, 2.5rem);
  line-height: 1.3;
  letter-spacing: -0.01em;
  color: var(--c-secondary);
  max-width: 980px;
  text-wrap: pretty;
}
.testimonial__quote em { font-style: italic; }
.testimonial__highlight {
  color: var(--c-accent);
  font-style: italic;
}
.testimonial__author {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-bottom: 56px;
  position: relative;
}
.testimonial__avatar {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 64px;
  height: 64px;
  border-radius: 0;
  background: linear-gradient(135deg, #6EFF95 0%, #2FCB6A 100%);
  color: #0E2A19;
  font-family: var(--f-body);
  font-weight: 700;
  font-size: 18px;
  letter-spacing: 0.04em;
  flex-shrink: 0;
}
.testimonial__author-meta {
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.testimonial__author-name {
  font-family: var(--f-body);
  font-weight: 600;
  font-size: 17px;
  color: var(--c-secondary);
}
.testimonial__author-sub {
  font-family: var(--f-body);
  font-weight: 400;
  font-size: 15px;
  color: rgba(249, 249, 249, 0.62);
}
.testimonial__rule {
  display: block;
  width: 100%;
  height: 1px;
  background: rgba(249, 249, 249, 0.18);
}

@media (max-width: 991px) {
  .testimonial { padding-block: 80px; }
  .testimonial__angle { width: 360px; top: -40px; right: -120px; }
  .testimonial__mark { top: -10px; }
  .testimonial__quote { margin-bottom: 48px; }
  .testimonial__author { margin-bottom: 40px; }
}

@media (max-width: 991px) {
  .section-wrapper {
    grid-template-columns: 1fr;
    grid-row-gap: 32px;
  }
  .section-title { font-size: var(--fs-section-mobile); line-height: var(--lh-section-mobile); }
}

/* ========== Our Offerings ========== */
.offerings { padding-block: 96px; }
.offerings__inner {
  width: 100%;
  max-width: var(--container-max);
  margin-inline: auto;
  padding-inline: 0;
  display: flex;
  flex-direction: column;
  gap: 64px;
}
.offerings__head {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.offerings__intro {
  font-family: var(--f-body);
  font-style: italic;
  font-weight: 200;
  font-size: var(--fs-body);
  line-height: var(--lh-body);
  color: var(--c-text);
}
.offerings__intro strong { font-weight: 700; font-style: normal; }
.offerings__intro em { font-style: italic; font-weight: 200; }

.offerings__grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 96px 24px;
}
.action-card {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.action-card__image {
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
  border-radius: 0;
  background: var(--c-navbar);
}
.action-card__title {
  font-family: var(--f-display);
  font-weight: 900;
  font-size: var(--fs-card-title);
  line-height: 30px;
  color: var(--c-text);
  margin: 0;
}
.action-card__body {
  font-family: var(--f-body);
  font-weight: 200;
  font-size: var(--fs-body);
  line-height: var(--lh-body);
  color: var(--c-text);
}
.action-card__readmore {
  display: inline-flex;
  align-items: baseline;
  gap: 4px;
  font-family: var(--f-body);
  font-style: italic;
  font-weight: 700;
  font-size: var(--fs-body);
  line-height: 22px;
  /* offerings section sits on dark hero stage — use lime accent for legibility. */
  color: var(--c-accent);
}
.action-card__readmore::before {
  content: "› ";
  color: var(--c-accent);
}
.action-card__readmore:hover { text-decoration: underline; }

@media (max-width: 768px) {
  .offerings__grid { grid-template-columns: 1fr; gap: 48px; }
  .action-card { max-width: 450px; margin-inline: auto; }
}

/* ========== Workshop CTA — dark band with split layout (text left, CTAs right) ========== */
.workshop {
  background: var(--c-navbar);
  color: var(--c-secondary);
  padding: clamp(72px, 8vw, 112px) 36px;
  display: flex;
  justify-content: center;
}
.workshop__inner {
  display: grid;
  grid-template-columns: minmax(0, 1.4fr) minmax(340px, 0.85fr);
  gap: clamp(40px, 6vw, 96px);
  align-items: start;
  width: 100%;
  max-width: var(--container-max);
}
.workshop__head {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}
.workshop__eyebrow {
  font-family: var(--f-body);
  font-weight: 600;
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--c-accent);
  margin: 0 0 28px;
  display: inline-flex;
  align-items: center;
  gap: 14px;
}
.workshop__eyebrow::before {
  content: "";
  width: 36px;
  height: 6px;
  background: var(--c-accent);
  transform: skewX(-20deg);
}
.workshop__title {
  font-family: var(--f-display);
  font-weight: 900;
  font-size: clamp(34px, 4.2vw, 52px);
  line-height: 1.04;
  letter-spacing: -0.02em;
  color: var(--c-secondary);
  margin: 0;
}
.workshop__title em {
  display: inline-block;
  font-style: normal;
  color: var(--c-accent);
  font-weight: 900;
}
.workshop__body {
  font-family: var(--f-body);
  font-weight: 200;
  font-size: 16px;
  line-height: 1.55;
  color: rgba(249, 249, 249, 0.74);
  margin: 24px 0 0;
  max-width: 56ch;
}
.workshop__divider {
  width: 100%;
  height: 1px;
  background: rgba(255, 255, 255, 0.12);
  border: 0;
  margin: 32px 0 22px;
}
.workshop__trust {
  display: flex;
  flex-wrap: wrap;
  gap: 14px 32px;
  list-style: none;
  margin: 0;
  padding: 0;
}
.workshop__trust li {
  font-family: var(--f-body);
  font-weight: 700;
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(249, 249, 249, 0.78);
  display: flex;
  align-items: center;
  gap: 10px;
}
.workshop__trust li::before {
  content: "";
  width: 7px;
  height: 7px;
  border-radius: 0;
  background: var(--c-accent);
  box-shadow: 0 0 8px rgba(110, 255, 149, 0.55);
}
.workshop__actions {
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.workshop__cta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 20px 24px;
  border-radius: 0;
  text-decoration: none;
  font-family: var(--f-body);
  font-weight: 700;
  font-size: 15px;
  transition: transform var(--t-fast) var(--ease-out), background var(--t-fast) var(--ease-out), border-color var(--t-fast) var(--ease-out);
}
.workshop__cta--primary {
  background: var(--c-accent);
  color: var(--c-text);
}
.workshop__cta--primary:hover { transform: translateY(-2px); }
.workshop__cta--secondary {
  background: transparent;
  color: var(--c-secondary);
  border: 1px solid rgba(255, 255, 255, 0.18);
}
.workshop__cta--secondary:hover { border-color: rgba(255, 255, 255, 0.4); }
.workshop__cta-icon {
  display: grid;
  place-items: center;
  width: 36px;
  height: 36px;
  border-radius: 0;
  font-size: 14px;
  flex-shrink: 0;
}
.workshop__cta--primary .workshop__cta-icon {
  background: var(--c-text);
  color: var(--c-accent);
}
.workshop__cta--secondary .workshop__cta-icon {
  background: rgba(255, 255, 255, 0.06);
  color: var(--c-accent);
}

@media (max-width: 991px) {
  .workshop__inner { grid-template-columns: 1fr; gap: 32px; }
  .workshop__title { font-size: clamp(30px, 7vw, 44px); }
  .workshop__cta { padding: 16px 20px; font-size: 14px; }
  .workshop__cta-icon { width: 32px; height: 32px; }
}

/* ========== Footer (unified — CTA module + base info on one dark band) ========== */
.footer {
  background: var(--c-navbar);
  color: var(--c-secondary);
}
/* The CTA module reuses .workshop / .workshop__* class names for content;
   the .footer wrapper above provides the shared dark band so the CTA flows
   directly into the base row with no extra section break. */
.footer .workshop { padding-bottom: clamp(48px, 5vw, 72px); }
.footer__rule {
  height: 1px;
  background: rgba(255, 255, 255, 0.12);
  border: 0;
  margin: 0 36px;
}
.footer__base {
  padding: 28px 36px 16px;
  display: flex;
  justify-content: center;
}
.footer__base-inner {
  width: 100%;
  max-width: var(--container-max);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  flex-wrap: wrap;
}
.footer__brand img {
  width: 220px;
  max-width: 100%;
  height: auto;
  display: block;
}
.workshop__email {
  margin: 18px 0 0;
  font-family: var(--f-body);
  font-size: 13px;
  text-align: left;
  color: rgba(249, 249, 249, 0.62);
}
.workshop__email a {
  color: rgba(249, 249, 249, 0.85);
  text-decoration: none;
  border-bottom: 1px solid rgba(249, 249, 249, 0.22);
  padding-bottom: 1px;
  transition: color var(--t-fast), border-color var(--t-fast);
}
.workshop__email a:hover { color: var(--c-accent); border-color: var(--c-accent); }
.footer__social {
  display: flex;
  gap: 10px;
  margin: 0;
}
.footer__social a {
  width: 38px;
  height: 38px;
  border-radius: 0;
  border: 1px solid rgba(255, 255, 255, 0.28);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: var(--f-display);
  font-weight: 700;
  font-size: 14px;
  text-decoration: none !important;
  color: var(--c-secondary);
  transition: background var(--t-fast), border-color var(--t-fast), color var(--t-fast);
}
.footer__social a:hover {
  background: var(--c-accent);
  color: var(--c-text);
  border-color: var(--c-accent);
}
.footer__address {
  font-family: var(--f-body);
  font-size: 12px;
  font-style: normal;
  color: rgba(255, 255, 255, 0.35);
  text-align: center;
  margin: 0;
  padding: 8px 36px 4px;
  line-height: 1.6;
}
.footer__copyright {
  font-family: var(--f-body);
  font-size: 12px;
  color: rgba(255, 255, 255, 0.45);
  text-align: center;
  margin: 0;
  padding: 4px 36px 24px;
}

@media (max-width: 991px) {
  .footer__base-inner { grid-template-columns: 1fr; justify-items: center; gap: 20px; }
}

/* ========== Page hero (interior pages) ==========
   Interior pages on live use a tighter scale than the homepage:
   H1 64px/72px lime green, body 19px, container 1160px. */
.page-hero {
  position: relative;
  background: #000000;        /* live uses pure black */
  color: var(--c-secondary);
  padding: 152px 36px 144px;  /* live hero ≈ 666px tall; nav 56 + content + 144 below */
  isolation: isolate;
  overflow: hidden;
}
.page-hero__bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  background-image: url("../img/clone/page-header-bg.png");
  background-size: cover;
  background-position: center;
  opacity: 1;
}
.page-hero__inner {
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: 1160px;          /* live interior container */
  margin-inline: auto;
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.page-hero__eyebrow {
  font-family: var(--f-body);
  font-style: normal;
  font-weight: 500;
  font-size: 11px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.62);
  margin: 0;
}
.page-hero__title {
  font-family: var(--f-display);
  font-weight: 900;
  font-size: 64px;            /* live: 64px (interior H1) */
  line-height: 72px;
  color: var(--c-accent);     /* live: lime green */
  margin: 0;
  max-width: 1100px;
}
.page-hero__sub {
  font-family: var(--f-body);
  font-style: normal;
  font-weight: 400;
  font-size: 19px;
  line-height: 28px;
  color: var(--c-secondary);
  margin: 0;
  max-width: 900px;
}
.page-hero__sub strong { font-weight: 700; }

@media (max-width: 991px) {
  .page-hero { padding: 112px 24px 64px; }
  .page-hero__title { font-size: 44px; line-height: 52px; }
  .page-hero__sub { font-size: 17px; line-height: 26px; }
}

/* ========== Content blocks (interior pages) ==========
   Interior section H2 on live is 28px DM Sans 700, NOT 58px Inter Black.
   Scoped via .content so the homepage's .section title (58px) is unaffected.
   Interior page body uses #FAFAFA, dark sections are contained 1160-wide BANDS. */
.body--interior { background: #FAFAFA; }
.body--interior > main { padding: 0; margin: 0; }

.content {
  padding-block: 28px;        /* gap between stacked sections inside body wrap */
}
.body--interior > main > .content:first-of-type { padding-top: 96px; }
.body--interior > main > .content:last-of-type { padding-bottom: 60px; }
/* Intro/lead-in section — balances the 96px top with matching bottom breathing room
   so the section doesn't slam into the next band. */
.body--interior > main > .content--intro { padding-bottom: 96px; }

/* Light panel band — slightly darker than page bg, used to set a section apart
   without going full-dark. Full-bleed on interior pages. */
.body--interior .content--panel {
  position: relative;
  z-index: 2;
  background: #EDEEF1;
  padding-block: clamp(56px, 7vw, 88px);
  margin-block: 12px;
}
/* White-band variant — same shape, brighter than page bg. */
.body--interior .content--panel-white {
  position: relative;
  z-index: 2;
  background: #FFFFFF;
  padding-block: clamp(56px, 7vw, 88px);
  margin-block: 12px;
}

/* Outside the interior wrapper, .content--dark is full-bleed dark */
.content--dark { color: var(--c-secondary); background: var(--c-navbar); }
/* Inside the interior body wrap, .content--dark becomes a CONTAINED 1160-wide dark band */
.body--interior .content--dark { background: transparent; }
.body--interior .content--dark .content__inner {
  background: var(--c-navbar);
  color: var(--c-secondary);
  padding: 56px 48px;
  border-radius: 0;
}
/* Full-bleed dark band — overrides the contained-card treatment so the section
   spans the entire viewport width with no rounded corners. */
.body--interior .content--dark.content--bleed {
  background: var(--c-navbar);
  color: var(--c-secondary);
  padding-block: clamp(64px, 8vw, 112px);
}
.body--interior .content--dark.content--bleed .content__inner {
  background: transparent;
  padding: 0 36px;
  border-radius: 0;
}

.content__inner {
  width: 100%;
  max-width: 1160px;
  margin-inline: auto;
  padding-inline: 36px;
  display: flex;
  flex-direction: column;
  gap: 24px;
}
/* Narrow variant — wrapper stays at .content__inner's full width so its left
   edge aligns with the rest of the page sections. Body paragraphs/lists are
   constrained to a reading width; headings span the full wrapper. */
.content__inner--narrow > p,
.content__inner--narrow > ul,
.content__inner--narrow > ol { max-width: 920px; }

/* Split layout — text column left, media/cards column right. */
.content__inner--split {
  display: grid;
  grid-template-columns: minmax(0, 5fr) minmax(0, 7fr);
  gap: clamp(32px, 5vw, 72px);
  align-items: start;
}

/* Two-column library + lead-capture form (transformation-library.html). */
.library-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.4fr) minmax(0, 1fr);
  gap: clamp(32px, 4vw, 64px);
  align-items: start;
}
.library-grid__list { min-width: 0; }
.library-grid__form {
  position: sticky;
  top: 96px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.library-grid__form-copy {
  font-family: var(--f-body);
  font-size: 15px;
  line-height: 1.55;
  color: var(--c-mid-gray);
  margin: 0;
}
@media (max-width: 991px) {
  .library-grid { grid-template-columns: 1fr; gap: 40px; }
  .library-grid__form { position: static; }
}
.content__inner--split .content__split-text {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.content__inner--split .content__lead { max-width: none; }
@media (max-width: 991px) {
  .content__inner--split { grid-template-columns: 1fr; gap: 32px; }
}

/* Interior section title — overrides .section-title default (58px) */
.content .section-title {
  font-family: var(--f-body);
  font-weight: 700;
  font-size: 28px;
  line-height: 1.2;
  letter-spacing: -0.01em;
  color: var(--c-text);
  margin: 0;
}
/* The "bottom line" closer uses a larger H2 on live — opt-in modifier */
.content .section-title--lg {
  font-family: var(--f-display);
  font-weight: 800;
  font-size: 44px;
  line-height: 1.1;
}
/* Stats section uses a slightly different size on live */
.content .section-title--md {
  font-family: var(--f-display);
  font-weight: 800;
  font-size: 32px;
  line-height: 1.15;
}

.content--dark .section-title,
.content--dark .text-light,
.content--dark .content__lead { color: var(--c-secondary); }

.content__lead {
  font-family: var(--f-body);
  font-style: normal;
  font-weight: 400;
  font-size: 19px;
  line-height: 28px;
  color: var(--c-text);
  max-width: 880px;
}
.content__lead strong { font-weight: 700; }

/* ========== Feature grid (used for service cards / benefits / steps) ========== */
.feature-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 48px 32px;
}
.feature-grid--3 { grid-template-columns: repeat(3, minmax(0, 1fr)); }
.feature-grid--4 { grid-template-columns: repeat(4, minmax(0, 1fr)); }
.feature {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.feature__num {
  font-family: var(--f-display);
  font-weight: 900;
  font-size: 18px;
  letter-spacing: 0.18em;
  color: var(--c-accent);
}
.feature__title {
  font-family: var(--f-display);
  font-weight: 900;
  font-size: var(--fs-card-title);
  line-height: 30px;
  color: inherit;
  margin: 0;
}
.feature__body {
  font-family: var(--f-body);
  font-weight: 200;
  font-size: var(--fs-body);
  line-height: var(--lh-body);
  color: inherit;
}

/* Card variant — surface the .feature items as cards with a subtle accent edge. */
.feature-grid--cards .feature {
  position: relative;
  padding: 32px 32px 36px;
  background: var(--c-navbar);
  color: var(--c-secondary);
  border-radius: 0;
  overflow: hidden;
  isolation: isolate;
  gap: 14px;
}
.feature-grid--cards .feature::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 64px;
  height: 8px;
  background: var(--c-accent);
  transform: skewX(-20deg);
  transform-origin: top left;
  margin-left: 28px;
}
.feature-grid--cards .feature__num {
  margin-top: 12px;
}
.feature-grid--cards .feature__title { color: var(--c-secondary); }
.feature-grid--cards .feature__body { color: rgba(249, 249, 249, 0.78); }
@media (max-width: 991px) {
  .feature-grid,
  .feature-grid--3,
  .feature-grid--4 { grid-template-columns: 1fr; gap: 32px; }
}

/* ========== Bullet / check lists ========== */
.list-check {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
  font-family: var(--f-body);
  font-weight: 200;
  font-size: var(--fs-body);
  line-height: var(--lh-body);
}
.list-check li {
  position: relative;
  padding-left: 28px;
}
.list-check li::before {
  content: "›";
  position: absolute;
  left: 0;
  color: var(--c-accent);
  font-weight: 700;
}

/* ========== Stat row (key metrics) ========== */
.stat-row {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 32px;
  padding: 48px 0;
  border-top: 1px solid rgba(255,255,255,0.16);
  border-bottom: 1px solid rgba(255,255,255,0.16);
}
.stat__value {
  font-family: var(--f-display);
  font-weight: 900;
  font-size: 64px;
  line-height: 1;
  color: var(--c-accent);
  margin: 0 0 12px;
}
.stat__label {
  font-family: var(--f-body);
  font-style: italic;
  font-weight: 200;
  font-size: var(--fs-body);
  line-height: var(--lh-body);
  color: var(--c-secondary);
}
@media (max-width: 768px) {
  .stat-row { grid-template-columns: 1fr; }
  .stat__value { font-size: 48px; }
}

/* ========== Pull quote ========== */
.pull-quote {
  font-family: var(--f-display);
  font-weight: 900;
  font-size: 36px;
  line-height: 1.2;
  color: inherit;
  margin: 0;
  max-width: 1000px;
}
.pull-quote::before { content: "\201C"; }
.pull-quote::after { content: "\201D"; }
@media (max-width: 991px) { .pull-quote { font-size: 28px; } }

/* ========== Our Story page ==========
   Live structure: 1300-wide content column, two-col rows where the eyebrow
   is a small label on the LEFT and heading+body sit on the RIGHT in an 800-wide column.
   Body is white (not #FAFAFA). Closing CTA is a full-bleed lime band. */
body.body--our-story { background: #FFFFFF; }
body.body--our-story > main { padding: 0; }

.story-row {
  display: grid;
  grid-template-columns: 500px 800px;
  align-items: start;
  width: 100%;
  max-width: 1300px;
  margin-inline: auto;
  padding: 56px 36px;
}
/* Two story-rows displayed side by side (label-over-body in each column). */
.story-row-pair {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
  width: 100%;
  max-width: 1300px;
  margin-inline: auto;
  padding: 56px 36px;
  align-items: stretch;
}
.story-row-pair .story-row--stack {
  display: flex;
  flex-direction: column;
  gap: 20px;
  padding: 0;
  max-width: none;
  margin: 0;
}
.story-row-pair .story-row__head { display: flex; flex-direction: column; gap: 6px; }

/* Dark band wrapper — gives the pair editorial weight on the white page. */
.story-pair-band {
  position: relative;
  background: #FFFFFF;
  color: var(--c-text);
  padding: 0 0 64px;     /* no top padding — the cards' own negative margin creates the overlap */
  isolation: isolate;
  display: flow-root;    /* establishes a new BFC so the pair's negative margin-top
                            doesn't collapse out of the band and drag its white bg up over the photo */
  /* overflow stays visible so cards can lift above the band edge into the photo above */
}
.story-pair-band::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  background:
    radial-gradient(60% 50% at 85% 0%, rgba(110, 255, 149, 0.04) 0%, rgba(110, 255, 149, 0) 70%),
    radial-gradient(50% 50% at 10% 100%, rgba(110, 255, 149, 0.03) 0%, rgba(110, 255, 149, 0) 70%);
  pointer-events: none;
}
/* Pull the cards upward so they overlap the bottom of the team photo by ~200px.
   Section bottom padding is clamp(20px, 2.5vw, 40px), so margin-top is roughly
   -(padding + 200). The cards get a drop shadow so the overlap reads as elevation. */
.story-pair-band .story-row-pair {
  position: relative;
  z-index: 2;
  margin-top: clamp(-260px, -13vw, -230px);
}
@media (max-width: 991px) {
  .story-pair-band .story-row-pair { margin-top: -100px; }
}

/* Card treatment for each story-row inside the white band. Requires combo class `cay-card`. */
.story-row-pair .story-row--card {
  padding: clamp(48px, 5vw, 72px) clamp(36px, 4vw, 56px);
  border: 1px solid rgba(0, 0, 0, 0.06);
  background: var(--c-navbar);
  color: var(--c-secondary);
  box-shadow:
    0 30px 60px -20px rgba(0, 0, 0, 0.45),
    0 12px 24px -12px rgba(0, 0, 0, 0.25);
}
.story-row--card .story-row__head { position: relative; z-index: 1; }
.story-row--card .story-row__body { position: relative; z-index: 1; }
.story-row--card .story-row__num,
.story-row--card .story-row__label,
.story-row--card .story-row__text { color: rgba(255, 255, 255, 0.78); }
.story-row--card .story-row__num-rule { background: var(--c-accent); }
.story-row--card .story-row__lead { color: var(--c-secondary); }
.story-row--card .story-row__text strong { color: var(--c-secondary); font-weight: 700; }
.story-row--card .list-check li { color: rgba(255, 255, 255, 0.84); }

/* Ghost numeral behind each card. */
.story-row__ghost {
  position: absolute;
  top: -28px;
  right: -8px;
  font-family: var(--f-display);
  font-weight: 900;
  font-size: clamp(120px, 30vw, 320px);
  line-height: 1;
  letter-spacing: -0.04em;
  color: transparent;
  -webkit-text-stroke: 1px rgba(110, 255, 149, 0.16);
  pointer-events: none;
  user-select: none;
  z-index: 0;
}

/* Larger emphatic lead with a lime highlighted closing phrase. */
.story-row__lead.story-row__lead--big {
  font-family: var(--f-display);
  font-weight: 800;
  font-size: clamp(28px, 3.2vw, 44px);
  line-height: 1.12;
  letter-spacing: -0.01em;
  margin: 0;
}
/* .story-row__hl: use combo `cay-accent-grad cay-accent-grad--deep` in markup; no extra CSS needed. */

@media (max-width: 991px) {
  .story-row-pair { grid-template-columns: 1fr; gap: 24px; padding: 40px 24px; }
  .story-row--card { padding: 32px 24px; }
  .story-row__ghost { top: -10px; }
}
/* Requires combo classes `cay-eyebrow cay-eyebrow--lg` in markup. Default text color. */
.story-row__label { color: var(--c-text); }
.story-row__head {
  display: flex;
  flex-direction: column;
  gap: 14px;
  align-items: flex-start;
}
.story-row__num {
  font-family: var(--f-display);
  font-weight: 900;
  font-size: 44px;
  line-height: 1;
  letter-spacing: -0.02em;
  color: var(--c-accent);
  margin: 0;
  display: inline-flex;
  align-items: center;
  gap: 14px;
}
/* .story-row__num-rule: use combo `cay-rule` in markup. */

/* ========== Story Stats (dark band between hero and main) ========== */
.story-stats {
  background: var(--c-navbar);
  color: var(--c-secondary);
  padding: 64px clamp(24px, 6vw, 96px);
  border-top: 1px solid rgba(110, 255, 149, 0.12);
}
.story-stats__inner {
  max-width: 1300px;
  margin-inline: auto;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(32px, 6vw, 96px);
  align-items: end;
}
.story-stats__item {
  display: flex;
  flex-direction: column;
  gap: 8px;
  padding-left: 16px;
  border-left: 1px solid rgba(249, 249, 249, 0.12);
}
.story-stats__item--accent { border-left-color: var(--c-accent); }
.story-stats__num {
  font-family: var(--f-display);
  font-weight: 900;
  font-size: clamp(40px, 5vw, 64px);
  line-height: 1;
  letter-spacing: -0.02em;
  color: var(--c-secondary);
}
.story-stats__item--accent .story-stats__num { color: var(--c-accent); }
.story-stats__num--text {
  font-size: clamp(22px, 2.4vw, 32px);
  line-height: 1.15;
  font-style: italic;
  font-weight: 800;
}
.story-stats__label {
  font-family: var(--f-body);
  font-weight: 500;
  font-size: 12px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(249, 249, 249, 0.62);
}
@media (max-width: 991px) {
  .story-stats__inner { grid-template-columns: 1fr; gap: 28px; }
  .story-stats { padding: 48px 24px; }
}
.story-row__body {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.story-row__h2 {
  font-family: var(--f-display);
  font-weight: 800;
  font-size: 40px;
  line-height: 1.15;
  color: var(--c-text);
  margin: 0;
}
.story-row__lead {
  font-family: var(--f-body);
  font-weight: 700;
  font-size: 19px;
  line-height: 28px;
  color: var(--c-text);
  margin: 0;
}
.story-row__text {
  font-family: var(--f-body);
  font-weight: 400;
  font-size: 19px;
  line-height: 28px;
  color: var(--c-text);
  margin: 0;
}
.story-row .list-check {
  font-size: 19px;
  line-height: 28px;
  color: var(--c-text);
}
.story-row .list-check li::before { color: var(--c-text); }

@media (max-width: 991px) {
  .story-row { grid-template-columns: 1fr; gap: 16px; padding: 40px 24px; }
}

/* Leadership row (5-up horizontal) — uses story-row but with grid as the right column */
.leaders {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 24px;
  width: 100%;
}
.leader {
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin: 0;     /* reset <figure> user-agent margin */
  cursor: default;
}
.leader__frame {
  position: relative;
  width: 100%;
  aspect-ratio: 1 / 1;
  border-radius: 0;
  overflow: hidden;
  transition: transform var(--t-fast);
}
.leader__photo {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  filter: grayscale(1) contrast(1.02) brightness(0.98);
  transition: filter var(--t-med);
}
.leader__overlay { display: none; }
.leader:hover .leader__photo,
.leader:focus-within .leader__photo {
  filter: grayscale(0) contrast(1) brightness(1);
}
.leader__meta {
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.leader__name {
  font-family: var(--f-display);
  font-weight: 800;
  font-size: 18px;
  line-height: 1.25;
  margin: 0;
  color: var(--c-text);
}
.leader__role {
  font-family: var(--f-body);
  font-style: normal;
  font-weight: 400;
  font-size: 14px;
  line-height: 20px;
  color: var(--c-text);
  opacity: 0.72;
}
@media (max-width: 991px) { .leaders { grid-template-columns: repeat(3, 1fr); } }
@media (max-width: 540px) { .leaders { grid-template-columns: repeat(2, 1fr); } }

/* Our Story leadership row uses a wider right column */
.story-row--leaders { grid-template-columns: 200px 1fr; }
@media (max-width: 991px) { .story-row--leaders { grid-template-columns: 1fr; } }

/* ========== Principles grid (How we think) ========== */
.principles {
  position: relative;
  background: var(--c-navbar);
  color: var(--c-secondary);
  padding: clamp(64px, 7vw, 112px) clamp(24px, 6vw, 96px);
  isolation: isolate;
  overflow: hidden;
}
.principles::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(45% 35% at 90% 10%, rgba(110, 255, 149, 0.10) 0%, rgba(110, 255, 149, 0) 70%),
    radial-gradient(35% 30% at 5% 95%, rgba(110, 255, 149, 0.06) 0%, rgba(110, 255, 149, 0) 70%);
  pointer-events: none;
  z-index: 0;
}
.principles__inner {
  position: relative;
  z-index: 1;
  max-width: 1300px;
  margin-inline: auto;
}
.principles__head {
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin-bottom: clamp(40px, 5vw, 64px);
  max-width: 880px;
}
.principles__num {
  margin: 0;
  line-height: 0;
}
/* .principles__num-rule: use combo `cay-rule` in markup. */
/* Requires combo classes `cay-eyebrow cay-eyebrow--lg cay-eyebrow--muted-dark` in markup. */
.principles__lead {
  font-family: var(--f-display);
  font-weight: 900;
  font-size: clamp(36px, 4.4vw, 56px);
  line-height: 1.05;
  letter-spacing: -0.02em;
  color: var(--c-secondary);
  margin: 0;
}
.principles__lead em {
  color: var(--c-accent);
  font-style: italic;
  font-weight: 900;
}
.principles__grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: clamp(16px, 1.6vw, 24px);
}
.principles__grid--four { grid-template-columns: repeat(4, minmax(0, 1fr)); }
.principles__grid--three { grid-template-columns: repeat(3, minmax(0, 1fr)); }
/* Requires combo class `cay-card`. */
.principle {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.10);
  padding: 24px 24px 26px;
  gap: 12px;
}
.principle::after {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 3px;
  height: 32px;
  background: var(--c-accent);
  transform: translateX(-1px);
  opacity: 0;
  transition: opacity var(--t-fast), height var(--t-fast);
}
.principle:hover {
  border-color: rgba(110, 255, 149, 0.32);
  background: rgba(255, 255, 255, 0.06);
  transform: translateY(-2px);
}
.principle:hover::after {
  opacity: 1;
  height: 56px;
}
/* .principle__tag: use combo `cay-rule cay-rule--xs` in markup. */
.principle__title {
  font-family: var(--f-display);
  font-weight: 900;
  font-size: 22px;
  line-height: 1.15;
  letter-spacing: -0.01em;
  color: var(--c-secondary);
  margin: 0;
}
.principle__body {
  font-family: var(--f-body);
  font-weight: 400;
  font-size: 15px;
  line-height: 1.55;
  color: rgba(249, 249, 249, 0.72);
  margin: 0;
}

@media (max-width: 1199px) {
  .principles__grid { grid-template-columns: repeat(3, minmax(0, 1fr)); }
  .principles__grid--four { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .principles__grid--three { grid-template-columns: repeat(3, minmax(0, 1fr)); }
}
@media (max-width: 768px) {
  .principles__grid, .principles__grid--four, .principles__grid--three { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}
@media (max-width: 480px) {
  .principles__grid, .principles__grid--four, .principles__grid--three { grid-template-columns: 1fr; }
}

/* ========== Full team photo band ========== */
.team-photo {
  position: relative;
  width: 100%;
  background: var(--c-navbar);
  padding: 96px clamp(24px, 6vw, 96px) clamp(20px, 2.5vw, 40px);
  overflow: hidden;
  isolation: isolate;
}
.team-photo__inner {
  position: relative;
  max-width: 1300px;
  margin-inline: auto;
  z-index: 1;
}
.team-photo__head {
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin-bottom: clamp(36px, 4vw, 56px);
  max-width: 880px;
}
.team-photo__num {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  font-family: var(--f-display);
  font-weight: 900;
  font-size: 36px;
  line-height: 1;
  letter-spacing: -0.02em;
  color: var(--c-accent);
  margin: 0;
}
/* .team-photo__num-rule: use combo `cay-rule` in markup. */
/* Requires combo classes `cay-eyebrow cay-eyebrow--lg cay-eyebrow--muted-dark` in markup. */
.team-photo__lead {
  font-family: var(--f-display);
  font-weight: 900;
  font-size: clamp(36px, 4.4vw, 56px);
  line-height: 1.05;
  letter-spacing: -0.02em;
  color: var(--c-secondary);
  margin: 0;
}
.team-photo__lead em {
  color: var(--c-accent);
  font-style: italic;
  font-weight: 900;
}
.team-photo__body {
  font-family: var(--f-body);
  font-size: 17px;
  line-height: 1.55;
  color: rgba(249, 249, 249, 0.78);
  margin: 6px 0 0;
  max-width: 760px;
}
.team-photo__body strong { color: var(--c-secondary); font-weight: 700; }

/* ----- Light variant (Our Story team + leadership merge) ----- */
.team-photo--light { background: #FFFFFF; color: var(--c-text); }
.team-photo--light .team-photo__label { color: rgba(28, 28, 28, 0.62); }
.team-photo--light .team-photo__lead { color: var(--c-text); }
.team-photo--light .team-photo__body { color: rgba(28, 28, 28, 0.78); }
.team-photo--light .team-photo__body strong { color: var(--c-text); }
.team-photo--light .team-photo__frame { background: #F4F4F4; }
.team-photo--light .team-photo__img { filter: contrast(1) saturate(1); }
/* At this display size the brand lime reads cleanly on the light variant. */
.team-photo--light .team-photo__lead em { color: var(--c-accent); }

/* ============================================================
   BENEFITS LIST — stacked numbered rows on a light panel.
   Used on services-copilot-transformation.html "How we transform".
   Big outlined number on the left, title + copy on the right,
   thin horizontal divider between rows.
   ============================================================ */
.benefits-list {
  list-style: none;
  margin: clamp(40px, 5vw, 64px) 0 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  border-top: 1px solid rgba(31, 31, 31, 0.10);
}
.benefits-list__item {
  display: grid;
  grid-template-columns: clamp(120px, 14vw, 200px) minmax(0, 1fr);
  gap: clamp(24px, 4vw, 64px);
  align-items: center;
  padding: clamp(28px, 3.5vw, 44px) 0;
  border-bottom: 1px solid rgba(31, 31, 31, 0.10);
}
.benefits-list__num {
  font-family: var(--f-display);
  font-weight: 900;
  font-size: clamp(64px, 8.5vw, 120px);
  line-height: 1;
  letter-spacing: -0.04em;
  color: transparent;
  -webkit-text-stroke: 2px var(--c-accent);
}
.benefits-list__body {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.benefits-list__title {
  font-family: var(--f-display);
  font-weight: 900;
  font-size: clamp(22px, 2.4vw, 30px);
  line-height: 1.2;
  letter-spacing: -0.01em;
  color: var(--c-text);
  margin: 0;
}
.benefits-list__copy {
  font-family: var(--f-body);
  font-weight: 400;
  font-size: 16px;
  line-height: 1.55;
  color: rgba(31, 31, 31, 0.72);
  margin: 0;
  max-width: 60ch;
}
@media (max-width: 768px) {
  .benefits-list__item { grid-template-columns: 80px minmax(0, 1fr); gap: 18px; padding: 24px 0; }
  .benefits-list__num { font-size: 56px; -webkit-text-stroke-width: 1.5px; }
  .benefits-list__title { font-size: 20px; }
}

/* Sub-section header (e.g. "Leadership" inside the merged section) */
.team-photo__leaders-wrap {
  margin-bottom: clamp(56px, 7vw, 96px);
}
.team-photo__sublabel {
  font-family: var(--f-body);
  font-weight: 700;
  font-size: 12px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(28, 28, 28, 0.62);
  margin: 0 0 28px;
  display: inline-flex;
  align-items: center;
  gap: 12px;
}
.team-photo__sublabel::before {
  content: "";
  display: inline-block;
  width: 32px;
  height: 1px;
  background: var(--c-accent);
}
/* Leader name/role inherit dark text when on light variant */
.team-photo--light .leader__name { color: var(--c-text); }
.team-photo--light .leader__role { color: var(--c-text); opacity: 0.62; }

.team-photo__frame {
  position: relative;
  width: 100vw;
  left: 50%;
  margin-left: -50vw;
  max-width: none;
  background: #0F0F0F;
  overflow: hidden;
}
.team-photo__img {
  width: 100%;
  height: auto;
  display: block;
  filter: contrast(1.02) saturate(0.95);
}
.team-photo__corner-tl,
.team-photo__corner-br {
  position: absolute;
  width: 28px;
  height: 28px;
  border-color: var(--c-accent);
  border-style: solid;
  z-index: 2;
}
.team-photo__corner-tl { top: 0; left: 0; border-width: 1px 0 0 1px; }
.team-photo__corner-br { bottom: 0; right: 0; border-width: 0 1px 1px 0; }
.team-photo__caption {
  margin-top: 20px;
  font-family: var(--f-body);
  font-size: 14px;
  line-height: 22px;
  color: rgba(249, 249, 249, 0.62);
  max-width: 720px;
}
.team-photo__caption strong { color: var(--c-secondary); font-weight: 700; }

/* Closing green CTA banner */
.story-cta {
  background: var(--c-accent);
  width: 100%;
}
.story-cta__inner {
  display: grid;
  grid-template-columns: 500px 800px;
  align-items: start;
  width: 100%;
  max-width: 1300px;
  margin-inline: auto;
  padding: 80px 36px;
}
.story-cta__label {
  font-family: var(--f-body);
  font-weight: 700;
  font-size: 14px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--c-text);
  margin: 0;
}
.story-cta__body {
  display: flex;
  flex-direction: column;
  gap: 20px;
  align-items: flex-start;
}
.story-cta__h2 {
  font-family: var(--f-display);
  font-weight: 800;
  font-size: 44px;
  line-height: 1.1;
  color: var(--c-text);
  margin: 0;
}
.story-cta__text {
  font-family: var(--f-body);
  font-weight: 400;
  font-size: 19px;
  line-height: 28px;
  color: var(--c-text);
  margin: 0;
}
.story-cta__btn {
  background: var(--c-text);
  color: var(--c-secondary);
  padding: 12px 22px;
  border-radius: 0;
  font-family: var(--f-body);
  font-weight: 600;
  font-size: 14px;
  text-decoration: none;
  display: inline-block;
}
.story-cta__btn:hover { opacity: 0.92; }
@media (max-width: 991px) {
  .story-cta__inner { grid-template-columns: 1fr; gap: 16px; padding: 56px 24px; }
}

/* ========== Article cards (Thought Leadership) ========== */
.articles {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 32px;
}
.article-card {
  display: flex;
  flex-direction: column;
  gap: 12px;
  padding: 32px;
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 0;
  background: var(--c-navbar);
  color: var(--c-secondary);
  transition: border-color var(--t-fast), transform var(--t-fast);
}
.article-card:hover { border-color: var(--c-accent); transform: translateY(-2px); }
.article-card__tag {
  font-family: var(--f-body);
  font-style: italic;
  font-weight: 700;
  font-size: 14px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--c-link);
}
.article-card__title {
  font-family: var(--f-display);
  font-weight: 900;
  font-size: var(--fs-card-title);
  line-height: 30px;
  color: var(--c-secondary);
  margin: 0;
}
.article-card__meta {
  font-family: var(--f-body);
  font-weight: 200;
  font-size: 16px;
  line-height: 22px;
  color: rgba(255,255,255,0.64);
}
.article-card__body {
  font-family: var(--f-body);
  font-weight: 200;
  font-size: var(--fs-body);
  line-height: var(--lh-body);
  color: #F9F9F9;
}
.article-card--featured {
  grid-column: span 3;
  background: var(--c-navbar);
  color: var(--c-secondary);
  border-color: rgba(255,255,255,0.12);
}
.article-card--featured .article-card__title,
.article-card--featured .article-card__body { color: var(--c-secondary); }
.article-card--featured .article-card__tag { color: var(--c-accent); }
.article-card--featured .article-card__meta { color: rgba(255,255,255,0.64); }
@media (max-width: 991px) {
  .articles { grid-template-columns: 1fr; }
  .article-card--featured { grid-column: auto; }
}

/* ========== Latest Thinking — dark card variant (home page) ========== */
[data-latest-thinking] .article-card {
  background: var(--c-navbar);
  border-color: rgba(255,255,255,0.12);
}
[data-latest-thinking] .article-card__title,
[data-latest-thinking] .article-card__body { color: var(--c-secondary); }
[data-latest-thinking] .article-card__tag { color: var(--c-accent); }
[data-latest-thinking] .article-card__meta { color: rgba(255,255,255,0.64); }
[data-latest-thinking] .article-card__cta { color: var(--c-accent); }
[data-latest-thinking] .article-card__media { display: none; }

/* ========== Contacts page ==========
   Live: no dark hero, white body, 2-col layout (488 / 764) inside a 1300 wrap.
   Body becomes a flex column so footer stays at the bottom of the viewport
   and main fills the rest, vertically centering the contacts-wrap. */
body.body--contacts {
  background: #FFFFFF;
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}
body.body--contacts > main {
  padding: 0;
  flex: 1;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
}

/* Decorative background — pulled from the hero treatment used on other
   interior pages (line grid, ghost number, slab accent). Sits behind the form. */
.contacts-decor {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 0;
}
.contacts-decor__lines {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}
.contacts-decor__ghost {
  position: absolute;
  top: -40px;
  right: 32px;
  font-family: var(--f-display);
  font-weight: 900;
  font-size: clamp(180px, 22vw, 320px);
  line-height: 1;
  letter-spacing: -0.04em;
  color: rgba(31, 31, 31, 0.04);
  user-select: none;
  pointer-events: none;
}
.contacts-decor__slab {
  position: absolute;
  bottom: -60px;
  right: -40px;
  width: 200px;
  height: 460px;
  background: linear-gradient(180deg, var(--c-accent) 0%, var(--c-teal, #00C46A) 100%);
  opacity: 0.95;
  transform: skewX(-20deg);
  border-radius: 0;
}
body.body--contacts .contacts-wrap { position: relative; z-index: 1; }

.contacts-wrap {
  display: grid;
  grid-template-columns: 488px 764px;
  gap: 48px;
  width: 100%;
  max-width: 1300px;
  margin-inline: auto;
  padding: 48px 36px;
  align-items: center;
}
.contacts-left { display: flex; flex-direction: column; gap: 20px; }
.contacts-left__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  color: var(--c-text);
  opacity: 0.78;
  margin: 0 0 4px;
}
.contacts-left__eyebrow .eyebrow__rule {
  display: inline-block;
  width: 36px;
  height: 8px;
  background: var(--c-accent);
  transform: skewX(-20deg);
}
.contacts-left__title-accent {
  font-style: italic;
  color: var(--c-accent-strong, #00B85F);
  background: linear-gradient(180deg, var(--c-accent) 0%, var(--c-teal, #00C46A) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}
.contacts-left__title {
  font-family: var(--f-display);
  font-weight: 900;
  font-size: 58px;
  line-height: 65px;
  color: var(--c-text);
  margin: 0;
}
.contacts-left__body {
  font-family: var(--f-body);
  font-weight: 400;
  font-size: 19px;
  line-height: 28px;
  color: rgba(31,31,31,0.78);
  margin: 0;
}

.contacts-right { display: flex; flex-direction: column; gap: 18px; }
.contacts-right__title {
  font-family: var(--f-display);
  font-weight: 700;
  font-size: 32px;
  line-height: 36px;
  color: var(--c-text);
  margin: 0 0 8px;
}
.form {
  display: flex;
  flex-direction: column;
  gap: 18px;
}
.form__grid3 {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
}
.form__grid2 {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 24px;
}
.form__row {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.form__label {
  font-family: var(--f-body);
  font-style: normal;
  font-weight: 500;
  font-size: 18px;
  line-height: 22px;
  letter-spacing: normal;
  text-transform: none;
  color: var(--c-text);
}
.form__input,
.form__textarea {
  font-family: var(--f-body);
  font-weight: 400;
  font-size: 14px;
  line-height: 22px;
  color: var(--c-text);
  background: #fff;
  border: 1px solid #CCCCCC;
  border-radius: 0;
  padding: 8px 12px;
}
.form__textarea { min-height: 120px; resize: vertical; }
.form__input:focus,
.form__textarea:focus { outline: 2px solid var(--c-accent); outline-offset: 1px; border-color: var(--c-accent); }
.form__submit {
  align-self: flex-start;
  background: var(--c-navbar);
  color: var(--c-secondary);
  border: 0;
  border-radius: 0;
  padding: 9px 20px;
  font-family: var(--f-body);
  font-style: normal;
  font-weight: 600;
  font-size: 15px;
  cursor: pointer;
  transition: background var(--t-fast);
}
.form__submit:hover { background: #000; }

/* Lead-capture form HubSpot states. Contacts and the transformation-library
   form use these. White-paper-article.html has its own bespoke .wls-* set. */
.contacts-success,
.form-success {
  display: none;
  flex-direction: column;
  gap: 14px;
  padding: 32px;
  border: 1px solid rgba(31, 31, 31, 0.12);
  background: #FFFFFF;
  border-left: 4px solid var(--c-accent);
}
.contacts-success.is-visible,
.form-success.is-visible { display: flex; }
.contacts-success__pill,
.form-success__pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  align-self: flex-start;
  font-family: var(--f-body);
  font-weight: 600;
  font-size: 13px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: #0A6A38;
  background: rgba(110, 255, 149, 0.22);
  padding: 6px 12px;
  border-radius: 999px;
}
.contacts-success__title,
.form-success__title {
  font-family: var(--f-display);
  font-weight: 900;
  font-size: 36px;
  line-height: 42px;
  color: var(--c-text);
  margin: 0;
}
.contacts-success__lead,
.form-success__lead {
  font-family: var(--f-body);
  font-weight: 400;
  font-size: 17px;
  line-height: 26px;
  color: rgba(31, 31, 31, 0.78);
  margin: 0;
}
.contacts-error,
.form-error {
  display: none;
  font-family: var(--f-body);
  font-size: 14px;
  line-height: 20px;
  color: #B0001A;
  background: rgba(176, 0, 26, 0.06);
  border-left: 3px solid #B0001A;
  padding: 10px 14px;
}
.contacts-error.is-visible,
.form-error.is-visible { display: block; }
.form.is-submitting .form__submit { opacity: 0.6; cursor: wait; }

@media (max-width: 991px) {
  .contacts-wrap { grid-template-columns: 1fr; gap: 32px; padding: 64px 24px; }
  .contacts-left__title { font-size: 44px; line-height: 52px; }
  .form__grid3 { grid-template-columns: 1fr; }
  .form__grid2 { grid-template-columns: 1fr; }
}

/* ========== Hero CTA group (interior heroes with multiple CTAs) ==========
   Live primary CTA on Agentic hero is white-bg / dark-text, 14px DM Sans 600,
   padding 14px 22px. Ghost CTA is white-on-dark at the same size. */
.hero-ctas {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  margin-top: 12px;
}
.page-hero .btn,
.hero-ctas .btn {
  font-family: var(--f-body);
  font-style: normal;
  font-weight: 600;
  font-size: 14px;
  line-height: 1.6;
  padding: 14px 22px;
  border-radius: 0;
}
.btn--accent {
  background: #FFFFFF;
  color: var(--c-text);
  border: 0;
}
.hero-ctas .btn--ghost {
  background: transparent;
  color: var(--c-secondary);
  border: 1px solid var(--c-secondary);
}

/* ========== Section eyebrow (live: 11px DM Sans 500 muted) ========== */
.eyebrow {
  font-family: var(--f-body);
  font-style: normal;
  font-weight: 600;
  font-size: 11px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(31,31,31,0.62);
  margin: 0 0 8px;
  line-height: 1.6;
}
.content--dark .eyebrow { color: rgba(255,255,255,0.62); }
.page-hero .eyebrow { color: rgba(255,255,255,0.62); }

/* Lime accent slab above section-header eyebrows on interior pages — matches the
   skewed accent used on team-photo, story-row, and principles section heads. */
.body--interior .content__inner > .eyebrow::before {
  content: "";
  display: block;
  width: 64px;
  height: 10px;
  background: var(--c-accent);
  transform: skewX(-20deg);
  margin: 0 0 18px 5px;
}

/* ========== Emoji feature grid (Custom Software "Built for Enterprise Scale" / AI Strategy services) ========== */
.emoji-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 32px;
}
.emoji-card {
  background: #FAFAFA;
  border: 1px solid rgba(0,0,0,0.08);
  border-radius: 0;
  padding: 32px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  transition: border-color var(--t-fast), transform var(--t-fast);
}
.emoji-card:hover { border-color: var(--c-accent); transform: translateY(-2px); }
.content--dark .emoji-card {
  background: rgba(255,255,255,0.04);
  border-color: rgba(255,255,255,0.12);
}
.emoji-card__icon {
  font-size: 32px;
  line-height: 1;
  display: inline-flex;
  align-items: center;
  justify-content: flex-start;
  width: 44px;
  height: 44px;
  color: var(--c-accent);
}
.emoji-card__icon svg {
  width: 32px;
  height: 32px;
  display: block;
}
.emoji-card__title {
  font-family: var(--f-display);
  font-weight: 900;
  font-size: var(--fs-card-title);
  line-height: 30px;
  margin: 0;
  color: inherit;
}
.emoji-card__body {
  font-family: var(--f-body);
  font-weight: 200;
  font-size: var(--fs-body);
  line-height: var(--lh-body);
  color: inherit;
}
@media (max-width: 991px) { .emoji-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 540px) { .emoji-grid { grid-template-columns: 1fr; } }

/* ========== Engagement card (Agentic AI Workforces three-up) ========== */
.engagement-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 32px;
}
.engagement {
  display: flex;
  flex-direction: column;
  gap: 14px;
  padding: 32px;
  border-radius: 0;
  background: #FFFFFF;
  border: 1px solid rgba(0,0,0,0.06);
  color: var(--c-text);
}
.engagement__num {
  display: block;
  font-family: var(--f-display);
  font-weight: 900;
  font-size: 56px;
  line-height: 1;
  letter-spacing: -0.02em;
  color: var(--c-accent);
  margin-bottom: 4px;
}
.engagement__eyebrow {
  font-family: var(--f-body);
  font-style: normal;
  font-weight: 500;
  font-size: 11px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(31,31,31,0.62);
}
.engagement__title {
  font-family: var(--f-display);
  font-weight: 900;
  font-size: 22px;
  line-height: 1.1;
  margin: 0;
  color: var(--c-text);
}
.engagement__sub {
  font-family: var(--f-body);
  font-style: normal;
  font-weight: 600;
  font-size: 16px;
  line-height: 24px;
  color: rgba(31,31,31,0.78);
}
.engagement__body {
  font-family: var(--f-body);
  font-weight: 400;
  font-size: 15px;
  line-height: 22px;
  color: rgba(31,31,31,0.78);
}
.engagement .list-check {
  font-size: 15px;
  line-height: 22px;
  color: var(--c-text);
}
.engagement .list-check li::before { color: var(--c-text); }
.engagement__cta {
  margin-top: auto;
  align-self: flex-start;
  font-family: var(--f-body);
  font-style: normal;
  font-weight: 600;
  font-size: 13.5px;
  color: var(--c-text);
  text-decoration: underline;
  text-underline-offset: 4px;
}
.engagement__cta:hover { color: var(--c-link); }
@media (max-width: 991px) { .engagement-grid { grid-template-columns: 1fr; } }

/* ========== Non-negotiables (Agentic — 2x2) ========== */
.nn-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 24px;
}
.nn {
  position: relative;
  display: flex;
  flex-direction: column;
  background: #FAFAFA;
  border: 1px solid rgba(0,0,0,0.08);
  border-radius: 0;
  padding: 32px 32px 36px;
  transition: border-color var(--t-fast), transform var(--t-fast), box-shadow var(--t-fast);
}
.nn:hover {
  border-color: var(--c-accent);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px -16px rgba(0,0,0,0.18);
}
.nn__pip {
  display: inline-block;
  width: 32px;
  height: 14px;
  background: var(--c-accent);
  transform: skewX(-20deg);
  margin-bottom: 20px;
}
.nn__title {
  font-family: var(--f-display);
  font-weight: 900;
  font-size: 22px;
  line-height: 1.2;
  color: inherit;
  margin: 0 0 8px;
}
.nn__sub {
  font-family: var(--f-body);
  font-style: normal;
  font-weight: 600;
  font-size: 16px;
  line-height: 24px;
  color: var(--c-accent);
  margin: 0 0 12px;
}
.nn__body {
  font-family: var(--f-body);
  font-weight: 400;
  font-size: 15px;
  line-height: 22px;
  margin: 0;
}
@media (max-width: 991px) { .nn-grid { grid-template-columns: 1fr; } }

/* ========== Stat with body ========== */
.stat-bodied {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 48px;
  padding: 32px 0 0;
}
.stat-bodied .stat__value {
  font-family: var(--f-display);
  font-weight: 900;
  font-size: 64px;
  line-height: 1;
  margin: 0 0 8px;
  color: var(--c-accent);
}
.stat-bodied .stat__label {
  font-family: var(--f-body);
  font-weight: 600;
  font-style: normal;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  font-size: 11px;
  margin: 0 0 12px;
  color: rgba(255,255,255,0.62);
}
.stat__body {
  font-family: var(--f-body);
  font-weight: 400;
  font-size: 15px;
  line-height: 22px;
  color: inherit;
}
@media (max-width: 768px) { .stat-bodied { grid-template-columns: 1fr; } .stat-bodied .stat__value { font-size: 56px; } }

/* ========== White paper grid (Agentic "We've Written the Playbook") ========== */
.wp-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 32px;
}
.wp-card {
  display: flex;
  flex-direction: column;
  gap: 12px;
  padding: 28px;
  border-radius: 0;
  border: 1px solid rgba(0,0,0,0.08);
  background: #FAFAFA;
  color: inherit;
  text-decoration: none;
  transition: border-color var(--t-fast), transform var(--t-fast);
}
a.wp-card:hover,
a.wp-card:focus-visible {
  border-color: var(--c-accent);
  transform: translateY(-2px);
  /* Stacked-paper effect: each pair below = one sheet (fill + hairline edge),
     offset down-right so several sheets peek out from beneath the top card. */
  box-shadow:
    4px 4px 0 0 #F2F2F2,
    4px 4px 0 1px rgba(0,0,0,0.07),
    9px 9px 0 0 #ECECEC,
    9px 9px 0 1px rgba(0,0,0,0.06),
    14px 14px 0 0 #E5E5E5,
    14px 14px 0 1px rgba(0,0,0,0.05),
    20px 24px 40px -12px rgba(0,0,0,0.10);
}
.content--dark .wp-card {
  background: rgba(255,255,255,0.04);
  border-color: rgba(255,255,255,0.12);
  color: var(--c-secondary);
  box-shadow:
    4px 4px 0 0 rgba(255,255,255,0.05),
    4px 4px 0 1px rgba(255,255,255,0.10),
    9px 9px 0 0 rgba(255,255,255,0.035),
    9px 9px 0 1px rgba(255,255,255,0.08),
    14px 14px 0 0 rgba(255,255,255,0.025),
    14px 14px 0 1px rgba(255,255,255,0.06),
    20px 24px 40px -12px rgba(0,0,0,0.5);
}
.wp-card__num {
  font-family: var(--f-display);
  font-weight: 900;
  font-size: 48px;
  line-height: 1;
  color: var(--c-accent);
}
.wp-card__eyebrow {
  font-family: var(--f-body);
  font-style: normal;
  font-weight: 500;
  font-size: 11px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(31,31,31,0.62);
}
.content--dark .wp-card__eyebrow { color: rgba(255,255,255,0.62); }
.wp-card__title {
  font-family: var(--f-display);
  font-weight: 800;
  font-size: 22px;
  line-height: 1.2;
  color: inherit;
  margin: 0;
}
.wp-card__sub {
  font-family: var(--f-body);
  font-style: normal;
  font-weight: 600;
  font-size: 15px;
  line-height: 22px;
  color: inherit;
  opacity: 0.78;
}
.wp-card__body {
  font-family: var(--f-body);
  font-weight: 400;
  font-size: 15px;
  line-height: 22px;
  color: inherit;
}
.wp-card__status {
  margin-top: auto;
  align-self: flex-start;
  font-family: var(--f-body);
  font-style: italic;
  font-weight: 700;
  font-size: 14px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--c-accent);
  border: 1px solid var(--c-accent);
  border-radius: 0;
  padding: 6px 14px;
}
@media (max-width: 991px) { .wp-grid { grid-template-columns: 1fr; } }

/* ========== Process steps (AI Strategy 1→2→3→4) ========== */
.process {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 24px;
}
.process__step {
  display: flex;
  flex-direction: column;
  gap: 12px;
  padding: 28px;
  border-radius: 0;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.10);
}
.process__num {
  font-family: var(--f-display);
  font-weight: 900;
  font-size: 56px;
  line-height: 1;
  color: var(--c-accent);
}
.process__title {
  font-family: var(--f-display);
  font-weight: 900;
  font-size: var(--fs-card-title);
  line-height: 30px;
  color: var(--c-secondary);
  margin: 0;
}
.process__body {
  font-family: var(--f-body);
  font-weight: 200;
  font-size: 16px;
  line-height: 22px;
  color: var(--c-secondary);
}
@media (max-width: 991px) { .process { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 540px) { .process { grid-template-columns: 1fr; } }

/* ========== Featured article + article list (Thought Leadership) ========== */
.featured {
  background: var(--c-navbar);
  color: var(--c-secondary);
  border-radius: 0;
  padding: 56px;
  display: grid;
  gap: 24px;
}
.featured__title {
  font-family: var(--f-display);
  font-weight: 900;
  font-size: 48px;
  line-height: 56px;
  margin: 0;
  max-width: 1100px;
}
.featured__excerpt {
  font-family: var(--f-body);
  font-weight: 200;
  font-size: var(--fs-body);
  line-height: var(--lh-body);
  max-width: 900px;
}
.featured__meta {
  font-family: var(--f-body);
  font-style: italic;
  font-size: 16px;
  color: rgba(255,255,255,0.64);
}
.featured__read {
  align-self: start;
  background: var(--c-accent);
  color: var(--c-text);
  padding: 8px 18px;
  border-radius: 0;
  font-family: var(--f-body);
  font-weight: 700;
  font-style: italic;
  text-decoration: none;
}
.featured__read:hover { opacity: 0.85; }
@media (max-width: 768px) { .featured { padding: 32px; } .featured__title { font-size: 32px; line-height: 40px; } }

.article-list {
  display: flex;
  flex-direction: column;
  gap: 0;
}
.article-row {
  display: grid;
  grid-template-columns: 1fr;
  gap: 12px;
  padding: 32px 0;
  border-top: 1px solid rgba(0,0,0,0.10);
}
.article-row:last-child { border-bottom: 1px solid rgba(0,0,0,0.10); }
.article-row__title {
  font-family: var(--f-display);
  font-weight: 900;
  font-size: 28px;
  line-height: 36px;
  color: var(--c-text);
  margin: 0;
}
.article-row__excerpt {
  font-family: var(--f-body);
  font-weight: 200;
  font-size: var(--fs-body);
  line-height: var(--lh-body);
  color: var(--c-text);
  max-width: 900px;
}
.article-row__read {
  font-family: var(--f-body);
  font-style: italic;
  font-weight: 700;
  color: var(--c-link);
  text-decoration: none;
}
.article-row__read:hover { text-decoration: underline; }

/* ========== Topic filter pills (Thought Leadership) ========== */
.topic-filter {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  padding-bottom: 8px;
}
.topic-filter__title {
  font-family: var(--f-body);
  font-style: italic;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  font-size: 14px;
  color: var(--c-text);
  align-self: center;
  margin-right: 8px;
}
.topic-filter a {
  display: inline-flex;
  align-items: center;
  padding: 8px 16px;
  border-radius: 0;
  border: 1px solid rgba(0,0,0,0.16);
  font-family: var(--f-body);
  font-weight: 200;
  font-size: 16px;
  color: var(--c-text);
  text-decoration: none;
  transition: background var(--t-fast), border-color var(--t-fast);
}
.topic-filter a:hover { background: rgba(0,0,0,0.04); border-color: rgba(0,0,0,0.32); }
.topic-filter a.is-active { background: var(--c-text); color: var(--c-secondary); border-color: var(--c-text); }

/* ========== Article-card media + CTA + trending variant ========== */
.article-card__media {
  display: block;
  width: calc(100% + 64px);
  margin: -32px -32px 8px;
  aspect-ratio: 16 / 9;
  overflow: hidden;
  border-top-left-radius: var(--r-md);
  border-top-right-radius: var(--r-md);
  background: rgba(0,0,0,0.04);
}
.article-card__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform var(--t-fast);
}
.article-card:hover .article-card__media img { transform: scale(1.02); }
.article-card__cta {
  margin-top: auto;
  padding-top: 8px;
  font-family: var(--f-body);
  font-style: italic;
  font-weight: 700;
  /* article-card defaults to dark navbar bg; use lime accent (--c-accent) so the
     CTA reads on dark. Light-themed contexts override this (see [data-latest-thinking]). */
  color: var(--c-accent);
  text-decoration: none;
  align-self: start;
}
.article-card__cta:hover { text-decoration: underline; }
.article-card__title--lg {
  font-size: 32px;
  line-height: 40px;
}

.article-card--trending {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 0;
  padding: 0;
  overflow: hidden;
  align-items: stretch;
}
.article-card--trending .article-card__media {
  width: 100%;
  margin: 0;
  aspect-ratio: auto;
  height: 100%;
  border-radius: 0;
}
.article-card--trending .article-card__content {
  padding: 40px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}
@media (max-width: 991px) {
  .article-card--trending { grid-template-columns: 1fr; }
  .article-card--trending .article-card__media { aspect-ratio: 16 / 9; }
  .article-card--trending .article-card__content { padding: 28px; }
  .article-card__title--lg { font-size: 26px; line-height: 34px; }
}

/* ========== Featured hero with media ========== */
.featured--with-media {
  grid-template-columns: 1.2fr 1fr;
  gap: 48px;
  align-items: center;
}
.featured--with-media .featured__body {
  display: flex;
  flex-direction: column;
  gap: 20px;
  align-items: start;
}
.featured__tag {
  font-family: var(--f-body);
  font-style: italic;
  font-weight: 700;
  font-size: 14px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--c-accent);
  margin: 0;
}
.featured__media {
  border-radius: 0;
  overflow: hidden;
  background: rgba(255,255,255,0.04);
}
.featured__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  aspect-ratio: 4 / 3;
}
@media (max-width: 991px) {
  .featured--with-media { grid-template-columns: 1fr; gap: 32px; }
}

/* ========== Newsletter signup ========== */
.newsletter {
  background: var(--c-navbar);
  color: var(--c-secondary);
  border-radius: 0;
  padding: 56px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: center;
}
.newsletter__copy { display: flex; flex-direction: column; gap: 12px; }
.eyebrow--on-dark { color: var(--c-accent); }
.newsletter__title {
  font-family: var(--f-display);
  font-weight: 900;
  font-size: 36px;
  line-height: 44px;
  margin: 0;
  color: var(--c-secondary);
}
.newsletter__lead {
  font-family: var(--f-body);
  font-weight: 200;
  font-size: var(--fs-body);
  line-height: var(--lh-body);
  color: rgba(255,255,255,0.78);
  margin: 0;
}
.newsletter__form { display: flex; flex-direction: column; gap: 8px; }
.newsletter__label {
  font-family: var(--f-body);
  font-style: italic;
  font-weight: 700;
  font-size: 14px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.64);
}
.newsletter__row {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 12px;
}
.newsletter__input {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.16);
  color: var(--c-secondary);
  padding: 14px 16px;
  border-radius: 0;
  font-family: var(--f-body);
  font-size: 16px;
}
.newsletter__input::placeholder { color: rgba(255,255,255,0.44); }
.newsletter__input:focus {
  outline: none;
  border-color: var(--c-accent);
  background: rgba(255,255,255,0.10);
}
.newsletter__submit {
  background: var(--c-accent);
  color: var(--c-text);
  border: 0;
  padding: 14px 22px;
  border-radius: 0;
  font-family: var(--f-body);
  font-weight: 700;
  font-style: italic;
  cursor: pointer;
  transition: opacity var(--t-fast);
}
.newsletter__submit:hover { opacity: 0.9; }
@media (max-width: 991px) {
  .newsletter { grid-template-columns: 1fr; padding: 32px; gap: 24px; }
  .newsletter__title { font-size: 28px; line-height: 36px; }
  .newsletter__row { grid-template-columns: 1fr; }
}

/* ========== Article detail page ==========
   White-paper-style template: dark cover hero with skewed parallelogram graphics
   and mint accent bar; long-form prose column with mint section bars, callouts,
   stat strips, ladder rows, and a dark download CTA card. */
.article-hero {
  position: relative;
  overflow: visible;
  isolation: isolate;
  background: var(--c-dark);
  color: var(--c-secondary);
  padding: 152px 32px 100px;
}
.article-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  background-image:
    radial-gradient(80% 45% at 50% -10%, rgba(110, 255, 149, 0.22) 0%, rgba(110, 255, 149, 0.08) 35%, rgba(110, 255, 149, 0) 75%),
    radial-gradient(55% 50% at 75% 60%, rgba(110, 255, 149, 0.10) 0%, rgba(110, 255, 149, 0) 70%),
    radial-gradient(40% 35% at 25% 30%, rgba(110, 255, 149, 0.07) 0%, rgba(110, 255, 149, 0) 70%),
    radial-gradient(120% 80% at 100% 0%, #2B2B2B 0%, var(--c-dark) 55%, #0F0F0F 100%);
}
.article-hero__lines {
  position: absolute;
  inset: 0;
  z-index: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  mix-blend-mode: screen;
  opacity: 0.55;
}

/* Hero shell — wraps a hero + a breakout parallelogram that crosses the
   hero/content boundary into the section below. */
.hero-shell { position: relative; }
.hero-shell ~ main,
.hero-shell ~ section,
.hero-shell + main,
.hero-shell + section { position: relative; z-index: 2; }
.hero-shell { z-index: 3; }
.hero__breakout {
  position: absolute;
  right: clamp(40px, 6vw, 120px);
  bottom: -240px;
  width: clamp(200px, 22vw, 320px);
  height: clamp(360px, 38vw, 540px);
  background: linear-gradient(180deg, var(--c-mint, #6AFF93) 0%, var(--c-teal, #00D9A6) 100%);
  transform: skewX(-20deg);
  opacity: 0.9;
  pointer-events: none;
  z-index: 4;
  box-shadow: 0 24px 80px rgba(0, 0, 0, 0.18);
}
@media (max-width: 991px) {
  .hero__breakout {
    right: 24px;
    bottom: -160px;
    width: 180px;
    height: 320px;
    opacity: 0.85;
  }
}
@media (max-width: 640px) {
  .hero__breakout {
    right: -16px;
    bottom: -100px;
    width: 70px;
    height: 180px;
    opacity: 0.7;
  }
}

/* Bottom-right parallelogram intentionally breaks out past the hero into the prose. */
.article-hero::after {
  content: "";
  position: absolute;
  z-index: 1;
  width: 320px;
  height: 560px;
  bottom: -260px;
  right: -120px;
  background: linear-gradient(180deg, var(--c-mint) 0%, var(--c-teal) 100%);
  transform: skewX(-20deg);
  opacity: 0.85;
  pointer-events: none;
}
@media (max-width: 991px) {
  .article-hero::after {
    width: 140px;
    height: 240px;
    right: -120px;
    bottom: -120px;
    opacity: 0.65;
  }
}
@media (max-width: 640px) {
  .article-hero::after {
    width: 70px;
    height: 180px;
    right: -16px;
    bottom: -100px;
    opacity: 0.6;
  }
}
.article-hero__bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  overflow: hidden;
  pointer-events: none;
}
.article-hero__bg::before {
  content: "";
  position: absolute;
  width: 340px; height: 560px; top: -200px; left: -140px;
  background: linear-gradient(180deg, var(--c-mint) 0%, var(--c-teal) 100%);
  transform: skewX(-20deg);
  opacity: 0.92;
}
.article-hero__edge {
  position: absolute;
  top: 0; bottom: 0; right: 0;
  width: 8px;
  z-index: 1;
  background: linear-gradient(180deg, var(--c-mint) 0%, var(--c-orange) 100%);
}
.article-hero__inner {
  position: relative;
  z-index: 2;
  max-width: 820px;
  margin-inline: auto;
  display: flex;
  flex-direction: column;
}
.article-hero__bar {
  width: 60px;
  height: 3px;
  background: var(--c-mint);
  margin-bottom: 18px;
}
.article-hero__eyebrow {
  font-family: var(--f-body);
  font-weight: 500;
  font-size: 12px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--c-mint);
  margin: 0 0 22px;
}
.article-hero__title {
  font-family: var(--f-display);
  font-weight: 900;
  font-size: clamp(36px, 5.2vw, 62px);
  line-height: 1.02;
  letter-spacing: -0.02em;
  color: var(--c-secondary);
  margin: 0 0 26px;
  max-width: 18ch;
}
.article-hero__subtitle {
  font-family: var(--f-body);
  font-weight: 300;
  font-size: clamp(17px, 1.6vw, 20px);
  line-height: 1.45;
  color: var(--c-orange);
  max-width: 52ch;
  margin: 0 0 36px;
}
.article-hero__byline {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  align-items: center;
  font-family: var(--f-body);
  font-size: 13px;
  color: rgba(255,255,255,0.78);
  margin: 0;
  font-style: normal;
}
.article-hero__byline .author { color: var(--c-secondary); font-weight: 600; }
.article-hero__byline .dot {
  display: inline-block;
  width: 4px; height: 4px;
  border-radius: 0;
  background: #555;
}

/* ---------- Series ribbon ---------- */
.series-ribbon {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-top: 32px;
  padding-top: 24px;
  border-top: 1px solid rgba(255,255,255,0.12);
}
.series-ribbon__label {
  font-family: var(--f-body);
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.4);
  margin: 0;
}
.series-ribbon__links {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}
.series-ribbon__link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 6px 12px;
  border-radius: 6px;
  border: 1px solid rgba(255,255,255,0.16);
  text-decoration: none;
  color: rgba(255,255,255,0.6);
  font-family: var(--f-body);
  font-size: 12px;
  font-weight: 500;
  white-space: nowrap;
  transition: border-color 150ms ease, background 150ms ease, color 150ms ease;
}
.series-ribbon__link:hover {
  border-color: rgba(255,255,255,0.38);
  color: white;
  background: rgba(255,255,255,0.06);
}
.series-ribbon__link.is-current {
  background: var(--c-mint);
  border-color: var(--c-mint);
  color: var(--c-dark);
  cursor: default;
  pointer-events: none;
}
.series-ribbon__num {
  font-family: var(--f-display);
  font-weight: 900;
  font-size: 10px;
  letter-spacing: 0.04em;
  opacity: 0.7;
}
.series-ribbon__link.is-current .series-ribbon__num { opacity: 1; }
@media (max-width: 640px) {
  .series-ribbon__links {
    flex-wrap: nowrap;
    overflow-x: auto;
    padding-bottom: 4px;
  }
}

/* ---------- Prose column ---------- */
.article-prose {
  max-width: 720px;
  margin-inline: auto;
  padding: 72px 32px 40px;
  font-family: var(--f-body);
  font-weight: 400;
  font-size: 18px;
  line-height: 1.7;
  color: var(--c-dark);
}
.article-prose > * { margin: 0; }
.article-prose p { margin: 0 0 22px; text-wrap: pretty; }
.article-prose .lede {
  font-size: 22px;
  line-height: 1.55;
  font-weight: 400;
  color: var(--c-dark);
  margin: 0 0 36px;
}
.article-prose h2 {
  font-family: var(--f-body);
  font-weight: 700;
  font-size: 26px;
  line-height: 1.25;
  letter-spacing: -0.01em;
  color: var(--c-dark);
  margin: 48px 0 14px;
}
.article-prose h2 + .bar {
  display: block;
  width: 60px;
  height: 3px;
  background: var(--c-mint);
  margin: 0 0 26px;
}
.article-prose h3 {
  font-family: var(--f-body);
  font-weight: 600;
  font-size: 19px;
  line-height: 1.3;
  color: var(--c-dark);
  margin: 32px 0 10px;
}
.article-prose strong { font-weight: 700; }
.article-prose em { font-style: italic; }
.article-prose a {
  color: var(--c-teal);
  text-decoration: underline;
  text-underline-offset: 3px;
}
.article-prose a:hover { color: var(--c-dark); }
.article-prose .hl {
  background: var(--c-mint);
  color: var(--c-dark);
  padding: 1px 5px;
  font-weight: 700;
  -webkit-box-decoration-break: clone;
  box-decoration-break: clone;
}
.article-prose ul {
  margin: 0 0 22px;
  padding-left: 24px;
}
.article-prose ul li { padding-left: 4px; margin-bottom: 6px; }
.article-prose ul.arrow {
  list-style: none;
  padding: 0;
  margin: 0 0 28px;
}
.article-prose ul.arrow li {
  position: relative;
  padding: 8px 0 8px 34px;
  font-size: 17px;
  line-height: 1.6;
}
.article-prose ul.arrow li::before {
  content: "→";
  position: absolute;
  left: 6px; top: 8px;
  font-weight: 700;
  color: var(--c-dark);
}
.article-prose blockquote {
  margin: 32px 0;
  padding: 4px 0 4px 28px;
  border-left: 4px solid var(--c-mint);
  font-family: var(--f-display);
  font-weight: 700;
  font-size: 24px;
  line-height: 1.3;
  letter-spacing: -0.01em;
  color: var(--c-dark);
}

/* ---------- Editorial components ---------- */
.callout {
  background: var(--c-off-white);
  border-radius: 0;
  padding: 22px 26px 22px 34px;
  margin: 32px 0;
  position: relative;
  font-family: var(--f-body);
  font-weight: 500;
  font-size: 17px;
  line-height: 1.5;
}
.callout::before {
  content: "";
  position: absolute;
  top: 16px; bottom: 16px; left: 14px;
  width: 4px;
  border-radius: 0;
  background: var(--c-mint);
}

.stat-strip {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
  margin: 36px 0;
}
.stat-strip .stat {
  background: var(--c-dark);
  border-radius: 0;
  padding: 26px 18px;
  text-align: center;
  color: white;
}
.stat-strip .stat-n {
  font-family: var(--f-display);
  font-weight: 900;
  font-size: 46px;
  line-height: 1;
  letter-spacing: -0.02em;
  color: var(--c-mint);
}
.stat-strip .stat-l {
  font-family: var(--f-body);
  font-weight: 400;
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: #BDBDBD;
  margin-top: 12px;
}

.ladder {
  margin: 36px 0;
  border-radius: 0;
  overflow: hidden;
  border: 1px solid var(--c-light-gray);
}
.ladder .row {
  display: grid;
  grid-template-columns: 60px 1fr 140px;
  padding: 18px 22px;
  gap: 18px;
  align-items: center;
  border-bottom: 1px solid var(--c-light-gray);
  background: white;
}
.ladder .row:last-child { border-bottom: 0; }
.ladder .row.dark { background: var(--c-dark); color: white; }
.ladder .num {
  font-family: var(--f-display);
  font-weight: 900;
  font-size: 30px;
  line-height: 1;
  color: var(--c-mint);
}
.ladder .ttl {
  font-family: var(--f-body);
  font-weight: 700;
  font-size: 17px;
  line-height: 1.3;
}
.ladder .dsc {
  font-family: var(--f-body);
  font-weight: 400;
  font-size: 14px;
  color: var(--c-mid-gray);
  margin-top: 3px;
}
.ladder .row.dark .dsc { color: #B5B5B5; }
.ladder .tag {
  font-family: var(--f-body);
  font-weight: 500;
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--c-mid-gray);
  text-align: right;
}

.download-card {
  margin: 56px 0 24px;
  border-radius: 0;
  overflow: hidden;
  background: var(--c-dark);
  color: white;
  position: relative;
  box-shadow: 0 12px 32px rgba(31,31,31,0.2);
}
.download-card::before {
  content: "";
  position: absolute;
  top: 0; right: 0; bottom: 0;
  width: 6px;
  background: linear-gradient(180deg, var(--c-mint) 0%, var(--c-orange) 100%);
}
.download-card__body {
  padding: 36px 40px 40px;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 32px;
  align-items: center;
}
.download-card__eyebrow {
  font-family: var(--f-body);
  font-weight: 500;
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--c-mint);
  margin-bottom: 10px;
}
.download-card__title {
  font-family: var(--f-display);
  font-weight: 800;
  font-size: 26px;
  line-height: 1.2;
  letter-spacing: -0.01em;
  color: white;
  margin: 0 0 8px;
  max-width: 18ch;
}
.download-card__copy {
  font-family: var(--f-body);
  font-size: 14px;
  line-height: 1.55;
  color: #D4D4D4;
  margin: 0;
  max-width: 48ch;
}
.article-prose a.download-card__btn,
.download-card__btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 16px 22px;
  border-radius: 0;
  background: var(--c-mint);
  color: var(--c-dark);
  font-family: var(--f-body);
  font-weight: 700;
  font-size: 14px;
  text-decoration: none;
  white-space: nowrap;
  transition: box-shadow var(--t-base) var(--ease-out), transform var(--t-fast) var(--ease-out);
}
.download-card__btn:hover { box-shadow: 0 0 0 3px rgba(106,255,147,0.33); }
.download-card__btn:active { transform: scale(0.98); }

@media (max-width: 860px) {
  .stat-strip { grid-template-columns: 1fr; }
  .download-card__body { grid-template-columns: 1fr; }
  .ladder .row { grid-template-columns: 40px 1fr; }
  .ladder .tag { display: none; }
  .article-hero { padding: 112px 24px 72px; }
  .article-prose { padding: 56px 24px 32px; font-size: 17px; }
  .article-prose .lede { font-size: 19px; }
  .article-prose h2 { font-size: 22px; }
  .article-prose blockquote { font-size: 20px; }
}

.related {
  background: #FAFAFA;
  border-top: 1px solid rgba(0,0,0,0.06);
  padding: 64px 32px 80px;
}
.related__inner {
  max-width: 1160px;
  margin-inline: auto;
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.related__title {
  font-family: var(--f-body);
  font-weight: 500;
  font-size: 11px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(31,31,31,0.62);
  margin: 0;
}
.related__list {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 20px;
}
/* Compact article-card sizing scoped to the related list. Dark variant. */
.related__list .article-card {
  padding: 22px;
  gap: 10px;
  background: var(--c-dark);
  color: var(--c-secondary);
  border-color: rgba(255, 255, 255, 0.12);
}
.related__list .article-card:hover { border-color: var(--c-accent); }
.related__list .article-card__title {
  font-size: 18px;
  line-height: 1.3;
  color: var(--c-secondary);
}
.related__list .article-card__body {
  font-size: 14px;
  line-height: 1.5;
  color: #F9F9F9;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.related__list .article-row__read {
  font-size: 13px;
  color: var(--c-accent);
}
@media (max-width: 991px) { .related__list { grid-template-columns: repeat(2, minmax(0, 1fr)); } }
@media (max-width: 600px) { .related__list { grid-template-columns: 1fr; } }

/* ---------- Series spotlight ---------- */
.series-spotlight {
  background: var(--c-dark);
  padding: 72px 32px 64px;
}
.series-spotlight__inner {
  max-width: 1160px;
  margin-inline: auto;
}
.series-spotlight__eyebrow {
  font-family: var(--f-body);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--c-mint);
  margin: 0 0 18px;
}
.series-spotlight__headline {
  font-family: var(--f-display);
  font-weight: 900;
  font-size: clamp(28px, 3.5vw, 44px);
  line-height: 1.08;
  letter-spacing: -0.02em;
  color: white;
  margin: 0 0 16px;
}
.series-spotlight__setup {
  font-family: var(--f-body);
  font-size: 18px;
  line-height: 1.6;
  color: rgba(255,255,255,0.7);
  margin: 0 0 52px;
  max-width: 54ch;
}
.series-spotlight__themes {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 48px;
  margin-bottom: 44px;
}
.series-spotlight__theme-bar {
  display: block;
  width: 40px;
  height: 3px;
  background: var(--c-mint);
  margin-bottom: 16px;
}
.series-spotlight__theme-title {
  font-family: var(--f-body);
  font-weight: 700;
  font-size: 20px;
  line-height: 1.25;
  color: white;
  margin: 0 0 12px;
  letter-spacing: -0.01em;
}
.series-spotlight__theme-desc {
  font-family: var(--f-body);
  font-size: 15px;
  line-height: 1.7;
  color: rgba(255,255,255,0.62);
  margin: 0;
}
.series-spotlight__cta-wrap {
  display: flex;
  align-items: center;
  gap: 24px;
  border-top: 1px solid rgba(255,255,255,0.1);
  padding-top: 36px;
}
.series-spotlight__cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 26px;
  border-radius: 10px;
  background: var(--c-mint);
  color: var(--c-dark);
  font-family: var(--f-body);
  font-weight: 700;
  font-size: 15px;
  text-decoration: none;
  transition: filter 150ms ease;
  white-space: nowrap;
}
.series-spotlight__cta:hover { filter: brightness(1.07); }
.series-spotlight__meta {
  font-family: var(--f-body);
  font-size: 13px;
  color: rgba(255,255,255,0.38);
}
@media (max-width: 991px) {
  .series-spotlight__themes { grid-template-columns: 1fr; gap: 32px; }
  .series-spotlight__setup { margin-bottom: 36px; }
}
@media (max-width: 640px) {
  .series-spotlight { padding: 48px 24px 48px; }
  .series-spotlight__cta-wrap { flex-direction: column; align-items: flex-start; gap: 12px; }
}

/* ========== Image cards (Custom Software) ==========
   Two variants:
     .image-grid--16x9  — three-up, 1280×720 source (AI First Delivery)
     .image-grid--wide  — three-up, 1280×436 source (What We Build)
*/
.image-grid {
  display: grid;
  gap: 32px;
}
.image-grid--16x9 { grid-template-columns: repeat(3, minmax(0, 1fr)); }
.image-grid--wide { grid-template-columns: repeat(3, minmax(0, 1fr)); }
.image-grid--2col { grid-template-columns: repeat(2, minmax(0, 1fr)); }
.image-grid--4col { grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 20px; }

/* Feature variant — beefier image-cards with stronger chrome + hover lift.
   Used on copilot-transformation "Benefits" so the cards stand out. */
.image-grid--feature .image-card {
  border-color: rgba(0, 0, 0, 0.10);
  box-shadow: 0 8px 24px -16px rgba(0, 0, 0, 0.18);
  transition: transform var(--t-base) var(--ease-out), border-color var(--t-base) var(--ease-out), box-shadow var(--t-base) var(--ease-out);
}
.image-grid--feature .image-card:hover {
  transform: translateY(-4px);
  border-color: var(--c-accent);
  box-shadow: 0 14px 32px -16px rgba(0, 0, 0, 0.22);
}
.image-grid--feature .image-card__media-icon { width: 84px; height: 84px; }
.image-grid--feature .image-card__body {
  padding: 0 28px 28px;
  gap: 10px;
}
.image-grid--feature .image-card__title { font-size: 24px; }
.image-grid--feature .image-card__copy { font-size: 16px; }

.image-card {
  display: flex;
  flex-direction: column;
  gap: 16px;
  background: #FFFFFF;
  border: 1px solid rgba(0,0,0,0.06);
  border-radius: 0;
  overflow: hidden;
  transition: transform var(--t-fast), border-color var(--t-fast);
}
.image-card:hover { transform: translateY(-2px); border-color: rgba(0,0,0,0.16); }
.image-card__media {
  width: 100%;
  aspect-ratio: 16 / 9;
  background: var(--c-navbar);
  object-fit: cover;
  display: block;
}
.image-grid--wide .image-card__media { aspect-ratio: 1280 / 436; }

/* Icon variant — replaces stock/AI imagery with brand-cohesive iconography. */
.image-card__media--icon {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--c-navbar);
  color: var(--c-accent);
  isolation: isolate;
  overflow: hidden;
}
.image-card__media--icon::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(45% 60% at 88% 10%, rgba(110, 255, 149, 0.18) 0%, rgba(110, 255, 149, 0) 70%),
    radial-gradient(35% 50% at 12% 95%, rgba(110, 255, 149, 0.10) 0%, rgba(110, 255, 149, 0) 70%);
  z-index: 0;
}
.image-card__media--icon::after {
  content: "";
  position: absolute;
  top: 18%; right: -6%;
  width: 28%; height: 110%;
  background: linear-gradient(180deg, var(--c-mint) 0%, var(--c-teal) 100%);
  opacity: 0.18;
  transform: skewX(-20deg);
  z-index: 0;
}
.image-card__media-num {
  position: absolute;
  left: 20px; top: 18px;
  z-index: 2;
  font-family: var(--f-display);
  font-weight: 900;
  font-size: 13px;
  letter-spacing: 0.18em;
  color: rgba(110, 255, 149, 0.78);
  display: inline-flex;
  align-items: center;
  gap: 10px;
}
.image-card__media-num::before {
  content: "";
  display: inline-block;
  width: 22px;
  height: 1px;
  background: rgba(110, 255, 149, 0.78);
}
.image-card__media-icon {
  position: relative;
  z-index: 1;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 64px;
  height: 64px;
}
.image-card__media-icon svg {
  width: 100%;
  height: 100%;
  display: block;
}
.image-card__body {
  padding: 0 24px 24px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.image-card__num {
  font-family: var(--f-body);
  font-weight: 600;
  font-size: 11px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--c-accent);
}
.image-card__title {
  font-family: var(--f-display);
  font-weight: 900;
  font-size: 22px;
  line-height: 1.25;
  margin: 0;
  color: var(--c-text);
}
.image-card__copy {
  font-family: var(--f-body);
  font-weight: 400;
  font-size: 15px;
  line-height: 22px;
  color: rgba(31,31,31,0.78);
}

/* Text variant — image-card with no media area (e.g. "What We Build"). */
.image-card--text .image-card__body {
  padding: 32px 28px 32px;
  gap: 12px;
}
.image-card__pip {
  display: inline-block;
  width: 28px;
  height: 12px;
  background: var(--c-accent);
  transform: skewX(-20deg);
  margin-bottom: 4px;
}

/* Brand variant — used by "What We Build" cards (services-custom-software.html).
   Replaces the composite PNG visual with a real logo + brand name on a dark band. */
.image-card--brand .image-card__brand {
  aspect-ratio: 1280 / 436;
  background: var(--c-navbar);
  display: flex;
  align-items: center;
  gap: 32px;
  padding: 0 56px;
}
.image-card--brand .image-card__brand-mark {
  width: 96px;
  height: 96px;
  flex: 0 0 auto;
  display: grid;
  place-items: center;
  background: rgba(110, 255, 149, 0.08);
  border-radius: 0;
}
.image-card--brand .image-card__brand-mark img {
  width: 56px;
  height: 56px;
  object-fit: contain;
  filter: brightness(0) invert(1);
}
.image-card--brand .image-card__brand-name {
  display: none;
}

@media (max-width: 991px) {
  .image-grid--16x9, .image-grid--wide, .image-grid--2col, .image-grid--4col { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 540px) {
  .image-grid--16x9, .image-grid--wide, .image-grid--2col, .image-grid--4col { grid-template-columns: 1fr; }
  .image-card--brand .image-card__brand { padding: 0 32px; gap: 20px; }
  .image-card--brand .image-card__brand-mark { width: 72px; height: 72px; }
  .image-card--brand .image-card__brand-mark img { width: 42px; height: 42px; }
}

/* ========== Flow diagram (sequential process visual, e.g. AI First Delivery) ========== */
.flow {
  position: relative;
  margin-top: 40px;
  padding: 72px 40px 64px;
  background: var(--c-navbar);
  border-radius: 0;
  isolation: isolate;
  overflow: hidden;
  color: #F9F9F9;
}
.flow::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(40% 55% at 88% 8%, rgba(110, 255, 149, 0.16) 0%, rgba(110, 255, 149, 0) 65%),
    radial-gradient(38% 50% at 6% 92%, rgba(110, 255, 149, 0.10) 0%, rgba(110, 255, 149, 0) 70%);
  pointer-events: none;
  z-index: 0;
}
.flow::after {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.025) 1px, transparent 1px);
  background-size: 56px 56px;
  pointer-events: none;
  z-index: 0;
  mask-image: radial-gradient(70% 70% at 50% 50%, black 30%, transparent 100%);
}
.flow__list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 16px;
  position: relative;
  z-index: 1;
}
.flow--four .flow__list { grid-template-columns: repeat(4, minmax(0, 1fr)); }
.flow__rail {
  position: absolute;
  left: 8.333%;
  right: 8.333%;
  top: 124px;
  height: 3px;
  background: linear-gradient(to right, transparent 0%, var(--c-accent) 8%, var(--c-accent) 92%, transparent 100%);
  opacity: 0.5;
  z-index: 1;
  filter: drop-shadow(0 0 6px rgba(110, 255, 149, 0.45));
}
.flow__step {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 28px;
  z-index: 2;
}
.flow__node {
  position: relative;
  width: 104px;
  height: 104px;
  display: grid;
  place-items: center;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(110, 255, 149, 0.30);
  color: var(--c-accent);
  border-radius: 0;
  transition: transform var(--t-base) var(--ease-out), border-color var(--t-base) var(--ease-out), background var(--t-base) var(--ease-out);
}
.flow__node::before {
  content: "";
  position: absolute;
  inset: -10px -12px -12px -10px;
  background: rgba(110, 255, 149, 0.07);
  transform: skewX(-14deg);
  border-radius: 0;
  z-index: -1;
  transition: background var(--t-base) var(--ease-out);
}
.flow__node::after {
  content: "";
  position: absolute;
  bottom: -16px;
  left: 50%;
  width: 12px;
  height: 12px;
  background: var(--c-accent);
  border-radius: 0;
  transform: translateX(-50%);
  box-shadow:
    0 0 0 4px var(--c-navbar),
    0 0 0 5px rgba(110, 255, 149, 0.4),
    0 0 14px rgba(110, 255, 149, 0.55);
}
.flow__node svg {
  width: 46px;
  height: 46px;
}
.flow__title {
  font-family: var(--f-display);
  font-weight: 900;
  font-size: 15px;
  line-height: 1.3;
  letter-spacing: -0.005em;
  color: #F9F9F9;
  margin: 0;
  max-width: 18ch;
}
.flow__step-num {
  font-family: var(--f-body);
  font-weight: 600;
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--c-accent);
  margin: 0;
}
.flow__copy {
  font-family: var(--f-body);
  font-weight: 200;
  font-size: 13px;
  line-height: 1.5;
  color: rgba(249, 249, 249, 0.7);
  margin: 0;
  max-width: 24ch;
}
/* ========== Assessment block (input + 4 deliverables, light) ==========
   Used on aistrategy.html "AI Opportunities Assessment". Splits into a left
   "input" column (the workshop) and a right 2x2 grid of dated deliverables. */
.assessment {
  display: flex;
  flex-direction: column;
  gap: clamp(28px, 3.5vw, 48px);
}
.assessment__head {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 32px 48px;
  align-items: end;
}
.assessment__head-main {
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.assessment__title {
  font-family: var(--f-body);
  font-weight: 700;
  font-size: 28px;
  line-height: 1.2;
  letter-spacing: -0.01em;
  color: var(--c-text);
  margin: 0;
}
.assessment__hook {
  font-family: var(--f-body);
  font-weight: 300;
  font-size: var(--fs-body);
  line-height: var(--lh-body);
  color: var(--c-text);
  margin: 0;
  max-width: 56ch;
}
.assessment__hook strong { font-weight: 700; }
.assessment__body {
  position: relative;
  display: grid;
  grid-template-columns: minmax(240px, 280px) 1fr;
  gap: 56px;
}
/* Single arrow pointing from the workshop card toward the deliverables */
.assessment__body::before {
  content: "→";
  position: absolute;
  left: calc(280px + 14px);
  top: 50%;
  transform: translateY(-50%);
  font-family: var(--f-display);
  font-weight: 900;
  font-size: 36px;
  line-height: 1;
  color: var(--c-accent);
  z-index: 1;
  pointer-events: none;
}
.assessment__input {
  position: relative;
  background: var(--c-navbar);
  color: var(--c-secondary);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 0;
  padding: 28px 28px 32px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  min-height: 320px;
}
.assessment__input::before {
  content: "";
  position: absolute;
  left: 0;
  top: 24px;
  bottom: 24px;
  width: 4px;
  background: var(--c-accent);
  border-radius: 0;
}
.assessment__input .assessment__input-label { color: rgba(255, 255, 255, 0.55); }
.assessment__input .assessment__input-title { color: var(--c-secondary); }
.assessment__input .assessment__input-list { color: rgba(255, 255, 255, 0.78); }
.assessment__input-label {
  font-family: var(--f-body);
  font-weight: 600;
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(31, 31, 31, 0.5);
  margin: 0 0 0 8px;
}
.assessment__input-title {
  font-family: var(--f-display);
  font-weight: 900;
  font-size: 36px;
  line-height: 1;
  letter-spacing: -0.02em;
  color: var(--c-text);
  margin: 0 0 0 8px;
}
.assessment__input-list {
  list-style: none;
  margin: auto 0 0 8px;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
  font-family: var(--f-body);
  font-size: 15px;
  color: rgba(31, 31, 31, 0.78);
}
.assessment__input-list li {
  display: flex;
  align-items: center;
  gap: 12px;
}
.assessment__input-list li::before {
  content: "→";
  color: var(--c-accent);
  font-weight: 700;
  font-size: 15px;
}
.assessment__outputs {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
  position: relative;
}
.deliverable {
  position: relative;
  background: #FAFAFA;
  border: 1px solid rgba(0, 0, 0, 0.22);
  border-radius: 0;
  padding: 22px 26px 24px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
/* Per-card connector dots/stubs were used when the rail was vertical; with the
   single arrow now they're gone. */
.deliverable::before,
.deliverable::after { display: none; }
.deliverable__head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}
.deliverable__mark {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--c-text);
}
.deliverable__icon {
  width: 22px;
  height: 22px;
  flex-shrink: 0;
}
.deliverable__num {
  font-family: var(--f-display);
  font-weight: 900;
  font-size: 20px;
  letter-spacing: -0.02em;
  color: var(--c-text);
}
.deliverable__week {
  font-family: var(--f-body);
  font-weight: 600;
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(31, 31, 31, 0.5);
}
.deliverable__title {
  font-family: var(--f-display);
  font-weight: 900;
  font-size: 22px;
  line-height: 1.2;
  color: var(--c-text);
  margin: 0;
}
.deliverable__copy {
  font-family: var(--f-body);
  font-weight: 400;
  font-size: 15px;
  line-height: 1.5;
  color: rgba(31, 31, 31, 0.7);
  margin: 0;
}
@media (max-width: 991px) {
  .assessment__head { grid-template-columns: 1fr; gap: 16px; }
  .assessment__hook { text-align: left; justify-self: start; }
  .assessment__body { grid-template-columns: 1fr; gap: 32px; }
  .assessment__body::before { display: none; }
  .deliverable::before,
  .deliverable::after { display: none; }
  .assessment__input { min-height: 0; }
}
@media (max-width: 540px) {
  .assessment__outputs { grid-template-columns: 1fr; }
}

/* Phase variant — light-section process with skewed lime parallelogram badges,
   numbers inside, dotted connector that breaks at each badge, and phase + title
   + copy text below. Used on aistrategy "Our Process". */
.flow--phase {
  background: transparent;
  padding: 24px 16px 8px;
  color: var(--c-text);
  margin-top: 8px;
  overflow: visible;
}
.flow--phase::before,
.flow--phase::after { display: none; }
.flow--phase .flow__list {
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 28px;
}
.flow--phase.flow--six .flow__list {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 40px 28px;
}
.flow--phase.flow--six .flow__rail { display: none; }
.flow--phase .flow__rail {
  position: absolute;
  left: 8%;
  right: 8%;
  top: 54px;
  height: 0;
  border-top: 2px dashed rgba(110, 255, 149, 0.55);
  background: none;
  filter: none;
  z-index: 1;
}
.flow--phase .flow__step {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  text-align: left;
  gap: 10px;
  z-index: 2;
  background: #FFFFFF;
  border: 1px solid rgba(0, 0, 0, 0.06);
  border-radius: 0;
  padding: 28px 24px 28px;
  box-shadow: 0 6px 22px rgba(0, 0, 0, 0.05);
}
.flow--phase .flow__node {
  position: relative;
  width: 84px;
  height: 60px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, var(--c-accent) 0%, #4DD97A 100%);
  border: none;
  border-radius: 0;
  transform: skewX(-20deg);
  font-family: var(--f-display);
  font-weight: 900;
  font-size: 30px;
  letter-spacing: -0.02em;
  color: var(--c-text);
  margin: -50px 0 18px -10px;          /* breakout — pulls the lime slab up out of the card */
  box-shadow: 0 10px 28px rgba(110, 255, 149, 0.35);
  z-index: 3;
}
.flow--phase .flow__node::before,
.flow--phase .flow__node::after { display: none; }
.flow--phase .flow__node > span {
  display: inline-block;
  transform: skewX(20deg);
}
.flow--phase .flow__step-num {
  font-family: var(--f-body);
  font-weight: 600;
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(31, 31, 31, 0.5);
  margin: 0;
}
.flow--phase .flow__title {
  font-family: var(--f-display);
  font-weight: 900;
  font-size: 22px;
  line-height: 1.2;
  color: var(--c-text);
  margin: 0;
  max-width: none;
}
.flow--phase .flow__copy {
  font-family: var(--f-body);
  font-weight: 200;
  font-size: 15px;
  line-height: 1.5;
  color: rgba(31, 31, 31, 0.72);
  margin: 0;
  max-width: 24ch;
}
@media (max-width: 991px) {
  .flow--phase .flow__list { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 32px; }
  .flow--phase .flow__rail { display: none; }
}
@media (max-width: 540px) {
  .flow--phase .flow__list { grid-template-columns: 1fr; }
}

/* Light variant — drops the dark contained-card chrome so the flow blends
   into a light page section. Keeps node + rail + chevron geometry intact. */
.flow--light {
  background: transparent;
  padding: 24px 0 8px;
  color: var(--c-text);
  margin-top: 8px;
}
.flow--light::before,
.flow--light::after { display: none; }
.flow--light .flow__rail { top: 76px; }
.flow--light .flow__node {
  background: var(--c-navbar);
  border-color: rgba(110, 255, 149, 0.45);
  color: var(--c-accent);
}
.flow--light .flow__node::before { background: rgba(110, 255, 149, 0.10); }
.flow--light .flow__node::after {
  box-shadow:
    0 0 0 4px #FFFFFF,
    0 0 0 5px rgba(110, 255, 149, 0.4),
    0 0 14px rgba(110, 255, 149, 0.55);
}
.flow--light .flow__step:hover .flow__node {
  background: rgba(110, 255, 149, 0.10);
  border-color: var(--c-accent);
}
.flow--light .flow__title { color: var(--c-text); }
.flow--light .flow__copy { color: rgba(31, 31, 31, 0.7); }
@media (max-width: 991px) {
  .flow--light { padding: 16px 0; }
}

.flow--process .flow__step { gap: 10px; }
.flow--process .flow__step .flow__node { margin-bottom: 18px; }
/* Chevron connector between consecutive steps — sits on the rail to give the
   diagram a clear directional read. */
.flow--process .flow__step:not(:last-child)::after {
  content: "";
  position: absolute;
  top: 52px;
  right: 0;
  transform: translate(50%, -50%) rotate(45deg);
  width: 14px;
  height: 14px;
  border-top: 2px solid var(--c-accent);
  border-right: 2px solid var(--c-accent);
  filter: drop-shadow(0 0 6px rgba(110, 255, 149, 0.55));
  z-index: 3;
  pointer-events: none;
}
@media (max-width: 991px) {
  .flow--process .flow__step:not(:last-child)::after { display: none; }
  .flow__copy { font-size: 12.5px; max-width: none; }
}
@media (max-width: 991px) {
  .flow { padding: 48px 24px 40px; margin-top: 32px; }
  .flow__list { grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 40px 16px; }
  .flow__rail { display: none; }
  .flow__node::after { display: none; }
}
@media (max-width: 540px) {
  .flow__list { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}

/* ========== Brand strip (logos on dark sections) ========== */
.brand-strip {
  margin-top: clamp(32px, 4vw, 48px);
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.brand-strip__label {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  font-family: var(--f-body);
  font-weight: 600;
  font-size: 12px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(31, 31, 31, 0.62);
  margin: 0;
}
.brand-strip__rule {
  display: inline-block;
  width: 40px;
  height: 1px;
  background: var(--c-accent);
}
.brand-strip__list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 16px;
  align-items: stretch;
}
.brand-strip__item {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 18px;
  min-height: 168px;
  padding: 32px 20px 28px;
  border: 1px solid rgba(0, 0, 0, 0.10);
  background: #FFFFFF;
  border-radius: 0;
  transition: border-color var(--t-fast), transform var(--t-fast);
}
.brand-strip__item:hover {
  border-color: rgba(0, 0, 0, 0.22);
  transform: translateY(-2px);
}
.brand-strip__item img {
  width: 48px;
  height: 48px;
  object-fit: contain;
  filter: brightness(0);
  opacity: 0.92;
}
.brand-strip__name {
  font-family: var(--f-body);
  font-weight: 500;
  font-size: 17px;
  line-height: 1;
  color: var(--c-text);
  text-align: center;
}
@media (max-width: 991px) {
  .brand-strip__list { grid-template-columns: repeat(3, minmax(0, 1fr)); }
}
@media (max-width: 540px) {
  .brand-strip__list { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .brand-strip__item { min-height: 140px; padding: 24px 16px 20px; gap: 14px; }
  .brand-strip__item img { width: 40px; height: 40px; }
  .brand-strip__name { font-size: 15px; }
}

/* Compact variant — used inside split layouts where logos sit in a narrower column.
   3x2 grid of square cards with logo + name stacked vertically. */
.brand-strip--compact { margin-top: 0; }
.brand-strip--compact .brand-strip__list { grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 12px; }
.brand-strip--compact .brand-strip__item {
  aspect-ratio: 1 / 1;
  min-height: 0;
  padding: 18px 12px;
  gap: 14px;
}
.brand-strip--compact .brand-strip__item img { width: 44px; height: 44px; }
.brand-strip--compact .brand-strip__name { font-size: 15px; }
@media (max-width: 540px) {
  .brand-strip--compact .brand-strip__list { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}

/* ============================================================
   CAPABILITIES — asymmetric "What We Build" grid
   Used by services-custom-software.html. Top row: featured (dark)
   + accent (lime). Bottom row: 3 default (light) cards.
   ============================================================ */
.capabilities {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
  margin-top: 16px;
}
.capabilities__feature-row {
  display: grid;
  grid-template-columns: minmax(0, 1.6fr) minmax(0, 1fr);
  gap: 20px;
}
.capabilities__row {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 20px;
}
.capabilities__row--four { grid-template-columns: repeat(4, minmax(0, 1fr)); }
@media (max-width: 991px) {
  .capabilities__row--four { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}
@media (max-width: 540px) {
  .capabilities__row--four { grid-template-columns: 1fr; }
}

/* Decorative skewed-slab pair under the "Why It Works" headline — fills empty space
   in the left column with the same parallelogram language used by the hero breakout. */
.why-it-works__decor {
  position: relative;
  margin-top: 64px;
  height: 0;          /* zero in-flow height — slabs overflow below, layering over the next section */
  pointer-events: none;
  z-index: 3;
}
.why-it-works__slab {
  position: absolute;
  top: 0;
  display: block;
  height: clamp(208px, 25.6vw, 336px);
  transform: skewX(-20deg);
  transform-origin: top left;
  border-radius: 0;
}
.why-it-works__slab--back {
  left: 28px;
  width: clamp(120px, 18vw, 220px);
  background: rgba(28, 28, 28, 0.08);
}
.why-it-works__slab--front {
  left: 0;
  width: clamp(160px, 24vw, 280px);
  background: linear-gradient(180deg, var(--c-mint, #6AFF93) 0%, var(--c-teal, #00D9A6) 100%);
  box-shadow: 0 18px 60px rgba(0, 0, 0, 0.12);
}
@media (max-width: 991px) {
  .why-it-works__decor { display: none; }
}

.capability {
  position: relative;
  display: flex;
  flex-direction: column;
  padding: 36px 36px 28px;
  border-radius: 0;
  overflow: hidden;
  isolation: isolate;
  transition: transform var(--t-fast), border-color var(--t-fast);
}
.capability:hover { transform: translateY(-2px); }

.capability__eyebrow {
  font-family: var(--f-body);
  font-weight: 600;
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  margin: 0 0 24px;
  display: inline-flex;
  align-items: center;
  gap: 12px;
}
.capability__eyebrow::before {
  content: "";
  display: inline-block;
  width: 22px;
  height: 6px;
  background: currentColor;
  transform: skewX(-20deg);
  flex: 0 0 auto;
}

.capability__title {
  font-family: var(--f-display);
  font-weight: 800;
  font-size: 26px;
  line-height: 1.2;
  letter-spacing: -0.01em;
  margin: 0 0 14px;
}
.capability__copy {
  font-family: var(--f-body);
  font-weight: 400;
  font-size: 16px;
  line-height: 1.55;
  margin: 0;
  max-width: 38em;
}

/* Featured (dark) variant */
.capability--featured {
  background: var(--c-navbar);
  color: var(--c-secondary);
  min-height: 540px;
}
.capability--featured .capability__eyebrow { color: var(--c-accent); }
.capability--featured .capability__title { font-size: 34px; }
.capability--featured .capability__copy { color: rgba(255,255,255,0.72); }

.capability__tags {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 22px 0 0;
  padding: 0;
  list-style: none;
}
.capability__tag {
  font-family: var(--f-body);
  font-weight: 500;
  font-size: 13px;
  color: rgba(255,255,255,0.78);
  padding: 7px 16px;
  border: 1px solid rgba(255,255,255,0.18);
  border-radius: 0;
  background: rgba(255,255,255,0.04);
}

.capability__visual {
  margin-top: auto;
  padding-top: 32px;
  display: flex;
  justify-content: center;
  align-items: flex-end;
}

/* Accent (lime) variant */
.capability--accent {
  background: var(--c-accent);
  color: var(--c-text);
}
.capability--accent .capability__eyebrow { color: var(--c-text); opacity: 0.7; }
.capability--accent .capability__copy { color: rgba(31,31,31,0.78); }
.capability--accent .capability__visual {
  margin-top: 28px;
  padding-top: 0;
  align-items: stretch;
}

/* Default (light) variant — bottom row */
.capability--default {
  background: #FFFFFF;
  color: var(--c-text);
  border: 1px solid rgba(0,0,0,0.08);
}
.capability--default .capability__eyebrow { color: rgba(31,31,31,0.55); }
.capability--default .capability__copy { color: rgba(31,31,31,0.72); }

/* Footer: hairline rule + label + arrow */
.capability__footer {
  margin-top: auto;
  padding-top: 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  border-top: 1px solid rgba(0,0,0,0.08);
}
.capability--featured .capability__footer,
.capability--accent .capability__footer {
  border-top-color: rgba(31,31,31,0.22);
}
.capability--featured .capability__footer { border-top-color: rgba(255,255,255,0.18); }

/* Default cards: no top rule on the footer (no link, no arrow) */
.capability--default .capability__footer {
  border-top: 0;
  padding-top: 12px;
}

/* Top-left icon used on default cards in place of the arrow CTA. */
.capability__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  margin-bottom: 18px;
  border-radius: 0;
  background: var(--c-accent);
  color: var(--c-text);
}
.capability__icon svg {
  width: 22px;
  height: 22px;
}

.capability__footer-label {
  font-family: var(--f-body);
  font-weight: 600;
  font-size: 11px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: inherit;
  opacity: 0.65;
}
.capability__footer-arrow {
  width: 36px;
  height: 36px;
  border-radius: 0;
  background: var(--c-accent);
  color: var(--c-text);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 auto;
  transition: background var(--t-fast), transform var(--t-fast);
  border: none;
  cursor: default;
}
.capability__footer-arrow svg {
  width: 14px;
  height: 14px;
}
.capability:hover .capability__footer-arrow { background: var(--c-mint); transform: translateX(2px); }

/* Featured visual: orchestrator → specialists graph (inline SVG) */
.feature-graph {
  width: 100%;
  max-width: 460px;
  height: auto;
}
.feature-graph__node {
  fill: transparent;
  stroke: rgba(255,255,255,0.5);
  stroke-width: 1.4;
}
.feature-graph__node--lead {
  fill: var(--c-accent);
  stroke: none;
}
.feature-graph__edge {
  stroke: rgba(110,255,149,0.55);
  stroke-width: 1;
  stroke-dasharray: 4 5;
  fill: none;
}
.feature-graph__label {
  font-family: var(--f-body);
  font-size: 13px;
  font-weight: 500;
  fill: rgba(255,255,255,0.92);
  text-anchor: middle;
  dominant-baseline: middle;
}
.feature-graph__label--lead {
  fill: var(--c-text);
  font-weight: 700;
}

/* Accent visual: stacked layers schematic (UI / LOGIC / DATA threaded by AI) */
.layers-stack {
  position: relative;
  display: grid;
  gap: 10px;
  padding-left: 30px;
}
.layers-stack::before {
  content: "";
  position: absolute;
  left: 12px;
  top: 22px;
  bottom: 22px;
  width: 2px;
  background-image: linear-gradient(to bottom, rgba(31,31,31,0.85) 50%, transparent 50%);
  background-size: 2px 7px;
  background-repeat: repeat-y;
  z-index: 0;
}
.layers-stack__row {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: rgba(31,31,31,0.07);
  border: 1px solid rgba(31,31,31,0.16);
  border-radius: 0;
  padding: 14px 18px;
  font-family: var(--f-body);
  font-weight: 700;
  font-size: 12px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(31,31,31,0.82);
}
.layers-stack__row::before {
  content: "";
  position: absolute;
  left: -23px;
  top: 50%;
  width: 12px;
  height: 12px;
  border-radius: 0;
  background: var(--c-text);
  transform: translateY(-50%);
  z-index: 1;
  box-shadow: 0 0 0 4px var(--c-accent);
}
.layers-stack__row-meta {
  font-family: var(--f-body);
  font-weight: 500;
  font-size: 11px;
  letter-spacing: 0.12em;
  color: rgba(31,31,31,0.55);
}

@media (max-width: 1100px) {
  .capability--featured .capability__title { font-size: 30px; }
}
@media (max-width: 991px) {
  .capabilities__feature-row { grid-template-columns: 1fr; }
  .capabilities__row { grid-template-columns: 1fr 1fr; }
  .capability--featured { min-height: 0; }
}
@media (max-width: 540px) {
  .capabilities__row { grid-template-columns: 1fr; }
  .capability { padding: 28px 24px 24px; }
  .capability--featured .capability__title { font-size: 26px; }
  .capability__title { font-size: 22px; }
}

/* ============================================================
   DELIVERY HUB — single dark card, hub-and-spoke pattern.
   Title + description on the left, 6 spec items in a 3x2 grid
   on the right, dashed connector lines fanning from the hub to
   each item.
   ============================================================ */
.delivery-hub {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1.6fr);
  gap: 56px;
  align-items: center;
  padding: 64px 56px;
  background: #2A2A2A;
  color: var(--c-secondary);
  border-radius: 0;
  overflow: hidden;
  isolation: isolate;
  margin-top: 32px;
}

.delivery-hub__lines {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
  pointer-events: none;
}
.delivery-hub__line {
  stroke: rgba(110, 255, 149, 0.7);
  stroke-width: 1.4;
  stroke-dasharray: 4 5;
  fill: none;
  filter: drop-shadow(0 0 4px rgba(110, 255, 149, 0.35));
}
.delivery-hub__origin {
  fill: var(--c-accent);
  filter: drop-shadow(0 0 8px rgba(110, 255, 149, 0.7));
}

.delivery-hub__hub {
  position: relative;
  z-index: 1;
  max-width: 380px;
}
.delivery-hub__eyebrow {
  font-family: var(--f-body);
  font-weight: 600;
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--c-accent);
  margin: 0 0 20px;
  display: inline-flex;
  align-items: center;
  gap: 12px;
}
.delivery-hub__eyebrow::before {
  content: "";
  display: inline-block;
  width: 22px;
  height: 6px;
  background: currentColor;
  transform: skewX(-20deg);
}
.delivery-hub__title {
  font-family: var(--f-display);
  font-weight: 800;
  font-size: 40px;
  line-height: 1.1;
  letter-spacing: -0.01em;
  margin: 0 0 18px;
  color: var(--c-secondary);
}
.delivery-hub__lead {
  font-family: var(--f-body);
  font-size: 16px;
  line-height: 1.55;
  color: rgba(255, 255, 255, 0.72);
  margin: 0;
}

.delivery-hub__items {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px 14px;
  list-style: none;
  padding: 0;
  margin: 0;
}
.delivery-hub__item {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 12px;
  padding: 20px 18px;
  background: #353535;
  border: 1px solid rgba(255, 255, 255, 0.10);
  border-radius: 0;
  min-height: 120px;
  transition: background var(--t-fast), border-color var(--t-fast), transform var(--t-fast);
}
.delivery-hub__item:hover {
  background: #3d3d3d;
  border-color: rgba(110, 255, 149, 0.35);
  transform: translateY(-2px);
}
.delivery-hub__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  color: var(--c-accent);
}
.delivery-hub__icon svg {
  width: 100%;
  height: 100%;
}
.delivery-hub__item-title {
  font-family: var(--f-display);
  font-weight: 700;
  font-size: 14px;
  line-height: 1.3;
  color: var(--c-secondary);
  margin: 0;
}

/* Anchor dot on every item where its line lands */
.delivery-hub__item::before {
  content: "";
  position: absolute;
  left: -5px;
  top: 50%;
  width: 10px;
  height: 10px;
  border-radius: 0;
  background: var(--c-accent);
  transform: translateY(-50%);
  z-index: 2;
  box-shadow: 0 0 0 3px var(--c-navbar);
}

@media (max-width: 991px) {
  .delivery-hub {
    grid-template-columns: 1fr;
    gap: 36px;
    padding: 48px 32px;
  }
  .delivery-hub__hub { max-width: none; }
  .delivery-hub__title { font-size: 32px; }
  .delivery-hub__items { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .delivery-hub__lines { display: none; }
  .delivery-hub__item::before { display: none; }
}
@media (max-width: 540px) {
  .delivery-hub__items { grid-template-columns: 1fr; }
  .delivery-hub__title { font-size: 26px; }
  .delivery-hub { padding: 36px 24px; }
}

/* ============================================================
   HOW WE WORK — twin delivery-hub cards in 2 columns.
   Used on services-custom-software.html. Wraps the vertical
   variant of delivery-hub.
   ============================================================ */
.how-we-work__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  margin-top: 8px;
}
.how-we-work__grid .delivery-hub { margin-top: 0; }

/* Vertical orientation of delivery-hub: hub on top, items below in 2-col grid,
   lines fan downward from beneath the title. Used inside narrow columns. */
.delivery-hub.delivery-hub--vertical {
  grid-template-columns: 1fr;
  gap: 28px;
  align-items: stretch;
  padding: 44px 36px 36px;
  min-height: 600px;
}
.delivery-hub--vertical .delivery-hub__hub {
  max-width: none;
  text-align: left;
}
.delivery-hub--vertical .delivery-hub__title {
  font-size: 28px;
  line-height: 1.15;
  margin-bottom: 14px;
}
.delivery-hub--vertical .delivery-hub__lead {
  font-size: 15px;
}

/* Sub-eyebrow inside each card (parent section already has the "How we work" eyebrow) */
.delivery-hub__sub-eyebrow {
  font-family: var(--f-body);
  font-weight: 600;
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--c-accent);
  margin: 0 0 14px;
  display: inline-flex;
  align-items: center;
  gap: 12px;
}
.delivery-hub__sub-eyebrow::before {
  content: "";
  display: inline-block;
  width: 22px;
  height: 6px;
  background: currentColor;
  transform: skewX(-20deg);
}

/* 2-col items grid (override the default 3-col) */
.delivery-hub__items--two {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

/* Optional sub-meta line on items (used on the AI-Native Dev Team card) */
.delivery-hub__item-meta {
  font-family: var(--f-body);
  font-weight: 500;
  font-size: 12px;
  letter-spacing: 0.04em;
  color: var(--c-accent);
  margin: 2px 0 0;
  opacity: 0.85;
}

/* No dots on vertical hubs — the connector lines that they anchored have been removed. */
.delivery-hub--vertical .delivery-hub__item::before { display: none; }

@media (max-width: 991px) {
  .how-we-work__grid { grid-template-columns: 1fr; gap: 20px; }
  .delivery-hub.delivery-hub--vertical { min-height: 0; }
}
@media (max-width: 540px) {
  .delivery-hub--vertical .delivery-hub__items--two { grid-template-columns: 1fr; }
  .delivery-hub--vertical .delivery-hub__item::before { display: none; }
}

/* ========== Latest Thinking head row ========== */
.latest-thinking__head {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 32px;
}
.latest-thinking__more {
  font-family: 'DM Sans', system-ui, sans-serif;
  font-weight: 600;
  font-size: 14px;
  color: inherit;
  text-decoration: none;
  border-bottom: 1px solid currentColor;
  padding-bottom: 2px;
  transition: color 120ms;
}
.latest-thinking__more:hover { color: var(--c-accent); }
@media (max-width: 640px) {
  .latest-thinking__head { flex-direction: column; align-items: flex-start; gap: 12px; }
}

/* ========== Latest Thinking — homepage card spacing & whole-card click ==========
   Theme rules live in the earlier [data-latest-thinking] block (dark cards, white text, lime accents).
   This block only handles padding for media-less cards and the stretched-link pattern that
   makes the entire card clickable on the homepage. */
[data-latest-thinking] .article-card { position: relative; cursor: pointer; }
[data-latest-thinking] .article-card__cta::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
}
[data-latest-thinking] .article-card--no-media { padding-top: 32px; }
[data-latest-thinking] .article-card--no-media .article-card__content { padding-top: 0; }
