@import url("https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700;800;900&family=Poppins:wght@400;500;600;700;800;900&family=Roboto:wght@400;500;700;900&display=swap");

:root {
  --blue: #203b70;
  --blue-dark: #13264b;
  --orange: #f07521;
  --green: #6ab43e;
  --teal: #227e85;
  --ink: #111827;
  --muted: #606a76;
  --soft: #f4f3ef;
  --line: #e7e9ee;
  --white: #ffffff;
  font-family: "Trebuchet MS", Arial, sans-serif;
  --portal-font: "Poppins", "Inter", "Roboto", Arial, sans-serif;
}

* {
  box-sizing: border-box;
}

[hidden] {
  display: none !important;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--white);
  line-height: 1.6;
  overflow-x: hidden;
}

img {
  display: block;
  max-width: 100%;
}

a {
  color: inherit;
  text-decoration: none;
}

.container {
  width: min(1140px, calc(100% - 40px));
  margin: 0 auto;
}

.topbar {
  background: var(--blue);
  color: var(--white);
  font-size: 11px;
}

.topbar-inner {
  min-height: 40px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
}

.social-links {
  display: flex;
  align-self: stretch;
}

.social-links a {
  min-width: 54px;
  display: grid;
  place-items: center;
  border-left: 1px solid rgba(255, 255, 255, 0.18);
  color: var(--white);
  background: var(--social-color, transparent);
  font-size: 16px;
  font-weight: 900;
}

.social-links a:last-child {
  border-right: 1px solid rgba(255, 255, 255, 0.18);
}

.social-links a:hover,
.social-links a:focus-visible {
  background: rgba(255, 255, 255, 0.12);
}

.topbar-contact {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 18px;
  margin-left: auto;
}

.topbar-contact a {
  color: var(--white);
  font-weight: 800;
}

.navbar {
  position: sticky;
  top: 0;
  z-index: 20;
  background: linear-gradient(90deg, #d1d3d4, #ffffff);
  border-bottom: 8px solid #eeeeee;
  box-shadow: 0 8px 20px rgba(17, 24, 39, 0.08);
}

.nav-inner {
  min-height: 82px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
}

.brand img {
  width: 238px;
  height: auto;
}

.menu {
  display: flex;
  align-items: center;
  gap: 3px;
  margin: 0;
  padding: 0;
  list-style: none;
  font-size: 11px;
  font-weight: 800;
  text-transform: uppercase;
}

.menu a {
  display: block;
  padding: 12px 13px;
  color: var(--orange);
}

.menu a:hover,
.menu a:focus-visible {
  background: var(--blue);
  color: var(--white);
}

.site-search {
  position: relative;
  display: flex;
  align-items: center;
  gap: 8px;
  min-width: 0;
  margin-top: 18px;
}

.site-search label {
  flex: 1;
}

.site-search label span {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
}

.site-search input {
  width: 100%;
  height: 42px;
  border: 1px solid #d8dce4;
  background: #ffffff;
  padding: 0 14px;
  color: var(--ink);
  font: inherit;
}

.site-search button {
  height: 42px;
  border: 0;
  background: var(--blue);
  color: var(--white);
  padding: 0 14px;
  cursor: pointer;
  font-weight: 900;
}

.search-results {
  position: absolute;
  bottom: calc(100% + 10px);
  right: 0;
  z-index: 30;
  width: min(420px, calc(100vw - 28px));
  display: none;
  padding: 12px;
  background: var(--white);
  border: 1px solid var(--line);
  box-shadow: 0 18px 45px rgba(17, 24, 39, 0.18);
}

.search-results.is-open {
  display: grid;
  gap: 8px;
}

.search-results a,
.search-results p {
  margin: 0;
  padding: 10px 12px;
  color: var(--ink);
  background: #f8fafc;
}

.search-results a:hover,
.search-results a:focus-visible {
  color: var(--white);
  background: var(--blue);
}

.search-highlight {
  background: rgba(240, 117, 33, 0.28);
  color: inherit;
  padding: 0 2px;
}

.nav-button {
  color: var(--white) !important;
  background: var(--orange);
  border-radius: 0 28px 28px 28px;
}

.menu-toggle {
  display: none;
  width: 42px;
  height: 42px;
  border: 0;
  background: var(--blue);
  padding: 10px;
}

.menu-toggle span {
  display: block;
  height: 2px;
  background: var(--white);
  margin: 5px 0;
}

.hero {
  position: relative;
  min-height: 680px;
  display: grid;
  align-items: center;
  color: var(--white);
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(32, 59, 112, 0.95), rgba(32, 59, 112, 0.72), rgba(240, 117, 33, 0.62)),
    url("../images/Background-website-01-1.jpg") center / cover;
}

.hero-grid {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(320px, 0.9fr);
  align-items: center;
  gap: 48px;
  padding: 86px 0 120px;
}

.hero-copy {
  max-width: 700px;
  min-width: 0;
}

.hero-mark {
  width: 310px;
  margin-bottom: 26px;
}

.eyebrow {
  margin: 0 0 12px;
  color: var(--orange);
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0;
  text-transform: uppercase;
}

.hero h1,
.section h2 {
  margin: 0;
  line-height: 1.08;
  font-size: clamp(36px, 6vw, 76px);
  font-weight: 900;
}

.hero p {
  max-width: 610px;
  margin: 22px 0 0;
  font-size: 16px;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 32px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 13px 24px;
  border: 2px solid transparent;
  border-radius: 28px;
  font-weight: 900;
  cursor: pointer;
}

.button.primary {
  background: var(--orange);
  color: var(--white);
}

.button.primary:hover,
.button.primary:focus-visible {
  background: var(--blue-dark);
}

.button.secondary {
  border-color: rgba(255, 255, 255, 0.7);
  color: var(--white);
}

.button.secondary:hover,
.button.secondary:focus-visible {
  background: var(--white);
  color: var(--blue);
}

.hero-badge {
  justify-self: end;
  width: min(430px, 100%);
  padding: 18px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.16);
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.25);
}

.issue-strip {
  position: relative;
  z-index: 3;
  width: min(1180px, calc(100% - 40px));
  margin: -80px auto 0;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  box-shadow: 0 18px 45px rgba(17, 24, 39, 0.18);
}

.issue-card {
  position: relative;
  min-height: 320px;
  padding: 62px 48px;
  color: var(--white);
  overflow: hidden;
  opacity: 0;
  transform: translateY(46px) scale(0.94);
  transition: opacity 0.6s ease, transform 0.6s ease, box-shadow 0.25s ease;
}

.issue-card.is-visible {
  opacity: 1;
  transform: translateY(0) scale(1);
}

.issue-card.is-visible:hover,
.issue-card.is-visible:focus-within {
  z-index: 4;
  transform: translateY(-14px) scale(1.035);
  box-shadow: 0 28px 58px rgba(17, 24, 39, 0.24);
}

.issue-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(rgba(0, 0, 0, 0.06), rgba(0, 0, 0, 0.06)), var(--bg) center / cover;
  opacity: 0.19;
}

.issue-card > * {
  position: relative;
}

.issue-card.blue {
  background: var(--blue);
}

.issue-card.teal {
  background: var(--teal);
  display: grid;
  align-content: center;
  text-align: center;
}

.issue-card.orange {
  background: var(--orange);
}

.issue-card img {
  width: 270px;
  margin: 0 auto 20px;
}

.issue-card h2 {
  margin: 0 0 16px;
  font-size: 26px;
  line-height: 1.2;
}

.issue-card p {
  margin: 0;
  color: rgba(255, 255, 255, 0.9);
}

.section {
  padding: 92px 0;
}

.section.soft {
  background: var(--soft);
  padding-top: 54px;
}

.split-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 64px;
  min-width: 0;
}

.contact-grid {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  align-items: start;
  gap: 64px;
  min-width: 0;
}

.image-stack {
  position: relative;
  display: grid;
  place-items: center;
}

.main-image {
  width: min(460px, 100%);
}

.corner-icon {
  position: absolute;
  right: 18%;
  top: 8%;
  width: 68px;
  height: 68px;
  display: grid;
  place-items: center;
  background: var(--white);
  border-radius: 50%;
  box-shadow: 0 16px 40px rgba(17, 24, 39, 0.15);
}

.corner-icon img {
  width: 34px;
}

.section-copy h2,
.section-heading h2 {
  font-size: clamp(30px, 4vw, 46px);
  color: #000000;
}

.section-copy p,
.section-heading p {
  color: var(--muted);
}

.section-heading {
  width: min(760px, 100%);
  margin: 0 auto 46px;
  text-align: center;
}

.section-heading.compact {
  margin-bottom: 30px;
}

#about-team .section-heading.compact {
  margin-bottom: 12px;
}

.about-slides {
  background: #ffffff;
  padding-bottom: 44px;
}

.about-slide-controls {
  width: fit-content;
  max-width: 100%;
  display: flex;
  gap: 8px;
  margin: 0 auto 44px;
  padding: 6px;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.9);
  box-shadow: 0 14px 32px rgba(17, 24, 39, 0.08);
}

.about-slide-tab {
  min-height: 42px;
  border: 0;
  padding: 10px 18px;
  background: transparent;
  color: var(--blue);
  font: inherit;
  font-weight: 900;
  cursor: pointer;
}

.about-slide-tab.is-active,
.about-slide-tab:hover,
.about-slide-tab:focus-visible {
  background: var(--blue);
  color: var(--white);
}

.about-slide-panel {
  display: none;
  min-height: 520px;
}

.about-slide-panel.is-active {
  display: block;
}

.team-slider-wrap {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  align-items: center;
  gap: 16px;
}

.team-track {
  display: grid;
  width: 100%;
  margin: 0 auto;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 26px 54px;
  padding: 12px 0 18px;
}

.team-card {
  scroll-snap-align: start;
  position: relative;
  min-width: 0;
  display: grid;
  grid-template-rows: minmax(0, 1fr) auto;
  aspect-ratio: 3 / 4;
  align-content: start;
  text-align: center;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  box-shadow: 0 16px 36px rgba(17, 24, 39, 0.08);
  overflow: hidden;
  transform: translateY(0) scale(1);
  transition: transform 0.22s ease, box-shadow 0.22s ease, border-color 0.22s ease, opacity 0.22s ease, filter 0.22s ease;
  z-index: 1;
}

.team-track:hover .team-card {
  opacity: 0.45;
  filter: saturate(0.65);
}

.team-track:hover .team-card:hover,
.team-track:hover .team-card:focus-within,
.team-card:hover,
.team-card:focus-within {
  border-color: rgba(240, 117, 33, 0.45);
  box-shadow: 0 28px 60px rgba(17, 24, 39, 0.2);
  opacity: 1;
  filter: saturate(1.05);
  transform: translateY(-12px) scale(1.12);
  z-index: 4;
}

.team-photo,
.team-photo-placeholder {
  width: 100%;
  height: 100%;
  min-height: 0;
  object-fit: cover;
  object-position: center top;
  background: #dfe4ec;
}

.team-photo-placeholder {
  display: grid;
  place-items: center;
  color: var(--blue);
  font-size: 46px;
  font-weight: 900;
}

.team-card-content {
  display: grid;
  gap: 5px;
  padding: 0 0 12px;
  background: var(--blue);
}

.team-card h3,
.news-card h3 {
  margin: 0;
  color: #000000;
  line-height: 1.18;
  overflow-wrap: anywhere;
}

.team-card h3 {
  padding: 10px 12px 2px;
  color: var(--white);
  font-size: clamp(11px, 1vw, 14px);
}

.team-card p {
  min-height: 24px;
  margin: 0;
  color: var(--orange);
  font-weight: 800;
  font-size: 10px;
  line-height: 1.2;
  overflow-wrap: anywhere;
}

.team-socials {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-top: 2px;
}

.team-socials a,
.team-socials span {
  width: 28px;
  height: 28px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.55);
  color: var(--white);
  background: rgba(255, 255, 255, 0.12);
  font-weight: 900;
  opacity: 1;
}

.team-socials a:hover,
.team-socials a:focus-visible {
  color: var(--white);
  background: var(--orange);
}

.team-socials span {
  opacity: 1;
}

.service-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 22px;
}

.service-card {
  background: var(--white);
  padding: 0 24px 34px;
  text-align: center;
  border: 1px solid var(--line);
  box-shadow: 0 24px 50px rgba(17, 24, 39, 0.14);
  overflow: hidden;
  min-width: 0;
  opacity: 1;
  transform: translateY(-8px) scale(1.02);
  transition: opacity 0.55s ease, transform 0.25s ease, box-shadow 0.25s ease;
}

.service-card.is-visible {
  opacity: 1;
  transform: translateY(-8px) scale(1.02);
}

.service-card:hover,
.service-card.is-visible:hover {
  transform: translateY(-16px) scale(1.045);
  box-shadow: 0 30px 64px rgba(17, 24, 39, 0.2);
}

.service-photo {
  width: calc(100% + 48px);
  height: 168px;
  margin: 0 -24px 24px;
  object-fit: cover;
  object-position: top center;
}

.icon {
  display: inline-grid;
  place-items: center;
  width: 74px;
  height: 74px;
  margin-bottom: 18px;
  border-radius: 50%;
  background: var(--blue);
  color: var(--white);
  font-weight: 900;
}

.service-card:hover .icon {
  background: var(--orange);
}

.service-card h3 {
  margin: 0 0 12px;
  line-height: 1.2;
  color: #000000;
  overflow-wrap: anywhere;
}

.service-card p {
  margin: 0;
  color: var(--muted);
  overflow-wrap: anywhere;
}

.strategic {
  position: relative;
  overflow: hidden;
  background: #ffffff;
}

.strategic::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(120deg, rgba(32, 59, 112, 0.06), rgba(240, 117, 33, 0.05)),
    url("../images/Bioshield-Logo-Final-2-scaled.png") center 46% / min(780px, 74vw) auto no-repeat;
  opacity: 0.11;
  pointer-events: none;
}

.strategic .container {
  position: relative;
}

.strategic-heading {
  width: min(900px, 100%);
  margin-bottom: 36px;
}

.strategic-heading h2 {
  font-size: clamp(36px, 5vw, 64px);
  font-weight: 900;
  color: #000000;
  text-align: center;
}

.strategic-heading p {
  max-width: 820px;
  margin: 16px auto 0;
  color: #24324a;
  font-size: clamp(14px, 1.2vw, 17px);
  line-height: 1.55;
  text-align: center;
}

.strategic-grid {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 22px;
  align-items: stretch;
}

.strategic-grid article {
  grid-column: span 2;
  display: grid;
  grid-template-columns: 58px 1fr;
  gap: 18px;
  align-items: start;
  min-height: 190px;
  padding: 24px;
  background: rgba(255, 255, 255, 0.92);
  border: 1px solid rgba(32, 59, 112, 0.12);
  border-top: 5px solid var(--orange);
  border-radius: 8px;
  box-shadow: 0 18px 42px rgba(17, 24, 39, 0.09);
}

.strategic-grid article:nth-child(4) {
  grid-column: 2 / span 2;
}

.strategic-grid article:nth-child(5) {
  grid-column: 4 / span 2;
}

.strategic-icon {
  width: 58px;
  height: 58px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  color: var(--orange);
  background: rgba(240, 117, 33, 0.1);
}

.strategic-icon svg {
  width: 34px;
  height: 34px;
  fill: none;
  stroke: currentColor;
  stroke-width: 3.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.strategic-grid h3 {
  margin: 0 0 8px;
  color: var(--blue);
  font-family: "Trebuchet MS", Arial, sans-serif;
  font-size: clamp(18px, 1.55vw, 24px);
  font-weight: 900;
  line-height: 1.18;
}

.strategic-grid p {
  margin: 0;
  color: #49566b;
  font-family: "Trebuchet MS", Arial, sans-serif;
  font-size: clamp(12px, 0.98vw, 15px);
  line-height: 1.45;
}

.projects {
  background: var(--white);
}

.project-grid,
.news-grid {
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: minmax(230px, 285px);
  grid-template-columns: none;
  gap: 14px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  padding: 6px 4px 16px;
  scrollbar-width: thin;
}

.project-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.project-card,
.news-card {
  background: var(--white);
  border: 1px solid var(--line);
  box-shadow: 0 16px 36px rgba(17, 24, 39, 0.08);
  overflow: hidden;
  min-width: 0;
  scroll-snap-align: start;
}

.news-card.no-news-image {
  border-top: 5px solid var(--blue);
}

.news-card.has-news-image {
  min-height: 360px;
  display: grid;
  align-items: end;
  border: 0;
  background:
    linear-gradient(180deg, rgba(19, 38, 75, 0.08) 0%, rgba(19, 38, 75, 0.42) 38%, rgba(19, 38, 75, 0.92) 100%),
    var(--news-bg) center / cover;
  color: var(--white);
}

.project-card {
  cursor: pointer;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.project-card:hover,
.project-card:focus-visible {
  transform: translateY(-4px);
  box-shadow: 0 22px 48px rgba(17, 24, 39, 0.15);
  outline: none;
}

.project-card img,
.news-card img {
  width: 100%;
  height: 150px;
  object-fit: cover;
  object-position: top center;
  background: var(--soft);
}

.project-card-content,
.news-card-content {
  padding: 18px;
}

.news-card.has-news-image .news-card-content {
  align-self: end;
  padding: 22px;
}

.project-card h3 {
  margin: 0 0 12px;
  color: #000000;
  line-height: 1.2;
  overflow-wrap: anywhere;
}

.project-card time,
.news-card time {
  display: block;
  margin-bottom: 10px;
  color: var(--orange);
  font-size: 11px;
  font-weight: 900;
  text-transform: uppercase;
}

.news-card.has-news-image time {
  color: #ffb26f;
}

.project-open {
  display: inline-block;
  margin-top: 18px;
  color: var(--blue);
  font-size: 11px;
  font-weight: 900;
  text-transform: uppercase;
}

.news-card.has-news-image .project-open {
  color: var(--white);
}

.project-detail-shell {
  position: fixed;
  inset: 0;
  z-index: 55;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 24px;
  background: rgba(17, 24, 39, 0.66);
}

.project-detail-shell.is-open {
  display: flex;
}

.project-detail {
  position: relative;
  width: min(1120px, 100%);
  max-height: min(840px, calc(100vh - 48px));
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  overflow: auto;
  background: var(--white);
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.35);
}

.project-detail-close {
  position: absolute;
  top: 14px;
  right: 14px;
  z-index: 2;
  width: 36px;
  height: 36px;
  border: 0;
  background: var(--blue);
  color: var(--white);
  cursor: pointer;
  font-weight: 900;
}

.project-detail-gallery {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 10px;
  padding: 22px;
  background: var(--soft);
}

.project-detail-gallery img {
  width: 100%;
  height: 230px;
  object-fit: contain;
  background: #ffffff;
}

.project-detail-gallery img:first-child {
  grid-column: 1 / -1;
  height: 360px;
  object-fit: cover;
}

.project-detail-copy {
  padding: 58px 42px 42px;
}

.project-detail-copy time {
  display: block;
  margin-bottom: 12px;
  color: var(--orange);
  font-weight: 900;
  text-transform: uppercase;
}

.project-detail-copy h2 {
  margin: 0 0 18px;
  color: #000000;
  font-size: clamp(28px, 4vw, 50px);
  line-height: 1.08;
  overflow-wrap: anywhere;
}

.project-detail-copy p {
  margin: 0;
  color: var(--muted);
  overflow-wrap: anywhere;
}

.project-detail-body {
  display: grid;
  gap: 22px;
}

.project-impact-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
}

.project-impact-item {
  min-height: 94px;
  display: grid;
  align-content: center;
  gap: 5px;
  padding: 16px;
  border-left: 4px solid var(--orange);
  background: #f7f9fc;
}

.project-impact-item strong {
  color: var(--blue);
  font-size: 28px;
  line-height: 1;
}

.project-impact-item span {
  color: var(--muted);
  font-size: 12px;
  font-weight: 800;
  line-height: 1.3;
}

.project-detail-section {
  display: grid;
  gap: 10px;
}

.project-detail-section h3 {
  margin: 0;
  color: #000000;
  font-size: 18px;
  line-height: 1.2;
}

.project-detail-section ul {
  display: grid;
  gap: 9px;
  margin: 0;
  padding-left: 18px;
  color: var(--muted);
}

.project-detail-section li::marker {
  color: var(--orange);
}

.project-materials {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.project-materials span {
  padding: 7px 10px;
  color: var(--blue);
  background: rgba(32, 59, 112, 0.08);
  font-size: 11px;
  font-weight: 900;
  text-transform: uppercase;
}

.detail-page {
  min-height: 70vh;
  background: var(--white);
}

.detail-page h1 {
  margin: 0;
  color: #000000;
  font-size: clamp(34px, 5vw, 58px);
  line-height: 1.06;
}

.detail-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.detail-card,
.detail-single {
  background: var(--white);
  border: 1px solid var(--line);
  box-shadow: 0 16px 36px rgba(17, 24, 39, 0.08);
  overflow: hidden;
}

.detail-card img {
  width: 100%;
  height: 230px;
  object-fit: cover;
  background: var(--soft);
}

.detail-card div {
  display: grid;
  gap: 12px;
  padding: 24px;
}

.detail-card h2 {
  margin: 0;
  color: #000000;
  font-size: 24px;
  line-height: 1.15;
}

.detail-card p,
.detail-single-copy p {
  margin: 0;
  color: var(--muted);
}

.detail-card time,
.detail-single-copy time {
  color: var(--orange);
  font-size: 11px;
  font-weight: 900;
  text-transform: uppercase;
}

.detail-single {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
}

.detail-single-gallery {
  display: grid;
  gap: 10px;
  padding: 18px;
  background: var(--soft);
}

.detail-single-gallery.is-empty {
  display: none;
}

.detail-single:has(.detail-single-gallery.is-empty) {
  grid-template-columns: 1fr;
}

.detail-single-gallery img {
  width: 100%;
  max-height: 420px;
  object-fit: contain;
  background: #ffffff;
}

.detail-single-copy {
  display: grid;
  align-content: start;
  gap: 18px;
  padding: 42px;
}

.detail-single-copy h1 {
  margin: 0;
  color: #000000;
  font-size: clamp(32px, 4vw, 56px);
  line-height: 1.06;
}

.external-reader {
  display: grid;
  grid-template-columns: minmax(260px, 0.8fr) minmax(0, 1.2fr);
  gap: 28px;
  padding: 28px;
  background: var(--white);
  border: 1px solid var(--line);
  box-shadow: 0 16px 36px rgba(17, 24, 39, 0.08);
}

.external-reader > img {
  width: 100%;
  max-height: 460px;
  object-fit: cover;
  background: var(--soft);
}

.external-reader-copy {
  display: grid;
  align-content: start;
  gap: 14px;
}

.external-reader-copy p {
  margin: 0;
  color: var(--muted);
}

.external-reader-copy a {
  color: var(--blue);
  font-weight: 800;
  text-decoration: underline;
  text-underline-offset: 3px;
  overflow-wrap: anywhere;
}

.external-reader-copy a:hover,
.external-reader-copy a:focus-visible {
  color: var(--orange);
}

.project-card p,
.news-card p,
.empty-state {
  margin: 0;
  color: var(--muted);
  overflow-wrap: anywhere;
}

.news-card.has-news-image h3,
.news-card.has-news-image p {
  color: var(--white);
}

.news {
  background: var(--soft);
}

.external-news-card {
  display: grid;
  align-content: stretch;
}

.external-news-card .news-card-content {
  display: grid;
  align-content: start;
  gap: 8px;
  min-height: 100%;
}

.news-source {
  width: fit-content;
  display: inline-block;
  padding: 4px 8px;
  color: var(--white);
  background: var(--blue);
  font-size: 10px;
  font-weight: 900;
  text-transform: uppercase;
}

.news-card.has-news-image .news-source {
  background: var(--orange);
}

.news-row-title {
  margin: 28px 0 10px;
  color: var(--blue);
  font-size: clamp(18px, 2vw, 24px);
  line-height: 1.15;
}

.partners-strip {
  padding: 34px 0 48px;
  background:
    linear-gradient(rgba(255, 255, 255, 0.94), rgba(255, 255, 255, 0.94)),
    url("../images/Background-website-01-1.jpg") center / cover;
  overflow: hidden;
}

.partners-strip .section-heading {
  margin-bottom: 24px;
}

.partners-strip .section-heading h2 {
  font-size: clamp(24px, 3vw, 36px);
}

.partner-marquee {
  width: 100%;
  overflow: hidden;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.82);
}

.partner-track {
  width: max-content;
  display: flex;
  align-items: center;
  gap: 28px;
  padding: 22px 0;
  animation: partner-filmstrip 30s linear infinite;
}

.partner-logo {
  width: 190px;
  height: 108px;
  display: grid;
  place-items: center;
  padding: 18px;
  border: 1px solid var(--line);
  background: var(--white);
}

.partner-logo img {
  max-width: 100%;
  max-height: 74px;
  object-fit: contain;
  filter: saturate(1.2) contrast(1.05);
}

@keyframes partner-filmstrip {
  from {
    transform: translateX(-50%);
  }

  to {
    transform: translateX(0);
  }
}

.empty-state {
  grid-column: 1 / -1;
  padding: 34px;
  border: 1px dashed #c7ccd6;
  text-align: center;
  background: #ffffff;
}

.contact {
  padding: 28px 0 0;
  background:
    linear-gradient(rgba(255, 255, 255, 0.92), rgba(255, 255, 255, 0.92)),
    url("../images/solar-energy-panel-and-light-bulb-green-energy-2021-09-03-00-41-15-utc-1.jpg") center / cover fixed;
}

.contact .contact-grid {
  grid-template-columns: minmax(0, 620px) 1fr;
  min-height: 250px;
  align-items: start;
}

.contact-action {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  padding-top: 64px;
}

.contact-form-toggle {
  margin-top: 0;
}

.contact-form {
  position: fixed;
  left: max(20px, calc((100vw - 1140px) / 2));
  top: 50%;
  z-index: 80;
  width: min(560px, calc(100% - 40px));
  max-height: calc(100vh - 48px);
  overflow: auto;
  display: none;
  gap: 14px;
  padding: 44px 34px 34px;
  background: var(--white);
  box-shadow: 0 20px 50px rgba(17, 24, 39, 0.14);
  transform: translateY(-50%);
}

.contact-form.is-open {
  display: grid;
}

.contact-form::before {
  content: "";
  position: fixed;
  inset: -100vh -100vw;
  z-index: -1;
  background: rgba(17, 24, 39, 0.58);
}

.contact-form h3 {
  margin: 0 34px 4px 0;
  color: #000000;
  font-size: clamp(22px, 3vw, 32px);
  line-height: 1.15;
}

.contact-form-close {
  position: absolute;
  top: 14px;
  right: 14px;
  width: 38px;
  height: 38px;
  border: 0;
  border-radius: 50%;
  background: var(--blue);
  color: var(--white);
  font-size: 16px;
  font-weight: 900;
  cursor: pointer;
}

.contact-form-close:hover,
.contact-form-close:focus-visible {
  background: var(--orange);
}

.contact-form span,
.portal-panel label span {
  display: block;
  margin-bottom: 6px;
  font-weight: 800;
}

.portal-panel label span {
  color: #5d6675;
  font-size: 12px;
}

.contact-form input,
.contact-form textarea,
.portal-panel input,
.portal-panel textarea,
.portal-panel select {
  width: 100%;
  min-width: 0;
  border: 1px solid #dbe1ea;
  background: #ffffff;
  padding: 13px 15px;
  color: var(--ink);
  font: inherit;
  border-radius: 8px;
}

.contact-form input:focus,
.contact-form textarea:focus,
.portal-panel input:focus,
.portal-panel textarea:focus,
.portal-panel select:focus {
  outline: 2px solid rgba(240, 117, 33, 0.35);
  border-color: var(--orange);
}

.form-note,
.portal-note {
  min-height: 24px;
  margin: 0;
  color: #667085;
  font-weight: 800;
}

.portal-shell {
  position: fixed;
  inset: 0;
  z-index: 60;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 0;
  background:
    linear-gradient(135deg, rgba(19, 38, 75, 0.94), rgba(34, 126, 133, 0.88)),
    url("../images/Background-website-01-1.jpg") center / cover;
}

.portal-shell.is-open {
  display: flex;
}

.portal-panel {
  position: relative;
  width: 100%;
  min-height: 100vh;
  max-height: 100vh;
  overflow: auto;
  background: #ffffff;
  padding: 0;
  border: 0;
  border-radius: 0;
  box-shadow: none;
  font-family: var(--portal-font);
  font-weight: 500;
}

.portal-close {
  position: absolute;
  top: 26px;
  right: 24px;
  z-index: 5;
  width: 38px;
  height: 38px;
  border: 0;
  border-radius: 50%;
  background: #eef3ff;
  color: var(--blue);
  cursor: pointer;
  font-weight: 900;
  box-shadow: none;
}

.portal-login {
  width: 100%;
  min-height: 100vh;
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(320px, 0.82fr) minmax(360px, 1.18fr);
  align-content: center;
  gap: 0;
  color: var(--blue);
  background:
    linear-gradient(90deg, #ffffff 0 48%, rgba(19, 38, 75, 0.2) 48%),
    url("../images/solar-energy-panel-and-light-bulb-green-energy-2021-09-03-00-41-15-utc-1.jpg") right center / cover;
}

.portal-login h2 {
  margin: 0;
  color: var(--blue);
}

.portal-login > * {
  grid-column: 1;
  width: min(390px, calc(100% - 44px));
  justify-self: center;
}

.portal-login .eyebrow {
  align-self: end;
  color: var(--orange);
}

.portal-login label span {
  color: var(--blue);
}

.portal-login::after {
  content: "Manage Bioshield Squad from one secure workspace";
  grid-column: 2;
  align-self: end;
  justify-self: center;
  width: min(620px, calc(100% - 70px));
  margin-bottom: 64px;
  padding: 28px 34px;
  border: 1px solid rgba(255, 255, 255, 0.38);
  border-radius: 28px;
  color: #ffffff;
  background: rgba(19, 38, 75, 0.42);
  backdrop-filter: blur(12px);
  font-size: clamp(26px, 3vw, 42px);
  font-weight: 900;
  line-height: 1.2;
}

.portal-dashboard {
  min-height: 100vh;
  display: grid;
  grid-template-columns: 220px minmax(0, 1fr);
  gap: 0;
  color: var(--ink);
  background: #fbfcfe;
}

.portal-sidebar {
  position: sticky;
  top: 0;
  z-index: 4;
  min-height: 100vh;
  display: grid;
  align-content: start;
  gap: 8px;
  padding: 20px 14px;
  background: #f5f7fb;
  border-right: 1px solid #e1e6ee;
}

.portal-dashboard.is-nav-collapsed {
  grid-template-columns: 76px minmax(0, 1fr);
}

.portal-brand {
  display: grid;
  align-items: center;
  margin: 0 0 18px;
}

.portal-brand img {
  width: 150px;
  max-width: 100%;
  height: auto;
}

.portal-collapse {
  width: 40px;
  height: 36px;
  display: grid;
  place-items: center;
  border: 1px solid #dbe1ea;
  border-radius: 10px;
  color: var(--blue);
  background: #ffffff;
  cursor: pointer;
  font: inherit;
  font-weight: 700;
}

.portal-tab,
.portal-side-logout {
  min-height: 40px;
  display: flex;
  align-items: center;
  border: 0;
  border-radius: 10px;
  padding: 9px 12px;
  color: #4b5565;
  background: transparent;
  font: inherit;
  font-weight: 650;
  cursor: pointer;
  white-space: nowrap;
}

.portal-tab svg {
  width: 23px;
  height: 23px;
  margin-right: 10px;
  flex: 0 0 auto;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.9;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.portal-dashboard.is-nav-collapsed .portal-brand img {
  width: 40px;
  content: url("../images/Asset-16-1-1024x1024.png");
}

.portal-dashboard.is-nav-collapsed .portal-tab {
  justify-content: center;
  padding: 10px;
}

.portal-dashboard.is-nav-collapsed .portal-tab svg {
  margin-right: 0;
}

.portal-dashboard.is-nav-collapsed .portal-tab span,
.portal-dashboard.is-nav-collapsed .portal-side-logout {
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  padding: 0;
  margin: 0;
}

.portal-tab:hover,
.portal-tab:focus-visible,
.portal-tab.is-active,
.portal-side-logout:hover,
.portal-side-logout:focus-visible {
  color: #ffffff;
  background: var(--blue);
}

.portal-tab.is-active {
  box-shadow: none;
}

.portal-side-logout {
  margin: 28px 0 0;
  color: #b42318;
}

.portal-side-logout:hover,
.portal-side-logout:focus-visible {
  background: #b42318;
  color: #ffffff;
}

.portal-main {
  min-width: 0;
  padding: 18px min(3vw, 32px) 48px;
  background: #fbfcfe;
}

.portal-topbar {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto minmax(200px, 280px);
  align-items: center;
  gap: 14px;
  min-height: 54px;
  margin: 0 44px 18px 0;
  padding: 0;
  border-bottom: 0;
  background: transparent;
}

.portal-breadcrumb {
  margin: 0 0 8px;
  color: var(--blue);
  font-size: 12px;
  font-weight: 650;
}

.portal-topbar h2 {
  margin: 0;
  color: #101828;
  font-size: 24px;
  line-height: 1.1;
}

.portal-view-site {
  min-height: 40px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 8px 14px;
  border: 1px solid #dbe1ea;
  border-radius: 8px;
  color: var(--blue);
  background: #ffffff;
  font-weight: 650;
}

.portal-search {
  position: relative;
}

.portal-search span {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
}

.portal-search input {
  min-height: 46px;
  border: 1px solid #dbe1ea;
  border-radius: 10px;
  background: #ffffff;
  color: var(--ink);
  box-shadow: none;
}

.portal-stats {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 12px;
  margin-bottom: 18px;
}

.portal-stats article {
  padding: 16px 18px;
  border: 1px solid #dbe1ea;
  border-radius: 12px;
  background: var(--white);
  box-shadow: none;
}

.portal-stats span {
  display: block;
  color: var(--muted);
  font-size: 11px;
  font-weight: 650;
  text-transform: uppercase;
}

.portal-stats strong {
  display: block;
  margin-top: 8px;
  color: var(--blue);
  font-size: 22px;
  font-weight: 700;
  line-height: 1;
}

.button.secondary.dark {
  border-color: var(--blue);
  color: var(--blue);
}

.button.secondary.dark:hover,
.button.secondary.dark:focus-visible {
  background: var(--blue);
  color: var(--white);
}

.portal-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 300px;
  gap: 18px;
  align-items: start;
}

.portal-workspace {
  min-width: 0;
}

.portal-card {
  gap: 14px;
  padding: 22px;
  border: 1px solid #dbe1ea;
  border-radius: 12px;
  background: var(--white);
  box-shadow: none;
  min-width: 0;
}

.portal-panel-section {
  display: none;
  width: 100%;
}

.role-card {
  width: 100%;
}

.portal-aside {
  display: grid;
  gap: 12px;
}

.portal-side-card {
  display: grid;
  gap: 12px;
  padding: 18px;
  border: 1px solid #e1e6ee;
  border-radius: 12px;
  background: #ffffff;
}

.portal-side-card div {
  display: flex;
  justify-content: space-between;
  gap: 10px;
  align-items: center;
}

.portal-side-card h3 {
  margin: 0;
  font-size: 15px;
  color: #101828;
}

.portal-side-card a,
.portal-side-card span {
  color: var(--orange);
  font-size: 12px;
  font-weight: 900;
}

.portal-side-card p {
  margin: 0;
  color: #667085;
  font-size: 13px;
  line-height: 1.55;
}

.portal-panel-section.is-active {
  display: grid;
}

.portal-small-action {
  justify-self: start;
  min-height: 40px;
  padding: 9px 16px;
}

.portal-inline-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.portal-small-action.danger {
  border-color: #b42318;
  color: #b42318;
}

.portal-small-action.danger:hover,
.portal-small-action.danger:focus-visible {
  background: #b42318;
  color: #ffffff;
}

.portal-card h3 {
  margin: 0;
  color: #000000;
  font-weight: 700;
}

.portal-list {
  display: grid;
  gap: 10px;
  margin-top: 8px;
}

.portal-list-item {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  align-items: center;
  padding: 10px 12px;
  background: #ffffff;
  border: 1px solid #dbe1ea;
  border-radius: 10px;
}

.portal-list-item small {
  display: block;
  margin-top: 4px;
  color: var(--muted);
  font-size: 12px;
  line-height: 1.35;
}

.role-permission-table {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 8px;
  padding: 12px;
  border: 1px solid #dbe1ea;
  border-radius: 10px;
  background: #f8fafc;
}

.role-permission-table label {
  min-height: 38px;
  display: flex;
  align-items: center;
  gap: 8px;
  margin: 0;
  color: var(--ink);
  font-size: 13px;
}

.role-permission-table input {
  width: auto;
  min-width: auto;
  accent-color: var(--orange);
}

.settings-grid {
  display: grid;
  grid-template-columns: minmax(130px, 0.8fr) minmax(220px, 1.4fr) 94px;
  gap: 10px;
}

.settings-grid input[type="color"] {
  min-height: 48px;
  padding: 6px;
}

.portal-list-item button {
  border: 0;
  background: #fee2e2;
  color: #991b1b;
  padding: 7px 10px;
  cursor: pointer;
  font-weight: 900;
}

.inbox-list {
  max-height: 520px;
  overflow: auto;
}

.inbox-item {
  align-items: flex-start;
}

.inbox-item div {
  display: grid;
  gap: 4px;
}

.inbox-item strong {
  color: var(--blue);
}

.inbox-item time,
.inbox-item p,
.inbox-item a {
  margin: 0;
  color: var(--muted);
}

.site-footer {
  color: var(--white);
  background:
    linear-gradient(rgba(19, 38, 75, 0.88), rgba(19, 38, 75, 0.88)),
    url("../images/solar-energy-panel-and-light-bulb-green-energy-2021-09-03-00-41-15-utc-1.jpg") center / cover;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.3fr 0.9fr 1fr 1fr;
  gap: 42px;
  padding: 70px 0;
  min-width: 0;
}

.footer-grid img {
  width: 280px;
  margin-bottom: 18px;
}

.footer-grid h2 {
  margin: 0 0 18px;
  font-size: 20px;
}

.footer-grid a,
.footer-grid span,
.footer-login-link {
  display: block;
  margin: 8px 0;
  color: rgba(255, 255, 255, 0.9);
}

.footer-login-link {
  border: 0;
  background: transparent;
  padding: 0;
  font: inherit;
  cursor: pointer;
  text-align: left;
}

.footer-login-link:hover,
.footer-login-link:focus-visible {
  color: var(--orange);
}

.footer-gallery {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
}

.footer-gallery button {
  border: 0;
  padding: 0;
  background: transparent;
  cursor: pointer;
}

.footer-gallery img {
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  background: rgba(255, 255, 255, 0.12);
}

.gallery-viewer {
  position: fixed;
  inset: 0;
  z-index: 90;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 24px;
  background: rgba(17, 24, 39, 0.76);
}

.gallery-viewer.is-open {
  display: flex;
}

.gallery-viewer-panel {
  position: relative;
  width: min(1080px, 100%);
  max-height: calc(100vh - 48px);
  display: grid;
  grid-template-columns: 54px minmax(0, 1fr) 54px;
  grid-template-rows: minmax(0, 1fr) auto;
  gap: 14px;
  padding: 22px;
  background: var(--white);
  box-shadow: 0 28px 80px rgba(0, 0, 0, 0.35);
}

.gallery-viewer-panel > img {
  grid-column: 2;
  width: 100%;
  max-height: calc(100vh - 190px);
  object-fit: contain;
  background: #eef1f5;
}

.gallery-viewer-close {
  position: absolute;
  top: 12px;
  right: 12px;
  width: 38px;
  height: 38px;
  border: 0;
  border-radius: 50%;
  background: var(--blue);
  color: var(--white);
  cursor: pointer;
  font-weight: 900;
}

.gallery-viewer-nav {
  align-self: center;
  width: 46px;
  height: 46px;
  border: 0;
  border-radius: 50%;
  background: var(--orange);
  color: var(--white);
  cursor: pointer;
  font-size: 30px;
  line-height: 1;
}

.gallery-viewer-nav.prev {
  grid-column: 1;
}

.gallery-viewer-nav.next {
  grid-column: 3;
}

.gallery-viewer-thumbs {
  grid-column: 1 / -1;
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: 86px;
  gap: 10px;
  overflow-x: auto;
  padding-top: 6px;
}

.gallery-viewer-thumbs button {
  border: 2px solid transparent;
  padding: 0;
  background: transparent;
  cursor: pointer;
}

.gallery-viewer-thumbs button.is-active {
  border-color: var(--orange);
}

.gallery-viewer-thumbs img {
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
}

.footer-bottom {
  padding: 18px 20px;
  text-align: center;
  border-top: 1px solid rgba(255, 255, 255, 0.18);
  color: rgba(255, 255, 255, 0.78);
}

@media (max-width: 980px) {
  .menu-toggle {
    display: block;
  }

  .menu {
    position: absolute;
    left: 20px;
    right: 20px;
    top: 100%;
    display: none;
    flex-direction: column;
    align-items: stretch;
    padding: 10px;
    background: #ffffff;
    box-shadow: 0 20px 40px rgba(17, 24, 39, 0.16);
  }

  .menu.is-open {
    display: flex;
  }

  .site-search {
    order: 3;
    width: 100%;
    min-width: 0;
  }

  .hero-grid,
  .split-grid,
  .contact-grid,
  .portal-grid,
  .portal-dashboard,
  .portal-topbar,
  .project-detail {
    grid-template-columns: 1fr;
  }

  .portal-sidebar {
    position: static;
    min-height: auto;
    grid-template-columns: repeat(3, 1fr);
    padding: 18px;
  }

  .portal-brand {
    grid-column: 1 / -1;
    margin-bottom: 8px;
  }

  .portal-main {
    padding: 24px 18px 44px;
  }

  .portal-login {
    grid-template-columns: 1fr;
    padding: 44px 24px;
  }

  .portal-login > * {
    grid-column: 1;
  }

  .portal-login::after {
    display: none;
  }

  .portal-topbar {
    margin-right: 58px;
  }

  .contact .contact-grid {
    grid-template-columns: 1fr;
    min-height: 300px;
  }

  .contact-action {
    justify-content: flex-start;
    padding-top: 18px;
  }

  .contact-form {
    left: 50%;
    transform: translate(-50%, -50%);
  }

  .hero-badge {
    justify-self: start;
    width: min(320px, 100%);
  }

  .issue-strip,
  .service-grid,
  .strategic-grid,
  .project-grid,
  .detail-grid,
  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }

  .project-detail-gallery img:first-child,
  .project-detail-gallery img {
    height: 240px;
  }

  .strategic-grid article,
  .strategic-grid article:nth-child(4) {
    grid-column: span 1;
  }

  .strategic-grid article:nth-child(5) {
    grid-column: span 1;
  }
}

@media (max-width: 640px) {
  .container {
    width: min(100% - 28px, 1140px);
  }

  .topbar-inner {
    align-items: flex-start;
    flex-direction: column;
    padding: 10px 0;
  }

  .social-links {
    align-self: auto;
  }

  .social-links a {
    min-width: 44px;
    min-height: 34px;
  }

  .topbar-contact {
    align-items: flex-start;
    flex-direction: column;
    gap: 6px;
    margin-left: 0;
  }

  .brand img {
    width: 190px;
  }

  .hero {
    min-height: auto;
  }

  .hero-grid {
    padding: 56px 0 100px;
    gap: 32px;
  }

  .hero h1 {
    font-size: 42px;
  }

  .issue-strip {
    grid-template-columns: 1fr;
    margin-top: -48px;
  }

  .issue-card {
    min-height: 260px;
    padding: 44px 28px;
  }

  .section {
    padding: 68px 0;
  }

  .contact {
    padding: 32px 0 20px;
  }

  .contact .contact-grid {
    min-height: 280px;
  }

  .service-grid,
  .strategic-grid,
  .project-grid,
  .detail-grid,
  .detail-single,
  .external-reader,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .about-slide-controls {
    width: 100%;
    position: static;
    height: auto;
    overflow: visible;
    clip: auto;
  }

  .about-slide-tab {
    flex: 1;
  }

  .team-slider-wrap {
    grid-template-columns: 1fr;
  }

  .team-track {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .partner-logo {
    width: 160px;
    height: 96px;
  }

  .strategic-heading p {
    text-align: center;
  }

  .strategic-grid {
    gap: 34px;
  }

  .strategic-grid article {
    grid-template-columns: 54px 1fr;
    gap: 16px;
  }

  .strategic-icon svg {
    width: 32px;
    height: 32px;
  }

  .strategic-icon {
    width: 54px;
    height: 54px;
  }

  .portal-panel,
  .contact-form {
    padding: 24px;
  }

  .portal-panel {
    padding: 0;
  }

  .portal-dashboard,
  .portal-topbar,
  .portal-grid {
    grid-template-columns: 1fr;
  }

  .portal-sidebar {
    position: static;
    min-height: auto;
  }

  .portal-topbar {
    margin-right: 44px;
  }

  .portal-stats {
    grid-template-columns: 1fr;
  }

  .project-detail-shell {
    padding: 12px;
  }

  .project-detail {
    max-height: calc(100vh - 24px);
  }

  .project-detail-gallery {
    grid-template-columns: 1fr;
    padding: 14px;
  }

  .project-impact-grid {
    grid-template-columns: 1fr;
  }

  .project-detail-copy {
    padding: 34px 24px 28px;
  }
}

@media (max-width: 420px) {
  .container {
    width: min(100% - 22px, 1140px);
  }

  .brand img {
    width: 165px;
  }

  .hero h1 {
    font-size: 36px;
  }

  .hero p {
    font-size: 14px;
  }

  .hero-actions .button {
    width: 100%;
  }

  .issue-card {
    padding: 36px 22px;
  }

  .portal-shell {
    padding: 0;
  }

  .portal-panel {
    max-height: 100vh;
    padding: 20px;
  }

  .portal-list-item {
    align-items: flex-start;
    flex-direction: column;
  }

  .project-detail-shell {
    padding: 0;
  }

  .project-detail-gallery img:first-child,
  .project-detail-gallery img {
    height: 210px;
  }

  .team-track {
    grid-template-columns: 1fr;
  }
}


.website-field {
  position: absolute !important;
  left: -9999px !important;
  width: 1px !important;
  height: 1px !important;
  opacity: 0 !important;
  pointer-events: none !important;
}
