/* ================================================================
   DESIGN TOKENS — Atrius Brand System
   Brand guidelines: IBM Plex Sans · White-first · Tri-color gradient
   at portfolio level · Single-family color on product surfaces
   ================================================================ */
#atrius-homepage-draft-main {
  /* Neutrals */
  --ink:       #0A0A0A;
  --ink-80:    #1F2937;
  --ink-60:    #4B5563;
  --ink-40:    #9CA3AF;
  --ink-10:    #E5E7EB;
  --surface:   #F8F9FA;
  --white:     #FFFFFF;

  /* Building Performance — Teal */
  --teal:      #009090;
  --teal-lt:   #4FAEB2;
  --teal-50:   #E0EDEE;
  --teal-700:  #057472;
  --teal-900:  #004843;

  /* Enterprise Operations — Blue */
  --blue:      #0090FF;
  --blue-lt:   #50B1FF;
  --blue-50:   #D4ECFF;
  --blue-900:  #0041AE;

  /* Personal Experiences — Navy / Indigo (anchors at 800) */
  --navy:      #000090;
  --navy-mid:  #3A13A7;
  --navy-lt:   #6F51BC;
  --navy-50:   #E9E3F6;
  --navy-900:  #000465;

  /* Facilities family accent — sourced from Atrius Facilities icon SVG gradient */
  --facilities-accent: #1747AA;
  --facilities-glow:   rgba(23,71,170,0.25);

  /* Portfolio tri-color gradient: blue → teal → navy/indigo */
  --grad:      linear-gradient(90deg, #0090FF 0%, #009090 50%, #3A13A7 100%);
  --grad-diag: linear-gradient(135deg, #0090FF 0%, #009090 50%, #3A13A7 100%);

  /* Shimmer stops (dark only — midtone, animated) */
  --shimmer-stops: #50B1FF 0%, #4FAEB2 25%, #8F77C7 50%, #4FAEB2 75%, #50B1FF 100%;

  /* Aliases for design system parity */
  --ink-05:    #F3F4F6;
  --ink-30:    #D1D5DB;
  --navy-deep:    #3A13A7;
  --navy-shimmer: #8F77C7;

  /* Shadows */
  --shadow-sm: 0 1px 3px rgba(0,0,0,0.08), 0 1px 2px rgba(0,0,0,0.06);
  --shadow-md: 0 4px 12px rgba(0,0,0,0.10), 0 2px 4px rgba(0,0,0,0.06);
  --shadow-lg: 0 16px 40px rgba(0,0,0,0.12), 0 4px 8px rgba(0,0,0,0.06);

  /* Dark canvas (hero, spotlight sections) */
  --dark:      #04040F;
  --dark-2:    #07071A;
  --dark-3:    #0A0A24;

  /* Lines */
  --line:      #E5E7EB;
  --line-dark: rgba(255,255,255,0.09);
  --font-mono: 'IBM Plex Mono', monospace;
}

/* ================================================================
   BASE
   ================================================================ */
#atrius-homepage-draft-main,
#atrius-homepage-draft-main *,
#atrius-homepage-draft-main *::before,
#atrius-homepage-draft-main *::after { box-sizing: border-box; }
#atrius-homepage-draft-main {
  margin: 0;
  padding: 0;
  font-family: 'IBM Plex Sans', -apple-system, sans-serif;
  background: var(--white);
  color: var(--ink);
  font-size: 16px;
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
body.atrius-homepage-draft {
  overflow-x: hidden;
}
#atrius-homepage-draft-main .mono { font-family: 'IBM Plex Mono', monospace; }
#atrius-homepage-draft-main .container { max-width: 1280px; margin: 0 auto; padding: 0 64px; }

/* ================================================================
   HEADER-EMPHASIS SHIMMER — drifting light pool (design-system standard,
   see context/shimmer-standard.md). Emphasis word only. Identical motion on
   light + dark; only the stop set + sheen change. Supersedes the old linear
   scroll shimmer (which read as an LED marquee). */
@property --shim-px { syntax:'<percentage>'; inherits:true; initial-value:50%; }
@property --shim-py { syntax:'<percentage>'; inherits:true; initial-value:50%; }
#atrius-homepage-draft-main .grad-text,
#atrius-homepage-draft-main .hl-dark {
  background-image:
    radial-gradient(58% 150% at var(--shim-px) var(--shim-py), var(--shim-sheen), rgba(255,255,255,0) 56%),
    linear-gradient(102deg, var(--shim-2) 0%, var(--shim-1) 22%, var(--shim-3) 52%, var(--shim-1) 82%, var(--shim-2) 100%);
  background-size: 100% 100%, 180% auto;
  background-position: 0 0, 50% center;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: atrius-shim-px 8.3s ease-in-out infinite alternate,
             atrius-shim-py 12.7s ease-in-out infinite alternate,
             atrius-shim-base 30s linear infinite;
}
/* On light — full-saturation brand stops, sheen softened so type stays legible */
#atrius-homepage-draft-main .grad-text { --shim-1:#0090FF; --shim-2:#009090; --shim-3:#3A13A7; --shim-sheen:rgba(255,255,255,0.45); }
@keyframes atrius-shim-px   { from { --shim-px:14%; } to { --shim-px:86%; } }
@keyframes atrius-shim-py   { from { --shim-py:6%;  } to { --shim-py:94%; } }
@keyframes atrius-shim-base { to { background-position: 0 0, 230% center; } }
@media (prefers-reduced-motion: reduce) {
  #atrius-homepage-draft-main .grad-text,
  #atrius-homepage-draft-main .hl-dark { animation: none; }
}

/* ================================================================
   BUTTONS
   ================================================================ */
#atrius-homepage-draft-main .btn {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 11px 22px; border-radius: 8px;
  font-weight: 600; font-size: 14px; line-height: 1;
  text-decoration: none; border: 1px solid transparent;
  cursor: pointer; font-family: 'IBM Plex Sans', sans-serif;
  transition: transform .15s, opacity .15s, background .15s, border-color .15s;
  white-space: nowrap;
}
#atrius-homepage-draft-main .btn-primary {
  /* Solid ink — light contexts (white page backgrounds) */
  background: var(--ink); color: var(--white); border: none;
}
#atrius-homepage-draft-main .btn-primary:hover {
  background: var(--ink-80); transform: translateY(-1px);
  box-shadow: var(--shadow-md);
}
#atrius-homepage-draft-main .btn-ghost { background: transparent; color: #fff; border-color: rgba(255,255,255,0.28); }
#atrius-homepage-draft-main .btn-ghost:hover { background: rgba(255,255,255,0.09); }
/* btn-primary is now the correct name for ink fill on light */
#atrius-homepage-draft-main .btn-dark { background: var(--ink); color: #fff; }
#atrius-homepage-draft-main .btn-dark:hover { background: var(--ink-80); transform: translateY(-1px); }
/* Secondary — text + bare arrow (light context) */
#atrius-homepage-draft-main .btn-secondary {
  display: inline-flex; align-items: center; gap: 6px;
  background: none; border: none; border-radius: 0; padding: 0;
  color: var(--ink-60); font-weight: 500; font-size: 14px;
  font-family: 'IBM Plex Sans', sans-serif; cursor: pointer;
  text-decoration: none; transition: color .15s;
}
#atrius-homepage-draft-main .btn-secondary .arr {
  display: inline; transition: transform .15s;
}
#atrius-homepage-draft-main .btn-secondary:hover { color: var(--ink); }
#atrius-homepage-draft-main .btn-secondary:hover .arr { transform: translateX(4px); }
/* Secondary — dark context */
#atrius-homepage-draft-main .btn-secondary-dark {
  display: inline-flex; align-items: center; gap: 6px;
  background: none; border: none; border-radius: 0; padding: 0;
  color: rgba(255,255,255,0.65); font-weight: 500; font-size: 14px;
  font-family: 'IBM Plex Sans', sans-serif; cursor: pointer;
  text-decoration: none; transition: color .15s;
}
#atrius-homepage-draft-main .btn-secondary-dark .arr {
  display: inline; transition: transform .15s;
}
#atrius-homepage-draft-main .btn-secondary-dark:hover { color: #fff; }
#atrius-homepage-draft-main .btn-secondary-dark:hover .arr { transform: translateX(4px); }
#atrius-homepage-draft-main .btn-outline { background: transparent; color: var(--ink); border-color: var(--ink-10); }
#atrius-homepage-draft-main .btn-outline:hover { border-color: var(--ink); }
#atrius-homepage-draft-main .btn-lg { padding: 14px 28px; font-size: 15px; border-radius: 8px; }
#atrius-homepage-draft-main .btn-xl { padding: 16px 32px; font-size: 15.5px; border-radius: 8px; }
/* btn-primary-dark — white fill for CTAs on dark/hero backgrounds */
#atrius-homepage-draft-main .btn-primary-dark,
#atrius-homepage-draft-main .btn-white {
  background: #fff; color: var(--ink-80); border: none;
  position: relative; overflow: hidden;
}
#atrius-homepage-draft-main .btn-primary-dark::after,
#atrius-homepage-draft-main .btn-white::after {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(90deg, transparent 0%, rgba(255,255,255,0.5) 50%, transparent 100%);
  background-size: 200% auto;
  opacity: 0;
  animation: btn-shimmer 1.2s linear infinite;
  animation-play-state: paused;
  transition: opacity .2s;
}
#atrius-homepage-draft-main .btn-primary-dark:hover,
#atrius-homepage-draft-main .btn-white:hover {
  background: rgba(255,255,255,0.92); transform: translateY(-1px);
  box-shadow: 0 0 28px rgba(255,255,255,0.22), 0 6px 16px rgba(255,255,255,0.08);
}
#atrius-homepage-draft-main .btn-primary-dark:hover::after,
#atrius-homepage-draft-main .btn-white:hover::after {
  opacity: 1; animation-play-state: running;
}
@keyframes btn-shimmer {
  from { background-position: -100% center; }
  to   { background-position: 200% center; }
}
/* On dark — lifted hybrid stops + full sheen (shares the pool engine above) */
  #atrius-homepage-draft-main .hl-dark { --shim-1:#0090FF; --shim-2:#00A8A8; --shim-3:#7B5BD6; --shim-sheen:rgba(255,255,255,0.72); }

/* ================================================================
   1) HERO
   ================================================================ */
.hero {
  position: relative;
  min-height: 860px;
  background: var(--dark);
  color: #fff;
  overflow: hidden;
}
/* Atmospheric background */
.hero-bg {
  position: absolute; inset: 0;
  background:
    radial-gradient(ellipse 900px 600px at 85% 55%, rgba(0,144,255,0.11), transparent 65%),
    radial-gradient(ellipse 700px 500px at 10% 75%, rgba(0,144,144,0.10), transparent 65%),
    radial-gradient(ellipse 600px 400px at 55% 15%, rgba(58,19,167,0.09), transparent 60%),
    linear-gradient(165deg, #07071C 0%, #04040F 55%, #020210 100%);
}
/* Subtle dot grid */
.hero-bg::before {
  content: '';
  position: absolute; inset: 0;
  background-image: radial-gradient(circle, rgba(255,255,255,0.07) 1px, transparent 1px);
  background-size: 40px 40px;
  pointer-events: none;
}
/* Gradient edge fade on right */
.hero-bg::after {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(90deg, rgba(4,4,15,0.75) 0%, rgba(4,4,15,0.3) 45%, rgba(4,4,15,0.1) 100%);
}

.hero-content {
  position: relative; z-index: 10;
  max-width: 1440px; margin: 0 auto; padding: 0 64px;
  min-height: 860px;
  display: grid;
  grid-template-columns: 52% 48%;
  gap: 64px;
  align-items: center;
  padding-top: 140px;
  padding-bottom: 100px;
}

/* —— HERO LEFT —— */
.hero-left {}
.hero-eyebrow {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 6px 14px; border-radius: 999px;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.12);
  font-family: 'IBM Plex Mono', monospace;
  font-size: 10.5px; letter-spacing: 0.2em;
  text-transform: uppercase; color: rgba(255,255,255,0.65);
  margin-bottom: 32px; width: max-content;
}
.hero-eyebrow .dot { width: 6px; height: 6px; border-radius: 50%; display: inline-block; }
  .dot-idl {
    background: #fff;
    box-shadow: 0 0 8px rgba(255,255,255,0.6);
    animation: dot-pulse-white 7s ease-out infinite;
  }
  .dot-ca {
    background: linear-gradient(135deg, #50B1FF, #4FAEB2, #8F77C7);
    box-shadow: 0 0 8px rgba(80,177,255,0.5);
    animation: dot-pulse-grad 7s ease-out infinite 2.8s;
  }
  @keyframes dot-pulse-white {
    0%,80%,100% { box-shadow: 0 0 6px rgba(255,255,255,0.5); }
    12% { box-shadow: 0 0 0 4px rgba(255,255,255,0.15), 0 0 18px rgba(255,255,255,0.9); }
  }
  @keyframes dot-pulse-grad {
    0%,80%,100% { box-shadow: 0 0 6px rgba(80,177,255,0.5); }
    12% { box-shadow: 0 0 0 4px rgba(80,177,255,0.15), 0 0 18px rgba(80,177,255,0.8); }
  }
.hero h1 {
  font-size: 72px;
  line-height: 1.0;
  letter-spacing: -0.038em;
  font-weight: 700;
  margin: 0 0 26px;
  max-width: 640px;
  color: #fff;
}
/* The gradient emphasis line */
.hero h1 .hl {
  background: var(--grad);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  display: block;
}
.hero-sub {
  font-size: 19px; font-weight: 300;
  line-height: 1.6; color: rgba(255,255,255,0.62);
  max-width: 500px; margin: 0 0 40px;
}
.hero-ctas { display: flex; gap: 14px; align-items: center; }


/* —— HERO RIGHT: Three App Cards —— */
.hero-right {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.app-card {
  position: relative;
  border-radius: 14px;
  overflow: hidden;
  background: rgba(255,255,255,0.035);
  border: 1px solid rgba(255,255,255,0.09);
  backdrop-filter: blur(8px);
  display: grid;
  grid-template-columns: 1fr 150px;
  min-height: 160px;
  text-decoration: none; color: #fff;
  cursor: pointer;
  transition: border-color .2s, background .2s, transform .2s;
}
.app-card:hover {
  border-color: rgba(255,255,255,0.18);
  background: rgba(255,255,255,0.055);
  transform: translateX(6px);
}
.app-card.ac-teal:hover { border-color: rgba(0,144,144,0.5);
  box-shadow: -4px 0 20px rgba(0,144,144,0.15), 0 0 30px rgba(0,144,144,0.08); }
.app-card.ac-blue:hover { border-color: rgba(23,71,170,0.5);
  box-shadow: -4px 0 20px rgba(23,71,170,0.2), 0 0 30px rgba(23,71,170,0.1); }
.app-card.ac-navy:hover { border-color: rgba(111,81,188,0.5);
  box-shadow: -4px 0 20px rgba(111,81,188,0.18), 0 0 30px rgba(111,81,188,0.1); }
/* Left accent bar */
.app-card::before {
  content: '';
  position: absolute; left: 0; top: 0; bottom: 0; width: 3px;
}
.app-card.ac-teal::before  { background: var(--teal);    box-shadow: 2px 0 14px rgba(0,144,144,0.45); }
.app-card.ac-blue::before  { background: var(--facilities-accent); box-shadow: 2px 0 14px rgba(23,71,170,0.5); }
.app-card.ac-navy::before  { background: var(--navy-lt); box-shadow: 2px 0 14px rgba(111,81,188,0.5); }

/* Card body */
.ac-body {
  padding: 22px 20px 22px 26px;
  display: flex; flex-direction: column; justify-content: center;
  position: relative;
}
.ac-family {
  font-family: 'IBM Plex Mono', monospace;
  font-size: 9.5px; letter-spacing: 0.2em; text-transform: uppercase;
  margin-bottom: 5px;
}
.app-card.ac-teal .ac-family  { color: rgba(79,174,178,0.85); }
.app-card.ac-blue .ac-family  { color: rgba(48,128,220,0.85); }
.app-card.ac-navy .ac-family  { color: rgba(111,81,188,0.85); }

.ac-name {
  font-size: 20px; font-weight: 700;
  letter-spacing: -0.025em; line-height: 1.1; margin-bottom: 8px;
}
.ac-desc {
  font-size: 13.5px; font-weight: 300;
  color: rgba(255,255,255,0.52); line-height: 1.5;
}
.ac-cta {
  position: absolute; top: 20px; right: 20px;
  font-size: 20px; line-height: 1;
  opacity: 0;
  transform: translate(3px, -3px);
  transition: opacity .2s, transform .2s;
}
.app-card:hover .ac-cta { opacity: 1; transform: translate(0, 0); }
.app-card.ac-teal .ac-cta  { color: var(--teal-lt); }
.app-card.ac-blue .ac-cta  { color: rgba(80,130,220,0.85); }
.app-card.ac-navy .ac-cta  { color: var(--navy-lt); }

/* Card right panel — CSS UI illustrations */
.ac-vis {
  position: relative; overflow: hidden;
  border-left: 1px solid rgba(255,255,255,0.06);
}
.app-card.ac-teal .ac-vis { background: linear-gradient(145deg, rgba(0,144,144,0.14), rgba(0,72,67,0.22)); }
.app-card.ac-blue .ac-vis { background: linear-gradient(145deg, rgba(23,71,170,0.18), rgba(0,23,67,0.28)); }
.app-card.ac-navy .ac-vis { background: linear-gradient(145deg, rgba(58,19,167,0.20), rgba(0,4,101,0.28)); }

/* — Energy illustration — */
.vis-energy {
  position: absolute; inset: 10px;
}
.vis-e-metric {
  font-size: 10px; font-family: 'IBM Plex Mono', monospace;
  letter-spacing: 0.1em; color: rgba(0,144,144,0.8);
  text-transform: uppercase; margin-bottom: 4px;
}
.vis-e-num {
  font-size: 28px; font-weight: 700; color: #fff;
  letter-spacing: -0.03em; line-height: 1;
}
.vis-e-sub { font-size: 10px; color: rgba(0,144,144,0.75); font-family: 'IBM Plex Mono', monospace; }
.vis-e-bars {
  position: absolute; bottom: 0; left: 0; right: 0;
  display: flex; align-items: flex-end; gap: 4px; height: 64px;
}
.vis-e-bar {
  flex: 1; border-radius: 2px 2px 0 0;
  background: rgba(0,144,144,0.3); border-top: 1px solid rgba(0,144,144,0.6);
}
.vis-e-bar.hi { background: rgba(0,144,144,0.6); border-color: rgba(79,174,178,0.9); }

/* — Facilities illustration — */
.vis-floor {
  position: absolute; inset: 12px;
}
.vis-floor-label { font-size: 9px; font-family: 'IBM Plex Mono', monospace; letter-spacing: 0.14em; color: rgba(80,177,255,0.7); text-transform: uppercase; margin-bottom: 6px; }
.floor-grid {
  display: grid; grid-template-columns: repeat(3, 1fr);
  grid-template-rows: repeat(3, 1fr);
  gap: 3px; height: 100px;
}
.f-room {
  border-radius: 3px;
  background: rgba(0,144,255,0.12);
  border: 1px solid rgba(0,144,255,0.25);
}
.f-room.f-active { background: rgba(0,144,255,0.32); border-color: rgba(80,177,255,0.65); }
.f-room.f-wide { grid-column: span 2; }

/* — Wayfinder map illustration — */
.vis-map {
  position: absolute; inset: 0; overflow: hidden;
}
.vis-map-grid {
  position: absolute; inset: 0;
  background:
    repeating-linear-gradient(90deg, rgba(111,81,188,0.09) 0 1px, transparent 1px 18px),
    repeating-linear-gradient(0deg,  rgba(111,81,188,0.08) 0 1px, transparent 1px 18px);
}
.vis-map-terminal {
  position: absolute;
  border-radius: 3px;
  background: rgba(58,19,167,0.3);
  border: 1px solid rgba(111,81,188,0.45);
}
.vis-map-route {
  position: absolute; width: 2px;
  background: linear-gradient(180deg, transparent 0%, rgba(111,81,188,0.9) 50%, transparent 100%);
  border-radius: 1px;
}
.vis-map-dot {
  position: absolute;
  width: 7px; height: 7px; border-radius: 50%;
  background: var(--navy-lt);
  box-shadow: 0 0 10px rgba(111,81,188,0.9), 0 0 20px rgba(111,81,188,0.4);
}
.vis-map-pulse {
  position: absolute;
  border-radius: 50%;
  border: 1.5px solid rgba(111,81,188,0.4);
  animation: pulse-ring 2.5s ease-out infinite;
}
@keyframes pulse-ring {
  0%   { transform: translate(-50%,-50%) scale(1); opacity: 0.8; }
  100% { transform: translate(-50%,-50%) scale(2.8); opacity: 0; }
}

/* ================================================================
   2) PLATFORM CONNECTOR STRIP
   "Any building system → DataLab → Atrius Applications"
   ================================================================ */
.connector {
  background: var(--dark-2);
  border-top: 1px solid rgba(255,255,255,0.045);
  border-bottom: 1px solid rgba(255,255,255,0.045);
  overflow: hidden;
}
.connector-inner {
  max-width: 1440px; margin: 0 auto; padding: 20px 64px;
  display: grid;
  grid-template-columns: 1fr 100px 1fr 100px 1fr;
  align-items: center; gap: 0;
}
.cn-node {
  padding: 14px 20px;
  display: flex; align-items: center; gap: 14px;
}
.cn-icon {
  width: 40px; height: 40px; border-radius: 10px; flex-shrink: 0;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.1);
  display: grid; place-items: center;
  font-size: 15px;
}
.cn-icon.teal-glow { box-shadow: 0 0 20px rgba(0,144,144,0.2); border-color: rgba(0,144,144,0.3); }
.cn-icon.blue-glow { box-shadow: 0 0 20px rgba(0,144,255,0.2); border-color: rgba(0,144,255,0.3); }
.cn-icon.cn-icon-white { background: #fff; border-color: rgba(255,255,255,0.25); }

.cn-label .k {
  font-family: 'IBM Plex Mono', monospace;
  font-size: 9px; letter-spacing: 0.2em; text-transform: uppercase;
  color: rgba(255,255,255,0.35); margin-bottom: 3px;
}
.cn-label .v {
  font-size: 14px; font-weight: 600; color: rgba(255,255,255,0.88);
  letter-spacing: -0.01em;
}
.cn-label .sub {
  font-family: 'IBM Plex Mono', monospace;
  font-size: 9px; letter-spacing: 0.12em; text-transform: uppercase;
  color: rgba(255,255,255,0.32); margin-top: 2px;
}
.cn-tags { display: flex; gap: 4px; flex-wrap: wrap; margin-top: 5px; }
.cn-tag {
  font-family: 'IBM Plex Mono', monospace;
  font-size: 8.5px; letter-spacing: 0.1em; text-transform: uppercase;
  color: rgba(255,255,255,0.38); border: 1px solid rgba(255,255,255,0.1);
  padding: 2px 7px; border-radius: 999px;
}
.cn-tag.first { color: rgba(0,144,144,0.9); border-color: rgba(0,144,144,0.35); }

/* Animated rails between nodes */
.cn-rail-col {
  position: relative; height: 32px;
  display: flex; flex-direction: column; justify-content: center; gap: 7px;
  padding: 0 8px;
}
.cn-rail {
  position: relative; height: 1px;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.14) 15%, rgba(255,255,255,0.14) 85%, transparent);
  overflow: visible;
}
.cn-packet {
  position: absolute; top: 50%;
  width: 5px; height: 5px; border-radius: 50%;
  transform: translate(-50%, -50%); opacity: 0;
}
.cn-rail.rail-a .cn-packet { background: var(--teal); box-shadow: 0 0 8px rgba(0,144,144,0.8); animation: pkt-fwd 2.6s linear infinite; }
.cn-rail.rail-b .cn-packet { background: var(--blue); box-shadow: 0 0 8px rgba(0,144,255,0.8); animation: pkt-fwd 2.6s linear infinite 0.85s; }
.cn-rail.rail-c .cn-packet { background: var(--navy-lt); box-shadow: 0 0 8px rgba(111,81,188,0.8); animation: pkt-fwd 2.6s linear infinite 1.7s; }
@keyframes pkt-fwd {
  0%   { left: 0%;   opacity: 0; }
  10%  { opacity: 1; }
  90%  { opacity: 1; }
  100% { left: 100%; opacity: 0; }
}
.cn-arrow-label {
  text-align: center; font-family: 'IBM Plex Mono', monospace;
  font-size: 8px; letter-spacing: 0.14em; text-transform: uppercase;
  color: rgba(255,255,255,0.2); margin-top: 3px;
}

/* ================================================================
   3) PORTFOLIO — Three product families, equal weight
   ================================================================ */
.portfolio {
  padding: 120px 0;
  background: var(--white);
}
#atrius-homepage-draft-main .section-eyebrow {
  font-family: 'IBM Plex Mono', monospace;
  font-size: 10.5px; letter-spacing: 0.24em; text-transform: uppercase;
  color: var(--ink-40); margin-bottom: 14px;
}
#atrius-homepage-draft-main .section-title {
  font-size: 52px; line-height: 1.02;
  letter-spacing: -0.03em; font-weight: 700;
  margin: 0 0 16px; color: var(--ink);
  text-wrap: balance;
}
#atrius-homepage-draft-main .section-sub {
  font-size: 18px; font-weight: 300; line-height: 1.65;
  color: var(--ink-60); max-width: 580px;
}
.portfolio-head {
  display: grid; grid-template-columns: minmax(0, 4fr) minmax(0, 6fr);
  gap: 80px; margin-bottom: 56px; align-items: center;
}
.portfolio-grid {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.pf-card {
  border-radius: 20px; border: 1px solid var(--line);
  padding: 36px 30px;
  display: flex; flex-direction: column;
  position: relative; overflow: hidden;
  text-decoration: none; color: inherit;
  background: var(--white);
  transition: border-color .2s, box-shadow .2s, transform .22s;
}
/* Top accent rule */
.pf-card::before {
  content: '';
  position: absolute; top: 0; left: 0; right: 0; height: 3px;
  border-radius: 20px 20px 0 0;
}
.pf-card.pfc-teal::before { background: var(--teal); }
.pf-card.pfc-blue::before { background: var(--facilities-accent); }
.pf-card.pfc-navy::before { background: var(--navy-lt); }

.pf-card:hover {
  box-shadow: 0 24px 60px -18px rgba(0,0,0,0.13);
  transform: translateY(-4px);
}
.pf-card.pfc-teal:hover { border-color: var(--teal);
    box-shadow: 0 24px 60px -16px rgba(0,144,144,0.18), 0 0 0 1px rgba(0,144,144,0.12); }
  .pf-card.pfc-blue:hover { border-color: var(--facilities-accent);
    box-shadow: 0 24px 60px -16px var(--facilities-glow), 0 0 0 1px rgba(23,71,170,0.15); }
  .pf-card.pfc-navy:hover { border-color: var(--navy-lt);
    box-shadow: 0 24px 60px -16px rgba(111,81,188,0.18), 0 0 0 1px rgba(111,81,188,0.12); }

/* Faint family-color tint in top corner */
.pf-card::after {
  content: '';
  position: absolute; top: 0; right: 0;
  width: 160px; height: 120px;
  border-radius: 0 20px 0 80%;
  pointer-events: none;
}
.pf-card.pfc-teal::after { background: radial-gradient(circle at top right, rgba(0,144,144,0.06), transparent 70%); }
.pf-card.pfc-blue::after { background: radial-gradient(circle at top right, rgba(0,144,255,0.06), transparent 70%); }
.pf-card.pfc-navy::after { background: radial-gradient(circle at top right, rgba(111,81,188,0.07), transparent 70%); }

.pf-icon {
  width: 46px; height: 46px; border-radius: 12px;
  display: grid; place-items: center;
  font-size: 20px; margin-bottom: 22px; flex-shrink: 0;
}
.pf-card.pfc-teal .pf-icon { background: var(--teal-50); }
.pf-card.pfc-blue .pf-icon { background: var(--blue-50); }
.pf-card.pfc-navy .pf-icon { background: var(--navy-50); }

.pf-family {
  display: none;
  font-family: 'IBM Plex Mono', monospace;
  font-size: 9.5px; letter-spacing: 0.2em; text-transform: uppercase;
  margin-bottom: 6px;
}
.pf-card.pfc-teal .pf-family { color: var(--teal-700); }
.pf-card.pfc-blue .pf-family { color: var(--facilities-accent); }
.pf-card.pfc-navy .pf-family { color: var(--navy-mid); }

.pf-name {
  font-size: 26px; font-weight: 700; letter-spacing: -0.025em;
  line-height: 1.08; margin-bottom: 6px; color: var(--ink);
}
.pf-tagline {
  font-family: 'IBM Plex Mono', monospace;
  font-size: 10px; letter-spacing: 0.18em; text-transform: uppercase;
  color: var(--ink-40); margin-bottom: 16px;
}
.pf-desc {
  font-size: 14.5px; color: var(--ink-60);
  line-height: 1.6; font-weight: 400; flex: 1; margin-bottom: 24px;
}
.pf-chips {
  display: flex; gap: 6px; flex-wrap: wrap;
  padding-top: 6px; margin-bottom: 0; margin-top: auto;
}
.pf-chip {
  font-family: 'IBM Plex Mono', monospace;
  font-size: 9px; letter-spacing: 0.13em; text-transform: uppercase;
  padding: 4px 10px; border-radius: 999px; border: 1px solid;
}
.pf-card.pfc-teal .pf-chip { color: var(--teal); border-color: rgba(0,144,144,0.3); background: rgba(0,144,144,0.05); }
.pf-card.pfc-blue .pf-chip { color: var(--blue); border-color: rgba(0,144,255,0.3); background: rgba(0,144,255,0.05); }
.pf-card.pfc-navy .pf-chip { color: var(--navy-lt); border-color: rgba(111,81,188,0.3); background: rgba(111,81,188,0.05); }

.pf-link {
  display: inline-flex; align-items: center; gap: 7px;
  font-size: 13px; font-weight: 600; text-decoration: none;
}
.pf-card.pfc-teal .pf-link { color: var(--teal); }
.pf-card.pfc-blue .pf-link { color: var(--blue); }
.pf-card.pfc-navy .pf-link { color: var(--navy-lt); }

/* ── DataLab foundation — the layer the three families are built on.
   Styling adapted from the Distech "Independent Data Layer" band:
   full-width thin layer, centered text, subtle data-surface grid +
   drifting particle field. Atrius treatment: tri-color (portfolio-level
   gradient is the one place mixing is allowed) instead of Distech cyan. */

/* Bridge: three short rails descending from each card into the band */
.pf-bridge {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px;
  margin: 0; padding: 0; height: 34px;
}
.pf-bridge .pf-rail-cell { display: grid; place-items: center; }
.pf-rail {
  position: relative; width: 1.5px; height: 34px;
  background: linear-gradient(180deg, transparent, var(--ink-10) 40%, var(--ink-10));
}
.pf-rail .pf-pkt {
  position: absolute; left: 50%; top: 0;
  width: 5px; height: 5px; border-radius: 50%;
  transform: translateX(-50%); opacity: 0;
}
.pf-bridge .pf-rail-cell:nth-child(1) .pf-pkt { background: var(--teal);           box-shadow: 0 0 8px rgba(0,144,144,0.7);  animation: pf-pkt-down 2.6s linear infinite; }
.pf-bridge .pf-rail-cell:nth-child(2) .pf-pkt { background: var(--facilities-accent); box-shadow: 0 0 8px rgba(23,71,170,0.7);  animation: pf-pkt-down 2.6s linear infinite 0.85s; }
.pf-bridge .pf-rail-cell:nth-child(3) .pf-pkt { background: var(--navy-lt);        box-shadow: 0 0 8px rgba(111,81,188,0.7); animation: pf-pkt-down 2.6s linear infinite 1.7s; }
@keyframes pf-pkt-down { 0%{top:0;opacity:0} 12%{opacity:1} 88%{opacity:1} 100%{top:100%;opacity:0} }

.pf-foundation {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  border: 1px solid var(--line);
  background:
    radial-gradient(ellipse 70% 120% at 50% 0%,   rgba(0,144,255,0.055), transparent 70%),
    radial-gradient(ellipse 60% 120% at 50% 100%, rgba(58,19,167,0.045), transparent 70%),
    linear-gradient(180deg, var(--white), var(--surface));
  padding: 44px 48px;
}
/* Tri-color top edge — all three families converge on one foundation */
.pf-foundation::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0; height: 3px;
  background: var(--grad);
}
/* Subtle data-surface grid */
.pf-foundation::after {
  content: ''; position: absolute; inset: 0;
  background:
    repeating-linear-gradient(90deg, rgba(10,10,10,0.022) 0 1px, transparent 1px 40px),
    repeating-linear-gradient(0deg,  rgba(10,10,10,0.018) 0 1px, transparent 1px 40px);
  pointer-events: none;
}
.pf-foundation-particles { position: absolute; inset: 0; pointer-events: none; z-index: 1; }
.pf-foundation-particles .pfp {
  position: absolute;
  left: var(--x); top: var(--y);
  width: var(--s); height: var(--s);
  border-radius: 50%;
  background: var(--c);
  box-shadow: 0 0 6px var(--c), 0 0 12px var(--c);
  opacity: 0;
  animation: pf-drift var(--dur) ease-in-out var(--d) infinite;
}
@keyframes pf-drift {
  0%   { opacity: 0; transform: translate(0, 0); }
  20%  { opacity: 0.85; }
  50%  { transform: translate(14px, -8px); opacity: 0.6; }
  80%  { opacity: 0.85; }
  100% { opacity: 0; transform: translate(-10px, 6px); }
}
.pf-foundation-content {
  position: relative; z-index: 2;
  text-align: center;
  display: flex; flex-direction: column; align-items: center;
}
.pf-foundation-eyebrow {
  font-family: 'IBM Plex Mono', monospace;
  font-size: 10.5px; letter-spacing: 0.26em; text-transform: uppercase;
  color: var(--ink-40); margin-bottom: 14px; white-space: nowrap;
}
.pf-foundation-line {
  font-size: 30px; font-weight: 700; letter-spacing: -0.025em;
  line-height: 1.12; color: var(--ink); margin: 0 0 10px;
  text-wrap: balance;
}
.pf-foundation-sub {
  font-size: 14.5px; font-weight: 300; line-height: 1.55;
  color: var(--ink-60); max-width: 900px; margin: 0 0 24px;
}
.pf-foundation-mfrs {
  display: flex; gap: 7px; flex-wrap: wrap; justify-content: center;
  margin-bottom: 26px;
}
.pf-mfr {
  font-family: 'IBM Plex Mono', monospace;
  font-size: 9.5px; letter-spacing: 0.12em; text-transform: uppercase;
  padding: 5px 12px; border-radius: 999px;
  border: 1px solid var(--line); color: var(--ink-60);
  background: rgba(255,255,255,0.6);
}
.pf-mfr.pf-mfr-first { border-color: rgba(0,144,255,0.4); color: var(--blue); background: rgba(0,144,255,0.05); }
.pf-mfr.pf-mfr-any   { border-style: dashed; color: var(--ink-40); }
.pf-foundation-cta {
  display: inline-flex; align-items: center; gap: 7px;
  font-size: 13.5px; font-weight: 600; color: var(--ink);
  text-decoration: none; white-space: nowrap;
}
.pf-foundation-cta .arr { transition: transform .15s; }
.pf-foundation-cta:hover .arr { transform: translateX(4px); }
@media (prefers-reduced-motion: reduce) {
  .pf-foundation-particles .pfp,
  .pf-bridge .pf-pkt { animation: none; }
  .pf-foundation-particles .pfp { opacity: 0.6; }
}

/* ================================================================
   4) WAYFINDER SPOTLIGHT
   Dark, full-width, editorial — the featured product section
   ================================================================ */
.wayfinder {
  background: var(--dark);
  color: #fff;
  overflow: hidden;
  position: relative;
}
.wf-bg {
  position: absolute; inset: 0;
  background:
    radial-gradient(ellipse 900px 600px at 92% 50%, rgba(58,19,167,0.20), transparent 60%),
    radial-gradient(ellipse 700px 500px at 8%  80%, rgba(0,0,144,0.12), transparent 65%),
    radial-gradient(ellipse 500px 300px at 50% 10%, rgba(111,81,188,0.07), transparent 60%),
    linear-gradient(165deg, #05050E 0%, #04040F 100%);
}
.wf-bg::before {
  content: '';
  position: absolute; inset: 0;
  background:
    repeating-linear-gradient(90deg, rgba(111,81,188,0.035) 0 1px, transparent 1px 60px),
    repeating-linear-gradient(0deg,  rgba(111,81,188,0.03) 0 1px, transparent 1px 60px);
}
.wf-inner {
  position: relative; z-index: 5;
  max-width: 1440px; margin: 0 auto;
  padding: 100px 64px;
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 80px; align-items: center;
}

/* Wayfinder LEFT */
.wf-eyebrow {
  display: flex; align-items: center; gap: 12px;
  font-family: 'IBM Plex Mono', monospace;
  font-size: 10px; letter-spacing: 0.22em; text-transform: uppercase;
  color: var(--navy-lt); margin-bottom: 28px;
}
.wf-eyebrow::before { content: ''; width: 28px; height: 1px; background: var(--navy-lt); flex-shrink: 0; }
.wf-left h2 {
  font-size: 58px; font-weight: 700;
  letter-spacing: -0.035em; line-height: 1.05;
  margin: 0 0 22px;
}
.wf-left h2 em {
  font-style: normal;
  color: var(--navy-lt);
}
.wf-sub {
  font-size: 17px; font-weight: 300; line-height: 1.65;
  color: rgba(255,255,255,0.60); max-width: 480px; margin: 0 0 36px;
}

/* Ecosystem insight block */
.wf-insight {
  background: rgba(111,81,188,0.09);
  border: 1px solid rgba(111,81,188,0.22);
  border-left: 3px solid var(--navy-lt);
  border-radius: 0 12px 12px 0;
  padding: 18px 22px;
  margin-bottom: 32px;
}
.wf-insight .insight-label {
  font-family: 'IBM Plex Mono', monospace;
  font-size: 9px; letter-spacing: 0.2em; text-transform: uppercase;
  color: var(--navy-lt); margin-bottom: 7px;
}
.wf-insight p {
  font-size: 14px; color: rgba(255,255,255,0.72); line-height: 1.55; margin: 0;
}
.wf-insight p b { color: #fff; font-weight: 600; }

/* Wayfinder stats row */
.wf-stats {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 12px; margin-bottom: 36px;
}
.wf-stat {
  background: rgba(255,255,255,0.035);
  border: 1px solid rgba(111,81,188,0.18);
  border-radius: 12px; padding: 16px;
}
.wf-stat .n {
  font-size: 30px; font-weight: 700;
  letter-spacing: -0.03em; line-height: 1; color: #fff; margin-bottom: 5px;
}
.wf-stat .l {
  font-family: 'IBM Plex Mono', monospace;
  font-size: 9px; letter-spacing: 0.14em; text-transform: uppercase;
  color: rgba(111,81,188,0.75);
}

/* Wayfinder RIGHT */
.wf-right {}

/* ── Wayfinder spotlight · ecosystem-moat diagram
   (ported from "Wayfinder Section Studies" Concept B — sources → DataLab → insight).
   Namespaced wfm-* to avoid colliding with the DataLab forward-look .dl-* set. ── */
.wfm-wrap { width: 100%; max-width: 560px; margin-left: auto; }
.wfm-sources { display: grid; grid-template-columns: 1fr 1fr 1fr; gap: 12px; }
.wfm-src {
  background: rgba(255,255,255,0.04); border: 1px solid rgba(255,255,255,0.10);
  border-radius: 12px; padding: 16px 14px;
}
.wfm-src .ic { width: 26px; height: 26px; margin-bottom: 11px; stroke: var(--navy-lt); fill: none; stroke-width: 1.5; display: block; }
.wfm-src .nm { font-size: 14px; font-weight: 600; color: #fff; line-height: 1.2; }
.wfm-flow { height: 48px; position: relative; }
.wfm-flow svg { position: absolute; inset: 0; width: 100%; height: 100%; }
.wfm-flow .flow-line { stroke-dasharray: 5 7; animation: wfmFlow 2.2s linear infinite; }
@keyframes wfmFlow { to { stroke-dashoffset: -26; } }
.wfm-core {
  background: linear-gradient(135deg, rgba(58,19,167,0.30), rgba(111,81,188,0.16));
  border: 1px solid rgba(111,81,188,0.5); border-radius: 14px; padding: 26px 22px;
  box-shadow: 0 0 0 1px rgba(255,255,255,0.03), 0 0 50px rgba(111,81,188,0.28);
  display: flex; align-items: center; justify-content: center;
  position: relative; overflow: hidden;
}
.wfm-core::after {
  content: ''; position: absolute; inset: 0;
  background: repeating-linear-gradient(90deg, rgba(255,255,255,0.04) 0 1px, transparent 1px 22px);
  pointer-events: none;
}
.wfm-logo { position: relative; z-index: 2; height: 34px; width: auto; display: block; }
.wfm-out { display: grid; grid-template-columns: repeat(3,1fr); gap: 12px; }
.wfm-o {
  text-align: center; background: rgba(255,255,255,0.025);
  border: 1px solid rgba(255,255,255,0.07); border-radius: 11px; padding: 18px 10px;
}
.wfm-o .v { font-size: 24px; font-weight: 700; letter-spacing: -0.02em; color: #fff; line-height: 1; margin-bottom: 8px; }
.wfm-o .c { font-family: 'IBM Plex Mono', monospace; font-size: 12px; letter-spacing: 0.02em; color: #8F77C7; line-height: 1.3; }
@media (prefers-reduced-motion: reduce) { .wfm-flow .flow-line { animation: none; } }

/* Airport logos */
.wf-logos-label {
  font-family: 'IBM Plex Mono', monospace;
  font-size: 9.5px; letter-spacing: 0.22em; text-transform: uppercase;
  color: rgba(255,255,255,0.35); margin-bottom: 16px;
}
/* NOTE FOR CLAUDE CODE:
   Replace each .wf-logo-cell text content with <img> of the airport logo.
   Default state: filter: grayscale(1) brightness(1.4) opacity(0.55)
   Hover state: filter: none (reveals brand color)
   Each cell links to the relevant case study page. */
.wf-logo-wall {
  display: grid; grid-template-columns: repeat(3, 1fr);
  background: rgba(255,255,255,0.06);
  border-radius: 14px; overflow: hidden;
  border: 1px solid rgba(255,255,255,0.07);
  gap: 1px;
  margin-bottom: 28px;
}
.wf-logo-cell {
  background: rgba(4,4,15,0.85); min-height: 90px;
  display: flex; flex-direction: column;
  align-items: center; justify-content: center;
  padding: 20px 16px; cursor: pointer;
  transition: background .2s;
}
.wf-logo-cell:hover { background: rgba(111,81,188,0.10); }
.wf-logo-cell .logo-n {
  font-weight: 700; font-size: 14px;
  color: rgba(255,255,255,0.5); letter-spacing: 0.03em;
  text-align: center; line-height: 1.2;
  transition: color .2s;
}
.wf-logo-cell .logo-s {
  font-family: 'IBM Plex Mono', monospace;
  font-size: 8.5px; letter-spacing: 0.14em; text-transform: uppercase;
  color: rgba(255,255,255,0.25); margin-top: 4px; text-align: center;
}
.wf-logo-cell:hover .logo-n { color: rgba(255,255,255,0.88); }

/* Heathrow quote */
.wf-quote {
  padding: 20px 0 0;
}
.wf-quote p {
  font-size: 15px; font-style: italic; font-weight: 300;
  line-height: 1.7; color: rgba(255,255,255,0.58);
  margin: 0 0 16px;
}
.wf-quote .attr {
    font-family: 'IBM Plex Mono', monospace;
    font-size: 9px; letter-spacing: 0.16em; text-transform: uppercase;
    color: rgba(255,255,255,0.25);
    display: flex; align-items: center; gap: 14px;
  }
  .wf-quote .attr::before {
    content: ''; width: 20px; height: 1px;
    background: rgba(255,255,255,0.2); flex-shrink: 0;
  }

/* ================================================================
   5) VERTICALS
   Aviation gets featured width; Corporate & Campus equal columns
   ================================================================ */
.verticals {
  padding: 120px 0;
  background: var(--surface);
}
.verticals-head {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 80px; margin-bottom: 52px; align-items: center;
}
.vert-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}
.vert-card {
  border-radius: 20px; overflow: hidden;
  position: relative; color: #fff;
  min-height: 380px; text-decoration: none;
  display: block; cursor: pointer;
  transition: transform .22s;
}
.vert-card:hover { transform: translateY(-5px); }

.vc-bg { position: absolute; inset: 0; }
.vert-card::after {
  content: ''; position: absolute; inset: 0; z-index: 1;
  background: linear-gradient(180deg, transparent 28%, rgba(2,2,14,0.82) 100%);
}

/* Aviation — navy/indigo palette, featured */
.vc-aviation .vc-bg {
  background:
    radial-gradient(ellipse 500px 350px at 85% 30%, rgba(58,19,167,0.55), transparent 60%),
    radial-gradient(ellipse 400px 300px at 20% 75%, rgba(0,0,144,0.35), transparent 60%),
    linear-gradient(155deg, #05050F, #08081E);
}
.vc-aviation .vc-bg::before {
  content: '';
  position: absolute; inset: 0;
  background:
    repeating-linear-gradient(90deg, rgba(111,81,188,0.055) 0 1px, transparent 1px 50px),
    repeating-linear-gradient(0deg, rgba(111,81,188,0.045) 0 1px, transparent 1px 50px);
}
/* CSS airport terminal illustration inside aviation card */
.vc-aviation-art {
  position: absolute; top: 16px; right: 16px; z-index: 2;
  width: 140px; height: 150px; opacity: 0.28; pointer-events: none;
}
.art-terminal { position: absolute; border-radius: 3px; background: rgba(111,81,188,0.5); border: 1px solid rgba(111,81,188,0.7); }
.art-route { position: absolute; width: 1.5px; background: linear-gradient(180deg, rgba(111,81,188,0.9), transparent); border-radius: 1px; }
.art-dot { position: absolute; width: 5px; height: 5px; border-radius: 50%; background: #fff; box-shadow: 0 0 8px rgba(111,81,188,1); }

/* Corporate — deep blue with radial glows */
.vc-corporate .vc-bg {
  background:
    radial-gradient(ellipse 420px 300px at 82% 25%, rgba(0,144,255,0.32), transparent 60%),
    radial-gradient(ellipse 300px 220px at 12% 78%, rgba(23,71,170,0.28), transparent 60%),
    radial-gradient(ellipse 200px 180px at 50% 10%, rgba(0,90,200,0.12), transparent 70%),
    linear-gradient(155deg, #050D1A, #0A1929);
}
/* Retail — deep teal with radial glows */
.vc-campus .vc-bg {
  background:
    radial-gradient(ellipse 420px 300px at 82% 25%, rgba(0,144,144,0.34), transparent 60%),
    radial-gradient(ellipse 300px 220px at 12% 78%, rgba(0,72,67,0.28), transparent 60%),
    radial-gradient(ellipse 200px 180px at 50% 10%, rgba(0,120,90,0.12), transparent 70%),
    linear-gradient(155deg, #031410, #051E17);
}

.vc-content {
  position: relative; z-index: 2;
  padding: 28px; height: 100%;
  display: flex; flex-direction: column; justify-content: flex-end;
}
.vc-tag {
  font-family: 'IBM Plex Mono', monospace;
  font-size: 9.5px; letter-spacing: 0.22em; text-transform: uppercase;
  margin-bottom: 7px;
}
.vc-aviation .vc-tag { color: rgba(111,81,188,0.85); }
.vc-corporate .vc-tag { color: rgba(80,177,255,0.75); }
.vc-campus .vc-tag { color: rgba(0,144,144,0.8); }

.vc-name {
  font-weight: 700; font-size: 30px; letter-spacing: -0.025em; line-height: 1.06; margin: 0 0 8px;
}

.vc-desc {
  font-size: 14px; font-weight: 300; line-height: 1.5;
  color: rgba(255,255,255,0.58); margin: 0 0 16px;
}
.vc-aviation .vc-desc { max-width: 310px; }

.vc-pills { display: flex; gap: 6px; flex-wrap: wrap; }
.vc-pill {
  font-family: 'IBM Plex Mono', monospace;
  font-size: 8.5px; letter-spacing: 0.15em; text-transform: uppercase;
  padding: 4px 10px; border-radius: 999px; border: 1px solid;
  color: rgba(255,255,255,0.55); border-color: rgba(255,255,255,0.15);
}
.vc-aviation .vc-pill { color: rgba(111,81,188,0.85); border-color: rgba(111,81,188,0.35); }

/* ================================================================
   6) DATALAB FORWARD LOOK
   Manufacturer-agnostic data foundation — where we're going
   ================================================================ */
.datalab {
  padding: 100px 0;
  background: var(--white);
  border-top: 1px solid var(--line);
}
.dl-inner {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 80px; align-items: center;
}
.dl-eyebrow-wrap {
  display: flex; align-items: center; gap: 12px; margin-bottom: 18px;
}
.dl-eyebrow-text {
  font-family: 'IBM Plex Mono', monospace;
  font-size: 10.5px; letter-spacing: 0.22em; text-transform: uppercase;
  color: var(--ink-40);
}
.dl-badge {
  font-family: 'IBM Plex Mono', monospace;
  font-size: 9px; letter-spacing: 0.12em; text-transform: uppercase;
  background: rgba(0,144,255,0.08); color: var(--blue);
  border: 1px solid rgba(0,144,255,0.22);
  padding: 3px 10px; border-radius: 999px;
}
.dl-left h2 {
  font-size: 46px; font-weight: 700;
  letter-spacing: -0.03em; line-height: 1.04;
  margin: 0 0 18px; color: var(--ink);
}
.dl-left p {
  font-size: 17px; font-weight: 300;
  color: var(--ink-60); line-height: 1.65; margin: 0 0 16px;
}
.dl-manufacturers {
  display: flex; gap: 7px; flex-wrap: wrap; margin-top: 24px;
}
.dl-mfr {
  font-family: 'IBM Plex Mono', monospace;
  font-size: 9.5px; letter-spacing: 0.12em; text-transform: uppercase;
  padding: 5px 12px; border-radius: 999px;
  border: 1px solid var(--line); color: var(--ink-60);
  background: var(--surface);
}
.dl-mfr.mfr-first { border-color: rgba(0,144,255,0.4); color: var(--blue); background: rgba(0,144,255,0.05); }

/* DataLab stack diagram */
.dl-vis {
  background: var(--surface); border: 1px solid var(--line);
  border-radius: 22px; padding: 30px;
}
.dl-vis-label {
  font-family: 'IBM Plex Mono', monospace;
  font-size: 9.5px; letter-spacing: 0.2em; text-transform: uppercase;
  color: var(--ink-40); margin-bottom: 22px;
}
.dl-stack { display: flex; flex-direction: column; gap: 7px; }
.dl-layer {
  border-radius: 10px; padding: 14px 18px;
  display: flex; align-items: center; justify-content: space-between;
  border: 1px solid transparent;
}
.dl-layer.dll-apps { background: rgba(0,144,255,0.06); border-color: rgba(0,144,255,0.2); }
.dl-layer.dll-data { background: rgba(0,144,144,0.06); border-color: rgba(0,144,144,0.28); border-style: dashed; }
.dl-layer.dll-bms  { background: var(--white); border-color: var(--line); }

.dl-layer-text .dl-l-name {
  font-weight: 600; font-size: 13.5px; color: var(--ink); letter-spacing: -0.01em;
}
.dl-layer-text .dl-l-desc {
  font-family: 'IBM Plex Mono', monospace;
  font-size: 9px; letter-spacing: 0.12em; text-transform: uppercase;
  color: var(--ink-40); margin-top: 3px;
}
.dl-badge-sm {
  font-family: 'IBM Plex Mono', monospace;
  font-size: 8.5px; letter-spacing: 0.12em; text-transform: uppercase;
  padding: 3px 10px; border-radius: 999px; font-weight: 500; flex-shrink: 0;
}
.dll-apps .dl-badge-sm  { background: rgba(0,144,255,0.10); color: var(--blue); }
.dll-data .dl-badge-sm  { background: rgba(0,144,144,0.10); color: var(--teal); }
.dll-bms  .dl-badge-sm  { background: var(--line); color: var(--ink-60); }

.dl-connector-arrow {
  text-align: center; color: var(--ink-40); font-size: 12px;
  padding: 1px 0; position: relative;
}
.dl-connector-arrow::before {
  content: '';
  display: block; width: 1px; height: 7px;
  background: var(--line); margin: 0 auto 2px;
}

/* ================================================================
   7) FINAL CTA
   ================================================================ */
.cta-section {
  background: var(--dark);
  color: #fff; padding: 120px 0;
  text-align: center;
  position: relative; overflow: hidden;
}
.cta-section::before {
  content: '';
  position: absolute; inset: 0;
  background:
    radial-gradient(ellipse 700px 500px at 50% 120%, rgba(0,144,144,0.12), transparent 65%),
    radial-gradient(ellipse 500px 300px at 20% 20%, rgba(0,144,255,0.08), transparent 60%),
    radial-gradient(ellipse 400px 300px at 80% 10%, rgba(58,19,167,0.10), transparent 60%);
}
/* Dot grid */
.cta-section::after {
  content: '';
  position: absolute; inset: 0;
  background-image: radial-gradient(circle, rgba(255,255,255,0.05) 1px, transparent 1px);
  background-size: 40px 40px;
  pointer-events: none;
}
.cta-inner { position: relative; z-index: 5; }
.cta-section h2 {
  font-size: 68px; font-weight: 700;
  letter-spacing: -0.038em; line-height: 1.0;
  margin: 0 0 20px;
}
.cta-section h2 .hl {
  background: var(--grad); -webkit-background-clip: text;
  -webkit-text-fill-color: transparent; background-clip: text;
}
.cta-section p {
  font-size: 18px; font-weight: 300; line-height: 1.65;
  color: rgba(255,255,255,0.58); max-width: 500px;
  margin: 0 auto 40px;
}
.cta-btns { display: flex; gap: 14px; justify-content: center; }

  /* ================================================================
     DATALAB FLOW — three equal layers with consistent subtle boundaries
     ================================================================ */
  .dl-flow { display: flex; flex-direction: column; padding: 0; }

  /* Endpoint labels (above apps / below BMS) */
  .dlf-endpoint { text-align: center; padding: 14px 0; }
  .dlf-ep-label {
    font-size: 12px; font-weight: 600; color: var(--ink-40);
    letter-spacing: 0.01em; margin-bottom: 8px;
    text-transform: uppercase; font-family: 'IBM Plex Mono', monospace;
    letter-spacing: 0.18em; font-size: 10px;
  }
  .dlf-ep-sub {
    font-family: 'IBM Plex Mono', monospace;
    font-size: 9px; letter-spacing: 0.12em; text-transform: uppercase;
    color: var(--ink-40);
  }
  .dlf-chips {
    display: flex; gap: 6px; justify-content: center; flex-wrap: wrap; margin-top: 8px;
  }
  .dlf-chip {
    font-family: 'IBM Plex Mono', monospace;
    font-size: 9px; letter-spacing: 0.13em; text-transform: uppercase;
    padding: 3px 11px; border-radius: 999px; border: 1px solid; font-weight: 500;
  }
  .dlf-chip.dlf-teal  { color: var(--teal);    border-color: rgba(0,144,144,0.3);  background: rgba(0,144,144,0.06);  }
  .dlf-chip.dlf-blue  { color: var(--blue);    border-color: rgba(0,144,255,0.3);  background: rgba(0,144,255,0.06);  }
  .dlf-chip.dlf-navy  { color: var(--navy-lt); border-color: rgba(111,81,188,0.3); background: rgba(111,81,188,0.06); }

  /* Rail between layers */
  .dlf-rail-wrap {
    display: flex; justify-content: center;
    min-height: 36px; align-items: center;
  }
  .dlf-rail {
    width: 1.5px; height: 36px;
    background: var(--line); position: relative; flex-shrink: 0;
  }
  .dlf-pkt {
    position: absolute; left: 50%; transform: translateX(-50%);
    width: 5px; height: 5px; border-radius: 50%; opacity: 0;
  }
  .dlf-pkt.pkt-up   { animation: dlf-up   2.4s linear infinite; }
  .dlf-pkt.pkt-down { animation: dlf-down 2.4s linear infinite; }
  @keyframes dlf-up   { 0%{top:100%;opacity:0} 10%{opacity:.85} 90%{opacity:.85} 100%{top:0%;opacity:0} }
  @keyframes dlf-down { 0%{top:0%;opacity:0} 10%{opacity:.85} 90%{opacity:.85} 100%{top:100%;opacity:0} }

  /* ── The three data layers — all share the same base ── */
  .dlf-layer {
    padding: 20px 24px; text-align: center;
    position: relative;
    border-top: 1px solid; border-bottom: 1px solid;
  }
  /* Normalized & Actionable — blue tint */
  .dlf-layer-blue {
    border-color: rgba(0,144,255,0.16);
    background: radial-gradient(ellipse 80% 120% at 50% 50%, rgba(0,144,255,0.05), transparent 80%);
  }
  /* Atrius DataLab — teal tint (slightly more prominent) */
  .dlf-layer-teal {
    border-color: rgba(0,144,144,0.22);
    background: radial-gradient(ellipse 80% 120% at 50% 50%, rgba(0,144,144,0.07), transparent 80%);
    padding: 24px;
  }
  /* Raw Building Data — neutral */
  .dlf-layer-neutral {
    border-color: rgba(0,0,0,0.07);
    background: radial-gradient(ellipse 80% 120% at 50% 50%, rgba(0,0,0,0.018), transparent 80%);
  }

  /* Layer content */
  .dlf-eyebrow {
    font-family: 'IBM Plex Mono', monospace;
    font-size: 9px; letter-spacing: 0.22em; text-transform: uppercase;
    color: var(--ink-40); margin-bottom: 4px;
  }
  .dlf-eyebrow-accent { color: var(--teal); }
  .dlf-layer-name {
    font-size: 16px; font-weight: 700; color: var(--ink);
    letter-spacing: -0.02em;
  }
  .dlf-name-primary { font-size: 19px; }
  .dlf-layer-sub {
    font-family: 'IBM Plex Mono', monospace;
    font-size: 9px; letter-spacing: 0.14em; text-transform: uppercase;
    color: var(--ink-40); margin-top: 5px;
  }


  /* ================================================================
     WAYFINDER AIRPORT STAT TILES — animated passenger counts
     ================================================================ */
  .wf-logos-label {
    font-size: 14px; font-weight: 500;
    color: rgba(255,255,255,0.75); margin-bottom: 20px;
    letter-spacing: -0.01em;
  }
  .wf-stat-wall {
    display: grid; grid-template-columns: repeat(3, 1fr);
    margin-bottom: 32px;
    border-top: 1px solid rgba(255,255,255,0.07);
    border-bottom: 1px solid rgba(255,255,255,0.07);
  }
  .wsc {
    min-height: 110px;
    display: flex; flex-direction: column;
    align-items: center; justify-content: center;
    padding: 20px 10px; cursor: default;
    gap: 2px;
    border-right: 1px solid rgba(255,255,255,0.07);
  }
  .wsc:last-child { border-right: none; }
  /* Bottom-row tiles: no bottom border */
  .wsc:nth-child(n+4) { border-top: 1px solid rgba(255,255,255,0.07); }
  /* Airport name — top line, the identity */
  .wsc-name {
    font-size: 14px; font-weight: 400; letter-spacing: -0.01em;
    color: rgba(255,255,255,0.92); text-align: center;
    white-space: nowrap; line-height: 1.2; margin-bottom: 14px;
  }
  /* Airport code — eyebrow above the name, faint mono, neutral */
  .wsc-code {
    font-family: 'IBM Plex Mono', monospace;
    font-size: 10px; font-weight: 400; letter-spacing: 0.18em;
    color: rgba(255,255,255,0.38); text-transform: uppercase;
    text-align: center; margin-bottom: 3px;
  }
  /* Passenger count — the single accent */
  .wsc-num {
    font-size: 34px; font-weight: 500; letter-spacing: -0.03em;
    color: var(--navy-lt); line-height: 1;
    font-variant-numeric: tabular-nums;
    transition: color .2s;
    min-width: 80px; text-align: center;
  }
  .wsc:hover .wsc-num { color: #8B6FD4; }
  .wsc-label {
    font-family: 'IBM Plex Mono', monospace;
    font-size: 10px; font-weight: 400; letter-spacing: 0.14em; text-transform: uppercase;
    color: rgba(255,255,255,0.32); margin-top: 4px;
  }
  /* Active tile — selected state (syncs with the testimonial shown below).
     One hue only: indigo tint + top accent + brighter type. */
  .wsc-active {
    position: relative;
    background: rgba(111,81,188,0.10);
  }
  .wsc-active::before {
    content: ''; position: absolute; top: -1px; left: 0; right: 0;
    height: 2px; background: var(--navy-lt);
  }
  .wsc-active .wsc-code { color: var(--navy-lt); }
  .wsc-active .wsc-name { color: #fff; }
  .wsc-active .wsc-num  { color: #8B6FD4; }

  /* ================================================================
     WAYFINDER SECTION — airport background illustration
     ================================================================ */
  .wf-airport-bg {
    position: absolute;
    bottom: -20px; left: 50%; transform: translateX(-50%);
    width: min(1100px, 100vw); z-index: 1; pointer-events: none;
    opacity: 0.055;
    /* NOTE FOR CLAUDE CODE: Replace the inline SVG placeholder below
       with a more detailed airport terminal illustration or a real map asset.
       Target: thin line art, purple/indigo color, top-down terminal view. */
  }
  .wf-airport-bg svg { width: 100%; height: auto; display: block; }

  /* Concept C Wayfinder card vis */
  .vis-route-bar {
    background: rgba(111,81,188,0.15); border: 1px solid rgba(111,81,188,0.3);
    border-radius: 5px; padding: 5px 9px;
    font-family: 'IBM Plex Mono', monospace; font-size: 7.5px; letter-spacing: 0.1em;
    text-transform: uppercase; color: rgba(111,81,188,0.8);
  }
  .vis-route-bar b { color: #fff; font-weight: 700; font-size: 9px; }
  .vis-route-dest {
    background: rgba(111,81,188,0.2); border: 1px solid rgba(111,81,188,0.4);
    border-radius: 5px; padding: 5px 9px;
    font-family: 'IBM Plex Mono', monospace; font-size: 7px; letter-spacing: 0.1em;
    text-transform: uppercase; color: rgba(255,255,255,0.55);
    display: flex; justify-content: space-between; align-items: center;
  }
  .vis-route-dest span { color: var(--navy-lt); font-size: 9px; font-weight: 700; }

  /* Portfolio card hover arrow (replaces explore link) */
  .pf-arrow {
    position: absolute; top: 18px; right: 18px;
    font-size: 16px; opacity: 0;
    transform: translate(-4px, 4px);
    transition: opacity .2s ease, transform .2s ease;
    font-weight: 700; line-height: 1;
  }
  .pf-card:hover .pf-arrow { opacity: 1; transform: translate(0, 0); }
  .pf-card.pfc-teal .pf-arrow { color: var(--teal); }
  .pf-card.pfc-blue .pf-arrow { color: #1747AA; }
  .pf-card.pfc-navy .pf-arrow { color: var(--navy-lt); }

  /* ================================================================
     DATALAB CANVAS COLUMN
     ================================================================ */
  .dl-canvas-col {
    position: relative;
    height: 580px;
    overflow: hidden;
  }
  #dl-canvas {
    position: absolute; inset: 0;
    width: 100%; height: 100%; z-index: 0;
    pointer-events: none;
  }
  /* Five zones stacked — cover full height */
  .dlc-zone {
    position: relative; z-index: 1;
  }
  /* Top zone: Cognitive Cloud */
  .dlc-zone-top { height: 22%; display: flex; align-items: center; padding: 0 4px; }
  /* Normalized zone */
  .dlc-zone-norm { height: 18%; display: flex; flex-direction:column; align-items: center; justify-content: center; }
  /* DataLab zone */
  .dlc-zone-datalab { height: 20%; display: flex; align-items: center; padding: 0 4px; }
  /* Raw zone */
  .dlc-zone-raw { height: 18%; display: flex; flex-direction:column; align-items: center; justify-content: center; }
  /* Bottom zone: Any Building System */
  .dlc-zone-bottom { height: 22%; display: flex; align-items: center; padding: 0 4px; }

  /* Encapsulated card (top + bottom zones) */
  .dlc-encap {
    width: 100%; background: var(--white);
    border: 1px solid var(--line); border-radius: 12px;
    padding: 14px 16px;
    box-shadow: 0 2px 12px rgba(0,0,0,0.04);
  }
  .dlc-zone-label {
    font-size: 11px; font-weight: 700; color: var(--ink-60);
    letter-spacing: 0.01em; margin-bottom: 10px;
    font-family: 'IBM Plex Mono', monospace; text-transform: uppercase; font-size: 9px; letter-spacing: 0.16em;
  }
  .dlc-tiles {
    display: flex; gap: 6px; flex-wrap: wrap; align-items: center;
  }
  .dlc-tile {
    width: 32px; height: 32px; border-radius: 7px; flex-shrink: 0;
  }
  .dlc-bms-sub {
    font-family: 'IBM Plex Mono', monospace;
    font-size: 8.5px; letter-spacing: 0.1em; text-transform: uppercase;
    color: var(--ink-40); margin-top: 4px; line-height: 1.5;
  }

  /* DataLab zone — gray subtle boundary */
  .dlc-datalab-inner {
    width: 100%; text-align: center;
    border-top: 1px solid rgba(0,0,0,0.07);
    border-bottom: 1px solid rgba(0,0,0,0.07);
    background: radial-gradient(ellipse 80% 100% at 50% 50%, rgba(0,0,0,0.018), transparent 80%);
    padding: 14px 8px;
  }
  .dlc-dl-eyebrow {
    font-family: 'IBM Plex Mono', monospace;
    font-size: 8.5px; letter-spacing: 0.2em; text-transform: uppercase;
    color: var(--ink-40); margin-bottom: 4px;
  }
  .dlc-dl-name {
    font-size: 17px; font-weight: 700; color: var(--ink); letter-spacing: -0.02em;
  }
  .dlc-dl-sub {
    font-family: 'IBM Plex Mono', monospace;
    font-size: 8.5px; letter-spacing: 0.12em; text-transform: uppercase;
    color: var(--ink-40); margin-top: 4px;
  }

  /* Open zones (Normalized, Raw) — just floating labels */
  .dlc-open-label {
    font-size: 12px; font-weight: 600; color: var(--ink-60);
    letter-spacing: -0.01em; margin-bottom: 3px;
  }
  .dlc-open-sub {
    font-family: 'IBM Plex Mono', monospace;
    font-size: 8.5px; letter-spacing: 0.12em; text-transform: uppercase;
    color: var(--ink-40);
  }

  /* ================================================================
     HERO CARD ILLUSTRATION ANIMATIONS
     ================================================================ */

  /* — Card 1: Energy bars — staggered wave breathe — */
  @keyframes bar-breathe {
    0%, 100% { transform: scaleY(1); }
    50%       { transform: scaleY(1.12); }
  }
  .vis-e-bar {
    transform-origin: bottom center;
    animation: bar-breathe 3.2s ease-in-out infinite;
  }
  .vis-e-bar:nth-child(1) { animation-delay: 0.0s; }
  .vis-e-bar:nth-child(2) { animation-delay: 0.35s; }
  .vis-e-bar:nth-child(3) { animation-delay: 0.70s; }
  .vis-e-bar:nth-child(4) { animation-delay: 1.05s; }
  .vis-e-bar:nth-child(5) { animation-delay: 1.40s; }
  .vis-e-bar:nth-child(6) { animation-delay: 1.75s; }
  .vis-e-bar:nth-child(7) { animation-delay: 2.10s; }

  /* — Card 2: Facilities active rooms — soft glow pulse — */
  @keyframes room-glow {
    0%, 100% { background: rgba(0,144,255,0.32); border-color: rgba(80,177,255,0.65); box-shadow: none; }
    50%       { background: rgba(0,144,255,0.52); border-color: rgba(80,177,255,1);    box-shadow: 0 0 10px rgba(0,144,255,0.35); }
  }
  .floor-grid .f-room:nth-child(1) { animation: room-glow 2.6s ease-in-out infinite 0s; }
  .floor-grid .f-room:nth-child(4) { animation: room-glow 2.6s ease-in-out infinite 1.3s; }

  /* — Card 3: Wayfinder position dot + sonar rings — */
  @keyframes dot-beat {
    0%, 100% { opacity: 1; }
    50%       { opacity: 0.6; }
  }
  @keyframes ring-ping {
    0%   { transform: scale(1); opacity: 0.5; }
    100% { transform: scale(2.6); opacity: 0; }
  }
  .wf-pos-dot   { animation: dot-beat 2.2s ease-in-out infinite; }
  .wf-ring-inner {
    transform-box: fill-box; transform-origin: center;
    animation: ring-ping 2.2s ease-out infinite;
  }
  .wf-ring-outer {
    transform-box: fill-box; transform-origin: center;
    animation: ring-ping 2.2s ease-out infinite 0.9s;
  }

  /* ================================================================
     WEBINAR / THOUGHT LEADERSHIP CTA STRIP
     ================================================================ */
  .webinar-cta {
    background: linear-gradient(135deg, #04040E 0%, #070719 100%);
    border-bottom: 1px solid rgba(255,255,255,0.05);
    position: relative; overflow: hidden;
  }
  /* Gradient rule across the top */
  .webinar-cta::before {
    content: '';
    position: absolute; top: 0; left: 0; right: 0; height: 1px;
    background: linear-gradient(90deg, transparent 0%, rgba(80,177,255,0.55) 25%, rgba(0,144,144,0.5) 50%, rgba(111,81,188,0.55) 75%, transparent 100%);
  }
  /* Subtle radial glow */
  .webinar-cta::after {
    content: '';
    position: absolute; inset: 0; pointer-events: none;
    background: radial-gradient(ellipse 60% 140% at 50% 100%, rgba(58,19,167,0.07), transparent 70%);
  }
  .webinar-inner {
    max-width: 1440px; margin: 0 auto; padding: 0 64px;
    height: 76px;
    display: flex; align-items: center; gap: 28px;
    position: relative; z-index: 1;
  }
  .webinar-badge {
    display: inline-flex; align-items: center; gap: 7px;
    padding: 5px 13px; border-radius: 999px;
    border: 1px solid rgba(80,177,255,0.22);
    background: rgba(80,177,255,0.05);
    font-family: 'IBM Plex Mono', monospace;
    font-size: 9px; letter-spacing: 0.2em; text-transform: uppercase;
    color: rgba(80,177,255,0.8);
    white-space: nowrap; flex-shrink: 0;
  }
  .webinar-live-dot {
    width: 5px; height: 5px; border-radius: 50%;
    background: #50B1FF;
    animation: live-blink 2.2s ease-in-out infinite;
  }
  @keyframes live-blink {
    0%, 100% { opacity: 1; box-shadow: 0 0 6px rgba(80,177,255,0.8); }
    50%       { opacity: 0.3; box-shadow: none; }
  }
  .webinar-sep { width: 1px; height: 26px; background: rgba(255,255,255,0.08); flex-shrink: 0; }
  .webinar-title {
    font-size: 14px; font-weight: 500; letter-spacing: -0.01em;
    color: rgba(255,255,255,0.82); flex: 1; min-width: 0;
    white-space: nowrap; overflow: hidden; text-overflow: ellipsis;
  }
  .webinar-meta {
    font-family: 'IBM Plex Mono', monospace;
    font-size: 9.5px; letter-spacing: 0.12em; text-transform: uppercase;
    color: rgba(255,255,255,0.28); white-space: nowrap; flex-shrink: 0;
  }
  .webinar-register {
    display: inline-flex; align-items: center; gap: 7px;
    padding: 9px 20px; border-radius: 6px; flex-shrink: 0;
    border: 1px solid rgba(80,177,255,0.28);
    background: rgba(80,177,255,0.04);
    color: rgba(80,177,255,0.9);
    font-size: 12px; font-weight: 600;
    font-family: 'IBM Plex Sans', sans-serif;
    text-decoration: none; white-space: nowrap;
    transition: border-color .15s, background .15s, color .15s;
    letter-spacing: 0.01em;
  }
  .webinar-register:hover {
    border-color: rgba(80,177,255,0.6);
    background: rgba(80,177,255,0.10);
    color: #50B1FF;
  }

  /* ================================================================
     PORTFOLIO CARD — APP TILES (replace chips)
     ================================================================ */
  .pf-app-tiles {
    display: flex; gap: 10px; flex-wrap: wrap;
    margin-top: auto; padding-top: 4px; align-items: flex-start;
  }
  .pf-app-tile {
    display: flex; flex-direction: column; align-items: center; gap: 5px;
  }
  .pf-tile-icon {
    width: 36px; height: 36px; border-radius: 9px;
    overflow: hidden; display: block; flex-shrink: 0;
  }
  .pf-tile-label {
    font-family: 'IBM Plex Mono', monospace;
    font-size: 7px; letter-spacing: 0.1em; text-transform: uppercase;
    color: var(--ink-40); text-align: center; line-height: 1.2;
  }

  /* ================================================================
     VERTICALS SECTION — equal columns, illustration styles
     ================================================================ */
  /* Override to equal three columns — aviation no longer featured */

  /* Vertical card art — always visible, subtle at rest */
  .vc-art {
    position: absolute; top: 14px; right: 14px; z-index: 2;
    opacity: 0.72; pointer-events: none;
    transition: opacity .3s ease;
  }
  .vert-card:hover .vc-art { opacity: 1; }

  /* Hover glow per card family */
  .vc-aviation:hover  { box-shadow: 0 0 0 1px rgba(111,81,188,0.35), 0 24px 60px -16px rgba(58,19,167,0.5); }
  .vc-corporate:hover { box-shadow: 0 0 0 1px rgba(0,144,255,0.3), 0 24px 60px -16px rgba(0,90,200,0.4); }
  .vc-campus:hover    { box-shadow: 0 0 0 1px rgba(0,144,144,0.3), 0 24px 60px -16px rgba(0,100,100,0.4); }

  /* Hover arrow ↗ in bottom-right, per card color */
  .vc-hover-arrow {
    position: absolute; bottom: 20px; right: 22px; z-index: 3;
    font-size: 18px; line-height: 1; font-weight: 700;
    opacity: 0; transform: translate(-3px, 3px);
    transition: opacity .2s ease, transform .2s ease;
  }
  .vert-card:hover .vc-hover-arrow { opacity: 1; transform: translate(0, 0); }
  .vc-aviation  .vc-hover-arrow { color: var(--navy-lt); }
  .vc-corporate .vc-hover-arrow { color: var(--blue-lt); }
  .vc-campus    .vc-hover-arrow { color: var(--teal-lt); }

  /* Aviation departure-board illustration */
  .vc-art-aviation { width: 180px; }
  /* Corporate building illustration */
  .vc-art-corporate { width: 160px; }
  /* Retail illustration */
  .vc-art-campus { width: 160px; }

  /* Shared fids-style panels */
  .fids-board {
    background: rgba(4,4,15,0.88);
    border: 1px solid rgba(111,81,188,0.3);
    border-radius: 6px; overflow: hidden;
    font-family: 'IBM Plex Mono', monospace;
  }
  .fids-header {
    padding: 5px 10px;
    display: grid; grid-template-columns: 60px 1fr 44px 70px;
    gap: 4px;
    font-size: 6.5px; letter-spacing: 0.14em; text-transform: uppercase;
    color: rgba(111,81,188,0.5);
    border-bottom: 1px solid rgba(111,81,188,0.15);
  }
  .fids-row {
    padding: 6px 10px;
    display: grid; grid-template-columns: 60px 1fr 44px 70px;
    gap: 4px; align-items: center;
    border-bottom: 1px solid rgba(255,255,255,0.04);
    font-size: 7.5px; color: rgba(255,255,255,0.6);
  }
  .fids-row.active { background: rgba(111,81,188,0.08); color: rgba(255,255,255,0.9); }
  .fids-status-boarding {
    color: #6F51BC; font-weight: 700; font-size: 7px; letter-spacing: 0.08em;
  }
  .fids-status-on-time { color: rgba(255,255,255,0.3); font-size: 7px; }
  .fids-status-delayed  { color: rgba(255,120,80,0.75); font-size: 7px; }

  /* ================================================================
     WAYFINDER — SIMPLIFIED LAYOUT
     ================================================================ */
  /* Visual asset placeholder */
  .wf-visual-ph {
    background: rgba(255,255,255,0.93);
    border-radius: 14px;
    aspect-ratio: 4 / 3;
    width: 100%;
    display: flex; flex-direction: column;
    align-items: center; justify-content: center;
    gap: 12px;
    position: relative; overflow: hidden;
  }
  /* Subtle inner grid lines to suggest a product UI placeholder */
  .wf-visual-ph::before {
    content: '';
    position: absolute; inset: 0;
    background-image:
      repeating-linear-gradient(90deg, rgba(0,0,0,0.04) 0 1px, transparent 1px 60px),
      repeating-linear-gradient(0deg, rgba(0,0,0,0.04) 0 1px, transparent 1px 40px);
  }
  .wf-ph-icon {
    width: 36px; height: 36px; border-radius: 9px;
    background: var(--navy-50);
    display: grid; place-items: center;
    font-size: 16px; position: relative; z-index: 1;
  }
  .wf-ph-label {
    font-family: 'IBM Plex Mono', monospace;
    font-size: 9px; letter-spacing: 0.22em; text-transform: uppercase;
    color: rgba(0,0,0,0.22); position: relative; z-index: 1;
  }

  /* Full-width trust strip — sits below wf-inner */
  .wf-trust-strip {
    position: relative; z-index: 5;
    padding-top: 52px; padding-bottom: 0;
  }
  .wf-trust-heading {
    text-align: center;
    font-family: 'IBM Plex Mono', monospace;
    font-size: 15px; font-weight: 400; letter-spacing: 0.18em; text-transform: uppercase;
    white-space: nowrap;
    color: rgba(255,255,255,0.45);
    margin: 0 auto 40px;
  }
  /* 6-column single-row stat wall */
  .wf-stat-wall-full {
    display: grid; grid-template-columns: repeat(6, 1fr);
    border-top: 1px solid rgba(255,255,255,0.07);
    border-bottom: 1px solid rgba(255,255,255,0.07);
  }
  .wf-stat-wall-full .wsc {
    border-right: 1px solid rgba(255,255,255,0.07);
  }
  .wf-stat-wall-full .wsc:last-child { border-right: none; }
  /* Remove the nth-child top-border rule that was for 2-row layout */
  .wf-stat-wall-full .wsc:nth-child(n+4) { border-top: none; }

  /* Heathrow quote — centered under the strip */
  .wf-quote-centered {
    padding: 64px 64px 80px;
    text-align: center;
    max-width: 680px; margin: 0 auto;
    position: relative; z-index: 5;
  }
  .wf-quote-centered img { margin: 0 auto 18px; display: block; }
  .wf-quote-centered p {
    font-size: 15.5px; font-style: italic; font-weight: 300;
    line-height: 1.7; color: rgba(255,255,255,0.52); margin: 0 0 18px;
  }
  .wf-quote-centered .attr {
    font-family: 'IBM Plex Mono', monospace;
    font-size: 9px; letter-spacing: 0.16em; text-transform: uppercase;
    color: rgba(255,255,255,0.22);
    display: flex; align-items: center; justify-content: center; gap: 14px;
  }
  .wf-quote-centered .attr::before {
    content: ''; width: 20px; height: 1px;
    background: rgba(255,255,255,0.2); flex-shrink: 0;
  }
  .wf-quote-centered .attr::after {
    content: ''; width: 20px; height: 1px;
    background: rgba(255,255,255,0.2); flex-shrink: 0;
  }

  /* Tighten wf-inner bottom padding to let strip breathe */
  .wf-inner { padding-bottom: 60px !important; align-items: start !important; grid-template-columns: 52% 44% !important; gap: 60px !important; }
    position: absolute; top: 16px; right: 16px; z-index: 2;
    width: 220px; pointer-events: none;
    display: flex; flex-direction: column; gap: 6px;
    opacity: 0.72;
  }
  .vca-bar {
    background: rgba(111,81,188,0.18); border: 1px solid rgba(111,81,188,0.4);
    border-radius: 5px; padding: 5px 10px;
    font-family: 'IBM Plex Mono', monospace; font-size: 8px; letter-spacing: 0.1em;
    text-transform: uppercase; color: rgba(111,81,188,0.85);
  }
  .vca-bar b { color: rgba(255,255,255,0.9); font-size: 9.5px; }
  .vca-time { color: rgba(111,81,188,1) !important; }
  .vca-svg { width: 100%; height: auto; display: block; }
  .vca-status {
    background: rgba(111,81,188,0.2); border: 1px solid rgba(111,81,188,0.4);
    border-radius: 5px; padding: 5px 10px;
    font-family: 'IBM Plex Mono', monospace; font-size: 7.5px; letter-spacing: 0.1em;
    text-transform: uppercase; color: rgba(255,255,255,0.5);
    display: flex; justify-content: space-between; align-items: center;
  }
  .vca-gate { color: var(--navy-lt); font-size: 9px; font-weight: 700; }


/* ===== Concept-1 intent-carousel hero — vars + helpers carried from hero-styles.css ===== */
#atrius-homepage-draft-main{
  --font-sans:'IBM Plex Sans',-apple-system,sans-serif;
  --font-mono:'IBM Plex Mono',monospace;
  --indigo-lt:#8F77C7;
  --navy-mid:#3A13A7;
  --r-md:8px;
  --r-xl:16px;
  --r-2xl:20px;
  --ease:cubic-bezier(0.16,1,0.3,1);
}
.fa-scope{width:100%;height:100%;}
.fa-scope .dot-g{background:var(--blue-lt);box-shadow:0 0 8px rgba(80,177,255,0.7);}
  @keyframes anode-ping{0%{transform:scale(.7);opacity:.55;}100%{transform:scale(2.4);opacity:0;}}
  @keyframes dotfill{from{width:0;}to{width:100%;}}

  /* FINAL SELECTION — annotated carousel (Concept A), CSS-scoped.  */
  /* Every rule is prefixed `.fa-scope ` so it out-specifies the    */
  /* ORIGINAL carousel's identically-named classes above; the two   */
  /* carousels coexist on one canvas without collision.             */
  /* ============================================================= */
  .fa-scope{width:100%;height:100%;}
  .fa-scope .chero{position:relative;width:100%;height:100%;overflow:hidden;background:var(--dark);color:#fff;}
  .fa-scope .chero-bg{position:absolute;inset:0;background:
    radial-gradient(ellipse 920px 620px at 82% 50%, rgba(0,144,255,0.10), transparent 62%),
    radial-gradient(ellipse 720px 520px at 12% 82%, rgba(0,144,144,0.08), transparent 62%),
    radial-gradient(ellipse 640px 440px at 46% 8%, rgba(111,81,188,0.10), transparent 60%),
    linear-gradient(165deg,#07071C 0%,#04040F 55%,#020210 100%);}
  .fa-scope .chero-bg::before{content:'';position:absolute;inset:0;
    background-image:radial-gradient(circle, rgba(255,255,255,0.05) 1px, transparent 1px);
    background-size:40px 40px;opacity:.55;}

  body.atrius-homepage-draft .grecaptcha-badge {
    right: 0 !important;
  }

  /* generous negative space between copy + stage (430px col, 104px gutter) */
  .fa-scope .chero-grid{position:absolute;inset:0;z-index:10;display:grid;
    grid-template-columns:430px 1fr;column-gap:104px;align-items:center;
    padding:110px 72px 56px;}
  .fa-scope .chero-copy{max-width:430px;}
  .fa-scope .chero-eyebrow{display:inline-flex;align-items:center;gap:9px;padding:6px 14px;
    border-radius:999px;background:rgba(255,255,255,0.06);border:1px solid rgba(255,255,255,0.13);
    font-family:var(--font-mono);font-size:10px;letter-spacing:.2em;text-transform:uppercase;
    color:rgba(255,255,255,0.66);margin-bottom:28px;white-space:nowrap;}
  .fa-scope .chero-eyebrow .dot{width:6px;height:6px;border-radius:50%;display:inline-block;}
  .fa-scope .chero-eyebrow .sep{opacity:.4;margin:0 4px;}
  .fa-scope .chero h1{font-family:var(--font-sans);font-weight:600;font-size:60px;line-height:1.02;
    letter-spacing:-0.04em;margin:0 0 30px;color:#fff;}
  .fa-scope .chero-sub{font-size:17px;font-weight:300;line-height:1.62;color:rgba(255,255,255,0.62);
    margin:0 0 38px;max-width:400px;}
  .fa-scope .chero-ctas{display:flex;align-items:center;gap:26px;}

  .fa-scope .chero-stage{position:relative;height:540px;display:flex;flex-direction:column;}
  .fa-scope .cstage-frame{position:relative;flex:1;border-radius:16px;overflow:hidden;
    border:1px solid rgba(255,255,255,0.11);
    box-shadow:0 0 0 1px rgba(255,255,255,0.03), 0 34px 70px rgba(0,0,0,0.5);}
  .fa-scope .cstage-frame::after{content:'';position:absolute;left:0;right:0;top:0;height:2px;z-index:9;
    background:var(--slide-grad);transition:background .6s;}

  .fa-scope .cslide{position:absolute;inset:0;opacity:0;transition:opacity .8s cubic-bezier(.16,1,.3,1);pointer-events:none;}
  .fa-scope .cslide.active{opacity:1;pointer-events:auto;}
  .fa-scope .cslide-img{position:absolute;inset:0;width:100%;height:100%;object-fit:cover;
    filter:saturate(.84) brightness(.92) contrast(1.04);}
  .fa-scope .cslide-tint{position:absolute;inset:0;mix-blend-mode:multiply;
    background:linear-gradient(120deg, rgba(8,28,70,0.30), rgba(20,12,56,0.16) 60%, rgba(0,52,62,0.16));}
  .fa-scope .cslide-scrim{position:absolute;inset:0;background:
    linear-gradient(180deg, rgba(4,4,15,0.46) 0%, rgba(4,4,15,0) 22%, rgba(4,4,15,0) 62%, rgba(4,4,15,0.62) 100%);}

  .fa-scope .cstage-top{position:absolute;left:0;right:0;top:0;z-index:8;display:flex;align-items:center;
    justify-content:space-between;padding:16px 18px;}
  .fa-scope .cs-eyebrow{font-family:var(--font-mono);font-size:10px;letter-spacing:.2em;text-transform:uppercase;
    color:rgba(255,255,255,0.82);display:flex;align-items:center;gap:9px;}
  .fa-scope .cs-eyebrow .num{color:var(--slide-lt);}
  .fa-scope .cs-eyebrow .seg{width:5px;height:5px;border-radius:50%;background:var(--slide-c);box-shadow:0 0 8px var(--slide-c);}
  .fa-scope .cs-live{font-family:var(--font-mono);font-size:9px;letter-spacing:.18em;text-transform:uppercase;
    color:rgba(255,255,255,0.62);display:flex;align-items:center;gap:6px;
    background:rgba(6,8,22,0.55);border:1px solid rgba(255,255,255,0.12);border-radius:999px;padding:5px 11px;}
  .fa-scope .cs-live i{width:6px;height:6px;border-radius:50%;background:#39d98a;box-shadow:0 0 8px #39d98a;animation:lpulse 2.4s ease-in-out infinite;}
  @keyframes lpulse{0%,100%{opacity:1;}50%{opacity:.4;}}

  .fa-scope .cslide-cap{position:absolute;left:18px;bottom:18px;z-index:7;display:flex;align-items:center;gap:13px;
    padding:11px 18px 11px 12px;border-radius:14px;background:rgba(6,8,22,0.66);
    border:1px solid rgba(255,255,255,0.13);box-shadow:0 12px 32px rgba(0,0,0,0.42);max-width:62%;}
  .fa-scope .cslide-cap>img{width:44px;height:44px;border-radius:11px;flex:none;display:block;}
  .fa-scope .cslide-cap .cc-name{font-family:var(--font-sans);font-weight:600;font-size:17px;color:#fff;line-height:1.05;}
  .fa-scope .cslide-cap .cc-line{font-family:var(--font-sans);font-size:12px;color:rgba(255,255,255,0.6);margin-top:4px;line-height:1.4;}

  .fa-scope .ov-leaders{position:absolute;inset:0;z-index:5;pointer-events:none;width:100%;height:100%;}
  .fa-scope .chip{position:absolute;z-index:7;padding:10px 14px 11px;border-radius:12px;
    background:rgba(6,8,22,0.72);border:1px solid var(--chip-bd);
    box-shadow:0 0 26px var(--chip-glow), 0 10px 28px rgba(0,0,0,0.4);min-width:170px;}
  .fa-scope .chip .c-top{display:flex;align-items:center;gap:8px;margin-bottom:6px;}
  .fa-scope .chip .c-tile{width:18px;height:18px;border-radius:5px;flex:none;display:block;}
  .fa-scope .chip .c-label{font-family:var(--font-mono);font-size:9px;letter-spacing:.16em;text-transform:uppercase;color:var(--chip-lt);white-space:nowrap;}
  .fa-scope .chip .c-val{font-family:var(--font-sans);font-weight:600;font-size:19px;line-height:1;color:#fff;letter-spacing:-0.01em;}
  .fa-scope .chip .c-sub{font-family:var(--font-sans);font-size:11px;color:rgba(255,255,255,0.6);margin-top:5px;}

  /* hue tokens — full annotated set (slide accent + chip + anchor) */
  .fa-scope .teal{--slide-c:var(--teal);--slide-lt:var(--teal-lt);
    --chip-c:var(--teal);--chip-lt:var(--teal-lt);--chip-bd:rgba(79,174,178,0.5);--chip-glow:rgba(0,144,144,0.22);
    --an-c:var(--teal-lt);--an-ring:rgba(79,174,178,0.22);}
  .fa-scope .blue{--slide-c:var(--blue);--slide-lt:var(--blue-lt);
    --chip-c:var(--blue);--chip-lt:var(--blue-lt);--chip-bd:rgba(80,177,255,0.5);--chip-glow:rgba(0,144,255,0.22);
    --an-c:var(--blue-lt);--an-ring:rgba(80,177,255,0.22);}
  .fa-scope .indigo{--slide-c:var(--navy-lt);--slide-lt:var(--indigo-lt);
    --chip-c:var(--navy-lt);--chip-lt:var(--indigo-lt);--chip-bd:rgba(143,119,199,0.55);--chip-glow:rgba(111,81,188,0.26);
    --an-c:var(--indigo-lt);--an-ring:rgba(143,119,199,0.24);}

  .fa-scope .cstage-ctrl{display:flex;align-items:center;justify-content:space-between;padding-top:20px;}
  .fa-scope .cdots{display:flex;align-items:center;gap:9px;}
  .fa-scope .cdot{height:6px;width:34px;border-radius:999px;background:rgba(255,255,255,0.16);
    border:none;cursor:pointer;padding:0;position:relative;overflow:hidden;}
  .fa-scope .cdot.active{background:rgba(255,255,255,0.22);}
  .fa-scope .cdot-fill{position:absolute;left:0;top:0;bottom:0;width:0;background:#fff;}
  .fa-scope .cdot-fill.run{animation:dotfill 6s linear forwards;}
  .fa-scope .cnav{display:flex;align-items:center;gap:9px;}
  .fa-scope .ccount{font-family:var(--font-mono);font-size:11px;letter-spacing:.12em;color:rgba(255,255,255,0.5);margin-right:6px;}
  .fa-scope .cnav button{width:38px;height:38px;border-radius:50%;border:1px solid rgba(255,255,255,0.16);
    background:rgba(255,255,255,0.05);color:#fff;cursor:pointer;display:flex;align-items:center;
    justify-content:center;transition:background .15s,border-color .15s;}
  .fa-scope .cnav button svg{width:19px;height:19px;}
  .fa-scope .cnav button:hover{background:rgba(255,255,255,0.12);border-color:rgba(255,255,255,0.32);}
  /* ============================================================= */
  /* CONCEPT 1 · FINISHED (.ic-scope) — 1B's framed-carousel shell  */
  /* (reused from .fa-scope) now carries Concept 2's three-beat     */
  /* story INSIDE the frame: trigger → reason+act → verified.       */
  /* Hue tokens come free from .fa-scope's .teal/.blue/.indigo      */
  /* (--chip-*, --slide-*, --an-*). These rules add only the story  */
  /* vocabulary, tuned compact for the ~762×482 frame.              */
  /* ============================================================= */
  /* right-side legibility scrim behind the card stack */
  .ic-scope .ic-rscrim{position:absolute;inset:0;z-index:4;pointer-events:none;
    background:linear-gradient(270deg, rgba(4,4,15,0.74) 0%, rgba(4,4,15,0.40) 30%, rgba(4,4,15,0.06) 58%, transparent 72%);}

  /* status pill (top eyebrow) takes the slide hue instead of generic green */
  .ic-scope .cs-live i{background:var(--slide-c);box-shadow:0 0 8px var(--slide-c);}

  /* in-frame app-tile + name lockup (replaces the family · app eyebrow text) */
  .ic-scope .cs-eyebrow{gap:16px;}
  .ic-scope .cs-eyebrow .num{font-family:var(--font-mono);font-size:10px;letter-spacing:.16em;color:rgba(255,255,255,0.6);}
  .ic-scope .ic-lock{display:flex;align-items:center;gap:7px;}
  .ic-scope .ic-tile{width:19px;height:19px;border-radius:5px;display:block;flex:none;
    box-shadow:0 2px 7px rgba(0,0,0,0.42);}
  .ic-scope .ic-lock .ic-tile + .ic-tile{margin-left:-3px;}
  .ic-scope .ic-appname{font-family:var(--font-sans);font-weight:400;font-size:13px;letter-spacing:0;
    color:#fff;text-transform:none;margin-left:2px;}

  /* phase reveal primitive — robust on loop reset */
  .ic-scope .ic-rv{opacity:0;transform:translateY(8px);
    transition:opacity .5s cubic-bezier(.16,1,.3,1),transform .5s cubic-bezier(.16,1,.3,1);}
  .ic-scope .ic-rv.show{opacity:1;transform:none;}

  .ic-scope .ic-i{display:inline-flex;align-items:center;justify-content:center;color:var(--chip-lt);}
  .ic-scope .ic-i svg{width:16px;height:16px;display:block;}
  .ic-scope .ic-i.sm svg{width:14px;height:14px;}
  .ic-scope .ic-i.xs svg{width:12px;height:12px;}

  .ic-scope .ic-card{position:absolute;z-index:8;border-radius:12px;
    background:rgba(6,8,18,0.76);border:1px solid var(--chip-bd);
    box-shadow:0 0 24px var(--chip-glow),0 10px 26px rgba(0,0,0,0.44);padding:11px 14px 12px;}

  /* 0 · trigger */
  .ic-scope .ic-signal{width:300px;}
  .ic-scope .ic-sig-top{display:flex;align-items:center;gap:7px;margin-bottom:7px;}
  .ic-scope .ic-kicker{font-family:var(--font-mono);font-size:9px;letter-spacing:.16em;
    text-transform:uppercase;color:var(--chip-lt);}
  .ic-scope .ic-sig-q{font-family:var(--font-sans);font-weight:500;font-size:15px;line-height:1.4;
    color:#fff;letter-spacing:-0.005em;}
  .ic-scope .ic-sig-q b{color:var(--chip-lt);font-weight:600;}

  /* 1 · reason + act */
  .ic-scope .ic-act{width:300px;}
  .ic-scope .ic-act-top{display:flex;align-items:center;gap:8px;margin-bottom:3px;}
  .ic-scope .ic-act-top .ic-chk{margin-left:auto;}
  .ic-scope .ic-act-name{font-family:var(--font-sans);font-weight:600;font-size:14px;color:#fff;line-height:1.18;}
  .ic-scope .ic-act-name b{color:var(--chip-lt);font-family:var(--font-mono);font-weight:500;letter-spacing:.01em;}
  .ic-scope .ic-act-list{margin-top:9px;display:flex;flex-direction:column;gap:7px;}
  .ic-scope .ic-act-li{display:flex;align-items:center;gap:9px;font-family:var(--font-sans);
    font-size:12px;line-height:1.28;color:rgba(255,255,255,0.78);}
  .ic-scope .ic-act-li .ic-i{flex:none;}
  .ic-scope .ic-act-li b{font-family:var(--font-mono);font-weight:500;color:var(--chip-lt);letter-spacing:.02em;white-space:nowrap;}

  /* 2 · verified outcome */
  .ic-scope .ic-sum{display:flex;align-items:center;gap:11px;width:300px;}
  .ic-scope .ic-sum>.ic-i{flex:none;}
  .ic-scope .ic-sum-val{font-family:var(--font-sans);font-weight:600;font-size:14.5px;color:#fff;line-height:1.22;letter-spacing:-0.005em;}
  .ic-scope .ic-sum-val b{color:var(--chip-lt);font-weight:600;}
  .ic-scope .ic-sum-sub{font-family:var(--font-mono);font-size:9px;letter-spacing:.06em;
    text-transform:uppercase;color:rgba(255,255,255,0.56);margin-top:5px;}

  /* connecting spine between the three beats */
  .ic-scope .ic-thread{position:absolute;inset:0;z-index:5;pointer-events:none;width:100%;height:100%;}
  .ic-scope .ic-thread-ln{stroke:var(--chip-c);stroke-width:1;vector-effect:non-scaling-stroke;
    opacity:0;transition:opacity .7s ease;}
  .ic-scope .ic-thread-ln.show{opacity:.34;}
  .ic-scope .ic-thread-dot{position:absolute;z-index:6;width:6px;height:6px;border-radius:50%;
    transform:translate(-50%,-50%);background:var(--chip-c);box-shadow:0 0 7px var(--chip-c);
    opacity:0;transition:opacity .5s ease;}
  .ic-scope .ic-thread-dot.show{opacity:.9;}

  /* lit scene nodes — pulse on a real point in the scene */
  .ic-scope .ic-node{position:absolute;z-index:5;width:10px;height:10px;border-radius:50%;
    transform:translate(-50%,-50%);background:var(--an-c);
    box-shadow:0 0 0 3px var(--an-ring),0 0 12px var(--an-c);opacity:0;transition:opacity .55s ease;}
  .ic-scope .ic-node.lit{opacity:1;}
  .ic-scope .ic-node.lit::after{content:'';position:absolute;inset:-7px;border-radius:50%;
    border:1px solid var(--an-c);opacity:.5;animation:anode-ping 2.6s ease-out infinite;}

  /* carousel cadence matches story completion (~6.4s) */
  .ic-scope .cdot-fill.run{animation:dotfill 6.4s linear forwards;}

  /* ============================================================= */
  /* CONCEPT 2 · WAYFINDER "intent in space" overlays — the three   */
  /* floating tiles + split route path lifted verbatim from the     */
  /* full-bleed Concept 2 hero, refitted into the framed stage on   */
  /* the indigo (Wayfinder) slide. Self-contained loop. All rules   */
  /* scoped `.ic-scope .wf-scope` so the wf-* vocabulary never       */
  /* collides with the bare .wf-* spotlight classes elsewhere.      */
  /* ============================================================= */
  .ic-scope .wf-scope{--wf:var(--navy-lt);--wf-lt:var(--indigo-lt);
    --wf-bd:rgba(143,119,199,0.55);--wf-glow:rgba(111,81,188,0.30);
    position:absolute;inset:0;pointer-events:none;}
  .ic-scope .wf-scope .wf-floor{position:absolute;inset:0;z-index:18;pointer-events:none;width:100%;height:100%;}
  .ic-scope .wf-scope .wf-node{position:absolute;z-index:19;width:11px;height:11px;border-radius:50%;
    transform:translate(-50%,-50%);background:var(--wf-lt);
    box-shadow:0 0 0 3px rgba(143,119,199,0.24),0 0 14px var(--wf-lt);}
  .ic-scope .wf-scope .wf-node::after{content:'';position:absolute;inset:-7px;border-radius:50%;
    border:1px solid var(--wf-lt);opacity:.5;animation:anode-ping 2.6s ease-out infinite;}
  .ic-scope .wf-scope .wf-card{position:absolute;z-index:20;border-radius:13px;
    background:rgba(8,7,24,0.72);border:1px solid var(--wf-bd);
    box-shadow:0 0 28px var(--wf-glow),0 12px 30px rgba(0,0,0,0.42);padding:11px 14px 12px;}
  .ic-scope .wf-scope .wf-i{display:inline-flex;align-items:center;justify-content:center;color:var(--wf-lt);}
  .ic-scope .wf-scope .wf-i svg{width:18px;height:18px;display:block;}
  .ic-scope .wf-scope .wf-i.sm svg{width:16px;height:16px;}
  .ic-scope .wf-scope .wf-i.xs svg{width:13px;height:13px;}
  .ic-scope .wf-scope .wf-i.chat svg,.ic-scope .wf-scope .wf-i.check svg,.ic-scope .wf-scope .wf-i.clock svg{width:15px;height:15px;}

  /* floor route — committed (solid) leg + upcoming (dashed) leg, neon purple */
  .ic-scope .wf-scope .wf-path-glow{fill:none;stroke:rgba(168,90,255,0.5);stroke-width:14;vector-effect:non-scaling-stroke;stroke-linecap:round;filter:blur(3px);}
  .ic-scope .wf-scope .wf-path{fill:none;stroke:#a85aff;stroke-width:0.26;stroke-linecap:round;opacity:1;filter:drop-shadow(0 0 5px rgba(168,90,255,0.9));}
  .ic-scope .wf-scope .wf-draw-solid{stroke-dasharray:100;stroke-dashoffset:100;transition:stroke-dashoffset 1.35s cubic-bezier(.16,1,.3,1);}
  .ic-scope .wf-scope .wf-draw-solid.drawn{stroke-dashoffset:0;}
  .ic-scope .wf-scope .wf-path-rem{fill:none;stroke:#a85aff;stroke-width:3;vector-effect:non-scaling-stroke;
    stroke-linecap:round;stroke-linejoin:round;stroke-dasharray:11 9;opacity:0;
    filter:drop-shadow(0 0 4px rgba(168,90,255,0.85));transition:opacity .5s ease .25s;}
  .ic-scope .wf-scope .wf-path-rem.show{opacity:.95;}

  /* destination pin ahead */
  .ic-scope .wf-scope .wf-dest{position:absolute;z-index:21;transform:translate(-50%,-100%);display:flex;flex-direction:column;align-items:center;}
  .ic-scope .wf-scope .wf-dest-pin{width:42px;height:42px;display:flex;align-items:center;justify-content:center;color:#fff;
    filter:drop-shadow(0 0 16px var(--wf-glow)) drop-shadow(0 8px 18px rgba(0,0,0,0.45));}
  .ic-scope .wf-scope .wf-dest-pin svg{width:42px;height:42px;display:block;}
  .ic-scope .wf-scope .wf-dest-lab{margin-top:9px;font-family:var(--font-sans);font-weight:600;font-size:13px;color:#fff;
    background:rgba(8,7,24,0.78);border:1px solid var(--wf-bd);border-radius:7px;padding:4px 10px;white-space:nowrap;
    box-shadow:0 6px 18px rgba(0,0,0,0.4);}

  /* reveal primitives (phase-driven, robust on loop reset) */
  .ic-scope .wf-scope .wfx-rv{opacity:0;transform:translateY(9px);transition:opacity .55s cubic-bezier(.16,1,.3,1),transform .55s cubic-bezier(.16,1,.3,1);}
  .ic-scope .wf-scope .wfx-rv.show{opacity:1;transform:none;}
  .ic-scope .wf-scope .wfx-fade{opacity:0;transition:opacity .55s cubic-bezier(.16,1,.3,1);}
  .ic-scope .wf-scope .wfx-fade.show{opacity:1;}
  .ic-scope .wf-scope .wfx-rv2{opacity:0;transition:opacity .4s ease;}
  .ic-scope .wf-scope .wfx-rv2.show{opacity:1;}

  /* the three intent tiles */
  .ic-scope .wf-scope .wfd-ask{min-width:296px;max-width:344px;}
  .ic-scope .wf-scope .wfd-ask-top{display:flex;align-items:center;gap:8px;margin-bottom:9px;}
  .ic-scope .wf-scope .wfd-kicker{font-family:var(--font-mono);font-size:9.5px;letter-spacing:.16em;text-transform:uppercase;color:var(--wf-lt);}
  .ic-scope .wf-scope .wfd-live{margin-left:auto;display:inline-flex;align-items:center;gap:6px;
    font-family:var(--font-mono);font-size:9px;letter-spacing:.14em;text-transform:uppercase;color:rgba(255,255,255,0.62);}
  .ic-scope .wf-scope .wfd-live i{width:6px;height:6px;border-radius:50%;background:var(--wf-lt);box-shadow:0 0 8px var(--wf-lt);animation:lpulse 1.8s ease-in-out infinite;}
  .ic-scope .wf-scope .wfd-q{font-family:var(--font-sans);font-weight:500;font-size:16.5px;line-height:1.42;color:#fff;letter-spacing:-0.005em;}
  .ic-scope .wf-scope .wfd-q b{color:var(--wf-lt);font-weight:600;}
  .ic-scope .wf-scope .wfd-foodnode{position:absolute;z-index:22;width:34px;height:34px;border-radius:50%;
    transform:translate(-50%,-50%);background:rgba(8,7,24,0.82);border:1.5px solid var(--wf-bd);
    display:flex;align-items:center;justify-content:center;color:var(--wf-lt);
    box-shadow:0 0 0 0 var(--wf-glow);transition:box-shadow .6s ease,background .6s ease,border-color .6s,color .6s;}
  .ic-scope .wf-scope .wfd-foodnode svg{width:17px;height:17px;}
  .ic-scope .wf-scope .wfd-foodnode.lit{background:linear-gradient(135deg,#3A13A7,#6F51BC);border-color:transparent;color:#fff;
    box-shadow:0 0 22px var(--wf-glow),0 0 0 4px rgba(143,119,199,0.18);}
  .ic-scope .wf-scope .wfd-foodnode.lit::after{content:'';position:absolute;inset:-6px;border-radius:50%;border:1px solid var(--wf-lt);opacity:.5;animation:anode-ping 2.4s ease-out infinite;}
  .ic-scope .wf-scope .wfd-order{min-width:212px;padding-left:30px;}
  .ic-scope .wf-scope .wfd-order-top{display:flex;align-items:center;gap:8px;margin-bottom:7px;}
  .ic-scope .wf-scope .wfd-order-top .wf-i{margin-left:auto;color:var(--wf-lt);}
  .ic-scope .wf-scope .wfd-order-name{font-family:var(--font-sans);font-weight:600;font-size:15px;color:#fff;line-height:1.15;}
  .ic-scope .wf-scope .wfd-order-meta{font-family:var(--font-sans);font-size:12px;color:rgba(255,255,255,0.64);margin-top:4px;}
  .ic-scope .wf-scope .wfd-order-meta b{font-family:var(--font-mono);font-weight:500;color:var(--wf-lt);letter-spacing:.02em;}
  .ic-scope .wf-scope .wfd-sum{display:flex;align-items:center;gap:12px;min-width:276px;}
  .ic-scope .wf-scope .wfd-sum>.wf-i{color:var(--wf-lt);flex:none;}
  .ic-scope .wf-scope .wfd-sum-val{font-family:var(--font-sans);font-weight:600;font-size:15.5px;color:#fff;line-height:1.18;}
  .ic-scope .wf-scope .wfd-sum-val b{color:var(--wf-lt);font-weight:600;}
  .ic-scope .wf-scope .wfd-sum-sub{font-family:var(--font-mono);font-size:9.5px;letter-spacing:.08em;text-transform:uppercase;color:rgba(255,255,255,0.56);margin-top:4px;}


/* ================================================================
   CASE-STUDY MINI-FEED — proof band (one feature + two supporting)
   Ported from Case Study Modules · whole tile links · dark photo tiles
   ================================================================ */
.proof { background: var(--white); padding: 96px 0 104px; }
.proof-head { display:flex; align-items:flex-end; justify-content:space-between; gap:48px; margin-bottom:44px; }
/* lift the box-bottom to the text baseline so the right paragraph bottom-aligns to
   "buildings" rather than being dropped by the descender of the g — matches the
   descender-free portfolio/verticals heads. nowrap keeps the explicit <br> line
   break intact (the inline grad-text span + text-wrap:balance otherwise rebreaks
   "real buildings." onto two lines). */
#atrius-homepage-draft-main .proof-head .section-title { margin-bottom: -0.13em; text-wrap: nowrap; white-space: nowrap; }
#atrius-homepage-draft-main .proof-head .section-sub { margin:0; }
.cs-tile { position:relative; display:block; overflow:hidden; border-radius:var(--r-xl);
  text-decoration:none; color:#fff; background-color:#0b0b16; background-size:cover; background-position:center;
  isolation:isolate; transition:transform .35s var(--ease), box-shadow .35s var(--ease);
  box-shadow:0 1px 3px rgba(0,0,0,0.10), 0 1px 2px rgba(0,0,0,0.06); }
.cs-tile::before { content:''; position:absolute; inset:0; z-index:1;
  background:linear-gradient(180deg, rgba(4,4,15,0.34) 0%, rgba(4,4,15,0) 26%),
    linear-gradient(0deg, rgba(4,4,15,0.92) 0%, rgba(4,4,15,0.66) 24%, rgba(4,4,15,0.12) 56%, rgba(4,4,15,0) 78%);
  transition:opacity .35s var(--ease); }
.cs-tile::after { content:''; position:absolute; inset:0; z-index:1; opacity:0;
  transition:opacity .35s var(--ease); background:linear-gradient(0deg, var(--hue-deep) 0%, transparent 60%); mix-blend-mode:multiply; }
.cs-tile:hover { transform:translateY(-4px); }
.cs-tile:hover::after { opacity:0.55; }
.cs-tile.cs-teal { --hue:var(--teal); --hue-lt:var(--teal-lt); --hue-deep:rgba(0,72,67,0.9); --glow:rgba(0,144,144,0.30); }
.cs-tile.cs-blue { --hue:var(--facilities-accent); --hue-lt:var(--blue-lt); --hue-deep:rgba(0,23,67,0.92); --glow:rgba(23,71,170,0.34); }
.cs-tile.cs-navy { --hue:var(--navy-lt); --hue-lt:var(--navy-lt); --hue-deep:rgba(58,19,167,0.9); --glow:rgba(111,81,188,0.34); }
.cs-tile.cs-teal:hover { box-shadow:0 24px 60px -18px var(--glow), 0 0 0 1px rgba(0,144,144,0.18); }
.cs-tile.cs-blue:hover { box-shadow:0 24px 60px -18px var(--glow), 0 0 0 1px rgba(23,71,170,0.20); }
.cs-tile.cs-navy:hover { box-shadow:0 24px 60px -18px var(--glow), 0 0 0 1px rgba(111,81,188,0.20); }
.cs-tile .cs-rule { position:absolute; top:0; left:0; right:0; height:3px; z-index:3; background:var(--hue);
  transform:scaleX(0); transform-origin:left; transition:transform .4s var(--ease); }
.cs-tile:hover .cs-rule { transform:scaleX(1); }
.proof .cs-eyebrow { position:absolute; top:22px; left:22px; z-index:3; display:inline-flex; align-items:center; gap:8px;
  font-family:'IBM Plex Mono',monospace; font-size:10px; letter-spacing:0.2em; text-transform:uppercase;
  color:rgba(255,255,255,0.92); padding:6px 12px; border-radius:999px; background:rgba(8,8,20,0.42);
  border:1px solid rgba(255,255,255,0.16); backdrop-filter:blur(6px); }
.proof .cs-eyebrow .dot { width:6px; height:6px; border-radius:50%; background:var(--hue-lt); box-shadow:0 0 8px var(--hue-lt); }
.cs-arrow { position:absolute; top:18px; right:18px; z-index:3; width:38px; height:38px; border-radius:50%;
  display:grid; place-items:center; background:rgba(255,255,255,0.10); border:1px solid rgba(255,255,255,0.18);
  color:#fff; font-size:17px; line-height:1; opacity:0; transform:translate(-4px,4px) scale(0.92);
  transition:opacity .3s var(--ease), transform .3s var(--ease), background .2s; }
.cs-tile:hover .cs-arrow { opacity:1; transform:translate(0,0) scale(1); background:rgba(255,255,255,0.18); }
.cs-body { position:absolute; left:0; right:0; bottom:0; z-index:2; padding:28px; display:flex; flex-direction:column; }
.cs-metric { font-weight:700; letter-spacing:-0.04em; line-height:0.92; color:#fff; margin:0;
  display:flex; align-items:baseline; gap:2px; text-shadow:0 2px 20px rgba(0,0,0,0.35); }
.cs-metric .unit { color:var(--hue-lt); font-weight:600; }
.cs-metric-label { font-family:'IBM Plex Mono',monospace; text-transform:uppercase; letter-spacing:0.16em;
  color:rgba(255,255,255,0.78); margin-top:10px; font-size:10px; }
.cs-divider { height:1px; background:rgba(255,255,255,0.16); margin:16px 0 14px; }
.cs-customer { display:flex; align-items:center; gap:10px; }
.cs-customer .name { font-size:15px; font-weight:600; color:#fff; letter-spacing:-0.01em; }
.cs-customer .meta { font-family:'IBM Plex Mono',monospace; font-size:10px; letter-spacing:0.12em;
  text-transform:uppercase; color:rgba(255,255,255,0.55); }
.cs-customer .sep { width:1px; height:12px; background:rgba(255,255,255,0.22); }
.cs-lg .cs-metric { font-size:76px; }
.cs-sm .cs-body { padding:20px; }
.cs-sm .cs-metric { font-size:44px; }
.cs-sm .cs-eyebrow { top:16px; left:16px; font-size:9px; padding:5px 10px; }
.cs-sm .cs-arrow { top:14px; right:14px; width:32px; height:32px; font-size:15px; }
.cs-sm .cs-metric-label { font-size:10px; margin-top:7px; }
.cs-sm .cs-customer .name { font-size:13px; }
.cs-sm .cs-customer .meta { font-size:9px; }
.cs-minifeed { display:grid; grid-template-columns:1.42fr 1fr; grid-template-rows:1fr 1fr; gap:20px;
  width:100%; height:480px; }
.cs-minifeed > .cs-lg { grid-column:1; grid-row:1 / span 2; }
@media (prefers-reduced-motion: reduce){ .cs-tile,.cs-arrow,.cs-rule { transition:none !important; } }

/* ================================================================
   BUILDING PERFORMANCE SPOTLIGHT  (folded from "Building Performance
   Section v2") — Dark · featured · Sustain · Measure · Report.
   Reuses the page shimmer engine + .btn-secondary-dark; only the
   .bp* section rules + a .bp-scoped teal shimmer are added here.
   ================================================================ */
.bp{ --teal-bright:#00A8A8; background:var(--dark); color:#fff; overflow:hidden; position:relative; }
.bp .hl-dark{ --shim-1:#00A8A8; --shim-2:#4FAEB2; --shim-3:#0090FF; --shim-sheen:rgba(255,255,255,0.72); }
.bp-bg{
  position:absolute;inset:0;
  background:
    radial-gradient(ellipse 900px 600px at 92% 46%, rgba(0,144,144,0.20), transparent 60%),
    radial-gradient(ellipse 700px 500px at 8% 82%, rgba(0,144,255,0.10), transparent 65%),
    radial-gradient(ellipse 520px 320px at 50% 8%, rgba(79,174,178,0.07), transparent 60%),
    linear-gradient(165deg,#05050E 0%,#04040F 100%);
}
.bp-bg::before{
  content:'';position:absolute;inset:0;
  background:
    repeating-linear-gradient(90deg,rgba(0,168,168,0.035) 0 1px,transparent 1px 60px),
    repeating-linear-gradient(0deg,rgba(0,168,168,0.03) 0 1px,transparent 1px 60px);
}
.bp-inner{
  position:relative;z-index:5;max-width:1440px;margin:0 auto;padding:100px 64px;
  display:grid;grid-template-columns:1fr 1fr;gap:80px;align-items:center;
}
.bp-eyebrow{
  display:flex;align-items:center;gap:12px;font-family:var(--font-mono);
  font-size:10px;letter-spacing:0.22em;text-transform:uppercase;color:var(--teal-lt);margin-bottom:28px;
}
.bp-eyebrow::before{content:'';width:28px;height:1px;background:var(--teal-lt);flex-shrink:0;}
.bp-left h2{font-size:58px;font-weight:700;letter-spacing:-0.035em;line-height:1.05;margin:0 0 22px;}
.bp-sub{font-size:17px;font-weight:300;line-height:1.65;color:rgba(255,255,255,0.60);max-width:490px;margin:0 0 30px;}
.bp-triad{display:flex;gap:10px;margin-bottom:34px;flex-wrap:wrap;}
.bp-triad span{
  font-family:var(--font-mono);font-size:11px;letter-spacing:0.14em;text-transform:uppercase;
  color:rgba(255,255,255,0.75);padding:7px 14px;border:1px solid rgba(255,255,255,0.13);
  border-radius:999px;background:rgba(255,255,255,0.04);
}
.bp-cta-row{display:flex;align-items:center;gap:28px;}
.bp-right{position:relative;}
.bpc{
  width:100%;max-width:540px;margin-left:auto;background:linear-gradient(160deg,rgba(10,12,26,0.9),rgba(6,8,18,0.9));
  border:1px solid rgba(255,255,255,0.10);border-radius:18px;overflow:hidden;
  box-shadow:0 0 0 1px rgba(255,255,255,0.02),0 24px 60px rgba(0,0,0,0.45),0 0 60px rgba(0,144,144,0.12);
}
.bpc-top{display:flex;align-items:center;justify-content:space-between;padding:18px 22px;border-bottom:1px solid rgba(255,255,255,0.08);}
.bpc-portfolio{display:flex;align-items:center;gap:10px;font-size:14px;font-weight:600;color:#fff;}
.bpc-portfolio .dot{width:8px;height:8px;border-radius:50%;background:var(--teal-bright);box-shadow:0 0 10px var(--teal-bright);}
.bpc-pill{font-family:var(--font-mono);font-size:10px;letter-spacing:0.1em;text-transform:uppercase;color:var(--teal-lt);border:1px solid rgba(0,168,168,0.4);background:rgba(0,168,168,0.1);border-radius:999px;padding:5px 11px;white-space:nowrap;}
.bpc-chart{position:relative;padding:22px 22px 14px;}
.bpc-chart .ylab{position:absolute;top:18px;left:22px;font-family:var(--font-mono);font-size:9.5px;letter-spacing:0.12em;text-transform:uppercase;color:rgba(255,255,255,0.4);}
.bpc-delta{position:absolute;top:14px;right:22px;text-align:right;}
.bpc-delta b{display:block;font-size:26px;font-weight:700;letter-spacing:-0.03em;color:var(--teal-bright);line-height:1;}
.bpc-delta span{font-family:var(--font-mono);font-size:9.5px;letter-spacing:0.1em;text-transform:uppercase;color:rgba(255,255,255,0.45);}
.bpc-chart svg{display:block;width:100%;height:auto;margin-top:42px;}
.bpc-months{display:flex;justify-content:space-between;margin-top:6px;padding:0 2px;}
.bpc-months span{font-family:var(--font-mono);font-size:9px;letter-spacing:0.1em;color:rgba(255,255,255,0.32);}
.bpc-actual{stroke:var(--teal-bright);stroke-width:2.5;fill:none;stroke-linecap:round;stroke-dasharray:600;stroke-dashoffset:0;}
.bpc.is-drawn .bpc-actual{animation:bp-draw 1.7s cubic-bezier(0.16,1,0.3,1) .15s;}
@keyframes bp-draw{from{stroke-dashoffset:600;}to{stroke-dashoffset:0;}}
.bpc-stats{display:grid;grid-template-columns:repeat(3,1fr);border-top:1px solid rgba(255,255,255,0.08);}
.bpc-stat{padding:18px 16px;border-right:1px solid rgba(255,255,255,0.08);}
.bpc-stat:last-child{border-right:none;}
.bpc-stat .n{font-size:24px;font-weight:700;letter-spacing:-0.02em;color:#fff;line-height:1;margin-bottom:6px;}
.bpc-stat .n span{font-size:13px;font-weight:500;color:rgba(255,255,255,0.55);margin-left:3px;}
.bpc-stat .l{font-family:var(--font-mono);font-size:9.5px;letter-spacing:0.1em;text-transform:uppercase;}
.bpc-stat.teal .l{color:var(--teal-lt);}
.bpc-stat.blue .l{color:var(--blue-lt);}
.bp-trust-strip{display:none;position:relative;z-index:5;padding-top:52px;}
.bp-trust-heading{
  text-align:center;font-family:var(--font-mono);font-size:11px;letter-spacing:0.18em;
  text-transform:uppercase;color:rgba(255,255,255,0.4);margin-bottom:30px;padding:0 64px;
}
.bp-stat-wall{display:grid;grid-template-columns:repeat(6,1fr);border-top:1px solid rgba(255,255,255,0.07);border-bottom:1px solid rgba(255,255,255,0.07);}
.bsc{
  min-height:128px;display:flex;flex-direction:column;align-items:center;justify-content:center;
  padding:22px 12px;gap:2px;border-right:1px solid rgba(255,255,255,0.07);cursor:default;
}
.bsc:last-child{border-right:none;}
.bsc-sector{font-family:var(--font-mono);font-size:9.5px;font-weight:400;letter-spacing:0.16em;color:rgba(255,255,255,0.38);text-transform:uppercase;text-align:center;margin-bottom:3px;}
.bsc-name{font-size:14px;font-weight:400;letter-spacing:-0.01em;color:rgba(255,255,255,0.92);text-align:center;line-height:1.2;margin-bottom:12px;}
.bsc-num{font-size:32px;font-weight:500;letter-spacing:-0.03em;color:var(--teal-lt);line-height:1;min-width:90px;text-align:center;transition:color .2s;margin-bottom:7px;}
.bsc:hover .bsc-num{color:var(--teal-bright);}
.bsc-unit{font-family:var(--font-mono);font-size:8.5px;font-weight:400;letter-spacing:0.14em;text-transform:uppercase;color:rgba(255,255,255,0.4);text-align:center;line-height:1.3;}
.bsc-active .bsc-unit{color:var(--teal-lt);}
.bsc-active{position:relative;background:rgba(0,168,168,0.09);}
.bsc-active::before{content:'';position:absolute;top:-1px;left:0;right:0;height:2px;background:var(--teal-bright);}
.bsc-active .bsc-sector{color:var(--teal-lt);}
.bsc-active .bsc-name{color:#fff;}
.bsc-active .bsc-num{color:var(--teal-bright);}
.bp-quote{padding:60px 64px 86px;text-align:center;max-width:780px;margin:0 auto;position:relative;z-index:5;}
.bp-quote .mark{font-family:var(--font-mono);font-size:11px;letter-spacing:0.2em;text-transform:uppercase;color:var(--teal-lt);margin-bottom:24px;}
.bp-quote p{font-size:23px;font-style:italic;font-weight:300;line-height:1.55;color:rgba(255,255,255,0.82);margin:0 0 26px;letter-spacing:-0.01em;}
.bp-quote .attr{font-family:var(--font-mono);font-size:9.5px;letter-spacing:0.16em;text-transform:uppercase;color:rgba(255,255,255,0.45);display:flex;align-items:center;justify-content:center;gap:14px;}
.bp-quote .attr::before,.bp-quote .attr::after{content:'';width:24px;height:1px;background:rgba(255,255,255,0.2);flex-shrink:0;}
@media (prefers-reduced-motion:reduce){.bpc.is-drawn .bpc-actual{animation:none;}}

/* Mobile guardrails for the draft template. The static source keeps the visual
   system; this layer prevents clipped text and horizontal navigation overflow. */
@media (max-width: 767px) {
  html,
  body {
    overflow-x: hidden;
  }

  .container {
    padding-left: 24px;
    padding-right: 24px;
  }

  .hero {
    height: auto !important;
    min-height: 820px !important;
  }

  .fa-scope .chero-grid {
    position: relative;
    min-height: 820px;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    gap: 34px;
    padding: 72px 24px 52px;
    overflow: hidden;
  }

  .fa-scope .chero-copy {
    width: 100%;
    max-width: 100%;
  }

  .fa-scope .chero-eyebrow {
    max-width: 100%;
    white-space: normal;
    line-height: 1.4;
  }

  .fa-scope .chero h1 {
    max-width: 100%;
    font-size: clamp(38px, 10.5vw, 44px);
    line-height: 1.05;
    letter-spacing: 0;
    overflow-wrap: break-word;
  }

  .fa-scope .chero-sub {
    width: 100%;
    max-width: min(318px, calc(100vw - 48px));
    font-size: 15px;
    overflow-wrap: break-word;
  }

  .fa-scope .chero-stage {
    width: 100%;
    max-width: 100%;
    height: 330px;
    min-height: 330px;
    overflow: hidden;
  }

  .fa-scope .cstage-frame {
    width: 100%;
    border-radius: 14px;
  }

  .fa-scope .cstage-top {
    padding: 12px;
    gap: 10px;
  }

  .fa-scope .cs-live,
  .fa-scope .cstage-ctrl,
  .ic-scope .ic-card,
  .ic-scope .ic-node,
  .ic-scope .ic-thread,
  .ic-scope .ic-thread-dot,
  .ic-scope .wf-scope .wf-card,
  .ic-scope .wf-scope .wf-node,
  .ic-scope .wf-scope .wf-dest {
    display: none;
  }

  .ic-scope .ic-card,
  .ic-scope .ic-signal,
  .ic-scope .ic-act,
  .ic-scope .ic-sum,
  .ic-scope .wf-scope .wf-card {
    width: min(280px, calc(100% - 24px));
    max-width: calc(100% - 24px);
  }

  .webinar-inner {
    height: auto;
    min-height: 0;
    padding: 18px 24px;
    gap: 12px;
    flex-wrap: wrap;
    align-items: flex-start;
  }

  .webinar-sep {
    display: none;
  }

  .webinar-title {
    flex-basis: 100%;
    white-space: normal;
    line-height: 1.4;
    order: 3;
  }

  .webinar-meta {
    order: 4;
    white-space: normal;
    line-height: 1.4;
  }

  .webinar-register {
    margin-left: auto;
  }

  .portfolio,
  .verticals {
    padding: 72px 0;
  }

  #atrius-homepage-draft-main .section-title,
  .wf-left h2,
  .bp-left h2 {
    font-size: clamp(36px, 11vw, 46px);
    line-height: 1.08;
    letter-spacing: 0;
  }

  .portfolio-head,
  .proof-head,
  .verticals-head,
  .wf-inner,
  .bp-inner {
    grid-template-columns: 1fr !important;
    gap: 36px !important;
  }

  .proof-head {
    align-items: flex-start;
    flex-direction: column;
  }

  #atrius-homepage-draft-main .proof-head .section-title {
    white-space: normal;
    text-wrap: balance;
  }

  .wf-inner,
  .bp-inner {
    padding: 72px 24px !important;
  }

  .portfolio-grid,
  .vert-grid,
  .wfm-sources,
  .wfm-out,
  .bpc-stats,
  .bp-stat-wall {
    grid-template-columns: 1fr;
  }

  .pf-bridge {
    display: none;
  }

  .pf-foundation {
    padding: 34px 24px;
  }

  .pf-foundation-eyebrow,
  .wf-eyebrow,
  .bp-eyebrow,
  .bp-trust-heading {
    line-height: 1.45;
  }

  .wfm-wrap,
  .bpc {
    max-width: 100%;
    margin-left: 0;
  }

  .wf-stat-wall-full,
  .wf-logo-wall {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .bp-trust-heading {
    padding: 0 24px;
  }

  .bp-stat-wall {
    border-bottom: 0;
  }

  .bsc,
  .bpc-stat {
    border-right: 0;
    border-bottom: 1px solid rgba(255,255,255,0.07);
  }

  .bp-quote {
    padding: 48px 24px 68px;
  }

  .bp-quote p {
    font-size: 19px;
  }

  .cta-section {
    padding: 80px 0;
  }

  .cta-section h2 {
    font-size: clamp(42px, 12vw, 54px);
    line-height: 1.05;
    letter-spacing: 0;
  }

}
