/* =========================================================
   ContextECF — Landing Page
   "Runtime Escort" — shipment-tracking metaphor
   Builds on colors_and_type.css tokens
   ========================================================= */

* { box-sizing: border-box; }
html, body { margin: 0; padding: 0; }
body {
  background: var(--ica-bg);
  color: var(--ica-slate-900);
  font-family: var(--font-sans);
  font-feature-settings: "ss01", "cv11";
  overflow-x: hidden;
}
a { color: inherit; text-decoration: none; }
img, svg { display: block; max-width: 100%; }

/* ---------- Custom palette additions for this page ---------- */
:root {
  --escort-orange: #C0552F;     /* Slightly redder copper; reads as "transit/in motion" */
  --escort-orange-soft: #D97759;
  --escort-night: #0a1118;
  --escort-paper: #f6efe1;
  --escort-tape: repeating-linear-gradient(
    -45deg,
    #1a262f 0 12px,
    #1a262f 12px 14px,
    #B87A6B 14px 26px,
    #B87A6B 26px 28px
  );
}

/* ---------- Layout ---------- */
.wrap {
  max-width: 1320px;
  margin: 0 auto;
  padding: 0 clamp(20px, 4vw, 64px);
}

/* ---------- Top bar ---------- */
.nav {
  position: sticky; top: 0; z-index: 100;
  background: rgba(250, 250, 247, 0.88);
  -webkit-backdrop-filter: saturate(180%) blur(14px);
  backdrop-filter: saturate(180%) blur(14px);
  border-bottom: 1px solid var(--border-1);
}
.nav__inner {
  display: flex; align-items: center; justify-content: space-between;
  height: 72px; gap: 24px;
}
.brand { display: flex; align-items: center; gap: 14px; }
.brand__mark {
  width: 32px; height: 32px;
  background: var(--ica-slate-900);
  border-radius: 6px;
  display: grid; place-items: center;
  color: var(--escort-orange-soft);
  font-family: var(--font-mono);
  font-weight: 800;
  font-size: 15px;
}
.brand__name {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 17px;
  letter-spacing: -0.01em;
}
.brand__name em {
  font-style: normal; font-weight: 500;
  color: var(--ica-slate-600);
}
.nav__links { display: flex; gap: 32px; }
.nav__links a {
  font-size: 14px; font-weight: 500; color: var(--ica-slate-700);
  transition: color .15s ease;
}
.nav__links a:hover { color: var(--ica-slate-900); }
.nav__cta {
  display: inline-flex; align-items: center; gap: 10px;
  background: var(--ica-slate-900); color: white;
  padding: 11px 18px; border-radius: 8px;
  font-size: 13px; font-weight: 600;
  transition: background .15s ease, transform .15s ease;
}
.nav__cta:hover { background: var(--escort-orange); transform: translateY(-1px); }
@media (max-width: 880px) { .nav__links { display: none; } }

/* ============== HERO ============== */
.hero {
  position: relative;
  background: var(--escort-night);
  color: var(--escort-paper);
  padding: clamp(72px, 9vw, 140px) 0 clamp(80px, 10vw, 140px);
  overflow: hidden;
}
/* perimeter caution-tape strip */
.hero__tape {
  position: absolute; left: 0; right: 0; height: 14px;
  background: var(--escort-tape);
  opacity: .85;
}
.hero__tape--top { top: 0; }
.hero__tape--bot { bottom: 0; }

.hero__grid {
  position: absolute; inset: 14px;
  background-image:
    linear-gradient(rgba(255,255,255,0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.04) 1px, transparent 1px);
  background-size: 56px 56px;
  -webkit-mask-image: radial-gradient(1200px 700px at 80% 30%, #000 30%, transparent 75%);
  mask-image: radial-gradient(1200px 700px at 80% 30%, #000 30%, transparent 75%);
  pointer-events: none;
}
.hero__glow {
  position: absolute; inset: 0;
  background:
    radial-gradient(900px 480px at 86% 0%, rgba(217,119,89,0.18), transparent 70%),
    radial-gradient(700px 420px at 8% 100%, rgba(217,119,89,0.10), transparent 70%);
  pointer-events: none;
}

.hero__inner {
  position: relative;
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  gap: clamp(40px, 5vw, 80px);
  align-items: center;
}
@media (max-width: 1080px) { .hero__inner { grid-template-columns: 1fr; } }

.hero__eyebrow {
  display: inline-flex; align-items: center; gap: 10px;
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--escort-orange-soft);
  padding: 7px 14px;
  border: 1px solid rgba(217,119,89,0.4);
  background: rgba(217,119,89,0.08);
  border-radius: 999px;
}
.hero__eyebrow .pulse {
  width: 7px; height: 7px; border-radius: 50%;
  background: var(--escort-orange-soft);
  box-shadow: 0 0 0 0 rgba(217,119,89,0.7);
  animation: pulse 2s infinite;
}
@keyframes pulse {
  0%   { box-shadow: 0 0 0 0 rgba(217,119,89,0.7); }
  70%  { box-shadow: 0 0 0 10px rgba(217,119,89,0); }
  100% { box-shadow: 0 0 0 0 rgba(217,119,89,0); }
}

.hero__title {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(48px, 7.4vw, 108px);
  line-height: 0.95;
  letter-spacing: -0.04em;
  margin: 28px 0 0;
  text-wrap: balance;
}
.hero__title em {
  font-style: normal;
  display: block;
  color: var(--escort-orange-soft);
  position: relative;
}
.hero__title em::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -8px;
  width: 60%;
  height: 6px;
  background: repeating-linear-gradient(
    90deg,
    var(--escort-orange) 0 14px,
    transparent 14px 22px
  );
}
.hero__lede {
  margin-top: 36px;
  max-width: 56ch;
  font-size: clamp(17px, 1.45vw, 21px);
  line-height: 1.55;
  color: rgba(246,239,225,0.75);
  text-wrap: pretty;
}
.hero__lede strong { color: var(--escort-paper); font-weight: 600; }

.hero__cta {
  margin-top: 44px;
  display: flex; gap: 14px; flex-wrap: wrap;
}
.btn {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 16px 24px;
  border-radius: 8px;
  font-size: 15px; font-weight: 600; letter-spacing: 0.005em;
  transition: transform .15s ease, background .15s ease;
  cursor: pointer; border: none;
}
.btn--primary {
  background: var(--escort-orange); color: white;
}
.btn--primary:hover { background: var(--escort-orange-soft); transform: translateY(-1px); }
.btn--ghost {
  background: transparent; color: var(--escort-paper);
  border: 1px solid rgba(255,255,255,0.22);
}
.btn--ghost:hover { background: rgba(255,255,255,0.06); }
.btn--dark {
  background: var(--ica-slate-900); color: white;
}
.btn--dark:hover { background: var(--escort-orange); transform: translateY(-1px); }

/* ============== TRACKING TICKET (Hero visual) ============== */
.ticket {
  position: relative;
  background: var(--escort-paper);
  color: var(--ica-slate-900);
  border-radius: 16px;
  box-shadow:
    0 30px 80px rgba(0,0,0,0.5),
    0 4px 0 rgba(255,255,255,0.05) inset;
  transform: rotate(0.6deg);
  overflow: hidden;
}
.ticket::before, .ticket::after {
  content: "";
  position: absolute;
  width: 22px; height: 22px;
  border-radius: 50%;
  background: var(--escort-night);
  top: 50%; transform: translateY(-50%);
  z-index: 2;
}
.ticket::before { left: -11px; }
.ticket::after  { right: -11px; }

.ticket__top {
  background: var(--ica-slate-900);
  color: var(--escort-paper);
  padding: 16px 28px;
  display: flex; align-items: center; justify-content: space-between;
  gap: 16px;
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}
.ticket__top .org { color: var(--escort-orange-soft); font-weight: 700; }
.ticket__top .live {
  display: inline-flex; align-items: center; gap: 8px;
  color: #b7e7c2;
}
.ticket__top .live::before {
  content: ""; width: 7px; height: 7px; border-radius: 50%;
  background: #6dd084;
  box-shadow: 0 0 8px #6dd084;
  animation: pulse 1.6s infinite;
}

.ticket__id {
  padding: 20px 28px 4px;
  display: grid; grid-template-columns: 1fr auto; gap: 12px;
  align-items: end;
}
.ticket__id .label {
  font-family: var(--font-mono); font-size: 10px;
  letter-spacing: 0.18em; text-transform: uppercase;
  color: #6b6557;
}
.ticket__id .num {
  font-family: var(--font-mono);
  font-weight: 700;
  font-size: 22px;
  letter-spacing: -0.01em;
  margin-top: 2px;
}
.ticket__id .barcode {
  display: grid;
  grid-template-columns: repeat(30, 1fr);
  gap: 1px;
  width: 160px;
  height: 36px;
  align-self: end;
}
.ticket__id .barcode i {
  background: var(--ica-slate-900);
  height: 100%;
}
.ticket__id .barcode i:nth-child(3n)   { background: transparent; }
.ticket__id .barcode i:nth-child(7n)   { background: transparent; }
.ticket__id .barcode i:nth-child(13n)  { background: transparent; }
.ticket__id .barcode i:nth-child(5n+2) { width: 2px; }

.ticket__meta {
  padding: 8px 28px 16px;
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  border-bottom: 1px dashed rgba(26,38,47,0.18);
}
.ticket__meta .k {
  font-family: var(--font-mono); font-size: 10px;
  letter-spacing: 0.18em; text-transform: uppercase;
  color: #6b6557;
}
.ticket__meta .v {
  margin-top: 4px;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 14px;
  color: var(--ica-slate-900);
}

.ticket__scans {
  padding: 8px 28px 20px;
  display: flex; flex-direction: column;
}
.scan {
  display: grid;
  grid-template-columns: 22px 84px 1fr auto;
  gap: 14px;
  padding: 12px 0;
  align-items: center;
  border-bottom: 1px dashed rgba(26,38,47,0.12);
  position: relative;
}
.scan:last-child { border-bottom: 0; }

.scan__dot {
  width: 14px; height: 14px;
  border-radius: 50%;
  background: var(--ica-slate-900);
  position: relative;
}
.scan__dot.is-done {
  background: #4f7a5c;
  box-shadow: 0 0 0 2px rgba(79,122,92,0.18);
}
.scan__dot.is-now {
  background: var(--escort-orange);
  box-shadow: 0 0 0 4px rgba(192,85,47,0.22);
  animation: dotpulse 1.6s infinite;
}
@keyframes dotpulse {
  0%, 100% { box-shadow: 0 0 0 4px rgba(192,85,47,0.22); }
  50%      { box-shadow: 0 0 0 8px rgba(192,85,47,0.06); }
}
.scan__dot.is-deny { background: #a8443a; }
/* connector */
.scan::after {
  content: "";
  position: absolute;
  left: 6px; top: 24px; bottom: -2px;
  width: 2px;
  background: rgba(26,38,47,0.12);
}
.scan:last-child::after { display: none; }

.scan__time {
  font-family: var(--font-mono); font-size: 11px;
  color: #6b6557;
  letter-spacing: 0.04em;
}
.scan__event {
  font-family: var(--font-display);
  font-weight: 600; font-size: 14px;
  color: var(--ica-slate-900);
}
.scan__event small {
  display: block;
  margin-top: 2px;
  font-family: var(--font-sans); font-weight: 400;
  font-size: 12px;
  color: #6b6557;
}
.scan__stamp {
  font-family: var(--font-mono); font-size: 10px;
  letter-spacing: 0.14em; text-transform: uppercase;
  padding: 4px 8px; border-radius: 4px;
  background: rgba(26,38,47,0.06);
  color: #2a3940;
}
.scan__stamp.ok   { background: rgba(79,122,92,0.16); color: #2f5a3d; }
.scan__stamp.now  { background: rgba(192,85,47,0.18); color: var(--escort-orange); }
.scan__stamp.deny { background: rgba(168,68,58,0.16); color: #8a2f24; }
.scan__stamp.dim  { color: #8a8478; }

.ticket__foot {
  background: rgba(26,38,47,0.04);
  padding: 14px 28px;
  display: flex; justify-content: space-between; align-items: center;
  gap: 16px;
  font-family: var(--font-mono); font-size: 11px;
  color: #6b6557; letter-spacing: 0.1em;
  text-transform: uppercase;
}
.ticket__foot .stamp {
  border: 2px solid #6b6557;
  border-radius: 6px;
  padding: 4px 10px;
  font-weight: 700;
  letter-spacing: 0.18em;
  color: #2f5a3d;
  border-color: #2f5a3d;
  transform: rotate(-4deg);
}

/* Hero footer band — 4 metrics */
.hero__metrics {
  position: relative;
  margin-top: clamp(56px, 7vw, 100px);
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-top: 1px solid rgba(255,255,255,0.1);
  border-bottom: 1px solid rgba(255,255,255,0.1);
}
.hero__metrics > div {
  padding: 24px 28px;
  border-right: 1px solid rgba(255,255,255,0.08);
}
.hero__metrics > div:last-child { border-right: 0; }
.hero__metrics .k {
  font-family: var(--font-mono); font-size: 11px;
  letter-spacing: 0.14em; text-transform: uppercase;
  color: rgba(246,239,225,0.5);
}
.hero__metrics .v {
  margin-top: 8px;
  font-family: var(--font-display);
  font-weight: 800; font-size: 28px;
  letter-spacing: -0.02em;
  color: var(--escort-paper);
}
.hero__metrics .v em {
  font-style: normal; color: var(--escort-orange-soft);
}
@media (max-width: 760px) {
  .hero__metrics { grid-template-columns: repeat(2, 1fr); }
  .hero__metrics > div:nth-child(2) { border-right: 0; }
  .hero__metrics > div:nth-child(1),
  .hero__metrics > div:nth-child(2) { border-bottom: 1px solid rgba(255,255,255,0.08); }
}

/* ============== SECTION SCAFFOLD ============== */
.section { padding: clamp(80px, 10vw, 144px) 0; position: relative; }
.section--dark  { background: var(--escort-night); color: var(--escort-paper); }
.section--paper { background: var(--ica-copper-50); }
.section--sand  { background: #f0eadc; }
.section--white { background: #fbfaf6; }

.section__hd {
  display: grid; grid-template-columns: 260px 1fr;
  gap: 64px; align-items: start;
  margin-bottom: clamp(40px, 5vw, 72px);
}
@media (max-width: 880px) { .section__hd { grid-template-columns: 1fr; gap: 24px; } }

.section__hd .num {
  font-family: var(--font-mono); font-size: 12px;
  letter-spacing: 0.18em; text-transform: uppercase;
  color: var(--escort-orange);
  padding-top: 14px;
  border-top: 2px solid var(--escort-orange);
}
.section--dark .section__hd .num { color: var(--escort-orange-soft); border-top-color: var(--escort-orange-soft); }

.section__hd .num small {
  display: block;
  margin-top: 6px;
  color: rgba(26,38,47,0.5);
  font-size: 11px; letter-spacing: 0.12em;
}
.section--dark .section__hd .num small { color: rgba(246,239,225,0.45); }

.section__hd h2 {
  margin: 0 0 18px;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(36px, 4.6vw, 64px);
  line-height: 1.02;
  letter-spacing: -0.03em;
  text-wrap: balance;
  color: inherit;
}
.section__hd h2 em {
  font-style: normal; color: var(--escort-orange);
}
.section--dark .section__hd h2 em { color: var(--escort-orange-soft); }

.section__hd p {
  margin: 0; max-width: 56ch;
  font-size: clamp(17px, 1.35vw, 20px);
  line-height: 1.55;
  color: rgba(26,38,47,0.74);
  text-wrap: pretty;
}
.section--dark .section__hd p { color: rgba(246,239,225,0.78); }

/* ============== PROBLEM (untracked) ============== */
.problem {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  align-items: stretch;
  border: 1px solid rgba(26,38,47,0.1);
  border-radius: 18px;
  overflow: hidden;
  background: white;
  box-shadow: 0 30px 60px rgba(26,38,47,0.06);
}
.problem__col { padding: 40px 44px; }
.problem__col--bad {
  background: #1a262f;
  color: var(--escort-paper);
  position: relative;
}
.problem__col--bad::before {
  content: "";
  position: absolute; top: 0; left: 0; right: 0; height: 6px;
  background: repeating-linear-gradient(90deg, #a8443a 0 18px, transparent 18px 26px);
}
.problem__col--good {
  background: white;
  position: relative;
}
.problem__col--good::before {
  content: "";
  position: absolute; top: 0; left: 0; right: 0; height: 6px;
  background: repeating-linear-gradient(90deg, var(--escort-orange) 0 18px, transparent 18px 26px);
}
.problem__col h3 {
  margin: 14px 0 16px;
  font-family: var(--font-display);
  font-weight: 700; font-size: 28px;
  letter-spacing: -0.02em;
}
.problem__col p {
  font-size: 16px; line-height: 1.6; margin: 0 0 24px;
  color: rgba(255,255,255,0.78);
}
.problem__col--good p { color: rgba(26,38,47,0.72); }
.problem__col .tag {
  font-family: var(--font-mono); font-size: 11px;
  letter-spacing: 0.18em; text-transform: uppercase;
}
.problem__col--bad  .tag { color: #e29089; }
.problem__col--good .tag { color: var(--escort-orange); }
.problem__list {
  list-style: none; padding: 0; margin: 0;
  display: grid; gap: 12px;
}
.problem__list li {
  font-family: var(--font-mono); font-size: 13px;
  display: flex; align-items: baseline; gap: 12px;
  letter-spacing: 0.02em;
}
.problem__list li::before {
  content: "✕"; color: #d97766; font-weight: 700;
}
.problem__col--good .problem__list li::before {
  content: "✓"; color: var(--escort-orange);
}
@media (max-width: 880px) { .problem { grid-template-columns: 1fr; } }

/* ============== MAPPING TABLE (UPS <-> ContextECF) ============== */
.map {
  display: grid;
  grid-template-columns: 1fr 80px 1fr;
  gap: 0;
  background: white;
  border-radius: 18px;
  overflow: hidden;
  border: 1px solid rgba(26,38,47,0.1);
}
.map__head, .map__row { display: contents; }
.map__cell {
  padding: 22px 28px;
  border-bottom: 1px solid rgba(26,38,47,0.06);
  display: flex; align-items: center; gap: 14px;
}
.map__cell:nth-child(3n+1) { background: #fbfaf6; }
.map__cell:nth-child(3n+3) { background: white; }
.map__cell:nth-child(3n+2) {
  justify-content: center;
  background: var(--ica-slate-900);
  color: var(--escort-orange-soft);
  font-family: var(--font-mono);
  font-size: 18px;
  border-bottom: 1px solid rgba(255,255,255,0.06);
}
.map__head .map__cell {
  font-family: var(--font-mono); font-size: 11px;
  letter-spacing: 0.18em; text-transform: uppercase;
  color: rgba(26,38,47,0.5);
  padding: 18px 28px;
  background: #f0eadc !important;
  border-bottom: 1px solid rgba(26,38,47,0.1);
}
.map__head .map__cell:nth-child(2) {
  background: #2f3e47 !important;
  color: var(--escort-orange-soft);
}
.map__icon {
  width: 36px; height: 36px;
  flex: 0 0 36px;
  border-radius: 8px;
  display: grid; place-items: center;
}
.map__cell:nth-child(3n+1) .map__icon { background: rgba(192,85,47,0.1); color: var(--escort-orange); }
.map__cell:nth-child(3n+3) .map__icon { background: rgba(26,38,47,0.06); color: var(--ica-slate-900); }
.map__t {
  font-family: var(--font-display);
  font-weight: 700; font-size: 17px;
  letter-spacing: -0.01em;
  color: var(--ica-slate-900);
}
.map__t small {
  display: block;
  margin-top: 2px;
  font-family: var(--font-sans); font-weight: 400;
  font-size: 13px; letter-spacing: 0;
  color: rgba(26,38,47,0.6);
}
@media (max-width: 880px) {
  .map { grid-template-columns: 1fr; }
  .map__head .map__cell:nth-child(2),
  .map__cell:nth-child(3n+2) { display: none; }
}

/* ============== 3-LAYER ARCHITECTURE ============== */
.arch {
  display: grid;
  gap: 0;
  position: relative;
}
.arch__layer {
  position: relative;
  background: white;
  border: 1px solid rgba(26,38,47,0.1);
  border-radius: 16px;
  padding: 36px 40px;
  display: grid;
  grid-template-columns: 220px 1fr 1.2fr;
  gap: 40px;
  align-items: stretch;
  transition: transform .25s ease, border-color .25s ease, box-shadow .25s ease;
}
.arch__layer:hover {
  border-color: rgba(192,85,47,0.45);
  box-shadow: 0 24px 60px rgba(26,38,47,0.08);
}
/* Connector lines between layers */
.arch__rail {
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}
.arch__rail::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 2px;
  height: 32px;
  background: repeating-linear-gradient(180deg, var(--escort-orange) 0 6px, transparent 6px 10px);
}
.arch__rail span {
  position: relative;
  background: var(--ica-copper-50);
  padding: 4px 14px;
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--escort-orange);
  border: 1px solid rgba(192,85,47,0.3);
  border-radius: 999px;
  white-space: nowrap;
}

/* Layer 2 (control) is visually emphasized */
.arch__layer--control {
  background: linear-gradient(180deg, #fffaf2 0%, #fcf2e6 100%);
  border-color: rgba(192,85,47,0.4);
  box-shadow: 0 20px 50px rgba(192,85,47,0.06);
}
.arch__layer--core {
  background: var(--escort-night);
  color: var(--escort-paper);
  border-color: rgba(255,255,255,0.08);
}

.arch__lead {
  display: flex;
  flex-direction: column;
  gap: 14px;
  padding-right: 24px;
  border-right: 1px solid rgba(26,38,47,0.08);
}
.arch__layer--core .arch__lead { border-right-color: rgba(255,255,255,0.1); }

.arch__num {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--escort-orange);
  display: flex; align-items: center; gap: 10px;
}
.arch__num::before {
  content: "";
  display: block;
  width: 28px; height: 2px;
  background: var(--escort-orange);
}
.arch__layer--core .arch__num { color: var(--escort-orange-soft); }
.arch__layer--core .arch__num::before { background: var(--escort-orange-soft); }

.arch__name {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(28px, 3vw, 38px);
  letter-spacing: -0.025em;
  line-height: 1;
  color: var(--ica-slate-900);
}
.arch__layer--core .arch__name { color: var(--escort-paper); }
.arch__cisco {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(26,38,47,0.5);
  display: flex; align-items: center; gap: 8px;
  margin-top: 4px;
}
.arch__layer--core .arch__cisco { color: rgba(246,239,225,0.55); }
.arch__cisco::before {
  content: "≈"; font-size: 14px; color: var(--escort-orange);
}
.arch__layer--core .arch__cisco::before { color: var(--escort-orange-soft); }

.arch__body h4 {
  margin: 0 0 12px;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 19px;
  letter-spacing: -0.015em;
  color: var(--ica-slate-900);
}
.arch__layer--core .arch__body h4 { color: var(--escort-paper); }
.arch__body p {
  margin: 0 0 16px;
  font-size: 15px;
  line-height: 1.6;
  color: rgba(26,38,47,0.7);
}
.arch__layer--core .arch__body p { color: rgba(246,239,225,0.72); }

.arch__metaphor {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 10px 14px;
  background: rgba(192,85,47,0.08);
  border: 1px solid rgba(192,85,47,0.25);
  border-radius: 8px;
  font-family: var(--font-display);
  font-style: italic;
  font-size: 14px;
  color: var(--escort-orange);
  font-weight: 500;
}
.arch__layer--core .arch__metaphor {
  background: rgba(217,119,89,0.12);
  border-color: rgba(217,119,89,0.35);
  color: var(--escort-orange-soft);
}
.arch__metaphor::before {
  content: "🚚";
  font-style: normal;
  font-size: 16px;
}

.arch__components {
  list-style: none; padding: 0; margin: 0;
  display: grid; grid-template-columns: 1fr 1fr; gap: 12px 20px;
  align-self: start;
}
.arch__components li {
  font-family: var(--font-mono);
  font-size: 12.5px;
  line-height: 1.4;
  color: var(--ica-slate-900);
  display: flex; align-items: baseline; gap: 8px;
  padding: 8px 10px;
  border-radius: 6px;
  background: rgba(26,38,47,0.04);
  border-left: 2px solid var(--escort-orange);
}
.arch__layer--core .arch__components li {
  color: var(--escort-paper);
  background: rgba(255,255,255,0.04);
  border-left-color: var(--escort-orange-soft);
}
.arch__components li small {
  display: block;
  margin-top: 2px;
  font-family: var(--font-sans);
  font-size: 11px;
  color: rgba(26,38,47,0.55);
  letter-spacing: 0;
}
.arch__layer--core .arch__components li small {
  color: rgba(246,239,225,0.55);
}

@media (max-width: 1080px) {
  .arch__layer { grid-template-columns: 1fr; gap: 24px; }
  .arch__lead {
    border-right: 0;
    border-bottom: 1px solid rgba(26,38,47,0.08);
    padding-right: 0; padding-bottom: 20px;
  }
  .arch__layer--core .arch__lead { border-bottom-color: rgba(255,255,255,0.1); }
}
@media (max-width: 640px) {
  .arch__components { grid-template-columns: 1fr; }
  .arch__layer { padding: 28px 24px; }
}

/* Architecture summary phrase strip */
.arch__phrase {
  margin-top: 56px;
  padding: 32px 36px;
  background: var(--ica-slate-900);
  color: var(--escort-paper);
  border-radius: 16px;
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 0;
  align-items: center;
  position: relative;
  overflow: hidden;
}
.arch__phrase::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(800px 200px at 30% 100%, rgba(217,119,89,0.18), transparent 70%);
  pointer-events: none;
}
.arch__phrase__cell {
  position: relative;
  padding: 0 24px;
  border-right: 1px solid rgba(255,255,255,0.1);
}
.arch__phrase__cell:last-child { border-right: 0; }
.arch__phrase__cell .lbl {
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--escort-orange-soft);
}
.arch__phrase__cell h5 {
  margin: 6px 0 4px;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 18px;
  letter-spacing: -0.015em;
}
.arch__phrase__cell p {
  margin: 0;
  font-size: 13px;
  line-height: 1.5;
  color: rgba(246,239,225,0.65);
}
@media (max-width: 880px) {
  .arch__phrase { grid-template-columns: 1fr; gap: 18px; padding: 24px 28px; }
  .arch__phrase__cell {
    border-right: 0;
    border-bottom: 1px solid rgba(255,255,255,0.1);
    padding: 0 0 18px;
  }
  .arch__phrase__cell:last-child { border-bottom: 0; padding-bottom: 0; }
}

/* ============== JOURNEY (8 stages) ============== */
.journey {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
  position: relative;
}
.j-step {
  background: white;
  border: 1px solid rgba(26,38,47,0.1);
  border-radius: 14px;
  padding: 26px 24px;
  position: relative;
  transition: transform .2s ease, border-color .2s ease, box-shadow .2s ease;
}
.j-step:hover {
  transform: translateY(-3px);
  border-color: rgba(192,85,47,0.5);
  box-shadow: 0 20px 40px rgba(26,38,47,0.08);
}
.section--dark .j-step {
  background: rgba(255,255,255,0.04);
  border-color: rgba(255,255,255,0.1);
}
.j-step__num {
  font-family: var(--font-mono);
  font-weight: 700; font-size: 13px;
  letter-spacing: 0.14em;
  color: var(--escort-orange);
  display: flex; align-items: center; gap: 8px;
}
.j-step__num::after {
  content: ""; flex: 1; height: 1px;
  background: repeating-linear-gradient(90deg, currentColor 0 6px, transparent 6px 10px);
  opacity: 0.5;
}
.j-step__t {
  margin: 14px 0 8px;
  font-family: var(--font-display);
  font-weight: 700; font-size: 20px;
  letter-spacing: -0.015em;
  color: var(--ica-slate-900);
}
.section--dark .j-step__t { color: var(--escort-paper); }
.j-step__d {
  font-size: 14px; line-height: 1.55;
  color: rgba(26,38,47,0.7);
  margin: 0;
}
.section--dark .j-step__d { color: rgba(246,239,225,0.7); }
.j-step__tag {
  margin-top: 18px;
  display: inline-flex; align-items: center; gap: 6px;
  font-family: var(--font-mono); font-size: 11px;
  letter-spacing: 0.14em; text-transform: uppercase;
  padding: 4px 8px;
  background: rgba(192,85,47,0.1);
  color: var(--escort-orange);
  border-radius: 4px;
}
@media (max-width: 1000px) { .journey { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 560px)  { .journey { grid-template-columns: 1fr; } }

/* ============== OUTCOMES (3 columns: risk, CS, revenue) ============== */
.outcomes {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.out {
  position: relative;
  background: white;
  border: 1px solid rgba(26,38,47,0.08);
  border-radius: 18px;
  padding: 40px 36px;
  overflow: hidden;
}
.out__bg {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 0%, rgba(192,85,47,0.04) 100%);
  pointer-events: none;
}
.out__num {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 64px;
  letter-spacing: -0.04em;
  line-height: 1;
  color: rgba(192,85,47,0.18);
  margin-bottom: 18px;
}
.out__cat {
  font-family: var(--font-mono); font-size: 11px;
  letter-spacing: 0.18em; text-transform: uppercase;
  color: var(--escort-orange);
}
.out__t {
  margin: 6px 0 14px;
  font-family: var(--font-display);
  font-weight: 800; font-size: 32px;
  letter-spacing: -0.025em;
  line-height: 1.1;
  color: var(--ica-slate-900);
}
.out__lead {
  font-size: 16px; line-height: 1.55;
  color: rgba(26,38,47,0.72); margin: 0 0 28px;
}
.out__list { list-style: none; padding: 0; margin: 0; display: grid; gap: 14px; position: relative; z-index: 1; }
.out__list li {
  display: grid;
  grid-template-columns: 70px 1fr;
  gap: 16px;
  align-items: baseline;
  border-top: 1px solid rgba(26,38,47,0.08);
  padding-top: 14px;
}
.out__list li:first-child { border-top: 0; padding-top: 0; }
.out__list .pct {
  font-family: var(--font-display);
  font-weight: 800; font-size: 22px;
  letter-spacing: -0.02em;
  color: var(--escort-orange);
}
.out__list .lbl {
  font-size: 14px; line-height: 1.45;
  color: var(--ica-slate-900);
}
.out__list .lbl small {
  display: block;
  margin-top: 2px;
  color: rgba(26,38,47,0.55);
  font-size: 12px;
}
@media (max-width: 1000px) { .outcomes { grid-template-columns: 1fr; } }

/* ============== PHRASE BAR (large quotes) ============== */
.phrasebar {
  background: var(--escort-night);
  color: var(--escort-paper);
  padding: clamp(60px, 7vw, 100px) 0;
  position: relative; overflow: hidden;
}
.phrasebar::before {
  content: "";
  position: absolute; inset: 0;
  background:
    radial-gradient(800px 320px at 50% 50%, rgba(217,119,89,0.12), transparent 70%);
}
.phrasebar__inner {
  position: relative;
  text-align: center;
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 24px;
}
.phrasebar__quote {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(36px, 5vw, 68px);
  line-height: 1.05;
  letter-spacing: -0.03em;
  margin: 0;
  text-wrap: balance;
}
.phrasebar__quote em {
  font-style: normal;
  color: var(--escort-orange-soft);
}
.phrasebar__quote .strike {
  text-decoration: line-through;
  text-decoration-thickness: 4px;
  text-decoration-color: var(--escort-orange);
  color: rgba(246,239,225,0.5);
  font-weight: 700;
}

/* ============== FEATURE STRIPE (Runtime Escort) ============== */
.stripe {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  border-radius: 18px;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,0.08);
  background: rgba(255,255,255,0.03);
}
.stripe__copy { padding: 56px 52px; }
.stripe__copy h3 {
  margin: 0 0 18px;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(28px, 3.4vw, 44px);
  letter-spacing: -0.025em;
  line-height: 1.05;
  color: var(--escort-paper);
}
.stripe__copy p {
  margin: 0 0 24px;
  font-size: 17px; line-height: 1.6;
  color: rgba(246,239,225,0.78);
}
.stripe__list {
  list-style: none; padding: 0; margin: 18px 0 0;
  display: grid; gap: 14px;
}
.stripe__list li {
  display: flex; gap: 14px; align-items: baseline;
  font-size: 15px; line-height: 1.5;
  color: rgba(246,239,225,0.85);
}
.stripe__list li::before {
  content: ""; flex: 0 0 8px; height: 8px;
  background: var(--escort-orange);
  border-radius: 2px; transform: translateY(6px);
}

.stripe__visual {
  background:
    linear-gradient(180deg, #0d161e 0%, #060b10 100%);
  position: relative; padding: 56px 44px;
  display: flex; flex-direction: column; justify-content: center; gap: 14px;
  overflow: hidden;
}
.stripe__visual::before {
  content: "";
  position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.04) 1px, transparent 1px);
  background-size: 40px 40px;
  -webkit-mask-image: radial-gradient(500px 320px at 50% 50%, #000 30%, transparent 80%);
  mask-image: radial-gradient(500px 320px at 50% 50%, #000 30%, transparent 80%);
}
.checkpoint {
  position: relative;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 10px;
  padding: 14px 16px;
  display: grid;
  grid-template-columns: 20px 1fr auto;
  align-items: center;
  gap: 14px;
  font-family: var(--font-mono); font-size: 13px;
  color: var(--escort-paper);
}
.checkpoint .dot {
  width: 10px; height: 10px; border-radius: 50%;
}
.checkpoint .dot.ok   { background: #6dd084; box-shadow: 0 0 8px #6dd084; }
.checkpoint .dot.now  { background: var(--escort-orange-soft); box-shadow: 0 0 10px var(--escort-orange-soft); animation: dotpulse 1.6s infinite; }
.checkpoint .dot.deny { background: #d97766; }
.checkpoint .lbl { display: flex; flex-direction: column; gap: 4px; }
.checkpoint .lbl small { color: rgba(246,239,225,0.55); font-size: 11px; letter-spacing: 0.12em; text-transform: uppercase; }
.checkpoint .lbl strong { font-weight: 600; font-family: var(--font-display); font-size: 14px; }
.checkpoint .stat {
  font-size: 10px; letter-spacing: 0.18em; text-transform: uppercase;
  padding: 4px 8px; border-radius: 4px;
  background: rgba(255,255,255,0.05);
}
.checkpoint .stat.ok   { color: #6dd084; background: rgba(109,208,132,0.1); }
.checkpoint .stat.now  { color: var(--escort-orange-soft); background: rgba(217,119,89,0.1); }
.checkpoint .stat.deny { color: #d97766; background: rgba(217,119,102,0.1); }

@media (max-width: 1000px) { .stripe { grid-template-columns: 1fr; } }

/* ============== PROOF / VALIDATION GRID ============== */
.proof {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}
.proof__card {
  background: white;
  border: 1px solid rgba(26,38,47,0.08);
  border-radius: 14px;
  padding: 30px 28px;
}
.proof__hd {
  display: flex; justify-content: space-between; align-items: center;
  margin-bottom: 18px;
  font-family: var(--font-mono); font-size: 11px;
  letter-spacing: 0.14em; text-transform: uppercase;
  color: var(--escort-orange);
}
.proof__hd .stamp {
  font-family: var(--font-mono); font-size: 10px;
  border: 1px solid currentColor; border-radius: 4px;
  padding: 3px 7px;
  letter-spacing: 0.18em;
  color: #2f5a3d;
}
.proof__t {
  font-family: var(--font-display); font-weight: 700;
  font-size: 20px; letter-spacing: -0.015em;
  color: var(--ica-slate-900);
  margin: 0 0 8px;
}
.proof__d {
  font-size: 14px; line-height: 1.55;
  color: rgba(26,38,47,0.7); margin: 0;
}
@media (max-width: 1000px) { .proof { grid-template-columns: 1fr; } }

/* ============== FINAL CTA ============== */
.cta {
  background: var(--escort-night);
  color: var(--escort-paper);
  padding: clamp(80px, 10vw, 140px) 0;
  position: relative; overflow: hidden;
  text-align: center;
}
.cta::before, .cta::after {
  content: "";
  position: absolute; left: 0; right: 0; height: 14px;
  background: var(--escort-tape);
  opacity: 0.85;
}
.cta::before { top: 0; }
.cta::after  { bottom: 0; }
.cta__inner { position: relative; max-width: 880px; margin: 0 auto; padding: 0 24px; }
.cta__eyebrow {
  font-family: var(--font-mono); font-size: 12px;
  letter-spacing: 0.18em; text-transform: uppercase;
  color: var(--escort-orange-soft);
}
.cta h2 {
  margin: 18px 0 22px;
  font-family: var(--font-display); font-weight: 800;
  font-size: clamp(40px, 6vw, 84px);
  line-height: 0.98; letter-spacing: -0.035em;
}
.cta h2 em { font-style: normal; color: var(--escort-orange-soft); }
.cta p {
  font-size: 18px; line-height: 1.55;
  color: rgba(246,239,225,0.78);
  max-width: 56ch; margin: 0 auto;
}
.cta__btns { margin-top: 40px; display: inline-flex; gap: 14px; flex-wrap: wrap; justify-content: center; }

/* ============== FOOTER ============== */
.foot {
  background: #060b10;
  color: rgba(246,239,225,0.55);
  padding: 56px 0 32px;
  font-size: 13px;
}
.foot__row {
  display: flex; justify-content: space-between; flex-wrap: wrap;
  gap: 32px;
}
.foot__col {
  font-family: var(--font-mono); font-size: 11px;
  letter-spacing: 0.14em; text-transform: uppercase;
}
.foot__col strong { color: var(--escort-paper); font-weight: 600; }
.foot__col a { color: var(--escort-orange-soft); }
.foot__legal {
  margin-top: 40px; padding-top: 24px;
  border-top: 1px solid rgba(255,255,255,0.06);
  display: flex; justify-content: space-between; flex-wrap: wrap; gap: 16px;
  font-family: var(--font-mono); font-size: 11px;
  letter-spacing: 0.12em; text-transform: uppercase;
  color: rgba(246,239,225,0.4);
}
