/* ============================================================
   adesso KiVAS · Offering page (v3, production)
   Page-level rules on top of the design-system tokens
   (css/tokens.css). The v3 prototype's scoped overrides are
   merged in; the chosen Tweaks defaults are baked in:
   hero = adesso blue · typography = broad · accent = adesso blue
   density = regular · impact cards = teal gradient
   ============================================================ */

:root {
  --accent: var(--adesso-blue);
  --card-bg: var(--grad-teal-v); /* impact cards · teal gradient */
}

* { box-sizing: border-box; }
html, body { margin: 0; padding: 0; }
html {
  /* anchor links (menu, CTAs) scroll instead of jumping;
     scroll-padding keeps targets clear of the 72px sticky header */
  scroll-behavior: smooth;
  scroll-padding-top: 72px;
}
body { background: var(--bg); color: var(--text); overflow-x: hidden; }

/* density --- set on <body data-density> */
body[data-density="compact"] { --sec-y: 64px;  --hero-y: 64px; --gap-y: 32px; }
body                          { --sec-y: 96px;  --hero-y: 96px; --gap-y: 48px; }
body[data-density="comfy"]   { --sec-y: 128px; --hero-y: 128px; --gap-y: 64px; }

/* page frame */
.page { width: 100%; max-width: 1440px; margin: 0 auto; }
.page-pad { padding-left: 80px; padding-right: 80px; }
@media (max-width: 900px) { .page-pad { padding-left: 24px; padding-right: 24px; } }

/* generic atoms */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  font-family: var(--font-sans);
  font-size: 14px; font-weight: 500;
  padding: 12px 20px;
  border-radius: var(--r-2);
  border: 1px solid transparent;
  cursor: pointer;
  text-decoration: none;
  line-height: 1;
  transition: background .15s, border-color .15s, color .15s;
  white-space: nowrap;
}
.btn-primary { background: var(--accent, var(--primary)); color: white; }
.btn-primary:hover { filter: brightness(.92); }
.btn-secondary { background: var(--bg); color: var(--text); border-color: var(--border-strong); }
.btn-secondary:hover { background: var(--ink-100); border-color: var(--ink-400); }
.btn svg { width: 14px; height: 14px; fill: none; stroke: currentColor; stroke-width: 1.8; stroke-linecap: round; stroke-linejoin: round; }

.section { padding-top: var(--sec-y); padding-bottom: var(--sec-y); }
.section.dark { background: var(--ink-1000); color: var(--ink-0); }
.section.muted { background: var(--ink-50); }
.divider-rule { height: 1px; background: var(--border); }

/* ============================================================
   SITE HEADER  (v3: pure white, no hairline, nav centered)
   ============================================================ */
.site-header {
  position: sticky; top: 0; z-index: 50;
  background: #ffffff;
  border-bottom: 0;
}
.site-header-inner {
  position: relative;
  display: flex; align-items: center;
  height: 72px; gap: 40px;
}
.brand { display: inline-flex; align-items: center; gap: 12px; text-decoration: none; color: var(--text); flex: 0 0 auto; }
.brand-mark { width: 36px; height: 36px; border-radius: var(--r-2); overflow: hidden; display: block; flex: 0 0 auto; }
.brand-mark img { width: 100%; height: 100%; object-fit: cover; display: block; }
.brand-product {
  font-family: var(--font-cond);
  font-weight: 500;
  font-size: 18px;
  letter-spacing: -0.005em;
  color: var(--text);
}

.primary-nav {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  display: flex; align-items: center; gap: 0;
  flex: 0 0 auto;
}
.primary-nav a {
  font: 500 14px var(--font-sans);
  color: var(--text);
  padding: 24px 14px;
  text-decoration: none;
  white-space: nowrap;
  transition: color .15s;
}
.primary-nav a:hover { color: var(--accent, var(--primary)); }
.primary-nav a.is-active { color: var(--accent, var(--primary)); }
.lang-links {
  display: inline-flex; align-items: center; gap: 6px;
  margin-left: auto;
}
.lang-link {
  appearance: none; border: 0; background: transparent;
  cursor: pointer;
  font: 500 14px var(--font-sans);
  color: var(--text-muted);
  padding: 0;
  transition: color .15s;
  letter-spacing: 0.02em;
}
.lang-link:hover { color: var(--text); }
.lang-link.is-active { color: var(--text); }
.lang-sep { color: var(--ink-300); font-size: 14px; }

/* the design specifies no mobile nav treatment — the centered nav would
   overlap brand + language toggle on small screens, so it is hidden there */
@media (max-width: 900px) {
  .primary-nav { display: none; }
}

/* ============================================================
   HERO  (v3: adesso blue · broad type · video behind the typo ·
   header + hero fill one viewport · text bottom-aligned)
   ============================================================ */
.hero {
  position: relative; overflow: hidden;
  isolation: isolate;
  background: var(--adesso-blue);
  color: white;
  min-height: calc(100svh - 72px);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding-top: var(--hero-y);
  padding-bottom: calc(var(--hero-y) + 24px);
}

/* background video behind the hero typography
   — 30% taller than the hero so the parallax shift (animations.js)
   never reveals an edge; starts shifted up, scrolls down slower */
.hero-bg-video {
  position: absolute;
  top: -30%; left: 0; right: 0;
  width: 100%; height: 130%;
  object-fit: cover;
  z-index: 0;
  will-change: transform;
}
.hero::after {
  content: "";
  position: absolute; inset: 0;
  background: transparent;
  z-index: 1;
}
.hero > .page { position: relative; z-index: 2; }
.hero > .page.page-pad { font-weight: 500; }

.hero-stack { display: flex; flex-direction: column; gap: 0; }

/* broad typography preset (baked in) */
.hero-headline {
  font-family: var(--font-cond);
  font-weight: 500;
  font-size: clamp(56px, 7.4vw, 104px);
  letter-spacing: -0.022em;
  line-height: 0.98;
  max-width: 20ch;
  margin: 0 0 32px;
  text-wrap: balance;
  color: white;
}
.hero-headline em {
  display: block;             /* v3: em phrase on its own line */
  font-family: var(--font-cond);
  font-style: italic;
  font-weight: 400;
  color: rgba(255, 255, 255, 0.72);
  opacity: .85;
}
.hero-sub {
  font-size: 22px;
  line-height: 1.55;
  font-weight: 400;
  color: rgba(255,255,255,.82);
  max-width: 62%;
  margin: 0;
  text-wrap: pretty;
}
/* lede emphasis — pulls priority phrases forward against the muted run */
.hero-em { font-style: normal; font-weight: 600; color: #fff; }

/* ============================================================
   HERO META BAND  (the 4-up under the hero)
   ============================================================ */
.hero-meta-band {
  border-bottom: 1px solid var(--border);
}
.hero-meta-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  margin: 0;
  padding: 0;
}
.hero-meta-cell {
  padding: 36px 28px 40px 0;
  border-right: 1px solid var(--border);
  display: flex; flex-direction: column; gap: 12px;
}
.hero-meta-cell:last-child { border-right: 0; }
.hero-meta-cell:not(:first-child) { padding-left: 28px; }
.hero-meta-cell dt {
  font-family: var(--font-mono);
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: 0.09em;
  color: var(--text-subtle);
  margin: 0;
}
.hero-meta-cell dd {
  font-family: var(--font-cond);
  font-size: 26px;
  font-weight: 500;
  margin: 0;
  letter-spacing: -0.008em;
  line-height: 1.1;
  color: var(--text);
}
@media (max-width: 900px) {
  .hero-meta-grid { grid-template-columns: repeat(2, 1fr); }
  .hero-meta-cell { padding: 24px 20px; border-right: 1px solid var(--border); border-bottom: 1px solid var(--border); }
  .hero-meta-cell:nth-child(even) { border-right: 0; }
  .hero-meta-cell:nth-last-child(-n+2) { border-bottom: 0; }
}

/* ============================================================
   POSITIONING
   ============================================================ */
.positioning {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 80px;
  align-items: start;
}
.positioning-eyebrow-col h2 {
  font-family: var(--font-cond);
  font-size: 56px;
  font-weight: 500;
  line-height: 0.98;
  letter-spacing: -0.02em;
  margin: 0;                  /* v3: top edge aligns with the right column */
  text-wrap: balance;
  max-width: 14ch;
}
.positioning-body p {
  font-size: 19px;
  line-height: 1.55;
  color: var(--text-muted);
  margin: 0 0 18px;
  text-wrap: pretty;
}
.positioning-body p:first-of-type {
  font-size: 22px;
  color: var(--text);
  line-height: 1.45;
  margin-bottom: 28px;
  font-weight: 400;
}
.positioning-body .btn { margin-top: 16px; }

/* ============================================================
   STATS STRIP  (v3: three qualitative impact cards on the
   teal gradient instead of four KPIs)
   ============================================================ */
.stats-section { padding-top: 40px; padding-bottom: 56px; }
.stats-strip {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  padding: 56px 0 0;
  border-top: 0;
}
.stat {
  display: flex; flex-direction: column; gap: 12px;
  background: var(--card-bg, var(--adesso-blue));
  border-radius: var(--r-3);
  padding: 28px;
}
.stat-title {
  font-family: var(--font-cond);
  font-weight: 500;
  font-size: 28px;
  line-height: 1.06;
  letter-spacing: -0.015em;
  color: #fff;
  text-wrap: balance;
  max-width: 18ch;
}
.stat-note { font-size: 13px; line-height: 1.45; max-width: 30ch; }
.stat-title + .stat-note { font-size: 15px; max-width: 34ch; color: rgba(255,255,255,.86); }

/* ============================================================
   CAPABILITIES GRID
   ============================================================ */
.section-head {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 64px;
  align-items: end;
  margin-bottom: 56px;
}
.section-head h2 {
  font-family: var(--font-cond);
  font-size: 56px;
  font-weight: 500;
  line-height: 0.98;
  letter-spacing: -0.02em;
  margin: 18px 0 0;
  max-width: 14ch;
  text-wrap: balance;
}
.section-head p {
  font-size: 17px;
  line-height: 1.55;
  color: var(--text-muted);
  margin: 0;
  max-width: 48ch;
  text-wrap: pretty;
}
.section-head .section-head-lede { width: 500px; }
.section.dark .section-head h2 { color: white; }
.section.dark .section-head p { color: rgba(255,255,255,.7); }

.capabilities-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}
.cap-card {
  display: flex;
  flex-direction: column;
  text-align: left;
  background: var(--bg-card);
  border: 1px solid transparent;
  border-radius: var(--r-3);
  padding: 32px;
  min-height: 280px;
  cursor: pointer;
  /* no `transform` here — a CSS transform transition fights GSAP's
     per-frame transform writes and leaves cards stuck mid-reveal */
  transition: border-color .15s, box-shadow .15s;
  position: relative;
  text-decoration: none;
  color: inherit;
  font: inherit;
  width: 100%;
}
.cap-card:hover { border-color: var(--ink-300); }
.cap-card:focus-visible { outline: 3px solid var(--focus-ring); outline-offset: 2px; }
.cap-card .cap-icon {
  margin-bottom: 24px;
}
.cap-icon {
  width: 40px; height: 40px;
  display: inline-flex; align-items: center; justify-content: center;
  background: var(--accent, var(--primary));
  color: white;
  border-radius: var(--r-2);
}
.cap-icon i { font-size: 22px; }
.cap-card h3 {
  font-family: var(--font-cond);
  font-size: 28px;
  font-weight: 500;
  margin: 0 0 12px;
  letter-spacing: -0.01em;
}
.cap-card p {
  font-size: 14.5px;
  line-height: 1.55;
  color: var(--text-muted);
  margin: 0 0 auto;
}
.cap-card .cap-foot {
  margin-top: 28px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-family: var(--font-mono);
  font-size: 10.5px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text-subtle);
}
.cap-card .cap-foot .more {
  color: var(--accent, var(--primary));
  display: inline-flex; align-items: center; gap: 6px;
  font-weight: 500;
}
.cap-card .cap-foot .more svg { width: 12px; height: 12px; fill: none; stroke: currentColor; stroke-width: 2; transition: transform .15s; }
.cap-card:hover .cap-foot .more svg { transform: translateX(3px); }

/* ============================================================
   JOURNEY  (timeline strip — the six platform layers)
   ============================================================ */
.journey {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 0;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.journey-step {
  padding: 32px 20px 36px;
  border-right: 1px solid var(--border);
  display: flex; flex-direction: column; gap: 12px;
  background: var(--bg);
  min-height: 220px;
}
.journey-step:last-child { border-right: 0; }
.journey-step .j-num {
  font-family: var(--font-mono); font-size: 10px;
  letter-spacing: 0.1em; text-transform: uppercase;
  color: var(--text-subtle);
}
.journey-step h4 {
  font-family: var(--font-cond);
  font-size: 22px;
  font-weight: 500;
  margin: 0;
  letter-spacing: -0.005em;
}
.journey-step p { font-size: 13.5px; color: var(--text-muted); margin: 0; line-height: 1.5; }
.journey-step .j-tag {
  margin-top: auto;
  font-family: var(--font-mono);
  font-size: 10.5px;
  color: var(--accent, var(--primary));
  letter-spacing: 0.05em;
}

/* ============================================================
   ARCHITECTURE  (v3: no connector strokes, layers spaced,
   left stack stretches to the right column's height on desktop)
   ============================================================ */
.arch-grid {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 80px;
  align-items: start;
}
.arch-diagram {
  border: 1px solid transparent;
  border-radius: var(--r-3);
  padding: 0 32px 32px 0;
  background: transparent;
}
.arch-layer {
  display: flex;
  flex-direction: column;
  gap: 4px;
  padding: 22px 24px;
  border: 1px solid transparent;
  border-radius: var(--r-2);
  background: rgba(255,255,255,.04);
  position: relative;
}
.arch-layer + .arch-layer,
.arch-diagram .arch-layer:not(:first-child) { margin-top: 16px; }
.arch-layer-tag {
  font-family: var(--font-mono);
  font-size: 10.5px;
  letter-spacing: 0.09em;
  text-transform: uppercase;
  color: rgba(255,255,255,.55);
}
.arch-layer-name {
  font-family: var(--font-cond);
  font-size: 22px;
  font-weight: 500;
  letter-spacing: -0.005em;
  color: white;
}
.arch-layer-desc { font-size: 13px; color: rgba(255,255,255,.65); line-height: 1.5; margin-top: 4px; }
.arch-layer.is-kivas {
  background: var(--accent, var(--primary));
  border-color: var(--accent, var(--primary));
}
.arch-layer.is-kivas .arch-layer-tag { color: rgba(255,255,255,.78); }
.arch-layer.is-kivas .arch-layer-desc { color: rgba(255,255,255,.88); }

/* desktop two-col: stretch the 3 layers to match the right column,
   so the last layer's bottom edge lines up with the text */
@media (min-width: 1101px) {
  .arch-grid { align-items: stretch; }
  .arch-diagram {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    height: 100%;
    padding-bottom: 0;
  }
  .arch-diagram .arch-layer:not(:first-child) { margin-top: 0; }
}

.arch-pillars { display: flex; flex-direction: column; gap: 24px; }
.arch-pillar {
  padding-top: 24px;
  border-top: 1px solid rgba(255,255,255,.16);
  display: grid;
  grid-template-columns: 80px 1fr;
  gap: 24px;
}
.arch-pillar:first-child { padding-top: 0; border-top: 0; }
.arch-pillar .p-num {
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: 0.1em;
  color: rgba(255,255,255,.5);
}
.arch-pillar h4 {
  font-family: var(--font-cond);
  font-size: 24px;
  font-weight: 500;
  margin: 0 0 8px;
  color: white;
  letter-spacing: -0.005em;
}
.arch-pillar p { font-size: 14.5px; color: rgba(255,255,255,.7); margin: 0; line-height: 1.55; }

/* ============================================================
   CONTACT PANEL
   ============================================================ */
.contact-grid {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 80px;
  align-items: start;
}
.contact-headline {
  font-family: var(--font-cond);
  font-size: 64px;
  font-weight: 500;
  line-height: 0.98;
  letter-spacing: -0.022em;
  margin: 18px 0 28px;
  text-wrap: balance;
  max-width: 14ch;
}
.contact-sub {
  font-size: 18px; line-height: 1.55; color: var(--text-muted);
  max-width: 48ch; margin: 0 0 36px; text-wrap: pretty;
}
.contact-meta {
  display: grid; grid-template-columns: 1fr 1fr; gap: 24px 32px;
  margin-top: 8px;
  padding-top: 28px; border-top: 1px solid var(--border);
}
.contact-meta dt {
  font-family: var(--font-mono); font-size: 10px; text-transform: uppercase;
  letter-spacing: 0.09em; color: var(--text-subtle); margin: 0 0 4px;
}
.contact-meta dd { margin: 0; font-size: 14px; color: var(--text); }
.contact-meta dd a { color: var(--text); text-decoration: none; }
.contact-meta dd a:hover { color: var(--accent, var(--primary)); }

.contact-form {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--r-3);
  padding: 32px;
  display: flex; flex-direction: column; gap: 16px;
}
.contact-form h3 {
  font-family: var(--font-cond);
  font-size: 22px; font-weight: 500;
  margin: 0 0 4px; letter-spacing: -0.005em;
}
.field { display: flex; flex-direction: column; gap: 6px; }
.field label {
  font-family: var(--font-mono);
  font-size: 10px; letter-spacing: 0.08em; text-transform: uppercase;
  color: var(--text-subtle);
}
.field input, .field textarea, .field select {
  font: 14px var(--font-sans);
  padding: 11px 14px;
  border: 1px solid var(--border-strong);
  border-radius: var(--r-2);
  background: var(--bg);
  color: var(--text);
}
.field input:focus, .field textarea:focus, .field select:focus {
  outline: none;
  border-color: var(--accent, var(--primary));
  box-shadow: 0 0 0 3px var(--focus-ring);
}
.field textarea { resize: vertical; min-height: 90px; }
.field-row { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.consent {
  display: flex; gap: 10px; align-items: flex-start;
  font-size: 12.5px; color: var(--text-muted); line-height: 1.5;
}
.consent input { margin-top: 3px; }
.form-actions { display: flex; justify-content: flex-end; gap: 12px; }

/* ============================================================
   SITE FOOTER
   ============================================================ */
.site-footer {
  background: var(--ink-1000);
  color: rgba(255,255,255,.6);
  padding: 80px 0 36px;
  font-size: 13px;
}
.footer-top {
  display: grid;
  grid-template-columns: 320px 1fr;
  gap: 64px;
  margin-bottom: 56px;
}
.site-footer .brand { color: white; }
.site-footer .brand-product { color: white; }
.footer-tagline {
  font-family: var(--font-cond);
  font-size: 22px;
  color: white;
  margin: 24px 0 0;
  max-width: 22ch;
  line-height: 1.2;
  letter-spacing: -0.005em;
}
.footer-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
}
.footer-col h4 {
  font-family: var(--font-mono);
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: 0.09em;
  color: rgba(255,255,255,.45);
  margin: 0 0 16px;
  font-weight: 500;
}
.footer-col ul { list-style: none; margin: 0; padding: 0; display: flex; flex-direction: column; gap: 10px; }
.footer-col a {
  color: rgba(255,255,255,.75);
  text-decoration: none;
  font-size: 13.5px;
  transition: color .15s;
}
.footer-col a:hover { color: white; }
.site-footer .divider-rule { background: rgba(255,255,255,.12); margin: 32px 0; }
.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-family: var(--font-mono);
  font-size: 11px;
  color: rgba(255,255,255,.45);
  letter-spacing: 0.04em;
}
.footer-legal { display: flex; gap: 24px; align-items: center; }
.footer-legal a { color: inherit; text-decoration: none; }
.footer-legal a:hover { color: white; }
.footer-social { display: flex; gap: 8px; }
.footer-social a {
  width: 34px; height: 34px;
  display: inline-flex; align-items: center; justify-content: center;
  border: 1px solid rgba(255,255,255,.18);
  border-radius: 999px;
  color: rgba(255,255,255,.75);
  text-decoration: none;
  transition: background .15s;
}
.footer-social a:hover { background: rgba(255,255,255,.10); color: white; }
.footer-social i { font-size: 15px; }

/* ============================================================
   DETAIL OVERLAY (capability detail modal)
   ============================================================ */
.detail-overlay {
  position: fixed; inset: 0;
  background: rgba(15,17,32,.55);
  backdrop-filter: blur(6px);
  display: flex; align-items: stretch; justify-content: flex-end;
  z-index: 200;
  animation: fade-in .2s ease;
}
@keyframes fade-in { from { opacity: 0; } to { opacity: 1; } }
.detail-panel {
  width: min(720px, 100%);
  background: var(--bg);
  height: 100vh;
  overflow-y: auto;
  padding: 56px 64px;
  position: relative;
  animation: slide-in .25s cubic-bezier(.2,.8,.2,1);
}
@keyframes slide-in { from { transform: translateX(40px); opacity: .6; } to { transform: translateX(0); opacity: 1; } }
.detail-close {
  position: absolute; top: 24px; right: 24px;
  width: 36px; height: 36px;
  border: 0; background: transparent;
  border-radius: var(--r-2);
  cursor: pointer;
  display: inline-flex; align-items: center; justify-content: center;
  color: var(--text);
  transition: background .15s;
}
.detail-close:hover { background: var(--ink-100); }
.detail-close i { font-size: 16px; }
.detail-icon {
  width: 56px; height: 56px;
  display: inline-flex; align-items: center; justify-content: center;
  background: var(--accent, var(--primary));
  color: white;
  border-radius: var(--r-3);
  margin-bottom: 24px;
}
.detail-icon i { font-size: 30px; }
.detail-panel h2 {
  font-family: var(--font-cond);
  font-size: 48px; font-weight: 500;
  line-height: 1.02; letter-spacing: -0.018em;
  margin: 0 0 16px;
}
.detail-lede {
  font-size: 19px; line-height: 1.5;
  color: var(--text-muted);
  margin: 0 0 32px;
  text-wrap: pretty;
}
.detail-section { margin-top: 32px; padding-top: 28px; border-top: 1px solid var(--border); }
.detail-section h4 {
  font-family: var(--font-mono);
  font-size: 11px; text-transform: uppercase; letter-spacing: 0.09em;
  color: var(--text-subtle);
  margin: 0 0 16px; font-weight: 500;
}
.feature-list { list-style: none; margin: 0; padding: 0; display: flex; flex-direction: column; gap: 14px; }
.feature-list li {
  display: grid; grid-template-columns: 28px 1fr;
  gap: 12px; align-items: start;
  font-size: 15px; line-height: 1.5;
}
.feature-list li::before {
  content: "";
  width: 14px; height: 1px;
  background: var(--accent, var(--primary));
  margin-top: 11px;
}
.feature-list li b { font-weight: 600; color: var(--text); }
.feature-list li span { color: var(--text-muted); }

.fit-list { list-style: none; margin: 0; padding: 0; display: flex; flex-wrap: wrap; gap: 6px; }
.fit-list li {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  padding: 6px 10px;
  border: 1px solid var(--border-strong);
  border-radius: var(--r-2);
  color: var(--text-muted);
}

.detail-foot {
  margin-top: 40px;
  display: flex; gap: 12px;
}

/* ============================================================
   responsive trim
   ============================================================ */
@media (max-width: 1100px) {
  .positioning, .arch-grid, .contact-grid { grid-template-columns: 1fr; gap: 48px; }
  .section-head { grid-template-columns: 1fr; gap: 24px; }
  .section-head .section-head-lede { width: auto; }
  .capabilities-grid { grid-template-columns: repeat(2, 1fr); }
  .journey { grid-template-columns: repeat(3, 1fr); }
  .journey-step { border-right: 1px solid var(--border); border-bottom: 1px solid var(--border); }
  .journey-step:nth-child(3n) { border-right: 0; }
  .journey-step:nth-last-child(-n+3) { border-bottom: 0; }
  .footer-top { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 640px) {
  .page-pad { padding-left: 20px; padding-right: 20px; }
  .capabilities-grid { grid-template-columns: 1fr; }
  .journey { grid-template-columns: 1fr; }
  .journey-step { border-right: 0; }
  .stats-strip { grid-template-columns: 1fr; }
  .field-row { grid-template-columns: 1fr; }
  .detail-panel { padding: 48px 28px; }
}
