/* ============================================================
   INDUSTRY VERTICAL SOLUTIONS — DESIGN SYSTEM (Phase A)
   Editorial dark theme · Lato + JetBrains Mono · brand-red activation
   Inherits staging tokens from the Rebate Center port.

   WCAG AA AUDIT (calculated against the 4.5:1 small-text /
   3:1 large-text thresholds)
   ----------------------------------------------------
   bg-page       #1c2025 → #ECEDEF text-primary    13.8 : 1   PASS
   bg-page       #1c2025 → #A8AEB7 text-secondary   7.5 : 1   PASS
   bg-page       #1c2025 → #6E7682 text-muted       3.7 : 1   PASS (large/UI)
   bg-card       #2a2e34 → #ECEDEF text-primary    11.0 : 1   PASS
   bg-card       #2a2e34 → #A8AEB7 text-secondary   6.0 : 1   PASS
   bg-card       #2a2e34 → #6E7682 text-muted       3.0 : 1   PASS (large only)
   bg-spec       #22262b → #ECEDEF text-primary    12.5 : 1   PASS
   bg-spec       #22262b → #A8AEB7 text-secondary   6.8 : 1   PASS
   bg-deepest    #15181c → #ECEDEF text-primary    16.2 : 1   PASS
   brand-red     #F32740 → #FFFFFF                  4.6 : 1   PASS (small)
   ============================================================ */

:root {
  /* Brand */
  --brand-red: #F32740;
  --brand-red-dark: #C5162C;
  --brand-red-hsl: 353 80% 55%;

  /* Staging dark surfaces */
  --bg-page:    #1c2025;
  --bg-card:    #2a2e34;
  --bg-spec:    #22262b;
  --bg-deepest: #15181c;

  /* Text */
  --text-primary:   #ECEDEF;
  --text-secondary: #A8AEB7;
  --text-muted:     #6E7682;

  /* Lines */
  --line:        rgba(255,255,255,0.08);
  --line-medium: rgba(255,255,255,0.14);
  --line-strong: rgba(255,255,255,0.22);

  /* Type */
  --font-body: 'Lato', system-ui, -apple-system, Segoe UI, Roboto, sans-serif;
  --font-mono: 'JetBrains Mono', ui-monospace, 'SF Mono', Consolas, monospace;

  /* Geometry */
  --radius-sm: 2px;
  --radius:    4px;
  --radius-lg: 8px;
  --container: 1280px;

  /* Vertical accent fallback (overridden by [data-vertical]) */
  --vert-accent: var(--brand-red-hsl);
  --vert-accent-soft: 353 80% 55% / 12%;
  --vert-name: "Industry";
  --vert-zone-1: 199 89% 48%;
  --vert-zone-2: 353 80% 55%;
  --vert-zone-3: 38 92% 56%;
  --vert-zone-4: 142 71% 45%;
}

/* ============================================================
   PER-VERTICAL ACCENT MODIFIERS
   ============================================================ */
main[data-vertical="cold-storage"]              { --vert-accent: 199 89% 48%; --vert-accent-soft: 199 89% 48% / 14%; --vert-name: "Cold Storage & Grocery";    --vert-zone-1: 199 89% 48%; --vert-zone-2: 353 80% 55%; --vert-zone-3: 38 92% 56%; --vert-zone-4: 142 71% 45%; }
main[data-vertical="data-center"]               { --vert-accent: 195 100% 47%; --vert-accent-soft: 195 100% 47% / 14%; --vert-name: "Data Center";                --vert-zone-1: 195 100% 47%; --vert-zone-2: 264 70% 60%; --vert-zone-3: 353 80% 55%; --vert-zone-4: 158 64% 45%; }
main[data-vertical="education"]                 { --vert-accent: 25 95% 56%; --vert-accent-soft: 25 95% 56% / 14%;     --vert-name: "Education";                  --vert-zone-1: 25 95% 56%; --vert-zone-2: 48 96% 53%; --vert-zone-3: 199 89% 48%; --vert-zone-4: 142 71% 45%; }
main[data-vertical="government-military"]       { --vert-accent: 217 91% 39%; --vert-accent-soft: 217 91% 39% / 14%;   --vert-name: "Government & Military";      --vert-zone-1: 217 91% 39%; --vert-zone-2: 353 80% 55%; --vert-zone-3: 218 18% 50%; --vert-zone-4: 38 92% 56%; }
main[data-vertical="healthcare"]                { --vert-accent: 174 71% 39%; --vert-accent-soft: 174 71% 39% / 14%;   --vert-name: "Healthcare";                 --vert-zone-1: 174 71% 39%; --vert-zone-2: 199 89% 48%; --vert-zone-3: 353 80% 55%; --vert-zone-4: 264 70% 60%; }
main[data-vertical="hospitality"]               { --vert-accent: 38 92% 50%; --vert-accent-soft: 38 92% 50% / 14%;     --vert-name: "Hospitality";                --vert-zone-1: 38 92% 50%; --vert-zone-2: 25 60% 55%; --vert-zone-3: 353 80% 55%; --vert-zone-4: 200 25% 55%; }
main[data-vertical="industrial-manufacturing"]  { --vert-accent: 16 90% 56%; --vert-accent-soft: 16 90% 56% / 14%;     --vert-name: "Industrial & Manufacturing"; --vert-zone-1: 16 90% 56%; --vert-zone-2: 353 80% 55%; --vert-zone-3: 218 15% 55%; --vert-zone-4: 48 96% 53%; }
main[data-vertical="warehouse-logistics"]       { --vert-accent: 48 96% 53%; --vert-accent-soft: 48 96% 53% / 14%;     --vert-name: "Warehouse & Logistics";      --vert-zone-1: 48 96% 53%; --vert-zone-2: 25 95% 56%; --vert-zone-3: 199 89% 48%; --vert-zone-4: 218 15% 55%; }

/* ============================================================
   RESET / BASE
   ============================================================ */
*, *::before, *::after { box-sizing: border-box; }
html, body { margin: 0; padding: 0; }
body {
  font-family: var(--font-body);
  background: var(--bg-page);
  color: var(--text-primary);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  font-size: 16px;
  line-height: 1.55;
}
a { color: inherit; text-decoration: none; }
img, svg { display: block; max-width: 100%; }
button { font: inherit; cursor: pointer; }
:focus-visible { outline: 2px solid var(--brand-red); outline-offset: 2px; border-radius: 2px; }

.container { width: 100%; max-width: var(--container); margin: 0 auto; padding: 0 32px; }
@media (max-width: 760px){ .container { padding: 0 20px; } }

/* ============================================================
   GLOW ORB — accent blob that drifts behind content on scroll.
   z-index 0; chrome/main/footer lifted to z-index 1 so opaque
   cards and all text paint on top — the glow shows only on the
   exposed page-background surface.
   ============================================================ */
.glow-orb {
  position: fixed;
  top: 0;
  left: 0;
  width: 64vw;
  height: 64vw;
  max-width: 880px;
  max-height: 880px;
  border-radius: 50%;
  background: radial-gradient(circle,
    hsl(var(--vert-accent) / 0.40) 0%,
    hsl(var(--vert-accent) / 0.18) 36%,
    transparent 70%);
  filter: blur(46px);
  pointer-events: none;
  z-index: 0;
  will-change: transform;
  transform: translate(72vw, 26vh) translate(-50%, -50%);
}
body { overflow-x: hidden; }
.promo-bar,
.site-header,
.breadcrumb,
.site-footer { position: relative; z-index: 1; }
main { position: relative; z-index: 1; }
@media print { .glow-orb { display: none !important; } }

/* ============================================================
   STAGING CHROME — promo bar, header, breadcrumb, footer
   ============================================================ */
.promo-bar {
  background: var(--bg-deepest);
  border-bottom: 1px solid var(--line);
  font-size: 12px;
  letter-spacing: 0.04em;
  color: var(--text-secondary);
}
.promo-bar__inner { display: flex; align-items: center; justify-content: space-between; padding: 8px 0; gap: 24px; }
.promo-bar__msg { font-family: var(--font-mono); text-transform: uppercase; font-size: 11px; letter-spacing: 0.12em; }
.promo-bar__msg strong { color: var(--brand-red); font-weight: 700; }
.promo-bar__links { display: flex; gap: 20px; font-size: 11px; }
.promo-bar__links a { color: var(--text-muted); transition: color .15s; }
.promo-bar__links a:hover { color: var(--text-primary); }

.site-header {
  background: var(--bg-page);
  border-bottom: 1px solid var(--line);
  position: relative;
  z-index: 20;
}
.site-header__inner { display: flex; align-items: center; gap: 40px; padding: 18px 0; }
.brand { display: flex; align-items: baseline; gap: 8px; font-weight: 900; letter-spacing: -0.02em; }
.brand__mark { color: var(--brand-red); font-size: 22px; line-height: 1; font-family: var(--font-body); }
.brand__name { color: var(--text-primary); font-size: 18px; line-height: 1; }
.brand__name em { font-style: normal; color: var(--text-muted); font-weight: 400; font-size: 11px; letter-spacing: 0.16em; text-transform: uppercase; margin-left: 4px; }
.nav { display: flex; gap: 28px; align-items: center; flex: 1; }
.nav a {
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--text-secondary);
  padding: 8px 0;
  border-bottom: 2px solid transparent;
  transition: color .15s, border-color .15s;
}
.nav a:hover { color: var(--text-primary); }
.nav a.is-active { color: var(--text-primary); border-bottom-color: var(--brand-red); }
.header-actions { display: flex; gap: 12px; align-items: center; }
.icon-btn {
  width: 36px; height: 36px; border-radius: 50%;
  display: inline-flex; align-items: center; justify-content: center;
  background: transparent; color: var(--text-secondary);
  border: 1px solid var(--line-medium);
  transition: color .15s, border-color .15s, background .15s;
}
.icon-btn:hover { color: var(--text-primary); border-color: var(--line-strong); }
@media (max-width: 1100px){ .nav { display: none; } }

.breadcrumb {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-muted);
  padding: 14px 0;
  border-bottom: 1px solid var(--line);
}
.breadcrumb a { color: var(--text-muted); transition: color .15s; }
.breadcrumb a:hover { color: var(--text-secondary); }
.breadcrumb__sep { margin: 0 10px; color: var(--text-muted); opacity: 0.6; }
.breadcrumb__current { color: var(--text-primary); }

/* ============================================================
   BUTTONS
   ============================================================ */
.btn {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 14px 26px;
  font-family: var(--font-body);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  border: 1px solid transparent;
  border-radius: var(--radius-sm);
  transition: background .15s, color .15s, border-color .15s, transform .1s;
  white-space: nowrap;
}
.btn--primary {
  background: var(--brand-red);
  color: #fff;
  border-color: var(--brand-red);
}
.btn--primary:hover { background: var(--brand-red-dark); border-color: var(--brand-red-dark); }
.btn--ghost {
  background: transparent;
  color: var(--text-primary);
  border-color: var(--line-strong);
}
.btn--ghost:hover { border-color: var(--text-primary); background: rgba(255,255,255,0.04); }
.btn:active { transform: translateY(1px); }
.btn .arrow { transition: transform .15s; }
.btn:hover .arrow { transform: translateX(3px); }

/* ============================================================
   COMMON SECTION SCAFFOLD
   ============================================================ */
.section { padding: 96px 0; border-bottom: 1px solid var(--line); }
@media (max-width: 760px){ .section { padding: 64px 0; } }

.eyebrow {
  display: block;
  margin-bottom: 12px;
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: hsl(var(--vert-accent));
  font-weight: 600;
}
.section-title {
  font-family: var(--font-body);
  font-weight: 900;
  letter-spacing: -0.02em;
  font-size: 44px;
  line-height: 1.1;
  color: var(--text-primary);
  margin: 0 0 12px;
}
.section-deck {
  font-size: 17px;
  color: var(--text-secondary);
  max-width: 720px;
  margin: 0 0 56px;
  line-height: 1.6;
}
.section-title--underline {
  display: inline-block;
  padding-bottom: 14px;
  border-bottom: 3px solid hsl(var(--vert-accent));
}
.section-title--underline + .section-deck { margin-top: 24px; }
@media (max-width: 760px){ .section-title { font-size: 32px; } .section-deck { font-size: 15px; margin-bottom: 40px; } }

/* ============================================================
   1. HERO
   ============================================================ */
.hero {
  position: relative;
  padding: 120px 0 96px;
  overflow: hidden;
  background:
    radial-gradient(ellipse 60% 80% at 80% 20%, hsl(var(--vert-accent) / 0.12), transparent 60%),
    radial-gradient(ellipse 50% 60% at 10% 90%, hsl(var(--vert-accent) / 0.06), transparent 60%),
    var(--bg-page);
  border-bottom: 1px solid var(--line);
}
.hero::before {
  content: "";
  position: absolute; inset: 0;
  background-image:
    linear-gradient(to right, var(--line) 1px, transparent 1px),
    linear-gradient(to bottom, var(--line) 1px, transparent 1px);
  background-size: 80px 80px;
  opacity: 0.4;
  pointer-events: none;
  mask-image: radial-gradient(ellipse at center, black 30%, transparent 80%);
}
.hero__grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 380px;
  gap: 64px;
  align-items: end;
  position: relative;
}
.hero__eyebrow {
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: 0.1em;
  word-spacing: -0.28em;
  text-transform: uppercase;
  color: hsl(var(--vert-accent));
  font-weight: 600;
  margin-bottom: 24px;
  display: inline-flex; align-items: center; gap: 12px;
}
.hero__eyebrow::before {
  content: "";
  width: 32px; height: 1px;
  background: hsl(var(--vert-accent));
}
.hero__title {
  font-family: var(--font-body) !important; /* CFG-TYPE-1: pin Lato; block Shopify Cormorant cascade on h1 */
  font-size: 56px;
  font-weight: 900;
  letter-spacing: -0.02em;
  line-height: 1.04;
  color: var(--text-primary);
  margin: 0 0 24px;
  text-wrap: balance;
}
/* CFG-TYPE-1 guard: no Cormorant anywhere in a vertical page's headings */
main[data-vertical] h1,
main[data-vertical] h2,
main[data-vertical] h3 { font-family: var(--font-body) !important; }
.hero__deck {
  font-size: 19px;
  color: var(--text-secondary);
  margin: 0 0 36px;
  max-width: 620px;
  line-height: 1.55;
}
.hero__cta-row { display: flex; gap: 14px; flex-wrap: wrap; }
/* CFG-GHOST-1: white ghost button — visible on dark hero background */
.hero__cta-row .btn--ghost {
  color: #fff;
  border-color: #fff;
  background: transparent;
}
.hero__cta-row .btn--ghost:hover {
  background: rgba(255,255,255,0.1);
  border-color: #fff;
}

.info-card {
  background: var(--bg-card);
  border: 1px solid var(--line);
  border-top: 3px solid hsl(var(--vert-accent));
  padding: 28px 28px 22px;
  border-radius: var(--radius);
  display: flex; flex-direction: column; gap: 22px;
}
.info-card__label {
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--text-muted);
}
.stat {
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: baseline;
  gap: 16px;
  padding-bottom: 18px;
  border-bottom: 1px solid var(--line);
}
.stat:last-child { border-bottom: 0; padding-bottom: 0; }
.stat__value {
  font-family: var(--font-mono);
  font-size: 26px;
  font-weight: 700;
  color: var(--text-primary);
  letter-spacing: -0.01em;
  white-space: nowrap;
}
.stat__label {
  font-size: 13px;
  color: var(--text-secondary);
  line-height: 1.4;
  text-align: right;
  max-width: 180px;
}

@media (max-width: 1100px){
  .hero__grid { grid-template-columns: 1fr; }
  .hero__title { font-size: 44px; }
}
@media (max-width: 760px){
  .hero { padding: 80px 0 64px; }
  .hero__title { font-size: 34px; }
  .hero__deck { font-size: 16px; }
}

/* ============================================================
   2. ZONE CARDS
   ============================================================ */
.zones {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 20px;
}
@media (max-width: 1100px){ .zones { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 760px){ .zones { grid-template-columns: 1fr; } }

.zone-card {
  background: var(--bg-card);
  border: 1px solid var(--line);
  border-left: 3px solid hsl(var(--vert-accent));
  border-radius: var(--radius);
  padding: 24px 26px;
  display: flex; flex-direction: column; gap: 12px;
  transition: border-color .15s, transform .15s;
}
.zone-card:hover { transform: translateY(-2px); }
.zone-card[data-zone="1"] { border-left-color: hsl(var(--vert-zone-1)); }
.zone-card[data-zone="2"] { border-left-color: hsl(var(--vert-zone-2)); }
.zone-card[data-zone="3"] { border-left-color: hsl(var(--vert-zone-3)); }
.zone-card[data-zone="4"] { border-left-color: hsl(var(--vert-zone-4)); }
.zone-card[data-zone="5"] { border-left-color: hsl(var(--vert-zone-1)); }
.zone-card[data-zone="6"] { border-left-color: hsl(var(--vert-zone-3)); }
.zone-card[data-zone="7"] { border-left-color: hsl(var(--vert-zone-4)); }
.zone-card--wide { grid-column: span 2; }
@media (max-width: 1100px){ .zone-card--wide { grid-column: span 2; } }
@media (max-width: 760px){ .zone-card--wide { grid-column: span 1; } }

.zone-card__num {
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  font-weight: 700;
  color: var(--text-muted);
}
.zone-card[data-zone="1"] .zone-card__num { color: hsl(var(--vert-zone-1)); }
.zone-card[data-zone="2"] .zone-card__num { color: hsl(var(--vert-zone-2)); }
.zone-card[data-zone="3"] .zone-card__num { color: hsl(var(--vert-zone-3)); }
.zone-card[data-zone="4"] .zone-card__num { color: hsl(var(--vert-zone-4)); }
.zone-card[data-zone="5"] .zone-card__num { color: hsl(var(--vert-zone-1)); }
.zone-card[data-zone="6"] .zone-card__num { color: hsl(var(--vert-zone-3)); }
.zone-card[data-zone="7"] .zone-card__num { color: hsl(var(--vert-zone-4)); }
.zone-card__title {
  font-size: 20px;
  font-weight: 800;
  letter-spacing: -0.01em;
  margin: 0;
  color: var(--text-primary);
}
.zone-card__product {
  font-family: var(--font-mono);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.04em;
  color: var(--text-secondary);
  padding-bottom: 12px;
  border-bottom: 1px solid var(--line);
}
.zone-card__list { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 8px; }
.zone-card__list li {
  font-size: 14px;
  color: var(--text-secondary);
  line-height: 1.5;
  padding-left: 16px;
  position: relative;
}
.zone-card__list li::before {
  content: "";
  position: absolute;
  left: 0; top: 9px;
  width: 6px; height: 1px;
  background: var(--text-muted);
}
.zone-card--wide .zone-card__list { columns: 2; column-gap: 32px; }
@media (max-width: 760px){ .zone-card--wide .zone-card__list { columns: 1; } }

/* ============================================================
   3. PRODUCT MATRIX
   ============================================================ */
.matrix-wrap {
  background: var(--bg-card);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
}
.matrix {
  width: 100%;
  border-collapse: collapse;
  font-size: 13px;
}
.matrix thead th {
  text-align: left;
  background: var(--bg-deepest);
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  font-weight: 600;
  color: var(--text-secondary);
  padding: 14px 16px;
  border-bottom: 1px solid var(--line-medium);
  white-space: nowrap;
}
.matrix tbody td {
  padding: 14px 16px;
  border-bottom: 1px solid var(--line);
  vertical-align: top;
  color: var(--text-secondary);
}
.matrix tbody tr:last-child td { border-bottom: 0; }
.matrix tbody tr:hover td { background: var(--bg-spec); }
.matrix .product-name {
  color: var(--text-primary);
  font-weight: 700;
  letter-spacing: -0.01em;
  font-size: 14px;
}
.matrix .mono {
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: 0.02em;
  color: var(--text-primary);
  white-space: nowrap;
}
.zone-chip {
  display: inline-block;
  font-family: var(--font-mono);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 4px 8px;
  border-radius: var(--radius-sm);
  color: #0c0e10;
  white-space: nowrap;
}
.zone-chip--1 { background: hsl(var(--vert-zone-1)); }
.zone-chip--2 { background: hsl(var(--vert-zone-2)); color: #fff; }
.zone-chip--3 { background: hsl(var(--vert-zone-3)); }
.zone-chip--4 { background: hsl(var(--vert-zone-4)); color: #fff; }
.matrix-scroll { overflow-x: auto; }

/* ============================================================
   4. KEY TECH BADGES
   ============================================================ */
.tech-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 16px;
}
@media (max-width: 1100px){ .tech-grid { grid-template-columns: repeat(3, 1fr); } }
@media (max-width: 760px){ .tech-grid { grid-template-columns: repeat(2, 1fr); } }

.tech-badge {
  background: var(--bg-card);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 24px 20px;
  display: flex; flex-direction: column; gap: 12px;
  transition: border-color .15s, transform .15s;
}
.tech-badge:hover { border-color: var(--line-strong); }
.tech-badge__icon {
  width: 44px; height: 44px;
  border-radius: var(--radius);
  background: hsl(var(--vert-accent) / 0.12);
  color: hsl(var(--vert-accent));
  display: inline-flex; align-items: center; justify-content: center;
}
.tech-badge__icon svg { width: 22px; height: 22px; }
.tech-badge__title {
  font-size: 15px;
  font-weight: 800;
  letter-spacing: -0.005em;
  color: var(--text-primary);
  margin: 0;
}
.tech-badge__desc {
  font-size: 13px;
  color: var(--text-secondary);
  line-height: 1.5;
  margin: 0;
}

/* ============================================================
   5. APPLICATION SPOTLIGHT
   ============================================================ */
.spotlight-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
@media (max-width: 1100px){ .spotlight-grid { grid-template-columns: 1fr; } }

.spotlight-card {
  background: var(--bg-card);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  display: flex; flex-direction: column;
}
.spotlight-card__media {
  aspect-ratio: 16 / 10;
  background:
    linear-gradient(135deg, hsl(var(--vert-accent) / 0.18), hsl(var(--vert-accent) / 0.04)),
    var(--bg-spec);
  display: flex; align-items: center; justify-content: center;
  position: relative;
  border-bottom: 1px solid var(--line);
}
.spotlight-card__media svg {
  width: 64px; height: 64px;
  color: hsl(var(--vert-accent));
  opacity: 0.85;
}
.spotlight-card__media::after {
  content: attr(data-caption);
  position: absolute; bottom: 12px; left: 14px;
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--text-muted);
}
.spotlight-card__body { padding: 24px 26px 26px; display: flex; flex-direction: column; gap: 10px; }
.spotlight-card__title {
  font-size: 18px;
  font-weight: 800;
  letter-spacing: -0.01em;
  margin: 0;
}
.spotlight-card__desc { font-size: 14px; color: var(--text-secondary); line-height: 1.55; margin: 0; }
.spotlight-card__meta {
  margin-top: 12px;
  padding-top: 14px;
  border-top: 1px solid var(--line);
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: hsl(var(--vert-accent));
  font-weight: 600;
}

/* ============================================================
   6. VALUE PROP BANNER
   ============================================================ */
.value-banner {
  background:
    linear-gradient(120deg, hsl(var(--vert-accent) / 0.18) 0%, transparent 55%),
    linear-gradient(240deg, hsl(var(--brand-red-hsl) / 0.05) 0%, transparent 50%),
    var(--bg-card);
  border: 1px solid var(--line-medium);
  border-top: 3px solid hsl(var(--vert-accent));
  border-radius: var(--radius);
  padding: 56px 56px;
  display: grid;
  grid-template-columns: minmax(0, 1.4fr) minmax(0, 1fr);
  gap: 56px;
  align-items: center;
}
@media (max-width: 1100px){ .value-banner { grid-template-columns: 1fr; padding: 40px; gap: 32px; } }
.value-banner__title {
  font-size: 36px;
  font-weight: 900;
  letter-spacing: -0.02em;
  line-height: 1.1;
  margin: 0 0 16px;
}
.value-banner__body { font-size: 16px; color: var(--text-secondary); line-height: 1.6; margin: 0; }
.value-banner__metrics { display: flex; flex-direction: column; gap: 16px; }
.value-metric {
  background: rgba(0,0,0,0.25);
  border: 1px solid var(--line);
  border-left: 3px solid hsl(var(--vert-accent));
  border-radius: var(--radius);
  padding: 18px 22px;
}
.value-metric__num {
  font-family: var(--font-mono);
  font-size: 24px;
  font-weight: 700;
  color: var(--text-primary);
  letter-spacing: -0.01em;
}
.value-metric__label {
  font-size: 13px;
  color: var(--text-secondary);
  margin-top: 2px;
}

/* ============================================================
   7. PROCUREMENT STEPS
   ============================================================ */
.procurement-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
@media (max-width: 1100px){ .procurement-grid { grid-template-columns: 1fr; } }

.proc-step {
  background: var(--bg-card);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 32px 28px;
  position: relative;
}
.proc-step__num {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  font-weight: 700;
  color: hsl(var(--vert-accent));
  margin-bottom: 14px;
  display: block;
}
.proc-step__title {
  font-size: 20px;
  font-weight: 800;
  letter-spacing: -0.01em;
  margin: 0 0 10px;
}
.proc-step__desc { font-size: 14px; color: var(--text-secondary); line-height: 1.55; margin: 0; }
.proc-step__big {
  position: absolute;
  top: 22px; right: 24px;
  font-family: var(--font-mono);
  font-size: 56px;
  font-weight: 700;
  color: var(--text-primary);
  opacity: 0.06;
  letter-spacing: -0.04em;
  line-height: 1;
}

/* Procurement as a 3-step infographic flow */
.proc-step__icon {
  width: 46px; height: 46px;
  border-radius: var(--radius);
  background: hsl(var(--vert-accent) / 0.12);
  color: hsl(var(--vert-accent));
  display: inline-flex; align-items: center; justify-content: center;
  margin-bottom: 18px;
}
.proc-step__icon svg { width: 23px; height: 23px; }
.procurement-grid--flow { position: relative; }
.procurement-grid--flow .proc-step:not(:last-child)::after {
  content: "";
  position: absolute;
  right: -15px; top: 50%;
  width: 13px; height: 13px;
  border-top: 2.5px solid hsl(var(--vert-accent));
  border-right: 2.5px solid hsl(var(--vert-accent));
  transform: translateY(-50%) rotate(45deg);
  z-index: 3;
}
@media (max-width: 1100px){
  .procurement-grid--flow .proc-step:not(:last-child)::after {
    right: 50%; top: auto; bottom: -14px;
    transform: translateX(50%) rotate(135deg);
  }
}
.proc-foot {
  display: flex; align-items: center; gap: 14px; flex-wrap: wrap;
  margin-top: 24px;
  padding: 16px 22px;
  background: var(--bg-deepest);
  border: 1px solid var(--line);
  border-left: 3px solid hsl(var(--vert-accent));
  border-radius: var(--radius);
}
.proc-foot__icon { color: hsl(var(--vert-accent)); display: inline-flex; flex-shrink: 0; }
.proc-foot__icon svg { width: 20px; height: 20px; }
.proc-foot__text { font-size: 14px; color: var(--text-secondary); line-height: 1.5; }
.proc-foot__text strong { color: var(--text-primary); font-weight: 700; }

/* ============================================================
   8. ALG ADVANTAGE / CLOSING CTA
   ============================================================ */
.advantage-strip {
  background: var(--bg-deepest);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 36px 40px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 28px;
}
@media (max-width: 1100px){ .advantage-strip { grid-template-columns: repeat(2, 1fr); padding: 28px; } }
@media (max-width: 760px){ .advantage-strip { grid-template-columns: 1fr; } }

.advantage-pillar { display: flex; flex-direction: column; gap: 6px; }
.advantage-pillar__num {
  font-family: var(--font-mono);
  font-size: 28px;
  font-weight: 700;
  letter-spacing: -0.02em;
  color: var(--brand-red);
  line-height: 1;
}
.advantage-pillar__label {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--text-secondary);
}
.advantage-pillar__desc {
  font-size: 13px;
  color: var(--text-secondary);
  line-height: 1.5;
}

.closing-cta {
  margin-top: 36px;
  background: var(--brand-red);
  color: #fff;
  padding: 36px 44px;
  border-radius: var(--radius);
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 28px;
  align-items: center;
}
@media (max-width: 1100px){ .closing-cta { grid-template-columns: 1fr; padding: 32px; } }
.closing-cta__title {
  font-size: 28px;
  font-weight: 900;
  letter-spacing: -0.02em;
  margin: 0 0 4px;
  color: #fff;
}
.closing-cta__deck { font-size: 15px; opacity: 0.9; margin: 0; }
.closing-cta__buttons { display: flex; gap: 12px; flex-wrap: wrap; }
.closing-cta .btn--primary { background: #fff; color: var(--brand-red); border-color: #fff; }
.closing-cta .btn--primary:hover { background: rgba(255,255,255,0.92); border-color: rgba(255,255,255,0.92); }
.closing-cta .btn--ghost { color: #fff; border-color: rgba(255,255,255,0.5); }
.closing-cta .btn--ghost:hover { border-color: #fff; background: rgba(255,255,255,0.08); }

/* ============================================================
   FOOTER
   ============================================================ */
.site-footer {
  background: var(--bg-deepest);
  color: var(--text-secondary);
  padding: 64px 0 32px;
  border-top: 1px solid var(--line);
}
.site-footer__top {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 48px;
  padding-bottom: 40px;
  border-bottom: 1px solid var(--line);
}
@media (max-width: 1100px){ .site-footer__top { grid-template-columns: repeat(2, 1fr); gap: 32px; } }
@media (max-width: 760px){ .site-footer__top { grid-template-columns: 1fr; } }
.site-footer h4 {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin: 0 0 18px;
  font-weight: 600;
}
.site-footer ul { list-style: none; margin: 0; padding: 0; display: flex; flex-direction: column; gap: 10px; }
.site-footer a { font-size: 14px; color: var(--text-secondary); transition: color .15s; }
.site-footer a:hover { color: var(--text-primary); }
.site-footer__copy { display: flex; flex-direction: column; gap: 14px; max-width: 360px; }
.site-footer__copy p { font-size: 13px; line-height: 1.6; color: var(--text-muted); margin: 0; }
.site-footer__bottom {
  display: flex; justify-content: space-between; align-items: center;
  padding-top: 24px;
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-muted);
}
@media (max-width: 760px){ .site-footer__bottom { flex-direction: column; gap: 8px; align-items: flex-start; } }

/* ============================================================
   CALLOUT (dark inline pull)
   ============================================================ */
.callout-dark {
  background: var(--bg-deepest);
  border: 1px solid var(--line);
  border-left: 3px solid hsl(var(--vert-accent));
  border-radius: var(--radius);
  padding: 28px 32px;
  margin-top: 32px;
}
.callout-dark__title {
  font-size: 17px;
  font-weight: 800;
  letter-spacing: -0.01em;
  margin: 0 0 8px;
}
.callout-dark__body { font-size: 14px; color: var(--text-secondary); line-height: 1.6; margin: 0; }

/* ============================================================
   PRINT STYLES — neutralize for specifier hand-off
   ============================================================ */
@media print {
  :root {
    --bg-page: #ffffff;
    --bg-card: #ffffff;
    --bg-spec: #f5f5f5;
    --bg-deepest: #ffffff;
    --text-primary: #111;
    --text-secondary: #444;
    --text-muted: #777;
    --line: rgba(0,0,0,0.12);
    --line-medium: rgba(0,0,0,0.2);
    --line-strong: rgba(0,0,0,0.32);
  }
  body { background: #fff; color: #111; }
  .promo-bar, .site-header, .breadcrumb, .closing-cta, .hero__cta-row, .header-actions { display: none !important; }
  .hero { padding: 24pt 0; background: none; }
  .hero::before { display: none; }
  .section { padding: 24pt 0; border-bottom: 1px solid #ccc; page-break-inside: avoid; }
  .matrix tbody tr:hover td { background: transparent; }
  .zone-card, .tech-badge, .spotlight-card, .proc-step, .matrix-wrap, .info-card, .value-banner, .advantage-strip, .callout-dark {
    box-shadow: none;
    border-color: #ccc;
  }
  .closing-cta { background: #fff; color: #111; }
  a { color: #111; text-decoration: none; }
  .btn { display: none; }
  .site-footer { background: #fff; color: #111; padding: 18pt 0; }
}

/* ALG canon: Ⓐ glyph = brand-red span (brand-mark rule). Per-vertical accents SANCTIONED (CFG-VERT-1); brand red wins on CTAs/activation. */
.aa{ color: var(--brand-red); font-style: normal; }

/* CFG-SHIELD-1 v2: .shields-bar = horizontal wrapping badge row in hero left column */
.shields-bar {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 12px 18px;
  margin-top: 24px;
}
.shield-chip {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  white-space: nowrap;
  font-family: 'Lato', system-ui, sans-serif;
  font-weight: 600;
  font-size: 13px;
  line-height: 1;
  color: #fff;
}
.shield-chip svg {
  width: 18px;
  height: 18px;
  flex: none;
  color: hsl(var(--vert-accent));
  stroke: hsl(var(--vert-accent));
}
