/* PGI premium refinement layer — preserves existing content and behavior. */
:root {
  --bg: #080d12;
  --bg-2: #0d141b;
  --bg-3: #111c26;
  --panel: #0f1921;
  --panel-2: #14212b;
  --ink: #f3f5f4;
  --body: #a2afb9;
  --muted: #748390;
  --line: rgba(183, 201, 210, 0.09);
  --line-strong: rgba(183, 201, 210, 0.17);
  --accent: #2f9c8e;
  --accent-2: #247d72;
  --field: #76866a;
  --field-bright: #91a47f;
  --field-soft: rgba(118, 134, 106, 0.14);
  --steel: #9bacb8;
  --deep-blue: #0b1825;
  /* Hero cream — reused on editorial homepage bands for cohesion. */
  --cream: #e9e6dc;
  --cream-ink: #26332e;
  --cream-body: #5a6158;
  --cream-muted: #60685e;
  --cream-line: rgba(38, 51, 46, 0.14);
  --cream-line-strong: rgba(38, 51, 46, 0.22);
  --max: 1260px;
  --page-gutter: clamp(20px, 4.2vw, 72px);
  --header-h: 4.75rem;
  --section-space: clamp(5.5rem, 9vw, 9rem);
  --ease-premium: cubic-bezier(0.22, 1, 0.36, 1);
}
/* This layer's unconditional --max above loads after site.css and was
   silently cancelling site.css's large-screen / ultra-wide --max growth
   (their media-scoped rules never win the cascade against this one).
   Re-declared here so content actually widens on big monitors. */
@media (min-width: 1600px) { :root { --max: 1380px; } }
@media (min-width: 2000px) { :root { --max: 1480px; } }

html { font-size: 17px; }
body {
  background:
    radial-gradient(circle at 82% 8%, rgba(24, 50, 65, 0.18), transparent 32rem),
    var(--bg);
}
::selection { background: rgba(47, 156, 142, 0.3); color: var(--ink); }
h1, h2 { letter-spacing: -0.035em; }
p { text-wrap: pretty; }
.shell { width: min(var(--max), calc(100% - var(--page-gutter) - var(--page-gutter))); }
.section {
  position: relative;
  padding-block: var(--section-space);
  border-bottom-color: var(--line);
}
.section-alt {
  background:
    linear-gradient(90deg, rgba(118, 134, 106, 0.035), transparent 28%),
    var(--bg-2);
}
.ops-label, .eyebrow {
  color: var(--field-bright);
  font-weight: 600;
  letter-spacing: 0.17em;
}

/* Contained, high-trust navigation. */
.pgisr-header {
  height: var(--header-h);
  background: rgba(8, 13, 18, 0.9);
  border-bottom-color: var(--line);
  box-shadow: 0 12px 36px rgba(0, 0, 0, 0.16);
  backdrop-filter: blur(18px) saturate(120%);
  -webkit-backdrop-filter: blur(18px) saturate(120%);
}
.pgisr-header-inner {
  width: 100%;
  padding-inline: var(--page-gutter);
}
.pgisr-brand { gap: 0.7rem; }
.pgisr-logo-placeholder {
  display: grid;
  place-items: center;
  width: clamp(132px, 12vw, 164px);
  height: 38px;
  border: 1px dashed rgba(155, 172, 184, 0.38);
  background: rgba(155, 172, 184, 0.035);
  color: rgba(155, 172, 184, 0.62);
  font-family: var(--font-mono);
  font-size: 0.54rem;
  font-weight: 600;
  letter-spacing: 0.16em;
  line-height: 1;
  text-transform: uppercase;
}
.pgisr-logo-placeholder--footer {
  width: 210px;
  height: 54px;
}
.pgisr-brand-name { font-size: 1.18rem; letter-spacing: 0.13em; }
.pgisr-brand-slogan { color: rgba(145, 164, 127, 0.78); }
.pgisr-nav { height: auto; gap: clamp(1.4rem, 3vw, 2.7rem); }
.pgisr-nav a {
  position: relative;
  color: rgba(238, 243, 244, 0.72);
  transition: color 220ms ease;
}
.pgisr-nav a:not(.pgisr-nav-cta)::after {
  content: '';
  position: absolute;
  left: 0;
  right: 100%;
  bottom: -0.65rem;
  height: 1px;
  background: var(--accent);
  transition: right 260ms var(--ease-premium);
}
.pgisr-nav a:hover::after,
.pgisr-nav a[aria-current="page"]::after { right: 0; }
.pgisr-nav a.pgisr-nav-cta {
  align-self: center;
  min-height: 44px;
  height: 44px;
  margin-left: 0.4rem;
  padding: 0 1.35rem;
  border: 1px solid rgba(201, 119, 58, 0.55);
  border-radius: 2px;
  background: transparent;
  color: #e0904e !important;
  box-shadow: none;
  transition: background 180ms ease, border-color 180ms ease, color 180ms ease, transform 180ms ease;
}
.pgisr-nav a.pgisr-nav-cta:hover {
  background: #c9773a !important;
  border-color: #c9773a !important;
  color: #140a03 !important;
  transform: translateY(-1px);
}

/* Restrained, tactile controls. */
.button, .diagram-ctrl-btn, .form-submit {
  border-radius: 2px;
  transition:
    color 180ms ease,
    background 180ms ease,
    border-color 180ms ease,
    transform 220ms var(--ease-premium),
    box-shadow 220ms ease;
}
.button { min-height: 50px; letter-spacing: 0.055em; }
.button-primary, .form-submit {
  background: var(--field);
  border-color: var(--field);
  color: #07100c;
}
.button-primary:hover, .form-submit:hover {
  background: var(--field-bright);
  border-color: var(--field-bright);
  transform: translateY(-2px);
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.26);
}

.form-submit:disabled,
.form-submit:disabled:hover {
  cursor: not-allowed;
  opacity: 0.52;
  transform: none;
  box-shadow: none;
}
.button-secondary:hover, .diagram-ctrl-btn:hover {
  border-color: rgba(47, 156, 142, 0.65);
  background: rgba(47, 156, 142, 0.08);
  transform: translateY(-2px);
}

/* Capability-led homepage hero — full cream field matching the poster. */
.hero {
  min-height: max(760px, 100svh);
  background: var(--cream);
}
.hero::after {
  display: none;
}
.hero-dot-grid { opacity: 0; }
.hero-scanner { opacity: 0; }
.hero-watermark { opacity: 0.03; }
.hero-body::before {
  display: none;
}
.hero-title-row, .hero-text { width: min(100%, 720px); }
.hero-launch-copy { width: 100%; max-width: none; }
.hero-watermark { opacity: 0.04; }
.hero-title-row {
  padding: clamp(3.4rem, 6vh, 5rem) 0 1.6rem;
  border-bottom-color: var(--line-strong);
}
.hero-kicker { color: var(--field-bright); margin-bottom: 1.25rem; }
.hero-kicker span {
  background: var(--field-bright);
  box-shadow: 0 0 14px rgba(145, 164, 127, 0.5);
}
.hero-product-name {
  max-width: 100%;
  font-size: clamp(6rem, 11.5vw, 10.2rem);
  line-height: 0.79;
  letter-spacing: -0.055em;
}
.hero-product-name .title-i::before { background: var(--accent); }
.hero-product-logo-placeholder {
  display: grid;
  place-items: center;
  width: min(100%, 560px);
  height: clamp(104px, 10.5vw, 144px);
  margin: 0;
  border: 1px dashed rgba(155, 172, 184, 0.42);
  background:
    linear-gradient(rgba(155, 172, 184, 0.035), rgba(155, 172, 184, 0.035)),
    repeating-linear-gradient(90deg, transparent 0 47px, rgba(155, 172, 184, 0.035) 47px 48px);
  color: rgba(155, 172, 184, 0.68);
  font-family: var(--font-mono);
  font-size: clamp(0.58rem, 0.8vw, 0.72rem);
  font-weight: 600;
  letter-spacing: 0.18em;
  line-height: 1;
  text-transform: uppercase;
}
.hero-text { padding: 2rem 0 2.5rem; }
.hero-positioning {
  margin: 0;
  max-width: 22ch;
  color: var(--ink);
  font-family: var(--font-display);
  font-size: clamp(1.55rem, 2.5vw, 2.35rem);
  font-weight: 700;
  line-height: 1.08;
  letter-spacing: -0.025em;
}
.hero-text .subtitle {
  max-width: 570px;
  margin-top: 1.2rem;
  color: #aab8c2;
  font-size: clamp(1rem, 1.55vw, 1.18rem);
  line-height: 1.72;
}
.hero-principle {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin: 1.15rem 0 0;
  color: var(--field-bright);
  font-family: var(--font-mono);
  font-size: 0.68rem;
  font-weight: 600;
  line-height: 1.6;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  white-space: nowrap;
}
.hero-principle::before {
  content: '';
  width: 2.5rem;
  height: 1px;
  flex: 0 0 auto;
  background: rgba(145, 164, 127, 0.7);
}
.hero-actions { gap: 0.8rem; margin-top: 1.8rem; }
.hero .hero-visual {
  display: none;
}
.hero-product-shot figcaption {
  color: rgba(155, 172, 184, 0.72);
}
.sys-status-bar {
  background: rgba(5, 9, 13, 0.74);
  border-bottom-color: var(--line);
}
.creds-ticker-wrap {
  border-block: 1px solid var(--cream-line);
  background: var(--cream);
}
.cred-tick-item { background: transparent; transition: background 200ms ease; }
.cred-tick-item:hover { background: rgba(99, 116, 92, 0.1); }
.creds-verify-note { color: var(--cream-muted); }

/* Homepage credentials strip — cream bridge off the hero. */
.creds-strip {
  background: var(--cream);
  border-block: 1px solid var(--cream-line-strong);
}
.creds-ticker-label-col {
  background: rgba(38, 51, 46, 0.06);
  border-right: 1px solid var(--cream-line);
}
.creds-ticker-label {
  color: var(--cream-ink);
}
.creds-strip .cred-tick-name {
  color: var(--cream-ink);
}
.creds-strip .cred-tick-desc {
  color: var(--cream-muted);
}
.creds-strip .cred-tick-item--est .cred-tick-name {
  color: #4f5d54;
}
.creds-verify-band {
  background: var(--cream);
  border-bottom: 1px solid var(--cream-line-strong);
}
.creds-verify-note {
  color: var(--cream-muted);
  background: transparent;
  margin: 0 auto;
  padding-block: 0.85rem 1.35rem;
  border-bottom: 0;
}

/* Deployment and applications — one continuous console. */
/* Soft cream→ops transition under the credentials band. */
.diagram-fullscreen {
  min-height: 0;
  margin-top: 0;
  border-top: 0;
  background:
    linear-gradient(180deg, rgba(233, 230, 220, 0.07), transparent 7rem),
    #080d12;
}
.diagram-section-hdr {
  position: relative;
  min-height: 0;
  margin-bottom: 0;
  padding: clamp(1.25rem, 2vw, 1.75rem) 0 1.5rem;
  border: 0;
  background: transparent;
  align-items: start;
}
.diagram-section-hdr-left {
  grid-template-columns: minmax(0, 1.08fr) minmax(320px, 0.72fr);
  grid-template-areas:
    "label label"
    "title pitch"
    "howto howto";
  gap: 0;
  align-items: stretch;
  overflow: hidden;
  border: 1px solid rgba(155, 172, 184, 0.18);
  background: #09131e;
}
.diagram-section-hdr-left .ops-label {
  grid-area: label;
  display: block;
  margin: 0;
  padding: 1.25rem clamp(1.5rem, 2.8vw, 2.25rem);
  border-right: 0;
  border-bottom: 1px solid rgba(155, 172, 184, 0.18);
  background: rgba(8, 16, 26, 0.54);
  line-height: 1.65;
}
.diagram-section-hdr-left .ops-label::after { display: none; }
.diagram-section-title {
  grid-area: title;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0 0.2em;
  max-width: none;
  margin: 0;
  padding: clamp(1.75rem, 3vw, 2.5rem) clamp(1rem, 2vw, 2rem) clamp(1.75rem, 3vw, 2.5rem) clamp(1.5rem, 3vw, 2.5rem);
  border-right: 0;
  font-size: clamp(3rem, 4.3vw, 4.8rem);
  line-height: 0.92;
}
.diagram-title-line { white-space: nowrap; }
.diagram-section-sub {
  grid-area: howto;
  align-self: stretch;
  max-width: none;
  margin: 0;
  display: block;
  padding: 0.95rem clamp(1.5rem, 3vw, 2.5rem) 1.15rem;
  border: 0;
  border-top: 1px solid rgba(155, 172, 184, 0.14);
  background: rgba(8, 16, 26, 0.35);
  color: rgba(196, 208, 216, 0.82);
  font-size: 0.92rem;
  line-height: 1.55;
}
.diagram-buyer-pitch {
  grid-area: pitch;
  max-width: none;
  margin: 0;
  padding: clamp(1.5rem, 2.8vw, 2.25rem) clamp(1.35rem, 2.5vw, 2rem);
  border: 0;
  border-left: 1px solid rgba(155, 172, 184, 0.14);
  background:
    linear-gradient(145deg, rgba(201, 119, 58, 0.14) 0%, rgba(201, 119, 58, 0.04) 45%, transparent 75%),
    rgba(8, 16, 26, 0.55);
  color: #f2f5f7;
  font-size: inherit;
  font-weight: 400;
  line-height: 1.35;
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 1rem;
}
.diagram-buyer-pitch::before {
  content: '';
  position: absolute;
  top: 1.25rem;
  bottom: 1.25rem;
  left: 0;
  width: 3px;
  height: auto;
  transform: none;
  background: var(--map-accent, #c9773a);
}
.diagram-buyer-pitch-claim {
  display: block;
  max-width: 18ch;
  font-family: var(--font-display, "Familjen Grotesk", sans-serif);
  font-size: clamp(1.35rem, 2.2vw, 1.85rem);
  font-weight: 700;
  letter-spacing: -0.02em;
  line-height: 1.15;
  color: #f7f9fa;
}
.diagram-buyer-pitch-cue {
  display: block;
  font-family: var(--font-mono, "IBM Plex Mono", monospace);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  color: rgba(240, 196, 154, 0.85);
}
.diagram-controls { display: flex; gap: 0.5rem; }
.diagram-ctrl-btn { min-height: 42px; padding-inline: 1rem; background: transparent; }

/* Shared frame: sector strip + map read as one operations console. */
.deployment-console {
  --console-surface: #09131e;
  --console-line: rgba(155, 172, 184, 0.18);
  display: flex;
  flex-direction: column;
  width: min(var(--max), calc(100% - var(--page-gutter) - var(--page-gutter)));
  margin: 0 auto clamp(2.5rem, 5vw, 4rem);
  border: 1px solid var(--console-line);
  background: var(--console-surface);
  box-shadow: 0 28px 80px rgba(0, 0, 0, 0.28);
  overflow: hidden;
}
@media (min-width: 900px) {
  .diagram-section-hdr.shell,
  .deployment-console {
    width: min(1540px, calc(100% - 2rem));
  }
}
.deployment-console-toolbar {
  order: 1;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  min-height: 72px;
  padding: 0.85rem 1.1rem;
  border-bottom: 1px solid var(--console-line);
  background: rgba(8, 16, 26, 0.72);
}
.deployment-console-toolbar .capability-layer {
  display: flex;
  align-items: baseline;
  gap: 0.75rem;
  margin: 0;
  padding: 0;
  border: 0;
  background: transparent;
}
.deployment-console-toolbar .capability-layer-kicker { margin: 0; }
.deployment-console-toolbar .diagram-controls { margin: 0; }

/* Play-first guided console */
.deployment-console--guided .deployment-console-toolbar {
  flex-wrap: wrap;
  gap: 0.85rem 1.25rem;
  min-height: 0;
  padding: 1rem 1.15rem;
}
.console-coach {
  flex: 1 1 220px;
  margin: 0;
  max-width: 36rem;
  color: #d5dde2;
  font-family: var(--font-sans);
  font-size: 0.95rem;
  font-weight: 500;
  line-height: 1.45;
  letter-spacing: 0.01em;
  text-transform: none;
}
.deployment-console--guided .diagram-controls {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-left: auto;
  align-items: center;
}
.approach-paths {
  display: inline-flex;
  align-items: center;
  gap: 0.3rem;
  margin-right: 0.15rem;
  padding: 0.2rem;
  border: 1px solid rgba(155, 172, 184, 0.2);
  background: rgba(8, 16, 26, 0.55);
}
.approach-paths-label {
  padding: 0 0.45rem 0 0.55rem;
  color: #8a9aa6;
  font-family: var(--font-mono);
  font-size: 0.58rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}
.approach-path {
  appearance: none;
  min-height: 34px;
  padding: 0.35rem 0.7rem;
  border: 0;
  background: transparent;
  color: #b7c4cc;
  font-family: var(--font-sans);
  font-size: 0.8rem;
  font-weight: 600;
  cursor: pointer;
}
.approach-path:hover {
  color: #e8edeb;
  background: rgba(155, 172, 184, 0.08);
}
.approach-path.is-selected {
  color: #0c1017;
  background: var(--field, #76866a);
}
.approach-path:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 2px;
}
#campus-map.map-is-interactive {
  cursor: crosshair;
}
#campus-map.map-is-interactive .sensor-node {
  cursor: pointer;
}
.diagram-map-wrap.map-just-placed::after {
  content: '';
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: radial-gradient(circle at center, rgba(47, 156, 142, 0.14), transparent 55%);
  animation: map-place-flash 450ms ease-out both;
}
@keyframes map-place-flash {
  from { opacity: 1; }
  to { opacity: 0; }
}
@media (prefers-reduced-motion: reduce) {
  .diagram-map-wrap.map-just-placed::after { animation: none; opacity: 0; }
}
.diagram-ctrl-btn--primary {
  background: var(--field, #6f7f5f);
  border-color: transparent;
  color: #0c1017;
  font-weight: 600;
}
.diagram-ctrl-btn--primary:hover,
.diagram-ctrl-btn--primary.running {
  background: var(--field-bright, #859573);
  color: #0c1017;
}
.diagram-ctrl-btn--ghost {
  opacity: 0.72;
  border-color: rgba(155, 172, 184, 0.28);
  color: #b7c4cc;
}
.diagram-ctrl-btn--ghost:hover,
.diagram-ctrl-btn--ghost.active {
  opacity: 1;
  color: #e8edeb;
  border-color: rgba(155, 172, 184, 0.5);
}
.diagram-play-coach {
  position: absolute;
  z-index: 16;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -54%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.9rem;
  width: min(340px, calc(100% - 2.5rem));
  padding: 1.25rem 1.35rem 1.35rem;
  border: 1px solid rgba(155, 172, 184, 0.22);
  background: rgba(6, 15, 25, 0.88);
  box-shadow: 0 22px 60px rgba(0, 0, 0, 0.4);
  backdrop-filter: blur(12px);
  text-align: center;
  pointer-events: auto;
  transition: opacity 280ms ease, transform 280ms ease;
}
.diagram-play-coach[hidden] {
  display: none;
}
.diagram-play-coach p {
  margin: 0;
  color: #e8edeb;
  font-family: var(--font-sans);
  font-size: 0.98rem;
  font-weight: 500;
  line-height: 1.4;
}
.diagram-play-btn {
  appearance: none;
  min-height: 46px;
  padding: 0.7rem 1.25rem;
  border: 0;
  background: var(--field, #6f7f5f);
  color: #0c1017;
  font-family: var(--font-sans);
  font-size: 0.92rem;
  font-weight: 600;
  letter-spacing: 0.01em;
  cursor: pointer;
}
.diagram-play-btn:hover {
  background: var(--field-bright, #859573);
}
.diagram-play-btn:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 3px;
}
.deployment-console--guided.has-played .diagram-play-coach {
  display: none;
}
.deployment-console--guided .diagram-legend {
  opacity: 0.9;
}
.deployment-console--guided.has-played .diagram-legend {
  opacity: 1;
}

/* Dock stages under the map — never overlay GATE-06 / fence */
.deployment-console > .diagram-legend {
  position: relative;
  left: auto;
  right: auto;
  bottom: auto;
  transform: none;
  z-index: 1;
  order: 3;
  display: grid;
  grid-template-columns: 1.2fr repeat(4, minmax(0, 1fr)) 0.75fr;
  align-items: stretch;
  gap: 0;
  width: 100%;
  max-width: none;
  margin: 0;
  padding: 0;
  border: 0;
  border-top: 1px solid var(--console-line, rgba(155, 172, 184, 0.18));
  border-radius: 0;
  background: rgba(6, 15, 25, 0.96);
  box-shadow: none;
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
}
.deployment-console > .diagram-legend .diagram-legend-hint {
  display: flex;
  align-items: center;
  margin: 0;
  padding: 0.75rem 1rem;
  border-right: 1px solid rgba(155, 172, 184, 0.2);
  font-size: 0.62rem;
  line-height: 1.4;
  white-space: normal;
}
.deployment-console > .diagram-legend button.diagram-legend-item {
  justify-content: flex-start;
  min-width: 0;
  min-height: 58px;
  padding: 0.65rem 0.85rem;
  border: 0;
  border-right: 1px solid rgba(155, 172, 184, 0.16);
  border-radius: 0;
  background: transparent;
}
.deployment-console > .diagram-legend button.diagram-legend-item.is-active {
  box-shadow: inset 0 3px 0 currentColor;
  background: rgba(255, 255, 255, 0.03);
}
.deployment-console > .diagram-legend .legend-copy {
  min-width: 0;
}
.deployment-console > .diagram-legend .legend-title {
  font-size: 0.7rem;
  line-height: 1.3;
  white-space: nowrap;
}
.deployment-console > .diagram-legend .legend-sub {
  display: block;
  font-size: 0.56rem;
  line-height: 1.35;
  white-space: nowrap;
}
.deployment-console > .diagram-legend .diagram-legend-item.legend-fence-item {
  justify-content: center;
  margin: 0;
  padding: 0.65rem;
  border-left: 0;
  border-right: 0;
}
.deployment-console .sector-selector {
  order: 5;
}

/* Sensor detail docks under the map — never overlays the diagram */
.deployment-console > .diagram-panel {
  position: relative;
  inset: auto;
  left: auto;
  right: auto;
  top: auto;
  transform: none;
  z-index: 1;
  order: 3;
  width: 100%;
  min-height: 0;
  margin: 0;
  padding: 0.85rem 1.1rem 1rem;
  border: 0;
  border-top: 1px solid var(--console-line, rgba(155, 172, 184, 0.18));
  border-radius: 0;
  background: rgba(6, 15, 25, 0.96);
  box-shadow: none;
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
}
.deployment-console > .diagram-panel[hidden] {
  display: none !important;
}
.deployment-console > .diagram-panel .diagram-panel-idle {
  display: none !important;
}
.deployment-console > .diagram-panel .diagram-panel-data {
  display: grid;
  grid-template-columns: minmax(170px, 230px) minmax(0, 1.15fr) minmax(0, 0.95fr);
  column-gap: 1.15rem;
  row-gap: 0.35rem;
  align-items: start;
}
.deployment-console > .diagram-panel.is-open .diagram-panel-data {
  display: grid !important;
}
.deployment-console > .diagram-panel .diagram-panel-alert {
  grid-column: 1 / -1;
  margin: 0 0 0.25rem;
}
.deployment-console > .diagram-panel .diagram-panel-top {
  grid-column: 1;
  grid-row: 2;
  margin: 0;
}
.deployment-console > .diagram-panel .diagram-panel-status {
  grid-column: 1;
  grid-row: 3;
  margin: 0;
}
.deployment-console > .diagram-panel .diagram-panel-name {
  grid-column: 1;
  grid-row: 4;
  margin: 0;
  font-size: 1.05rem;
}
.deployment-console > .diagram-panel .diagram-panel-loc {
  grid-column: 1;
  grid-row: 5;
  margin: 0;
}
.deployment-console > .diagram-panel .diagram-panel-tags {
  grid-column: 1;
  grid-row: 6;
  margin: 0;
}
.deployment-console > .diagram-panel .diagram-panel-stats {
  grid-column: 2;
  grid-row: 2 / span 5;
  margin: 0;
}
.deployment-console > .diagram-panel .diagram-panel-assessment {
  grid-column: 3;
  grid-row: 2 / span 2;
  margin: 0;
}
.deployment-console > .diagram-panel .diagram-panel-desc {
  grid-column: 1 / -1;
  margin: 0.35rem 0 0;
  max-width: none;
  font-size: 0.82rem;
  line-height: 1.45;
  color: #a7b4bd;
}
.deployment-console > .diagram-legend {
  order: 4;
}
.deployment-console--guided .sector-selector--tabs {
  display: grid;
  grid-template-columns: minmax(160px, 200px) 1fr;
  gap: 0;
  align-items: stretch;
  padding: 0;
}
.deployment-console--guided .sector-selector--tabs .sector-selector-meta {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 0.3rem;
  padding: 0.95rem 1.15rem;
  border-right: 1px solid var(--console-line);
  background: rgba(8, 16, 26, 0.55);
}
.deployment-console--guided .sector-selector--tabs .sector-selector-hint {
  font-size: 0.78rem;
  color: #8a9aa6;
}
.deployment-console--guided .sector-selector--tabs .sector-select-track {
  display: flex;
  flex-wrap: wrap;
  gap: 0.45rem;
  align-items: center;
  padding: 0.85rem 1rem;
  overflow: visible;
}
.deployment-console--guided .sector-selector--tabs .sector-select-card {
  flex: 0 0 auto;
  display: inline-flex;
  flex-direction: row;
  align-items: center;
  gap: 0.45rem;
  min-height: 0;
  min-width: 0;
  max-width: none;
  padding: 0.55rem 0.85rem;
  border: 1px solid rgba(155, 172, 184, 0.2);
  background: transparent;
  box-shadow: none;
}
.deployment-console--guided .sector-selector--tabs .sector-select-card:hover {
  background: rgba(155, 172, 184, 0.06);
  border-color: rgba(155, 172, 184, 0.4);
}
.deployment-console--guided .sector-selector--tabs .sector-select-card.is-selected {
  background: rgba(47, 156, 142, 0.14);
  border-color: rgba(47, 156, 142, 0.55);
  box-shadow: inset 0 2px 0 var(--accent);
}
.deployment-console--guided .sector-selector--tabs .sector-num {
  font-size: 0.62rem;
  letter-spacing: 0.12em;
  color: var(--muted);
}
.deployment-console--guided .sector-selector--tabs .sector-name {
  font-family: var(--font-sans);
  font-size: 0.84rem;
  font-weight: 600;
  letter-spacing: 0.01em;
  text-transform: none;
  white-space: nowrap;
}
.deployment-console--guided .sector-selector--tabs .sector-desc {
  display: none;
}
.deployment-console--guided .sector-capabilities {
  display: none;
}

.deployment-console .sector-selector {
  margin: 0;
  width: 100%;
  border: 0;
  border-top: 1px solid var(--console-line);
  background: transparent;
  box-shadow: none;
}
.deployment-console .sector-selector-meta {
  padding: 1.5rem;
  border-right: 1px solid var(--console-line);
  background:
    linear-gradient(160deg, rgba(47, 156, 142, 0.08), transparent 62%),
    rgba(8, 16, 26, 0.55);
}
.deployment-console .sector-select-card {
  min-height: 150px;
  background: transparent;
  transition: background 220ms ease, box-shadow 220ms ease, color 220ms ease;
}
/* Compact chrome tabs on the map — never use the tall brochure card height */
.deployment-console--stripped .demo-chrome .sector-select-card,
.deployment-console--game .game-site-rail .sector-select-card {
  min-height: 0;
}
.deployment-console .sector-select-card:hover {
  background: rgba(155, 172, 184, 0.035);
}
.deployment-console .sector-select-card.is-selected {
  background: linear-gradient(180deg, rgba(47, 156, 142, 0.14), rgba(47, 156, 142, 0.03));
  box-shadow: inset 0 3px 0 var(--accent);
}
.sector-name { color: #e8edeb; }
.sector-desc { color: #8797a3; }
.deployment-console .sector-capabilities {
  border-top-color: var(--console-line);
}
.deployment-console .sector-capabilities li {
  background: rgba(255, 255, 255, 0.015);
  border-right-color: var(--console-line);
}
.deployment-console .diagram-stage {
  order: 2;
  height: min(78svh, 780px);
  min-height: 620px;
  margin: 0;
  border: 0;
  background: var(--console-surface);
}
.deployment-console .diagram-map-wrap {
  background:
    radial-gradient(circle at 50% 48%, rgba(47, 156, 142, 0.07), transparent 46%),
    var(--console-surface);
}
.alert-level-hud {
  position: absolute;
  top: 1.25rem;
  left: 1.25rem;
  z-index: 14;
  width: min(300px, calc(100% - 2.5rem));
  padding: 0.9rem 1rem 0.85rem;
  border: 1px solid rgba(155, 172, 184, 0.2);
  border-left: 3px solid var(--accent);
  background: rgba(6, 15, 25, 0.9);
  box-shadow: 0 14px 40px rgba(0, 0, 0, 0.24);
  backdrop-filter: blur(12px);
}
.alert-level-hud-head {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 1rem;
}
.alert-level-kicker,
.alert-level-value,
.alert-level-context,
.alert-level-note {
  font-family: var(--font-mono);
  text-transform: uppercase;
}
.alert-level-kicker { color: var(--muted); font-size: 0.58rem; letter-spacing: 0.14em; }
.alert-level-value { color: #55c7b8; font-size: 0.74rem; letter-spacing: 0.12em; }
.alert-level-scale {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 4px;
  margin: 0.65rem 0 0.55rem;
}
.alert-level-scale span { height: 3px; background: rgba(155, 172, 184, 0.16); }
.alert-level-hud.alert-nominal .alert-level-scale .is-nominal { background: #55c7b8; }
.alert-level-hud.alert-advisory .alert-level-scale span:nth-child(-n+2) { background: #c4b963; }
.alert-level-hud.alert-elevated .alert-level-scale span:nth-child(-n+3) { background: #ffbe3c; }
.alert-level-hud.alert-high .alert-level-scale span { background: #ff5d5d; }
.alert-level-hud.alert-advisory { border-left-color: #c4b963; }
.alert-level-hud.alert-elevated { border-left-color: #ffbe3c; }
.alert-level-hud.alert-high { border-left-color: #ff5d5d; }
.alert-level-hud.alert-advisory .alert-level-value { color: #c4b963; }
.alert-level-hud.alert-elevated .alert-level-value { color: #ffbe3c; }
.alert-level-hud.alert-high .alert-level-value { color: #ff7676; }
.alert-level-context { margin: 0; color: #d9e1e4; font-size: 0.62rem; letter-spacing: 0.04em; line-height: 1.45; }
.alert-level-note { margin: 0.35rem 0 0; color: rgba(155, 172, 184, 0.55); font-size: 0.5rem; letter-spacing: 0.05em; line-height: 1.4; }
.diagram-panel-assessment {
  display: grid;
  grid-template-columns: 1fr 1fr;
  margin: 0 0 1rem;
  border: 1px solid var(--line-strong);
}
.diagram-panel-assessment > div { padding: 0.65rem; }
.diagram-panel-assessment > div + div { border-left: 1px solid var(--line-strong); }
.diagram-panel-assessment span,
.diagram-panel-assessment strong { display: block; font-family: var(--font-mono); text-transform: uppercase; }
.diagram-panel-assessment span { color: var(--muted); font-size: 0.52rem; letter-spacing: 0.09em; }
.diagram-panel-assessment strong { margin-top: 0.3rem; color: #55c7b8; font-size: 0.65rem; letter-spacing: 0.06em; }
.diagram-panel-assessment strong.assessment-nominal { color: #55c7b8; }
.diagram-panel-assessment strong.assessment-advisory { color: #c4b963; }
.diagram-panel-assessment strong.assessment-elevated { color: #ffbe3c; }
.diagram-panel-assessment strong.assessment-high { color: #ff7676; }

.diagram-legend-dot.legend-advisory { border-radius: 2px; background: #c4b963; }
.diagram-legend-dot.legend-elevated { border-radius: 2px; background: #ffbe3c; transform: rotate(45deg); }
.diagram-legend-dot.legend-high { background: #ff5d5d; box-shadow: 0 0 8px rgba(255, 93, 93, 0.45); }
.diagram-map-wrap {
  background:
    radial-gradient(circle at 50% 50%, rgba(47, 156, 142, 0.07), transparent 44%),
    #09131e;
}
.diagram-panel {
  border-radius: 2px;
  border-color: rgba(155, 172, 184, 0.22);
  background: rgba(9, 19, 29, 0.92);
  box-shadow: 0 28px 70px rgba(0, 0, 0, 0.42);
}

/* Stages bar styles live on .deployment-console > .diagram-legend (docked). */
@media (min-width: 700px) {
  .deployment-console > .diagram-legend {
    grid-template-columns: 1.35fr repeat(4, minmax(0, 1fr)) 0.8fr;
  }
  .deployment-console > .diagram-legend button.diagram-legend-item {
    min-height: 62px;
  }
}

/* Detection-to-decision narrative bridge. */
.eng-studies-section {
  padding-bottom: clamp(4rem, 5vw, 5.5rem);
  background: var(--bg-2);
  color: #f3f5f4;
  border-block: 1px solid var(--line);
}
.eng-studies-section .ops-label { color: #91a47f; }
.eng-studies-section .ops-title { color: #f3f5f4; }
.eng-studies-lede,
.eng-studies-section .real-concept-note {
  color: #a2afb9;
}
.eng-studies-section .packaging-sector-tab {
  border-color: rgba(183, 201, 210, 0.22);
  color: #8a9aa6;
  background: transparent;
}
.eng-studies-section .packaging-sector-tab:hover {
  color: #d7e2e8;
  border-color: rgba(183, 201, 210, 0.45);
}
.eng-studies-section .packaging-sector-tab.is-selected,
.eng-studies-section .packaging-sector-tab[aria-selected="true"] {
  color: #e9eeec;
  border-color: rgba(118, 134, 106, 0.7);
  background: rgba(118, 134, 106, 0.12);
}
.eng-studies-section .real-concept-card {
  background: #0b1218;
  border-color: rgba(183, 201, 210, 0.18);
}
.eng-studies-section .real-concept-card img {
  background: #111c26;
}
.eng-studies-section .real-concept-card figcaption {
  background: #0b1218;
  border-top: 1px solid rgba(183, 201, 210, 0.14);
}
.eng-studies-section .real-concept-card strong {
  color: #e8edeb;
}
.eng-studies-section .real-concept-card span {
  color: #91a47f;
}

/* Concept specs — schematic card set, drawn envelopes over a stat strip. */
.concept-specs-section {
  padding-top: clamp(4rem, 6vw, 5.5rem);
  padding-bottom: clamp(3.75rem, 5vw, 5.25rem);
  background:
    radial-gradient(circle at 86% 4%, rgba(47, 156, 142, 0.10), transparent 34rem),
    linear-gradient(90deg, rgba(118, 134, 106, 0.035), transparent 28%),
    var(--bg-2);
}
.concept-specs-head {
  max-width: 64rem;
  margin-bottom: clamp(1.4rem, 2.5vw, 2rem);
}
.concept-specs-head .ops-label {
  color: var(--field-bright);
}
.concept-specs-head .ops-title {
  margin: 0.55rem 0 0.8rem;
  max-width: 25ch;
  text-wrap: balance;
}
.concept-specs-note {
  display: flex;
  align-items: baseline;
  gap: 0.55rem;
  margin: 0;
  font-family: var(--font-mono);
  font-size: 0.76rem;
  line-height: 1.6;
  color: var(--muted);
  max-width: 76ch;
  text-wrap: pretty;
}
.concept-specs-note-dot {
  flex: 0 0 auto;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--field-bright);
  transform: translateY(-1px);
}
.concept-specs-cards {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  background: var(--line-strong);
  border: 1px solid var(--line-strong);
}
.concept-specs-card {
  background: var(--bg);
  padding: 1.5rem 1.4rem 1.6rem;
  display: flex;
  flex-direction: column;
  gap: 1.05rem;
}
.concept-specs-card-id {
  font-family: var(--font-mono);
  font-size: 0.74rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  color: var(--accent);
}
.concept-specs-diagram {
  position: relative;
  height: 108px;
  display: grid;
  place-items: center;
}
.concept-specs-diagram svg { width: 100%; height: 100%; }
.concept-specs-scale {
  position: absolute;
  top: 0;
  right: 0;
  font-family: var(--font-mono);
  font-size: 0.58rem;
  letter-spacing: 0.06em;
  color: var(--muted);
}
.cs-bound { fill: none; stroke: var(--accent); stroke-width: 1.4; stroke-dasharray: 3 3; }
.cs-solid { fill: var(--bg-3); stroke: var(--accent); stroke-width: 1.1; }
.cs-guide { stroke: var(--steel); stroke-width: 0.8; opacity: 0.55; }
.cs-mast { fill: none; stroke: var(--muted); stroke-width: 1; }
.cs-ground { stroke: var(--muted); stroke-width: 1; opacity: 0.6; }
.concept-specs-dims {
  font-family: var(--font-mono);
  font-size: 0.86rem;
  font-weight: 600;
  font-variant-numeric: tabular-nums;
  color: var(--ink);
}
.concept-specs-desc {
  margin: 0;
  font-size: 0.84rem;
  line-height: 1.55;
  color: var(--body);
}
.concept-specs-radius {
  margin-top: auto;
  padding-top: 0.9rem;
  border-top: 1px solid var(--line-strong);
  font-family: var(--font-mono);
  font-size: 0.66rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--muted);
}
.concept-specs-block-label {
  display: inline-flex;
  align-items: center;
  gap: 0.65rem;
  margin: 0 0 0.85rem;
  padding: 0;
  border: 0;
  font-family: var(--font-mono);
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--field-bright);
}
.concept-specs-block-label::after {
  content: "";
  width: 2.25rem;
  height: 1px;
  background: var(--field-bright);
  opacity: 0.55;
}
.concept-specs-strip {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(0.7rem, 1.25vw, 1rem);
  margin: 0;
  border: 0;
  background: transparent;
}
.concept-specs-tile {
  position: relative;
  display: grid;
  grid-template-rows: 1.9rem auto;
  align-content: start;
  min-width: 0;
  padding: 1.1rem 1.2rem 1rem;
  border: 1px solid rgba(183, 201, 210, 0.16);
  background: rgba(7, 17, 28, 0.66);
}
.concept-specs-tile::before {
  content: "";
  position: absolute;
  top: 0.58rem;
  left: 1.2rem;
  width: 1.45rem;
  height: 1px;
  background: var(--field-bright);
  opacity: 0.72;
}
.concept-specs-tile-label {
  align-self: start;
  margin: 0;
  font-family: var(--font-mono);
  font-size: 0.62rem;
  font-weight: 700;
  line-height: 1.35;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--field-bright);
  text-wrap: pretty;
}
.concept-specs-tile-val {
  align-self: start;
  margin: 0;
  font-size: 0.8rem;
  line-height: 1.55;
  color: var(--body);
  text-wrap: pretty;
}
.concept-specs-tile--status {
  border-color: rgba(145, 164, 127, 0.28);
  background: rgba(145, 164, 127, 0.045);
  box-shadow: inset 1px 0 0 rgba(145, 164, 127, 0.68);
}
.concept-specs-tile--status .concept-specs-tile-label { color: var(--field-bright); }
.concept-specs-tile--status .concept-specs-tile-val {
  color: var(--ink);
  font-weight: 600;
}
.concept-specs-close {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem 1.5rem;
  margin-top: clamp(0.9rem, 1.5vw, 1.2rem);
}
.concept-specs-foot {
  margin: 0;
  max-width: 52rem;
  font-size: 0.85rem;
  line-height: 1.65;
  color: var(--muted);
}

@media (max-width: 900px) {
  .concept-specs-cards { grid-template-columns: 1fr; }
  .concept-specs-strip { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .concept-specs-close { align-items: flex-start; }
  .concept-specs-foot { max-width: 52ch; }
}
@media (max-width: 640px) {
  .concept-specs-strip { grid-auto-rows: auto; }
  .concept-specs-tile {
    grid-template-rows: auto auto;
    min-height: 0;
  }
  .concept-specs-tile-label { margin-bottom: 0.65rem; }
  .concept-specs-head .ops-title { max-width: 18ch; }
  .concept-specs-note { align-items: flex-start; }
  .concept-specs-strip { grid-template-columns: 1fr; }
  .concept-specs-close {
    flex-direction: column;
    align-items: flex-start;
  }
}

.quiet-band {
  position: relative;
  overflow: hidden;
  padding-block: clamp(4.5rem, 6vw, 6.5rem);
  background: var(--cream);
  border-block: 1px solid var(--cream-line);
  color: var(--cream-ink);
}
.quiet-band::after {
  content: '';
  position: absolute;
  width: min(46vw, 620px);
  aspect-ratio: 1;
  right: -8%;
  top: 50%;
  transform: translateY(-50%);
  border-radius: 50%;
  opacity: 0.4;
  background: repeating-radial-gradient(circle, transparent 0 52px, rgba(99, 116, 92, 0.22) 53px, transparent 54px 86px);
  pointer-events: none;
}
.quiet-band .shell {
  position: relative;
  z-index: 1;
}
.quiet-band .ops-label {
  margin: 0 0 1.5rem;
  color: #596a52;
}
.quiet-band-statement {
  max-width: 20ch;
  font-size: clamp(2.8rem, 5.7vw, 5.5rem);
  line-height: 0.98;
  letter-spacing: -0.045em;
  color: var(--cream-ink);
}
.quiet-band-note {
  max-width: none;
  color: var(--cream-body);
  font-size: 1rem;
  white-space: nowrap;
}
@media (max-width: 720px) {
  .quiet-band-note {
    white-space: normal;
    max-width: 36ch;
  }
}

/* Industries Served had no background of its own and fell back to the page's
   base --bg, a shade close enough to its --bg-2 neighbors to read as an
   accidental seam rather than a real transition. Match the same subtle glow
   language used by PGI Intro / Specs so it doesn't read as the flat outlier. */
.industries-section {
  background:
    radial-gradient(ellipse 55% 60% at 12% 90%, rgba(42, 150, 136, 0.055), transparent),
    var(--bg-2);
}

/* PGI flow diagram — the core and the output should read as the point;
   the three input components are supporting context, not co-equal. */
.pgiflow-box { fill: rgba(255, 255, 255, 0.02); stroke: rgba(255, 255, 255, 0.09); }
.pgiflow-node { font-weight: 500; fill: #a9b8c3; }
.pgiflow-stage--core {
  fill: var(--accent);
  font-weight: 700;
  font-size: 12px;
}
.pgiflow-ring { stroke: rgba(47, 156, 142, 0.7); stroke-width: 2; }
.pgiflow-core { filter: drop-shadow(0 0 5px rgba(47, 156, 142, 0.6)); }
.pgiflow-box--out {
  fill: rgba(47, 156, 142, 0.15);
  stroke: rgba(47, 156, 142, 0.6);
  filter: drop-shadow(0 0 8px rgba(47, 156, 142, 0.14));
}
.pgiflow-node--out { font-weight: 700; }

/* LEOPARD folded into a one-line tag under the pipeline lede, in place of its own section. */
.pipeline-leopard-tag {
  margin: 0 0 1.5rem;
  font-family: var(--font-mono);
  font-size: 0.7rem;
  letter-spacing: 0.02em;
  color: var(--muted);
  max-width: 420px;
}

/* Compact specifications CTA. */
.concept-specs-cta {
  flex: 0 0 auto;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  padding: 0.62rem 0.9rem;
  border: 1px solid rgba(145, 164, 127, 0.55);
  background: rgba(145, 164, 127, 0.025);
  color: var(--field-bright);
  font-family: var(--font-mono);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.07em;
  line-height: 1.2;
  text-transform: uppercase;
  text-decoration: none;
  touch-action: manipulation;
  transition: background-color 160ms ease, border-color 160ms ease, color 160ms ease, transform 160ms ease;
}
.concept-specs-cta:hover {
  border-color: var(--field-bright);
  background: rgba(145, 164, 127, 0.09);
  color: var(--ink);
  transform: translateY(-1px);
}
.concept-specs-cta:focus-visible {
  outline: 2px solid var(--field-bright);
  outline-offset: 3px;
}
.concept-specs-cta:active { transform: translateY(0); }

/* Workflow and operator output read as one system — the debrief is the
   simulator's result, so its top blends into the simulator's background
   instead of jumping to a new section tone. */
.intel-feed-section {
  margin-top: 0;
  padding-block: 0;
  background:
    linear-gradient(180deg, #07111c 0, var(--bg-2) 260px),
    radial-gradient(circle at 88% 18%, rgba(47, 156, 142, 0.07), transparent 28rem),
    var(--bg-2);
  border-top: none;
}
.intel-feed-section > .shell { padding-block: clamp(4.5rem, 6vw, 6.5rem); }
.intel-feed-transition {
  display: flex;
  align-items: baseline;
  flex-wrap: wrap;
  gap: 0.35rem 1.5rem;
  margin: 0 0 clamp(2.25rem, 3.5vw, 3.25rem);
  padding-bottom: 1.5rem;
  border-bottom: 1px solid var(--line-strong);
  color: var(--body);
  font-family: var(--font-display);
  font-size: clamp(0.9rem, 1.2vw, 1rem);
  font-weight: 500;
  line-height: 1.35;
}
/* Shares the site-wide eyebrow token so this reads as a pair with the
   "Interactive Simulation" header it answers. */
.intel-feed-transition .ops-label {
  flex: 0 0 auto;
  margin-bottom: 0;
  /* Matches the simulation header's teal so the two read as one thread. */
  color: #46b6a8;
}
/* The question inherits its display type from .intel-feed-transition. */
.intel-feed-transition .intel-feed-transition-q {
  flex: 0 0 auto;
}
.intel-feed-layout {
  display: grid;
  grid-template-columns: minmax(360px, 0.78fr) minmax(0, 1.22fr);
  gap: clamp(3rem, 6vw, 6rem);
  align-items: start;
}
.pipeline-overview { display: block; }
.intel-feed-copy { position: static; }
.intel-feed-copy .ops-title {
  margin-top: 1.5rem;
  font-size: clamp(2.5rem, 4.8vw, 4rem);
  line-height: 0.92;
}
.pipeline-steps { margin-top: 2.3rem; gap: 0; border-top: 0; }
.pipeline-step {
  min-height: 0;
  padding: 0.75rem 0;
  border: 0;
  background: transparent;
  position: relative;
}
.pipeline-step::after {
  content: '';
  position: absolute;
  left: calc(54px + 1.25rem);
  right: 0;
  bottom: 0;
  border-bottom: 1px solid var(--line-strong);
}
@media (max-width: 760px) {
  .pipeline-step::after { left: calc(38px + 1.25rem); }
}
.step-num {
  align-self: start;
  display: block;
  padding-top: 0.25rem;
  border-right: 0;
  color: var(--field-bright);
}
.step-title { color: #edf1ef; letter-spacing: 0.06em; }
.step-desc { color: #8797a3; }
.intel-feed-panel {
  position: sticky;
  top: calc(var(--header-h) + 2rem);
  margin-top: 0;
  border-radius: 2px;
  border-color: rgba(155, 172, 184, 0.2);
  background: rgba(8, 16, 23, 0.94);
  box-shadow: 0 35px 80px rgba(0, 0, 0, 0.34);
}
.feed-panel-hdr { background: rgba(118, 134, 106, 0.07); }
.feed-panel-stats {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  border-top: 1px solid var(--line-strong);
}
.feed-panel-stats div {
  padding: 0.85rem 1.25rem;
  border-right: 1px solid var(--line-strong);
}
.feed-panel-stats div:last-child { border-right: 0; }
.feed-panel-stat-num {
  display: block;
  font-family: var(--font-mono);
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--ink);
}
.feed-panel-stat-label {
  display: block;
  margin-top: 0.2rem;
  font-family: var(--font-mono);
  font-size: 0.54rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--muted);
}
.feed-panel-note {
  margin: 0;
  padding: 0.75rem 1.25rem;
  border-top: 1px solid var(--line-strong);
  font-size: 0.72rem;
  line-height: 1.55;
  color: var(--muted);
  background: rgba(0, 0, 0, 0.15);
}
.feed-live-dot { background: var(--field-bright); }
.feed-row { transition: background 160ms ease; }
.feed-row:hover { background: rgba(47, 156, 142, 0.055); }

/* Keep the simulated feed legible and unmistakably illustrative. */
.pipeline-leopard-tag {
  color: #92a2ad;
  font-size: 0.74rem;
  line-height: 1.6;
}
.step-desc {
  color: #91a1ad;
  font-size: 0.81rem;
  line-height: 1.55;
}
.feed-panel-title { font-size: 0.7rem; }
.feed-live-badge {
  color: #98a6b0;
  font-size: 0.65rem;
}
.feed-live-dot {
  animation: none;
  box-shadow: 0 0 0 3px rgba(145, 164, 127, 0.09);
}
.feed-cols-hdr span {
  color: rgba(74, 178, 163, 0.68);
  font-size: 0.52rem;
}
.feed-time {
  color: #82929e;
  font-size: 0.57rem;
}
.feed-node { font-size: 0.59rem; }
.feed-type { font-size: 0.76rem; }
.feed-conf { font-size: 0.67rem; }
.feed-panel-note {
  color: #8b9aa5;
  font-size: 0.74rem;
}
.feed-panel-stat-num--text {
  padding-top: 0.12rem;
  font-size: 0.92rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.feed-stage-trace {
  padding: 0.72rem 1.25rem 0.78rem;
  border-top: 1px solid var(--line-strong);
  background: rgba(47, 156, 142, 0.025);
}
.feed-stage-trace-label {
  display: block;
  margin-bottom: 0.62rem;
  color: #8596a1;
  font-family: var(--font-mono);
  font-size: 0.54rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}
.feed-stage-trace ol {
  display: grid;
  grid-template-columns: repeat(7, minmax(0, 1fr));
  margin: 0;
  padding: 0;
  list-style: none;
}
.feed-stage-trace li {
  position: relative;
  display: flex;
  align-items: center;
  gap: 0.42rem;
  min-width: 0;
  color: #93a3ad;
  font-family: var(--font-mono);
  font-size: 0.55rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}
.feed-stage-trace li:not(:last-child)::after {
  content: '';
  position: absolute;
  top: 50%;
  left: calc(100% - 0.55rem);
  width: 0.55rem;
  height: 1px;
  background: rgba(47, 156, 142, 0.34);
}
.feed-stage-trace i {
  width: 6px;
  height: 6px;
  flex: 0 0 auto;
  border-radius: 50%;
  background: var(--accent);
  box-shadow: 0 0 0 3px rgba(47, 156, 142, 0.08);
  animation: feed-trace-pulse 5s ease-in-out infinite;
}
.feed-stage-trace li:nth-child(2) i { animation-delay: 0.7s; }
.feed-stage-trace li:nth-child(3) i { animation-delay: 1.4s; }
.feed-stage-trace li:nth-child(4) i { animation-delay: 2.1s; }
.feed-stage-trace li:nth-child(5) i { animation-delay: 2.8s; }
.feed-stage-trace li:nth-child(6) i { animation-delay: 3.5s; }
.feed-stage-trace li:nth-child(7) i { animation-delay: 4.2s; }
@keyframes feed-trace-pulse {
  0%, 16%, 100% { opacity: 0.28; transform: scale(0.72); }
  7% { opacity: 1; transform: scale(1); }
}

/* Give the panel's existing sections more breathing room so three
   populated rows read as a fuller table instead of leaving the panel
   short against the LEOPARD list beside it. No new elements. */
@media (min-width: 721px) {
  .feed-panel-hdr { padding: 1.1rem 1.25rem; }
  .feed-cols-hdr { padding: 1.1rem 1.25rem; }
  .feed-row { padding: 1.1rem 1.25rem; }
  .feed-log-body { min-height: 215px; }
  .feed-stage-trace { padding: 1.5rem 1.25rem 1.55rem; }
  .feed-panel-stats div { padding: 1.85rem 1.25rem; }
  .feed-panel-note { padding: 1.5rem 1.25rem; }
}

@media (max-width: 700px) {
  .feed-time,
  .feed-node,
  .feed-conf { font-size: 0.66rem; }
  .feed-type { font-size: 0.78rem; }
  .feed-status { min-width: 78px; font-size: 0.7rem; }
  .feed-stage-trace { padding-inline: 0.85rem; }
  .feed-stage-trace li {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.3rem;
    font-size: 0.48rem;
  }
  .feed-stage-trace li:not(:last-child)::after {
    top: 3px;
    left: 0.75rem;
    width: calc(100% - 1rem);
  }
}
@media (max-width: 480px) {
  .feed-stage-trace ol {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    row-gap: 0.65rem;
  }
  .feed-stage-trace ol li:nth-child(3)::after,
  .feed-stage-trace ol li:nth-child(6)::after {
    content: none;
  }
}
@media (prefers-reduced-motion: reduce) {
  .feed-stage-trace i { animation: none; opacity: 0.75; }
}

/* Interior page system. */
.page-hero {
  min-height: 0;
  padding: calc(var(--header-h) + clamp(4rem, 8vw, 7rem)) 0 clamp(4.5rem, 8vw, 7rem);
  background:
    radial-gradient(circle at 88% 60%, rgba(47, 156, 142, 0.08), transparent 26rem),
    linear-gradient(145deg, #0e1923, #080d12 68%);
}
/* About story — one continuous dark narrative (experience → philosophy → process).
   Contact hero shares the same surface so the interior pages stay cohesive. */
.page-hero.about-hero-v2,
.page-hero.contact-hero {
  background:
    radial-gradient(95% 48% at 88% 6%, rgba(42, 150, 136, 0.10), transparent 60%),
    linear-gradient(180deg, #141e2c 0%, var(--bg-2) 46%, var(--bg-2) 100%);
}
.page-hero.about-hero-v2 {
  border-bottom: 0;
  box-shadow: none;
}
.section.origin-section.about-origin-section {
  margin-top: -1px;
  border-top: 0;
  background:
    radial-gradient(70% 45% at 86% 80%, rgba(42, 150, 136, 0.025), transparent 72%),
    linear-gradient(180deg, var(--bg-2) 0%, #0d141b 100%);
}
@media (min-width: 901px) {
  .section.origin-section.about-origin-section {
    padding-bottom: 4rem;
  }
}
.about-origin-section .origin-visual {
  position: relative;
  aspect-ratio: 4 / 3;
  border-color: rgba(72, 116, 122, 0.3);
  border-radius: 2px;
  background: #09121a;
  box-shadow: 0 24px 55px -38px rgba(0, 0, 0, 0.72);
}
.about-origin-section .origin-visual::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    linear-gradient(180deg, rgba(7, 16, 23, 0.04), rgba(7, 16, 23, 0.34)),
    linear-gradient(90deg, rgba(7, 16, 23, 0.16), transparent 42%);
}
.about-origin-section .origin-visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 58% center;
  filter: saturate(0.72) brightness(0.82) contrast(1.08);
}
.origin-visual-note {
  position: absolute;
  z-index: 2;
  right: 0.75rem;
  bottom: 0.65rem;
  color: rgba(225, 232, 230, 0.66);
  font-family: var(--font-mono);
  font-size: 0.5rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}
.about-origin-section .origin-footnote {
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
  max-width: 48rem;
  margin-top: clamp(2.25rem, 4vw, 3.25rem);
  padding-top: 1.75rem;
  border-top: 1px solid var(--line-strong);
}
.origin-footnote-lead {
  color: var(--field-bright);
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.11em;
  text-transform: uppercase;
}
.origin-footnote-outcome {
  color: var(--body);
  font-family: var(--font-display);
  font-size: clamp(0.95rem, 1.2vw, 1.1rem);
  font-weight: 550;
  letter-spacing: -0.01em;
  line-height: 1.35;
}
.about-hero-v2-grid {
  padding: 2.5rem 0 0.75rem;
  border-top-color: var(--line-strong);
}
/* The lede is the hero's only left-column content; centering it against
   the identity card keeps the column from reading as empty. Its size is
   owned by the interior-lede system in pgisr-system.css. */
.about-hero-v2-head { align-self: center; }
.about-hero-v2-head .ops-label { color: var(--accent); }
.about-origin-section .ops-label,
.about-direction-section .ops-label { color: var(--accent); }
.about-hero-v2-title {
  max-width: 25ch;
  font-size: clamp(3rem, 5.8vw, 5.5rem);
  line-height: 0.98;
  letter-spacing: -0.045em;
  color: var(--ink);
}
.about-hero-v2-title > span {
  display: block;
}
@media (min-width: 1200px) {
  .about-hero-v2-title > span {
    white-space: nowrap;
  }
}
.about-hero-v2-head { min-width: 0; }
@media (min-width: 901px) {
  .about-hero-v2-title {
    max-width: 100%;
    font-size: clamp(3rem, 3.9vw, 4rem);
  }
}
.about-hero-v2-lede { color: var(--body); }
.about-id-cell dt { color: var(--muted); }
.about-id-cell dd { color: var(--ink); }

/* About + Contact share one interior-page opening rhythm. */
.page-hero.contact-hero {
  padding-top: calc(var(--header-h) + 1.75rem);
  padding-bottom: clamp(4rem, 7vw, 6rem);
}
.contact-hero > .shell {
  padding-top: 1.75rem;
}
.contact-hero .breadcrumb {
  display: none;
}
/* Continue the hero's closing tone instead of dropping to the plain page background. */
.contact-intake-section {
  background: var(--bg-2);
}
.contact-hero > .shell > .ops-label {
  display: inline-block;
  margin-bottom: 0;
  color: var(--accent);
}
.contact-hero h1 {
  font-size: clamp(3.1rem, 6vw, 6rem);
}
@media (max-width: 700px) {
  .page-hero.contact-hero {
    padding-top: calc(var(--header-h) + 1.25rem);
  }
  .contact-hero > .shell {
    padding-top: 1.5rem;
  }
}
.mv-section-head {
  display: grid;
  grid-template-columns: minmax(180px, 0.35fr) minmax(0, 1fr);
  gap: clamp(2rem, 7vw, 7rem);
  align-items: start;
}
.mv-section-head > .ops-label { margin-top: 0.55rem; }
.mv-section-head h2 {
  max-width: 16ch;
  font-size: clamp(2.8rem, 5vw, 4.8rem);
  line-height: 0.98;
  letter-spacing: -0.045em;
}
.heritage-section .mv-section-head {
  grid-template-columns: minmax(0, 1fr);
  gap: 1.35rem;
  max-width: 68rem;
}
.heritage-section .mv-section-head > .ops-label {
  width: min(100%, 24rem);
  margin: 0;
}
.heritage-section .mv-section-head-copy {
  display: block;
}
.heritage-section .mv-section-head h2 {
  max-width: 22ch;
}
.heritage-track { gap: 0; border-top: 1px solid var(--line-strong); }
.heritage-node {
  min-height: 220px;
  padding: 2rem 1.4rem 1.4rem;
  border-right: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.012);
}
.heritage-node:last-child { border-right: 0; }
.heritage-node::before { display: none; }
.heritage-node::after { left: 1.4rem; background: var(--bg-2); }
.heritage-node--now {
  background: linear-gradient(180deg, rgba(118, 134, 106, 0.1), transparent);
}
.contact-hero-grid {
  grid-template-columns: minmax(0, 1.05fr) minmax(360px, 0.75fr);
  gap: 5rem;
}
/* Desktop only: tighten the headline/copy column split so the supporting
   paragraph sits closer to the headline (~14% less horizontal separation).
   Gap, hero height and vertical rhythm are unchanged; <=1100px is untouched. */
@media (min-width: 1101px) {
  .contact-hero-grid {
    grid-template-columns: minmax(0, 0.95fr) minmax(360px, 0.85fr);
  }
}
.contact-hero h1 {
  max-width: 11ch;
  font-size: clamp(3.1rem, 6vw, 6rem);
  line-height: 0.9;
  letter-spacing: -0.055em;
}
.contact-hero-copy {
  align-self: end;
  padding: 1.5rem 0 0 1.6rem;
  border-left: 0;
}
.contact-response-line {
  margin-top: 1.7rem;
  background: rgba(255, 255, 255, 0.012);
}
.contact-grid {
  grid-template-columns: minmax(280px, 0.68fr) minmax(0, 1.32fr);
  gap: clamp(3rem, 7vw, 7rem);
}
.contact-info-column {
  position: sticky;
  top: calc(var(--header-h) + 2rem);
  align-self: start;
}
.contact-info-item { padding-block: 1rem; border-bottom: 1px solid var(--line); }
/* Swiss: no panel, no shadow. */
.contact-side-card, .form-card {
  border-radius: 0;
  background: none;
  box-shadow: none;
}
.form-card-header { background: none; }
.form-row input, .form-row select, .form-row textarea {
  border-radius: 1px;
  background: #0b131a;
  border-color: rgba(155, 172, 184, 0.18);
  transition: border-color 180ms ease, box-shadow 180ms ease, background 180ms ease;
}
.form-row input:focus, .form-row select:focus, .form-row textarea:focus {
  background: #0c151d;
  border-color: var(--field-bright);
  box-shadow: 0 0 0 3px rgba(145, 164, 127, 0.1);
}
.faq-list { max-width: none; }
.faq-item summary {
  min-height: 70px;
  align-items: center;
  transition: color 180ms ease, padding-left 220ms var(--ease-premium);
}
.faq-item summary:hover { padding-left: 0.4rem; color: var(--field-bright); }

/* Confident final action and quieter support information. */
.pgisr-footer {
  background: var(--footer-paper);
}
.pgisr-footer-glow { opacity: 0.6; }
.pgisr-footer-cta-inline { color: var(--footer-copper); }
.legal-page { background: var(--bg); }
/* Cream content flows straight into the cream footer — use a neutral cream
   divider instead of the dark-page copper hairline. */
.legal-page .pgisr-footer {
  border-top: 1px solid var(--cream-line-strong);
}
.error-page {
  background:
    radial-gradient(circle at 76% 56%, rgba(47, 156, 142, 0.11), transparent 28rem),
    linear-gradient(145deg, #080d12, #0c1824);
}
.error-signal-core { background: var(--field-bright); }

/* Unified product-poster hero. */
/* Full-bleed hero — the shell constraint is lifted so the poster touches both
   viewport edges; the control strip below re-centers itself to shell width. */
.hero.hero {
  min-height: 100svh;
  overflow: visible; /* sticky product needs a non-clipping ancestor chain */
  position: relative;
}
.hero-body {
  overflow: visible;
  position: relative;
}
.hero-body > .shell.hero-launch {
  position: relative;
  display: flex;
  flex-direction: column;
  flex: 1;
  width: 100%;
  max-width: none;
  min-height: 0;
  padding-block: 0;
  overflow: visible;
}
/* Sticky runway: product pins while the wordmark clears,
   then releases into the control strip — no long empty cream scroll. */
.hero-sticky-track {
  position: relative;
  display: flex;
  flex-direction: column;
  width: 100%;
  min-height: 0;
  overflow: visible;
}
.hero-sticky-spacer {
  flex: 0 0 clamp(4rem, 16vh, 8rem);
  pointer-events: none;
}
.hero-poster {
  position: relative;
  flex: 0 0 auto;
  width: 100%;
  /* Slightly under a full viewport so the product can sit in the first composition
     without a long empty scroll before sticky engages. */
  min-height: clamp(34rem, 82svh, 56rem);
  overflow: hidden;
  border-radius: 0;
  background: var(--cream);
  box-shadow: none;
  isolation: isolate;
}
/* Bottom scrim — light grounding only, not a soft-focus fog. */
.hero-poster::after {
  content: "";
  position: absolute;
  inset: auto 0 0 0;
  height: 22%;
  z-index: 4;
  background: linear-gradient(to top, rgba(233, 230, 220, 0.78) 10%, transparent 100%);
  pointer-events: none;
}
.hero-poster .hero-kicker {
  position: absolute;
  top: clamp(1.5rem, 3vw, 2.5rem);
  left: clamp(1.5rem, 3vw, 2.75rem);
  z-index: 6;
  color: #4f5d54;
}
.hero-poster .hero-kicker span {
  background: #63745c;
  box-shadow: none;
}
/* Bleeding wordmark — spans full width off both edges, ink-multiplied over the shot. */
.hero-poster .hero-product-name {
  position: absolute;
  top: clamp(1.75rem, 4vw, 3.25rem);
  left: 50%;
  transform: translateX(-50%);
  z-index: 3;
  width: max-content;
  max-width: none;
  margin: 0;
  color: rgba(38, 51, 46, 0.88);
  font-size: clamp(5.75rem, 20vw, 16.5rem);
  line-height: 0.8;
  letter-spacing: -0.055em;
  white-space: nowrap;
  mix-blend-mode: multiply;
  pointer-events: none;
}
/* Measurement guides — connect title / copy / diagram regions */
.hero-compose-guides {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  z-index: 2;
  pointer-events: none;
  opacity: 0.28;
}
.hero-compose-guides .hcg-h,
.hero-compose-guides .hcg-v {
  stroke: rgba(79, 93, 84, 0.35);
  stroke-width: 1;
  vector-effect: non-scaling-stroke;
}
.hero-compose-guides .hcg-tick {
  stroke: rgba(79, 93, 84, 0.5);
  stroke-width: 1;
  vector-effect: non-scaling-stroke;
}

/* Featured product — sticky, optically centered under the header.
   Overlaps the poster on first paint, holds while type clears, then yields. */
.hero > .hero-body .hero-launch-stage,
.hero-launch > .hero-launch-stage {
  --hero-product-zoom: 1;
  --hero-stage-h: clamp(340px, 52vh, 600px);
  position: sticky;
  top: max(
    calc(var(--header-h) + 1.5rem),
    calc((100svh - var(--hero-stage-h)) / 2)
  );
  left: auto;
  bottom: auto;
  transform: none;
  z-index: 7;
  align-self: center;
  width: min(100%, clamp(280px, 40vw, 600px));
  height: var(--hero-stage-h);
  max-width: 100%;
  /* Strong pull so first paint already sits near the pin position. */
  margin: calc(var(--hero-stage-h) * -0.84) auto 0;
  overflow: visible;
  isolation: auto;
  pointer-events: none;
  display: block;
  min-height: 0;
}
.hero-launch > .hero-launch-stage[data-product="sr"] { --hero-product-zoom: 1; }
.hero-launch > .hero-launch-stage[data-product="lr"] { --hero-product-zoom: 1; }
.hero-launch > .hero-launch-stage[data-product="fn"] { --hero-product-zoom: 2; }
@media (min-width: 981px) {
  .hero > .hero-body .hero-launch-stage,
  .hero-launch > .hero-launch-stage {
    --hero-stage-h: clamp(380px, 56vh, 660px);
    position: relative;
    top: auto;
    width: min(100%, clamp(320px, 46vw, 720px));
    margin-top: calc(var(--hero-stage-h) * -0.82);
  }
  .hero-sticky-spacer { display: none; }
  .hero-launch > .hero-launch-stage[data-product="sr"] { --hero-product-zoom: 1.12; }
  .hero-launch > .hero-launch-stage[data-product="lr"] { --hero-product-zoom: 1; }
  .hero-launch > .hero-launch-stage[data-product="fn"] { --hero-product-zoom: 2.12; }
}
.hero-launch > .hero-launch-stage .hero-launch-shot {
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  margin: 0;
  overflow: visible;
  background: transparent;
  box-shadow: none;
}
.hero-launch > .hero-launch-stage .hero-launch-shot img {
  width: auto;
  height: auto;
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
  background: transparent;
  border: 0;
  border-radius: 0;
  transform: scale(var(--hero-product-zoom));
  transform-origin: center center;
  filter: none;
  transition:
    opacity 280ms ease,
    transform 360ms cubic-bezier(0.22, 1, 0.36, 1);
}
.hero-launch > .hero-launch-stage.is-swapping .hero-launch-shot img {
  opacity: 0;
  transform: scale(calc(var(--hero-product-zoom) * 0.96));
}
/* Drop the giant SR/LR/FN ghost lettering behind the product. */
.hero-launch > .hero-launch-stage .hero-launch-mark {
  display: none;
}

/* Control strip on cream — left CTAs, right product switcher.
   Sits above the product on release so the handoff stays clean. */
.hero-launch-copy {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  grid-template-rows: auto auto;
  align-items: center;
  position: relative;
  z-index: 10;
  background: var(--cream);
  row-gap: 1rem;
  width: min(var(--max), calc(100% - var(--page-gutter) - var(--page-gutter)));
  max-width: none;
  margin-inline: auto;
  padding: clamp(2.5rem, 6vh, 4rem) 0 clamp(1.25rem, 2.5vw, 1.75rem);
}
.hero-launch-copy .hero-principle { grid-column: 1; grid-row: 1; margin: 0; }
.hero-launch-copy .hero-actions { grid-column: 1; grid-row: 2; margin: 0; }
.hero-launch-switch .hero-product-switch {
  display: inline-flex;
  flex-wrap: nowrap;
  gap: 0;
  margin: 0;
  border: 1px solid rgba(38, 51, 46, 0.32);
  background: var(--cream);
  pointer-events: auto;
}
.hero-launch-switch .hero-product-tab {
  min-width: 2.75rem;
  margin: 0;
  border: 0;
  border-right: 1px solid rgba(38, 51, 46, 0.18);
  border-radius: 0;
  color: #3d4840;
  background: transparent;
  font-weight: 650;
  letter-spacing: 0.14em;
  pointer-events: auto;
}
.hero-launch-switch .hero-product-tab:last-child {
  border-right: 0;
}
.hero-launch-switch .hero-product-tab:hover {
  color: #1c2621;
  background: rgba(38, 51, 46, 0.05);
}
.hero-launch-switch .hero-product-tab.is-selected,
.hero-launch-switch .hero-product-tab[aria-selected="true"] {
  color: #1c2621;
  background: rgba(99, 116, 92, 0.18);
  border-color: transparent;
}
.hero-launch-switch .hero-product-meta {
  color: #3d4840;
  font-size: clamp(0.68rem, 0.8vw, 0.78rem);
  letter-spacing: 0.1em;
}
.hero-launch-copy .button-secondary {
  border-color: rgba(38, 51, 46, 0.28);
  color: #26332e;
  background: transparent;
}
.hero-launch-copy .button-secondary:hover {
  border-color: rgba(38, 51, 46, 0.45);
  background: rgba(38, 51, 46, 0.05);
  color: #26332e;
}
.hero-spec {
  position: absolute;
  bottom: clamp(1.5rem, 3vw, 2.5rem);
  z-index: 5;
  font-family: var(--font-mono, ui-monospace, monospace);
  color: #3d4840;
}
.hero-spec-num {
  display: flex;
  align-items: baseline;
  gap: 0.55rem;
  margin-bottom: 0.55rem;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  color: #5c5340;
}
.hero-spec-num::after {
  content: "";
  flex: 1;
  max-width: 2.75rem;
  height: 1px;
  background: rgba(79, 93, 84, 0.4);
  transform: translateY(-0.15em);
}
.hero-spec-label {
  margin: 0 0 0.85rem;
  padding-bottom: 0.55rem;
  border-bottom: 1px solid rgba(38, 51, 46, 0.16);
  font-family: var(--font-display, "Familjen Grotesk", sans-serif);
  font-size: 0.95rem;
  font-weight: 700;
  line-height: 1.15;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: #1c2621;
}
.hero-spec--intro {
  left: clamp(1.5rem, 3vw, 2.75rem);
  max-width: min(34ch, 30%);
}
.hero-spec-lead {
  margin: 0 0 0.55rem;
  font-family: var(--font-display, "Familjen Grotesk", sans-serif);
  font-size: clamp(1.05rem, 1.7vw, 1.5rem);
  font-weight: 700;
  line-height: 1.12;
  letter-spacing: -0.015em;
  color: #1c2621;
  text-wrap: pretty;
}
.hero-spec-body {
  margin: 0;
  font-family: var(--font-sans, system-ui, sans-serif);
  font-size: 0.8rem;
  line-height: 1.55;
  letter-spacing: 0.015em;
  color: #3d4840;
}
/* Zero-signature proof strip — echoes the diagram's amber to tie the two columns together. */
.hero-stat-strip {
  display: flex;
  flex-wrap: wrap;
  gap: clamp(1.4rem, 2.6vw, 2.4rem);
  margin: 1.35rem 0 0;
  padding-top: 1.15rem;
  border-top: 1px solid rgba(38, 51, 46, 0.16);
}
.hero-stat { margin: 0; }
.hero-stat-num {
  font-family: var(--font-display, "Familjen Grotesk", sans-serif);
  font-size: clamp(2.6rem, 4vw, 3.4rem);
  font-weight: 700;
  line-height: 0.9;
  letter-spacing: -0.03em;
  color: #c9773a;
}
.hero-stat-label {
  margin: 0.35rem 0 0;
  font-size: 0.66rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: #5c5340;
}
.hero-textlink {
  align-self: center;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  /* Brighter than the lede paragraph and underlined at rest, so it
     reads as the next action rather than a trailing caption -- still
     plain text, no pill/box/button. Hover moves to --accent (the
     site's teal) instead of the old #c9773a, an orange left over from
     a different hero that didn't match this page's brand color. */
  color: var(--ink);
  text-decoration: none;
  border-bottom: 1px solid rgba(255,255,255,0.32);
  padding-bottom: 0.2rem;
  transition: color 0.2s var(--ease-premium, ease), border-color 0.2s var(--ease-premium, ease);
}
.hero-textlink span {
  display: inline-block;
  transition: transform 0.2s var(--ease-premium, ease);
}
.hero-textlink:hover { color: var(--accent); border-color: var(--accent); }
.hero-textlink:hover span { transform: translateX(3px); }
.hero-spec--list {
  right: clamp(1.5rem, 3vw, 2.75rem);
  max-width: min(42ch, 34%);
  padding: 0.15rem 0;
  background: transparent;
  box-shadow: none;
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
}
.hero-spec-points {
  margin: 0;
  padding: 0;
  list-style: none;
}
.hero-spec-points li {
  position: relative;
  margin: 0;
  padding: 0.35rem 0 0.35rem 1.05rem;
  border-bottom: 1px solid rgba(38, 51, 46, 0.08);
  font-family: var(--font-sans, system-ui, sans-serif);
  font-size: 0.88rem;
  font-weight: 500;
  line-height: 1.4;
  letter-spacing: 0.01em;
  color: #1f2924;
}
.hero-spec-points li:last-child { border-bottom: 0; }
.hero-spec-points li + li { margin-top: 0; }
.hero-spec-points li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.85em;
  width: 4px;
  height: 4px;
  border-radius: 0;
  background: #4f5d54;
}

@media (min-width: 981px) {
  .hero-spec-num {
    font-size: 0.82rem;
    color: #7f755f;
  }
  .hero-spec-lead {
    font-size: clamp(1.3rem, 2vw, 1.85rem);
    line-height: 1.12;
  }
  .hero-spec-body {
    font-size: clamp(0.84rem, 0.9vw, 0.98rem);
    line-height: 1.58;
    color: #4f584f;
    text-wrap: balance;
  }
  .hero-spec--intro {
    max-width: min(42ch, 31%);
  }
  .hero-spec--list {
    max-width: min(44ch, 30%);
    padding: 0.15rem 0;
    background: transparent;
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
  }
  .hero-spec--list .hero-spec-num {
    margin-bottom: 0.4rem;
    color: #5c5340;
    font-size: 0.8rem;
  }
  .hero-spec-label {
    font-size: clamp(1.02rem, 1.15vw, 1.2rem);
    margin-bottom: 0.65rem;
    color: #1c2621;
    letter-spacing: 0.07em;
  }
  .hero-spec-points li {
    font-size: clamp(0.86rem, 0.92vw, 0.96rem);
    font-weight: 500;
    line-height: 1.4;
    color: #1f2924;
  }
}

@media (min-width: 1200px) {
  .hero-spec-points li { white-space: normal; }
}

@media (min-width: 981px) {
  .hero > .hero-body .hero-launch-stage,
  .hero-launch > .hero-launch-stage {
    --hero-stage-h: clamp(340px, 50vh, 520px);
    width: min(100%, 36vw);
    margin-top: calc(var(--hero-stage-h) * -0.94);
  }
  .hero-launch > .hero-launch-stage[data-product="sr"] { --hero-product-zoom: 1; }
  .hero-launch > .hero-launch-stage[data-product="lr"] { --hero-product-zoom: 1; }
  .hero-launch > .hero-launch-stage[data-product="fn"] { --hero-product-zoom: 1.85; }
  .hero-spec--intro { max-width: 28%; }
  .hero-spec--list {
    max-width: min(40ch, 29%);
    padding-left: 1.1rem;
    right: clamp(1.75rem, 3vw, 2.75rem);
  }
  .hero-spec-lead {
    font-size: clamp(1.05rem, 1.4vw, 1.55rem);
  }
  .hero-spec-body {
    font-size: clamp(0.78rem, 0.85vw, 0.9rem);
    color: #3d4840;
  }
  .hero-spec-points li {
    font-size: clamp(0.84rem, 0.9vw, 0.94rem);
    color: #1f2924;
  }
  .hero-spec-label {
    font-size: clamp(0.98rem, 1.05vw, 1.12rem);
    margin-bottom: 0.6rem;
    color: #1c2621;
  }
}

/* Rotating circular badge near the product. */
.hero-watch-badge {
  position: absolute;
  z-index: 6;
  left: clamp(1.5rem, 3vw, 2.75rem);
  top: 46%;
  display: grid;
  place-items: center;
  width: clamp(84px, 9vw, 108px);
  height: clamp(84px, 9vw, 108px);
  border-radius: 50%;
  text-decoration: none;
  transition: transform 260ms ease;
}
.hero-watch-badge:hover { transform: scale(1.05); }
.hero-watch-ring {
  position: absolute;
  inset: 0;
  animation: hero-badge-spin 16s linear infinite;
}
.hero-watch-ring svg { width: 100%; height: 100%; overflow: visible; }
.hero-watch-ring text {
  font-family: var(--font-mono, ui-monospace, monospace);
  font-size: 8.6px;
  font-weight: 600;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  fill: #46514a;
}
.hero-watch-glyph {
  display: grid;
  place-items: center;
  width: 44%;
  height: 44%;
  border-radius: 50%;
  background: #26332e;
  color: #e9e6dc;
  font-size: 1.05rem;
  line-height: 1;
}
@keyframes hero-badge-spin { to { transform: rotate(360deg); } }
@media (prefers-reduced-motion: reduce) {
  .hero-watch-ring { animation: none; }
}

/* Concept equipment: full-bleed photo row + scroll parallax. */
@media (min-width: 981px) {
  #packaging .packaging-sticky-layout {
    display: block;
  }
  #packaging .packaging-pin {
    position: static;
  }
  #packaging .real-concept-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 0;
    margin-bottom: 0;
  }
  #packaging .real-concept-card {
    opacity: 1;
    transform: none;
    border-radius: 0;
    border-inline: 0;
    border-block: 1px solid rgba(183, 201, 210, 0.16);
    transition: border-color 220ms ease;
  }
  #packaging .real-concept-card + .real-concept-card {
    border-left: 1px solid rgba(183, 201, 210, 0.16);
  }
  #packaging .real-concept-media {
    position: relative;
    overflow: hidden;
    aspect-ratio: 4 / 3;
    background: #111c26;
  }
  #packaging .real-concept-card img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    min-height: 0;
    aspect-ratio: auto;
    object-fit: cover;
    object-position: center 42%;
  }
  /* Full-node sits high on the pole — bias framing upward. */
  #packaging .real-concept-card:nth-child(3) img {
    object-position: center 22%;
  }
  #packaging .real-concept-card figcaption {
    padding: 1rem 1.25rem 1.15rem;
  }
}
@media (max-width: 980px) {
  #packaging > .shell {
    width: min(calc(100% - (var(--page-gutter) * 2)), 1480px);
  }
  #packaging .real-concept-media {
    overflow: hidden;
  }
  #packaging .real-concept-card img {
    height: auto;
    aspect-ratio: 4 / 3;
    min-height: 260px;
    object-fit: cover;
    object-position: center 40%;
  }
  #packaging .real-concept-card:nth-child(3) img {
    object-position: center 22%;
  }
}
@media (prefers-reduced-motion: reduce) {
  #packaging .real-concept-card {
    opacity: 1 !important;
    transform: none !important;
    transition: none !important;
  }
}

@media (max-width: 1100px) {
  .pgisr-header-inner { padding-right: var(--page-gutter); }
  .hero-title-row, .hero-text { width: 100%; }
  .hero-product-name { font-size: clamp(5.5rem, 12vw, 8rem); }
  .diagram-section-hdr-left {
    grid-template-columns: 1fr;
    grid-template-areas:
      "label"
      "title"
      "pitch"
      "howto";
    gap: 0;
    border-inline: 1px solid rgba(155, 172, 184, 0.18);
    background: #09131e;
  }
  .diagram-section-hdr-left .ops-label,
  .diagram-section-title,
  .diagram-section-sub {
    padding-inline: 1.25rem;
    background: transparent;
  }
  .diagram-section-hdr-left .ops-label {
    padding-block: 1rem;
    border-bottom: 1px solid rgba(155, 172, 184, 0.18);
  }
  .diagram-section-title { padding-block: 1.5rem 0.75rem; }
  .diagram-section-sub { padding-block: 0.85rem 1.15rem; }
  .diagram-buyer-pitch {
    border-left: 0;
    border-top: 1px solid rgba(155, 172, 184, 0.14);
    padding: 1.25rem 1.25rem 1.35rem 1.35rem;
    max-width: none;
  }
  .diagram-buyer-pitch::before {
    top: 0;
    bottom: auto;
    left: 1.25rem;
    right: 1.25rem;
    width: auto;
    height: 3px;
  }
  .diagram-buyer-pitch-claim { max-width: 22ch; }
  .diagram-section-title { max-width: 12ch; }
  .diagram-section-sub { max-width: 56ch; }
  .intel-feed-layout {
    grid-template-columns: minmax(320px, 0.82fr) minmax(0, 1.18fr);
    gap: 3rem;
  }
  .contact-hero-grid { gap: 3rem; }
}

@media (max-width: 980px) {
  .hero.hero {
    min-height: 0;
    padding-bottom: 1.25rem;
    overflow: visible;
  }
  .hero-body::before { display: none; }
  .hero-body > .shell { padding-bottom: 0; }
  .hero-body > .shell.hero-launch {
    display: flex;
    flex-direction: column;
    flex: none;
    align-items: stretch;
    width: 100%;
    max-width: none;
    padding: 0.85rem var(--page-gutter) 0;
    gap: 0;
  }

  .hero-sticky-track {
    display: contents;
    min-height: 0;
  }
  .hero-sticky-spacer { display: none; }

  /* Flatten poster so we can order: title → product → specs → CTAs */
  .hero-poster {
    display: contents;
  }
  .hero-poster::after { display: none; }
  .hero-compose-guides { display: none; }
  .hero-poster .hero-kicker {
    order: 1;
    position: static;
    margin: 0 0 0.4rem;
    font-size: 0.68rem;
  }
  .hero-poster .hero-product-name {
    order: 2;
    position: static;
    left: auto;
    top: auto;
    transform: none;
    width: 100%;
    margin: 0 0 0.15rem;
    font-size: clamp(3.4rem, 17vw, 5.25rem);
    line-height: 0.84;
    letter-spacing: -0.05em;
    mix-blend-mode: normal;
    white-space: nowrap;
  }
  .hero-watch-badge { display: none; }

  /* Product right under the wordmark — still large, but fits the phone. */
  .hero > .hero-body .hero-launch-stage,
  .hero-launch > .hero-launch-stage {
    order: 3;
    position: relative;
    left: auto;
    top: auto;
    transform: none;
    width: min(84%, 360px);
    height: clamp(300px, 52vw, 340px);
    margin: 0 auto 0.1rem;
    align-self: center;
  }
  .hero > .hero-body .hero-launch-stage[data-product="lr"],
  .hero-launch > .hero-launch-stage[data-product="lr"] {
    --hero-product-zoom: 1.85;
    width: min(84%, 360px);
  }
  .hero > .hero-body .hero-launch-stage[data-product="sr"],
  .hero-launch > .hero-launch-stage[data-product="sr"] {
    --hero-product-zoom: 1.45;
  }
  .hero > .hero-body .hero-launch-stage[data-product="fn"],
  .hero-launch > .hero-launch-stage[data-product="fn"] {
    --hero-product-zoom: 1.75;
  }
  .hero > .hero-body .hero-launch-stage .hero-concept-tag,
  .hero-launch > .hero-launch-stage .hero-concept-tag {
    left: 50%;
    bottom: 1.75rem;
    transform: translateX(-50%);
  }
  .hero-launch > .hero-launch-stage .hero-launch-shot img {
    filter: none;
  }

  .hero-spec {
    position: static;
    max-width: none;
    margin: 0.85rem 0 0;
  }
  .hero-spec--intro { order: 5; left: auto; }
  .hero-spec--list {
    order: 6;
    right: auto;
    margin-top: 0.7rem;
    max-width: none;
    padding: 1.1rem 1.25rem;
    background: #f2efe6;
    border-radius: 4px;
    box-shadow: 0 10px 24px rgba(20,24,20,0.14), 0 1px 0 rgba(38,51,46,0.08);
    backdrop-filter: none;
  }
  .hero-spec-label {
    padding-bottom: 0.6rem;
    border-bottom: 1px solid rgba(38, 51, 46, 0.12);
  }
  .hero-spec-lead {
    font-size: clamp(1.05rem, 4.6vw, 1.35rem);
  }
  .hero-spec-body,
  .hero-spec-points li {
    font-size: 0.78rem;
    line-height: 1.5;
  }

  .hero-launch-copy {
    order: 7;
    display: flex;
    flex-direction: column;
    align-items: stretch;
    gap: 0.85rem;
    width: 100%;
    max-width: none;
    margin: 0;
    padding: 1.35rem 0 0.75rem;
  }
  .hero-principles-band {
    order: 8;
    width: 100%;
    max-width: none;
  }
  .hero-launch-copy .hero-principle,
  .hero-launch-copy .hero-actions {
    grid-column: auto;
    grid-row: auto;
    justify-self: auto;
    text-align: left;
  }
  .hero-launch-switch {
    grid-column: auto;
    grid-row: auto;
    justify-self: auto;
    text-align: left;
  }
  .hero-launch-copy .hero-actions {
    display: grid;
    grid-template-columns: 1fr;
    gap: 0.25rem;
    width: 100%;
  }
  .hero-launch-copy .hero-actions .button {
    min-height: 48px;
    justify-content: center;
    touch-action: manipulation;
    -webkit-tap-highlight-color: transparent;
  }
  .hero-launch-copy .hero-actions .button-primary {
    width: 100%;
  }
  .hero-launch-copy .hero-actions .button-secondary {
    width: auto;
    min-height: 44px;
    justify-self: center;
    padding: 0.55rem 0.8rem;
    border: 0;
    background: transparent;
    color: #26332e;
  }
  .hero-launch-copy .hero-actions .button-secondary::after {
    content: '\2192';
    margin-left: 0.1rem;
    transition: transform 140ms ease;
  }
  .hero-launch-copy .hero-actions .button:focus-visible {
    outline: 2px solid #26332e;
    outline-offset: 3px;
    box-shadow: 0 0 0 5px rgba(38, 51, 46, 0.12);
  }
  .hero-launch-copy .hero-actions .button-primary:active {
    opacity: 1;
    background: #b9692f;
    transform: scale(0.985);
    transition-duration: 70ms;
  }
  .hero-launch-copy .hero-actions .button-secondary:active {
    opacity: 0.62;
    transform: scale(0.985);
    transition-duration: 70ms;
  }
  .hero-launch-copy .hero-product-switch {
    display: flex;
    gap: 0.4rem;
  }
  .hero-launch-copy .hero-product-tab {
    flex: 1;
    min-width: 0;
    text-align: center;
  }
  .creds-strip { display: block; }
  .creds-ticker-label-col { display: none; }
  .creds-ticker-outer {
    width: 100%;
    overflow: hidden;
    -webkit-mask-image: none;
    mask-image: none;
  }
  .creds-ticker-inner {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    width: 100%;
    animation: none;
  }
  .creds-strip .cred-tick-item {
    min-width: 0;
    padding: 0.75rem 0.8rem;
    white-space: normal;
    border-right: 1px solid var(--cream-line);
    border-bottom: 1px solid var(--cream-line);
  }
  .creds-strip .cred-tick-name {
    font-size: 0.72rem;
    line-height: 1.3;
  }
  .creds-strip .cred-tick-desc {
    font-size: 0.5rem;
    line-height: 1.35;
  }
  .creds-strip .cred-tick-item:nth-child(n+5) { display: none; }

  .hero-title-row, .hero-text { width: 100%; }
  .hero-title-row { padding-top: 3rem; }
  .hero-text { max-width: 650px; }
  .quiet-band .shell, .mv-section-head { grid-template-columns: 1fr; gap: 1.5rem; }
  .quiet-band .ops-label, .mv-section-head > .ops-label { padding-top: 0; }
  .intel-feed-layout { grid-template-columns: 1fr; }
  .intel-feed-panel { position: relative; top: auto; }
  .contact-info-column { position: static; }

  /* Sector strip: guided mode keeps thin tabs; legacy cards stack. */
  .deployment-console .sector-selector {
    grid-template-columns: 1fr;
  }
  .deployment-console .sector-selector-meta {
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 0.75rem 1rem;
    border-right: 0;
    border-bottom: 1px solid var(--console-line, rgba(155, 172, 184, 0.18));
    padding: 1rem 1.1rem;
  }
  .deployment-console .capability-layer {
    grid-column: 2;
    grid-row: 1 / span 2;
    margin: 0;
    align-self: center;
  }
  .deployment-console .sector-select-track {
    display: flex;
    flex-direction: column;
    overflow: visible;
    gap: 0;
  }
  .deployment-console .sector-select-card {
    flex: none;
    width: 100%;
    min-height: 0;
    border-width: 0 0 1px 0;
    padding: 0.9rem 1rem;
  }
  .deployment-console .sector-select-card .sector-desc {
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
  }
  .deployment-console .sector-capabilities {
    display: grid;
    grid-template-columns: 1fr 1fr;
  }
  .deployment-console--guided .sector-capabilities {
    display: none;
  }
  .deployment-console--guided .sector-selector--tabs {
    grid-template-columns: 1fr;
  }
  .deployment-console--guided .sector-selector--tabs .sector-selector-meta {
    display: flex;
    flex-direction: column;
    border-right: 0;
    border-bottom: 1px solid var(--console-line);
    padding: 0.85rem 1rem 0.55rem;
  }
  .deployment-console--guided .sector-selector--tabs .sector-select-track {
    flex-direction: column;
    flex-wrap: nowrap;
    gap: 0.4rem;
    padding: 0.65rem 1rem 0.9rem;
  }
  .deployment-console--guided .sector-selector--tabs .sector-select-card {
    width: 100% !important;
    min-width: 0 !important;
    justify-content: flex-start !important;
    border-width: 1px;
    padding: 0.5rem 0.75rem;
  }
  .deployment-console--guided .sector-selector--tabs .sector-desc {
    display: none;
  }
  .deployment-console .diagram-stage {
    height: min(62svh, 520px);
    min-height: 360px;
  }
}

.form-privacy-note {
  margin: 0.85rem 0 0;
  color: var(--muted);
  font-size: 0.68rem;
  line-height: 1.6;
  text-align: center;
}
.form-privacy-note a { color: var(--accent); }

@media (max-width: 760px) {
  :root {
    --page-gutter: 16px;
    --header-h: 4rem;
    --section-space: 4.5rem;
  }
  html { font-size: 16px; }
  .sys-status-bar { display: none; }
  .pgisr-logo-placeholder {
    width: 124px;
    height: 34px;
    font-size: 0.48rem;
  }
  .pgisr-logo-placeholder--footer {
    width: 180px;
    height: 48px;
  }
  .pgisr-mobile-nav { top: var(--header-h); }
  .mobile-nav-sheet .pgisr-nav-cta {
    background: #c9773a;
    border-radius: 2px;
  }
  .hero { padding-bottom: 0.75rem; }
  .hero-poster .hero-product-name {
    font-size: clamp(3.1rem, 16vw, 4.6rem);
  }
  .hero > .hero-body .hero-launch-stage,
  .hero-launch > .hero-launch-stage {
    width: min(92%, 320px);
    height: 300px;
  }
  .hero > .hero-body .hero-launch-stage[data-product="lr"],
  .hero-launch > .hero-launch-stage[data-product="lr"] {
    width: min(92%, 320px);
  }
  .hero-product-logo-placeholder {
    width: 100%;
    height: 96px;
    font-size: 0.54rem;
  }
  .hero-text { padding: 1.6rem 0 2rem; }
  .hero-positioning { font-size: clamp(1.5rem, 7vw, 2rem); }
  .hero-text .subtitle { font-size: 1rem; line-height: 1.65; }
  .hero-principle {
    align-items: flex-start;
    font-size: 0.62rem;
    letter-spacing: 0.08em;
    white-space: normal;
  }
  .hero-principle::before { width: 1.5rem; margin-top: 0.48rem; }

  .creds-verify-note { padding-block: 0.8rem 1.4rem; }
  .diagram-section-hdr { padding: 1.35rem 0 0.85rem; }
  #deployment.diagram-fullscreen {
    margin-top: 0;
    padding-top: 0;
  }
  #packaging {
    padding-top: 2.25rem;
  }
  #packaging > .shell {
    padding-top: 0;
  }
  .diagram-section-hdr-left {
    min-width: 0;
    max-width: 100%;
    overflow: hidden;
  }
  .diagram-section-title {
    align-items: flex-start;
    flex-direction: column;
    flex-wrap: wrap;
    gap: 0.05em;
    max-width: 100%;
    min-width: 0;
    white-space: normal;
    overflow-wrap: anywhere;
    word-break: normal;
    font-size: clamp(1.85rem, 8.5vw, 2.55rem);
    line-height: 1.05;
  }
  .diagram-title-line {
    white-space: normal;
    max-width: 100%;
  }
  .diagram-section-sub {
    max-width: 100%;
    min-width: 0;
    white-space: normal;
    overflow-wrap: anywhere;
    font-size: 0.92rem;
    line-height: 1.55;
  }
  .diagram-buyer-pitch {
    max-width: 100%;
    overflow-wrap: anywhere;
  }
  .diagram-controls {
    width: 100%;
    flex-direction: column;
  }
  .deployment-console-toolbar {
    align-items: stretch;
    flex-direction: column;
    gap: 0.65rem;
    min-height: 0;
    padding: 0.85rem 1rem;
  }
  .deployment-console-toolbar .capability-layer {
    justify-content: space-between;
    gap: 1rem;
  }
  .deployment-console-toolbar .capability-layer-kicker {
    font-size: 0.76rem;
    line-height: 1.35;
    letter-spacing: 0.12em;
  }
  .deployment-console-toolbar .capability-layer-label {
    font-size: 1.15rem;
    line-height: 1.2;
  }
  .diagram-ctrl-btn {
    flex: none;
    width: 100%;
    min-height: 48px;
    padding: 0.65rem 0.55rem;
    font-size: 0.68rem;
    line-height: 1.3;
    letter-spacing: 0.045em;
  }
  .diagram-controls {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0.5rem;
  }
  .deployment-console {
    width: 100%;
    margin-inline: 0;
    border-inline: 0;
    border-radius: 0;
  }
  .deployment-console .sector-selector-meta {
    grid-template-columns: 1fr;
    gap: 0.35rem;
    padding: 0.85rem 1rem;
  }
  .deployment-console .sector-selector-meta .ops-label {
    font-size: 0.76rem;
    line-height: 1.4;
  }
  .deployment-console .sector-selector-hint {
    max-width: 34ch;
    font-size: 0.82rem;
    line-height: 1.45;
  }
  .deployment-console .capability-layer {
    grid-column: 1;
    grid-row: auto;
  }
  .deployment-console .sector-select-card {
    gap: 0.45rem;
    padding: 0.9rem 1rem;
  }
  .deployment-console .sector-select-card .sector-num {
    font-size: 0.76rem;
    line-height: 1.35;
  }
  .deployment-console .sector-select-card .sector-name {
    font-size: 1rem;
    line-height: 1.3;
  }
  .deployment-console .sector-select-card .sector-desc {
    display: block;
    overflow: visible;
    font-size: 0.8rem;
    line-height: 1.45;
    -webkit-line-clamp: unset;
  }
  .deployment-console .sector-selector { order: 2; }
  .deployment-console .sector-select-track {
    display: grid;
    grid-template-columns: 1fr;
    gap: 0.4rem;
    padding: 0.75rem 1rem;
    overflow: visible;
    scroll-snap-type: none;
  }
  .deployment-console .sector-select-card {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 0.7rem;
    width: 100%;
    min-height: 58px;
    padding: 0.7rem 0.85rem;
    border: 1px solid var(--console-line);
  }
  .deployment-console .sector-select-card.is-selected {
    box-shadow: inset 3px 0 0 var(--accent);
  }
  .deployment-console .sector-select-card .sector-num {
    flex: 0 0 2rem;
  }
  .deployment-console .sector-select-card .sector-name {
    flex: 1;
    font-size: 0.9rem;
  }
  .deployment-console .sector-capabilities { display: none; }
  .deployment-console--guided .deployment-console-toolbar {
    flex-direction: column;
    align-items: stretch;
  }
  .deployment-console--guided .diagram-controls {
    display: flex;
    flex-direction: column;
    align-items: stretch;
    gap: 0.55rem;
    margin-left: 0;
  }
  .deployment-console--guided .approach-paths {
    justify-content: space-between;
    width: 100%;
  }
  .deployment-console--guided .approach-path {
    flex: 1;
  }
  .deployment-console--guided .diagram-ctrl-btn--ghost {
    order: 3;
  }
  .deployment-console--guided .sector-selector--tabs {
    order: 4;
  }
  .deployment-console--guided .sector-selector--tabs .sector-select-track {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    gap: 0.4rem;
    padding: 0.65rem 1rem 0.9rem;
  }
  .deployment-console--guided .sector-selector--tabs .sector-select-card {
    display: inline-flex;
    width: auto;
    min-height: 0;
    padding: 0.5rem 0.75rem;
    border: 1px solid rgba(155, 172, 184, 0.2);
    box-shadow: none;
  }
  .deployment-console--guided .sector-selector--tabs .sector-select-card.is-selected {
    box-shadow: inset 0 2px 0 var(--accent);
  }
  .deployment-console--guided .sector-selector--tabs .sector-num {
    flex: none;
  }
  .deployment-console--guided .sector-selector--tabs .sector-name {
    flex: none;
    font-size: 0.84rem;
  }
  .deployment-console--guided .sector-selector--tabs .sector-desc {
    display: none !important;
  }
  .deployment-console--guided .sector-capabilities {
    display: none;
  }
  .deployment-console--guided .diagram-play-coach {
    width: min(300px, calc(100% - 1.5rem));
    padding: 1rem 1.1rem 1.15rem;
  }
  .deployment-console--guided .diagram-play-coach p {
    font-size: 0.9rem;
  }
  .deployment-console .diagram-stage {
    order: 2;
    display: flex;
    flex-direction: column;
    height: auto;
    min-height: 0;
  }
  .deployment-console > .diagram-legend {
    order: 4;
    grid-template-columns: 1fr 1fr;
    grid-template-rows: auto;
  }
  .deployment-console > .diagram-panel {
    order: 3;
    padding: 0.85rem 1rem;
  }
  .deployment-console > .diagram-panel .diagram-panel-data {
    display: flex;
    flex-direction: column;
    gap: 0.55rem;
  }
  .deployment-console > .diagram-panel.is-open .diagram-panel-data {
    display: flex !important;
  }
  .deployment-console > .diagram-panel .diagram-panel-stats,
  .deployment-console > .diagram-panel .diagram-panel-assessment,
  .deployment-console > .diagram-panel .diagram-panel-top,
  .deployment-console > .diagram-panel .diagram-panel-status,
  .deployment-console > .diagram-panel .diagram-panel-name,
  .deployment-console > .diagram-panel .diagram-panel-loc,
  .deployment-console > .diagram-panel .diagram-panel-tags,
  .deployment-console > .diagram-panel .diagram-panel-desc,
  .deployment-console > .diagram-panel .diagram-panel-alert {
    grid-column: auto;
    grid-row: auto;
  }
  .deployment-console > .diagram-legend .diagram-legend-hint {
    grid-column: 1 / -1;
    border-right: 0;
    border-bottom: 1px solid rgba(155, 172, 184, 0.16);
    padding: 0.65rem 0.85rem;
  }
  .deployment-console > .diagram-legend .diagram-legend-item.legend-fence-item {
    display: none;
  }
  .deployment-console .diagram-map-wrap {
    position: relative;
    inset: auto;
    order: 1;
    width: 100%;
    height: auto;
    min-height: 0;
    aspect-ratio: 940 / 560;
    overflow: hidden;
    flex: none;
  }
  .deployment-console .diagram-map-wrap svg {
    width: 100%;
    min-width: 0;
    height: 100%;
  }
  .deployment-console .diagram-map-wrap::before,
  .deployment-console .diagram-map-wrap::after,
  .deployment-console .diagram-scroll-hint {
    display: none;
  }
  .alert-level-hud {
    position: relative;
    inset: auto;
    order: 0;
    width: 100%;
    padding: 0.7rem 1rem;
    border-width: 0 0 1px 3px;
    box-shadow: none;
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
  }
  .alert-level-kicker {
    font-size: 0.68rem;
    line-height: 1.35;
  }
  .alert-level-value {
    font-size: 0.82rem;
    line-height: 1.3;
  }
  .alert-level-context {
    font-size: 0.7rem;
    line-height: 1.4;
  }
  .alert-level-note {
    font-size: 0.64rem;
    line-height: 1.45;
  }
  .alert-level-scale {
    margin: 0.45rem 0 0.4rem;
  }
  .diagram-panel {
    position: relative;
    inset: auto;
    order: 2;
    width: 100%;
    min-height: 0;
    transform: none;
    padding: 0.8rem 1rem;
    border: 0;
    border-top: 1px solid var(--console-line);
    border-radius: 0;
    box-shadow: none;
  }
  .diagram-panel-idle {
    gap: 0;
    min-height: 0;
    padding: 0;
    font-size: 0.82rem;
    line-height: 1.45;
  }
  .diagram-panel-idle svg { display: none; }
  .diagram-panel-idle p {
    max-width: none;
    margin: 0;
  }
  .deployment-console .diagram-legend {
    position: relative;
    inset: auto;
    order: 3;
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    width: 100%;
    max-width: none;
    padding: 0.5rem;
    gap: 0.4rem;
    transform: none;
    border: 0;
    border-top: 1px solid var(--console-line);
    border-radius: 0;
    background: rgba(6, 15, 32, 0.72);
  }
  .deployment-console .diagram-legend-hint,
  .deployment-console .legend-fence-item { display: none; }
  .deployment-console button.diagram-legend-item {
    min-height: 44px;
    justify-content: flex-start;
    padding: 0.55rem 0.7rem;
    border-color: var(--console-line);
    border-radius: 2px;
    background: rgba(255, 255, 255, 0.018);
  }
  .deployment-console .legend-sub { display: none; }
  .eng-studies-section { padding-bottom: 3rem; }
  .quiet-band { padding-block: 3rem; }
  .quiet-band::after { width: 90vw; right: -45%; opacity: 0.35; }
  .quiet-band-statement { font-size: clamp(2.1rem, 9vw, 2.9rem); }
  .intel-feed-section > .shell { padding-block: 3rem; }
  .intel-feed-copy .ops-title { font-size: clamp(2.4rem, 10.5vw, 3.2rem); }
  .pipeline-steps { margin-top: 1.6rem; }
  .pipeline-step { grid-template-columns: 38px minmax(0, 1fr); }
  .intel-feed-panel { margin-top: 0.5rem; }
  .page-hero { padding: calc(var(--header-h) + 3.5rem) 0 4rem; }
  .about-hero-v2-title { font-size: clamp(2.8rem, 13vw, 4.2rem); }
  .heritage-node {
    min-height: 0;
    padding: 0 0 2.1rem 1.75rem;
    border-right: 0;
    background: transparent;
  }
  .heritage-node::before { display: block; }
  .heritage-node::after { left: 0; }
  .contact-hero-grid, .contact-grid { grid-template-columns: 1fr; gap: 2.5rem; }
  .contact-hero h1 { font-size: clamp(3rem, 14vw, 4.4rem); }
  .contact-hero-copy {
    /* Stacked here, so the grid row-gap alone sets the headline/copy
       separation; the desktop top pad is baseline-alignment only. */
    padding: 0;
    border-left: 0;
    border-top: 0;
  }
  .contact-intake-section {
    padding-top: 3.5rem;
  }
  .hero-launch-copy .hero-product-tab,
  .eng-studies-section .packaging-sector-tab {
    min-height: 44px;
  }
  .hero-principle,
  .hero-launch-copy .hero-product-meta,
  .form-row label {
    font-size: 0.75rem;
  }
  .deployment-console .sector-select-card .sector-desc {
    display: none;
  }
  .deployment-console .sector-select-card.is-selected .sector-desc {
    display: none;
  }
  #packaging .real-concept-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 0.65rem;
    margin-inline: 0;
    padding: 0 0 0.5rem;
    overflow: visible;
    scroll-snap-type: none;
  }
  #packaging .real-concept-card {
    display: grid;
    grid-template-columns: minmax(96px, 32%) minmax(0, 1fr);
    width: 100%;
    min-height: 112px;
  }
  #packaging .real-concept-media {
    min-height: 112px;
    height: 100%;
  }
  #packaging .real-concept-card img {
    position: static;
    width: 100%;
    height: 100%;
    min-height: 112px;
    aspect-ratio: auto;
    object-fit: cover;
    transform: none;
  }
  #packaging .real-concept-card figcaption {
    display: flex;
    flex-direction: column;
    justify-content: center;
    border-top: 0;
    border-left: 1px solid rgba(183, 201, 210, 0.14);
  }
  .form-card { box-shadow: none; }
  .form-privacy-note { font-size: 0.78rem; }
  .form-privacy-note a {
    display: inline-flex;
    min-height: 44px;
    align-items: center;
    color: var(--accent);
  }
  .mv-section-head h2 { font-size: clamp(2.6rem, 12vw, 4rem); }
}

@media (max-width: 760px) and (hover: none),
       (max-width: 760px) and (pointer: coarse) {
  .hero-launch-copy .hero-actions .button-primary:hover {
    background: #e0904e;
    border-color: #e0904e;
    transform: none;
    box-shadow: none;
  }
  .hero-launch-copy .hero-actions .button-secondary:hover {
    border: 0;
    background: transparent;
    color: #26332e;
    transform: none;
    box-shadow: none;
  }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { scroll-behavior: auto !important; }
  .button,
  .diagram-ctrl-btn,
  .sector-select-card,
  .faq-item summary,
  .pgisr-nav a::after { transition: none !important; }
}

.diagram-buyer-pitch-claim { color: #f7f9fa; }

/* ============================================================
   TIDY-UP PASS — brand wordmark, section alignment
   ============================================================ */

/* Typographic brand mark (replaces logo placeholders) */
.pgisr-brand-word {
  display: flex;
  flex-direction: column;
  gap: 2px;
  line-height: 1;
}
.pgisr-brand-word strong {
  font-family: var(--font-display);
  font-size: 1.55rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  color: #e8edeb;
}
.pgisr-brand-word small {
  display: flex;
  flex-direction: column;
  gap: 1px;
  font-family: var(--font-mono);
  font-size: 0.59rem;
  font-weight: 600;
  line-height: 1.1;
  letter-spacing: 0.11em;
  text-transform: uppercase;
  color: rgba(173, 188, 196, 0.84);
  white-space: nowrap;
}
.pgisr-brand-word small span {
  display: block;
}
.pgisr-brand-word--footer strong { font-size: 1.6rem; color: var(--footer-ink); }
.pgisr-brand-word--footer small { font-size: 0.56rem; color: var(--footer-body); }

/* Preserve the two-line descriptor at compact header sizes. */
@media (max-width: 760px) {
  .pgisr-brand-word small {
    font-size: 0.47rem;
    letter-spacing: 0.05em;
  }
}

/* Quiet band sits on the same left rail as every other section */
.quiet-band-note { margin-top: 1.75rem; }

/* Detection log follows the pipeline steps instead of leaving
   dead space below it */
@media (min-width: 981px) {
  .intel-feed-panel {
    position: sticky;
    top: calc(var(--header-h, 64px) + 1.5rem);
  }
}

/* ============================================================
   TITLE TRACKING SYSTEM
   ============================================================ */
:root {
  --title-tracking-display: -0.045em;
  --title-tracking-section: -0.035em;
}

/* Large, editorial display titles. */
.hero-product-name,
.hero-poster .hero-product-name,
.about-hero-v2-title,
.contact-hero h1,
#privacy-title,
#terms-title,
.error-title,
.quiet-band-statement,
.origin-statement-headline,
.intel-feed-copy .ops-title {
  letter-spacing: var(--title-tracking-display);
}

/* The shorter contact statement benefits from a calmer, more open setting. */
.contact-hero h1 {
  letter-spacing: -0.035em;
}

/* Standard section titles. */
.diagram-section-title,
.mv-section-head h2,
.heritage-statement h2,
.ops-title {
  letter-spacing: var(--title-tracking-section);
}

/* The direction header introduces the cards below; it should not compete
   with the page's larger editorial statements. */
.about-direction-section .mv-section-head {
  display: block;
}
.about-direction-section .mv-section-head > .ops-label {
  margin: 0 0 0.85rem;
}
.about-direction-section .mv-section-head-copy {
  display: block;
}
.about-direction-section .mv-section-head h2 {
  max-width: 22ch;
  font-size: clamp(2rem, 3.4vw, 3.4rem);
  line-height: 1.04;
}

/* Mission now stands alone (Vision removed) — a 2-column grid with one
   item would leave a blank column beside it at desktop widths. */
.about-direction-section .mv-statement-list {
  grid-template-columns: 1fr;
}
/* Operating principles reduced from four to two — match the column count
   to the item count so desktop doesn't leave two tracks empty. */
@media (min-width: 861px) {
  .about-direction-section .mv-values-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    max-width: 52rem;
  }
}

/* Principle count — sits directly beside the label it describes,
   immediately above the 4 items, instead of floating near the headline. */
.mv-values-stat {
  display: flex;
  align-items: baseline;
  gap: 0.4rem;
  margin: 0;
}
.mv-values-stat dt {
  margin: 0;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.05rem;
  line-height: 1;
  color: var(--accent);
}
.mv-values-stat dd {
  margin: 0;
  font-family: var(--font-mono);
  font-size: 0.66rem;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--muted);
}
@media (max-width: 600px) {
  .mv-values-stat { margin-top: 0.35rem; }
}

/* Keep the longer FAQ introduction readable without breaking the grid. */
.faq-section .mv-section-head {
  display: block;
}
.faq-section .mv-section-head > .ops-label {
  margin: 0 0 0.85rem;
}
.faq-section .mv-section-head-copy {
  display: block;
}
.faq-section .mv-section-head h2 {
  max-width: 22ch;
  font-size: clamp(2rem, 3.4vw, 3.4rem);
  line-height: 1.04;
}

/* Legal pages use the homepage's editorial cream field while retaining the
   global dark navigation and footer as framing elements. */
.legal-page main {
  --ink: var(--cream-ink);
  --body: var(--cream-body);
  --muted: var(--cream-muted);
  --line: var(--cream-line);
  --line-strong: var(--cream-line-strong);
  --panel: rgba(38, 51, 46, 0.045);
  --accent: #306a61;
  color: var(--cream-ink);
  background: var(--cream);
}
.legal-page .page-hero {
  position: relative;
  min-height: 0;
  padding-block: calc(var(--header-h) + 2rem) 2rem;
  background:
    radial-gradient(circle at 88% 58%, rgba(99, 116, 92, 0.14), transparent 27rem),
    var(--cream);
  border-bottom: 1px solid var(--cream-line-strong);
}
/* Soften the seam where the dark header meets the cream hero. */
.legal-page .page-hero::before {
  content: "";
  position: absolute;
  inset: 0 0 auto 0;
  height: 140px;
  background: linear-gradient(
    to bottom,
    rgba(8, 13, 18, 0.14) 0%,
    rgba(8, 13, 18, 0.05) 35%,
    transparent 100%
  );
  pointer-events: none;
  z-index: 0;
}
.legal-page .page-hero > .shell {
  position: relative;
  z-index: 1;
}
.legal-page .page-hero .eyebrow {
  color: #596a52;
  border-color: #596a52;
  box-shadow: none;
  font-family: var(--font-mono);
}
/* Swiss-style lede: no box — distinguished by type scale and whitespace. */
.legal-page .legal-intro {
  background: none;
  border-left: none;
  border-radius: 0;
  padding: 0;
  margin: 0 0 3.25rem;
  max-width: 60ch;
  font-size: clamp(1.15rem, 1.9vw, 1.4rem);
  line-height: 1.55;
  color: var(--cream-ink);
}
.legal-toc {
  margin: 0 0 4rem;
  padding: 1.25rem 0 1.5rem;
  border-top: 1px solid var(--cream-line-strong);
  border-bottom: 1px solid var(--cream-line-strong);
}
.legal-toc-title {
  margin: 0 0 1rem;
  color: var(--cream-muted);
  font-family: var(--font-mono);
  font-size: 0.66rem;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}
.legal-toc ol {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.55rem 2rem;
  margin: 0;
  padding: 0;
  list-style: none;
}
.legal-toc a {
  display: block;
  color: var(--cream-body);
  font-size: 0.78rem;
  line-height: 1.45;
  text-decoration: none;
  transition: color 160ms ease, transform 160ms ease;
}
.legal-toc a:hover {
  color: var(--cream-ink);
  transform: translateX(2px);
}
.legal-doc .legal-h2[id] {
  scroll-margin-top: calc(var(--header-h) + 1.5rem);
}
.legal-page .legal-h2 {
  margin-top: 3rem;
  font-size: clamp(1.1rem, 1.8vw, 1.25rem);
  line-height: 1.3;
}
.legal-page .legal-h3 {
  font-size: 0.98rem;
}
.legal-toc + .legal-h2 {
  margin-top: 0;
}
@media (max-width: 600px) {
  .legal-toc {
    margin-bottom: 3rem;
  }
  .legal-toc ol {
    grid-template-columns: 1fr;
    gap: 0.65rem;
  }
}
.legal-page .legal-ul li::before {
  background: #63745c;
}

/* ---- Hero tightening: one accent (copper), one claim, one dominant CTA ---- */
/* "Zero by design" framing turns the three 0s into a stated claim */
.hero-stat-lead {
  margin: 1.35rem 0 0;
  font-family: var(--font-mono);
  font-size: 0.64rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: #c9773a;
}
.hero-spec--intro .hero-stat-strip {
  margin-top: 0.85rem;
  padding-top: 0;
  padding-left: 1.1rem;
  border-top: 0;
  border-left: 2px solid rgba(201, 119, 58, 0.5);
}
.hero-spec--intro .hero-stat-label { color: #8593a0; }

/* Positioning line reads as a human claim, not telemetry */
.hero-launch-copy .hero-principle {
  gap: 0;
  color: #dbe2e8;
  font-family: var(--font-display);
  font-size: clamp(1.02rem, 1.5vw, 1.18rem);
  font-weight: 400;
  line-height: 1.5;
  letter-spacing: 0;
  text-transform: none;
  white-space: normal;
}
.hero-launch-copy .hero-principle strong { color: #fff; font-weight: 600; }
.hero-launch-copy .hero-principle::before { content: none; }

/* Primary CTA becomes the most vivid element in the column */
.hero-launch-copy .hero-actions .button-primary {
  background: #c9773a;
  border-color: #c9773a;
  color: #140a03;
}
.hero-launch-copy .hero-actions .button-primary:hover {
  background: #e0904e;
  border-color: #e0904e;
}
.hero-launch-copy .hero-actions .button-primary:active {
  background: #b9692f;
}
