:root {
  color-scheme: light;
  --infrastructure-navy: #062f3a;
  --grid-charcoal: #111b24;
  --deep-blue: #071219;
  --off-white: #f5f7f8;
  --steel-line: #d7e2e8;
  --muted-teal: #0f9aa3;
  --electric-blue: #1f6feb;
  --controlled-amber: #d79a2b;
  --restrained-green: #4f8f6b;
  --muted-text: #687782;
  --navy: var(--infrastructure-navy);
  --navy-deep: var(--deep-blue);
  --ink: #13202a;
  --muted: var(--muted-text);
  --line: rgba(215, 226, 232, 0.82);
  --paper: var(--off-white);
  --panel: #ffffff;
  --panel-warm: #fbfcfc;
  --panel-dark: #0c202a;
  --teal: var(--muted-teal);
  --teal-dark: #0a747b;
  --blue: var(--electric-blue);
  --amber: var(--controlled-amber);
  --steel: var(--muted-text);
  --mint: #e4f7f4;
  --focus: var(--controlled-amber);
  --shadow: 0 22px 64px rgba(8, 22, 30, 0.14);
  --shadow-dark: 0 26px 80px rgba(0, 0, 0, 0.32);
  --radius: 6px;
  --shell: 1180px;
  --section-y: clamp(64px, 7.5vw, 96px);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background:
    radial-gradient(circle at 88% -10%, rgba(15, 154, 163, 0.13), transparent 32rem),
    linear-gradient(180deg, #f7f9fa 0%, var(--paper) 44%, #eef3f5 100%);
  font-family: Aptos, "Segoe UI", "Helvetica Neue", Arial, sans-serif;
  line-height: 1.55;
  overflow-x: hidden;
  text-rendering: optimizeLegibility;
}

h1,
h2,
h3,
.button,
.nav-links,
.eyebrow,
.section-kicker,
.panel-label {
  font-family: Bahnschrift, "Aptos Display", "Segoe UI", Arial, sans-serif;
}

h1,
h2,
h3,
p {
  overflow-wrap: break-word;
}

img {
  display: block;
  max-width: 100%;
}

a {
  color: inherit;
  text-decoration-thickness: 0.08em;
  text-underline-offset: 0.18em;
}

a:focus-visible,
button:focus-visible {
  outline: 3px solid var(--focus);
  outline-offset: 4px;
}

.button:focus-visible,
.nav-links a:focus-visible,
.contact-routes a:focus-visible,
.contact-button:focus-visible {
  box-shadow:
    0 0 0 3px rgba(7, 18, 25, 0.8),
    0 0 0 6px rgba(215, 154, 43, 0.95);
}

.skip-link {
  position: fixed;
  top: 10px;
  left: 10px;
  z-index: 100;
  padding: 10px 14px;
  color: #ffffff;
  background: var(--navy-deep);
  border: 1px solid rgba(215, 226, 232, 0.32);
  border-radius: var(--radius);
  transform: translateY(-160%);
}

.skip-link:focus {
  transform: translateY(0);
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 30;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  min-height: 68px;
  padding: 10px clamp(20px, 4vw, 64px);
  background:
    linear-gradient(90deg, rgba(7, 18, 25, 0.97), rgba(6, 47, 58, 0.95));
  border-bottom: 1px solid rgba(215, 226, 232, 0.16);
  box-shadow: 0 12px 40px rgba(7, 18, 25, 0.18);
  backdrop-filter: blur(14px);
}

.brand {
  display: inline-flex;
  align-items: center;
  min-width: 176px;
  padding: 7px 10px;
  text-decoration: none;
  background: rgba(245, 247, 248, 0.96);
  border: 1px solid rgba(215, 226, 232, 0.26);
  border-radius: var(--radius);
}

.brand img {
  width: 176px;
  height: auto;
  background: transparent;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: clamp(14px, 2vw, 28px);
  color: rgba(245, 247, 248, 0.78);
  font-size: 0.93rem;
  font-weight: 750;
}

.nav-links a {
  min-height: 40px;
  display: inline-flex;
  align-items: center;
  text-decoration: none;
}

.nav-links a:hover,
.nav-links a:focus-visible {
  color: #61f0e6;
}

.nav-links .nav-cta {
  padding: 10px 15px;
  color: #071219;
  background: var(--controlled-amber);
  border: 1px solid rgba(215, 226, 232, 0.18);
  border-radius: var(--radius);
}

.hero {
  position: relative;
  color: #f5f7f8;
  background:
    radial-gradient(circle at 78% 18%, rgba(31, 111, 235, 0.2), transparent 28rem),
    radial-gradient(circle at 20% 12%, rgba(15, 154, 163, 0.18), transparent 30rem),
    linear-gradient(135deg, #071219 0%, #092b34 47%, #0b1a24 100%);
  border-bottom: 1px solid rgba(215, 226, 232, 0.16);
}

.hero::before {
  position: absolute;
  inset: 0;
  pointer-events: none;
  background-image:
    linear-gradient(rgba(215, 226, 232, 0.06) 1px, transparent 1px),
    linear-gradient(90deg, rgba(215, 226, 232, 0.06) 1px, transparent 1px);
  background-size: 48px 48px;
  mask-image: linear-gradient(180deg, rgba(0, 0, 0, 0.82), transparent 92%);
  content: "";
}

.hero-inner {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(340px, 0.95fr);
  gap: clamp(34px, 6vw, 72px);
  align-items: center;
  width: min(var(--shell), calc(100% - 40px));
  min-height: 650px;
  margin: 0 auto;
  padding: clamp(62px, 7vw, 92px) 0;
}

.hero-copy {
  max-width: 740px;
}

.eyebrow,
.section-kicker,
.panel-label {
  margin: 0;
  color: var(--teal);
  font-size: 0.77rem;
  font-weight: 850;
  letter-spacing: 0.11em;
  text-transform: uppercase;
}

.hero .eyebrow {
  color: #61f0e6;
}

.hero .panel-label {
  color: #61f0e6;
}

.hero h1 {
  max-width: 780px;
  margin: 16px 0 18px;
  color: #ffffff;
  font-size: clamp(2.9rem, 5.2vw, 5rem);
  letter-spacing: -0.052em;
  line-height: 0.98;
  text-wrap: balance;
}

.hero-subhead {
  max-width: 720px;
  margin: 0;
  color: rgba(245, 247, 248, 0.76);
  font-size: clamp(1.05rem, 1.8vw, 1.34rem);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 32px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 50px;
  padding: 13px 18px;
  border: 1px solid transparent;
  border-radius: var(--radius);
  box-shadow: 0 10px 26px rgba(7, 18, 25, 0.12);
  font-weight: 800;
  letter-spacing: 0.01em;
  text-decoration: none;
  transition: transform 160ms ease, background 160ms ease, color 160ms ease;
}

.button:hover,
.button:focus-visible {
  transform: translateY(-2px);
}

.button.primary {
  color: #071219;
  background:
    linear-gradient(135deg, #61f0e6 0%, var(--muted-teal) 100%);
  border-color: rgba(245, 247, 248, 0.24);
}

.button.secondary {
  color: #f5f7f8;
  border-color: rgba(215, 226, 232, 0.34);
  background: rgba(245, 247, 248, 0.07);
  box-shadow: none;
}

.thesis-panel {
  padding: clamp(24px, 4vw, 38px);
  color: #f5f7f8;
  background: linear-gradient(180deg, rgba(12, 32, 42, 0.98), rgba(7, 18, 25, 0.96));
  border: 1px solid rgba(215, 226, 232, 0.18);
  border-top: 7px solid var(--teal);
  box-shadow: var(--shadow);
}

.thesis-panel h2 {
  margin: 13px 0 14px;
  color: #ffffff;
  font-size: clamp(2rem, 3.6vw, 3.7rem);
  line-height: 1;
}

.thesis-panel p {
  margin: 0;
  color: rgba(245, 247, 248, 0.74);
  font-size: 1.02rem;
}

.infrastructure-map {
  position: relative;
  overflow: hidden;
  padding: clamp(22px, 4vw, 34px);
  color: #f5f7f8;
  background:
    linear-gradient(rgba(215, 226, 232, 0.045) 1px, transparent 1px),
    linear-gradient(90deg, rgba(215, 226, 232, 0.045) 1px, transparent 1px),
    linear-gradient(180deg, rgba(12, 32, 42, 0.98), rgba(7, 18, 25, 0.96));
  background-size: 32px 32px, 32px 32px, auto;
  border: 1px solid rgba(215, 226, 232, 0.18);
  border-top: 7px solid var(--teal);
  box-shadow: var(--shadow-dark);
}

.infrastructure-map > * {
  position: relative;
}

.hero-system-visual {
  min-height: 520px;
}

.hero-system-visual::before,
.hero-system-visual::after {
  position: absolute;
  pointer-events: none;
  content: "";
}

.hero-system-visual::before {
  inset: 10% -18% auto 42%;
  width: 420px;
  height: 420px;
  background: radial-gradient(circle, rgba(31, 111, 235, 0.28), transparent 62%);
  filter: blur(4px);
}

.hero-system-visual::after {
  inset: auto 10% 9% -8%;
  width: 260px;
  height: 160px;
  background: radial-gradient(circle, rgba(15, 154, 163, 0.22), transparent 66%);
}

.map-header {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  align-items: flex-start;
}

.visual-header {
  margin-bottom: 22px;
}

.map-header h2 {
  margin: 12px 0 0;
  color: #ffffff;
  font-size: clamp(1.7rem, 3vw, 3rem);
  line-height: 1;
  text-wrap: balance;
}

.map-header > span {
  flex: 0 0 auto;
  padding: 8px 10px;
  color: #071219;
  background: var(--controlled-amber);
  border: 1px solid rgba(215, 226, 232, 0.22);
  border-radius: var(--radius);
  font-size: 0.78rem;
  font-weight: 850;
}

.map-load {
  display: grid;
  gap: 6px;
  margin: 26px 0 18px;
  padding: 16px;
  background:
    linear-gradient(90deg, rgba(7, 52, 61, 0.96), rgba(10, 84, 94, 0.92));
  border: 1px solid rgba(7, 52, 61, 0.18);
  color: #ffffff;
}

.map-load span {
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.82rem;
  font-weight: 800;
}

.map-load strong {
  font-size: clamp(1.15rem, 2vw, 1.52rem);
  line-height: 1.15;
}

.power-corridor {
  position: relative;
  display: grid;
  grid-template-columns: 0.82fr 1.06fr 0.9fr 1fr;
  gap: clamp(10px, 1.5vw, 16px);
  align-items: center;
  min-height: 292px;
  padding: 18px 0 8px;
}

.corridor-line {
  position: absolute;
  inset: 6% -2% 0 -2%;
  z-index: 0;
  width: 104%;
  height: 78%;
  overflow: visible;
}

.corridor-line path {
  fill: none;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.line-shadow {
  stroke: rgba(3, 8, 12, 0.62);
  stroke-width: 16;
}

.line-core {
  stroke: rgba(31, 111, 235, 0.62);
  stroke-width: 5;
}

.line-pulse {
  stroke: #61f0e6;
  stroke-width: 3;
  stroke-dasharray: 28 210;
  animation: energy-flow 5.8s linear infinite;
  filter: drop-shadow(0 0 12px rgba(97, 240, 230, 0.48));
}

@keyframes energy-flow {
  to {
    stroke-dashoffset: -238;
  }
}

.stage-node {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  min-height: 192px;
  padding: 16px;
  background:
    linear-gradient(rgba(215, 226, 232, 0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(215, 226, 232, 0.035) 1px, transparent 1px),
    linear-gradient(180deg, rgba(245, 247, 248, 0.11), rgba(245, 247, 248, 0.055));
  background-size: 22px 22px, 22px 22px, auto;
  border: 1px solid rgba(215, 226, 232, 0.22);
  box-shadow: 0 18px 42px rgba(0, 0, 0, 0.22);
}

.conversion-node {
  min-height: 238px;
  border-color: rgba(97, 240, 230, 0.42);
  box-shadow:
    0 18px 48px rgba(0, 0, 0, 0.28),
    0 0 0 1px rgba(97, 240, 230, 0.08),
    inset 0 0 34px rgba(15, 154, 163, 0.09);
}

.node-index {
  display: block;
  margin-bottom: 10px;
  color: #8fb8ff;
  font-size: 0.76rem;
  font-weight: 850;
}

.stage-node strong {
  display: block;
  color: #ffffff;
  font-size: clamp(0.98rem, 1.4vw, 1.16rem);
  line-height: 1.1;
}

.stage-node small {
  display: block;
  margin-top: 8px;
  color: rgba(245, 247, 248, 0.66);
  font-size: 0.82rem;
  line-height: 1.35;
}

.feedstock-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
  align-items: flex-end;
  min-height: 58px;
  padding-top: 12px;
}

.feedstock-chips i {
  display: block;
  width: 22px;
  height: 18px;
  background: linear-gradient(135deg, rgba(79, 143, 107, 0.92), rgba(15, 154, 163, 0.84));
  border: 1px solid rgba(215, 226, 232, 0.26);
  transform: skew(-8deg);
}

.feedstock-chips i:nth-child(2),
.feedstock-chips i:nth-child(5) {
  width: 15px;
  height: 15px;
  background: rgba(215, 226, 232, 0.46);
}

.feedstock-chips i:nth-child(3) {
  width: 28px;
  height: 12px;
  background: rgba(215, 154, 43, 0.8);
}

.module-shell {
  position: relative;
  display: grid;
  grid-template-columns: 1fr 1.2fr 0.8fr;
  gap: 4px;
  min-height: 88px;
  margin-top: 18px;
  padding: 10px;
  background:
    linear-gradient(135deg, rgba(97, 240, 230, 0.15), transparent 55%),
    rgba(7, 18, 25, 0.54);
  border: 1px solid rgba(97, 240, 230, 0.28);
}

.module-shell > span {
  background:
    linear-gradient(rgba(215, 226, 232, 0.08) 1px, transparent 1px),
    linear-gradient(180deg, rgba(215, 226, 232, 0.16), rgba(245, 247, 248, 0.06));
  background-size: 100% 18px, auto;
  border: 1px solid rgba(215, 226, 232, 0.16);
}

.status-lights {
  position: absolute;
  right: 12px;
  bottom: 10px;
  display: flex;
  gap: 5px;
}

.status-lights i {
  width: 7px;
  height: 7px;
  background: var(--controlled-amber);
  border-radius: 999px;
  box-shadow: 0 0 12px rgba(215, 154, 43, 0.75);
}

.status-lights i:nth-child(2) {
  background: #61f0e6;
  box-shadow: 0 0 12px rgba(97, 240, 230, 0.7);
}

.switchgear {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 6px;
  min-height: 70px;
  margin-top: 18px;
}

.switchgear span {
  position: relative;
  background: linear-gradient(180deg, rgba(215, 226, 232, 0.16), rgba(215, 226, 232, 0.05));
  border: 1px solid rgba(215, 226, 232, 0.2);
}

.switchgear span::before {
  position: absolute;
  right: 9px;
  left: 9px;
  top: 14px;
  height: 2px;
  background: rgba(97, 240, 230, 0.6);
  box-shadow: 0 18px 0 rgba(97, 240, 230, 0.28);
  content: "";
}

.load-cluster {
  display: grid;
  grid-template-columns: 1.4fr 0.8fr;
  gap: 10px;
  align-items: stretch;
  min-height: 76px;
  margin-top: 18px;
}

.data-center-block {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 4px;
  padding: 8px;
  background: rgba(7, 18, 25, 0.5);
  border: 1px solid rgba(31, 111, 235, 0.28);
}

.data-center-block span {
  background:
    linear-gradient(180deg, rgba(31, 111, 235, 0.22), rgba(215, 226, 232, 0.06));
  border: 1px solid rgba(215, 226, 232, 0.14);
}

.grid-node {
  position: relative;
  min-height: 76px;
  border: 1px solid rgba(97, 240, 230, 0.22);
}

.grid-node i {
  position: absolute;
  width: 8px;
  height: 8px;
  background: #61f0e6;
  border-radius: 999px;
  box-shadow: 0 0 14px rgba(97, 240, 230, 0.62);
}

.grid-node i:nth-child(1) {
  left: 18%;
  top: 22%;
}

.grid-node i:nth-child(2) {
  right: 20%;
  top: 40%;
}

.grid-node i:nth-child(3) {
  left: 42%;
  bottom: 18%;
}

.visual-legend {
  margin-top: 20px;
}

.visual-proof {
  margin-top: 12px;
}

.process-map {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
  position: relative;
}

.process-map::before {
  position: absolute;
  right: 8%;
  left: 8%;
  top: 50%;
  height: 3px;
  background: linear-gradient(90deg, var(--teal), var(--electric-blue));
  opacity: 0.42;
  content: "";
}

.process-node {
  position: relative;
  display: grid;
  min-height: 118px;
  align-content: center;
  gap: 4px;
  padding: 16px;
  background: rgba(245, 247, 248, 0.08);
  border: 1px solid rgba(215, 226, 232, 0.18);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.18);
}

.process-node span {
  color: #8fb8ff;
  font-size: 0.76rem;
  font-weight: 850;
}

.process-node strong {
  color: #ffffff;
  font-size: 1rem;
}

.process-node small {
  color: rgba(245, 247, 248, 0.66);
  font-size: 0.82rem;
}

.evidence-strip {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1px;
  margin-top: 18px;
  background: rgba(215, 226, 232, 0.14);
  border: 1px solid rgba(215, 226, 232, 0.14);
}

.evidence-strip span {
  padding: 11px 9px;
  color: rgba(245, 247, 248, 0.82);
  background: rgba(245, 247, 248, 0.07);
  font-size: 0.8rem;
  font-weight: 830;
  text-align: center;
}

.hero-proof-bar {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1px;
  margin: 12px 0 0;
  background: rgba(215, 226, 232, 0.14);
  border: 1px solid rgba(215, 226, 232, 0.14);
}

.hero-proof-bar div {
  padding: 12px 14px;
  background: rgba(245, 247, 248, 0.07);
}

.hero-proof-bar dt {
  color: #61f0e6;
  font-size: 0.72rem;
  font-weight: 850;
  text-transform: uppercase;
}

.hero-proof-bar dd {
  margin: 5px 0 0;
  color: #ffffff;
  font-size: 0.88rem;
  font-weight: 760;
}

.proof-grid {
  display: grid;
  gap: 1px;
  margin: 30px 0 0;
  background: var(--line);
  border: 1px solid var(--line);
}

.proof-grid div {
  padding: 16px 18px;
  background: #f9fbfc;
}

.proof-grid dt {
  color: var(--teal-dark);
  font-size: 0.72rem;
  font-weight: 850;
  letter-spacing: 0;
  text-transform: uppercase;
}

.proof-grid dd {
  margin: 6px 0 0;
  color: var(--ink);
  font-weight: 760;
}

.section {
  position: relative;
  padding: var(--section-y) 20px;
}

.section-shell {
  width: min(var(--shell), 100%);
  max-width: var(--shell);
  margin: 0 auto;
}

.section-heading {
  max-width: 880px;
  margin-bottom: clamp(26px, 4vw, 46px);
}

.section-heading h2,
.pilot-copy h2,
.contact-section h2 {
  margin: 10px 0 0;
  color: var(--ink);
  font-size: clamp(2.1rem, 4.2vw, 4.15rem);
  letter-spacing: -0.04em;
  line-height: 1;
}

.section-heading p:not(.section-kicker),
.pilot-copy > p,
.contact-section p {
  margin: 18px 0 0;
  color: var(--muted);
  font-size: clamp(1rem, 1.5vw, 1.14rem);
}

.why-section,
.team-section {
  background:
    linear-gradient(rgba(17, 27, 36, 0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(17, 27, 36, 0.035) 1px, transparent 1px),
    linear-gradient(180deg, #fbfcfc 0%, var(--paper) 100%);
  background-size: 44px 44px, 44px 44px, auto;
}

.card-grid {
  display: grid;
  gap: 16px;
}

.card-grid.three {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.card-grid.two {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.card-grid.five {
  grid-template-columns: repeat(5, minmax(0, 1fr));
}

.info-card {
  min-height: 180px;
  padding: 22px;
  background:
    linear-gradient(180deg, #ffffff, var(--panel-warm));
  border: 1px solid var(--line);
  border-top: 4px solid rgba(15, 154, 163, 0.72);
  box-shadow: 0 10px 30px rgba(8, 22, 30, 0.06);
}

.info-card > span {
  display: inline-block;
  margin-bottom: 24px;
  color: var(--blue);
  font-size: 0.76rem;
  font-weight: 850;
}

.info-card h3 {
  margin: 0 0 10px;
  color: var(--ink);
  font-size: 1.18rem;
  line-height: 1.2;
}

.info-card p {
  margin: 0;
  color: var(--muted);
}

.decision-stack {
  display: grid;
  grid-template-columns: 1.1fr 0.95fr 1fr;
  gap: 0;
  border: 1px solid var(--line);
  background: var(--line);
  box-shadow: 0 18px 48px rgba(8, 22, 30, 0.08);
}

.decision-stack article {
  min-height: 230px;
  padding: 24px;
  background: rgba(255, 255, 255, 0.92);
  border-right: 1px solid var(--line);
}

.decision-stack article:last-child {
  border-right: 0;
}

.decision-stack span {
  display: inline-flex;
  margin-bottom: 34px;
  padding: 7px 9px;
  color: var(--navy);
  background: rgba(15, 154, 163, 0.12);
  border: 1px solid rgba(15, 154, 163, 0.24);
  border-radius: var(--radius);
  font-size: 0.76rem;
  font-weight: 850;
}

.decision-stack h3 {
  margin: 0 0 10px;
  color: var(--ink);
  font-size: clamp(1.2rem, 2vw, 1.55rem);
  line-height: 1.15;
}

.decision-stack p {
  margin: 0;
  color: var(--muted);
}

.pressure-stack {
  position: relative;
  overflow: hidden;
  background:
    linear-gradient(90deg, rgba(17, 27, 36, 0.18), rgba(15, 154, 163, 0.22), rgba(17, 27, 36, 0.18));
}

.pressure-stack::before {
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    linear-gradient(rgba(17, 27, 36, 0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(17, 27, 36, 0.04) 1px, transparent 1px);
  background-size: 28px 28px;
  content: "";
}

.pressure-stack article {
  position: relative;
  border-top: 5px solid rgba(15, 154, 163, 0.78);
}

.pressure-stack article:nth-child(2) {
  border-top-color: rgba(31, 111, 235, 0.78);
}

.pressure-stack article:nth-child(3) {
  border-top-color: rgba(215, 154, 43, 0.82);
}

.pressure-stack span {
  margin-bottom: 30px;
  color: #071219;
  background: rgba(215, 226, 232, 0.82);
  border-color: rgba(17, 27, 36, 0.12);
}

.pressure-stack h3 {
  max-width: 360px;
}

.pressure-stack p {
  max-width: 410px;
}

.why-bridge {
  display: grid;
  grid-template-columns: minmax(160px, 0.28fr) minmax(0, 1fr);
  gap: 22px;
  align-items: center;
  margin-top: 18px;
  padding: 20px 22px;
  color: #ffffff;
  background:
    linear-gradient(rgba(215, 226, 232, 0.045) 1px, transparent 1px),
    linear-gradient(90deg, rgba(215, 226, 232, 0.045) 1px, transparent 1px),
    linear-gradient(135deg, var(--infrastructure-navy), var(--deep-blue));
  background-size: 28px 28px, 28px 28px, auto;
  border: 1px solid rgba(215, 226, 232, 0.18);
  box-shadow: 0 18px 44px rgba(8, 22, 30, 0.12);
}

.why-bridge span {
  color: #61f0e6;
  font-size: 0.76rem;
  font-weight: 850;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.why-bridge p {
  margin: 0;
  color: rgba(245, 247, 248, 0.78);
  font-size: clamp(1rem, 1.35vw, 1.12rem);
}

.system-section {
  color: #ffffff;
  background:
    radial-gradient(circle at 16% 10%, rgba(15, 154, 163, 0.16), transparent 24rem),
    radial-gradient(circle at 84% 20%, rgba(31, 111, 235, 0.15), transparent 28rem),
    linear-gradient(rgba(215, 226, 232, 0.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(215, 226, 232, 0.05) 1px, transparent 1px),
    linear-gradient(180deg, var(--infrastructure-navy), var(--deep-blue));
  background-size: auto, auto, 44px 44px, 44px 44px, auto;
}

.system-section .section-heading h2 {
  color: #ffffff;
}

.system-section .section-heading p:not(.section-kicker) {
  color: rgba(255, 255, 255, 0.76);
}

.system-section .section-kicker {
  color: #61f0e6;
}

.system-model-flow {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 1px;
  position: relative;
  margin: 0 0 30px;
  padding: 1px;
  background: rgba(215, 226, 232, 0.18);
  border: 1px solid rgba(215, 226, 232, 0.18);
  box-shadow: var(--shadow-dark);
}

.system-model-flow::before {
  position: absolute;
  right: 7%;
  left: 7%;
  top: 112px;
  z-index: 0;
  height: 3px;
  background: linear-gradient(90deg, rgba(97, 240, 230, 0.1), rgba(97, 240, 230, 0.8), rgba(31, 111, 235, 0.72));
  box-shadow: 0 0 22px rgba(31, 111, 235, 0.28);
  content: "";
}

.flow-stage {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  min-height: 350px;
  padding: 20px;
  background:
    linear-gradient(rgba(215, 226, 232, 0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(215, 226, 232, 0.04) 1px, transparent 1px),
    linear-gradient(180deg, rgba(12, 32, 42, 0.96), rgba(7, 18, 25, 0.94));
  background-size: 24px 24px, 24px 24px, auto;
  border-top: 5px solid var(--teal);
}

.flow-stage:nth-child(2) {
  border-top-color: var(--controlled-amber);
}

.flow-stage:nth-child(3) {
  border-top-color: #61f0e6;
}

.flow-stage:nth-child(4) {
  border-top-color: var(--electric-blue);
}

.flow-stage:nth-child(5) {
  border-top-color: var(--restrained-green);
}

.flow-number {
  color: rgba(245, 247, 248, 0.46);
  font-size: 0.76rem;
  font-weight: 850;
  letter-spacing: 0.08em;
}

.flow-icon {
  position: relative;
  display: grid;
  place-items: center;
  width: 74px;
  height: 74px;
  margin: 22px 0 24px;
  background: rgba(245, 247, 248, 0.07);
  border: 1px solid rgba(215, 226, 232, 0.18);
  box-shadow: inset 0 0 28px rgba(15, 154, 163, 0.08);
}

.flow-icon::after {
  position: absolute;
  right: -32px;
  top: 50%;
  width: 44px;
  height: 2px;
  background: rgba(97, 240, 230, 0.5);
  content: "";
}

.flow-stage:last-child .flow-icon::after {
  display: none;
}

.flow-icon i {
  display: block;
}

.feedstock-icon {
  display: flex;
  flex-wrap: wrap;
  gap: 5px;
  align-content: center;
  justify-content: center;
}

.feedstock-icon i {
  width: 17px;
  height: 13px;
  background: linear-gradient(135deg, rgba(79, 143, 107, 0.9), rgba(15, 154, 163, 0.86));
  border: 1px solid rgba(215, 226, 232, 0.2);
  transform: skew(-9deg);
}

.feedstock-icon i:nth-child(2),
.feedstock-icon i:nth-child(4) {
  background: rgba(215, 226, 232, 0.42);
}

.conversion-icon {
  grid-template-columns: repeat(3, 1fr);
  gap: 4px;
  padding: 12px;
}

.conversion-icon i {
  width: 100%;
  height: 36px;
  background: linear-gradient(180deg, rgba(215, 154, 43, 0.42), rgba(245, 247, 248, 0.08));
  border: 1px solid rgba(215, 154, 43, 0.34);
}

.conversion-icon i:nth-child(2) {
  height: 48px;
  background: linear-gradient(180deg, rgba(97, 240, 230, 0.34), rgba(245, 247, 248, 0.08));
  border-color: rgba(97, 240, 230, 0.34);
}

.interface-icon {
  grid-template-columns: repeat(3, 1fr);
  gap: 5px;
  padding: 10px;
}

.interface-icon i {
  position: relative;
  width: 100%;
  height: 52px;
  background: rgba(215, 226, 232, 0.08);
  border: 1px solid rgba(215, 226, 232, 0.24);
}

.interface-icon i::before {
  position: absolute;
  right: 5px;
  left: 5px;
  top: 16px;
  height: 2px;
  background: #61f0e6;
  box-shadow: 0 15px 0 rgba(97, 240, 230, 0.36);
  content: "";
}

.output-icon {
  overflow: hidden;
}

.output-icon i {
  position: absolute;
  background: rgba(31, 111, 235, 0.78);
  box-shadow: 0 0 18px rgba(31, 111, 235, 0.42);
}

.output-icon i:nth-child(1) {
  left: 14px;
  top: 38px;
  width: 48px;
  height: 3px;
}

.output-icon i:nth-child(2) {
  left: 28px;
  top: 18px;
  width: 3px;
  height: 40px;
  transform: rotate(32deg);
}

.output-icon i:nth-child(3) {
  right: 14px;
  top: 20px;
  width: 10px;
  height: 34px;
  background: var(--controlled-amber);
  transform: skew(-14deg);
}

.load-icon {
  grid-template-columns: 1fr 1fr;
  gap: 5px;
  padding: 11px;
}

.load-icon i {
  width: 100%;
  height: 20px;
  background: linear-gradient(180deg, rgba(31, 111, 235, 0.28), rgba(215, 226, 232, 0.08));
  border: 1px solid rgba(215, 226, 232, 0.18);
}

.load-icon i:nth-child(4) {
  background: radial-gradient(circle, rgba(97, 240, 230, 0.82) 0 4px, transparent 5px),
    linear-gradient(180deg, rgba(245, 247, 248, 0.08), rgba(245, 247, 248, 0.03));
}

.flow-stage h3 {
  margin: 0 0 10px;
  color: #ffffff;
  font-size: 1.1rem;
  line-height: 1.16;
}

.flow-stage p {
  margin: 0;
  color: rgba(245, 247, 248, 0.7);
  font-size: 0.92rem;
  line-height: 1.5;
}

.system-flow {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1px;
  margin: 0;
  padding: 1px;
  list-style: none;
  background: rgba(215, 226, 232, 0.18);
}

.system-flow li {
  min-height: 230px;
  padding: 22px;
  background: rgba(12, 32, 42, 0.92);
  border-top: 5px solid var(--teal);
}

.system-flow li:nth-child(2) {
  border-top-color: var(--amber);
}

.system-flow li:nth-child(3) {
  border-top-color: #49ddd7;
}

.system-flow li:nth-child(4) {
  border-top-color: var(--blue);
}

.step-number {
  display: block;
  margin-bottom: 32px;
  color: rgba(255, 255, 255, 0.48);
  font-size: 0.76rem;
  font-weight: 850;
}

.system-flow h3 {
  margin: 0 0 10px;
  color: #ffffff;
  font-size: 1.25rem;
}

.system-flow p {
  margin: 0;
  color: rgba(255, 255, 255, 0.72);
}

.proof-lanes {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 1px;
  padding: 1px;
  background: rgba(215, 226, 232, 0.18);
}

.proof-lane {
  display: flex;
  flex-direction: column;
  min-height: 292px;
  padding: 20px;
  background: rgba(12, 32, 42, 0.92);
  border-top: 5px solid var(--teal);
}

.proof-lane:nth-child(2) {
  border-top-color: var(--amber);
}

.proof-lane:nth-child(3) {
  border-top-color: #49ddd7;
}

.proof-lane:nth-child(4) {
  border-top-color: var(--blue);
}

.proof-lane:nth-child(5) {
  border-top-color: #b8c8d7;
}

.proof-lane > span {
  margin-bottom: 26px;
  color: rgba(255, 255, 255, 0.5);
  font-size: 0.76rem;
  font-weight: 850;
}

.proof-lane h3 {
  margin: 0 0 10px;
  color: #ffffff;
  font-size: 1.16rem;
  line-height: 1.18;
}

.proof-lane p {
  margin: 0;
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.94rem;
}

.proof-lane dl {
  margin: auto 0 0;
  padding-top: 18px;
}

.proof-lane dt {
  color: #61f0e6;
  font-size: 0.72rem;
  font-weight: 850;
  text-transform: uppercase;
}

.proof-lane dd {
  margin: 5px 0 0;
  color: #ffffff;
  font-size: 0.9rem;
  font-weight: 760;
}

.system-diagram {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 28px;
  margin-top: 26px;
  padding: 24px;
  background: rgba(245, 247, 248, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.2);
  box-shadow: var(--shadow-dark);
}

.system-diagram div {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 86px;
  padding: 16px;
  color: #ffffff;
  background: rgba(245, 247, 248, 0.08);
  border: 1px solid rgba(215, 226, 232, 0.18);
  font-size: 0.94rem;
  font-weight: 800;
  text-align: center;
}

.system-diagram div:not(:last-child)::after {
  position: absolute;
  right: -22px;
  color: #61f0e6;
  content: "->";
  font-weight: 900;
}

.operating-diagram {
  margin-top: 22px;
}

.pilot-section {
  background:
    linear-gradient(135deg, rgba(15, 154, 163, 0.08), transparent 34rem),
    linear-gradient(180deg, var(--paper), #eef3f5);
}

.pilot-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(360px, 0.95fr);
  gap: clamp(30px, 5vw, 60px);
  align-items: center;
}

.pilot-figure {
  margin: 0;
  position: relative;
  overflow: hidden;
  background: var(--panel-warm);
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
}

.pilot-figure img {
  width: 100%;
  min-height: 390px;
  object-fit: contain;
}

figcaption {
  padding: 14px 16px 16px;
  color: var(--muted);
  border-top: 1px solid var(--line);
  font-size: 0.88rem;
}

.annotated-figure {
  background: #f8fbfc;
}

.figure-tags {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1px;
  background: var(--line);
  border-top: 1px solid var(--line);
}

.figure-tags span {
  padding: 10px 8px;
  color: var(--navy);
  background: #ffffff;
  font-size: 0.78rem;
  font-weight: 830;
  text-align: center;
}

.pilot-checklist {
  display: grid;
  gap: 10px;
  margin-top: 26px;
}

.pilot-checklist div {
  display: grid;
  grid-template-columns: minmax(150px, 0.7fr) minmax(0, 1fr);
  gap: 16px;
  align-items: center;
  padding: 15px 16px;
  background: rgba(255, 255, 255, 0.9);
  border: 1px solid var(--line);
  border-left: 4px solid rgba(15, 154, 163, 0.65);
}

.pilot-checklist strong {
  color: var(--navy);
  line-height: 1.2;
}

.pilot-checklist span {
  color: var(--muted);
}

.pilot-pathway {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  margin-top: 18px;
  background: var(--line);
  border: 1px solid var(--line);
}

.pilot-pathway span {
  position: relative;
  padding: 14px 14px 14px 18px;
  color: var(--navy);
  background: rgba(255, 255, 255, 0.9);
  font-size: 0.86rem;
  font-weight: 850;
}

.pilot-pathway span::before {
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 4px;
  background: var(--teal);
  content: "";
}

.pilot-pathway span:nth-child(2)::before {
  background: var(--controlled-amber);
}

.pilot-pathway span:nth-child(3)::before {
  background: var(--electric-blue);
}

.compact .info-card {
  min-height: 122px;
}

.partners-section {
  background:
    linear-gradient(rgba(17, 27, 36, 0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(17, 27, 36, 0.03) 1px, transparent 1px),
    #fbfcfc;
  background-size: 48px 48px, 48px 48px, auto;
}

.partner-map {
  display: grid;
  gap: 10px;
}

.partner-map article {
  display: grid;
  grid-template-columns: minmax(160px, 0.46fr) minmax(0, 1fr) minmax(0, 1fr) minmax(160px, 0.52fr);
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
}

.partner-map h3,
.partner-map div,
.partner-map a {
  margin: 0;
  padding: 18px;
  background: rgba(255, 255, 255, 0.94);
}

.partner-map h3 {
  color: var(--navy);
  font-size: 1.05rem;
}

.partner-map strong {
  display: block;
  margin-bottom: 6px;
  color: var(--teal-dark);
  font-size: 0.78rem;
  text-transform: uppercase;
}

.partner-map p {
  margin: 0;
  color: var(--muted);
}

.partner-map a {
  display: flex;
  align-items: center;
  color: var(--navy);
  font-weight: 850;
  text-decoration: none;
  border-left: 4px solid rgba(15, 154, 163, 0.7);
}

.partner-map article:nth-child(2) a {
  border-left-color: var(--restrained-green);
}

.partner-map article:nth-child(3) a {
  border-left-color: var(--electric-blue);
}

.partner-map article:nth-child(4) a {
  border-left-color: var(--controlled-amber);
}

.partner-map a:hover,
.partner-map a:focus-visible {
  color: var(--teal-dark);
  background: #f4fbfb;
}

.investment-section {
  color: #ffffff;
  background:
    radial-gradient(circle at 18% 8%, rgba(15, 154, 163, 0.16), transparent 25rem),
    radial-gradient(circle at 88% 14%, rgba(31, 111, 235, 0.16), transparent 28rem),
    linear-gradient(rgba(215, 226, 232, 0.045) 1px, transparent 1px),
    linear-gradient(90deg, rgba(215, 226, 232, 0.045) 1px, transparent 1px),
    linear-gradient(180deg, var(--deep-blue), var(--infrastructure-navy));
  background-size: auto, auto, 44px 44px, 44px 44px, auto;
}

.investment-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.82fr) minmax(0, 1.18fr);
  gap: clamp(28px, 5vw, 64px);
  align-items: start;
}

.investment-section .section-heading {
  margin-bottom: 0;
}

.investment-section .section-kicker {
  color: #61f0e6;
}

.investment-section .section-heading h2 {
  color: #ffffff;
}

.investment-section .section-heading p:not(.section-kicker) {
  color: rgba(245, 247, 248, 0.76);
}

.investment-thesis {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1px;
  padding: 1px;
  background: rgba(215, 226, 232, 0.18);
  border: 1px solid rgba(215, 226, 232, 0.18);
  box-shadow: var(--shadow-dark);
}

.investment-thesis article {
  min-height: 218px;
  padding: 20px;
  background:
    linear-gradient(rgba(215, 226, 232, 0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(215, 226, 232, 0.04) 1px, transparent 1px),
    linear-gradient(180deg, rgba(12, 32, 42, 0.96), rgba(7, 18, 25, 0.92));
  background-size: 24px 24px, 24px 24px, auto;
  border-top: 5px solid rgba(15, 154, 163, 0.78);
}

.investment-thesis article:nth-child(2) {
  border-top-color: rgba(31, 111, 235, 0.8);
}

.investment-thesis article:nth-child(3) {
  border-top-color: rgba(79, 143, 107, 0.82);
}

.investment-thesis article:nth-child(4) {
  border-top-color: rgba(215, 154, 43, 0.84);
}

.investment-thesis span,
.validation-panel span {
  display: inline-flex;
  margin-bottom: 28px;
  color: #61f0e6;
  font-size: 0.74rem;
  font-weight: 850;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.investment-thesis h3 {
  margin: 0 0 10px;
  color: #ffffff;
  font-size: clamp(1.15rem, 1.6vw, 1.35rem);
  line-height: 1.15;
}

.investment-thesis p {
  margin: 0;
  color: rgba(245, 247, 248, 0.68);
  font-size: 0.95rem;
}

.validation-panel {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  margin-top: 24px;
  padding: 1px;
  background: rgba(215, 226, 232, 0.18);
  border: 1px solid rgba(215, 226, 232, 0.18);
}

.validation-panel div {
  padding: 20px;
  background: rgba(245, 247, 248, 0.08);
}

.validation-panel span {
  margin-bottom: 12px;
  color: var(--controlled-amber);
}

.validation-panel p {
  margin: 0;
  color: rgba(245, 247, 248, 0.72);
}

.team-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}

.team-card {
  min-height: 190px;
  padding: 22px;
  background:
    linear-gradient(180deg, #ffffff, var(--panel-warm));
  border: 1px solid var(--line);
  border-top: 4px solid rgba(15, 154, 163, 0.68);
}

.initials {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  margin-bottom: 22px;
  color: #ffffff;
  background: var(--teal-dark);
  font-weight: 850;
}

.initials.blue {
  background: var(--blue);
}

.initials.slate {
  background: #566f8f;
}

.team-card h3 {
  margin: 0;
  color: var(--ink);
  font-size: 1.25rem;
}

.team-card p {
  margin: 4px 0 16px;
  color: var(--teal-dark);
  font-weight: 800;
}

.team-card span {
  color: var(--muted);
}

.contact-section {
  padding: var(--section-y) 20px;
  color: #ffffff;
  background:
    radial-gradient(circle at 80% 20%, rgba(31, 111, 235, 0.18), transparent 28rem),
    linear-gradient(rgba(215, 226, 232, 0.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(215, 226, 232, 0.05) 1px, transparent 1px),
    linear-gradient(180deg, var(--infrastructure-navy), var(--deep-blue));
  background-size: auto, 44px 44px, 44px 44px, auto;
}

.contact-inner {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 30px;
  align-items: center;
  max-width: var(--shell);
  margin: 0 auto;
}

.contact-section .section-kicker {
  color: #61f0e6;
}

.contact-section h2 {
  color: #ffffff;
}

.contact-section p {
  max-width: 760px;
  color: rgba(255, 255, 255, 0.78);
}

.section-heading h2,
.contact-section h2 {
  text-wrap: balance;
}

.contact-button {
  color: #071219;
  background:
    linear-gradient(135deg, #61f0e6 0%, var(--muted-teal) 100%);
  overflow-wrap: anywhere;
}

.contact-routes {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1px;
  max-width: var(--shell);
  margin: 30px auto 0;
  padding: 1px;
  background: rgba(215, 226, 232, 0.18);
  border: 1px solid rgba(215, 226, 232, 0.18);
  box-shadow: var(--shadow-dark);
}

.contact-routes article {
  display: flex;
  flex-direction: column;
  min-height: 230px;
  padding: 20px;
  background:
    linear-gradient(rgba(215, 226, 232, 0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(215, 226, 232, 0.04) 1px, transparent 1px),
    linear-gradient(180deg, rgba(12, 32, 42, 0.96), rgba(7, 18, 25, 0.9));
  background-size: 24px 24px, 24px 24px, auto;
  border-top: 5px solid var(--teal);
}

.contact-routes article:nth-child(2) {
  border-top-color: var(--controlled-amber);
}

.contact-routes article:nth-child(3) {
  border-top-color: var(--restrained-green);
}

.contact-routes article:nth-child(4) {
  border-top-color: var(--electric-blue);
}

.contact-routes span {
  margin-bottom: 24px;
  color: #61f0e6;
  font-size: 0.74rem;
  font-weight: 850;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.contact-routes h3 {
  margin: 0 0 10px;
  color: #ffffff;
  font-size: 1.12rem;
  line-height: 1.15;
}

.contact-routes p {
  margin: 0;
  color: rgba(245, 247, 248, 0.68);
  font-size: 0.94rem;
}

.contact-routes a {
  display: inline-flex;
  margin-top: auto;
  padding-top: 22px;
  color: #61f0e6;
  font-weight: 850;
  text-decoration: none;
}

.contact-routes a:hover,
.contact-routes a:focus-visible {
  color: var(--controlled-amber);
}

.site-footer {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  padding: 24px clamp(20px, 4vw, 64px);
  color: rgba(245, 247, 248, 0.68);
  background: #071219;
  border-top: 1px solid rgba(215, 226, 232, 0.14);
  font-size: 0.88rem;
}

@media (max-width: 1080px) {
  .card-grid.five {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .system-model-flow {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .system-model-flow::before,
  .flow-icon::after {
    display: none;
  }

  .flow-stage {
    min-height: 280px;
  }

  .proof-lanes {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .contact-routes {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .system-diagram {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .system-diagram div:not(:last-child)::after {
    right: auto;
    bottom: -17px;
    transform: rotate(90deg);
  }
}

@media (max-width: 920px) {
  .hero-inner,
  .pilot-layout,
  .investment-layout,
  .contact-inner {
    grid-template-columns: 1fr;
  }

  .thesis-panel {
    max-width: 720px;
  }

  .infrastructure-map {
    max-width: 760px;
  }

  .power-corridor {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 14px;
  }

  .corridor-line {
    display: none;
  }

  .stage-node,
  .conversion-node {
    min-height: 172px;
  }

  .process-map {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .process-map::before {
    display: none;
  }

  .decision-stack,
  .system-flow,
  .validation-panel,
  .card-grid.three,
  .team-grid {
    grid-template-columns: 1fr;
  }

  .why-bridge {
    grid-template-columns: 1fr;
  }

  .decision-stack article {
    min-height: 180px;
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .decision-stack article:last-child {
    border-bottom: 0;
  }

  .partner-map article {
    grid-template-columns: 1fr;
  }

  .contact-button {
    justify-self: start;
  }
}

@media (max-width: 680px) {
  .site-header {
    position: static;
    align-items: flex-start;
    flex-direction: column;
    gap: 10px;
    padding: 12px 16px 16px;
  }

  .brand img {
    width: 150px;
  }

  .nav-links {
    width: 100%;
    flex-wrap: wrap;
    gap: 10px 14px;
    font-size: 0.84rem;
  }

  .nav-links .nav-cta {
    width: 100%;
    text-align: center;
  }

  .hero-inner {
    width: 100%;
    min-height: auto;
    padding: 58px 16px;
  }

  .hero h1 {
    max-width: 100%;
    font-size: clamp(2.32rem, 10.6vw, 3.65rem);
    letter-spacing: -0.045em;
  }

  .hero-copy,
  .infrastructure-map,
  .map-header,
  .process-map,
  .evidence-strip,
  .hero-proof-bar {
    min-width: 0;
  }

  .hero-copy,
  .infrastructure-map {
    width: 100%;
    max-width: none;
  }

  .hero-subhead {
    max-width: 100%;
    font-size: 1rem;
  }

  .hero-actions {
    display: grid;
    grid-template-columns: 1fr;
    width: 100%;
  }

  .hero-actions,
  .site-footer {
    align-items: stretch;
    flex-direction: column;
  }

  .button {
    max-width: 100%;
    width: 100%;
  }

  .infrastructure-map {
    width: 100%;
    padding: 20px;
  }

  .hero-system-visual {
    min-height: auto;
  }

  .power-corridor {
    grid-template-columns: 1fr;
    min-height: auto;
    padding-top: 14px;
  }

  .stage-node,
  .conversion-node {
    min-height: 150px;
    border-left: 5px solid rgba(97, 240, 230, 0.62);
  }

  .conversion-node {
    border-left-color: var(--controlled-amber);
  }

  .map-header h2 {
    max-width: 100%;
    font-size: clamp(1.45rem, 8vw, 1.9rem);
  }

  .map-header > span {
    justify-self: start;
  }

  .process-map,
  .evidence-strip,
  .hero-proof-bar {
    grid-template-columns: 1fr;
  }

  .section {
    padding: 64px 16px;
  }

  .card-grid.two,
  .card-grid.five,
  .investment-thesis,
  .contact-routes {
    grid-template-columns: 1fr;
  }

  .contact-routes article {
    min-height: auto;
  }

  .map-header,
  .pilot-checklist div {
    grid-template-columns: 1fr;
  }

  .map-header {
    display: grid;
  }

  .evidence-strip,
  .figure-tags {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .proof-lanes {
    grid-template-columns: 1fr;
  }

  .system-model-flow {
    grid-template-columns: 1fr;
  }

  .flow-stage {
    min-height: auto;
    padding: 18px;
    border-left: 5px solid var(--teal);
  }

  .flow-stage:nth-child(2) {
    border-left-color: var(--controlled-amber);
  }

  .flow-stage:nth-child(3) {
    border-left-color: #61f0e6;
  }

  .flow-stage:nth-child(4) {
    border-left-color: var(--electric-blue);
  }

  .flow-stage:nth-child(5) {
    border-left-color: var(--restrained-green);
  }

  .flow-icon {
    width: 62px;
    height: 62px;
    margin: 16px 0 18px;
  }

  .proof-lane {
    min-height: auto;
    padding: 18px;
  }

  .proof-lane > span {
    margin-bottom: 16px;
  }

  .system-flow li {
    min-height: 190px;
  }

  .pilot-figure img {
    min-height: 260px;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  .button {
    transition: none;
  }

  .line-pulse {
    animation: none;
  }
}

@media (max-width: 920px) {
  .site-header {
    gap: 18px;
  }

  .hero-inner {
    min-height: auto;
    padding-top: clamp(44px, 8vw, 68px);
    padding-bottom: clamp(44px, 8vw, 68px);
  }

  .hero-copy {
    max-width: 760px;
  }

  .hero h1 {
    max-width: 780px;
    font-size: clamp(2.55rem, 8.8vw, 4.6rem);
  }

  .hero-subhead {
    max-width: 720px;
  }

  .hero-system-visual {
    max-width: 100%;
    min-height: auto;
  }

  .section {
    padding-top: clamp(52px, 8vw, 76px);
    padding-bottom: clamp(52px, 8vw, 76px);
  }

  .section-heading {
    margin-bottom: 28px;
  }

  .section-heading h2,
  .pilot-copy h2,
  .contact-section h2 {
    font-size: clamp(2rem, 7vw, 3.4rem);
  }

  .flow-stage,
  .proof-lane,
  .investment-thesis article,
  .contact-routes article,
  .team-card {
    min-width: 0;
  }
}

@media (max-width: 680px) {
  body {
    line-height: 1.5;
  }

  .site-header {
    gap: 12px;
    padding: 12px 16px;
  }

  .brand {
    min-width: 0;
    padding: 6px 8px;
  }

  .brand img {
    width: 136px;
  }

  .nav-links {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 8px;
    width: 100%;
    font-size: 0.82rem;
  }

  .nav-links a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 42px;
    padding: 8px 6px;
    text-align: center;
  }

  .nav-links .nav-cta {
    grid-column: 1 / -1;
    min-height: 46px;
  }

  .hero-inner {
    gap: 28px;
    padding: 42px 16px 46px;
  }

  .eyebrow,
  .section-kicker,
  .panel-label {
    font-size: 0.7rem;
    letter-spacing: 0.1em;
  }

  .hero h1 {
    margin: 12px 0 14px;
    font-size: clamp(2.15rem, 10.2vw, 3.05rem);
    line-height: 1.02;
  }

  .hero-subhead,
  .section-heading p:not(.section-kicker),
  .pilot-copy > p,
  .contact-section p {
    font-size: 0.98rem;
  }

  .hero-actions {
    gap: 10px;
    margin-top: 24px;
  }

  .button {
    min-height: 54px;
    padding: 14px 16px;
  }

  .infrastructure-map {
    padding: 16px;
    border-top-width: 5px;
  }

  .visual-header {
    margin-bottom: 14px;
  }

  .map-header h2 {
    font-size: clamp(1.36rem, 7vw, 1.72rem);
    line-height: 1.08;
  }

  .map-header > span {
    padding: 7px 9px;
    font-size: 0.72rem;
  }

  .power-corridor {
    gap: 10px;
    padding: 8px 0 4px;
  }

  .stage-node,
  .conversion-node {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    gap: 12px;
    align-items: center;
    min-height: 112px;
    padding: 13px;
  }

  .stage-node strong {
    font-size: 0.98rem;
  }

  .stage-node small {
    margin-top: 5px;
    font-size: 0.78rem;
  }

  .feedstock-chips,
  .module-shell,
  .switchgear,
  .load-cluster {
    width: 88px;
    min-height: 54px;
    margin: 0;
  }

  .module-shell,
  .data-center-block {
    padding: 7px;
  }

  .visual-legend,
  .visual-proof,
  .evidence-strip,
  .hero-proof-bar {
    grid-template-columns: 1fr;
  }

  .section {
    padding: 52px 16px;
  }

  .section-heading {
    margin-bottom: 24px;
  }

  .section-heading h2,
  .pilot-copy h2,
  .contact-section h2 {
    font-size: clamp(1.9rem, 9vw, 2.65rem);
    line-height: 1.04;
  }

  .decision-stack article {
    min-height: auto;
    padding: 20px;
  }

  .pressure-stack span,
  .decision-stack span {
    margin-bottom: 20px;
  }

  .why-bridge,
  .validation-panel div,
  .contact-routes article {
    padding: 18px;
  }

  .system-model-flow {
    margin-bottom: 22px;
  }

  .flow-stage {
    display: grid;
    grid-template-columns: 62px minmax(0, 1fr);
    grid-template-rows: auto auto auto;
    column-gap: 14px;
    row-gap: 6px;
    padding: 16px;
  }

  .flow-number {
    grid-column: 1;
    grid-row: 1;
  }

  .flow-icon {
    grid-column: 1;
    grid-row: 2 / span 2;
    width: 56px;
    height: 56px;
    margin: 0;
  }

  .flow-stage h3 {
    grid-column: 2;
    grid-row: 1 / span 2;
    margin: 0;
    font-size: 1rem;
  }

  .flow-stage p {
    grid-column: 2;
    grid-row: 3;
    font-size: 0.88rem;
  }

  .proof-lane,
  .investment-thesis article {
    min-height: auto;
    padding: 18px;
  }

  .proof-lane > span,
  .investment-thesis span,
  .contact-routes span {
    margin-bottom: 16px;
  }

  .pilot-layout {
    gap: 26px;
  }

  .pilot-figure img {
    min-height: 210px;
  }

  .figure-tags {
    grid-template-columns: 1fr 1fr;
  }

  .pilot-checklist {
    gap: 8px;
  }

  .pilot-checklist div,
  .pilot-pathway,
  .partner-map article {
    gap: 0;
    grid-template-columns: 1fr;
  }

  .partner-map h3,
  .partner-map div,
  .partner-map a {
    padding: 16px;
  }

  .investment-layout {
    gap: 26px;
  }

  .team-grid,
  .contact-routes {
    gap: 10px;
  }

  .team-card {
    min-height: auto;
    padding: 18px;
  }

  .initials {
    width: 42px;
    height: 42px;
    margin-bottom: 16px;
  }

  .contact-section {
    padding: 52px 16px;
  }

  .contact-inner {
    gap: 22px;
  }

  .contact-button {
    justify-self: stretch;
  }

  .contact-routes {
    margin-top: 24px;
  }

  .contact-routes a {
    min-height: 44px;
    padding-top: 18px;
  }
}

@media (max-width: 430px) {
  .nav-links {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .nav-links .nav-cta {
    grid-column: 1 / -1;
  }

  .hero h1 {
    font-size: clamp(2rem, 10.8vw, 2.72rem);
  }

  .hero-subhead {
    max-width: 34ch;
  }

  .stage-node,
  .conversion-node {
    grid-template-columns: 1fr;
  }

  .feedstock-chips,
  .module-shell,
  .switchgear,
  .load-cluster {
    width: 100%;
  }

  .flow-stage {
    grid-template-columns: 1fr;
  }

  .flow-number,
  .flow-icon,
  .flow-stage h3,
  .flow-stage p {
    grid-column: 1;
    grid-row: auto;
  }

  .flow-icon {
    margin: 8px 0 6px;
  }
}

/* Founder-requested brand polish: transparent header logo, local Inter, and three-step hero corridor. */
@font-face {
  font-family: "Inter";
  src: url("assets/fonts/Inter-VariableFont_opsz,wght.ttf") format("truetype");
  font-weight: 100 900;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Inter";
  src: url("assets/fonts/Inter-Italic-VariableFont_opsz,wght.ttf") format("truetype");
  font-weight: 100 900;
  font-style: italic;
  font-display: swap;
}

:root {
  --font-sans: "Inter", Aptos, "Segoe UI", "Helvetica Neue", Arial, sans-serif;
  --font-display: "Inter", Bahnschrift, "Aptos Display", "Segoe UI", Arial, sans-serif;
}

body {
  font-family: var(--font-sans);
}

h1,
h2,
h3,
.nav-links,
.eyebrow,
.section-kicker,
.panel-label,
.button,
.node-index,
.flow-number {
  font-family: var(--font-display);
}

.site-header .brand {
  min-width: 170px;
  padding: 0;
  background: transparent;
  border: 0;
  border-radius: 0;
  box-shadow: none;
}

.site-header .brand img {
  display: block;
  width: clamp(148px, 12vw, 178px);
  height: auto;
  filter: drop-shadow(0 12px 22px rgba(0, 0, 0, 0.22));
}

.hero-system-visual .power-corridor {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(12px, 2vw, 18px);
  overflow: hidden;
}

.hero-system-visual .corridor-line {
  inset: 8% 1% 0;
  width: 98%;
  height: 75%;
}

.hero-system-visual .visual-legend {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

@media (max-width: 920px) {
  .hero-system-visual .power-corridor,
  .hero-system-visual .visual-legend {
    grid-template-columns: 1fr;
  }

  .hero-system-visual .power-corridor {
    overflow: visible;
  }
}

@media (max-width: 640px) {
  .site-header .brand {
    min-width: 0;
  }

  .site-header .brand img {
    width: 132px;
  }
}

/* Annotation polish pass: simplified nav, conversion motif, and site-adjacent pilot visual. */
.conversion-core {
  position: absolute;
  inset: 17px 16px 15px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(97, 240, 230, 0.34);
  border-radius: 999px;
  background:
    radial-gradient(circle, rgba(215, 154, 43, 0.28) 0 13%, transparent 14%),
    radial-gradient(circle, rgba(97, 240, 230, 0.12) 0 44%, transparent 45%),
    rgba(7, 18, 25, 0.3);
  box-shadow: inset 0 0 24px rgba(97, 240, 230, 0.14), 0 0 20px rgba(31, 111, 235, 0.15);
}

.conversion-core::before,
.conversion-core::after {
  position: absolute;
  width: 54%;
  height: 54%;
  border: 2px solid rgba(97, 240, 230, 0.68);
  border-right-color: transparent;
  border-bottom-color: rgba(215, 154, 43, 0.72);
  border-radius: 50%;
  content: "";
}

.conversion-core::after {
  width: 34%;
  height: 34%;
  transform: rotate(180deg);
  border-color: rgba(31, 111, 235, 0.72);
  border-left-color: transparent;
}

.conversion-core i {
  position: absolute;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #61f0e6;
  box-shadow: 0 0 12px rgba(97, 240, 230, 0.78);
}

.conversion-core i:nth-child(1) {
  transform: translate(-30px, -4px);
}

.conversion-core i:nth-child(2) {
  background: var(--controlled-amber);
  transform: translate(0, 24px);
}

.conversion-core i:nth-child(3) {
  background: var(--electric-blue);
  transform: translate(30px, -4px);
}

.pilot-site-visual {
  min-height: 390px;
  background:
    radial-gradient(circle at 70% 20%, rgba(31, 111, 235, 0.14), transparent 28rem),
    linear-gradient(135deg, #eff8fb 0%, #d7eaf1 58%, #c6dde7 100%);
}

.pilot-site-visual svg {
  display: block;
  width: 100%;
  height: auto;
  min-height: 390px;
}

.pilot-site-visual .site-labels text {
  fill: #07343d;
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 780;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.pilot-site-visual .pilot-unit,
.pilot-site-visual .feedstock-side,
.pilot-site-visual .power-side {
  transform-origin: center;
}

@media (max-width: 920px) {
  .pilot-site-visual,
  .pilot-site-visual svg {
    min-height: 280px;
  }
}

@media (max-width: 640px) {
  .conversion-core {
    inset: 11px 14px;
  }

  .conversion-core i:nth-child(1) {
    transform: translate(-23px, -4px);
  }

  .conversion-core i:nth-child(3) {
    transform: translate(23px, -4px);
  }

  .pilot-site-visual,
  .pilot-site-visual svg {
    min-height: 230px;
  }

  .pilot-site-visual .site-labels text {
    font-size: 22px;
  }
}

/* Pilot visual V2 selected direction */
.pilot-site-visual-v2 {
  position: relative;
  min-height: 420px;
  overflow: hidden;
  background:
    radial-gradient(circle at 70% 18%, rgba(31, 111, 235, 0.2), transparent 26rem),
    linear-gradient(135deg, #071219 0%, #0a2b37 48%, #123f50 100%);
}

.pilot-concept-svg {
  display: block;
  width: 100%;
  height: auto;
  min-height: 420px;
}

.pilot-feed-flow,
.pilot-power-flow {
  fill: none;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-dasharray: 14 16;
  animation: pilot-flow-line 3.8s linear infinite;
}

.pilot-feed-flow {
  stroke: #61f0e6;
  stroke-width: 6;
  filter: drop-shadow(0 0 8px rgba(97, 240, 230, 0.48));
}

.pilot-power-flow {
  stroke: #1f6feb;
  stroke-width: 7;
  animation-duration: 4.6s;
  filter: drop-shadow(0 0 10px rgba(31, 111, 235, 0.62));
}

.pilot-power-return {
  stroke: #61f0e6;
  stroke-width: 3;
  stroke-dasharray: 8 14;
  stroke-linecap: round;
  opacity: 0.7;
  animation: pilot-flow-line 6s linear infinite reverse;
}

.pilot-energy-halo {
  animation: pilot-breathe 3.4s ease-in-out infinite;
}

.pilot-rotor {
  transform-box: fill-box;
  transform-origin: center;
  animation: pilot-rotor-spin 12s linear infinite;
}

.facility-lights circle,
.power-yard rect,
.pilot-module circle:not(.pilot-flow-dot) {
  animation: pilot-soft-glow 4.2s ease-in-out infinite;
}

.facility-lights circle:nth-child(2) { animation-delay: 0.5s; }
.facility-lights circle:nth-child(3) { animation-delay: 1s; }
.facility-lights circle:nth-child(4) { animation-delay: 1.5s; }

.feedstock-cassettes rect {
  animation: pilot-feedstock-float 5.6s ease-in-out infinite;
  transform-box: fill-box;
  transform-origin: center;
}

.feedstock-cassettes rect:nth-child(3) { animation-delay: 0.45s; }
.feedstock-cassettes rect:nth-child(4) { animation-delay: 0.9s; }
.feedstock-cassettes rect:nth-child(5) { animation-delay: 1.35s; }

@keyframes pilot-flow-line {
  to { stroke-dashoffset: -60; }
}

@keyframes pilot-breathe {
  0%, 100% { opacity: 0.54; transform: scale(0.96); }
  50% { opacity: 1; transform: scale(1.05); }
}

@keyframes pilot-rotor-spin {
  to { transform: rotate(360deg); }
}

@keyframes pilot-soft-glow {
  0%, 100% { opacity: 0.7; }
  50% { opacity: 1; filter: drop-shadow(0 0 8px rgba(97, 240, 230, 0.52)); }
}

@keyframes pilot-feedstock-float {
  0%, 100% { translate: 0 0; }
  50% { translate: 2px -4px; }
}

@media (max-width: 920px) {
  .pilot-site-visual-v2,
  .pilot-concept-svg {
    min-height: 300px;
  }
}

@media (max-width: 640px) {
  .pilot-site-visual-v2,
  .pilot-concept-svg {
    min-height: 230px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .pilot-site-visual-v2 *,
  .pilot-feed-flow,
  .pilot-power-flow,
  .pilot-power-return,
  .pilot-energy-halo,
  .pilot-rotor,
  .facility-lights circle,
  .power-yard rect,
  .feedstock-cassettes rect {
    animation: none !important;
  }

  .pilot-flow-dot {
    display: none;
  }
}

/* Realistic container-skid pilot image selected after founder correction. */
.pilot-photo-wrap {
  position: relative;
  min-height: 390px;
  overflow: hidden;
  background: #d8e7ee;
  isolation: isolate;
}

.pilot-photo-wrap img {
  display: block;
  width: 100%;
  min-height: 390px;
  object-fit: contain;
  object-position: center;
  filter: saturate(0.96) contrast(1.02);
}

.pilot-photo-wrap::before {
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  background:
    linear-gradient(180deg, rgba(7, 18, 25, 0.02), rgba(7, 18, 25, 0.16)),
    radial-gradient(circle at 54% 52%, rgba(97, 240, 230, 0.12), transparent 17rem);
  content: "";
}

.pilot-photo-energy-line {
  position: absolute;
  z-index: 2;
  right: 9%;
  bottom: 34%;
  width: 34%;
  height: 4px;
  pointer-events: none;
  background: linear-gradient(90deg, transparent, rgba(97, 240, 230, 0.12), rgba(97, 240, 230, 0.88), rgba(31, 111, 235, 0.78), transparent);
  border-radius: 999px;
  box-shadow: 0 0 16px rgba(97, 240, 230, 0.34);
  opacity: 0.72;
  transform: rotate(-2deg);
}

.pilot-photo-energy-pulse {
  position: absolute;
  z-index: 3;
  right: 39%;
  bottom: calc(34% - 4px);
  width: 10px;
  height: 10px;
  pointer-events: none;
  background: #61f0e6;
  border-radius: 50%;
  box-shadow: 0 0 18px rgba(97, 240, 230, 0.88), 0 0 34px rgba(31, 111, 235, 0.42);
  animation: pilot-photo-pulse 4.8s ease-in-out infinite;
}

.pilot-photo-wrap::after {
  position: absolute;
  z-index: 2;
  left: -18%;
  top: 0;
  width: 22%;
  height: 100%;
  pointer-events: none;
  background: linear-gradient(100deg, transparent, rgba(255, 255, 255, 0.18), transparent);
  content: "";
  transform: skewX(-16deg);
  animation: pilot-photo-sheen 8s ease-in-out infinite;
}

@keyframes pilot-photo-pulse {
  0% { opacity: 0; transform: translateX(0) scale(0.72); }
  15% { opacity: 1; }
  78% { opacity: 1; transform: translateX(29vw) scale(1); }
  100% { opacity: 0; transform: translateX(31vw) scale(0.72); }
}

@keyframes pilot-photo-sheen {
  0%, 40% { transform: translateX(0) skewX(-16deg); opacity: 0; }
  55% { opacity: 1; }
  80%, 100% { transform: translateX(620%) skewX(-16deg); opacity: 0; }
}

@media (max-width: 920px) {
  .pilot-photo-wrap,
  .pilot-photo-wrap img {
    min-height: 280px;
  }

  .pilot-photo-energy-line {
    right: 7%;
    width: 38%;
  }
}

@media (max-width: 640px) {
  .pilot-photo-wrap,
  .pilot-photo-wrap img {
    min-height: 220px;
  }

  .pilot-photo-energy-line,
  .pilot-photo-energy-pulse {
    display: none;
  }
}

@media (prefers-reduced-motion: reduce) {
  .pilot-photo-energy-pulse,
  .pilot-photo-wrap::after {
    animation: none !important;
  }
}

/* Keep pilot image pulse proportional to the visual frame. */
@keyframes pilot-photo-pulse {
  0% { right: 39%; opacity: 0; transform: scale(0.72); }
  15% { opacity: 1; }
  78% { right: 10%; opacity: 1; transform: scale(1); }
  100% { right: 8%; opacity: 0; transform: scale(0.72); }
}

/* Annotation pass: raise hero pathway animation closer to process-box tops. */
.hero-system-visual .corridor-line {
  inset: auto 3% auto 3%;
  top: 8%;
  width: 94%;
  height: 82%;
}

/* Annotation pass: move hero flow into the engineered visual area below copy. */
.hero-system-visual .stage-node {
  position: relative;
}

.hero-system-visual .stage-node::after {
  position: absolute;
  left: 18%;
  right: 18%;
  bottom: 12%;
  height: 33%;
  z-index: 0;
  pointer-events: none;
  border: 1px solid rgba(97, 240, 230, 0.16);
  background: radial-gradient(circle at 50% 55%, rgba(97, 240, 230, 0.15), transparent 62%);
  content: "";
}

.hero-system-visual .corridor-line {
  z-index: 5;
  opacity: 0.68;
  mix-blend-mode: screen;
}

.hero-system-visual .stage-node > span,
.hero-system-visual .stage-node > div:first-of-type {
  position: relative;
  z-index: 7;
}

.hero-system-visual .feedstock-chips,
.hero-system-visual .conversion-core,
.hero-system-visual .load-cluster {
  position: relative;
  z-index: 4;
  filter: drop-shadow(0 0 12px rgba(97, 240, 230, 0.14));
}

.hero-system-visual .line-shadow {
  opacity: 0.28;
}

.hero-system-visual .line-core {
  opacity: 0.72;
}

.hero-system-visual .line-pulse {
  opacity: 0.88;
}

/* Keep the realistic pilot concept in a stable frame across viewport widths. */
.pilot-photo-wrap {
  aspect-ratio: 28 / 15;
  min-height: 0;
}

.pilot-photo-wrap img {
  height: 100%;
  min-height: 0;
  object-fit: contain;
}

.pilot-electric-trace {
  position: absolute;
  inset: 0;
  z-index: 3;
  width: 100%;
  height: 100%;
  pointer-events: none;
  mix-blend-mode: screen;
}

.pilot-electric-trace path {
  fill: none;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.pilot-electric-glow {
  stroke: rgba(97, 240, 230, 0.18);
  stroke-width: 10;
  filter: blur(5px);
}

.pilot-electric-core {
  stroke: rgba(245, 177, 52, 0.62);
  stroke-width: 2.5;
  stroke-dasharray: 14 18;
  opacity: 0.5;
}

.pilot-electric-pulse {
  stroke: #61f0e6;
  stroke-width: 2.5;
  stroke-dasharray: 42 310;
  stroke-dashoffset: 0;
  filter: drop-shadow(0 0 7px rgba(97, 240, 230, 0.86));
  animation: pilot-electric-flow 4.4s linear infinite;
}

.team-grid article > p span {
  color: rgba(8, 75, 83, 0.78);
  font-weight: 750;
}

@keyframes pilot-electric-flow {
  to {
    stroke-dashoffset: -274;
  }
}

@media (max-width: 920px) {
  .hero-system-visual .corridor-line {
    display: none;
  }

  .pilot-photo-wrap,
  .pilot-photo-wrap img {
    min-height: 0;
  }
}

@media (prefers-reduced-motion: reduce) {
  .pilot-electric-pulse {
    animation: none !important;
  }
}

/* Annotation pass: cleaner pilot image frame, labels, and conduit-only power trace. */
.pilot-photo-wrap {
  background: transparent;
}

.pilot-photo-wrap::before,
.pilot-photo-wrap::after {
  display: none !important;
  content: none !important;
  animation: none !important;
}

.figure-tags {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1px;
  overflow: hidden;
  background: rgba(7, 18, 25, 0.92);
  border: 1px solid rgba(7, 18, 25, 0.16);
  border-top: 0;
}

.figure-tags span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 10px 8px;
  color: #f5f7f8;
  background:
    linear-gradient(180deg, rgba(15, 154, 163, 0.2), rgba(7, 18, 25, 0.9));
  font-family: var(--font-display);
  font-size: 0.74rem;
  font-weight: 850;
  letter-spacing: 0.045em;
  line-height: 1.15;
  text-align: center;
  text-transform: uppercase;
}

@media (max-width: 640px) {
  .figure-tags {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

/* Founder annotation pass: keep the pilot art clean, larger, and animated without a false conduit trace. */
.pilot-layout.pilot-bench {
  grid-template-columns: minmax(520px, 1.08fr) minmax(380px, 0.92fr);
}

.pilot-figure,
.pilot-figure.annotated-figure {
  padding: 0;
  background: transparent;
  border: 0;
  box-shadow: none;
}

.pilot-photo-wrap {
  background: transparent !important;
  box-shadow: 0 24px 70px rgba(8, 22, 30, 0.12);
}

.pilot-photo-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.pilot-photo-wrap::before {
  display: none !important;
  content: none !important;
}

.pilot-photo-wrap::after {
  position: absolute;
  z-index: 4;
  left: -22%;
  top: 0;
  display: block !important;
  width: 24%;
  height: 100%;
  pointer-events: none;
  background: linear-gradient(100deg, transparent, rgba(255, 255, 255, 0.22), transparent);
  content: "" !important;
  transform: skewX(-16deg);
  animation: pilot-photo-sheen 8s ease-in-out infinite !important;
}

.pilot-electric-trace {
  display: none;
}

@media (max-width: 920px) {
  .pilot-layout.pilot-bench {
    grid-template-columns: 1fr;
  }
}

/* Restore a narrow conduit-following electricity animation and reduce image resampling artifacts. */
.pilot-photo-wrap img {
  filter: none;
  image-rendering: auto;
  transform: translateZ(0);
  backface-visibility: hidden;
}

.pilot-electric-trace {
  display: block;
  z-index: 5;
  opacity: 1;
  mix-blend-mode: screen;
}

.pilot-electric-glow {
  display: none;
  stroke: rgba(97, 240, 230, 0.3);
  stroke-width: 10;
  filter: blur(4px);
}

.pilot-electric-core {
  display: none;
  stroke: rgba(245, 177, 52, 0.74);
  stroke-width: 2.4;
  stroke-dasharray: 12 16;
  opacity: 0.72;
}

.pilot-electric-pulse {
  stroke: #32d7ff;
  stroke-width: 3.4;
  stroke-dasharray: 44 230;
  filter: drop-shadow(0 0 8px rgba(50, 215, 255, 0.95)) drop-shadow(0 0 14px rgba(44, 157, 255, 0.78));
  animation: pilot-electric-flow 4.6s linear infinite;
}

/* Mobile audit pass: make the small technical graphics deliberate instead of cramped. */
@media (max-width: 680px) {
  .site-header {
    position: static;
    align-items: stretch;
    gap: 10px;
    padding: 12px 14px 14px;
  }

  .brand {
    align-self: flex-start;
    padding: 0;
    background: transparent;
    border: 0;
  }

  .brand img {
    width: 142px;
  }

  .nav-links {
    display: grid;
    grid-template-columns: 1fr;
    gap: 6px;
    width: 100%;
  }

  .nav-links a {
    justify-content: flex-start;
    min-height: 34px;
    padding: 7px 10px;
    color: rgba(245, 247, 248, 0.86);
    background: rgba(245, 247, 248, 0.045);
    border: 1px solid rgba(215, 226, 232, 0.12);
    border-radius: 9px;
  }

  .nav-links .nav-cta {
    justify-content: center;
    min-height: 46px;
    margin-top: 2px;
    color: #071219;
    background: var(--controlled-amber);
    border-color: transparent;
  }

  .hero-inner {
    gap: 24px;
    padding-top: 36px;
  }

  .hero-system-visual {
    padding: 15px;
  }

  .hero-system-visual::before,
  .hero-system-visual::after,
  .hero-system-visual .stage-node::after,
  .hero-system-visual .corridor-line {
    display: none;
  }

  .power-corridor {
    gap: 8px;
    padding: 4px 0 0;
  }

  .stage-node,
  .conversion-node {
    display: block;
    min-height: auto;
    padding: 14px 15px;
    background:
      linear-gradient(90deg, rgba(97, 240, 230, 0.1), transparent 38%),
      linear-gradient(180deg, rgba(245, 247, 248, 0.085), rgba(245, 247, 248, 0.035));
    border-top: 1px solid rgba(215, 226, 232, 0.14);
    border-right: 1px solid rgba(215, 226, 232, 0.12);
    border-bottom: 1px solid rgba(215, 226, 232, 0.12);
    border-left-width: 4px;
    box-shadow: none;
  }

  .hero-system-visual .stage-node > div:first-child {
    display: grid;
    grid-template-columns: auto minmax(0, 1fr);
    column-gap: 10px;
    align-items: start;
  }

  .hero-system-visual .node-index {
    margin: 1px 0 0;
    padding: 2px 6px;
    color: #61f0e6;
    background: rgba(97, 240, 230, 0.08);
    border: 1px solid rgba(97, 240, 230, 0.18);
    border-radius: 999px;
    font-size: 0.68rem;
  }

  .stage-node small {
    margin-top: 5px;
    font-size: 0.8rem;
  }

  .hero-system-visual .feedstock-chips,
  .hero-system-visual .module-shell,
  .hero-system-visual .switchgear,
  .hero-system-visual .load-cluster {
    display: none;
  }

  .system-model-flow {
    gap: 8px;
    padding: 0;
    background: transparent;
    border: 0;
    box-shadow: none;
  }

  .flow-stage {
    display: grid;
    grid-template-columns: 44px minmax(0, 1fr);
    grid-template-rows: auto auto;
    column-gap: 12px;
    row-gap: 5px;
    min-height: auto;
    padding: 16px;
    background:
      linear-gradient(rgba(215, 226, 232, 0.035) 1px, transparent 1px),
      linear-gradient(90deg, rgba(215, 226, 232, 0.035) 1px, transparent 1px),
      linear-gradient(180deg, rgba(12, 32, 42, 0.92), rgba(7, 18, 25, 0.88));
    background-size: 22px 22px, 22px 22px, auto;
    border-top: 1px solid rgba(215, 226, 232, 0.12);
    border-right: 1px solid rgba(215, 226, 232, 0.12);
    border-bottom: 1px solid rgba(215, 226, 232, 0.12);
    border-left-width: 4px;
  }

  .flow-number {
    grid-column: 1;
    grid-row: 1;
    padding-top: 2px;
    color: rgba(245, 247, 248, 0.62);
  }

  .flow-icon {
    grid-column: 1;
    grid-row: 2;
    width: 42px;
    height: 42px;
    margin: 0;
    opacity: 0.82;
  }

  .flow-stage h3 {
    grid-column: 2;
    grid-row: 1;
    margin: 0;
    font-size: 1rem;
    line-height: 1.12;
  }

  .flow-stage p {
    grid-column: 2;
    grid-row: 2;
    margin: 0;
    font-size: 0.88rem;
    line-height: 1.45;
  }

  .system-diagram {
    gap: 8px;
    padding: 12px;
    background: rgba(245, 247, 248, 0.055);
    box-shadow: none;
  }

  .system-diagram div {
    justify-content: flex-start;
    min-height: 48px;
    padding: 12px 14px;
    text-align: left;
  }

  .system-diagram div:not(:last-child)::after {
    right: 14px;
    bottom: -17px;
    transform: rotate(90deg);
  }

  .pilot-photo-wrap {
    aspect-ratio: 16 / 11;
  }

  .pilot-photo-wrap img {
    min-height: 0;
    object-fit: cover;
  }

  .pilot-electric-trace {
    opacity: 0.86;
  }

  .figure-tags span {
    min-height: 42px;
    padding: 9px 7px;
    font-size: 0.68rem;
    letter-spacing: 0.035em;
  }

  .investment-thesis article,
  .contact-routes article {
    background:
      linear-gradient(rgba(215, 226, 232, 0.03) 1px, transparent 1px),
      linear-gradient(90deg, rgba(215, 226, 232, 0.03) 1px, transparent 1px),
      linear-gradient(180deg, rgba(12, 32, 42, 0.92), rgba(7, 18, 25, 0.9));
    background-size: 22px 22px, 22px 22px, auto;
  }
}

@media (max-width: 420px) {
  .hero h1 {
    font-size: clamp(2.04rem, 10.6vw, 2.72rem);
  }

  .map-header h2 {
    font-size: clamp(1.26rem, 6.8vw, 1.62rem);
  }

  .flow-stage {
    grid-template-columns: 38px minmax(0, 1fr);
    padding: 14px;
  }

  .flow-icon {
    width: 36px;
    height: 36px;
  }
}

/* Production visual alignment pass: keep mobile graphics locked to their source geometry. */
@media (max-width: 680px) {
  .pilot-photo-wrap {
    aspect-ratio: 28 / 15;
  }

  .system-model-flow {
    gap: 10px;
  }

  .flow-stage {
    grid-template-columns: 58px minmax(0, 1fr);
    column-gap: 14px;
    align-items: start;
    padding: 16px 15px;
  }

  .flow-number {
    width: 52px;
    padding-top: 0;
    line-height: 1;
    text-align: center;
  }

  .flow-icon {
    width: 52px;
    height: 52px;
    margin: 0 auto;
    overflow: hidden;
    align-self: start;
  }

  .flow-icon::after {
    display: none;
  }

  .flow-icon i {
    position: static;
    margin: 0;
  }

  .feedstock-icon {
    display: flex;
    flex-wrap: wrap;
    gap: 3px;
    align-items: center;
    justify-content: center;
    align-content: center;
    padding: 10px 8px;
  }

  .feedstock-icon i {
    width: 13px;
    height: 9px;
  }

  .conversion-icon,
  .interface-icon,
  .output-icon {
    display: flex;
    gap: 4px;
    align-items: center;
    justify-content: center;
  }

  .conversion-icon i {
    width: 7px;
    height: 26px;
  }

  .interface-icon i {
    width: 7px;
    height: 30px;
  }

  .output-icon i {
    width: 8px;
    height: 24px;
    transform: skewX(-14deg);
  }

  .load-icon {
    display: grid;
    grid-template-columns: repeat(2, 13px);
    gap: 4px;
    align-content: center;
    justify-content: center;
  }

  .load-icon i {
    width: 13px;
    height: 11px;
  }
}

/* Graphic alignment pass: remove stray connector artifacts and stabilize mobile diagrams. */
.system-model-flow::before,
.flow-icon::after {
  display: none;
}

.flow-icon {
  overflow: hidden;
}

.feedstock-icon,
.conversion-icon,
.interface-icon,
.output-icon,
.load-icon {
  align-items: center;
  justify-content: center;
}

.conversion-icon,
.interface-icon {
  display: flex;
}

.conversion-icon {
  gap: 6px;
}

.conversion-icon i {
  flex: 0 0 11px;
  width: 11px;
  height: 36px;
}

.conversion-icon i:nth-child(2) {
  height: 46px;
}

.interface-icon {
  gap: 6px;
}

.interface-icon i {
  flex: 0 0 12px;
  width: 12px;
  height: 44px;
}

.interface-icon i::before {
  display: none;
}

.output-icon {
  display: flex;
  gap: 7px;
}

.output-icon i,
.output-icon i:nth-child(1),
.output-icon i:nth-child(2),
.output-icon i:nth-child(3) {
  position: static;
  width: 9px;
  height: 36px;
  border-radius: 1px;
  transform: skewX(-14deg);
}

.output-icon i:nth-child(1) {
  background: rgba(31, 111, 235, 0.78);
}

.output-icon i:nth-child(2) {
  background: rgba(97, 240, 230, 0.72);
}

.output-icon i:nth-child(3) {
  background: var(--controlled-amber);
}

.hero-system-visual .module-shell {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  align-items: center;
  justify-items: center;
  overflow: hidden;
  min-height: 84px;
  padding: 14px 12px;
}

.hero-system-visual .module-shell > span {
  display: block;
  align-self: center;
  width: 17px;
  height: 42px;
  background: linear-gradient(180deg, rgba(97, 240, 230, 0.28), rgba(215, 226, 232, 0.08));
  border: 1px solid rgba(97, 240, 230, 0.22);
}

.hero-system-visual .module-shell > span:nth-child(2) {
  width: 19px;
  height: 52px;
  background: linear-gradient(180deg, rgba(31, 111, 235, 0.28), rgba(215, 226, 232, 0.08));
  border-color: rgba(31, 111, 235, 0.28);
}

.hero-system-visual .conversion-core {
  display: none;
}

@media (max-width: 680px) {
  .hero-system-visual .stage-node > div:first-child {
    grid-template-columns: 30px minmax(0, 1fr);
  }

  .hero-system-visual .node-index {
    min-width: 0;
    margin: 0;
    padding: 1px 0 0;
    color: #61f0e6;
    background: transparent;
    border: 0;
    border-radius: 0;
    font-size: 0.72rem;
    line-height: 1.1;
    letter-spacing: 0.08em;
    text-align: left;
  }

  .flow-icon {
    width: 50px;
    height: 50px;
    margin: 0 auto;
  }

  .conversion-icon i,
  .interface-icon i,
  .output-icon i,
  .output-icon i:nth-child(1),
  .output-icon i:nth-child(2),
  .output-icon i:nth-child(3) {
    position: static;
  }

  .conversion-icon i {
    flex-basis: 7px;
    width: 7px;
    height: 25px;
  }

  .conversion-icon i:nth-child(2) {
    height: 32px;
  }

  .interface-icon i {
    flex-basis: 7px;
    width: 7px;
    height: 30px;
  }

  .output-icon i,
  .output-icon i:nth-child(1),
  .output-icon i:nth-child(2),
  .output-icon i:nth-child(3) {
    width: 7px;
    height: 28px;
  }
}

/* Mobile Local Pathway final polish: technical index plates, clean stacked cards. */
@media (max-width: 680px) {
  .hero-system-visual .power-corridor {
    gap: 10px;
  }

  .hero-system-visual .stage-node,
  .hero-system-visual .conversion-node {
    padding: 15px 14px;
    background:
      linear-gradient(90deg, rgba(97, 240, 230, 0.11), transparent 42%),
      linear-gradient(180deg, rgba(245, 247, 248, 0.075), rgba(245, 247, 248, 0.032));
    border: 1px solid rgba(215, 226, 232, 0.13);
    border-left: 4px solid var(--teal);
    box-shadow: inset 0 1px 0 rgba(245, 247, 248, 0.06);
  }

  .hero-system-visual .conversion-node {
    border-left-color: var(--controlled-amber);
  }

  .hero-system-visual .load-node {
    border-left-color: var(--electric-blue);
  }

  .hero-system-visual .stage-node > div:first-child {
    display: grid;
    grid-template-columns: 34px minmax(0, 1fr);
    grid-template-rows: auto auto;
    column-gap: 12px;
    row-gap: 4px;
    align-items: start;
  }

  .hero-system-visual .node-index {
    grid-column: 1;
    grid-row: 1 / span 2;
    display: block;
    width: auto;
    height: auto;
    margin: 2px 0 0;
    padding: 0;
    color: rgba(97, 240, 230, 0.86);
    background: transparent;
    border: 0;
    border-radius: 0;
    box-shadow: none;
    font-size: 0.7rem;
    font-weight: 850;
    line-height: 1.1;
    letter-spacing: 0.09em;
    text-align: left;
  }

  .hero-system-visual .stage-node strong {
    grid-column: 2;
    grid-row: 1;
    margin: 0;
    line-height: 1.1;
  }

  .hero-system-visual .stage-node small {
    grid-column: 2;
    grid-row: 2;
    margin: 0;
    color: rgba(245, 247, 248, 0.7);
    line-height: 1.28;
  }

  .hero-system-visual .feedstock-chips,
  .hero-system-visual .module-shell,
  .hero-system-visual .switchgear,
  .hero-system-visual .load-cluster {
    display: none !important;
  }
}

/* Desktop Local Pathway polish: disciplined shared plates and centered feedstock mark. */
@media (min-width: 681px) {
  .hero-system-visual .stage-node::after {
    left: 18%;
    right: 18%;
    bottom: 11%;
    height: 34%;
    border-color: rgba(97, 240, 230, 0.28);
    background:
      linear-gradient(180deg, rgba(97, 240, 230, 0.1), rgba(31, 111, 235, 0.045)),
      radial-gradient(circle at 50% 54%, rgba(97, 240, 230, 0.22), transparent 66%);
    box-shadow:
      inset 0 0 0 1px rgba(245, 247, 248, 0.035),
      0 0 22px rgba(97, 240, 230, 0.08);
  }

  .hero-system-visual .conversion-node::after {
    border-color: rgba(215, 154, 43, 0.28);
    background:
      linear-gradient(180deg, rgba(215, 154, 43, 0.1), rgba(31, 111, 235, 0.05)),
      radial-gradient(circle at 50% 54%, rgba(97, 240, 230, 0.18), transparent 68%);
  }

  .hero-system-visual .load-node::after {
    border-color: rgba(31, 111, 235, 0.3);
    background:
      linear-gradient(180deg, rgba(31, 111, 235, 0.12), rgba(97, 240, 230, 0.05)),
      radial-gradient(circle at 50% 54%, rgba(97, 240, 230, 0.17), transparent 68%);
  }

  .hero-system-visual .feedstock-node .feedstock-chips {
    display: grid;
    grid-template-columns: repeat(3, 17px);
    grid-auto-rows: 12px;
    gap: 6px 7px;
    justify-content: center;
    align-content: center;
    min-height: 58px;
    transform: none;
  }

  .hero-system-visual .feedstock-node .feedstock-chips i {
    width: 17px;
    height: 12px;
    background: linear-gradient(135deg, rgba(97, 240, 230, 0.78), rgba(15, 154, 163, 0.74));
    border: 1px solid rgba(215, 226, 232, 0.2);
    box-shadow: 0 0 12px rgba(97, 240, 230, 0.13);
    transform: skewX(-7deg);
  }

  .hero-system-visual .feedstock-node .feedstock-chips i:nth-child(2),
  .hero-system-visual .feedstock-node .feedstock-chips i:nth-child(5) {
    background: linear-gradient(135deg, rgba(215, 226, 232, 0.55), rgba(130, 151, 163, 0.46));
    transform: translateY(2px) skewX(-7deg);
  }

  .hero-system-visual .feedstock-node .feedstock-chips i:nth-child(3) {
    background: linear-gradient(135deg, rgba(215, 154, 43, 0.86), rgba(188, 129, 33, 0.76));
    transform: translateY(1px) skewX(-7deg);
  }

  .hero-system-visual .feedstock-node .feedstock-chips i:nth-child(4),
  .hero-system-visual .feedstock-node .feedstock-chips i:nth-child(6) {
    background: linear-gradient(135deg, rgba(15, 154, 163, 0.82), rgba(79, 143, 107, 0.72));
  }
}

/* Workflow-corrected Local Pathway: centered graphics, emphasized conversion stage, brighter flow. */
@media (min-width: 681px) {
  .hero-system-visual .power-corridor {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    align-items: center;
    min-height: 320px;
    padding: 18px 0 16px;
  }

  .hero-system-visual .corridor-line {
    z-index: 4;
    opacity: 0.84;
    mix-blend-mode: screen;
    -webkit-mask-image: linear-gradient(90deg, transparent 0%, rgba(0, 0, 0, 0.72) 8%, #000 18%, #000 82%, rgba(0, 0, 0, 0.72) 92%, transparent 100%);
    mask-image: linear-gradient(90deg, transparent 0%, rgba(0, 0, 0, 0.72) 8%, #000 18%, #000 82%, rgba(0, 0, 0, 0.72) 92%, transparent 100%);
    filter:
      drop-shadow(0 0 5px rgba(97, 240, 230, 0.38))
      drop-shadow(0 0 12px rgba(31, 111, 235, 0.22));
  }

  .hero-system-visual .corridor-line path {
    stroke-width: 5.8;
  }

  .hero-system-visual .stage-node,
  .hero-system-visual .conversion-node {
    z-index: 1;
    display: grid;
    grid-template-rows: minmax(0, auto) 82px;
    gap: 14px;
    min-height: 238px;
    padding: 16px;
  }

  .hero-system-visual .conversion-node {
    min-height: 282px;
    grid-template-rows: minmax(0, auto) 98px;
    padding: 18px;
  }

  .hero-system-visual .stage-node::after {
    left: 16%;
    right: 16%;
    bottom: 16px;
    height: 82px;
    box-shadow:
      inset 0 0 0 1px rgba(245, 247, 248, 0.04),
      0 0 26px rgba(97, 240, 230, 0.14);
  }

  .hero-system-visual .feedstock-node::after {
    left: 50%;
    right: auto;
    width: 94px;
    transform: translateX(-50%);
  }

  .hero-system-visual .conversion-node::after {
    left: 12%;
    right: 12%;
    height: 98px;
    box-shadow:
      inset 0 0 0 1px rgba(245, 247, 248, 0.05),
      0 0 30px rgba(215, 154, 43, 0.16);
  }

  .hero-system-visual .stage-node > div:first-of-type {
    align-self: start;
  }

  .hero-system-visual .corridor-line .line-shadow {
    stroke-width: 3.5px;
    opacity: 0.18;
  }

  .hero-system-visual .corridor-line .line-core {
    stroke-width: 3.5px;
    opacity: 0.22;
  }

  .hero-system-visual .corridor-line .line-pulse {
    stroke-width: 5.8px;
    opacity: 0.88;
  }

  .hero-system-visual .feedstock-chips,
  .hero-system-visual .module-shell,
  .hero-system-visual .load-cluster {
    align-self: end;
    justify-self: center;
    width: min(104px, 100%);
    min-height: 82px;
    margin-top: 0;
  }

  .hero-system-visual .feedstock-node .feedstock-chips {
    width: max-content;
    min-height: 82px;
    padding: 0;
    place-content: center;
    justify-self: center;
    align-self: end;
    transform: none;
  }

  .hero-system-visual .module-shell {
    width: min(112px, 100%);
    min-height: 98px;
  }

  .hero-system-visual .load-cluster {
    min-height: 82px;
  }
}
