:root {
  --ink: #0a0d0c;
  --ink-soft: #171b19;
  --paper: #f4f3ee;
  --white: #ffffff;
  --muted: #636862;
  --line: #d9d9d0;
  --green: #21f119;
  --green-deep: #14c90e;
  --green-soft: #d9ffd5;
  --blue-black: #071319;
  --max: 1240px;
  --gutter: clamp(20px, 4vw, 56px);
  --shadow: 0 24px 70px rgba(5, 10, 8, .13);
  --condensed: "Arial Narrow", "Roboto Condensed", "Franklin Gothic Condensed", Impact, sans-serif;
  --sans: Arial, Helvetica, sans-serif;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; scroll-padding-top: 94px; }
body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: var(--sans);
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
body.menu-open { overflow: hidden; }
img { display: block; max-width: 100%; }
a { color: inherit; }
button, input, select { font: inherit; }
button { color: inherit; }
::selection { background: var(--green); color: var(--ink); }

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

.skip-link {
  position: fixed;
  z-index: 999;
  top: 10px;
  left: 10px;
  transform: translateY(-150%);
  padding: 10px 16px;
  background: var(--green);
  color: var(--ink);
  font-weight: 800;
  text-decoration: none;
}
.skip-link:focus { transform: translateY(0); }

.shell {
  width: min(var(--max), calc(100% - (var(--gutter) * 2)));
  margin-inline: auto;
}

.values-ribbon {
  position: relative;
  z-index: 40;
  overflow: hidden;
  background: var(--ink);
  color: var(--white);
  border-bottom: 1px solid rgba(255,255,255,.12);
}
.values-ribbon__track {
  display: flex;
  align-items: center;
  justify-content: center;
  min-width: max-content;
  min-height: 34px;
  gap: 18px;
  padding-inline: 18px;
  font-family: var(--condensed);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: .2em;
  text-transform: uppercase;
}
.values-ribbon__track i {
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: var(--green);
}

.site-header {
  position: relative;
  z-index: 30;
  background: var(--paper);
}
.institutional-bar {
  display: grid;
  grid-template-columns: minmax(120px, .82fr) auto minmax(180px, 1.1fr) auto minmax(210px, 1.3fr);
  align-items: center;
  gap: clamp(14px, 2vw, 28px);
  min-height: 104px;
  padding-block: 15px;
}
.institutional-brand {
  display: grid;
  align-items: center;
  gap: 5px;
  min-width: 0;
  text-decoration: none;
}
.institutional-brand__role {
  color: #70756f;
  font-size: 9px;
  font-weight: 800;
  letter-spacing: .16em;
  text-transform: uppercase;
}
.institutional-brand img { object-fit: contain; object-position: left center; }
.institutional-brand--inatos img { width: 112px; max-height: 62px; }
.institutional-brand--project img { width: 245px; max-height: 68px; }
.institutional-brand--government img { width: 290px; max-height: 56px; }
.institutional-separator {
  color: #a7aca6;
  font-family: Georgia, serif;
  font-size: 32px;
  font-weight: 400;
}

.nav-wrap {
  position: sticky;
  top: 0;
  z-index: 35;
  background: rgba(10, 13, 12, .97);
  color: var(--white);
  border-bottom: 1px solid rgba(255,255,255,.12);
  backdrop-filter: blur(10px);
}
.main-nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 76px;
  gap: 30px;
}
.wordmark {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
}
.wordmark__mark {
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  background: var(--green);
  color: var(--ink);
  font-family: var(--condensed);
  font-size: 18px;
  font-weight: 950;
  letter-spacing: .02em;
}
.wordmark__text {
  font-family: var(--condensed);
  font-size: 16px;
  font-weight: 900;
  line-height: .95;
  letter-spacing: .02em;
  text-transform: uppercase;
}
.main-menu {
  display: flex;
  align-items: center;
  gap: clamp(18px, 2.2vw, 32px);
}
.main-menu a {
  position: relative;
  color: rgba(255,255,255,.82);
  font-size: 13px;
  font-weight: 750;
  text-decoration: none;
}
.main-menu > a:not(.nav-report)::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -8px;
  width: 100%;
  height: 2px;
  background: var(--green);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .2s ease;
}
.main-menu > a:hover::after,
.main-menu > a:focus-visible::after { transform: scaleX(1); }
.nav-report {
  padding: 10px 14px;
  border: 1px solid rgba(255,255,255,.34);
  color: var(--white) !important;
}
.nav-report:hover { border-color: var(--green); color: var(--green) !important; }
.menu-toggle { display: none; }

.hero {
  position: relative;
  overflow: hidden;
  min-height: 750px;
  background:
    radial-gradient(circle at 90% 12%, rgba(33,241,25,.12), transparent 28%),
    var(--ink);
  color: var(--white);
}
.hero::before {
  content: "";
  position: absolute;
  inset: 0 0 auto auto;
  width: 52%;
  height: 70%;
  opacity: .18;
  background-image: radial-gradient(circle, var(--green) 1.2px, transparent 1.5px);
  background-size: 12px 12px;
  mask-image: linear-gradient(to left, #000, transparent 85%);
  pointer-events: none;
}
.hero__grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, .93fr) minmax(420px, 1.07fr);
  gap: clamp(36px, 6vw, 84px);
  align-items: center;
  padding-block: clamp(74px, 9vw, 122px) clamp(62px, 8vw, 98px);
}
.eyebrow {
  display: flex;
  align-items: center;
  gap: 12px;
  margin: 0 0 28px;
  color: rgba(255,255,255,.7);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: .16em;
  text-transform: uppercase;
}
.eyebrow span { width: 36px; height: 2px; background: var(--green); }
.hero h1 {
  margin: 0;
  max-width: 760px;
  font-family: var(--condensed);
  font-size: clamp(58px, 7.1vw, 112px);
  font-weight: 950;
  line-height: .82;
  letter-spacing: -.045em;
  text-transform: uppercase;
}
.hero h1 em {
  color: var(--green);
  font-style: normal;
}
.hero__lead {
  max-width: 650px;
  margin: 30px 0 0;
  color: rgba(255,255,255,.78);
  font-size: clamp(17px, 1.5vw, 21px);
  line-height: 1.6;
}
.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 34px;
}
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  min-height: 50px;
  padding: 13px 19px;
  border: 1px solid transparent;
  border-radius: 0;
  font-size: 13px;
  font-weight: 850;
  text-decoration: none;
  cursor: pointer;
  transition: background .2s ease, color .2s ease, border-color .2s ease, transform .2s ease;
}
.button:hover { transform: translateY(-2px); }
.button--primary { background: var(--green); color: var(--ink); }
.button--primary:hover { background: #52ff4b; }
.button--ghost { border-color: rgba(255,255,255,.4); color: var(--white); background: transparent; }
.button--ghost:hover { border-color: var(--white); }
.button--outline { border-color: var(--ink); background: transparent; color: var(--ink); }
.button--outline:hover { background: var(--ink); color: var(--white); }
.hero__signature {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  margin-top: 38px;
}
.hero__signature-line { width: 48px; height: 1px; margin-top: 8px; background: rgba(255,255,255,.4); }
.hero__signature p { margin: 0; color: rgba(255,255,255,.48); font-size: 11px; letter-spacing: .09em; text-transform: uppercase; }

.hero-collage {
  position: relative;
  display: grid;
  grid-template-columns: 1.18fr .82fr;
  grid-template-rows: 1fr 1fr;
  gap: 10px;
  min-height: 560px;
}
.hero-collage figure { margin: 0; overflow: hidden; background: #222; }
.hero-collage img { width: 100%; height: 100%; object-fit: cover; filter: saturate(.86) contrast(1.04); transition: transform .8s ease; }
.hero-collage:hover img { transform: scale(1.025); }
.hero-collage__main { grid-row: 1 / 3; }
.hero-collage__main img { object-position: 52% center; }
.hero-collage__top img { object-position: center 42%; }
.hero-collage__bottom img { object-position: center; }
.hero-collage::after {
  content: "";
  position: absolute;
  inset: -10px 28px 20px -18px;
  z-index: -1;
  border: 1px solid rgba(33,241,25,.62);
}
.hero-collage__stamp {
  position: absolute;
  right: -26px;
  bottom: 38px;
  display: grid;
  place-items: center;
  width: 88px;
  height: 88px;
  background: var(--green);
  color: var(--ink);
  transform: rotate(-7deg);
  border: 6px solid var(--ink);
  outline: 1px solid var(--green);
}
.hero-collage__stamp strong { font-family: var(--condensed); font-size: 34px; line-height: .8; }
.hero-collage__stamp span { margin-top: -14px; font-size: 10px; font-weight: 900; letter-spacing: .13em; }

.hero-metrics {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  margin-bottom: -56px;
  background: var(--paper);
  color: var(--ink);
  box-shadow: var(--shadow);
}
.hero-metrics article {
  display: grid;
  grid-template-columns: auto 1fr;
  align-items: center;
  gap: 14px;
  min-height: 112px;
  padding: 20px clamp(18px, 2vw, 30px);
  border-right: 1px solid var(--line);
}
.hero-metrics article:last-child { border-right: 0; }
.hero-metrics strong { font-family: var(--condensed); font-size: 52px; line-height: 1; font-weight: 950; }
.hero-metrics span { color: var(--muted); font-size: 12px; font-weight: 750; line-height: 1.25; text-transform: uppercase; }

.section { position: relative; padding-block: clamp(90px, 10vw, 150px); }
.section--light { padding-top: clamp(145px, 15vw, 210px); background: var(--paper); }
.section--dark { background: var(--ink); color: var(--white); }
.section-heading {
  display: grid;
  grid-template-columns: 1fr .7fr;
  gap: clamp(34px, 8vw, 110px);
  align-items: end;
  margin-bottom: clamp(44px, 7vw, 82px);
}
.section-heading h2,
.gallery-heading h2,
.impact-copy h2,
.transparency-card h2 {
  margin: 0;
  font-family: var(--condensed);
  font-size: clamp(44px, 5.7vw, 82px);
  font-weight: 950;
  line-height: .92;
  letter-spacing: -.035em;
  text-transform: uppercase;
}
.section-heading > p,
.gallery-heading > p {
  margin: 0;
  color: var(--muted);
  font-size: 17px;
  line-height: 1.7;
}
.section-heading--inverse > p { color: rgba(255,255,255,.58); }
.kicker {
  margin: 0 0 16px;
  color: #4e554f;
  font-size: 11px;
  font-weight: 900;
  letter-spacing: .18em;
  text-transform: uppercase;
}
.kicker--green { color: var(--green); }
.kicker--dark { color: rgba(255,255,255,.5); }

.project-story {
  display: grid;
  grid-template-columns: .82fr 1.18fr;
  gap: clamp(34px, 7vw, 88px);
  align-items: start;
}
.project-story__photo { margin: 0; }
.project-story__photo img { width: 100%; min-height: 560px; object-fit: cover; filter: saturate(.86); }
.project-story__photo figcaption,
.map-card figcaption {
  margin-top: 10px;
  color: #777c77;
  font-size: 10px;
  font-weight: 750;
  letter-spacing: .08em;
  text-transform: uppercase;
}
.project-story__content blockquote {
  margin: 0 0 30px;
  padding-left: 26px;
  border-left: 5px solid var(--green);
  font-family: Georgia, serif;
  font-size: clamp(24px, 2.4vw, 38px);
  font-style: italic;
  line-height: 1.35;
}
.project-story__content > p { color: var(--muted); font-size: 17px; line-height: 1.75; }
.principles-list { margin-top: 42px; border-top: 1px solid var(--line); }
.principles-list article {
  display: grid;
  grid-template-columns: 56px 1fr;
  gap: 20px;
  padding: 24px 0;
  border-bottom: 1px solid var(--line);
}
.principles-list article > span { color: var(--green-deep); font-family: var(--condensed); font-size: 24px; font-weight: 950; }
.principles-list h3 { margin: 0 0 4px; font-size: 16px; text-transform: uppercase; }
.principles-list p { margin: 0; color: var(--muted); font-size: 14px; }

.execution-band {
  display: grid;
  grid-template-columns: .82fr 2.18fr;
  margin-top: clamp(70px, 9vw, 120px);
  background: var(--ink);
  color: var(--white);
}
.execution-band__intro { padding: clamp(32px, 5vw, 62px); border-right: 1px solid rgba(255,255,255,.14); }
.execution-band__intro h3 { margin: 0; font-family: var(--condensed); font-size: clamp(34px, 3.8vw, 58px); line-height: .92; text-transform: uppercase; }
.execution-steps { display: grid; grid-template-columns: repeat(3, 1fr); }
.execution-steps article { padding: clamp(28px, 4vw, 48px); border-right: 1px solid rgba(255,255,255,.14); }
.execution-steps article:last-child { border-right: 0; }
.execution-steps strong { color: var(--green); font-family: var(--condensed); font-size: 28px; text-transform: uppercase; }
.execution-steps h4 { margin: 16px 0 8px; font-size: 14px; text-transform: uppercase; }
.execution-steps p { margin: 0; color: rgba(255,255,255,.58); font-size: 13px; line-height: 1.65; }

.modalities { overflow: hidden; }
.modalities::after {
  content: "";
  position: absolute;
  right: -12vw;
  top: 0;
  width: 58vw;
  height: 58vw;
  opacity: .12;
  background-image: radial-gradient(circle, var(--green) 1px, transparent 1.5px);
  background-size: 11px 11px;
  transform: rotate(12deg);
  pointer-events: none;
}
.modalities .shell { position: relative; z-index: 1; }
.modalities-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-top: 1px solid rgba(255,255,255,.2);
  border-left: 1px solid rgba(255,255,255,.2);
}
.modality-card {
  position: relative;
  min-height: 330px;
  padding: clamp(24px, 3vw, 38px);
  border-right: 1px solid rgba(255,255,255,.2);
  border-bottom: 1px solid rgba(255,255,255,.2);
  background: rgba(255,255,255,.015);
  transition: background .25s ease, color .25s ease;
}
.modality-card:hover { background: var(--green); color: var(--ink); }
.modality-card__number { position: absolute; top: 18px; right: 20px; color: rgba(255,255,255,.24); font-size: 11px; font-weight: 900; }
.modality-card:hover .modality-card__number { color: rgba(0,0,0,.4); }
.modality-card__abbr {
  display: grid;
  place-items: center;
  width: 72px;
  height: 72px;
  margin-bottom: 54px;
  border: 1px solid rgba(255,255,255,.35);
  font-family: var(--condensed);
  font-size: 27px;
  font-weight: 950;
}
.modality-card:hover .modality-card__abbr { border-color: var(--ink); }
.modality-card h3 { margin: 0 0 14px; font-family: var(--condensed); font-size: 28px; line-height: .95; text-transform: uppercase; }
.modality-card p { margin: 0; color: rgba(255,255,255,.56); font-size: 13px; line-height: 1.65; }
.modality-card:hover p { color: rgba(0,0,0,.7); }

.impact { background: #e8e8e1; }
.impact-grid { display: grid; grid-template-columns: 1.1fr .9fr; gap: clamp(44px, 7vw, 100px); align-items: start; }
.impact-copy h2 { max-width: 740px; }
.impact-copy > p:not(.kicker) { max-width: 720px; margin: 26px 0 0; color: var(--muted); font-size: 18px; line-height: 1.75; }
.impact-points { margin-top: 48px; display: grid; grid-template-columns: 1fr 1fr; border-top: 1px solid #c9cac2; border-left: 1px solid #c9cac2; }
.impact-points article { display: grid; grid-template-columns: 35px 1fr; gap: 14px; padding: 24px; border-right: 1px solid #c9cac2; border-bottom: 1px solid #c9cac2; }
.impact-points article > span { color: var(--green-deep); font-family: var(--condensed); font-size: 28px; font-weight: 950; }
.impact-points h3 { margin: 2px 0 6px; font-size: 14px; text-transform: uppercase; }
.impact-points p { margin: 0; color: var(--muted); font-size: 13px; }
.ods-panel {
  position: sticky;
  top: 104px;
  padding: clamp(34px, 5vw, 58px);
  background: var(--ink);
  color: var(--white);
  box-shadow: var(--shadow);
}
.ods-panel::before { content: ""; position: absolute; inset: 0 0 auto auto; width: 42%; height: 42%; background-image: radial-gradient(circle, var(--green) 1px, transparent 1.5px); background-size: 10px 10px; opacity: .25; }
.ods-panel__eyebrow { position: relative; margin: 0 0 16px; color: var(--green); font-size: 11px; font-weight: 900; letter-spacing: .18em; text-transform: uppercase; }
.ods-panel h3 { position: relative; margin: 0 0 34px; max-width: 520px; font-family: var(--condensed); font-size: clamp(32px, 3.4vw, 48px); line-height: .95; text-transform: uppercase; }
.ods-grid { position: relative; display: grid; grid-template-columns: repeat(2, 1fr); border-top: 1px solid rgba(255,255,255,.18); border-left: 1px solid rgba(255,255,255,.18); }
.ods-grid article { display: flex; align-items: center; gap: 13px; min-height: 94px; padding: 16px; border-right: 1px solid rgba(255,255,255,.18); border-bottom: 1px solid rgba(255,255,255,.18); }
.ods-grid article:last-child { grid-column: 1 / 3; }
.ods-grid strong { color: var(--green); font-family: var(--condensed); font-size: 34px; }
.ods-grid span { color: rgba(255,255,255,.78); font-size: 11px; font-weight: 750; line-height: 1.25; text-transform: uppercase; }
.ods-panel__note { position: relative; margin: 28px 0 0; color: rgba(255,255,255,.52); font-size: 13px; }

.territories { background: var(--paper); }
.territory-overview { display: grid; grid-template-columns: minmax(0, 1.35fr) minmax(290px, .65fr); gap: clamp(28px, 5vw, 70px); align-items: start; }
.territory-overview--interactive { position: relative; }

.interactive-map-card {
  min-width: 0;
  background: #080b09;
  color: var(--white);
  border: 1px solid #1d251f;
  box-shadow: 0 24px 70px rgba(10,13,12,.16);
  overflow: hidden;
}
.map-toolbar {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 22px;
  padding: clamp(24px, 4vw, 38px);
  border-bottom: 1px solid rgba(255,255,255,.12);
}
.map-toolbar__eyebrow {
  margin: 0 0 8px;
  color: var(--green);
  font-size: 10px;
  font-weight: 900;
  letter-spacing: .18em;
  text-transform: uppercase;
}
.map-toolbar h3 {
  margin: 0;
  max-width: 560px;
  font-family: var(--condensed);
  font-size: clamp(30px, 4vw, 50px);
  line-height: .94;
  text-transform: uppercase;
}
.map-reset {
  flex: 0 0 auto;
  min-height: 40px;
  padding: 10px 13px;
  border: 1px solid rgba(255,255,255,.28);
  background: transparent;
  color: rgba(255,255,255,.72);
  font-size: 9px;
  font-weight: 900;
  letter-spacing: .1em;
  text-transform: uppercase;
  cursor: pointer;
  transition: border-color .2s ease, background .2s ease, color .2s ease;
}
.map-reset:hover,
.map-reset:focus-visible,
.map-reset.is-active { border-color: var(--green); color: var(--white); }
.map-reset.is-active { background: rgba(112,255,0,.1); }

.map-stage { position: relative; padding: 12px 12px 0; background: radial-gradient(circle at 70% 36%, rgba(112,255,0,.08), transparent 36%); }
.nuclei-map { display: block; width: 100%; height: auto; min-height: 420px; overflow: visible; }
.map-background { fill: none; stroke: rgba(255,255,255,.035); stroke-width: 1; }
.state-shadow { fill: #000; opacity: .42; transform: translateY(9px); filter: url(#map-shadow); }
.state-shape { fill: #172019; stroke: rgba(255,255,255,.38); stroke-width: 1.6; }
.state-texture { fill: url(#map-dot-pattern); color: rgba(112,255,0,.12); pointer-events: none; }
.region-lines { fill: none; stroke: rgba(255,255,255,.16); stroke-width: 1.1; stroke-dasharray: 4 6; }
.region-labels text { fill: rgba(255,255,255,.35); font-size: 9px; font-weight: 900; letter-spacing: .12em; text-transform: uppercase; }
.metro-connector { fill: none; stroke: var(--green); stroke-width: 1.2; stroke-dasharray: 4 5; opacity: .6; }
.metro-anchor { cursor: pointer; outline: none; }
.metro-anchor__pulse { fill: rgba(112,255,0,.10); stroke: rgba(112,255,0,.38); stroke-width: 1; transform-origin: 342px 331px; animation: mapPulse 2.8s ease-in-out infinite; }
.metro-anchor__circle { fill: var(--green); stroke: #0b0e0c; stroke-width: 3; }
.metro-anchor text { fill: #071006; font-family: var(--condensed); font-size: 14px; font-weight: 950; text-anchor: middle; pointer-events: none; }
.metro-anchor:focus-visible .metro-anchor__circle { stroke: var(--white); stroke-width: 4; }
.metro-anchor.is-muted { opacity: .18; }

.metro-inset rect { fill: rgba(7,10,8,.88); stroke: rgba(255,255,255,.25); stroke-width: 1; }
.metro-inset path { fill: none; stroke: rgba(255,255,255,.12); stroke-width: 1; }
.metro-inset text { fill: rgba(255,255,255,.34); font-size: 7px; font-weight: 900; letter-spacing: .14em; }
.metro-inset__title { fill: rgba(255,255,255,.65) !important; font-size: 8px !important; }
.metro-inset__east { text-anchor: end; }

.map-marker {
  cursor: pointer;
  outline: none;
  transform-box: fill-box;
  transform-origin: center;
  transition: opacity .2s ease;
}
.map-marker__halo { fill: transparent; stroke: transparent; stroke-width: 2; }
.map-marker__pulse { fill: rgba(112,255,0,.1); stroke: rgba(112,255,0,.35); stroke-width: 1; opacity: 0; transform-origin: center; }
.map-marker__dot { fill: var(--green); stroke: #071006; stroke-width: 2.2; transition: transform .18s ease, fill .18s ease; }
.map-marker__number { fill: #071006; font-size: 4.8px; font-weight: 950; pointer-events: none; }
.map-marker--metro .map-marker__dot { fill: #ffffff; stroke: var(--green); stroke-width: 2.3; }
.map-marker--metro .map-marker__number { fill: #071006; }
.map-marker:hover .map-marker__dot,
.map-marker:focus-visible .map-marker__dot { transform: scale(1.35); fill: var(--white); }
.map-marker--metro:hover .map-marker__dot,
.map-marker--metro:focus-visible .map-marker__dot { fill: var(--green); }
.map-marker:hover .map-marker__pulse,
.map-marker:focus-visible .map-marker__pulse { opacity: 1; animation: markerPulse 1.5s ease-out infinite; }
.map-marker:focus-visible .map-marker__halo { stroke: var(--white); }
.map-marker.is-muted { opacity: .08; pointer-events: none; }
.map-marker.is-match { opacity: 1; }

.map-tooltip {
  position: absolute;
  z-index: 5;
  width: max-content;
  max-width: min(260px, calc(100% - 30px));
  padding: 12px 14px;
  background: var(--white);
  color: var(--ink);
  box-shadow: 0 14px 34px rgba(0,0,0,.35);
  pointer-events: none;
  opacity: 0;
  transform: translate(-50%, calc(-100% - 14px));
  transition: opacity .15s ease, transform .15s ease;
}
.map-tooltip::after { content: ""; position: absolute; left: 50%; bottom: -7px; width: 14px; height: 14px; background: var(--white); transform: translateX(-50%) rotate(45deg); }
.map-tooltip.is-visible { opacity: 1; transform: translate(-50%, calc(-100% - 10px)); }
.map-tooltip strong { position: relative; z-index: 1; display: block; font-size: 13px; text-transform: uppercase; }
.map-tooltip span { position: relative; z-index: 1; display: block; margin-top: 3px; color: var(--muted); font-size: 10px; }

.map-legend { display: flex; flex-wrap: wrap; gap: 16px; padding: 0 24px 18px; color: rgba(255,255,255,.54); font-size: 9px; font-weight: 800; letter-spacing: .08em; text-transform: uppercase; }
.map-legend span { display: inline-flex; align-items: center; gap: 8px; }
.map-legend i { display: inline-block; flex: 0 0 auto; }
.map-legend__dot { width: 10px; height: 10px; border-radius: 50%; background: var(--green); border: 2px solid #071006; box-shadow: 0 0 0 1px rgba(255,255,255,.3); }
.map-legend__cluster { width: 18px; height: 18px; border-radius: 50%; background: rgba(112,255,0,.12); border: 1px solid rgba(112,255,0,.55); box-shadow: inset 0 0 0 5px var(--green); }
.map-footer { display: grid; grid-template-columns: auto 1fr; gap: 24px; align-items: center; padding: 17px 24px; border-top: 1px solid rgba(255,255,255,.12); }
.map-footer p { margin: 0; color: rgba(255,255,255,.42); font-size: 9px; line-height: 1.5; }
.map-footer p:first-child { color: var(--green); font-weight: 900; letter-spacing: .1em; text-transform: uppercase; white-space: nowrap; }

@keyframes mapPulse { 50% { transform: scale(1.18); opacity: .35; } }
@keyframes markerPulse { to { transform: scale(1.75); opacity: 0; } }

.regions-panel { padding-left: clamp(0px, 2vw, 24px); }
.regions-panel__label { margin: 0 0 20px; color: var(--muted); font-size: 11px; font-weight: 900; letter-spacing: .18em; text-transform: uppercase; }
.regions-panel ol { margin: 0; padding: 0; list-style: none; border-top: 1px solid var(--line); }
.regions-panel li { border-bottom: 1px solid var(--line); }
.region-map-filter {
  display: grid;
  grid-template-columns: 38px minmax(0, 1fr) auto;
  gap: 12px;
  align-items: center;
  width: 100%;
  padding: 16px 0;
  border: 0;
  background: transparent;
  color: var(--ink);
  text-align: left;
  cursor: pointer;
  transition: padding .2s ease, background .2s ease;
}
.region-map-filter > span { color: var(--green-deep); font-family: var(--condensed); font-size: 17px; font-weight: 950; }
.region-map-filter > strong { min-width: 0; font-family: var(--condensed); font-size: 20px; font-weight: 900; line-height: 1; text-transform: uppercase; }
.region-map-filter > em { display: grid; place-items: center; min-width: 30px; height: 30px; padding: 0 8px; background: #e7e9e2; color: var(--muted); font-size: 10px; font-style: normal; font-weight: 900; }
.region-map-filter:hover,
.region-map-filter:focus-visible,
.region-map-filter.is-active { padding-inline: 12px; background: var(--ink); color: var(--white); outline: none; }
.region-map-filter:hover > em,
.region-map-filter:focus-visible > em,
.region-map-filter.is-active > em { background: var(--green); color: var(--ink); }
.regions-panel > p:last-child { margin: 25px 0 0; color: var(--muted); font-size: 14px; line-height: 1.6; }

.nuclei-directory { margin-top: clamp(72px, 10vw, 130px); padding-top: 42px; border-top: 6px solid var(--ink); }
.directory-head { display: flex; justify-content: space-between; align-items: end; gap: 20px; margin-bottom: 28px; }
.directory-head h3 { margin: 0; font-family: var(--condensed); font-size: clamp(34px, 4vw, 54px); line-height: 1; text-transform: uppercase; }
.directory-head > p { margin: 0; color: var(--muted); font-size: 12px; font-weight: 800; text-transform: uppercase; }
.directory-filters { display: grid; grid-template-columns: 1.4fr .75fr .75fr; gap: 10px; margin-bottom: 24px; }
.search-field, .select-field { position: relative; display: block; }
.search-field svg { position: absolute; left: 17px; top: 50%; width: 19px; height: 19px; transform: translateY(-50%); fill: none; stroke: var(--ink); stroke-width: 1.8; }
.search-field input,
.select-field select {
  width: 100%;
  min-height: 54px;
  border: 1px solid #bfc2bb;
  border-radius: 0;
  background: var(--white);
  color: var(--ink);
  outline: none;
}
.search-field input { padding: 12px 16px 12px 50px; }
.select-field select { padding: 12px 42px 12px 15px; appearance: none; background-image: linear-gradient(45deg, transparent 50%, var(--ink) 50%), linear-gradient(135deg, var(--ink) 50%, transparent 50%); background-position: calc(100% - 19px) 50%, calc(100% - 14px) 50%; background-size: 5px 5px, 5px 5px; background-repeat: no-repeat; }
.search-field input:focus, .select-field select:focus { border-color: var(--ink); box-shadow: 0 0 0 2px var(--green); }
.nuclei-grid { display: grid; grid-template-columns: repeat(4, 1fr); border-top: 1px solid var(--line); border-left: 1px solid var(--line); }
.nucleus-card {
  position: relative;
  display: flex;
  flex-direction: column;
  min-height: 250px;
  padding: 24px;
  border: 0;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: transparent;
  text-align: left;
  cursor: pointer;
  transition: background .2s ease, color .2s ease;
}
.nucleus-card:hover, .nucleus-card:focus-visible { background: var(--ink); color: var(--white); outline: none; }
.nucleus-card__top { display: flex; justify-content: space-between; gap: 12px; color: var(--muted); font-size: 10px; font-weight: 850; letter-spacing: .1em; text-transform: uppercase; }
.nucleus-card:hover .nucleus-card__top, .nucleus-card:focus-visible .nucleus-card__top { color: rgba(255,255,255,.52); }
.nucleus-card__index { color: var(--green-deep); }
.nucleus-card h4 { margin: auto 0 12px; padding-top: 42px; font-family: var(--condensed); font-size: 27px; line-height: .98; text-transform: uppercase; }
.nucleus-card__location { margin: 0; color: var(--muted); font-size: 13px; }
.nucleus-card:hover .nucleus-card__location, .nucleus-card:focus-visible .nucleus-card__location { color: rgba(255,255,255,.62); }
.nucleus-card__arrow { position: absolute; right: 22px; bottom: 20px; color: var(--green-deep); font-size: 24px; }
.directory-actions { display: flex; align-items: center; justify-content: center; gap: 24px; margin-top: 32px; }
.text-button { border: 0; background: transparent; color: var(--muted); font-size: 12px; font-weight: 800; text-decoration: underline; cursor: pointer; }
.empty-state { grid-column: 1 / -1; padding: 56px 24px; border-right: 1px solid var(--line); border-bottom: 1px solid var(--line); text-align: center; color: var(--muted); }

.field-gallery { overflow: hidden; background: var(--ink); color: var(--white); }
.gallery-heading { display: grid; grid-template-columns: 1fr .65fr; gap: clamp(30px, 7vw, 100px); align-items: end; margin-bottom: 52px; }
.gallery-heading > p { color: rgba(255,255,255,.55); }
.gallery-grid { display: grid; grid-template-columns: repeat(4, 1fr); grid-auto-rows: 260px; gap: 10px; }
.gallery-item { position: relative; overflow: hidden; padding: 0; border: 0; background: #111; cursor: zoom-in; }
.gallery-item--wide { grid-column: span 2; }
.gallery-item--tall { grid-row: span 2; }
.gallery-item img { width: 100%; height: 100%; object-fit: cover; filter: saturate(.78) contrast(1.06); transition: transform .55s ease, filter .55s ease; }
.gallery-item:hover img { transform: scale(1.045); filter: saturate(1); }
.gallery-item::after { content: ""; position: absolute; inset: 0; background: linear-gradient(to top, rgba(0,0,0,.72), transparent 52%); }
.gallery-item span { position: absolute; z-index: 2; left: 18px; bottom: 16px; color: var(--white); font-size: 10px; font-weight: 900; letter-spacing: .16em; text-transform: uppercase; }

.transparency { background: var(--green); }
.transparency-card { display: grid; grid-template-columns: 1fr 1fr; background: var(--ink); color: var(--white); box-shadow: var(--shadow); }
.transparency-card__copy { padding: clamp(38px, 6vw, 76px); border-right: 1px solid rgba(255,255,255,.15); }
.transparency-card h2 { font-size: clamp(42px, 5vw, 72px); }
.transparency-card__copy > p:not(.kicker) { margin: 24px 0 30px; color: rgba(255,255,255,.6); font-size: 16px; line-height: 1.75; }
.project-facts { margin: 0; padding: clamp(28px, 5vw, 62px); }
.project-facts > div { display: grid; grid-template-columns: 135px 1fr; gap: 20px; padding: 18px 0; border-bottom: 1px solid rgba(255,255,255,.14); }
.project-facts > div:first-child { border-top: 1px solid rgba(255,255,255,.14); }
.project-facts dt { color: var(--green); font-size: 10px; font-weight: 900; letter-spacing: .12em; text-transform: uppercase; }
.project-facts dd { margin: 0; color: rgba(255,255,255,.76); font-size: 13px; }

.site-footer { background: #050706; color: var(--white); padding-block: 58px 24px; }
.footer-brand-chain { display: grid; grid-template-columns: minmax(90px, .7fr) auto minmax(160px, 1fr) auto minmax(210px, 1.4fr); align-items: center; gap: clamp(16px, 3vw, 38px); padding-bottom: 42px; border-bottom: 1px solid rgba(255,255,255,.14); }
.footer-brand-chain > span { color: rgba(255,255,255,.34); font-size: 34px; }
.footer-logo { object-fit: contain; object-position: left center; }
.footer-logo--inatos { width: 135px; max-height: 84px; }
.footer-logo--project { width: 260px; max-height: 85px; }
.footer-logo--government { width: 330px; max-height: 64px; }
.footer-grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr .65fr; gap: clamp(28px, 5vw, 70px); padding-block: 48px; }
.footer-title { margin: 0 0 14px; font-family: var(--condensed); font-size: 25px; font-weight: 950; text-transform: uppercase; }
.footer-grid p:not(.footer-title), .footer-grid address { color: rgba(255,255,255,.52); font-size: 13px; font-style: normal; }
.footer-label { margin: 0 0 12px !important; color: var(--green) !important; font-size: 10px !important; font-weight: 900; letter-spacing: .14em; text-transform: uppercase; }
.footer-grid a { display: block; margin: 7px 0; color: rgba(255,255,255,.72); font-size: 13px; text-decoration: none; }
.footer-grid a:hover { color: var(--green); }
.footer-bottom { display: flex; justify-content: space-between; gap: 20px; padding-top: 22px; border-top: 1px solid rgba(255,255,255,.14); }
.footer-bottom p, .footer-bottom a { margin: 0; color: rgba(255,255,255,.4); font-size: 10px; text-decoration: none; }

.nucleus-dialog, .lightbox {
  width: min(600px, calc(100% - 32px));
  max-height: calc(100vh - 32px);
  padding: clamp(28px, 5vw, 54px);
  border: 0;
  border-top: 8px solid var(--green);
  background: var(--paper);
  color: var(--ink);
  box-shadow: 0 30px 100px rgba(0,0,0,.45);
}
.nucleus-dialog::backdrop, .lightbox::backdrop { background: rgba(2,5,4,.82); backdrop-filter: blur(4px); }
.dialog-close { position: absolute; top: 14px; right: 16px; width: 38px; height: 38px; border: 1px solid var(--line); background: transparent; font-size: 26px; line-height: 1; cursor: pointer; }
.dialog-kicker { margin: 0 42px 12px 0; color: var(--muted); font-size: 10px; font-weight: 900; letter-spacing: .14em; text-transform: uppercase; }
.nucleus-dialog h2 { margin: 0; padding-right: 38px; font-family: var(--condensed); font-size: clamp(38px, 6vw, 64px); line-height: .95; text-transform: uppercase; }
.dialog-modality { display: inline-block; margin: 22px 0 28px; padding: 8px 11px; background: var(--green); font-size: 11px; font-weight: 900; text-transform: uppercase; }
.nucleus-dialog dl { margin: 0; border-top: 1px solid var(--line); }
.nucleus-dialog dl > div { display: grid; grid-template-columns: 135px 1fr; gap: 18px; padding: 17px 0; border-bottom: 1px solid var(--line); }
.nucleus-dialog dt { color: var(--muted); font-size: 10px; font-weight: 900; letter-spacing: .1em; text-transform: uppercase; }
.nucleus-dialog dd { margin: 0; font-size: 14px; }
.dialog-note { margin: 24px 0 0; color: var(--muted); font-size: 12px; }
.lightbox { width: min(1040px, calc(100% - 28px)); padding: 18px; background: #050706; border-top-color: var(--green); color: var(--white); }
.lightbox img { width: 100%; max-height: 76vh; object-fit: contain; }
.lightbox p { margin: 14px 8px 4px; color: rgba(255,255,255,.65); font-size: 13px; }
.lightbox .dialog-close { z-index: 2; border-color: rgba(255,255,255,.25); background: rgba(0,0,0,.6); color: var(--white); }

.reveal { opacity: 0; transform: translateY(22px); transition: opacity .65s ease, transform .65s ease; }
.reveal.is-visible { opacity: 1; transform: translateY(0); }

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: .01ms !important; animation-iteration-count: 1 !important; transition-duration: .01ms !important; }
  .reveal { opacity: 1; transform: none; }
}

@media (max-width: 1100px) {
  .institutional-bar { grid-template-columns: minmax(100px, .7fr) auto minmax(160px, 1fr) auto minmax(190px, 1.2fr); }
  .institutional-brand--project img { width: 205px; }
  .institutional-brand--government img { width: 250px; }
  .main-menu { gap: 18px; }
  .hero__grid { grid-template-columns: .9fr 1.1fr; gap: 38px; }
  .hero-collage { min-height: 500px; }
  .modalities-grid { grid-template-columns: repeat(3, 1fr); }
  .nuclei-grid { grid-template-columns: repeat(3, 1fr); }
  .footer-grid { grid-template-columns: 1.2fr 1fr 1fr; }
  .footer-grid > div:last-child { grid-column: 1 / -1; display: flex; gap: 24px; align-items: center; border-top: 1px solid rgba(255,255,255,.12); padding-top: 22px; }
  .footer-grid > div:last-child .footer-label { margin-right: 12px !important; }
}

@media (max-width: 900px) {
  :root { --gutter: 22px; }
  .institutional-bar { grid-template-columns: 1fr auto 1.25fr auto 1.45fr; min-height: 90px; gap: 12px; }
  .institutional-brand__role { font-size: 8px; }
  .institutional-brand--inatos img { width: 82px; max-height: 52px; }
  .institutional-brand--project img { width: 165px; max-height: 54px; }
  .institutional-brand--government img { width: 195px; max-height: 46px; }
  .institutional-separator { font-size: 24px; }
  .menu-toggle {
    display: inline-grid;
    place-content: center;
    gap: 5px;
    width: 44px;
    height: 44px;
    padding: 0;
    border: 1px solid rgba(255,255,255,.32);
    background: transparent;
    cursor: pointer;
  }
  .menu-toggle span:not(.sr-only) { display: block; width: 20px; height: 2px; background: var(--white); transition: transform .2s ease, opacity .2s ease; }
  .menu-toggle[aria-expanded="true"] span:nth-of-type(2) { transform: translateY(7px) rotate(45deg); }
  .menu-toggle[aria-expanded="true"] span:nth-of-type(3) { opacity: 0; }
  .menu-toggle[aria-expanded="true"] span:nth-of-type(4) { transform: translateY(-7px) rotate(-45deg); }
  .main-menu {
    position: fixed;
    inset: 76px 0 auto 0;
    display: grid;
    gap: 0;
    padding: 10px var(--gutter) 28px;
    background: var(--ink);
    border-top: 1px solid rgba(255,255,255,.12);
    transform: translateY(-130%);
    opacity: 0;
    pointer-events: none;
    transition: transform .28s ease, opacity .28s ease;
  }
  .main-menu.is-open { transform: translateY(0); opacity: 1; pointer-events: auto; }
  .main-menu a { padding: 16px 0; border-bottom: 1px solid rgba(255,255,255,.12); font-size: 16px; }
  .nav-report { margin-top: 14px; padding: 14px !important; text-align: center; }
  .hero { min-height: auto; }
  .hero__grid { grid-template-columns: 1fr; padding-top: 72px; }
  .hero h1 { max-width: 720px; font-size: clamp(62px, 12vw, 98px); }
  .hero__lead { max-width: 720px; }
  .hero-collage { min-height: 600px; max-width: 720px; }
  .hero-metrics { grid-template-columns: 1fr 1fr; }
  .hero-metrics article:nth-child(2) { border-right: 0; }
  .hero-metrics article:nth-child(-n+2) { border-bottom: 1px solid var(--line); }
  .section-heading, .gallery-heading { grid-template-columns: 1fr; align-items: start; }
  .section-heading > p, .gallery-heading > p { max-width: 700px; }
  .project-story { grid-template-columns: 1fr; }
  .project-story__photo img { min-height: 0; max-height: 650px; }
  .execution-band { grid-template-columns: 1fr; }
  .execution-band__intro { border-right: 0; border-bottom: 1px solid rgba(255,255,255,.14); }
  .impact-grid { grid-template-columns: 1fr; }
  .ods-panel { position: relative; top: auto; }
  .territory-overview { grid-template-columns: 1fr; }
  .regions-panel { padding-left: 0; }
  .directory-filters { grid-template-columns: 1fr 1fr; }
  .search-field { grid-column: 1 / -1; }
  .nuclei-grid { grid-template-columns: repeat(2, 1fr); }
  .gallery-grid { grid-template-columns: repeat(3, 1fr); }
  .transparency-card { grid-template-columns: 1fr; }
  .transparency-card__copy { border-right: 0; border-bottom: 1px solid rgba(255,255,255,.15); }
  .footer-brand-chain { grid-template-columns: 1fr auto 1.2fr auto 1.4fr; }
  .footer-logo--inatos { width: 105px; }
  .footer-logo--project { width: 205px; }
  .footer-logo--government { width: 240px; }
}

@media (max-width: 680px) {
  :root { --gutter: 17px; }
  .values-ribbon__track { justify-content: flex-start; animation: ticker 24s linear infinite; }
  @keyframes ticker { to { transform: translateX(-50%); } }
  .institutional-bar {
    grid-template-columns: 1fr;
    gap: 12px;
    padding-block: 16px;
  }
  .institutional-brand { grid-template-columns: 64px 1fr; align-items: center; gap: 14px; padding-bottom: 10px; border-bottom: 1px solid var(--line); }
  .institutional-brand:last-child { border-bottom: 0; padding-bottom: 0; }
  .institutional-brand__role { grid-column: 1; grid-row: 1; }
  .institutional-brand img { grid-column: 2; grid-row: 1; }
  .institutional-brand--inatos img { width: 86px; }
  .institutional-brand--project img { width: 190px; }
  .institutional-brand--government img { width: 220px; }
  .institutional-separator { display: none; }
  .main-nav { min-height: 70px; }
  .main-menu { inset-top: 70px; }
  .wordmark__text { display: none; }
  .hero__grid { padding-top: 62px; }
  .hero h1 { font-size: clamp(52px, 16vw, 74px); }
  .hero__lead { font-size: 16px; }
  .hero__actions { flex-direction: column; align-items: stretch; }
  .hero-collage { grid-template-columns: 1fr 1fr; grid-template-rows: 1.15fr .85fr; min-height: 480px; }
  .hero-collage__main { grid-column: 1 / 3; grid-row: 1; }
  .hero-collage__top { grid-column: 1; grid-row: 2; }
  .hero-collage__bottom { grid-column: 2; grid-row: 2; }
  .hero-collage::after { inset: -8px 14px 12px -8px; }
  .hero-collage__stamp { right: 5px; bottom: 22px; width: 72px; height: 72px; }
  .hero-metrics { margin-bottom: -40px; }
  .hero-metrics article { min-height: 96px; grid-template-columns: 1fr; gap: 4px; }
  .hero-metrics strong { font-size: 40px; }
  .section--light { padding-top: 120px; }
  .section-heading h2, .gallery-heading h2, .impact-copy h2, .transparency-card h2 { font-size: clamp(39px, 12vw, 58px); }
  .project-story__content blockquote { font-size: 24px; }
  .principles-list article { grid-template-columns: 42px 1fr; }
  .execution-steps { grid-template-columns: 1fr; }
  .execution-steps article { border-right: 0; border-bottom: 1px solid rgba(255,255,255,.14); }
  .modalities-grid { grid-template-columns: 1fr 1fr; }
  .modality-card { min-height: 285px; }
  .modality-card__abbr { margin-bottom: 40px; }
  .impact-points { grid-template-columns: 1fr; }
  .ods-grid { grid-template-columns: 1fr; }
  .ods-grid article:last-child { grid-column: auto; }
  .directory-head { display: block; }
  .directory-head > p { margin-top: 14px; }
  .directory-filters { grid-template-columns: 1fr; }
  .search-field { grid-column: auto; }
  .nuclei-grid { grid-template-columns: 1fr; }
  .nucleus-card { min-height: 210px; }
  .directory-actions { flex-direction: column; gap: 12px; }
  .gallery-grid { grid-template-columns: 1fr 1fr; grid-auto-rows: 220px; }
  .gallery-item--wide { grid-column: 1 / 3; }
  .gallery-item--tall { grid-row: span 1; }
  .project-facts > div, .nucleus-dialog dl > div { grid-template-columns: 1fr; gap: 6px; }
  .footer-brand-chain { grid-template-columns: 1fr; gap: 20px; justify-items: start; }
  .footer-brand-chain > span { display: none; }
  .footer-logo--inatos { width: 118px; }
  .footer-logo--project { width: 220px; }
  .footer-logo--government { width: 280px; }
  .footer-grid { grid-template-columns: 1fr; }
  .footer-grid > div:last-child { grid-column: auto; display: block; }
  .footer-bottom { display: grid; }
}

@media (max-width: 430px) {
  .modalities-grid { grid-template-columns: 1fr; }
  .gallery-grid { grid-template-columns: 1fr; }
  .gallery-item--wide { grid-column: auto; }
  .hero-metrics { grid-template-columns: 1fr 1fr; }
}

/* Proteções de conteúdo em telas estreitas */
.transparency-card,
.transparency-card > *,
.project-facts,
.project-facts dd {
  min-width: 0;
  overflow-wrap: anywhere;
}

@media (max-width: 680px) {
  .main-menu { top: 70px; }
}


@media (max-width: 900px) {
  .territory-overview { grid-template-columns: 1fr; }
  .regions-panel { padding-left: 0; }
  .regions-panel ol { display: grid; grid-template-columns: 1fr 1fr; border-left: 1px solid var(--line); }
  .regions-panel li { border-right: 1px solid var(--line); }
  .region-map-filter { padding-inline: 14px; }
  .region-map-filter:hover,
  .region-map-filter:focus-visible,
  .region-map-filter.is-active { padding-inline: 18px; }
}

@media (max-width: 680px) {
  .map-toolbar { align-items: flex-start; flex-direction: column; }
  .map-reset { width: 100%; }
  .map-stage { padding: 0; overflow-x: auto; overscroll-behavior-inline: contain; }
  .nuclei-map { width: 760px; max-width: none; min-height: 440px; }
  .map-legend { padding-inline: 18px; }
  .map-footer { grid-template-columns: 1fr; gap: 6px; padding-inline: 18px; }
  .regions-panel ol { grid-template-columns: 1fr; }
}

/* Localizador de núcleos por proximidade */
.directory-proximity{margin:1.25rem 0 1rem;padding:1.15rem;border:1px solid rgba(20,107,58,.22);background:linear-gradient(135deg,rgba(20,107,58,.08),rgba(238,111,38,.08));display:grid;gap:1rem}
.directory-proximity__copy{display:flex;align-items:flex-start;gap:.85rem}.directory-proximity__copy strong{display:block;font-size:1.08rem;color:var(--ink,#172019)}.directory-proximity__copy p{margin:.25rem 0 0;color:var(--muted,#667069);line-height:1.45}.directory-proximity__icon{width:46px;height:46px;flex:0 0 46px;display:grid;place-items:center;border-radius:50%;background:linear-gradient(135deg,#0a8f4e,#ee6f26);color:#fff;font-size:1.45rem;font-weight:900}
.directory-proximity__actions{display:grid;grid-template-columns:minmax(180px,1fr) auto auto;gap:.65rem;align-items:stretch}.directory-proximity__actions label,.directory-proximity__actions input{width:100%}.directory-proximity__actions input{min-height:48px;border:1px solid rgba(19,41,27,.18);background:#fff;padding:.75rem .9rem;font:inherit;color:#172019;outline:none}.directory-proximity__actions input:focus{border-color:#0a8f4e;box-shadow:0 0 0 4px rgba(10,143,78,.1)}.directory-proximity__status{margin:0;font-size:.84rem;color:#667069}.directory-proximity__status.is-success{color:#08783f;font-weight:800}.directory-proximity__status.is-error{color:#b42318;font-weight:800}
.nucleus-card__distance{display:inline-flex;width:max-content;margin-top:.55rem;padding:.38rem .62rem;border-radius:999px;background:rgba(10,143,78,.1);color:#08783f;font-size:.75rem;font-weight:900}
@media(max-width:760px){.directory-proximity__actions{grid-template-columns:1fr}.directory-proximity__actions .button{width:100%;justify-content:center}.directory-proximity{padding:1rem}}
