:root {
  --ink: #101820;
  --muted: #5c6974;
  --line: #dce3e8;
  --surface: #f6f8f7;
  --white: #ffffff;
  --green: #0b6b4f;
  --green-dark: #064433;
  --amber: #e3a018;
  --cyan: #287c9b;
  --red: #bd4f3a;
  --shadow: 0 20px 60px rgba(16, 24, 32, 0.14);
  font-family: "Inter", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--white);
}

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

a {
  color: inherit;
}

.site-header {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px clamp(18px, 4vw, 56px);
  color: var(--white);
  transition: background 180ms ease, color 180ms ease, box-shadow 180ms ease;
}

.site-header.is-scrolled,
.site-header.is-open {
  color: var(--ink);
  background: rgba(255, 255, 255, 0.96);
  box-shadow: 0 8px 24px rgba(16, 24, 32, 0.08);
  backdrop-filter: blur(14px);
}

.brand {
  display: inline-flex;
  align-items: center;
  text-decoration: none;
}

.brand-logo {
  width: 252px;
  height: auto;
  max-height: 58px;
  object-fit: contain;
  filter: brightness(0) invert(1);
  transition: filter 180ms ease;
}

.site-header.is-scrolled .brand-logo,
.site-header.is-open .brand-logo,
.site-footer .brand-logo {
  filter: none;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 28px;
  font-size: 14px;
  font-weight: 700;
  text-transform: uppercase;
}

.site-nav a,
.text-link {
  text-decoration: none;
}

.site-nav a:hover,
.text-link:hover {
  color: var(--amber);
}

.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  place-items: center;
  border: 1px solid currentColor;
  border-radius: 8px;
  color: inherit;
  background: transparent;
}

.nav-toggle span {
  display: block;
  width: 20px;
  height: 2px;
  margin: 3px auto;
  background: currentColor;
}

.hero {
  position: relative;
  min-height: 92vh;
  display: grid;
  align-items: end;
  overflow: hidden;
  color: var(--white);
}

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

.hero-image {
  object-fit: cover;
  object-position: 70% 55%;
}

.hero-overlay {
  background:
    linear-gradient(90deg, rgba(5, 18, 24, 0.94) 0%, rgba(5, 18, 24, 0.74) 42%, rgba(5, 18, 24, 0.18) 100%),
    linear-gradient(0deg, rgba(5, 18, 24, 0.76) 0%, rgba(5, 18, 24, 0) 42%);
}

.hero-content {
  position: relative;
  z-index: 1;
  width: min(760px, calc(100% - 36px));
  margin: 0 auto;
  padding: 150px 0 168px;
}

.eyebrow,
.section-kicker {
  margin: 0 0 14px;
  color: var(--amber);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0;
  text-transform: uppercase;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1 {
  margin-bottom: 22px;
  font-size: clamp(42px, 6vw, 78px);
  line-height: 0.96;
  letter-spacing: 0;
}

h2 {
  margin-bottom: 18px;
  font-size: clamp(30px, 4vw, 52px);
  line-height: 1.04;
  letter-spacing: 0;
}

h3 {
  margin-bottom: 10px;
  font-size: 21px;
  line-height: 1.2;
}

p {
  color: var(--muted);
  line-height: 1.7;
}

.hero-copy {
  max-width: 680px;
  color: rgba(255, 255, 255, 0.86);
  font-size: 18px;
}

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

.button {
  display: inline-flex;
  min-height: 48px;
  align-items: center;
  justify-content: center;
  padding: 13px 20px;
  border: 1px solid transparent;
  border-radius: 8px;
  font-weight: 800;
  text-decoration: none;
  cursor: pointer;
}

.button.primary {
  color: var(--white);
  background: var(--green);
}

.button.primary:hover {
  background: var(--green-dark);
}

.button.secondary {
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.44);
  background: rgba(255, 255, 255, 0.12);
}

.button.secondary:hover {
  background: rgba(255, 255, 255, 0.2);
}

.proof-strip {
  position: absolute;
  right: clamp(18px, 4vw, 56px);
  bottom: 34px;
  z-index: 2;
  display: grid;
  grid-template-columns: repeat(3, minmax(150px, 1fr));
  width: min(720px, calc(100% - 36px));
  border: 1px solid rgba(255, 255, 255, 0.24);
  background: rgba(9, 25, 32, 0.76);
  box-shadow: var(--shadow);
  backdrop-filter: blur(14px);
}

.proof-strip div {
  padding: 20px;
  border-right: 1px solid rgba(255, 255, 255, 0.18);
}

.proof-strip div:last-child {
  border-right: 0;
}

.proof-strip strong {
  display: block;
  color: var(--white);
  font-size: 28px;
  line-height: 1;
}

.proof-strip span {
  display: block;
  margin-top: 8px;
  color: rgba(255, 255, 255, 0.72);
  font-size: 13px;
}

.section {
  padding: 96px clamp(18px, 4vw, 56px);
}

.intro,
.services,
.process {
  background: var(--surface);
}

.intro-grid,
.section-heading,
.contact {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(300px, 1.1fr);
  gap: clamp(28px, 6vw, 80px);
  align-items: start;
  max-width: 1180px;
  margin: 0 auto;
}

.intro-grid p {
  font-size: 18px;
}

.section-heading {
  align-items: end;
  margin-bottom: 34px;
}

.text-link {
  justify-self: end;
  color: var(--green);
  font-weight: 800;
}

.service-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  max-width: 1180px;
  margin: 0 auto;
}

.service-card {
  min-height: 250px;
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
}

.service-card:nth-child(2n) {
  border-top: 4px solid var(--cyan);
}

.service-card:nth-child(3n) {
  border-top: 4px solid var(--red);
}

.service-card:nth-child(3n + 1) {
  border-top: 4px solid var(--green);
}

.experience {
  background: var(--white);
}

.experience-wrap {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(320px, 1fr);
  gap: 32px;
  max-width: 1180px;
  margin: 0 auto;
  align-items: start;
}

.experience-copy p {
  max-width: 620px;
  font-size: 17px;
}

.experience-metrics {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  grid-column: 1 / -1;
  gap: 14px;
}

.experience-metrics article {
  min-height: 150px;
  padding: 26px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--surface);
}

.experience-metrics strong {
  display: block;
  margin-bottom: 12px;
  color: var(--green-dark);
  font-size: clamp(34px, 5vw, 56px);
  line-height: 1;
}

.experience-metrics span {
  color: var(--muted);
  font-weight: 800;
  text-transform: uppercase;
  font-size: 13px;
}

.coverage-card {
  grid-column: 1 / -1;
  padding: clamp(22px, 4vw, 34px);
  border: 1px solid var(--line);
  border-radius: 8px;
  background: linear-gradient(135deg, #f7faf9, #eef4f1);
}

.coverage-map {
  min-height: 360px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(11, 107, 79, 0.16);
  border-radius: 8px;
  background:
    linear-gradient(rgba(11, 107, 79, 0.06) 1px, transparent 1px),
    linear-gradient(90deg, rgba(11, 107, 79, 0.06) 1px, transparent 1px),
    var(--white);
  background-size: 34px 34px;
}

.coverage-map img {
  width: min(100%, 680px);
  height: auto;
}

.icon {
  display: inline-grid;
  width: 42px;
  height: 42px;
  place-items: center;
  margin-bottom: 28px;
  border-radius: 8px;
  color: var(--green-dark);
  background: #e4f1ed;
  font-weight: 800;
}

.industry-panel {
  display: grid;
  grid-template-columns: minmax(0, 0.82fr) minmax(320px, 1fr);
  gap: 40px;
  max-width: 1180px;
  margin: 0 auto;
  padding: clamp(30px, 6vw, 58px);
  color: var(--white);
  background: var(--ink);
  border-radius: 8px;
}

.industry-panel h2 {
  margin-bottom: 0;
}

.industry-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}

.industry-list span {
  min-height: 58px;
  display: flex;
  align-items: center;
  padding: 14px 16px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.06);
  color: rgba(255, 255, 255, 0.86);
  font-weight: 700;
}

.process-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  max-width: 1180px;
  margin: 0 auto;
}

.process-grid article {
  min-height: 280px;
  padding: 28px;
  border-left: 1px solid var(--line);
  background: var(--white);
}

.process-grid article:last-child {
  border-right: 1px solid var(--line);
}

.process-grid span {
  display: block;
  margin-bottom: 56px;
  color: var(--amber);
  font-size: 48px;
  font-weight: 800;
  line-height: 1;
}

.cta-band {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
  padding: 56px clamp(18px, 4vw, 56px);
  color: var(--white);
  background: linear-gradient(135deg, var(--green-dark), #14323d 56%, #6c3f20);
}

.cta-band > div {
  max-width: 850px;
}

.cta-band h2 {
  margin-bottom: 0;
  font-size: clamp(28px, 4vw, 44px);
}

.contact {
  align-items: stretch;
}

.contact-copy {
  padding-top: 12px;
}

.contact-methods {
  display: grid;
  gap: 12px;
  margin-top: 28px;
}

.contact-methods a {
  color: var(--green);
  font-weight: 800;
  text-decoration: none;
}

.contact-form {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--surface);
}

label {
  display: grid;
  gap: 8px;
  color: var(--ink);
  font-size: 13px;
  font-weight: 800;
  text-transform: uppercase;
}

input,
select,
textarea {
  width: 100%;
  border: 1px solid #cbd5dc;
  border-radius: 8px;
  padding: 13px 14px;
  color: var(--ink);
  background: var(--white);
  font: inherit;
}

.hidden-field {
  display: none;
}

textarea {
  resize: vertical;
}

.full {
  grid-column: 1 / -1;
}

.form-status {
  grid-column: 1 / -1;
  min-height: 24px;
  margin: 0;
  color: var(--green);
  font-weight: 700;
}

.form-status.is-error {
  color: #b42318;
}

.button:disabled {
  cursor: wait;
  opacity: 0.72;
}

.site-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 32px clamp(18px, 4vw, 56px);
  border-top: 1px solid var(--line);
}

.site-footer p {
  margin: 0;
  text-align: right;
}

@media (max-width: 920px) {
  .nav-toggle {
    display: block;
  }

  .site-nav {
    position: absolute;
    top: 78px;
    right: 18px;
    left: 18px;
    display: none;
    flex-direction: column;
    align-items: flex-start;
    gap: 0;
    padding: 12px;
    border: 1px solid var(--line);
    border-radius: 8px;
    color: var(--ink);
    background: var(--white);
    box-shadow: var(--shadow);
  }

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

  .site-nav a {
    width: 100%;
    padding: 14px;
  }

  .hero {
    min-height: 860px;
  }

  .hero-content {
    padding: 128px 0 300px;
  }

  .proof-strip {
    left: 18px;
    right: 18px;
    grid-template-columns: 1fr;
  }

  .proof-strip div {
    border-right: 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.18);
  }

  .proof-strip div:last-child {
    border-bottom: 0;
  }

  .intro-grid,
  .section-heading,
  .contact,
  .experience-wrap,
  .coverage-card,
  .industry-panel {
    grid-template-columns: 1fr;
  }

  .text-link {
    justify-self: start;
  }

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

  .process-grid article:nth-child(2n) {
    border-right: 1px solid var(--line);
  }

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

  .site-footer p {
    text-align: left;
  }
}

@media (max-width: 620px) {
  .site-header {
    padding: 14px 18px;
  }

  .brand-logo {
    width: 194px;
  }

  .hero {
    min-height: 900px;
  }

  .hero-content {
    width: calc(100% - 36px);
    padding-bottom: 330px;
  }

  h1 {
    font-size: 42px;
  }

  .hero-actions,
  .button {
    width: 100%;
  }

  .section {
    padding-top: 70px;
    padding-bottom: 70px;
  }

  .service-grid,
  .experience-metrics,
  .process-grid,
  .industry-list,
  .contact-form {
    grid-template-columns: 1fr;
  }

  .coverage-map {
    min-height: 270px;
  }

  .service-card,
  .process-grid article {
    min-height: auto;
  }

  .process-grid article,
  .process-grid article:last-child,
  .process-grid article:nth-child(2n) {
    border-right: 1px solid var(--line);
    border-bottom: 1px solid var(--line);
  }

  .process-grid span {
    margin-bottom: 28px;
  }
}

/* Resources & articles */
.resources-section {
  background: var(--white);
}

.resource-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  max-width: 1180px;
  margin: 0 auto;
}

.resource-card {
  display: flex;
  flex-direction: column;
  gap: 12px;
  min-height: 250px;
  padding: 28px;
  border: 1px solid var(--line);
  border-top: 4px solid var(--green);
  border-radius: 8px;
  background: var(--white);
  text-decoration: none;
  transition: transform 160ms ease, box-shadow 160ms ease, border-color 160ms ease;
}

.resource-card:hover {
  transform: translateY(-3px);
  border-color: var(--green);
  box-shadow: 0 14px 34px rgba(16, 24, 32, 0.1);
}

.resource-card h3 {
  margin-bottom: 0;
}

.resource-card p {
  margin-bottom: 0;
  font-size: 15px;
}

.resource-tag {
  color: var(--amber);
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
}

.resource-meta {
  margin-top: auto;
  padding-top: 10px;
  color: var(--muted);
  font-size: 13px;
  font-weight: 600;
}

.site-header.is-solid {
  color: var(--ink);
  background: rgba(255, 255, 255, 0.96);
  box-shadow: 0 8px 24px rgba(16, 24, 32, 0.08);
  backdrop-filter: blur(14px);
}

.site-header.is-solid .brand-logo {
  filter: none;
}

.page-hero {
  padding: 168px clamp(18px, 4vw, 56px) 64px;
  color: var(--white);
  background:
    linear-gradient(120deg, rgba(11, 107, 79, 0.34), transparent 54%),
    var(--ink);
}

.page-hero-inner {
  max-width: 1180px;
  margin: 0 auto;
}

.page-hero h1 {
  margin-bottom: 16px;
  font-size: clamp(34px, 4.6vw, 58px);
}

.page-hero .lead {
  max-width: 740px;
  margin-bottom: 0;
  color: rgba(255, 255, 255, 0.82);
  font-size: 17px;
}

.article-layout {
  width: min(800px, calc(100% - 36px));
  margin: 0 auto;
  padding: 60px 0 90px;
}

.article-body h2 {
  margin: 42px 0 14px;
  font-size: 27px;
  line-height: 1.2;
}

.article-body h2:first-child {
  margin-top: 0;
}

.article-body h3 {
  margin: 28px 0 10px;
  font-size: 20px;
}

.article-body ul,
.article-body ol {
  margin: 0 0 18px;
  padding-left: 24px;
  color: var(--muted);
  line-height: 1.7;
}

.article-body li {
  margin-bottom: 8px;
}

.article-body li strong,
.article-body p strong {
  color: var(--ink);
}

.callout {
  margin: 30px 0;
  padding: 20px 22px;
  border-left: 4px solid var(--green);
  border-radius: 8px;
  background: var(--surface);
}

.callout p {
  margin: 0;
  font-size: 15.5px;
}

.callout p + p {
  margin-top: 10px;
}

.back-link {
  display: inline-block;
  margin-bottom: 26px;
  color: var(--green);
  font-size: 13px;
  font-weight: 800;
  text-decoration: none;
  text-transform: uppercase;
}

.back-link:hover {
  color: var(--green-dark);
}

.hiring-strip {
  padding: 26px clamp(18px, 4vw, 56px);
  text-align: center;
  background: var(--surface);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.hiring-strip p {
  margin: 0;
  color: var(--ink);
}

.hiring-strip a {
  margin-left: 10px;
  color: var(--green);
  font-weight: 800;
  text-decoration: none;
}

.hiring-strip a:hover {
  color: var(--green-dark);
}

.role-meta {
  margin: -6px 0 20px;
  color: var(--muted);
  font-size: 14px;
  font-weight: 700;
}

.site-nav .nav-portal {
  padding: 10px 16px;
  border-radius: 8px;
  color: var(--white);
  background: var(--green);
}

.site-nav .nav-portal:hover {
  color: var(--white);
  background: var(--green-dark);
}

@media (max-width: 920px) {
  .site-nav .nav-portal {
    width: auto;
    margin: 10px 14px 6px;
    text-align: center;
  }
}

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

@media (max-width: 620px) {
  .resource-grid {
    grid-template-columns: 1fr;
  }

  .resource-card {
    min-height: auto;
  }

  .page-hero {
    padding-top: 126px;
  }
}

/* Network & Sourcing section (added 2026-07-05 with the sourcing offering) */
.section-intro {
  max-width: 760px;
  margin: 18px 0 28px;
  color: var(--muted);
  font-size: 17px;
  line-height: 1.65;
}

/* ---- 2026-07-05 visual pass: icons, footer, chips, process, polish ---- */

.icon.icon-glyph {
  color: var(--green);
}
.icon.icon-glyph svg {
  width: 24px;
  height: 24px;
}

.service-card {
  transition: transform 0.18s ease, box-shadow 0.18s ease;
}
.service-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 28px rgba(16, 24, 32, 0.08);
}

/* process steps: green circle badges instead of bare numerals */
.process-grid article > span {
  display: inline-grid;
  place-items: center;
  width: 40px;
  height: 40px;
  border-radius: 999px;
  background: var(--green);
  color: #fff;
  font-size: 17px;
}

/* industries: green marker before each item */
.industry-list span::before {
  content: "";
  flex: 0 0 8px;
  width: 8px;
  height: 8px;
  margin-right: 12px;
  border-radius: 999px;
  background: var(--amber);
}

/* footer: structured, dark, confident close */
.site-footer {
  display: block;
  background: var(--ink);
  color: rgba(255, 255, 255, 0.82);
  padding: 56px 6vw 28px;
}
.site-footer .brand-logo {
  filter: brightness(0) invert(1);
  width: 96px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  gap: 40px;
  max-width: 1120px;
  margin: 0 auto;
}
.footer-brand p {
  margin-top: 14px;
  max-width: 300px;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.66);
}
.footer-col h4 {
  margin: 0 0 14px;
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--amber);
}
.footer-col a {
  display: block;
  padding: 5px 0;
  color: rgba(255, 255, 255, 0.82);
  text-decoration: none;
}
.footer-col a:hover {
  color: #fff;
  text-decoration: underline;
}
.footer-col p {
  margin: 10px 0 0;
  color: rgba(255, 255, 255, 0.55);
  font-size: 14px;
}
.footer-legal {
  max-width: 1120px;
  margin: 40px auto 0;
  padding-top: 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.14);
  font-size: 13px;
  color: rgba(255, 255, 255, 0.5);
}
@media (max-width: 760px) {
  .footer-grid {
    grid-template-columns: 1fr;
    gap: 28px;
  }
}

/* ---- Network & Sourcing: dark bridge band (distinct from service cards) ---- */
.network-band {
  background: var(--ink);
  color: rgba(255, 255, 255, 0.85);
  padding: 88px 6vw;
}
.network-band .section-kicker {
  color: var(--amber);
}
.network-band h2 {
  color: #fff;
  max-width: 560px;
}
.network-inner {
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  gap: 56px;
  align-items: center;
  max-width: 1160px;
  margin: 0 auto;
}
.network-copy p {
  max-width: 520px;
  line-height: 1.65;
  color: rgba(255, 255, 255, 0.72);
}
.network-confidential {
  border-left: 3px solid var(--amber);
  padding-left: 14px;
  font-size: 15px;
}
.network-copy .button {
  margin-top: 10px;
}

/* the bridge diagram */
.bridge {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: 18px;
  align-items: center;
}
.bridge-side {
  display: grid;
  gap: 10px;
}
.bridge-label {
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.5);
}
.bridge-chip {
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 8px;
  padding: 12px 14px;
  font-size: 14px;
  font-weight: 600;
  color: #fff;
  background: rgba(255, 255, 255, 0.05);
}
.bridge-node {
  display: grid;
  place-items: center;
  gap: 8px;
  width: 118px;
  height: 118px;
  border-radius: 999px;
  background: var(--green);
  color: #fff;
  text-align: center;
  font-size: 12.5px;
  font-weight: 800;
  line-height: 1.25;
  box-shadow: 0 0 0 10px rgba(11, 107, 79, 0.25);
}
.bridge-node svg {
  width: 30px;
  height: 30px;
}

/* compact offerings strip */
.network-points {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 28px;
  max-width: 1160px;
  margin: 64px auto 0;
  padding-top: 44px;
  border-top: 1px solid rgba(255, 255, 255, 0.14);
}
.network-points article {
  display: flex;
  gap: 14px;
  align-items: flex-start;
}
.network-points .icon {
  width: 40px;
  height: 40px;
  margin-bottom: 0;
  flex: 0 0 40px;
  color: var(--amber);
  background: rgba(227, 160, 24, 0.14);
}
.network-points .icon svg {
  width: 22px;
  height: 22px;
}
.network-points h3 {
  margin: 0 0 6px;
  font-size: 16px;
  color: #fff;
}
.network-points p {
  margin: 0;
  font-size: 14px;
  line-height: 1.55;
  color: rgba(255, 255, 255, 0.62);
}
@media (max-width: 960px) {
  .network-inner {
    grid-template-columns: 1fr;
  }
  .network-points {
    grid-template-columns: 1fr 1fr;
  }
}
@media (max-width: 640px) {
  .bridge {
    grid-template-columns: 1fr;
    justify-items: center;
    text-align: center;
  }
  .bridge-side {
    width: 100%;
  }
  .network-points {
    grid-template-columns: 1fr;
  }
}

/* network globe (replaces the chip bridge, 2026-07-07) */
.globe-wrap {
  display: grid;
  justify-items: center;
  gap: 14px;
}
.network-globe {
  width: min(100%, 480px);
  aspect-ratio: 1;
}
.globe-caption {
  margin: 0;
  max-width: 400px;
  text-align: center;
  font-size: 13.5px;
  line-height: 1.55;
  color: rgba(255, 255, 255, 0.55);
}
