/* ==========================================================================
   Home page · /index.html
   Hero, what-it-is, Connect/Detect/Decide, guided workflow, client logos.
   ========================================================================== */

/* ── Section sticky bar ─────────────────────────────────────────────── */
.ga-context {
  position: sticky;
  top: 64px;
  z-index: 90;
  background: rgba(247,249,246,0.92);
  border-bottom: 1px solid var(--border);
  backdrop-filter: blur(12px);
}
.ga-context-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  min-height: 52px;
  padding: 0 var(--gutter);
  display: flex;
  align-items: center;
  gap: 18px;
}
.ga-context-back {
  flex-shrink: 0;
  font-size: 12.5px;
  font-weight: 700;
  color: var(--text-strong);
}
.ga-context-back strong { color: var(--accent); }
.ga-context-links {
  display: flex;
  align-items: center;
  gap: 4px;
  margin-left: auto;
}
.ga-context-links a,
.ga-context-cta {
  font-size: 12px;
  font-weight: 700;
  border-radius: 999px;
  padding: 8px 12px;
  color: var(--text);
  transition: background 0.16s ease, color 0.16s ease;
}
.ga-context-links a:hover {
  background: rgba(26,95,82,0.10);
  color: var(--accent);
}
.ga-context-cta {
  color: #fff;
  background: var(--accent);
}
.ga-context-cta:hover { background: var(--accent-dark); }

/* Anchor for the back link, sits between topbar and the hero. */
#ga-top {
  display: block;
  position: relative;
  top: -116px;
  visibility: hidden;
}

/* ── Hero ──────────────────────────────────────────────────────────── */
.hero {
  position: relative;
  height: calc(100vh - 64px - 52px);
  min-height: 600px;
  background: var(--ink);
  overflow: hidden;
  --hero-stage-y: -34px;
}
#pit-canvas {
  position: absolute; inset: 0; width: 100%; height: 100%;
  transform: translateY(var(--hero-stage-y));
}

.hero-rings {
  position: absolute; inset: 0; pointer-events: none;
  transform: translateY(var(--hero-stage-y));
  transform-origin: 72% 36%;
}
.hero-rings .ring {
  position: absolute; top: 36%; left: 72%; transform: translate(-50%,-50%);
  border-radius: 50%; border: 1px solid rgba(183,216,201,0.05);
}
.hero-rings .ring--hero-sm { width: 460px; height: 460px; }
.hero-rings .ring--hero-md { width: 720px; height: 720px; }
.hero-rings .ring--hero-lg { width: 1040px; height: 1040px; }

/* Stage: ink-warm dark base, with a subtle teal wash on the right where
   the pit lives, and a heavy left-side mask so the hero text sits on a
   clean dark stage with the pit balanced to the right of the viewport. */
.hero-overlay {
  position: absolute; inset: 0; pointer-events: none;
  background:
    radial-gradient(ellipse at 78% 30%, rgba(26,95,82,0.18) 0%, transparent 58%),
    linear-gradient(to right,
      rgba(15,28,26,0.85) 0%,
      rgba(15,28,26,0.55) 18%,
      rgba(15,28,26,0.10) 38%,
      rgba(15,28,26,0.00) 55%
    ),
    linear-gradient(to bottom,
      rgba(15,28,26,0.30) 0%,
      rgba(15,28,26,0.05) 22%,
      rgba(15,28,26,0.05) 42%,
      rgba(15,28,26,0.50) 54%,
      rgba(15,28,26,0.92) 64%,
      rgba(15,28,26,1.00) 78%,
      rgba(15,28,26,1.00) 100%
    );
}
.hero-vignette {
  position: absolute; inset: 0; pointer-events: none;
  box-shadow: inset 0 0 240px 60px rgba(15,28,26,0.55);
}
.amber-blob {
  position: absolute; bottom: -160px; right: -110px;
  width: 380px; height: 380px;
  border-radius: 50%;
  background: var(--amber); opacity: 0.07;
  pointer-events: none;
}

@media (min-width: 901px) {
  .hero-rings {
    animation: hero-ring-drift 42s linear infinite;
  }
  .hero-rings .ring--hero-md {
    animation: hero-ring-breathe 16s ease-in-out infinite;
  }
  .hero-rings .ring--hero-lg {
    animation: hero-ring-breathe 22s ease-in-out infinite reverse;
  }
  .amber-blob {
    animation: hero-amber-breathe 18s ease-in-out infinite;
  }
}

@keyframes hero-ring-drift {
  from { transform: translateY(var(--hero-stage-y)) rotate(0deg); }
  to   { transform: translateY(var(--hero-stage-y)) rotate(360deg); }
}

@keyframes hero-amber-breathe {
  0%, 100% {
    transform: translate3d(0, 0, 0) scale(1);
    opacity: 0.065;
  }
  50% {
    transform: translate3d(-14px, -10px, 0) scale(1.08);
    opacity: 0.095;
  }
}

@keyframes hero-ring-breathe {
  0%, 100% {
    transform: translate(-50%,-50%) scale(1);
    border-color: rgba(183,216,201,0.045);
  }
  50% {
    transform: translate(-50%,-50%) scale(1.018);
    border-color: rgba(183,216,201,0.075);
  }
}

/* Hero loader */
.hero-loader {
  position: absolute; inset: 0; z-index: 6;
  background:
    linear-gradient(rgba(15,46,41,0.92), rgba(15,46,41,0.92)),
    repeating-linear-gradient(0deg, rgba(183,216,201,0.06) 0 1px, transparent 1px 36px),
    repeating-linear-gradient(90deg, rgba(183,216,201,0.06) 0 1px, transparent 1px 36px),
    var(--teal-deep);
  display: flex; flex-direction: column;
  align-items: center; justify-content: center;
  gap: 16px;
  transition: opacity 0.55s ease;
  pointer-events: none;
}
.hero-loader.hidden { opacity: 0; }
.hero-loader-eyebrow {
  font-size: 10.5px; font-weight: 700;
  letter-spacing: 0.28em; text-transform: uppercase;
  color: var(--teal-mid);
  display: inline-flex; align-items: center; gap: 12px;
}
.hero-loader-eyebrow::before, .hero-loader-eyebrow::after {
  content: ''; width: 22px; height: 1px;
  background: var(--teal-mid); opacity: 0.5;
}
.hero-loader-bar {
  width: min(280px, 60%); height: 2px;
  background: rgba(183,216,201,0.12);
  border-radius: 2px; overflow: hidden;
}
.hero-loader-bar > span {
  display: block; height: 100%; width: 0%;
  background: linear-gradient(90deg, var(--teal-mid), #fff, var(--teal-mid));
  background-size: 200% 100%;
  animation: bar-shimmer 2.4s linear infinite;
  transition: width 0.18s ease;
  box-shadow: 0 0 8px var(--teal-mid);
}
@keyframes bar-shimmer { from { background-position: 0% 0%; } to { background-position: 200% 0%; } }
.hero-loader-pct {
  font-size: 11px; font-weight: 600;
  color: rgba(212,226,220,0.72);
  letter-spacing: 0.06em;
  font-variant-numeric: tabular-nums;
}

/* Hero content, pulled upward to sit closer to the sticky nav. */
.hero-content {
  position: absolute; top: 36%; left: 0; right: 0;
  transform: translateY(-50%);
  padding: 0 var(--gutter);
  z-index: 4;
}
/* Cap the text column because AOC cards are world-projected. */
.hero-text { max-width: min(720px, calc(66vw - 60px)); }
.hero-eyebrow {
  font-size: 13.5px; font-weight: 600;
  letter-spacing: 0.02em; text-transform: none;
  color: var(--teal-mid);
  margin-bottom: 18px;
  display: inline-flex; align-items: center; gap: 12px;
}
.hero-eyebrow::before {
  content: ''; width: 32px; height: 1px;
  background: var(--teal-mid); opacity: 0.55;
}
.hero-h1 {
  font-size: clamp(40px, 4.6vw, 64px);
  font-weight: 700; color: #fff;
  line-height: 1.04;
  letter-spacing: -0.8px;
  margin-bottom: 22px;
  hyphens: none;
}
.hero-h1 em,
.hero-h1 .hero-accent {
  font-style: normal;
  color: var(--teal-mid);
  font-weight: 700;
}
.hero-sub {
  font-size: 17.5px; font-weight: 500;
  color: rgba(231,239,234,0.92);
  line-height: 1.55;
  margin-bottom: 30px;
  letter-spacing: 0.005em;
  max-width: 540px;
}
.hero-ctas {
  display: flex; gap: 12px;
  align-items: center; flex-wrap: wrap;
}
.hero-secondary-link span {
  display: inline-block;
  margin-left: 3px;
}

/* Soft fade from hero (dark ink) into the canvas body section. */
.hero::after {
  content: '';
  position: absolute; left: 0; right: 0; bottom: -1px;
  height: 96px;
  background: linear-gradient(to bottom, transparent 0%, var(--canvas) 100%);
  pointer-events: none;
  z-index: 6;
}

/* Hero AOC overlay cards · positioned per-frame from world-space anchors */
.aoc-cards {
  position: absolute; inset: 0; pointer-events: none; z-index: 5;
  transform: translateY(var(--hero-stage-y));
}
.aoc-card {
  position: absolute; top: 0; left: 0;
  pointer-events: auto;
  width: 240px; opacity: 0;
  transition: opacity 0.45s ease;
  will-change: transform, opacity;
}
.aoc-card.visible { opacity: 1; }
.aoc-card.behind { opacity: 0; pointer-events: none; }
.hero.hero--cards-scrolled .aoc-card,
.aoc-card.aoc-card--muted {
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.9s ease;
}
.hero.hero--cards-scrolled .aoc-card .aoc-card-inner,
.hero.hero--cards-scrolled .aoc-card .aoc-pin,
.aoc-card.aoc-card--muted .aoc-card-inner,
.aoc-card.aoc-card--muted .aoc-pin {
  pointer-events: none;
}
.aoc-card-inner {
  background: rgba(15,28,26,0.92);
  border-radius: 7px;
  padding: 11px 13px;
  backdrop-filter: blur(4px);
  transition: transform 0.18s, box-shadow 0.18s;
}
.aoc-card:hover .aoc-card-inner {
  transform: translateY(-2px);
  box-shadow: var(--shadow-elev);
}
.aoc-card-inner.critical { border: 1.5px solid var(--sev-critical); }
.aoc-card-inner.elevated { border: 1.5px solid var(--sev-elevated); }
@keyframes pulse { 0%,100%{opacity:1} 50%{opacity:0.4} }
.aoc-loc { font-size: 12px; font-weight: 600; color: #e8f0ec; margin-bottom: 5px; }
.aoc-summary {
  font-size: 10.5px; color: rgba(200,215,205,0.82);
  line-height: 1.5; margin-bottom: 9px;
}
.aoc-actions { display: flex; gap: 6px; }
.aoc-btn {
  font-size: 9.5px; font-weight: 700;
  padding: 4px 9px;
  border-radius: 4px;
  font-family: var(--font);
  border: 1px solid transparent;
  letter-spacing: 0.02em;
  transition: all 0.12s;
}
.aoc-btn.view { background: rgba(193,74,43,0.22); color: #e88a6a; border-color: rgba(193,74,43,0.45); }
.aoc-btn.elevated { background: rgba(217,138,28,0.22); color: #e8b56a; border-color: rgba(217,138,28,0.45); }
.aoc-btn.raise { background: rgba(26,95,82,0.28); color: var(--teal-mid); border-color: rgba(26,95,82,0.45); }

/* Pin sitting on the wall at the projected anchor point. */
.aoc-pin {
  position: absolute; top: 0; left: 0;
  width: 22px; height: 22px;
  border-radius: 50%;
  border: 2px solid var(--sev-critical);
  background: rgba(15,28,26,0.55);
  transform: translate(-50%, -50%);
  pointer-events: none;
}
.aoc-pin::after {
  content: ''; position: absolute;
  inset: 4px; border-radius: 50%;
  background: var(--sev-critical);
  box-shadow: 0 0 10px var(--sev-critical);
  animation: pulse 1.6s infinite;
}
.aoc-pin::before {
  content: ''; position: absolute;
  inset: -9px; border-radius: 50%;
  border: 1px solid var(--sev-critical);
  opacity: 0;
  animation: target-pulse 2.2s ease-out infinite;
}
.aoc-pin.elevated { border-color: var(--sev-elevated); }
.aoc-pin.elevated::after { background: var(--sev-elevated); box-shadow: 0 0 8px var(--sev-elevated); }
.aoc-pin.elevated::before { border-color: var(--sev-elevated); }
@keyframes target-pulse {
  0%   { transform: scale(0.5); opacity: 0.7; }
  100% { transform: scale(1.8); opacity: 0; }
}

/* Leader line SVG kept in markup for JS measurement but not shown. */
.aoc-leader { display: none; }

/* Hero fallback when pit_mesh fetch fails */
.hero-fallback-note {
  position: absolute; bottom: 18px; right: 24px;
  font-size: 10.5px; color: rgba(212,226,220,0.6);
  background: rgba(15,28,26,0.7);
  padding: 6px 10px; border-radius: var(--r-sm);
  letter-spacing: 0.01em;
  display: none;
}
.hero.fallback .hero-fallback-note { display: block; }
.hero.fallback #pit-canvas { display: none; }
.hero.fallback {
  background: var(--teal-deep) url('../../assets/pit-sample-1.jpg') center/cover;
}

/* ── What it is ────────────────────────────────────────────────────── */
.what-it-is-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr);
  gap: 64px;
  align-items: center;
}
.what-it-is {
  position: relative;
  isolation: isolate;
}
.what-it-is-grid {
  position: relative;
  z-index: 1;
}
.what-it-is::before,
.what-it-is::after {
  content: '';
  position: absolute;
  border-radius: 50%;
  background: var(--teal);
  pointer-events: none;
  z-index: 0;
}
.what-it-is::before {
  top: -64px;
  right: clamp(180px, 26vw, 320px);
  width: 280px;
  height: 280px;
  opacity: 0.055;
}
.what-it-is::after {
  top: 72px;
  right: clamp(110px, 18vw, 210px);
  width: 110px;
  height: 110px;
  opacity: 0.04;
}
@media (max-width: 980px) {
  .what-it-is-grid { grid-template-columns: 1fr; gap: 40px; align-items: start; }
  .what-it-is::before,
  .what-it-is::after {
    display: none;
  }
}

.what-it-is .lead {
  font-size: 17px;
  font-weight: 500;
  line-height: 1.5;
  color: var(--accent-dark);
  letter-spacing: 0;
  margin-top: 2px;
  margin-bottom: 20px;
}
.what-it-is .lead em { font-style: normal; color: inherit; font-weight: inherit; }
.what-it-is .body {
  font-size: 15.5px; color: var(--text);
  line-height: 1.68;
  margin-bottom: 16px;
}
.what-it-is .body em { font-style: normal; color: var(--accent); font-weight: 600; }
.what-it-is .body:last-child { margin-bottom: 0; }

/* Geotech Assist stack diagram */
.gtx-stack {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  gap: 0;
  max-width: 440px;
  margin-left: auto;
  margin-right: 0;
  width: 100%;
}
@media (max-width: 980px) {
  .gtx-stack { margin-left: 0; max-width: 520px; }
}

/* Tab toggle */
.gtx-tabs {
  display: flex;
  gap: 3px;
  background: var(--border);
  border-radius: 999px;
  padding: 3px;
  width: fit-content;
  margin: 0 auto 16px;
}
.gtx-tab {
  font-family: var(--font);
  font-size: 11.5px; font-weight: 600;
  letter-spacing: 0.01em;
  padding: 5px 15px;
  border-radius: 999px;
  border: none;
  background: transparent;
  color: var(--text);
  cursor: pointer;
  transition: background 0.15s ease, color 0.15s ease, box-shadow 0.15s ease;
}
.gtx-tab.gtx-tab--active {
  background: var(--card);
  color: var(--accent);
  box-shadow: 0 1px 4px rgba(16,35,31,0.10);
}

/* Diagram wrappers */
.gtx-diagram {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  gap: 0;
}
.gtx-diagram[hidden] { display: none; }

/* Base card, centred column layout */
.gtx-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 10px;
  box-shadow: var(--shadow-card);
  padding: 16px 16px 14px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 5px;
}
.gtx-ico {
  flex: 0 0 auto;
  width: 32px; height: 32px;
  border-radius: 8px;
  background: var(--teal-light);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 2px;
}
.gtx-lbl {
  font-size: 13.5px; font-weight: 600;
  color: var(--text-strong); letter-spacing: 0;
}
.gtx-sub {
  font-size: 11.5px; font-weight: 500;
  color: var(--ink-soft); line-height: 1.45;
}
.gtx-lbl--muted { color: var(--text); }

.gtx-arrow {
  display: flex;
  justify-content: center;
  padding: 3px 0;
}
.gtx-arrow--scatter { padding: 5px 0; }

/* Platform card */
.gtx-card--platform {
  flex-direction: column;
  align-items: center;
  gap: 10px;
  background: var(--accent-soft);
  border-color: rgba(23,96,82,0.28);
  padding: 14px;
  text-align: center;
}
.gtx-card-head {
  display: flex; align-items: center;
  justify-content: center;
  gap: 10px;
}
.gtx-card-head .gtx-ico { margin-bottom: 0; }

/* AI agent row inside platform */
.gtx-ai-row {
  display: flex;
  align-items: center;
  gap: 10px;
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 9px 12px;
  width: 100%;
  text-align: left;
}
.gtx-ai-ico {
  flex: 0 0 auto;
  width: 26px; height: 26px;
  border-radius: 6px;
  background: var(--teal-light);
  display: inline-flex;
  align-items: center;
  justify-content: center;
}
.gtx-ai-lbl {
  font-size: 12px; font-weight: 600;
  color: var(--text-strong); line-height: 1.2;
}
.gtx-ai-sub {
  font-size: 10.5px; font-weight: 500;
  color: var(--ink-soft); line-height: 1.35;
  margin-top: 1px;
}

.gtx-platform-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 7px;
  width: 100%;
}
.gtx-sub-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 6px;
  padding: 8px 8px 9px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 2px;
}
.gtx-sub-lbl {
  font-size: 11px; font-weight: 600;
  color: var(--accent); letter-spacing: 0.01em;
  line-height: 1.2;
}
.gtx-sub-meta {
  font-size: 9.5px; font-weight: 500;
  color: var(--ink-soft);
  line-height: 1.35;
}
@media (max-width: 520px) {
  .gtx-platform-grid { grid-template-columns: 1fr; }
}

/* Input data card */
.gtx-card--data {
  flex-direction: column;
  align-items: center;
  gap: 10px;
  text-align: center;
}
.gtx-chips {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 5px 6px;
}
.gtx-chips span {
  font-size: 10.5px; font-weight: 500;
  color: var(--text);
  background: var(--teal-light);
  border-radius: 999px;
  padding: 3px 9px;
  white-space: nowrap;
  line-height: 1.4;
}

/* Friction strip between engineer and platforms */
.gtx-friction-strip {
  display: flex;
  justify-content: center;
  gap: 6px;
  flex-wrap: wrap;
  padding: 6px 0 2px;
}
.gtx-friction-pill {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  font-size: 10px; font-weight: 600;
  letter-spacing: 0.02em;
  color: #7A4A2A;
  background: #F5EAE0;
  border: 1px solid #E2C9B5;
  border-radius: 999px;
  padding: 3px 9px 3px 7px;
  white-space: nowrap;
}

/* Friction tags on individual platform boxes */
.gtx-frag-tag {
  display: block;
  font-size: 8.5px; font-weight: 600;
  letter-spacing: 0.02em;
  color: #8A5A3A;
  margin-top: 3px;
  line-height: 1;
}

/* Current way, fragmented platforms */
.gtx-card--fragmented {
  flex-direction: column;
  align-items: center;
  gap: 10px;
  background: #F3F4F3;
  border-color: #D0D7D0;
  text-align: center;
}
.gtx-ico--muted {
  background: #E4E8E4;
}
.gtx-frag-note {
  font-size: 10.5px; font-weight: 500;
  color: var(--ink-soft);
  line-height: 1.4;
  width: 100%;
}
.gtx-frag-sources {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 5px;
  width: 100%;
}
.gtx-frag-source {
  background: var(--card);
  border: 1px solid #D0D7D0;
  border-radius: 6px;
  padding: 6px 5px;
  font-size: 9.5px; font-weight: 500;
  color: var(--text);
  text-align: center;
  line-height: 1.3;
}
@media (max-width: 520px) {
  .gtx-frag-sources { grid-template-columns: repeat(2, 1fr); }
}

.gtx-mobile-diagram {
  display: none;
}

.gtx-mobile-step,
.gtx-mobile-inputs {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 10px;
  box-shadow: var(--shadow-card);
}

.gtx-mobile-step {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 15px;
  text-align: left;
}

.gtx-mobile-step .gtx-ico {
  margin-bottom: 0;
}

.gtx-mobile-step--platform {
  background: var(--accent-soft);
  border-color: rgba(23,96,82,0.28);
}

.gtx-mobile-connector {
  width: 1px;
  height: 20px;
  margin: 0 auto;
  background: rgba(26,95,82,0.34);
}

.gtx-mobile-inputs {
  padding: 0;
  overflow: hidden;
}

.gtx-mobile-inputs summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  padding: 14px 15px;
  cursor: pointer;
  list-style: none;
  color: var(--text-strong);
  font-size: 13px;
  font-weight: 600;
}

.gtx-mobile-inputs summary::-webkit-details-marker {
  display: none;
}

.gtx-mobile-inputs summary::after {
  content: '+';
  flex: 0 0 auto;
  color: var(--accent);
  font-size: 18px;
  font-weight: 500;
  line-height: 1;
}

.gtx-mobile-inputs[open] summary::after {
  content: '-';
}

.gtx-mobile-summary-note {
  margin-left: auto;
  color: var(--ink-ghost);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.gtx-mobile-inputs .gtx-chips {
  justify-content: flex-start;
  padding: 0 15px 15px;
}

/* ── Outcomes strip ───────────────────────────────────────────────── */
.outcomes .section {
  padding-top: var(--sp-8);
  padding-bottom: var(--sp-8);
  container-type: inline-size;
  container-name: outcomes;
}
.outcomes-intro {
  max-width: 800px;
  margin-bottom: 44px;
}
.outcomes-intro .section-title {
  max-width: 780px;
}
.outcomes-intro .section-sub {
  max-width: 760px;
  margin-bottom: 0;
}
.outcomes-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  align-items: stretch;
}
.outcomes .outcomes-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}
.outcome {
  position: relative;
  display: flex;
  flex-direction: column;
  height: 100%;
  padding: 24px 22px 22px;
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  box-shadow: var(--shadow-card);
  transition: border-color 0.2s ease, box-shadow 0.2s ease, transform 0.2s ease;
}
.outcome:hover {
  border-color: rgba(183,216,201,0.9);
  box-shadow: 0 6px 22px rgba(16,35,31,0.07);
  transform: translateY(-1px);
}
.outcome-num {
  font-size: 10.5px; font-weight: 700;
  letter-spacing: 0.22em; text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 16px;
  display: inline-flex; align-items: center; gap: 10px;
}
.outcome-num::after {
  content: ''; width: 28px; height: 1px;
  background: var(--accent); opacity: 0.4;
}
.outcome-h {
  font-size: 21px; font-weight: 600;
  color: var(--text-strong);
  line-height: 1.3;
  margin: 0 0 10px;
  letter-spacing: 0;
}
.outcome-p {
  font-size: 13.5px;
  color: var(--text);
  line-height: 1.6;
  margin: 0;
}

/* Outcome toggle — desktop: non-interactive, content always visible */
.outcome-toggle {
  display: block;
  width: 100%;
  text-align: left;
  cursor: default;
  color: inherit;
}
.outcome-toggle-icon { display: none; }
.outcome-panel { display: block; }

@media (max-width: 980px) {
  .outcomes .outcomes-grid {
    grid-template-columns: minmax(0, 1fr);
    gap: 28px;
  }
  .outcomes-intro { margin-bottom: 34px; }
}
@media (min-width: 981px) {
  .outcomes .outcomes-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 20px;
  }
}
@container outcomes (max-width: 720px) {
  .outcomes .outcomes-grid {
    grid-template-columns: minmax(0, 1fr);
    gap: 28px;
  }
}

/* ── Connect / Detect / Decide ─────────────────────────────────────── */
.cdd-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  position: relative;
  border-top: 1px solid var(--border);
  padding-top: 32px;
}
.cdd-card {
  background: rgba(255,255,255,0.62);
  border: 1px solid var(--border);
  border-radius: var(--r-md);
  padding: 22px;
  position: relative;
  box-shadow: 0 2px 12px rgba(16,35,31,0.035);
  transition: border-color 0.18s ease, box-shadow 0.18s ease, transform 0.18s ease;
}
.cdd-toggle {
  display: block;
  width: 100%;
  text-align: left;
  color: inherit;
  cursor: default;
}
.cdd-toggle-icon {
  display: none;
}
.cdd-panel {
  display: block;
}
.cdd-card:hover {
  border-color: rgba(183,216,201,0.95);
  box-shadow: 0 8px 24px rgba(16,35,31,0.06);
  transform: translateY(-1px);
}
.cdd-card:last-child {
  padding: 22px;
}
.cdd-num {
  font-size: 10.5px; font-weight: 700;
  letter-spacing: 0.18em; text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 16px;
  display: flex; align-items: center; gap: 0;
}
.cdd-step-line {
  display: block;
  width: 28px; height: 1px;
  background: var(--accent);
  margin-right: 12px;
  flex-shrink: 0;
  transition: width 0.24s ease, opacity 0.24s ease;
}
.cdd-card:hover .cdd-step-line {
  width: 42px;
  opacity: 0.82;
}
.cdd-title {
  display: block;
  font-size: 18px; font-weight: 600;
  color: var(--text-strong);
  margin-bottom: 10px;
  letter-spacing: 0;
  line-height: 1.25;
}
.cdd-desc {
  font-size: 13.5px;
  color: var(--text);
  line-height: 1.58;
  margin-bottom: 16px;
}
.cdd-desc:last-child { margin-bottom: 0; }
.cdd-desc em {
  font-style: normal;
  color: var(--accent);
  font-weight: 600;
}
.cdd-list {
  list-style: none; padding: 0; margin: 0;
  display: flex; flex-direction: column; gap: 7px;
}
.cdd-list li {
  font-size: 12.5px;
  color: var(--text);
  padding-left: 18px;
  position: relative;
  line-height: 1.5;
}
.cdd-list li::before {
  content: ''; position: absolute;
  left: 0; top: 8px;
  width: 9px; height: 1px;
  background: var(--accent);
}

/* ── Dark variant of .band (used by #how) ─────────────────────────── */
.band.dark {
  background: var(--teal-dark);
  border-top-color: rgba(255, 255, 255, 0.06);
  border-bottom-color: rgba(255, 255, 255, 0.06);
}
.band.dark::before { background: var(--teal-mid); opacity: 0.06; }
.band.dark::after  { background: var(--teal-mid); opacity: 0.04; }

.band.dark .section-eyebrow { color: var(--teal-mid); }
.band.dark .section-title   { color: #fff; }
.band.dark .section-title .title-accent { color: var(--teal-mid); }
.band.dark .section-sub     { color: rgba(255, 255, 255, 0.78); }

.band.dark .cdd-grid { border-top-color: rgba(255, 255, 255, 0.12); }
.band.dark .cdd-card {
  background: rgba(255, 255, 255, 0.07);
  border-color: rgba(183, 216, 201, 0.20);
  box-shadow: none;
}
.band.dark .cdd-card:hover {
  background: rgba(255, 255, 255, 0.10);
  border-color: rgba(183, 216, 201, 0.50);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.22);
}
.band.dark .cdd-num       { color: var(--teal-mid); }
.band.dark .cdd-step-line { background: var(--teal-mid); }
.band.dark .cdd-title     { color: #fff; }
.band.dark .cdd-desc      { color: rgba(255, 255, 255, 0.82); }
.band.dark .cdd-desc em   { color: var(--teal-mid); }
.band.dark .cdd-list li   { color: rgba(255, 255, 255, 0.82); }
.band.dark .cdd-list li::before { background: var(--teal-mid); }

/* ── Tinted variant of .band (faint teal wash for what-it-is) ───── */
.band.tint {
  background: var(--accent-soft);
}
.band.tint::before { background: var(--teal); opacity: 0.05; }
.band.tint::after  { background: var(--teal); opacity: 0.035; }

@media (max-width: 900px) {
  .hero {
    height: auto;
    min-height: 580px;
    --hero-stage-y: -18px;
  }
  .hero-content {
    position: absolute;
    top: auto; bottom: 0;
    transform: none;
    padding: 0 var(--gutter-mobile) 40px;
  }
  .hero-h1 { font-size: clamp(32px, 7vw, 44px); }
  .hero-sub { font-size: 15px; }
  .aoc-cards { display: none; }
  .cdd-grid { grid-template-columns: 1fr; gap: 12px; }
  .cdd-card,
  .cdd-card:last-child { padding: 20px; }
}

@media (max-width: 700px) {
  .band::before,
  .band::after {
    display: none;
  }

  .section {
    padding: 56px var(--gutter-mobile);
  }

  .section-title,
  .workflow-intro .section-title,
  .workflow-narrative .section-title {
    font-size: clamp(24px, 7vw, 30px);
    line-height: 1.18;
    letter-spacing: -0.25px;
  }

  .section-sub,
  .workflow-intro .section-sub,
  .workflow-narrative .section-sub {
    font-size: 14px;
    line-height: 1.72;
    margin-bottom: 32px;
  }

  .hero {
    min-height: 560px;
  }

  .hero-content {
    padding: 0 var(--gutter-mobile) 34px;
  }

  .hero-eyebrow {
    margin-bottom: 14px;
    font-size: 12.5px;
  }

  .hero-h1 {
    font-size: clamp(29px, 9vw, 36px);
    line-height: 1.08;
    margin-bottom: 18px;
    letter-spacing: -0.45px;
  }

  .hero-sub {
    font-size: 14.5px;
    line-height: 1.65;
    margin-bottom: 24px;
  }

  .hero-ctas {
    flex-direction: column;
    align-items: stretch;
    gap: 11px;
  }

  .hero-ctas .btn-primary {
    width: 100%;
    justify-content: center;
  }

  .hero-secondary-link {
    align-self: center;
    border: 0;
    padding: 4px 0;
    color: rgba(212,226,220,0.86);
    background: transparent;
  }

  .hero-secondary-link:hover {
    transform: none;
    border-color: transparent;
  }

  .what-it-is-grid {
    gap: 28px;
  }

  .what-it-is .lead {
    font-size: 15px;
    line-height: 1.68;
    margin-bottom: 14px;
  }

  .what-it-is .body {
    font-size: 14px;
    line-height: 1.74;
    margin-bottom: 13px;
  }

  .gtx-stack {
    max-width: none;
  }

  .gtx-diagram {
    display: none;
  }

  .gtx-mobile-diagram {
    display: flex;
    flex-direction: column;
    align-items: stretch;
  }

  .cdd-grid {
    display: flex;
    gap: 14px;
    margin-right: calc(var(--gutter-mobile) * -1);
    padding: 18px var(--gutter-mobile) 8px 0;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    scroll-padding-left: 0;
    border-top: 1px solid var(--border);
  }

  .cdd-card,
  .cdd-card:last-child {
    flex: 0 0 min(82vw, 330px);
    min-height: 178px;
    padding: 18px;
    scroll-snap-align: start;
  }

  .cdd-card:hover {
    transform: none;
    box-shadow: 0 2px 12px rgba(16,35,31,0.035);
  }

  .cdd-toggle {
    position: relative;
    min-height: 112px;
    cursor: pointer;
  }

  .cdd-num {
    margin-bottom: 14px;
  }

  .cdd-title {
    display: block;
    padding-right: 34px;
    font-size: 17px;
  }

  .cdd-toggle-icon {
    position: absolute;
    right: 0;
    bottom: 2px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 27px;
    height: 27px;
    border-radius: 999px;
    background: var(--teal-light);
    color: var(--accent);
  }

  .band.dark .cdd-toggle-icon {
    background: rgba(255, 255, 255, 0.10);
    color: #fff;
  }

  .cdd-toggle-icon::before,
  .cdd-toggle-icon::after {
    content: '';
    position: absolute;
    width: 11px;
    height: 1.5px;
    border-radius: 2px;
    background: currentColor;
  }

  .cdd-toggle-icon::after {
    transform: rotate(90deg);
  }

  .cdd-card.is-expanded .cdd-toggle-icon::after {
    transform: rotate(0deg);
  }

  .cdd-panel {
    display: grid;
    grid-template-rows: 0fr;
    transition: grid-template-rows 0.2s ease;
  }

  .cdd-panel > * {
    min-height: 0;
    overflow: hidden;
  }

  .cdd-card.is-expanded .cdd-panel {
    grid-template-rows: 1fr;
  }

  .cdd-desc {
    font-size: 13px;
    line-height: 1.65;
    margin-top: 14px;
    margin-bottom: 0;
  }

  /* ── Outcomes: horizontal scroll + expand (mirrors .cdd-grid pattern) ── */
  .outcomes-grid {
    display: flex;
    gap: 14px;
    margin-right: calc(var(--gutter-mobile) * -1);
    padding: 18px 0 8px 0;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    scroll-padding-left: 0;
    align-items: flex-start;
  }
  .outcome,
  .outcome:last-child {
    display: block;
    height: auto;
    flex: 0 0 min(80vw, 300px);
    scroll-snap-align: start;
    box-shadow: 0 4px 18px rgba(16,35,31,0.08), 0 1px 3px rgba(16,35,31,0.05);
    border-color: #C8D8D0;
  }
  .outcome:hover {
    transform: none;
  }
  .outcome-toggle {
    position: relative;
    min-height: 100px;
    cursor: pointer;
    padding-right: 34px;
  }
  .outcome-toggle-icon {
    position: absolute;
    right: 0;
    bottom: 2px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 27px;
    height: 27px;
    border-radius: 999px;
    background: var(--teal-light);
    color: var(--accent);
  }
  .outcome-toggle-icon::before,
  .outcome-toggle-icon::after {
    content: '';
    position: absolute;
    width: 11px;
    height: 1.5px;
    border-radius: 2px;
    background: currentColor;
  }
  .outcome-toggle-icon::after {
    transform: rotate(90deg);
  }
  .outcome.is-expanded .outcome-toggle-icon::after {
    transform: rotate(0deg);
  }
  .outcome-panel {
    overflow: hidden;
    max-height: 0;
    transition: max-height 0.25s ease;
  }
  .outcome.is-expanded .outcome-panel {
    max-height: 200px;
  }
  .outcome-p {
    margin-top: 14px;
  }

  /* Keep hidden attribute respected even when display:flex is set on the class */
  .gtx-mobile-diagram[hidden] { display: none; }

  /* ── Mobile diagram steps: slightly stronger border ── */
  .gtx-mobile-step,
  .gtx-mobile-inputs {
    border-color: #C8D8D0;
    box-shadow: 0 2px 10px rgba(16,35,31,0.06);
  }

}

/* ── Hero h1 at very narrow viewports ──────────────────────────────── */
@media (max-width: 420px) {
  .hero-h1 br { display: none; }
  .hero-h1 { font-size: clamp(26px, 8.5vw, 32px); }
}

/* ── Site context band ─────────────────────────────────────────────── */
.context-grid {
  display: grid;
  grid-template-columns: 1fr;
  max-width: 760px;
  gap: 24px;
}

.context-text .body {
  font-size: 15.5px;
  color: var(--text);
  line-height: 1.7;
  margin-bottom: 16px;
}
.context-text .body em { font-style: normal; color: var(--accent); font-weight: 700; }
.context-attached {
  display: flex; flex-direction: column; gap: 10px;
  margin-top: 22px;
}
.context-attached-row {
  display: flex; align-items: center; gap: 12px;
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--r-md);
  padding: 11px 14px;
}
.context-attached-row .ico {
  width: 28px; height: 28px;
  border-radius: 6px;
  background: var(--teal-light);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.context-attached-row .lbl {
  font-size: 12.5px; font-weight: 600;
  color: var(--text-strong);
}
.context-attached-row .meta {
  font-size: 11px; color: var(--text);
  margin-left: auto;
  font-weight: 500;
}

@media (max-width: 900px) {
  .context-grid { gap: 20px; }
}

/* ── BenchOps teaser card ──────────────────────────────────────────── */
.benchops-band {
  background: linear-gradient(180deg, var(--canvas) 0%, #f1f3ee 100%);
  border-top: 1px solid var(--border);
}
.benchops-teaser {
  background: linear-gradient(150deg, var(--amber-tint) 0%, var(--bg) 100%);
  border: 1px solid var(--amber-soft);
  border-radius: var(--r-xl);
  padding: 36px 36px 32px;
  position: relative; overflow: hidden;
}
.benchops-teaser::before {
  content: ''; position: absolute;
  top: -100px; right: -80px;
  width: 280px; height: 280px;
  border-radius: 50%;
  background: var(--amber);
  opacity: 0.10;
  pointer-events: none;
}
.benchops-teaser-eyebrow {
  font-size: 10px; font-weight: 700;
  letter-spacing: 0.23em; text-transform: uppercase;
  color: var(--amber-deep);
  margin-bottom: 12px;
}
.benchops-teaser-title {
  font-size: 26px; font-weight: 700;
  color: var(--text-strong);
  letter-spacing: 0;
  margin-bottom: 8px;
}
.benchops-teaser-sub {
  font-size: 14px; font-weight: 600;
  color: var(--text);
  margin-bottom: 14px;
}
.benchops-teaser-body {
  font-size: 13.5px; color: var(--text);
  line-height: 1.65;
  max-width: 640px;
  margin-bottom: 20px;
}
.benchops-pillars {
  display: grid; grid-template-columns: repeat(4, 1fr);
  gap: 10px; margin-bottom: 22px;
}
.benchops-pillar {
  background: var(--card);
  border: 1px solid var(--amber-soft);
  border-radius: var(--r-md);
  padding: 12px 14px;
}
.benchops-pillar .name {
  font-size: 10px; font-weight: 700;
  letter-spacing: 0.18em; text-transform: uppercase;
  color: var(--amber-deep);
  margin-bottom: 5px;
}
.benchops-pillar .what {
  font-size: 11.5px;
  color: var(--text);
  line-height: 1.45;
}
.benchops-teaser-cta {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 13px; font-weight: 700;
  color: var(--amber-deep);
  padding: 11px 20px;
  background: var(--card);
  border: 1.5px solid var(--amber);
  border-radius: var(--r-md);
  transition: all 0.14s;
}
.benchops-teaser-cta:hover { background: var(--amber); color: #fff; }
.benchops-teaser-cta::after { content: '→'; }

@media (max-width: 700px) {
  .benchops-pillars { grid-template-columns: 1fr 1fr; }
  .benchops-teaser { padding: 28px 22px 24px; }
}

/* ── Proof quote ───────────────────────────────────────────────────── */
.proof-section {
  background: var(--canvas);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  position: relative;
  overflow: hidden;
}
.proof-section::before {
  content: '';
  position: absolute; inset: 0;
  background-image: radial-gradient(rgba(26,95,82,0.05) 1px, transparent 1px);
  background-size: 26px 26px;
  pointer-events: none;
  opacity: 0.7;
}
.proof-section .section { position: relative; z-index: 1; }
.proof-quote {
  max-width: 760px;
  margin: 0 auto;
  text-align: center;
  font-size: 22px;
  color: var(--text);
  line-height: 1.45;
  font-weight: 500;
  letter-spacing: 0;
  opacity: 0.55;
  transition: opacity 0.9s ease, color 0.9s ease;
}
.proof-quote.in { opacity: 1; color: var(--text-strong); }
.proof-quote::before {
  content: '"';
  display: block;
  font-size: 88px; line-height: 0.7;
  color: var(--accent); opacity: 0.5;
  margin-bottom: 12px;
  font-family: var(--font);
  font-weight: 700;
  transition: transform 0.9s ease, opacity 0.9s ease;
  transform: translateY(8px);
}
.proof-quote.in::before { opacity: 0.7; transform: translateY(0); }
.proof-quote cite {
  display: block; margin-top: 22px;
  font-size: 12px; font-style: normal;
  color: var(--ink-soft); font-weight: 600;
  letter-spacing: 0.05em; text-transform: uppercase;
}
.proof-attrib-note {
  display: block; margin-top: 10px;
  font-size: 10px; font-weight: 500;
  letter-spacing: 0.18em; text-transform: uppercase;
  color: var(--ink-ghost);
}

/* ==========================================================================
   Combined workflow section: AOC → Hazard → Explore tablist + panels
   ========================================================================== */
#workflow .fade-up {
  opacity: 1;
  transform: none;
}
#workflow,
#workflow * {
  min-width: 0;
}
.workflow-shell {
  display: flex;
  flex-direction: column;
  gap: clamp(22px, 2.5vw, 34px);
}
.workflow-intro {
  margin-bottom: clamp(18px, 2.1vw, 28px);
  max-width: 760px;
}
.workflow-intro .section-eyebrow {
  margin-bottom: 10px;
}
.workflow-intro .section-title {
  margin-bottom: 12px;
  font-size: clamp(28px, 3vw, 38px);
}
.workflow-intro .section-sub {
  max-width: 680px;
  margin: 0;
}
.workflow-preview {
  min-width: 0;
}

/* Horizontal segmented tab strip */
.workflow-tablist {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 7px;
  padding: 6px;
  background: var(--canvas);
  border: 1px solid var(--canvas-rule);
  border-radius: 999px;
  width: min(100%, 730px);
  max-width: 100%;
  align-self: flex-start;
}
.workflow-tab {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  font-family: var(--font);
  font-size: 12.5px; font-weight: 600;
  letter-spacing: 0;
  text-align: center;
  min-height: 40px;
  padding: 8px 12px;
  border-radius: 999px;
  border: 0;
  background: transparent;
  color: var(--ink-soft);
  cursor: pointer;
  transition: background 0.18s ease, color 0.18s ease, box-shadow 0.18s ease;
}
.workflow-tab .tab-title {
  font-size: 12.5px;
  font-weight: 600;
  line-height: 1.2;
  color: inherit;
  letter-spacing: 0;
}
.workflow-tab .tab-num {
  display: inline-flex; align-items: center; justify-content: center;
  width: 22px; height: 22px;
  border-radius: 50%;
  background: rgba(15,28,26,0.08);
  color: var(--ink-soft);
  font-size: 10.5px; font-weight: 700;
  letter-spacing: 0;
  flex-shrink: 0;
  transition: background 0.18s ease, color 0.18s ease;
}
.workflow-tab[aria-selected="true"] {
  background: var(--accent);
  color: #fff;
  box-shadow: 0 8px 18px rgba(26,95,82,0.18);
}
.workflow-tab[aria-selected="true"] .tab-num {
  background: rgba(255,255,255,0.18);
  color: #fff;
}
.workflow-tab[aria-selected="true"] .tab-title {
  color: #fff;
}
.workflow-tab:hover:not([aria-selected="true"]) {
  color: var(--text-strong);
  background: rgba(255,255,255,0.7);
}
.workflow-tab:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 2px;
}
.workflow-arrow {
  display: none;
}

/* Per-panel narrative + mockup grid */
.workflow-panel-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.55fr) minmax(300px, 0.85fr);
  grid-template-areas: "mockup narrative";
  gap: clamp(34px, 4.2vw, 54px);
  align-items: start;
}
.workflow-panel-grid > .mockup {
  grid-area: mockup;
}
.workflow-narrative {
  grid-area: narrative;
  display: flex;
  flex-direction: column;
  gap: 14px;
  max-width: 420px;
  padding-top: 12px;
}
.workflow-narrative .section-eyebrow {
  margin-bottom: 0;
}
.workflow-narrative .section-title {
  margin: 0;
  font-size: clamp(23px, 2.1vw, 30px);
  line-height: 1.2;
}
.workflow-narrative .section-sub {
  margin: 0;
  font-size: 14px;
  line-height: 1.66;
  max-width: 400px;
}
.narrative-chips {
  margin-top: 10px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.narrative-chips-label {
  font-size: 9.5px; font-weight: 700;
  letter-spacing: 0.2em; text-transform: uppercase;
  color: var(--ink-soft);
}
.narrative-chip-row {
  display: flex; flex-wrap: wrap; gap: 6px;
}

/* Hidden legacy intro block (kept selector for safety) */
.workflow-panel-intro {
  display: none;
}
#workflow .aoc-explainer {
  display: none;
}

/* Panel cross-fade. Hidden panels stay in DOM but are display:none-equivalent. */
.workflow-panel { animation: workflow-fade-in 0.28s ease-out both; }
.workflow-panel[hidden] { display: none; }
@keyframes workflow-fade-in {
  from { opacity: 0; transform: translateY(8px) scale(0.99); }
  to   { opacity: 1; transform: translateY(0) scale(1); }
}
.workflow-panel.is-leaving {
  animation: workflow-fade-out 0.22s ease-in both;
}
@keyframes workflow-fade-out {
  from { opacity: 1; transform: translateY(0) scale(1); }
  to   { opacity: 0; transform: translateY(-6px) scale(0.995); }
}

@media (max-width: 980px) {
  .workflow-panel-grid {
    grid-template-columns: 1fr;
    grid-template-areas:
      "narrative"
      "mockup";
    gap: 28px;
  }
  .workflow-narrative {
    max-width: 720px;
    padding-top: 0;
  }
  .workflow-narrative .section-sub {
    max-width: 720px;
  }
}

@media (max-width: 700px) {
  .workflow-tablist {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 4px;
    padding: 4px;
    width: 100%;
    overflow-x: visible;
  }
  .workflow-tab {
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 8px 6px;
    font-size: 11.5px;
    gap: 5px;
  }
  .workflow-tab .tab-title { font-size: 10.5px; white-space: normal; line-height: 1.2; }
  .workflow-tab .tab-num { width: 20px; height: 20px; font-size: 10px; flex-shrink: 0; }
  #workflow .section-title,
  #workflow .section-sub {
    max-width: 100%;
    overflow-wrap: anywhere;
  }
  .workflow-arrow { font-size: 12px; }
}

/* Client logo band */
.client-band {
  position: relative;
  overflow: hidden;
  background: linear-gradient(180deg, #EEF4EF 0%, var(--canvas) 100%);
  border-top: 1px solid var(--canvas-rule);
  border-bottom: 1px solid var(--canvas-rule);
}
.client-band::before {
  content: '';
  position: absolute; inset: 0;
  background-image: radial-gradient(rgba(26,95,82,0.045) 1px, transparent 1px);
  background-size: 22px 22px;
  pointer-events: none;
}
.client-rings {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  pointer-events: none;
}
.client-rings div {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  border-radius: 50%;
  border: 1px solid rgba(26,95,82,0.09);
}
.client-rings div:nth-child(1) { width: 220px; height: 220px; }
.client-rings div:nth-child(2) { width: 360px; height: 360px; }
.client-rings div:nth-child(3) { width: 520px; height: 520px; }
.client-section {
  padding-top: 72px;
  padding-bottom: 72px;
}
.client-section .section-eyebrow {
  color: var(--accent);
}
.client-logo-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  max-width: 860px;
  margin: 30px auto 0;
}
.client-logo-card {
  min-height: 112px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px 28px;
  border: 1px solid rgba(26,95,82,0.14);
  border-radius: var(--r-md);
  background: rgba(255,255,255,0.72);
  box-shadow: 0 8px 24px rgba(16,35,31,0.045);
}
.client-logo-card img {
  width: min(210px, 100%);
  height: 58px;
  object-fit: contain;
  opacity: 0.92;
}
@media (min-width: 901px) {
  .client-logo-card img {
    filter: grayscale(1) saturate(0.75);
    transition: filter 0.24s ease, opacity 0.24s ease, transform 0.24s ease;
  }
  .client-logo-card:hover img {
    opacity: 1;
    filter: grayscale(0) saturate(1);
    transform: translateY(-1px);
  }
}

@media (prefers-reduced-motion: reduce) {
  .hero-rings,
  .hero-rings .ring,
  .amber-blob {
    animation: none;
  }
  .outcome,
  .cdd-card,
  .cdd-step-line,
  .workflow-panel,
  .workflow-panel.is-leaving,
  .client-logo-card img {
    transition-duration: 0.01ms;
    animation-duration: 0.01ms;
  }
}
@media (max-width: 720px) {
  .client-logo-grid { grid-template-columns: 1fr; }
  .client-logo-card { min-height: 92px; }
}

/* ── Sticky section bar responsive ──────────────────────────────────── */
@media (max-width: 1080px) {
  .ga-context-links {
    overflow-x: auto;
    white-space: nowrap;
  }
}
@media (max-width: 820px) {
  .ga-context-inner {
    padding: 8px var(--gutter-mobile);
    flex-wrap: wrap;
  }
  .ga-context-links {
    order: 3;
    width: 100%;
    margin-left: 0;
  }
}
@media (max-width: 560px) {
  .ga-context-inner { align-items: flex-start; }
  .ga-context-cta { margin-left: auto; }
}

/* ── Beyond monitoring · framing band ─────────────────────────────── */
.beyond-monitoring .section {
  padding-top: var(--sp-7);
  padding-bottom: var(--sp-7);
}
.beyond-monitoring-section {
  max-width: 880px;
  margin: 0 auto;
  text-align: center;
}
.beyond-monitoring .section-eyebrow {
  justify-content: center;
}
.beyond-monitoring .section-title {
  max-width: 820px;
  margin-left: auto;
  margin-right: auto;
}
.beyond-monitoring .section-sub {
  max-width: 760px;
  margin-left: auto;
  margin-right: auto;
}
@media (max-width: 720px) {
  .beyond-monitoring .section {
    padding-top: var(--sp-5);
    padding-bottom: var(--sp-5);
  }
}

/* ── Use cases · industries band ──────────────────────────────────── */
.use-cases .section {
  padding-top: var(--sp-8);
  padding-bottom: var(--sp-8);
}
.use-cases-intro {
  max-width: 760px;
  margin: 0 auto 44px;
  text-align: center;
}
.use-cases-intro .section-eyebrow { justify-content: center; }
.use-cases-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 22px;
  max-width: 880px;
  margin: 0 auto;
}
.use-case-card {
  position: relative;
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 18px;
  overflow: hidden;
  padding: 16px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(183, 216, 201, 0.22);
  border-radius: var(--r-lg);
  color: #fff;
  transition: border-color 0.2s ease, transform 0.2s ease, box-shadow 0.2s ease;
}
.use-case-card:hover {
  border-color: rgba(183, 216, 201, 0.55);
  transform: translateY(-2px);
  box-shadow: 0 14px 34px rgba(0, 0, 0, 0.28);
}
.use-case-photo {
  position: relative;
  flex: 0 0 auto;
  width: 120px;
  height: 120px;
  overflow: hidden;
  border-radius: 10px;
  background: #0F2E29;
}
.use-case-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.use-case-body {
  display: flex;
  flex-direction: column;
  justify-content: center;
  flex: 1 1 auto;
  min-width: 0;
}
.use-case-h {
  font-size: 22px;
  font-weight: 600;
  color: #fff;
  line-height: 1.3;
  margin: 0;
  letter-spacing: 0;
}
@media (max-width: 720px) {
  .use-cases-grid { grid-template-columns: minmax(0, 1fr); gap: 14px; }
  .use-case-photo { width: 88px; height: 88px; }
  .use-case-h { font-size: 19px; }
}
