/* ============================================================
   DESIGN TOKENS — keep parity with index.html / communications.html
   ============================================================ */
:root {
  --ink: #0F1923;
  --ink-2: #1a2534;
  --muted: #525252;
  --muted-2: #737373;
  --muted-3: #a3a3a3;
  --line: #e5e5e5;
  --line-2: #f0f0f0;
  --line-3: #f7f7f7;
  --paper: #ffffff;
  --paper-2: #fafafa;
  --paper-3: #f5f5f5;
  --accent: #B08D57;
  --accent-hover: #8F6F3E;
  --accent-soft: #F7F1E6;
  --accent-soft-2: #FBF7F0;
  --green: #2f7a4d;
  --green-soft: #f0f7f3;
  --red: #c94a3e;
  --red-soft: #fbe9e7;
  --blue: #3b5ea5;
  --blue-soft: #eef2f8;
  --amber: #b8770a;
  --amber-soft: #fcf3e3;

  --ff-body: 'DM Sans', system-ui, -apple-system, Segoe UI, sans-serif;
  --ff-mono: 'DM Sans', ui-sans-serif, system-ui, -apple-system, sans-serif;

  --max-w: 1440px;
  --inner-pad: 32px;

  --ease-smooth: cubic-bezier(0.2, 0.8, 0.2, 1);
  --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
  --dur-fast: 0.15s;
  --dur-base: 0.3s;
  --dur-slow: 0.7s;

  /* Logistics section accent — page-scoped tint that pairs with --accent */
  --logistics: #2D5A66;
  --logistics-soft: #EEF4F5;
  --green-on-dark: #3FA86A;
}

/* ============================================================
   RESET + BASE — mirrors communications.html
   ============================================================ */
*, *::before, *::after { box-sizing: border-box; }
html, body { margin: 0; padding: 0; }
body {
  font-family: var(--ff-body);
  color: var(--ink);
  background: var(--paper);
  line-height: 1.5;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
a { color: inherit; text-decoration: none; }
button { font-family: inherit; border: 0; background: none; padding: 0; cursor: pointer; }
img, svg { display: block; max-width: 100%; }
ul, ol { margin: 0; padding: 0; list-style: none; }
h1, h2, h3, h4, h5, h6 { margin: 0; line-height: 1.1; font-weight: 600; }
p { margin: 0; }

/* Typography helpers */
.display { font-weight: 600; letter-spacing: -0.03em; line-height: 1.05; color: var(--ink); }
.heading { font-weight: 600; letter-spacing: -0.01em; line-height: 1.2; color: var(--ink); }
.eyebrow { font-size: 15px; font-weight: 500; letter-spacing: 0.1em; text-transform: uppercase; color: var(--accent); }
.lede { font-size: 18px; line-height: 1.6; color: var(--muted); }
.mono { font-family: var(--ff-mono); }
.num { font-variant-numeric: tabular-nums; }
.muted { color: var(--muted); }

.h-display { font-size: clamp(48px, 5.2vw, 76px); }
.h-section { font-size: clamp(40px, 4.2vw, 60px); }
.h-section-sm { font-size: clamp(36px, 3.8vw, 52px); }
.h-section-xs { font-size: clamp(32px, 3.4vw, 44px); }
.h-card { font-size: 22px; }
.h-sub { font-size: 20px; }

/* Layout */
.wrap { max-width: var(--max-w); margin: 0 auto; padding-left: var(--inner-pad); padding-right: var(--inner-pad); }
main > section { padding: 96px var(--inner-pad); border-bottom: 1px solid var(--line); }
main > section > .wrap { padding: 0; }
main > section.section-tight { padding: 80px var(--inner-pad); }
.bg-paper { background: var(--paper); }
.bg-paper-2 { background: var(--paper-2); }
.bg-ink { background: var(--ink); color: #fff; }

/* Buttons */
.btn {
  font-family: inherit;
  font-size: 16px;
  font-weight: 500;
  padding: 13px 22px;
  border: 1px solid transparent;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  white-space: nowrap;
  transition: background var(--dur-fast) var(--ease-smooth), color var(--dur-fast) var(--ease-smooth), border-color var(--dur-fast) var(--ease-smooth);
}
.btn-accent { background: var(--accent); color: #fff; }
.btn-accent:hover { background: var(--accent-hover); box-shadow: 0 10px 28px -10px rgba(176, 141, 87, 0.55); }
.btn-ghost { background: transparent; color: var(--ink); border-color: var(--line); }
.btn-ghost:hover { border-color: var(--ink); }
.btn-lg { padding: 16px 28px; font-size: 17px; }

/* ============================================================
   HEADER — matches communications.html
   ============================================================ */
.site-header { position: sticky; top: 0; z-index: 100; background: var(--paper); border-bottom: 1px solid var(--line); }
.pulse-dot { width: 6px; height: 6px; background: var(--accent); border-radius: 50%; display: inline-block; }

.site-nav { background: var(--paper); }
.site-nav-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 18px var(--inner-pad);
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.site-nav-left { display: flex; align-items: center; gap: 44px; }
.site-nav-right { display: flex; align-items: center; gap: 10px; }
.edma-logo { display: inline-flex; align-items: center; gap: 8px; }
.edma-logo .phoenix { width: 20px; height: auto; }
.edma-wordmark { font-size: 20px; font-weight: 700; letter-spacing: -0.02em; }
.nav-list { display: flex; gap: 4px; }
.nav-link { font-size: 16px; color: var(--ink); padding: 8px 14px; }
.nav-link:hover { color: var(--accent); }
.nav-link-pricing { font-weight: 500; }
.nav-signin { font-size: 16px; color: var(--ink); padding: 8px 14px; }
.nav-cta { font-size: 16px; }
.nav-hamburger { display: none; }

@media (max-width: 900px) {
  .nav-list { display: none; }
  .nav-signin { display: none; }
  .nav-hamburger {
    display: inline-flex;
    flex-direction: column;
    gap: 4px;
    padding: 8px;
  }
  .nav-hamburger span {
    width: 20px;
    height: 1.5px;
    background: var(--ink);
  }
}

/* ============================================================
   HERO
   ============================================================ */
.s-hero { text-align: center; padding-bottom: 56px; }
.s-hero-inner { max-width: 980px; margin: 0 auto; }
.s-hero .eyebrow { display: inline-block; margin-bottom: 28px; }
.s-hero h1 { margin-bottom: 24px; }
.s-hero .lede { max-width: 880px; margin: 0 auto 36px; }
.cta-row { display: inline-flex; gap: 12px; flex-wrap: wrap; justify-content: center; }

/* Hero KPI grid — unified pattern matching all other pages. */
.hero-kpi {
  max-width: 1140px;
  margin: 64px auto 0;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border: 1px solid var(--line);
}
.hero-kpi-cell {
  padding: 22px 24px;
  border-right: 1px solid var(--line-2);
  text-align: left;
}
.hero-kpi-cell:last-child { border-right: 0; }
.hero-kpi-label {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--muted-2);
  margin-bottom: 12px;
}
.hero-kpi-val {
  font-family: var(--ff-body);
  font-size: 16px;
  line-height: 1.5;
  color: var(--ink);
  letter-spacing: -0.005em;
  margin: 0;
}
.hero-kpi-num {
  font-family: var(--ff-mono);
  font-weight: 600;
  color: var(--ink);
}

/* Legacy hero-foot — kept for any unmigrated callsites, but logistics-portal now uses hero-kpi above */
.hero-foot {
  margin-top: 56px;
  padding-top: 28px;
  border-top: 1px solid var(--line);
  display: flex;
  flex-wrap: wrap;
  gap: 40px 64px;
}
.hero-foot-item .label { font-size: 13px; font-weight: 500; letter-spacing: 0.1em; text-transform: uppercase; color: var(--muted-2); margin-bottom: 6px; }
.hero-foot-item .value { font-size: 19px; font-weight: 500; color: var(--ink); }

/* ============================================================
   COCKPIT MOCKUP — the centerpiece visual
   ============================================================ */
.s-cockpit { background: var(--paper-2); padding-top: 80px; padding-bottom: 80px; }
.cockpit-head { max-width: 64ch; margin: 0 auto 48px; text-align: center; }
.cockpit-head .eyebrow { color: var(--logistics); }
.cockpit-head h2 { margin-top: 14px; }
.cockpit-head .lede { margin-top: 16px; }
.cockpit-frame {
  max-width: 1200px;
  margin: 0 auto;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 14px;
  overflow: hidden;
  box-shadow: 0 24px 48px -32px rgba(15, 25, 35, 0.18);
}
.cockpit-chrome {
  background: var(--ink);
  color: #fff;
  padding: 14px 22px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 15px;
}
.cockpit-chrome-left { display: flex; align-items: center; gap: 14px; }
.cockpit-brand-mark { width: 22px; height: 22px; background: var(--accent); border-radius: 4px; display: inline-flex; align-items: center; justify-content: center; font-weight: 700; font-size: 14px; color: var(--ink); }
.cockpit-brand-name { font-weight: 500; }
.cockpit-portal-label { color: rgba(255,255,255,0.6); padding-left: 14px; border-left: 1px solid rgba(255,255,255,0.15); }
.cockpit-chrome-right { display: flex; align-items: center; gap: 16px; color: rgba(255,255,255,0.7); }
.cockpit-chrome-right span { display: inline-flex; align-items: center; gap: 6px; }

.cockpit-body {
  display: grid;
  grid-template-columns: 1fr 320px;
  gap: 0;
}
.cockpit-main {
  padding: 28px;
  border-right: 1px solid var(--line);
}
.cockpit-shipment-head { display: flex; align-items: baseline; justify-content: space-between; margin-bottom: 8px; }
.cockpit-shipment-id { font-family: var(--ff-mono); font-size: 13.5px; color: var(--muted); letter-spacing: 0.04em; text-transform: uppercase; }
.cockpit-eta { font-size: 15px; color: var(--ink); font-weight: 500; }
.cockpit-shipment-title { font-size: 22px; font-weight: 600; letter-spacing: -0.01em; }
.cockpit-shipment-title .container-pill {
  font-family: var(--ff-mono);
  font-size: 15px;
  font-weight: 500;
  background: var(--accent-soft);
  color: var(--accent-hover);
  padding: 3px 8px;
  border-radius: 3px;
  margin-left: 8px;
  vertical-align: 2px;
}
.cockpit-shipment-route { font-size: 16px; color: var(--muted); margin-top: 6px; }

.cockpit-milestones {
  margin-top: 28px;
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 4px;
  background: var(--line-3);
  padding: 4px;
  border-radius: 6px;
}
.cockpit-milestone {
  padding: 14px 12px;
  background: var(--paper);
  border-radius: 4px;
  border-top: 2px solid transparent;
}
.cockpit-milestone.is-done { border-top-color: var(--green-on-dark); }
.cockpit-milestone.is-active { border-top-color: var(--logistics); background: var(--logistics-soft); }
.cockpit-milestone.is-next { border-top: 2px dashed var(--accent); }
.cockpit-milestone .label { font-size: 13px; font-weight: 500; letter-spacing: 0.06em; text-transform: uppercase; color: var(--muted-2); margin-bottom: 4px; }
.cockpit-milestone.is-active .label { color: var(--logistics); }
.cockpit-milestone .when { font-size: 14.5px; color: var(--ink); font-weight: 500; }
.cockpit-milestone.is-next .when { color: var(--accent); }

.cockpit-cta {
  margin-top: 24px;
  width: 100%;
  background: var(--logistics);
  color: #fff;
  padding: 16px 20px;
  border-radius: 6px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.cockpit-cta .label { font-weight: 500; font-size: 17px; }
.cockpit-cta .meta { font-size: 14px; color: rgba(255,255,255,0.7); margin-top: 3px; }
.cockpit-cta .arrow { font-size: 19px; opacity: 0.7; }

.cockpit-panels {
  margin-top: 24px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
.cockpit-panel {
  border: 1px solid var(--line);
  border-radius: 6px;
  padding: 16px;
}
.cockpit-panel-head { display: flex; align-items: center; justify-content: space-between; margin-bottom: 10px; }
.cockpit-panel-title { font-size: 14px; font-weight: 600; letter-spacing: 0.05em; text-transform: uppercase; color: var(--muted-2); }
.cockpit-panel.is-warn { background: var(--amber-soft); border-color: rgba(184, 119, 10, 0.25); }
.cockpit-panel.is-warn .cockpit-panel-title { color: var(--amber); }
.cockpit-status-row { display: flex; justify-content: space-between; font-size: 15px; margin: 4px 0; }
.cockpit-status-row .v { color: var(--ink); font-weight: 500; }
.cockpit-status-row .v.is-warn { color: var(--amber); }
.cockpit-status-row .v.is-ok { color: var(--green); }
.cockpit-rate-headline { font-size: 19px; font-weight: 500; color: var(--ink); }
.cockpit-rate-line { font-size: 14px; color: var(--muted-2); margin-top: 4px; }
.cockpit-rate-savings { font-size: 14px; color: var(--green); margin-top: 6px; font-weight: 500; }

/* Side rail */
.cockpit-rail {
  background: var(--paper-2);
  padding: 24px 20px;
  display: flex;
  flex-direction: column;
}
.cockpit-rail-head { display: flex; align-items: center; justify-content: space-between; margin-bottom: 14px; }
.cockpit-rail-title { font-size: 13.5px; font-weight: 600; letter-spacing: 0.08em; text-transform: uppercase; color: var(--muted); }
.cockpit-rail-count { font-size: 14px; color: var(--muted-2); }
.cockpit-rail-list { display: flex; flex-direction: column; gap: 6px; }
.cockpit-rail-row {
  background: var(--paper);
  padding: 10px 12px;
  border: 1px solid var(--line);
  border-radius: 4px;
  font-size: 14.5px;
}
.cockpit-rail-row.is-active {
  background: var(--logistics-soft);
  border-color: var(--logistics);
  border-left: 3px solid var(--logistics);
}
.cockpit-rail-row.is-cutoff {
  background: var(--amber-soft);
  border-color: rgba(184, 119, 10, 0.25);
}
.cockpit-rail-row-id { font-family: var(--ff-mono); font-size: 12.5px; color: var(--muted-2); letter-spacing: 0.04em; text-transform: uppercase; }
.cockpit-rail-row-desc { font-weight: 500; color: var(--ink); margin-top: 1px; }
.cockpit-rail-row-status { font-size: 13.5px; color: var(--muted); margin-top: 6px; }
.cockpit-rail-row.is-active .cockpit-rail-row-status { color: var(--logistics); }
.cockpit-rail-row.is-cutoff .cockpit-rail-row-status { color: var(--amber); }

.cockpit-rail-stats {
  margin-top: 24px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}
.cockpit-rail-stat {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 4px;
  padding: 12px;
}
.cockpit-rail-stat .num { font-size: 19px; font-weight: 600; color: var(--ink); font-family: var(--ff-mono); font-variant-numeric: tabular-nums; }
.cockpit-rail-stat .lbl { font-size: 12.5px; color: var(--muted-2); margin-top: 2px; letter-spacing: 0.04em; text-transform: uppercase; }

@media (max-width: 980px) {
  .cockpit-body { grid-template-columns: 1fr; }
  .cockpit-rail { border-top: 1px solid var(--line); }
  .cockpit-main { border-right: none; }
  .cockpit-milestones { grid-template-columns: repeat(2, 1fr); }
  .cockpit-panels { grid-template-columns: 1fr; }

  /* Hero KPI · 4-col → 2-col on tablet */
  .hero-kpi { grid-template-columns: repeat(2, 1fr); }
  .hero-kpi-cell:nth-child(2) { border-right: 0; }
  .hero-kpi-cell:nth-child(1),
  .hero-kpi-cell:nth-child(2) { border-bottom: 1px solid var(--line-2); }
}

@media (max-width: 600px) {
  /* Hero KPI · 2-col → 1-col on small screens */
  .hero-kpi { grid-template-columns: 1fr; }
  .hero-kpi-cell { border-right: 0; border-bottom: 1px solid var(--line-2); }
  .hero-kpi-cell:last-child { border-bottom: 0; }
  /* font-size inherits from .hero-kpi-val (16px) — no override needed */
}

/* Cockpit caption */
.cockpit-caption {
  max-width: 64ch;
  margin: 24px auto 0;
  text-align: center;
  font-size: 15px;
  color: var(--muted-2);
}

/* ============================================================
   MODES section — 5-card grid
   ============================================================ */
.s-modes-head { text-align: center; max-width: 64ch; margin: 0 auto 60px; }
.s-modes-head .eyebrow { color: var(--logistics); }
.s-modes-head h2 { margin-top: 14px; }
.modes-grid { display: grid; grid-template-columns: repeat(5, 1fr); gap: 20px; max-width: var(--max-w); margin: 0 auto; }
.mode-card { background: var(--paper); border: 1px solid var(--line); border-radius: 8px; padding: 28px 24px; }
.mode-icon { width: 36px; height: 36px; border-radius: 8px; background: var(--logistics-soft); display: inline-flex; align-items: center; justify-content: center; color: var(--logistics); margin-bottom: 16px; }
.mode-name { font-size: 18px; font-weight: 600; color: var(--ink); }
.mode-fields { margin-top: 14px; font-size: 14.5px; color: var(--muted); line-height: 1.6; }
.mode-fields b { color: var(--ink); font-weight: 500; }

@media (max-width: 1100px) { .modes-grid { grid-template-columns: repeat(2, 1fr); } .mode-card { padding: 22px; } }
@media (max-width: 600px)  { .modes-grid { grid-template-columns: 1fr; } }

/* ============================================================
   FEATURE GRID — milestone capture / customs / rates / etc.
   ============================================================ */
.s-features-head { text-align: center; max-width: 64ch; margin: 0 auto 64px; }
.s-features-head .eyebrow { color: var(--logistics); }
.feature-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 56px; max-width: var(--max-w); margin: 0 auto; }
.feature-block h3 { font-size: 22px; font-weight: 600; color: var(--ink); margin-bottom: 10px; }
.feature-block p.lede { font-size: 17px; margin-bottom: 16px; }
.feature-list { list-style: none; padding: 0; margin: 0; }
.feature-list li { padding: 8px 0; font-size: 16px; color: var(--ink); border-bottom: 1px solid var(--line-2); display: flex; gap: 10px; align-items: flex-start; }
.feature-list li::before { content: "—"; color: var(--accent); flex: 0 0 14px; }
.feature-list li:last-child { border-bottom: 0; }

@media (max-width: 900px) { .feature-grid { grid-template-columns: 1fr; gap: 36px; } }

/* ============================================================
   MULTI-OPERATOR section
   ============================================================ */
.s-multi-op { background: var(--paper-2); }
.multi-op-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 56px; align-items: center; max-width: var(--max-w); margin: 0 auto; }
.multi-op-left h2 { margin-bottom: 14px; }
.multi-op-left .lede { margin-bottom: 24px; }
.multi-op-visual {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 10px;
  padding: 32px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.multi-op-row { display: flex; align-items: center; justify-content: space-between; padding: 12px 14px; background: var(--paper-2); border-radius: 6px; font-size: 15px; }
.multi-op-row .op-name { font-weight: 500; color: var(--ink); }
.multi-op-row .op-meta { font-size: 14px; color: var(--muted); }
.multi-op-row.is-current { background: var(--logistics-soft); border-left: 3px solid var(--logistics); }
.multi-op-row.is-current .op-name { color: var(--logistics); }
.multi-op-separator { font-size: 13.5px; color: var(--muted-3); letter-spacing: 0.08em; text-transform: uppercase; text-align: center; padding: 4px 0; }

@media (max-width: 900px) { .multi-op-grid { grid-template-columns: 1fr; gap: 36px; } }

/* ============================================================
   CONFIDENTIALITY section
   ============================================================ */
.confid-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; max-width: var(--max-w); margin: 0 auto; }
.confid-card { padding: 28px; border: 1px solid var(--line); border-radius: 8px; background: var(--paper); }
.confid-card .eyebrow { color: var(--logistics); font-size: 13.5px; }
.confid-card h3 { font-size: 19px; font-weight: 600; margin: 10px 0; color: var(--ink); }
.confid-card p { font-size: 15.5px; color: var(--muted); line-height: 1.6; }

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

/* ============================================================
   MOBILE / DRIVER section
   ============================================================ */
.s-mobile-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 56px; align-items: center; max-width: var(--max-w); margin: 0 auto; }
.mobile-phone {
  margin: 0 auto;
  width: 280px;
  height: 540px;
  background: var(--ink);
  border-radius: 36px;
  padding: 8px;
  box-shadow: 0 24px 48px -24px rgba(0,0,0,0.4);
}
.mobile-phone-screen {
  background: var(--paper);
  width: 100%;
  height: 100%;
  border-radius: 28px;
  padding: 22px 18px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  overflow: hidden;
}
.mobile-head { font-size: 13px; color: var(--muted-2); letter-spacing: 0.06em; text-transform: uppercase; }
.mobile-shipment-id { font-family: var(--ff-mono); font-size: 14px; color: var(--muted); }
.mobile-title { font-size: 18px; font-weight: 600; color: var(--ink); line-height: 1.3; }
.mobile-step {
  background: var(--logistics-soft);
  border-radius: 8px;
  padding: 14px;
  margin-top: 4px;
}
.mobile-step-label { font-size: 13px; color: var(--logistics); letter-spacing: 0.06em; text-transform: uppercase; font-weight: 600; }
.mobile-step-name { font-size: 17px; color: var(--ink); margin-top: 4px; font-weight: 500; }
.mobile-step-meta { font-size: 13.5px; color: var(--muted); margin-top: 6px; }
.mobile-cta {
  margin-top: auto;
  background: var(--logistics);
  color: #fff;
  border-radius: 8px;
  padding: 14px;
  text-align: center;
  font-weight: 500;
  font-size: 16px;
}

@media (max-width: 900px) { .s-mobile-grid { grid-template-columns: 1fr; gap: 36px; } .mobile-phone { transform: scale(0.85); } }

/* ============================================================
   PRICING / TIER section
   ============================================================ */
.s-tiers-head { text-align: center; max-width: 64ch; margin: 0 auto 48px; }
.s-tiers-head .eyebrow { color: var(--logistics); }
.tier-table {
  max-width: 980px;
  margin: 0 auto;
  border: 1px solid var(--line);
  border-radius: 10px;
  overflow: hidden;
}
.tier-row {
  display: grid;
  grid-template-columns: 2.5fr repeat(5, 1fr);
  border-bottom: 1px solid var(--line);
  font-size: 15px;
}
.tier-row:last-child { border-bottom: 0; }
.tier-row.is-head {
  background: var(--paper-2);
  font-weight: 600;
  font-size: 13.5px;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--muted);
}
.tier-row > div { padding: 14px 16px; border-right: 1px solid var(--line); display: flex; align-items: center; }
.tier-row > div:last-child { border-right: 0; }
.tier-row .feature { color: var(--ink); font-weight: 500; }
.tier-row .yes { color: var(--green); font-weight: 600; }
.tier-row .no { color: var(--muted-3); }

@media (max-width: 900px) {
  .tier-table { font-size: 14px; }
  .tier-row { grid-template-columns: 1.5fr repeat(5, 1fr); }
  .tier-row > div { padding: 10px 8px; }
}

/* ============================================================
   FAQ section
   ============================================================ */
.faq-list { max-width: 880px; margin: 0 auto; display: flex; flex-direction: column; gap: 4px; }
.faq-item {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 24px 28px;
}
.faq-q { font-size: 18px; font-weight: 600; color: var(--ink); margin-bottom: 10px; }
.faq-a { font-size: 16.5px; color: var(--muted); line-height: 1.7; }

/* ============================================================
   CTA footer-block
   ============================================================ */
.s-cta { padding: 96px var(--inner-pad); background: var(--ink); color: #fff; border-bottom: none; text-align: center; }
.s-cta h2 { color: #fff; max-width: 22ch; margin: 0 auto; }
.s-cta .lede { color: rgba(255,255,255,0.7); max-width: 56ch; margin: 20px auto 0; }
.s-cta .cta-row { justify-content: center; margin-top: 36px; }
.s-cta .btn-ghost { color: #fff; border-color: rgba(255,255,255,0.3); }
.s-cta .btn-ghost:hover { border-color: #fff; }

/* ============================================================
   FOOTER
   ============================================================ */
.site-footer { background: var(--ink); color: rgba(255,255,255,0.7); padding: 64px var(--inner-pad) 32px; }
.footer-grid {
  max-width: var(--max-w);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr 1fr;
  gap: 48px;
}
.footer-brand { color: #fff; font-weight: 700; font-size: 21px; margin-bottom: 14px; }
.footer-brand-line { font-size: 15px; color: rgba(255,255,255,0.6); line-height: 1.6; max-width: 36ch; }
.footer-col h4 { font-size: 13.5px; font-weight: 600; letter-spacing: 0.08em; text-transform: uppercase; color: rgba(255,255,255,0.5); margin-bottom: 14px; }
.footer-col ul { display: flex; flex-direction: column; gap: 9px; }
.footer-col a { font-size: 15.5px; color: rgba(255,255,255,0.75); }
.footer-col a:hover { color: #fff; }
.footer-bottom { max-width: var(--max-w); margin: 48px auto 0; padding-top: 28px; border-top: 1px solid rgba(255,255,255,0.1); display: flex; justify-content: space-between; align-items: center; font-size: 14.5px; color: rgba(255,255,255,0.5); flex-wrap: wrap; gap: 12px; }

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

/* ============================================================
   SECTION HEADS — shared
   ============================================================ */
section h2.heading { margin-top: 14px; }

/* Subtle utility: page-scoped accent class so we don't override --accent globally */
.ink-strong { color: var(--ink); font-weight: 500; }
/* ═══════════════════════════════════════════════════════════════════
   PLATFORM-ACCURACY REWRITE · NEW CLASSES
   §2 real Home dashboard (greeting + world map + 2-col queue),
   §3 7-section nav tour, §4 Inbox highlight, §5 5-tab shipments grid,
   §6 state machines visualizer, §10 Incoterms visibility, §13 roadmap.
   ═══════════════════════════════════════════════════════════════════ */

/* ── §2 CENTERPIECE — Real Home dashboard mock ── */

.s-centerpiece {
  padding: 24px 0 64px;
  max-width: var(--max-w);
  margin: 0 auto;
}
.s-centerpiece .cockpit-frame {
  background: #FFFFFF;
  border: 1px solid #E2E6EB;
  box-shadow: 0 1px 3px rgba(15,25,35,.05);
  overflow: hidden;
  margin: 0 auto;
}

/* portal banner */
.s-centerpiece .cockpit-chrome {
  background: var(--ink);
  color: #fff;
  padding: 14px 22px;
  display: flex; align-items: center; justify-content: space-between;
  gap: 16px;
}
.s-centerpiece .cockpit-chrome-left {
  display: flex; align-items: center; gap: 12px;
}
.s-centerpiece .cockpit-brand-mark {
  width: 28px; height: 28px;
  background: var(--accent);
  display: inline-flex; align-items: center; justify-content: center;
  font-weight: 700; font-size: 14px; color: #fff;
}
.s-centerpiece .cockpit-brand-name {
  font-size: 14px; font-weight: 600;
}
.s-centerpiece .cockpit-portal-label {
  font-family: 'DM Sans', sans-serif;
  font-size: 11.5px; color: rgba(255,255,255,0.65);
  letter-spacing: 0.04em;
  margin-left: 12px;
  border-left: 1px solid rgba(255,255,255,0.15);
  padding-left: 12px;
}
.s-centerpiece .cockpit-chrome-right {
  font-size: 12.5px; color: rgba(255,255,255,0.7);
  display: flex; gap: 16px;
}

/* nav strip */
.lp-nav-strip {
  display: flex;
  align-items: stretch;
  background: #FFFFFF;
  border-bottom: 1px solid #E2E6EB;
  overflow-x: auto;
  scrollbar-width: none;
  padding: 0 14px;
}
.lp-nav-strip::-webkit-scrollbar { display: none; }
.lp-nav-pill {
  padding: 11px 14px;
  font-family: 'DM Sans', sans-serif;
  font-size: 13.5px; font-weight: 500;
  color: #4A5568;
  border-bottom: 2px solid transparent;
  white-space: nowrap;
  cursor: pointer;
}
.lp-nav-pill.is-active {
  color: #0F1923;
  border-bottom-color: #B08D57;
  font-weight: 600;
}
.lp-nav-pill .ct {
  display: inline-block;
  background: #FEF3C7;
  color: #92400E;
  font-size: 10.5px; font-weight: 700;
  padding: 2px 6px;
  margin-left: 6px;
}
.lp-nav-pill.is-end {
  margin-left: auto;
  border-left: 1px solid #F0F2F5;
}

/* page body */
.lp-page-body {
  padding: 22px 24px 26px;
  background: #FAFBFC;
  display: flex; flex-direction: column; gap: 16px;
}

/* hero greeting strip */
.lp-hero-strip {
  display: flex; gap: 12px; align-items: center;
  padding: 14px 18px;
  background: #FFFFFF;
  border: 1px solid #E2E6EB;
}
.lp-hero-pulse {
  width: 8px; height: 8px; border-radius: 50%;
  background: #D97706;
  box-shadow: 0 0 0 4px rgba(217,119,6,0.18);
  flex-shrink: 0;
}
.lp-hero-date {
  font-family: 'DM Sans', sans-serif;
  font-size: 11px; color: #6B7A8A;
  text-transform: uppercase; letter-spacing: 0.08em;
}
.lp-hero-statement {
  font-size: 14px; color: #0F1923;
  margin-top: 2px; line-height: 1.5;
}

/* world map card */
.lp-map-card {
  background: #FFFFFF;
  border: 1px solid #E2E6EB;
  overflow: hidden;
}
.lp-map-head {
  display: flex; justify-content: space-between; align-items: center;
  padding: 14px 18px;
  border-bottom: 1px solid #F0F2F5;
}
.lp-map-eb {
  font-family: 'DM Sans', sans-serif;
  font-size: 11px; font-weight: 600; color: #6B7A8A;
  text-transform: uppercase; letter-spacing: 0.08em;
}
.lp-map-ttl {
  font-family: 'DM Sans', sans-serif;
  font-size: 15px; font-weight: 600; color: #0F1923;
  margin-top: 2px;
}
.lp-map-link {
  font-size: 12px; font-weight: 600;
  color: #B08D57;
}
.lp-map-canvas {
  height: 320px;
  background: #EDF1F7;          /* matches LIGHT_THEME ocean color so loading state blends */
  position: relative;
  overflow: hidden;
}
.lp-map-canvas svg {
  width: 100%; height: 100%;
  display: block;
}
.lp-map-loading {
  position: absolute;
  inset: 0;
  display: flex; align-items: center; justify-content: center;
  margin: 0;
  font-family: 'DM Sans', sans-serif;
  font-size: 12.5px;
  color: var(--muted-2);
  letter-spacing: 0.04em;
}

/* 2-column action queue */
.lp-queue {
  display: grid;
  grid-template-columns: minmax(0, 1.4fr) minmax(0, 1fr);
  gap: 14px;
}
.lp-col-l, .lp-col-r {
  display: flex; flex-direction: column; gap: 14px;
}

.lp-card {
  background: #FFFFFF;
  border: 1px solid #E2E6EB;
}
.lp-card-head {
  display: flex; align-items: center; justify-content: space-between;
  padding: 12px 16px;
  border-bottom: 1px solid #F0F2F5;
}
.lp-card-title {
  font-family: 'DM Sans', sans-serif;
  font-size: 13px; font-weight: 700; color: #0F1923;
}
.lp-card-count {
  font-family: 'DM Sans', sans-serif;
  font-size: 11px; font-weight: 600; color: #6B7A8A;
  text-transform: uppercase; letter-spacing: 0.05em;
}
.lp-card-body { padding: 4px 0; }

/* Needs Response row */
.lp-need-row, .lp-risk-row {
  display: grid; grid-template-columns: 56px 1fr auto;
  align-items: center; gap: 10px;
  padding: 10px 16px;
  border-bottom: 1px solid #F0F2F5;
}
.lp-need-row:last-child, .lp-risk-row:last-child { border-bottom: 0; }

.lp-need-tag, .lp-risk-sev {
  font-family: 'DM Sans', sans-serif;
  font-size: 9.5px; font-weight: 700;
  padding: 3px 6px; text-align: center;
  letter-spacing: 0.04em; color: #fff;
}
.lp-need-tag.is-blue, .lp-risk-sev.is-blue { background: #3B82F6; }
.lp-need-tag.is-amber { background: #D97706; }
.lp-need-tag.is-red { background: #DC2626; }
.lp-risk-sev.is-red { background: #DC2626; }
.lp-risk-state {
  font-size: 11px; color: #D97706;
  font-weight: 600; padding: 2px 8px;
  background: #FFFBEB;
}

.lp-need-title {
  display: block;
  font-size: 13px; font-weight: 600; color: #0F1923;
}
.lp-need-meta {
  display: block;
  font-size: 11.5px; color: #6B7A8A;
  margin-top: 2px;
}
.lp-need-act {
  display: flex; gap: 6px;
}
.lp-mini-btn {
  font-family: 'DM Sans', sans-serif;
  font-size: 11px; font-weight: 600;
  padding: 5px 10px;
  border: 1px solid #E2E6EB;
  background: #FFFFFF; color: #0F1923;
  white-space: nowrap;
}

/* Today body */
.lp-today-body {
  padding: 8px 0;
}
.lp-today-row {
  display: grid; grid-template-columns: 50px 1fr;
  gap: 10px; align-items: center;
  padding: 7px 16px;
  border-bottom: 1px solid #F0F2F5;
}
.lp-today-row:last-child { border-bottom: 0; }
.lp-today-time {
  font-family: ui-monospace, "SF Mono", Menlo, Consolas, monospace;
  font-size: 11.5px; font-weight: 700;
  color: #B08D57;
  font-variant-numeric: tabular-nums;
}
.lp-today-text {
  font-size: 12.5px; color: #0F1923;
}

/* Money body */
.lp-money-body { padding: 6px 0; }
.lp-money-row {
  display: grid; grid-template-columns: 1fr auto;
  align-items: center;
  padding: 6px 16px;
  border-bottom: 1px solid #F0F2F5;
  font-family: 'DM Sans', sans-serif;
  font-size: 12.5px;
}
.lp-money-row:last-child { border-bottom: 0; }
.lp-money-row.is-warn { color: #D97706; font-weight: 600; }
.lp-money-row.is-red { color: #DC2626; font-weight: 600; }
.lp-money-lbl { color: #4A5568; }
.lp-money-row.is-warn .lp-money-lbl, .lp-money-row.is-red .lp-money-lbl { color: inherit; }
.lp-money-val {
  font-family: 'DM Sans', sans-serif;
  font-weight: 700;
  font-variant-numeric: tabular-nums;
}

/* centerpiece caption */
.s-centerpiece .cockpit-caption {
  max-width: 920px;
  margin: 22px auto 0;
  padding: 0 var(--inner-pad);
  text-align: center;
  font-size: 13.5px; color: var(--muted-2);
  line-height: 1.6;
}

/* ── §3 NAVIGATION TOUR ── */

.s-nav-tour { padding: 70px 0; }
.s-nav-tour-inner { max-width: var(--max-w); margin: 0 auto; padding: 0 var(--inner-pad); }
.s-nav-tour-head { text-align: center; max-width: 760px; margin: 0 auto 32px; }
.s-nav-tour-head .eyebrow { color: var(--accent); font-size: 11.5px; letter-spacing: 0.12em; font-weight: 700; margin-bottom: 8px; }
.s-nav-tour-head h2 { font-size: 28px; color: var(--ink); margin-bottom: 12px; }
.s-nav-tour-head .lede { font-size: 15px; color: var(--muted); line-height: 1.6; }

.lp-tour-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 10px;
}
.lp-tour-card {
  background: var(--paper);
  border: 1px solid var(--line);
  padding: 20px 18px;
  position: relative;
}
.lp-tour-card .tn {
  font-family: ui-monospace, "SF Mono", Menlo, Consolas, monospace;
  font-size: 11px; font-weight: 700;
  color: var(--accent);
  letter-spacing: 0.08em;
  margin-bottom: 8px;
  display: block;
}
.lp-tour-card h3 {
  font-size: 15px; color: var(--ink); margin-bottom: 8px;
}
.lp-tour-card p {
  font-size: 12.5px; color: var(--muted); line-height: 1.55;
}

/* ── §4 INBOX HIGHLIGHT ── */

.s-inbox { padding: 70px 0; }
.s-inbox-inner { max-width: var(--max-w); margin: 0 auto; padding: 0 var(--inner-pad); }
.s-inbox-head { text-align: center; max-width: 820px; margin: 0 auto 32px; }
.s-inbox-head .eyebrow { color: var(--accent); font-size: 11.5px; letter-spacing: 0.12em; font-weight: 700; margin-bottom: 8px; }
.s-inbox-head h2 { font-size: 28px; color: var(--ink); margin-bottom: 12px; }
.s-inbox-head .lede { font-size: 15px; color: var(--muted); line-height: 1.6; }

.lp-inbox-mock {
  max-width: 1100px;
  margin: 0 auto;
  background: #FFFFFF;
  border: 1px solid #E2E6EB;
  box-shadow: 0 1px 3px rgba(15,25,35,.05);
}
.lp-inbox-tabs {
  display: flex; gap: 0;
  border-bottom: 1px solid #E2E6EB;
  padding: 0 24px;
}
.lp-inbox-tab {
  padding: 12px 18px;
  font-family: 'DM Sans', sans-serif;
  font-size: 14px; font-weight: 500;
  color: #4A5568;
  border-bottom: 2px solid transparent;
  cursor: pointer;
}
.lp-inbox-tab .ct {
  display: inline-block;
  background: #F4F5F7;
  color: #6B7A8A;
  font-size: 11px; font-weight: 700;
  padding: 1px 7px;
  margin-left: 6px;
}
.lp-inbox-tab.is-on {
  color: #0F1923;
  border-bottom-color: #B08D57;
  font-weight: 600;
}
.lp-inbox-tab.is-on .ct {
  background: rgba(176,141,87,0.12);
  color: #B08D57;
}

.lp-inbox-section {
  padding: 12px 24px;
}
.lp-inbox-section:not(:last-child) {
  border-bottom: 1px solid #F0F2F5;
}
.lp-inbox-section.is-muted { background: #FAFBFC; padding: 16px 24px; }
.lp-inbox-section-head {
  display: flex; justify-content: space-between; align-items: center;
  padding: 4px 0 12px;
}
.lp-inbox-section-title {
  font-family: 'DM Sans', sans-serif;
  font-size: 12px; font-weight: 700; color: #6B7A8A;
  text-transform: uppercase; letter-spacing: 0.06em;
}
.lp-inbox-section-meta {
  font-size: 11.5px; color: #6B7A8A;
}
.lp-inbox-collapsed {
  font-size: 13px; color: #6B7A8A;
  margin: 4px 0 0;
}

.lp-inbox-row {
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center; gap: 16px;
  padding: 12px 0;
  border-bottom: 1px solid #F0F2F5;
}
.lp-inbox-row:last-child { border-bottom: 0; }
.lp-inbox-row.is-stale {
  background: rgba(217,119,6,0.04);
  margin: 0 -24px;
  padding: 12px 24px;
  border-bottom: 1px solid #F0F2F5;
}
.lp-inbox-row-l {
  display: flex; align-items: center; gap: 14px;
  min-width: 0;
}
.lp-inbox-row-l > div {
  min-width: 0;
}
.lp-tag {
  font-family: 'DM Sans', sans-serif;
  font-size: 9.5px; font-weight: 700;
  padding: 4px 8px; letter-spacing: 0.05em;
  color: #fff; white-space: nowrap;
  flex-shrink: 0;
}
.lp-tag.is-blue { background: #3B82F6; }
.lp-tag.is-amber { background: #D97706; }
.lp-tag.is-red { background: #DC2626; }
.lp-stale-tag {
  font-family: 'DM Sans', sans-serif;
  font-size: 9.5px; font-weight: 700;
  padding: 3px 7px;
  background: #FEF3C7; color: #92400E;
  letter-spacing: 0.04em;
  flex-shrink: 0;
}
.lp-row-id {
  font-size: 13.5px; font-weight: 600; color: #0F1923;
}
.lp-row-sub {
  font-size: 12px; color: #6B7A8A;
  margin-top: 2px;
}
.lp-inbox-row-actions {
  display: flex; gap: 6px; flex-shrink: 0;
}
.lp-act-btn {
  font-family: 'DM Sans', sans-serif;
  font-size: 12.5px; font-weight: 500;
  padding: 6px 12px;
  background: #FFFFFF;
  border: 1px solid #E2E6EB;
  color: #0F1923;
  cursor: pointer;
}
.lp-act-btn-primary {
  background: #0F1923;
  border-color: #0F1923;
  color: #FFFFFF;
}
.lp-act-btn-ghost { color: #6B7A8A; }

/* ── §5 SHIPMENTS 5 TABS ── */

.s-ship5 { padding: 70px 0; background: var(--paper-2); }
.s-ship5-inner { max-width: var(--max-w); margin: 0 auto; padding: 0 var(--inner-pad); }
.s-ship5-head { text-align: center; max-width: 760px; margin: 0 auto 32px; }
.s-ship5-head .eyebrow { color: var(--accent); font-size: 11.5px; letter-spacing: 0.12em; font-weight: 700; margin-bottom: 8px; }
.s-ship5-head h2 { font-size: 28px; color: var(--ink); margin-bottom: 12px; }
.s-ship5-head .lede { font-size: 15px; color: var(--muted); line-height: 1.6; }

.lp-ship5-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 12px;
}
.lp-ship5-card {
  background: var(--paper);
  border: 1px solid var(--line);
  padding: 22px 18px;
}
.lp-ship5-card .tn {
  font-family: ui-monospace, "SF Mono", Menlo, Consolas, monospace;
  font-size: 11px; font-weight: 700;
  color: var(--accent);
  letter-spacing: 0.08em;
  margin-bottom: 8px;
  display: block;
}
.lp-ship5-card h3 {
  font-size: 15.5px; color: var(--ink); margin-bottom: 8px;
}
.lp-ship5-card p {
  font-size: 12.5px; color: var(--muted); line-height: 1.55;
}

/* ── §6 STATE MACHINES ── */

.s-states { padding: 70px 0; }
.s-states-inner { max-width: var(--max-w); margin: 0 auto; padding: 0 var(--inner-pad); }
.s-states-head { text-align: center; max-width: 760px; margin: 0 auto 32px; }
.s-states-head .eyebrow { color: var(--accent); font-size: 11.5px; letter-spacing: 0.12em; font-weight: 700; margin-bottom: 8px; }
.s-states-head h2 { font-size: 28px; color: var(--ink); margin-bottom: 12px; }
.s-states-head .lede { font-size: 15px; color: var(--muted); line-height: 1.6; }

.lp-state-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}
.lp-state-card {
  background: var(--paper);
  border: 1px solid var(--line);
  padding: 22px;
}
.lp-state-card .lp-state-eb {
  font-family: 'DM Sans', sans-serif;
  font-size: 11px; font-weight: 700; color: var(--accent);
  letter-spacing: 0.08em;
  margin-bottom: 14px;
  text-transform: uppercase;
}
.lp-state-line {
  display: flex; align-items: center; flex-wrap: wrap;
  gap: 4px;
  margin-bottom: 14px;
}
.lp-state-line-tight {
  gap: 2px;
}
.lp-state-step {
  font-family: ui-monospace, "SF Mono", Menlo, Consolas, monospace;
  font-size: 11.5px; font-weight: 600;
  padding: 5px 9px;
  background: #F4F5F7;
  color: #4A5568;
  border: 1px solid #E2E6EB;
  white-space: nowrap;
}
.lp-state-step.is-good {
  background: #ECFDF5;
  color: #065F46;
  border-color: rgba(5,150,105,0.2);
}
.lp-state-step.is-amber {
  background: #FFFBEB;
  color: #92400E;
  border-color: rgba(217,119,6,0.2);
}
.lp-state-step.is-red {
  background: #FEF2F2;
  color: #B91C1C;
  border-color: rgba(220,53,69,0.2);
}
.lp-state-arrow {
  color: var(--muted-2);
  font-size: 14px;
  font-family: ui-monospace, "SF Mono", Menlo, Consolas, monospace;
}
.lp-state-foot {
  font-size: 12.5px; color: var(--muted);
  line-height: 1.55;
  margin: 0;
}

/* ── §7 MODES GRID (reusing existing modes-grid · widening to 4 cols) ── */

/* override the existing modes-grid for our 8 modes — use 4-col layout */
.s-modes { padding: 70px 0; background: var(--paper-2); }
.s-modes-inner { max-width: var(--max-w); margin: 0 auto; padding: 0 var(--inner-pad); }
.s-modes-head { text-align: center; max-width: 760px; margin: 0 auto 32px; }
.s-modes-head .eyebrow { color: var(--accent); font-size: 11.5px; letter-spacing: 0.12em; font-weight: 700; margin-bottom: 8px; }
.s-modes-head h2 { font-size: 28px; color: var(--ink); margin-bottom: 12px; }
.s-modes-head .lede { font-size: 15px; color: var(--muted); line-height: 1.6; }

.s-modes .modes-grid {
  grid-template-columns: repeat(4, 1fr);
  gap: 10px;
}

/* ── §8 MULTI-OPERATOR ── */

.s-multi-op { padding: 70px 0; }
.s-multi-op-inner { max-width: var(--max-w); margin: 0 auto; padding: 0 var(--inner-pad); }

/* ── §9 CONFIDENTIALITY ── */

.s-confid { padding: 70px 0; }
.s-confid-inner { max-width: var(--max-w); margin: 0 auto; padding: 0 var(--inner-pad); }
.s-confid-head { text-align: center; max-width: 760px; margin: 0 auto 32px; }
.s-confid-head .eyebrow { color: var(--accent); font-size: 11.5px; letter-spacing: 0.12em; font-weight: 700; margin-bottom: 8px; }
.s-confid-head h2 { font-size: 28px; color: var(--ink); margin-bottom: 12px; }
.s-confid-head .lede { font-size: 15px; color: var(--muted); line-height: 1.6; }

/* ── §10 INCOTERMS ── */

.s-incoterms { padding: 70px 0; background: var(--paper-2); }
.s-incoterms-inner { max-width: var(--max-w); margin: 0 auto; padding: 0 var(--inner-pad); }
.s-incoterms-head { text-align: center; max-width: 820px; margin: 0 auto 32px; }
.s-incoterms-head .eyebrow { color: var(--accent); font-size: 11.5px; letter-spacing: 0.12em; font-weight: 700; margin-bottom: 8px; }
.s-incoterms-head h2 { font-size: 28px; color: var(--ink); margin-bottom: 12px; }
.s-incoterms-head .lede { font-size: 15px; color: var(--muted); line-height: 1.6; }

.lp-inco-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
  max-width: 1100px;
  margin: 0 auto;
}
.lp-inco-card {
  background: var(--paper);
  border: 1px solid var(--line);
  padding: 26px 24px;
}
.lp-inco-eb {
  font-family: ui-monospace, "SF Mono", Menlo, Consolas, monospace;
  font-size: 12px; font-weight: 700;
  color: var(--accent);
  letter-spacing: 0.06em;
  margin-bottom: 12px;
}
.lp-inco-card h4 {
  font-size: 17px; color: var(--ink);
  margin-bottom: 10px;
}
.lp-inco-card p {
  font-size: 13.5px; color: var(--muted);
  line-height: 1.6;
  margin-bottom: 18px;
}
.lp-inco-fields {
  background: var(--paper-2);
  border: 1px solid var(--line);
  padding: 12px 14px;
}
.lp-inco-row {
  display: grid; grid-template-columns: 110px 1fr;
  gap: 10px; padding: 5px 0;
  border-bottom: 1px solid var(--line-2);
  font-size: 12.5px;
}
.lp-inco-row:last-child { border-bottom: 0; }
.lp-inco-row .k {
  font-family: 'DM Sans', sans-serif;
  color: var(--muted-2);
  font-weight: 600;
  text-transform: uppercase;
  font-size: 10.5px;
  letter-spacing: 0.05em;
  align-self: center;
}
.lp-inco-row .v {
  color: var(--ink);
  font-size: 12.5px;
}

/* ── §11 MOBILE ── */

.s-mobile { padding: 70px 0; }
.s-mobile-inner { max-width: var(--max-w); margin: 0 auto; padding: 0 var(--inner-pad); }
.s-mobile .mobile-foot {
  font-family: 'DM Sans', sans-serif;
  font-size: 10.5px; color: var(--muted-2);
  letter-spacing: 0.04em;
  margin-top: 14px;
  text-align: center;
}

/* ── §12 TIER GATING ── */

.s-tiers { padding: 70px 0; }
.s-tiers-inner { max-width: var(--max-w); margin: 0 auto; padding: 0 var(--inner-pad); }
.s-tiers-head { text-align: center; max-width: 820px; margin: 0 auto 32px; }
.s-tiers-head .eyebrow { color: var(--accent); font-size: 11.5px; letter-spacing: 0.12em; font-weight: 700; margin-bottom: 8px; }
.s-tiers-head h2 { font-size: 28px; color: var(--ink); margin-bottom: 12px; }
.s-tiers-head .lede { font-size: 15px; color: var(--muted); line-height: 1.6; }

.lp-roadmap-pill {
  display: inline-block;
  margin-left: 6px;
  font-family: 'DM Sans', sans-serif;
  font-size: 9.5px; font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  padding: 2px 6px;
  background: #FEF3C7;
  color: #92400E;
}

.lp-tier-note {
  max-width: 900px;
  margin: 24px auto 0;
  font-size: 12.5px;
  color: var(--muted-2);
  line-height: 1.6;
  text-align: center;
}

/* ── §13 ROADMAP ── */

.s-roadmap { padding: 70px 0; }
.s-roadmap-inner { max-width: var(--max-w); margin: 0 auto; padding: 0 var(--inner-pad); }
.s-roadmap-head { text-align: center; max-width: 820px; margin: 0 auto 32px; }
.s-roadmap-head .eyebrow { color: var(--accent); font-size: 11.5px; letter-spacing: 0.12em; font-weight: 700; margin-bottom: 8px; }
.s-roadmap-head h2 { font-size: 28px; color: var(--ink); margin-bottom: 12px; }
.s-roadmap-head .lede { font-size: 15px; color: var(--muted); line-height: 1.6; }

.s-roadmap .roadmap-list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  max-width: 1100px;
  margin: 0 auto;
}
.s-roadmap .roadmap-item {
  display: grid; grid-template-columns: 48px 1fr;
  gap: 14px;
  padding: 20px 22px;
  background: var(--paper);
  border: 1px solid var(--line);
}
.s-roadmap .rm-num {
  font-family: ui-monospace, "SF Mono", Menlo, Consolas, monospace;
  font-size: 22px; font-weight: 700;
  color: var(--accent);
  line-height: 1;
}
.s-roadmap .roadmap-item h4 {
  font-size: 14.5px;
  color: var(--ink);
  margin-bottom: 6px;
}
.s-roadmap .roadmap-item p {
  font-size: 12.5px;
  color: var(--muted);
  line-height: 1.55;
}

/* ── CTA ── */

.s-cta { padding: 80px 0; background: var(--ink); color: #fff; text-align: center; }
.s-cta-inner { max-width: 720px; margin: 0 auto; padding: 0 var(--inner-pad); }
.s-cta h2 { color: #fff; margin-bottom: 16px; font-size: 32px; }
.s-cta p { color: rgba(255,255,255,0.8); font-size: 16px; line-height: 1.6; margin-bottom: 24px; }
.s-cta .cta-row { margin-bottom: 20px; }
.s-cta .link-arrow {
  font-size: 14px;
  color: var(--accent);
  font-weight: 500;
}

/* ghost-inv = inverted ghost button for dark backgrounds (CTA) */
.btn-ghost-inv {
  background: transparent;
  border: 1px solid rgba(255,255,255,0.3);
  color: #FFFFFF;
  padding: 12px 24px;
  font-family: 'DM Sans', sans-serif;
  font-size: 14px;
  font-weight: 500;
  transition: border-color 120ms, background 120ms;
  text-decoration: none;
  display: inline-block;
}
.btn-ghost-inv:hover {
  border-color: rgba(255,255,255,0.6);
  background: rgba(255,255,255,0.05);
}
.btn-ghost-inv.btn-lg {
  padding: 14px 28px;
  font-size: 15px;
}

/* ── MOBILE BREAKPOINTS ── */

@media (max-width: 900px) {
  .lp-queue { grid-template-columns: 1fr; }
}

@media (max-width: 768px) {
  .lp-nav-strip { padding: 0 8px; }
  .lp-nav-pill { padding: 10px 10px; font-size: 12.5px; }
  .lp-nav-pill.is-end { display: none; }
  .lp-page-body { padding: 16px 14px 18px; }
  .lp-map-canvas { height: 220px; }

  .lp-tour-grid { grid-template-columns: 1fr 1fr; }
  .lp-ship5-grid { grid-template-columns: 1fr 1fr; }
  .lp-state-grid { grid-template-columns: 1fr; }
  .lp-state-line { gap: 3px; }
  .lp-state-step { font-size: 10.5px; padding: 4px 7px; }
  .s-modes .modes-grid { grid-template-columns: 1fr 1fr; }
  .lp-inco-grid { grid-template-columns: 1fr; }
  .s-roadmap .roadmap-list { grid-template-columns: 1fr; }
  .lp-inbox-tabs { padding: 0 14px; overflow-x: auto; scrollbar-width: none; }
  .lp-inbox-tabs::-webkit-scrollbar { display: none; }
  .lp-inbox-tab { padding: 10px 12px; font-size: 13px; }
  .lp-inbox-section { padding: 12px 14px; }
  .lp-inbox-row { grid-template-columns: 1fr; gap: 10px; }
  .lp-inbox-row-actions { flex-wrap: wrap; }
  .lp-inbox-row-l { flex-wrap: wrap; }
  .lp-inbox-row.is-stale { margin: 0 -14px; padding: 12px 14px; }

  .s-centerpiece .cockpit-chrome { flex-direction: column; align-items: flex-start; gap: 8px; }
  .s-centerpiece .cockpit-portal-label { margin-left: 0; border-left: 0; padding-left: 0; }
  .lp-need-row, .lp-risk-row { grid-template-columns: 1fr; }
  .lp-need-act { justify-self: stretch; }
  .lp-need-act .lp-mini-btn { flex: 1; text-align: center; }
}

/* ============== PROBLEM (3 cards · pain-led) ============== */
.s-problem { padding: 96px 0; }
.s-problem-inner { max-width: var(--max-w); margin: 0 auto; padding: 0 var(--inner-pad); }
.s-problem-head { max-width: 860px; margin-bottom: 56px; }
.s-problem-head h2 { margin-bottom: 16px; }
.problem-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.problem-card {
  background: var(--paper); border: 1px solid var(--line);
  padding: 32px 28px;
  display: flex; flex-direction: column; gap: 16px;
}
.pc-num { font-family: var(--ff-mono); font-size: 13px; font-weight: 600; color: var(--accent); letter-spacing: 0.1em; }
.problem-card h3 { font-size: 22px; font-weight: 600; letter-spacing: -0.01em; line-height: 1.3; color: var(--ink); }
.problem-card p { font-size: 16.5px; line-height: 1.65; color: var(--muted); }
.pc-diagram {
  margin-top: 4px; padding-top: 16px; border-top: 1px dashed var(--line);
  font-family: var(--ff-mono); font-size: 13px; color: var(--muted-2);
  display: flex; flex-direction: column; gap: 8px;
}
.pc-diagram .row { display: flex; align-items: center; gap: 8px; flex-wrap: wrap; }
.pc-diagram .pill {
  padding: 2px 7px; border: 1px solid var(--line);
  background: var(--paper);
}
.pc-diagram .pill.is-edma { background: var(--accent-soft-2); color: var(--accent); border-color: rgba(176,141,87,0.3); }
.pc-diagram .pill.is-dead { color: var(--muted-3); background: var(--paper-2); }
.pc-diagram .arrow { color: var(--muted-3); }
.pc-diagram .arrow.is-broken { color: var(--red); }

@media (max-width: 768px) {
  .s-problem { padding: 56px 0; }
  .problem-grid { grid-template-columns: 1fr; gap: 16px; }
  .problem-card { padding: 24px 22px; }
  .problem-card h3 { font-size: 19px; }
  .problem-card p { font-size: 15px; }

  /* ─── COMPRESSION RULE: Centerpiece (Logistics Portal · Home view with
     world map) is the hero mock — kept at full fidelity. Heavy mocks that
     duplicate the surrounding prose are hidden on mobile:
     - .lp-state-grid (6 state-machine cards with transition arrows)
     - .multi-op-visual (workspace switcher illustration)
     - .confid-grid (cross-operator confidentiality diagram)
     - .lp-inco-grid (incoterms-aware visibility examples)
     Kept: .mode-card grid (already stacks 1-col at 600px via existing
     rules — 8 mode pills are useful at-a-glance content) ─── */
  .lp-state-grid { display: none; }
  .multi-op-visual { display: none; }
  .confid-grid { display: none; }
  .lp-inco-grid { display: none; }
}
