:root {
  --tcp-blue: #004b8d;
  --tcp-blue-deep: #062f59;
  --tcp-blue-ink: #102a43;
  --tcp-cyan: #00a9ce;
  --tcp-teal: #0f8f8c;
  --tcp-green: #5eaa49;
  --tcp-amber: #f2a900;
  --tcp-surface: #f4f8fb;
  --tcp-surface-strong: #e8f2f7;
  --tcp-line: #cbdbe6;
  --tcp-text: #243b53;
  --tcp-muted: #61758a;
  --tcp-white: #ffffff;
  --shadow-soft: 0 18px 40px rgba(6, 47, 89, 0.14);
  font-family: "Poppins", "Inter", "Segoe UI", Arial, sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--tcp-text);
  background: var(--tcp-white);
  font-family: var(--font-family, "Poppins", "Inter", "Segoe UI", Arial, sans-serif);
  line-height: 1.6;
}

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

a {
  color: inherit;
}

.skip-link {
  position: absolute;
  left: 16px;
  top: -48px;
  z-index: 20;
  padding: 10px 14px;
  background: var(--tcp-blue);
  color: var(--tcp-white);
  text-decoration: none;
  border-radius: 4px;
}

.skip-link:focus {
  top: 16px;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  background: rgba(255, 255, 255, 0.96);
  border-bottom: 1px solid rgba(203, 219, 230, 0.85);
  backdrop-filter: blur(16px);
}

.nav-shell {
  max-width: 1180px;
  margin: 0 auto;
  padding: 12px 22px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
}

.brand img {
  width: 192px;
  height: auto;
}

.primary-nav {
  display: flex;
  align-items: center;
  gap: 24px;
  font-size: 0.92rem;
  font-weight: 650;
  color: var(--tcp-blue-ink);
}

.primary-nav a {
  text-decoration: none;
  padding: 10px 0;
  border-bottom: 2px solid transparent;
}

.primary-nav a:hover,
.primary-nav a:focus-visible {
  color: var(--tcp-blue);
  border-bottom-color: var(--tcp-cyan);
}

.menu-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 1px solid var(--tcp-line);
  background: var(--tcp-white);
  border-radius: 6px;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 5px;
}

.menu-toggle span {
  display: block;
  width: 20px;
  height: 2px;
  background: var(--tcp-blue-deep);
}

.hero {
  position: relative;
  min-height: 620px;
  display: grid;
  align-items: center;
  overflow: hidden;
  color: var(--tcp-white);
}

.hero-image,
.hero-overlay {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.hero-image {
  object-fit: cover;
}

.hero-overlay {
  background:
    linear-gradient(90deg, rgba(6, 47, 89, 0.92), rgba(6, 47, 89, 0.7) 47%, rgba(0, 75, 141, 0.28)),
    rgba(6, 47, 89, 0.45);
}

.hero-content {
  position: relative;
  max-width: 1180px;
  margin: 0 auto;
  padding: 76px 22px 82px;
  width: 100%;
}

.eyebrow,
.section-kicker,
.card-label {
  margin: 0 0 13px;
  color: var(--tcp-cyan);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.hero h1 {
  max-width: 860px;
  margin: 0;
  font-size: clamp(2.8rem, 7vw, 5.45rem);
  line-height: 0.98;
  letter-spacing: 0;
}

.hero-lede {
  max-width: 700px;
  margin: 28px 0 0;
  color: #e5f4fb;
  font-size: clamp(1.08rem, 2.4vw, 1.45rem);
}

.hero-actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-top: 36px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 12px 20px;
  border-radius: 6px;
  font-weight: 750;
  text-decoration: none;
  border: 1px solid transparent;
}

.button-primary {
  background: var(--tcp-cyan);
  color: var(--tcp-blue-deep);
}

.button-primary:hover,
.button-primary:focus-visible {
  background: #4ed3ee;
}

.button-secondary {
  color: var(--tcp-white);
  border-color: rgba(255, 255, 255, 0.7);
}

.button-secondary:hover,
.button-secondary:focus-visible {
  background: rgba(255, 255, 255, 0.12);
}

.metrics-band {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-bottom: 1px solid var(--tcp-line);
  background: var(--tcp-white);
}

.metric {
  min-height: 150px;
  padding: 30px 32px;
  border-right: 1px solid var(--tcp-line);
}

.metric:last-child {
  border-right: 0;
}

.metric strong {
  display: block;
  color: var(--tcp-blue);
  font-size: clamp(2.1rem, 4vw, 3.8rem);
  line-height: 1;
  margin-bottom: 12px;
}

.metric span {
  color: var(--tcp-muted);
  font-weight: 650;
}

.section {
  padding: 92px 22px;
}

.section-white {
  background: var(--tcp-white);
}

.section-tint {
  background: var(--tcp-surface);
}

.section-deep {
  background: var(--tcp-blue-deep);
  color: var(--tcp-white);
}

.section-contact {
  background: linear-gradient(180deg, var(--tcp-surface) 0, var(--tcp-white) 100%);
}

.content-grid,
.section-heading,
.technology-panel,
.contact-panel {
  max-width: 1180px;
  margin: 0 auto;
}

.content-grid {
  display: grid;
  grid-template-columns: minmax(240px, 0.85fr) minmax(0, 1.35fr);
  gap: 68px;
  align-items: start;
}

.content-grid-balanced {
  grid-template-columns: minmax(260px, 0.95fr) minmax(0, 1.05fr);
}

h2 {
  margin: 0;
  color: var(--tcp-blue-ink);
  font-size: clamp(2rem, 4.8vw, 3.75rem);
  line-height: 1.06;
  letter-spacing: 0;
}

.section-deep h2,
.section-deep h3 {
  color: var(--tcp-white);
}

h3 {
  margin: 0 0 12px;
  color: var(--tcp-blue-ink);
  font-size: 1.18rem;
  line-height: 1.28;
}

p {
  margin: 0;
}

.prose p + p {
  margin-top: 18px;
}

.section-heading {
  max-width: 780px;
  margin-bottom: 42px;
}

.section-heading p:last-child {
  margin-top: 16px;
  color: var(--tcp-muted);
}

.section-heading.light p:last-child,
.section-heading.light .section-kicker {
  color: #b9eaf5;
}

.card-grid {
  max-width: 1180px;
  margin: 0 auto;
  display: grid;
  gap: 20px;
}

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

.card-grid.four {
  grid-template-columns: repeat(4, 1fr);
}

.card {
  min-height: 260px;
  background: var(--tcp-white);
  border: 1px solid var(--tcp-line);
  border-radius: 8px;
  padding: 30px;
  box-shadow: 0 1px 0 rgba(6, 47, 89, 0.04);
}

.card.compact {
  min-height: 210px;
}

.card p {
  color: var(--tcp-muted);
}

.accent-blue {
  border-top: 5px solid var(--tcp-blue);
}

.accent-teal {
  border-top: 5px solid var(--tcp-teal);
}

.accent-green {
  border-top: 5px solid var(--tcp-green);
}

.sticky-intro {
  position: sticky;
  top: 104px;
}

.sticky-intro p:last-child {
  margin-top: 20px;
  color: var(--tcp-muted);
}

.flow-panel {
  background: var(--tcp-surface);
  border-radius: 8px;
  border: 1px solid var(--tcp-line);
  padding: 12px;
}

.process-list {
  list-style: none;
  margin: 0;
  padding: 0;
}

.process-list li {
  display: grid;
  grid-template-columns: 70px 1fr;
  gap: 20px;
  padding: 24px;
  background: var(--tcp-white);
  border-radius: 6px;
  border: 1px solid transparent;
}

.process-list li + li {
  margin-top: 10px;
}

.process-list span {
  color: var(--tcp-cyan);
  font-weight: 850;
  font-size: 1.35rem;
}

.process-list p {
  color: var(--tcp-muted);
}

.technology-panel {
  margin-top: 42px;
  padding: 34px;
  border-radius: 8px;
  background: var(--tcp-blue-deep);
  color: var(--tcp-white);
  box-shadow: var(--shadow-soft);
}

.technology-panel h3 {
  color: var(--tcp-white);
  margin-bottom: 22px;
}

.technology-grid,
.theme-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
}

.technology-grid span,
.theme-grid span {
  display: flex;
  align-items: center;
  min-height: 66px;
  padding: 14px 16px;
  border-radius: 6px;
  font-weight: 700;
}

.technology-grid span {
  background: rgba(255, 255, 255, 0.11);
  border: 1px solid rgba(255, 255, 255, 0.18);
}

.route-atlas-section {
  border-top: 1px solid var(--tcp-line);
}

.route-atlas-shell {
  max-width: 1180px;
  margin: 0 auto;
  display: grid;
  gap: 18px;
}

.route-atlas-toolbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 18px 20px;
  border: 1px solid var(--tcp-line);
  border-radius: 8px;
  background: var(--tcp-white);
}

.route-atlas-toolbar p {
  color: var(--tcp-muted);
  font-weight: 650;
}

.route-atlas-toolbar .button {
  font: inherit;
  cursor: pointer;
}

.route-atlas-figure {
  margin: 0;
  overflow-x: auto;
  border: 1px solid var(--tcp-line);
  border-radius: 8px;
  background: var(--tcp-white);
  box-shadow: var(--shadow-soft);
}

.route-atlas-figure > div {
  min-width: 980px;
}

.route-atlas-figure figcaption {
  padding: 16px 20px 20px;
  color: var(--tcp-muted);
  font-size: 0.92rem;
  border-top: 1px solid var(--tcp-line);
}

.route-atlas-svg {
  width: 100%;
  min-height: 1040px;
  display: block;
  font-family: "Inter", "Segoe UI", Arial, sans-serif;
  text-rendering: geometricPrecision;
}

.route-atlas-svg-publication {
  min-height: 735px;
  background: #ffffff;
}

.route-atlas-heading {
  fill: var(--tcp-blue-ink);
  font-size: 26px;
  font-weight: 850;
}

.route-atlas-subheading,
.route-source-note {
  fill: var(--tcp-muted);
  font-size: 14px;
  font-weight: 600;
}

.route-row-bg {
  fill: #f8fbfd;
  stroke: #d8e4ed;
  stroke-width: 1;
}

.route-number {
  fill: var(--tcp-white);
  font-size: 16px;
  font-weight: 850;
}

.route-title {
  fill: var(--tcp-blue-ink);
  font-size: 16px;
  font-weight: 820;
}

.route-tag,
.route-footer,
.route-step-note,
.route-stream-label,
.route-legend-label {
  fill: var(--tcp-muted);
  font-size: 11px;
  font-weight: 650;
}

.route-footer {
  font-size: 12px;
}

.route-feed-box,
.route-label-box {
  fill: var(--tcp-white);
  stroke: #c7d7e3;
  stroke-width: 1;
}

.route-feed-label,
.route-step-label {
  fill: var(--tcp-blue-ink);
  font-size: 12px;
  font-weight: 790;
}

.route-vessel {
  fill: #edf3f7;
  stroke: #36566e;
  stroke-width: 1.6;
}

.route-vessel-line {
  stroke: #6f8496;
  stroke-width: 1.2;
}

.route-bubble {
  fill: #bdebf4;
  stroke: #0f8f8c;
  stroke-width: 1;
}

.route-melt {
  fill: none;
  stroke: #f2a900;
  stroke-width: 5;
  stroke-linecap: round;
}

.route-electrode {
  stroke: #102a43;
  stroke-width: 4;
  stroke-linecap: round;
}

.route-plasma-bolt {
  fill: none;
  stroke: #b45f06;
  stroke-width: 5;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.route-steel-slab {
  fill: url("#steelGradient");
  stroke: #546a7b;
  stroke-width: 1.5;
}

.route-optional {
  fill: #6b7280;
  font-size: 10px;
  font-weight: 800;
}

.route-arrow,
.route-arrow-h2,
.route-arrow-electric,
.route-arrow-water,
.route-arrow-slag {
  stroke-width: 2.2;
  stroke-linecap: round;
}

.route-arrow {
  stroke: #324a5f;
}

.route-arrow-h2 {
  stroke: var(--tcp-cyan);
}

.route-arrow-electric {
  stroke: var(--tcp-amber);
}

.route-arrow-water {
  stroke: #6096ba;
  stroke-dasharray: 5 5;
}

.route-arrow-slag {
  stroke: #8f6b4a;
  stroke-dasharray: 7 4;
}

.route-arrowhead {
  fill: #324a5f;
}

.route-atlas-notes {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(0, 0.9fr);
  gap: 22px;
  padding: 24px;
  border: 1px solid var(--tcp-line);
  border-radius: 8px;
  background: var(--tcp-white);
}

.route-atlas-notes h3 {
  margin: 0 0 12px;
  font-size: 1rem;
}

.route-atlas-notes ul {
  margin: 0;
  padding-left: 18px;
  color: var(--tcp-muted);
}

.route-atlas-notes li + li {
  margin-top: 8px;
}

.source-list a {
  color: var(--tcp-blue);
  font-weight: 750;
  text-decoration-thickness: 1px;
  text-underline-offset: 3px;
}

.pub-figure-title {
  fill: #111827;
  font-size: 24px;
  font-weight: 740;
}

.pub-figure-subtitle,
.pub-source-note,
.pub-panel-subtitle,
.pub-panel-note,
.pub-node-detail,
.pub-stream-label,
.pub-legend-label {
  fill: #5f6f7d;
  font-size: 10.5px;
  font-weight: 560;
}

.pub-panel {
  fill: #fbfcfd;
  stroke: #cfd8e1;
  stroke-width: 1;
}

.pub-panel-letter {
  fill: #111827;
  font-size: 22px;
  font-weight: 760;
  font-style: italic;
}

.pub-panel-title {
  fill: #162434;
  font-size: 15px;
  font-weight: 720;
}

.pub-panel-subtitle {
  font-size: 10.5px;
}

.pub-panel-note {
  font-size: 10.5px;
  font-style: italic;
}

.pub-feed,
.pub-node {
  fill: #ffffff;
  stroke: #cbd5df;
  stroke-width: 1;
}

.pub-feed-kicker {
  fill: #7b8794;
  font-size: 9px;
  font-weight: 740;
  text-transform: uppercase;
}

.pub-feed-label,
.pub-node-title {
  fill: #172638;
  font-size: 11px;
  font-weight: 700;
}

.pub-node-detail {
  font-size: 9.8px;
}

.pub-glyph-line {
  fill: none;
  stroke: #2c4155;
  stroke-width: 1.25;
  vector-effect: non-scaling-stroke;
}

.pub-glyph-faint {
  stroke: #7c8c9a;
  stroke-width: 0.8;
  vector-effect: non-scaling-stroke;
}

.pub-electrode {
  stroke: #172638;
  stroke-width: 2.2;
  stroke-linecap: round;
  vector-effect: non-scaling-stroke;
}

.pub-heat-line {
  fill: none;
  stroke: #d49500;
  stroke-width: 2.2;
  stroke-linecap: round;
  vector-effect: non-scaling-stroke;
}

.pub-plasma-line {
  fill: none;
  stroke: #a85f12;
  stroke-width: 2.6;
  stroke-linecap: round;
  stroke-linejoin: round;
  vector-effect: non-scaling-stroke;
}

.pub-slab {
  fill: url("#pubSteel");
  stroke: #596879;
  stroke-width: 1;
  vector-effect: non-scaling-stroke;
}

.pub-flow,
.pub-h2-flow,
.pub-power-flow,
.pub-water-flow,
.pub-slag-flow {
  stroke-width: 1.5;
  stroke-linecap: round;
  vector-effect: non-scaling-stroke;
}

.pub-flow {
  stroke: #334155;
}

.pub-h2-flow {
  stroke: #007c89;
}

.pub-power-flow {
  stroke: #d49500;
}

.pub-water-flow {
  stroke: #4d7fa6;
  stroke-dasharray: 4 4;
}

.pub-slag-flow {
  stroke: #86684f;
  stroke-dasharray: 5 4;
}

.pub-arrowhead {
  fill: #334155;
}

.pub-legend-box {
  fill: #ffffff;
  stroke: #d7dee6;
  stroke-width: 1;
}

.pub-legend-title {
  fill: #172638;
  font-size: 11px;
  font-weight: 720;
}

.journal-figure-title {
  fill: #111827;
  font-size: 25px;
  font-weight: 740;
}

.journal-figure-subtitle,
.journal-route-subtitle,
.journal-route-note,
.journal-cell-detail,
.journal-stream-label,
.journal-legend-label,
.journal-source-note {
  fill: #596878;
  font-size: 10.5px;
  font-weight: 540;
}

.journal-column-header {
  fill: #334155;
  font-size: 10px;
  font-weight: 760;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.journal-row-rule {
  stroke: #d9e1e8;
  stroke-width: 1;
  vector-effect: non-scaling-stroke;
}

.journal-panel-letter {
  fill: #111827;
  font-size: 22px;
  font-weight: 760;
  font-style: italic;
}

.journal-route-title {
  fill: #111827;
  font-size: 15px;
  font-weight: 720;
}

.journal-route-note {
  font-style: italic;
}

.journal-cell {
  fill: #ffffff;
  stroke: #cbd5df;
  stroke-width: 1;
  vector-effect: non-scaling-stroke;
}

.journal-cell-label {
  fill: #172638;
  font-size: 11.5px;
  font-weight: 705;
}

.journal-cell-detail {
  font-size: 9.8px;
}

.journal-stream-label {
  font-size: 9.5px;
}

.journal-flow,
.journal-h2-flow,
.journal-power-flow,
.journal-water-flow,
.journal-slag-flow {
  stroke-width: 1.55;
  stroke-linecap: round;
  vector-effect: non-scaling-stroke;
}

.journal-flow {
  stroke: #334155;
}

.journal-h2-flow {
  stroke: #007c89;
}

.journal-power-flow {
  stroke: #d49500;
}

.journal-water-flow {
  stroke: #4d7fa6;
  stroke-dasharray: 4 4;
}

.journal-slag-flow {
  stroke: #86684f;
  stroke-dasharray: 5 4;
}

.journal-arrowhead {
  fill: #334155;
}

.route-atlas-svg-nature {
  min-height: 835px;
}

.nature-figure-title {
  fill: #101820;
  font-size: 25px;
  font-weight: 735;
}

.nature-figure-subtitle,
.nature-route-subtitle,
.nature-route-note,
.nature-cell-detail,
.nature-source-note {
  fill: #586675;
  font-size: 11px;
  font-weight: 520;
}

.nature-column-header {
  fill: #2f3b4a;
  font-size: 10.5px;
  font-weight: 760;
  letter-spacing: 0.045em;
  text-transform: uppercase;
}

.nature-row-rule {
  stroke: #d6dde5;
  stroke-width: 1;
  vector-effect: non-scaling-stroke;
}

.nature-panel-letter {
  fill: #101820;
  font-size: 23px;
  font-weight: 760;
  font-style: italic;
}

.nature-route-title {
  fill: #101820;
  font-size: 15.5px;
  font-weight: 720;
}

.nature-route-note {
  font-style: italic;
}

.nature-cell {
  fill: #ffffff;
  stroke: #c8d2dd;
  stroke-width: 1;
  vector-effect: non-scaling-stroke;
}

.nature-cell-label {
  fill: #132234;
  font-size: 12px;
  font-weight: 710;
}

.nature-cell-detail {
  font-size: 10.2px;
}

.nature-flow {
  stroke: #2f3b4a;
  stroke-width: 1.6;
  stroke-linecap: round;
  vector-effect: non-scaling-stroke;
}

.nature-arrowhead {
  fill: #2f3b4a;
}

.nature-badge {
  stroke-width: 0.8;
  vector-effect: non-scaling-stroke;
}

.nature-badge-feed {
  fill: #f4f6f8;
  stroke: #b9c3cf;
}

.nature-badge-h2 {
  fill: #e7f6f7;
  stroke: #6bb7bd;
}

.nature-badge-power {
  fill: #fff5dc;
  stroke: #d5a135;
}

.nature-badge-water {
  fill: #edf5fb;
  stroke: #83a9c7;
}

.nature-badge-slag {
  fill: #f4eee8;
  stroke: #a98768;
}

.nature-badge-metal {
  fill: #eef1f4;
  stroke: #96a1ad;
}

.nature-badge-product {
  fill: #eef7ee;
  stroke: #80a97b;
}

.nature-badge-text {
  fill: #233244;
  font-size: 8.8px;
  font-weight: 650;
}

.route-atlas-svg-reference {
  min-height: 900px;
  background: #ffffff;
}

.ref-fe-label {
  fill: #00617c;
  font-size: 27px;
  font-weight: 850;
}

.ref-scale-tick {
  stroke: #2f5664;
  stroke-width: 4;
  vector-effect: non-scaling-stroke;
}

.ref-feed-label {
  fill: #315064;
  font-size: 17px;
  font-weight: 760;
}

.ref-unit {
  filter: url("#refShadow");
}

.ref-unit-label,
.ref-route-caption {
  fill: #707070;
  font-size: 23px;
  font-weight: 790;
  paint-order: stroke;
  stroke: #ffffff;
  stroke-width: 5px;
  stroke-linejoin: round;
}

.ref-unit-label-small {
  fill: #707070;
  font-size: 18px;
  font-weight: 760;
  paint-order: stroke;
  stroke: #ffffff;
  stroke-width: 4px;
  stroke-linejoin: round;
}

.ref-main-label {
  fill: #101010;
  font-size: 34px;
  font-weight: 860;
  paint-order: stroke;
  stroke: #ffffff;
  stroke-width: 5px;
  stroke-linejoin: round;
}

.ref-main-label-muted {
  fill: #747474;
  font-size: 30px;
  font-weight: 850;
  paint-order: stroke;
  stroke: #ffffff;
  stroke-width: 5px;
  stroke-linejoin: round;
}

.ref-gas-line {
  stroke: #7a8287;
  stroke-width: 5;
  stroke-linecap: round;
  vector-effect: non-scaling-stroke;
}

.ref-plasma-bolt {
  fill: none;
  stroke: #e07c00;
  stroke-width: 7;
  stroke-linecap: round;
  stroke-linejoin: round;
  vector-effect: non-scaling-stroke;
}

.ref-molten-line {
  fill: none;
  stroke: #e45718;
  stroke-width: 6;
  stroke-linecap: round;
  vector-effect: non-scaling-stroke;
}

.ref-dri-pile {
  filter: url("#refShadow");
}

.ref-route,
.ref-route-muted,
.ref-route-plasma {
  fill: none;
  stroke-linecap: round;
  stroke-linejoin: round;
  vector-effect: non-scaling-stroke;
}

.ref-route {
  stroke: #3c3c3c;
  stroke-width: 3.1;
}

.ref-route-muted {
  stroke: #8a8a8a;
  stroke-width: 3;
}

.ref-route-plasma {
  stroke: #6f6f6f;
  stroke-width: 2.6;
}

.ref-node {
  fill: #1f1f1f;
  stroke: #ffffff;
  stroke-width: 4;
  vector-effect: non-scaling-stroke;
}

.ref-legend-text {
  fill: #555555;
  font-size: 23px;
  font-style: italic;
  font-weight: 560;
}

.ref-product-label {
  fill: #e19200;
  font-size: 14px;
  font-weight: 820;
}

.ref-source-note {
  fill: #64717c;
  font-size: 12px;
  font-weight: 610;
}

.ref-inset-title {
  fill: #243b53;
  font-size: 17px;
  font-weight: 820;
  letter-spacing: 0.02em;
}

.ref-inset-label {
  fill: #263847;
  font-size: 15px;
  font-weight: 780;
  paint-order: stroke;
  stroke: #ffffff;
  stroke-width: 4px;
  stroke-linejoin: round;
}

.ref-inset-detail {
  fill: #64717c;
  font-size: 11.5px;
  font-weight: 610;
}

.ref-inset-box {
  fill: #fbfcfd;
  stroke: #d4dee7;
  stroke-width: 1.2;
  vector-effect: non-scaling-stroke;
}

.ref-inset-flow {
  fill: none;
  stroke: #7c8791;
  stroke-width: 2.2;
  stroke-linecap: round;
  vector-effect: non-scaling-stroke;
}

.ref-inset-dashed {
  fill: none;
  stroke: #7c8791;
  stroke-width: 2;
  stroke-dasharray: 5 5;
  stroke-linecap: round;
  vector-effect: non-scaling-stroke;
}

.route-atlas-svg-product {
  min-height: 980px;
  background: #ffffff;
}

.pd-title {
  fill: #101820;
  font-size: 28px;
  font-weight: 820;
}

.pd-subtitle,
.pd-note {
  fill: #607080;
  font-size: 13px;
  font-weight: 610;
}

.pd-section-label {
  fill: #30475b;
  font-size: 14px;
  font-weight: 820;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.pd-col-label {
  fill: #526373;
  font-size: 12px;
  font-weight: 820;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.pd-lane {
  fill: #fbfcfd;
  stroke: #dbe4ec;
  stroke-width: 1.15;
  vector-effect: non-scaling-stroke;
}

.pd-lane-muted {
  fill: #f8fafb;
  stroke: #dbe4ec;
  stroke-width: 1.15;
  vector-effect: non-scaling-stroke;
}

.pd-lane-id {
  fill: #ffffff;
  font-size: 17px;
  font-weight: 850;
}

.pd-route-title {
  fill: #142536;
  font-size: 17px;
  font-weight: 820;
}

.pd-route-subtitle {
  fill: #64717c;
  font-size: 11.5px;
  font-weight: 610;
}

.pd-unit {
  fill: #ffffff;
  stroke: #cbd6df;
  stroke-width: 1.1;
  vector-effect: non-scaling-stroke;
}

.pd-unit-title {
  fill: #162838;
  font-size: 13px;
  font-weight: 800;
}

.pd-unit-subtitle {
  fill: #667684;
  font-size: 10.5px;
  font-weight: 620;
}

.pd-tag {
  fill: #eef3f6;
  stroke: #cbd6df;
  stroke-width: 1;
  vector-effect: non-scaling-stroke;
}

.pd-tag-text {
  fill: #314658;
  font-size: 10.5px;
  font-weight: 760;
}

.pd-flow {
  fill: none;
  stroke: #7a858e;
  stroke-width: 1.8;
  stroke-linecap: round;
  vector-effect: non-scaling-stroke;
}

.pd-flow-muted {
  fill: none;
  stroke: #9aa5ad;
  stroke-width: 1.5;
  stroke-linecap: round;
  stroke-dasharray: 5 5;
  vector-effect: non-scaling-stroke;
}

.pd-axis-label {
  fill: #00617c;
  font-size: 18px;
  font-weight: 850;
}

.pd-feed-label {
  fill: #38576a;
  font-size: 12px;
  font-weight: 760;
}

.pd-icon-line {
  fill: none;
  stroke: #5d6973;
  stroke-width: 1.5;
  stroke-linecap: round;
  stroke-linejoin: round;
  vector-effect: non-scaling-stroke;
}

.pd-icon-fill {
  fill: #eef3f6;
  stroke: #5d6973;
  stroke-width: 1.4;
  vector-effect: non-scaling-stroke;
}

.pd-heat {
  fill: none;
  stroke: #e65f1a;
  stroke-width: 3.5;
  stroke-linecap: round;
  vector-effect: non-scaling-stroke;
}

.route-atlas-svg-publication-v2 {
  min-height: 1020px;
  background: #ffffff;
  font-family: Arial, Helvetica, sans-serif;
}

.pub-title {
  fill: #152b38;
  font-size: 31px;
  font-weight: 700;
}

.pub-subtitle {
  fill: #52636d;
  font-size: 14px;
  font-weight: 400;
}

.pub-decision-note {
  fill: #355564;
  font-size: 12px;
  font-weight: 700;
}

.pub-panel-letter {
  fill: #152b38;
  font-size: 22px;
  font-weight: 700;
}

.pub-section-label,
.pub-axis-heading {
  fill: #294653;
  font-size: 13px;
  font-weight: 700;
}

.pub-col-label {
  fill: #5a6a73;
  font-size: 11px;
  font-weight: 700;
}

.pub-row,
.pub-row-muted {
  fill: #fbfcfc;
  stroke: #dbe2e5;
  stroke-width: 1;
  vector-effect: non-scaling-stroke;
}

.pub-row-muted {
  fill: #f5f7f8;
}

.pub-route-id {
  fill: #ffffff;
  font-size: 15px;
  font-weight: 700;
}

.pub-route-title {
  fill: #172d39;
  font-size: 17px;
  font-weight: 700;
}

.pub-route-note {
  fill: #5f707a;
  font-size: 11.5px;
  font-weight: 400;
}

.pub-status {
  fill: #435761;
  font-size: 10.5px;
  font-weight: 700;
}

.pub-node-title {
  fill: #1b303b;
  font-size: 12.5px;
  font-weight: 700;
}

.pub-node-note {
  fill: #667780;
  font-size: 10px;
  font-weight: 400;
}

.pub-flow,
.pub-flow-muted {
  fill: none;
  stroke: #71808a;
  stroke-width: 1.7;
  stroke-linecap: round;
  vector-effect: non-scaling-stroke;
}

.pub-flow-muted {
  stroke: #98a4aa;
  stroke-width: 1.4;
  stroke-dasharray: 5 5;
}

.pub-vessel {
  fill: #eef1f2;
  stroke: #4d5e67;
  stroke-width: 1.5;
  stroke-linejoin: round;
  vector-effect: non-scaling-stroke;
}

.pub-shaft-bed {
  fill: #e4e7df;
  stroke: #79857c;
  stroke-width: 1;
  vector-effect: non-scaling-stroke;
}

.pub-shaft-pellet,
.pub-fluidized-particle {
  fill: #98775f;
  stroke: #5f5147;
  stroke-width: 0.7;
  vector-effect: non-scaling-stroke;
}

.pub-reduction-gas,
.pub-bf-tuyere,
.pub-plasma-gas {
  fill: none;
  stroke: #27839a;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
  vector-effect: non-scaling-stroke;
}

.pub-bf-burden {
  fill: #a9b6ba;
  stroke: #63737b;
  stroke-width: 1.2;
  stroke-linecap: round;
  vector-effect: non-scaling-stroke;
}

.pub-bf-hearth {
  fill: #dc7923;
  stroke: #a74e18;
  stroke-width: 1;
  vector-effect: non-scaling-stroke;
}

.pub-coke {
  fill: #4b585e;
  stroke: #303b40;
  stroke-width: 1;
  vector-effect: non-scaling-stroke;
}

.pub-fluidized-distributor {
  stroke: #6f7d84;
  stroke-width: 1.2;
  stroke-dasharray: 2 2;
  vector-effect: non-scaling-stroke;
}

.pub-icon-line,
.pub-electrode {
  fill: none;
  stroke: #4d5e67;
  stroke-width: 1.5;
  stroke-linecap: round;
  vector-effect: non-scaling-stroke;
}

.pub-electrode {
  stroke-width: 2;
}

.pub-slag-line {
  fill: none;
  stroke: #8d9b75;
  stroke-width: 2.2;
  stroke-linecap: round;
  vector-effect: non-scaling-stroke;
}

.pub-slag-tap,
.pub-metal-tap {
  fill: none;
  stroke-width: 2.2;
  stroke-linecap: round;
  stroke-linejoin: round;
  vector-effect: non-scaling-stroke;
}

.pub-slag-tap {
  stroke: #83905f;
}

.pub-metal-tap {
  stroke: #d96a1c;
}

.pub-trunnion {
  fill: #73838b;
  stroke: #4d5e67;
  stroke-width: 1;
  vector-effect: non-scaling-stroke;
}

.pub-oxygen-lance {
  stroke: #27839a;
  stroke-width: 2.2;
  stroke-linecap: round;
  vector-effect: non-scaling-stroke;
}

.pub-oxygen-tip {
  fill: #27839a;
}

.pub-bypass-line,
.pub-bypass-arrow {
  fill: none;
  stroke: #7e8d95;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
  vector-effect: non-scaling-stroke;
}

.pub-bypass-ring {
  fill: #ffffff;
  stroke: #9aa8af;
  stroke-width: 1.4;
  stroke-dasharray: 3 3;
  vector-effect: non-scaling-stroke;
}

.pub-heat-fill {
  fill: #e99927;
  stroke: #c9621a;
  stroke-width: 1;
}

.pub-heat-line,
.pub-plasma {
  fill: none;
  stroke: #d96a1c;
  stroke-width: 3.5;
  stroke-linecap: round;
  stroke-linejoin: round;
  vector-effect: non-scaling-stroke;
}

.pub-plasma {
  stroke-width: 4.5;
}

.pub-alloy-chute {
  fill: none;
  stroke: #687981;
  stroke-width: 1.7;
  stroke-linecap: round;
  vector-effect: non-scaling-stroke;
}

.pub-refining-bubble {
  fill: #d7edf0;
  stroke: #27839a;
  stroke-width: 1;
  vector-effect: non-scaling-stroke;
}

.pub-zesty-tube {
  fill: #ffffff;
  stroke-width: 1.7;
}

.pub-zesty-heater-zone {
  stroke: #d96a1c;
  stroke-width: 2.2;
  stroke-linecap: round;
  vector-effect: non-scaling-stroke;
}

.pub-zesty-gas {
  fill: none;
  stroke: #27839a;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
  vector-effect: non-scaling-stroke;
}

.pub-zesty-solid {
  fill: #9d7657;
  stroke: #5d4c3e;
  stroke-width: 0.7;
  vector-effect: non-scaling-stroke;
}

.pub-iron,
.pub-iron-dark {
  fill: #7d898f;
  stroke: #53626a;
  stroke-width: 1;
  vector-effect: non-scaling-stroke;
}

.pub-iron-dark {
  fill: #5f6d74;
}

.pub-slag-phase {
  fill: #cbd3b4;
  stroke: #83905f;
  stroke-width: 1;
  vector-effect: non-scaling-stroke;
}

.pub-liquid-iron,
.pub-iron-pool {
  fill: #d97924;
  stroke: #a74e18;
  stroke-width: 1.5;
  stroke-linecap: round;
  vector-effect: non-scaling-stroke;
}

.pub-option-divider {
  stroke: #9aa8af;
  stroke-width: 1.2;
  stroke-dasharray: 3 3;
  vector-effect: non-scaling-stroke;
}

.pub-electrolyte {
  fill: #d9eef0;
  fill-opacity: 0.9;
  stroke: #67a4ae;
  stroke-width: 1;
  vector-effect: non-scaling-stroke;
}

.pub-anode,
.pub-cathode {
  fill: #71838b;
  stroke: #43545c;
  stroke-width: 1;
  vector-effect: non-scaling-stroke;
}

.pub-cathode {
  fill: #a4b1b6;
}

.pub-cathode-deposit {
  fill: #596970;
  stroke: #34464e;
  stroke-width: 1;
  vector-effect: non-scaling-stroke;
}

.pub-electrolysis-sign {
  fill: none;
  stroke: #2f6575;
  stroke-width: 1.5;
  stroke-linecap: round;
  vector-effect: non-scaling-stroke;
}

.pub-electrolysis-bubble {
  fill: #ffffff;
  stroke: #27839a;
  stroke-width: 1;
  vector-effect: non-scaling-stroke;
}

.pub-dri-pellet,
.pub-dri-fine,
.pub-hbi-briquette {
  fill: #7d898f;
  stroke: #4c5c64;
  stroke-width: 1;
  vector-effect: non-scaling-stroke;
}

.pub-dri-pore {
  fill: #43545c;
  opacity: 0.65;
}

.pub-dri-fine.is-dark {
  fill: #596970;
}

.pub-hbi-briquette {
  fill: #5f6d74;
  stroke: #394b54;
  stroke-width: 1.3;
}

.pub-hbi-dimple {
  fill: none;
  stroke: #a9b5ba;
  stroke-width: 1.1;
  stroke-linecap: round;
  vector-effect: non-scaling-stroke;
}

.pub-ore,
.pub-oxide {
  fill: #a9b6ba;
  stroke: #63737b;
  stroke-width: 1;
}

.pub-oxide {
  fill: #bc8c63;
}

.pub-steel,
.pub-steel-dark {
  fill: #b7c4c9;
  stroke: #687981;
  stroke-width: 1;
}

.pub-steel-dark {
  fill: #81939b;
}

.pub-semi-slab,
.pub-semi-billet {
  fill: #b7c4c9;
  stroke: #687981;
  stroke-width: 1;
  vector-effect: non-scaling-stroke;
}

.pub-semi-billet.is-dark {
  fill: #81939b;
}

.pub-semi-line {
  fill: none;
  stroke: #7b8d95;
  stroke-width: 1;
  vector-effect: non-scaling-stroke;
}

.pub-legend-text,
.pub-footer {
  fill: #5f7079;
  font-size: 11px;
  font-weight: 400;
}

.pub-ore-axis {
  stroke: #2c7184;
  stroke-width: 8;
  opacity: 0.84;
  vector-effect: non-scaling-stroke;
}

.pub-axis-tick {
  stroke: #294e5d;
  stroke-width: 2.5;
  vector-effect: non-scaling-stroke;
}

.pub-axis-label {
  fill: #17657a;
  font-size: 14px;
  font-weight: 700;
}

.pub-axis-note {
  fill: #7a8991;
  font-size: 8px;
  font-weight: 700;
}

.pub-grade-zone {
  fill: #edf1f2;
  stroke: #c9d3d7;
  stroke-width: 1;
  vector-effect: non-scaling-stroke;
}

.pub-grade-zone-dr {
  fill: #e6eeef;
}

.pub-grade-reference {
  fill: #687982;
  font-size: 8.5px;
  font-weight: 700;
}

.pub-grade-band {
  fill: var(--grade-accent, #167184);
  fill-opacity: 0;
  stroke: var(--grade-accent, #167184);
  stroke-width: 0;
  pointer-events: none;
  transition: fill-opacity 180ms ease, stroke-width 180ms ease;
  vector-effect: non-scaling-stroke;
}

.pub-grade-band.is-variable {
  stroke-dasharray: 5 4;
}

.pub-grade-band.is-selected {
  fill-opacity: 0.32;
  stroke-width: 2.5;
}

.pub-feed-label {
  fill: #4d6470;
  font-size: 10px;
  font-weight: 700;
}

.pub-footer-rule {
  stroke: #d6dfe3;
  stroke-width: 1;
  vector-effect: non-scaling-stroke;
}

.pub-route-group {
  cursor: pointer;
  transition: opacity 220ms ease;
}

.pub-route-group .pub-row,
.pub-route-group .pub-row-muted,
.pub-route-group .pub-vessel,
.pub-route-group .pub-iron,
.pub-route-group .pub-iron-dark {
  transition: fill 220ms ease, stroke 220ms ease, stroke-width 220ms ease;
}

.pub-route-group:hover .pub-row,
.pub-route-group:hover .pub-row-muted {
  fill: #f2f7f8;
  stroke: #8eb2bd;
}

.pub-route-trigger:focus-visible {
  outline: none;
}

.pub-route-group.is-keyboard-focus .pub-row,
.pub-route-group.is-keyboard-focus .pub-row-muted {
  fill: #f2f7f8;
  stroke: #167184;
  stroke-width: 2.5;
}

.pub-route-hit {
  fill: transparent;
  pointer-events: all;
}

.pub-route-group.is-dimmed {
  opacity: 0.34;
}

.pub-route-group.is-selected .pub-row,
.pub-route-group.is-selected .pub-row-muted {
  fill: #edf6f7;
  stroke: var(--route-accent, #167184);
  stroke-width: 2.2;
}

.pub-route-group.is-selected .pub-vessel {
  fill: #ffffff;
  stroke: #2f4d5a;
  stroke-width: 2;
}

.pub-route-group.is-selected .pub-flow,
.pub-route-group.is-selected .pub-flow-muted {
  stroke: var(--route-accent, #167184);
  stroke-width: 2.5;
  stroke-dasharray: 10 8;
  animation: pub-flow-advance 900ms linear infinite;
}

@keyframes pub-flow-advance {
  to {
    stroke-dashoffset: -18;
  }
}

.route-atlas-inspector {
  --route-accent: #167184;
  scroll-margin-top: 84px;
  padding: 22px 24px 24px;
  border-top: 3px solid var(--route-accent);
  background: #f5f8f9;
}

.route-inspector-heading {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 20px;
}

.route-inspector-kicker {
  margin: 0 0 5px;
  color: var(--route-accent);
  font-size: 0.74rem;
  font-weight: 800;
  letter-spacing: 0;
  text-transform: uppercase;
}

.route-inspector-heading h3 {
  margin: 0;
  color: #172d39;
  font-size: 1.15rem;
  line-height: 1.25;
}

.route-inspector-reset {
  min-height: 40px;
  padding: 8px 14px;
  border: 1px solid #9caeb6;
  border-radius: 4px;
  background: #ffffff;
  color: #294653;
  font: inherit;
  font-size: 0.86rem;
  font-weight: 700;
  cursor: pointer;
}

.route-inspector-reset:hover,
.route-inspector-reset:focus-visible {
  border-color: #167184;
  outline: 2px solid rgba(22, 113, 132, 0.22);
  outline-offset: 2px;
}

.route-inspector-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 0;
  margin: 0;
}

.route-inspector-grid > div {
  min-width: 0;
  padding: 0 18px;
  border-left: 1px solid #d5dfe3;
}

.route-inspector-grid > div:first-child {
  padding-left: 0;
  border-left: 0;
}

.route-inspector-grid dt {
  margin-bottom: 7px;
  color: #52656f;
  font-size: 0.7rem;
  font-weight: 800;
  text-transform: uppercase;
}

.route-inspector-grid dd {
  margin: 0;
  color: #243b47;
  font-size: 0.84rem;
  line-height: 1.5;
}

.route-inspector-evidence {
  display: grid;
  grid-template-columns: 170px minmax(0, 1fr);
  gap: 18px;
  align-items: start;
  margin-top: 20px;
  padding-top: 16px;
  border-top: 1px solid #d5dfe3;
}

.route-inspector-evidence p {
  margin: 0;
  color: #52656f;
  font-size: 0.7rem;
  font-weight: 800;
  text-transform: uppercase;
}

#route-inspector-evidence-links {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 18px;
}

#route-inspector-evidence-links a {
  color: #1d6677;
  font-size: 0.82rem;
  font-weight: 700;
  text-decoration-thickness: 1px;
  text-underline-offset: 3px;
}

#route-inspector-evidence-links a:hover,
#route-inspector-evidence-links a:focus-visible {
  color: var(--route-accent);
  outline-color: var(--route-accent);
}

@media (prefers-reduced-motion: reduce) {
  .pub-route-group,
  .pub-route-group .pub-row,
  .pub-route-group .pub-row-muted,
  .pub-route-group .pub-vessel,
  .pub-route-group .pub-iron,
  .pub-route-group .pub-iron-dark,
  .pub-grade-band {
    transition: none;
  }

  .pub-route-group.is-selected .pub-flow,
  .pub-route-group.is-selected .pub-flow-muted,
  .route-atlas-svg.is-reduced-motion .pub-route-group.is-selected .pub-flow,
  .route-atlas-svg.is-reduced-motion .pub-route-group.is-selected .pub-flow-muted {
    animation: none;
    stroke-dasharray: none;
  }
}

.timeline {
  max-width: 1180px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  border-top: 1px solid rgba(255, 255, 255, 0.22);
}

.timeline-item {
  min-height: 300px;
  padding: 30px 24px;
  border-right: 1px solid rgba(255, 255, 255, 0.22);
}

.timeline-item:last-child {
  border-right: 0;
}

.timeline-item time {
  display: inline-block;
  margin-bottom: 24px;
  color: var(--tcp-amber);
  font-weight: 850;
}

.timeline-item p {
  color: #cfe2ec;
}

.insight-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 28px 30px;
}

.insight-list article {
  padding-left: 18px;
  border-left: 4px solid var(--tcp-cyan);
}

.insight-list p {
  color: var(--tcp-muted);
}

.theme-grid span {
  background: var(--tcp-surface);
  border: 1px solid var(--tcp-line);
  color: var(--tcp-blue-ink);
}

.contact-panel {
  max-width: 860px;
  padding: 48px;
  background: var(--tcp-white);
  border: 1px solid var(--tcp-line);
  border-radius: 8px;
  box-shadow: var(--shadow-soft);
}

.contact-panel p {
  margin: 18px 0 26px;
  color: var(--tcp-muted);
}

.site-footer {
  padding: 34px 22px;
  background: #061f3c;
  color: #dcecf4;
  display: flex;
  justify-content: space-between;
  gap: 22px;
  align-items: center;
}

.site-footer > div {
  display: flex;
  align-items: center;
  gap: 14px;
  max-width: 760px;
}

.site-footer p {
  font-size: 0.92rem;
}

.site-footer a {
  color: var(--tcp-white);
  font-weight: 750;
  text-decoration: none;
}

.iea-ribbon {
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 92px;
  padding: 22px;
  background: #0054a6;
}

.iea-ribbon img {
  width: min(300px, 78vw);
  height: auto;
}

@media (max-width: 1040px) {
  .metrics-band,
  .card-grid.four,
  .timeline,
  .technology-grid,
  .theme-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .card-grid.three {
    grid-template-columns: 1fr;
  }

  .timeline-item:nth-child(2) {
    border-right: 0;
  }
}

@media (max-width: 760px) {
  .nav-shell {
    padding: 10px 16px;
  }

  .brand img {
    width: 164px;
  }

  .menu-toggle {
    display: inline-flex;
  }

  .primary-nav {
    position: absolute;
    left: 0;
    right: 0;
    top: 68px;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 8px 18px 18px;
    background: var(--tcp-white);
    border-bottom: 1px solid var(--tcp-line);
    box-shadow: var(--shadow-soft);
  }

  .primary-nav.is-open {
    display: flex;
  }

  .primary-nav a {
    padding: 14px 4px;
    border-bottom: 1px solid var(--tcp-line);
  }

  .hero {
    min-height: 570px;
  }

  .hero-content {
    padding: 72px 18px 70px;
  }

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

  .metrics-band,
  .content-grid,
  .content-grid-balanced,
  .technology-grid,
  .theme-grid,
  .timeline,
  .insight-list,
  .route-atlas-notes {
    grid-template-columns: 1fr;
  }

  .route-atlas-toolbar {
    align-items: stretch;
    flex-direction: column;
  }

  .route-inspector-heading {
    gap: 14px;
  }

  .route-inspector-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .route-inspector-grid > div,
  .route-inspector-grid > div:first-child {
    padding: 0 0 16px;
    border-left: 0;
    border-bottom: 1px solid #d5dfe3;
  }

  .route-inspector-grid > div:last-child {
    padding-bottom: 0;
    border-bottom: 0;
  }

  .route-inspector-evidence {
    grid-template-columns: 1fr;
    gap: 10px;
  }

  .route-atlas-figure > div {
    min-width: 920px;
  }

  .metric,
  .timeline-item {
    border-right: 0;
    border-bottom: 1px solid var(--tcp-line);
  }

  .section {
    padding: 68px 18px;
  }

  .sticky-intro {
    position: static;
  }

  .process-list li {
    grid-template-columns: 1fr;
  }

  .technology-panel,
  .contact-panel {
    padding: 28px 22px;
  }

  .site-footer {
    align-items: flex-start;
    flex-direction: column;
  }

  .iea-ribbon {
    min-height: 78px;
    padding: 18px;
  }
}
