:root {
  --navy: #00172f;
  --navy-2: #031c3b;
  --blue: #075ce8;
  --cyan: #14baf4;
  --ink: #071a3a;
  --muted: #4a5870;
  --line: #dfe5ed;
  --page: #f8fafc;
  --max: 1220px;
}
* {
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
}
body {
  margin: 0;
  color: var(--ink);
  background: #fff;
  font-family:
    Inter,
    ui-sans-serif,
    -apple-system,
    BlinkMacSystemFont,
    Segoe UI,
    Arial,
    sans-serif;
  line-height: 1.35;
}
img {
  display: block;
  max-width: 100%;
}
a {
  color: inherit;
  text-decoration: none;
}
button,
a {
  -webkit-tap-highlight-color: transparent;
}
.skip-link {
  position: fixed;
  left: 1rem;
  top: -4rem;
  z-index: 1000;
  background: #fff;
  color: #000;
  padding: 0.6rem 1rem;
}
.skip-link:focus {
  top: 1rem;
}
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: #fffffffa;
  border-bottom: 1px solid #e3e7ed;
}
.header-inner {
  width: min(var(--max), calc(100% - 48px));
  height: 66px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 24px;
}
.brand-desktop img {
  width: 342px;
  height: auto;
}
.brand-mobile {
  display: none;
}
.desktop-nav {
  display: flex;
  align-items: center;
  gap: 28px;
  margin-left: auto;
  font-size: 13px;
  font-weight: 700;
}
.desktop-nav a:hover {
  color: var(--blue);
}
.desktop-nav a[aria-current="page"] {
  color: var(--blue);
  border-bottom: 2px solid var(--blue);
  padding-bottom: 2px;
}
.catalog-header {
  flex: 0 0 auto;
  padding: 13px 18px;
  border-radius: 4px;
  background: var(--blue);
  color: #fff;
  font-weight: 700;
  font-size: 14px;
  box-shadow: 0 6px 16px #075ce833;
  transition: background 0.15s ease-in-out;
}
a.catalog-header:hover {
  background: #2a7af5;
  color: #fff !important;
}
.menu-toggle,
.mobile-menu {
  display: none;
}
.hero {
  position: relative;
  min-height: 340px;
  overflow: hidden;
  background: var(--navy);
}
.hero-space,
.hero-instrument,
.hero-overlay {
  position: absolute;
  inset: 0;
}
.hero-space {
  left: 31%;
  background: url(/assets/nsdf/hero-space.jpg) center / cover no-repeat;
}
.hero-instrument {
  right: auto;
  width: 31%;
  background: url(/assets/nsdf/hero-instrument.jpg) left center / cover
    no-repeat;
}
.hero-overlay {
  background:
    linear-gradient(
      90deg,
      #000b1afa,
      #000b1aed 22%,
      #000b1a85 48%,
      #000b1a1f 78%
    ),
    linear-gradient(0deg, #000e2038, #000e2038);
}
.hero-content {
  position: relative;
  width: min(var(--max), calc(100% - 48px));
  margin: 0 auto;
  padding: 35px 0 25px;
  color: #fff;
}
.hero h1 {
  max-width: 500px;
  margin: 0 0 8px;
  font-size: clamp(38px, 4vw, 55px);
  line-height: 0.96;
  letter-spacing: -2px;
  font-weight: 800;
}
.hero h1 span {
  color: #1187ef;
}
.hero-vision {
  max-width: 510px;
  margin: 0 0 9px;
  font-size: 15px;
  font-weight: 700;
}
.hero-summary {
  max-width: 480px;
  margin: 0 0 15px;
  font-size: 14px;
}
.hero-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}
.btn {
  min-height: 38px;
  padding: 10px 19px;
  border: 1px solid transparent;
  border-radius: 4px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 18px;
  font-size: 13px;
  font-weight: 700;
  transition:
    background 0.15s ease-in-out,
    transform 0.15s ease-in-out;
}
.btn-primary {
  background: var(--blue);
  color: #fff;
}
.btn-primary:hover {
  background: #3d8bff;
}
.btn-primary span {
  transition: transform 0.15s ease-in-out;
}
.btn-primary:hover span {
  transform: translateX(3px);
}
.btn-outline {
  border-color: #fffc;
  color: #fff;
  background: #000d2057;
}
.btn-light {
  color: var(--blue);
  border-color: #8aa8e5;
  background: #fff;
}
.section {
  padding: 14px 0 18px;
}
.section-heading {
  text-align: center;
  margin-bottom: 10px;
}
.section-heading h2,
.community h2 {
  margin: 0 0 2px;
  color: #091c48;
  font-size: 2.25rem;
  line-height: 1.1;
}
.section-heading p {
  margin: 0;
  font-size: 1rem;
  color: #4d5b72;
}
.case-grid {
  width: min(1028px, calc(100% - 48px));
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
}
.case-card {
  overflow: hidden;
  border: 1px solid #e0e5ec;
  border-radius: 7px;
  background: #fff;
  box-shadow: 0 6px 13px #132a4c14;
  display: flex;
  flex-direction: column;
  transition: transform 0.15s ease-in-out;
  text-decoration: none;
  color: inherit;
}
.case-card:hover {
  background: #f0f4fa;
  box-shadow: 0 4px 14px #0f27481a;
}
.case-image {
  position: relative;
  height: 120px;
  overflow: hidden;
}
.case-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.case-icon {
  position: absolute;
  top: 9px;
  left: 9px;
  width: 33px;
  height: 33px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  color: #fff;
  font-size: 18px;
  font-weight: 700;
  box-shadow: 0 2px 8px #00000040;
}
.case-icon.blue {
  background: #0760eb;
}
.case-icon.purple {
  background: #7b4ec3;
}
.case-icon.green {
  background: #73a82b;
}
.case-icon.cyan {
  background: #1598c8;
}
.case-copy {
  padding: 12px 14px 14px;
  min-height: 140px;
  display: flex;
  flex-direction: column;
  flex: 1;
}
.case-copy h3 {
  margin: 0 0 6px;
  font-size: 1rem;
  line-height: 1.2;
}
.case-copy p {
  margin: 0 0 10px;
  font-size: 1rem;
  line-height: 1.3;
  color: #14233e;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.case-copy a,
.section-link {
  color: var(--blue);
  font-size: 1rem;
  font-weight: 700;
  margin: 12px auto 0;
  display: block;
  width: max-content;
  text-align: center;
  margin-left: auto;
  margin-right: auto;
}
.section-link span {
  transition: transform 0.15s ease-in-out;
  display: inline-flex;
  align-items: center;
  gap: 4px;
}
.section-link:hover span {
  transform: translateX(4px);
}
.case-copy .card-link {
  color: var(--blue);
  font-size: 1rem;
  font-weight: 700;
  margin-top: auto;
  display: inline-flex;
  align-items: center;
  gap: 4px;
}
.case-copy .card-link span {
  transition: transform 0.15s ease-in-out;
}
.case-card:hover .case-copy .card-link span {
  transform: translateX(4px);
}
.carousel-dots {
  display: none;
}
.impact-strip {
  min-height: 80px;
  padding: 13px max(24px, calc((100% - 1080px) / 2));
  background: linear-gradient(90deg, #00142d, #00204a 58%, #00142d);
  color: #fff;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}
.impact-item {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  padding: 0 25px;
  border-right: 1px solid rgba(255, 255, 255, 0.15);
}
.impact-item:last-child {
  border-right: 0;
}
.impact-icon {
  color: #85c7ff;
  font-size: 38px;
  font-weight: 300;
}
.impact-item strong {
  display: block;
  color: #13b6f5;
  font-size: 26px;
  line-height: 0.95;
}
.impact-item small {
  display: block;
  margin-top: 4px;
  font-size: 11px;
  line-height: 1.15;
}
.community {
  width: min(1030px, calc(100% - 48px));
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1.15fr;
  gap: 55px;
  align-items: center;
}
.community-copy > p {
  max-width: 420px;
  margin: 5px 0 14px;
  font-size: 1rem;
}
.community-paths {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
}
.community-paths div {
  text-align: center;
}
.community-paths span {
  display: block;
  color: var(--blue);
  font-size: 25px;
  line-height: 1;
}
.community-paths strong,
.community-paths small {
  display: block;
}
.community-paths strong {
  font-size: 14px;
}
.community-paths small {
  font-size: 12px;
}
.community-visual img {
  width: 100%;
  height: 106px;
  object-fit: cover;
  border-radius: 5px;
}
.community-actions {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin-top: 6px;
}
.community-actions .btn {
  min-width: 130px;
  min-height: 38px;
  padding: 10px 19px;
  font-size: 13px;
}
.site-footer {
  color: #fff;
  background: linear-gradient(90deg, #00162f, #00204a 55%, #00162f);
}
.footer-grid {
  width: min(var(--max), calc(100% - 48px));
  margin: 0 auto;
  min-height: 105px;
  padding: 12px 0 8px;
  display: grid;
  grid-template-columns: 2.2fr repeat(5, 0.72fr) 1.7fr;
  gap: 22px;
  align-items: start;
}
.footer-brand img {
  width: 270px;
  filter: brightness(1.5);
}
.footer-brand p {
  width: 220px;
  margin: 4px 0;
  font-size: 12px;
  color: #dbe8f7;
}
.socials {
  display: flex;
  gap: 13px;
  font-size: 13px;
}
.footer-column h3 {
  margin: 0 0 5px;
  font-size: 13px;
}
.footer-column a {
  display: block;
  margin: 0 0 3px;
  font-size: 12px;
  color: #e7eef9;
}
.nsf-support {
  display: flex;
  align-items: center;
  gap: 10px;
  align-self: center;
}
.nsf-support img {
  width: 62px;
  height: 62px;
  object-fit: contain;
}
.nsf-support p {
  margin: 0;
  font-size: 12px;
  line-height: 1.45;
}
.footer-bottom {
  width: min(var(--max), calc(100% - 48px));
  margin: 0 auto;
  padding: 4px 0 7px;
  display: flex;
  justify-content: center;
  gap: 18px;
  font-size: 11px;
  color: #d9e3f0;
}
.mobile-bottom-nav {
  display: none;
}
@media (max-width: 1050px) {
  .desktop-nav {
    gap: 17px;
    font-size: 11px;
  }
  .brand-desktop img {
    width: 290px;
  }
  .footer-grid {
    grid-template-columns: 1.8fr repeat(3, 0.75fr) 1.4fr;
  }
  .footer-column:nth-of-type(4),
  .footer-column:nth-of-type(5) {
    display: none;
  }
}
@media (max-width: 760px) {
  body {
    padding-bottom: 69px;
  }
  .site-header {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    background: transparent;
    border-bottom: 0;
  }
  body.news-page .site-header,
  body:has(.detail-hero) .site-header {
    background: #00172f;
  }
  .header-inner {
    width: calc(100% - 30px);
    height: 74px;
    gap: 10px;
  }
  .brand-desktop,
  .desktop-nav,
  .catalog-header {
    display: none;
  }
  .brand-mobile {
    display: flex;
    align-items: center;
    gap: 7px;
    color: #fff;
    font-size: 11px;
    line-height: 1.05;
    font-weight: 700;
  }
  .brand-mobile img {
    width: 78px;
    height: 43px;
    object-fit: contain;
    filter: brightness(1.3);
  }
  .menu-toggle {
    margin-left: auto;
    display: inline-flex;
    width: 36px;
    height: 36px;
    padding: 7px;
    border: 0;
    background: transparent;
    flex-direction: column;
    justify-content: center;
    gap: 5px;
  }
  .menu-toggle span {
    width: 24px;
    height: 2px;
    background: #fff;
  }
  .mobile-menu {
    position: absolute;
    top: 68px;
    left: 15px;
    right: 15px;
    padding: 10px;
    border-radius: 8px;
    background: #001127f7;
    border: 1px solid rgba(255, 255, 255, 0.18);
  }
  .mobile-menu:not([hidden]) {
    display: grid;
  }
  .mobile-menu a {
    padding: 10px;
    color: #fff;
    border-bottom: 1px solid rgba(255, 255, 255, 0.12);
  }
  .mobile-menu a[aria-current="page"] {
    color: #7ab3ff;
    background: rgba(255, 255, 255, 0.08);
  }
  .hero {
    min-height: 411px;
  }
  .hero-instrument {
    display: none;
  }
  .hero-space {
    left: 0;
    background-position: 59% center;
  }
  .hero-overlay {
    background:
      linear-gradient(90deg, #000c1dfa, #000c1dd1 60%, #000c1d40),
      linear-gradient(0deg, #000e2073, #000e201f);
  }
  .hero-content {
    width: calc(100% - 30px);
    padding: 101px 0 15px;
  }
  .hero h1 {
    max-width: 280px;
    font-size: 35px;
    line-height: 0.98;
    letter-spacing: -1.2px;
    margin-bottom: 9px;
  }
  .hero-vision {
    max-width: 280px;
    font-size: 11px;
    line-height: 1.42;
    margin-bottom: 10px;
  }
  .hero-summary {
    display: none;
  }
  .hero-actions {
    display: grid;
    gap: 8px;
  }
  .hero-actions .btn {
    width: 100%;
    min-height: 34px;
    padding-block: 8px;
    font-size: 11px;
  }
  .section {
    padding: 13px 0 10px;
  }
  .section-heading h2 {
    font-size: 20px;
  }
  .section-heading p {
    font-size: 10px;
  }
  .case-grid {
    width: calc(100% - 34px);
    display: block;
  }
  .case-card {
    display: none;
  }
  .case-card:first-child {
    display: flex;
  }
  .case-image {
    height: 81px;
  }
  .case-copy {
    min-height: 100px;
    padding: 8px 10px 10px;
  }
  .case-copy h3 {
    font-size: 12px;
  }
  .case-copy p {
    font-size: 11px;
  }
  .carousel-dots {
    display: flex;
    justify-content: center;
    gap: 5px;
    margin: 4px 0 2px;
  }
  .carousel-dots span {
    width: 5px;
    height: 5px;
    border-radius: 50%;
    background: #c9d1df;
  }
  .carousel-dots .active {
    background: var(--blue);
  }
  .section-link {
    margin-top: 8px;
    font-size: 11px;
  }
  .impact-strip {
    min-height: 84px;
    padding: 0;
    grid-template-columns: repeat(4, 1fr);
  }
  .impact-item {
    min-width: 0;
    display: block;
    padding: 10px 4px 5px;
    text-align: center;
  }
  .impact-icon {
    display: block;
    font-size: 22px;
    line-height: 1;
  }
  .impact-item strong {
    margin-top: 3px;
    font-size: 13px;
    line-height: 0.95;
  }
  .impact-item small {
    font-size: 7px;
    line-height: 1.1;
  }
  .community {
    width: 100%;
    padding: 13px 16px 10px;
    display: block;
  }
  .community h2 {
    font-size: 18px;
  }
  .community-copy > p {
    margin-bottom: 11px;
    font-size: 10px;
  }
  .community-paths,
  .community-visual img {
    display: none;
  }
  .community-actions {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 8px;
    margin: 0;
  }
  .community-actions .btn {
    width: 100%;
    min-width: 0;
    min-height: 32px;
  }
  .site-footer {
    padding: 13px 16px;
  }
  .footer-grid {
    width: 100%;
    min-height: 78px;
    padding: 0;
    display: block;
  }
  .footer-brand,
  .footer-column,
  .footer-bottom {
    display: none;
  }
  .nsf-support {
    display: flex;
    justify-content: flex-start;
    min-height: 52px;
  }
  .nsf-support img {
    width: 55px;
    height: 55px;
  }
  .nsf-support p {
    font-size: 12px;
  }
  .mobile-bottom-nav {
    position: fixed;
    z-index: 120;
    left: 0;
    right: 0;
    bottom: 0;
    height: 69px;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    background: #fffffffa;
    border-top: 1px solid #dbe1ea;
    box-shadow: 0 -4px 20px #0118361c;
  }
  .mobile-bottom-nav a,
  .mobile-bottom-nav button {
    border: 0;
    background: transparent;
    color: #071a3a;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 3px;
    font: inherit;
    font-size: 8px;
  }
  .mobile-bottom-nav span {
    color: var(--blue);
    font-size: 20px;
    line-height: 1;
  }
}
@media (max-width: 390px) {
  .hero h1 {
    font-size: 32px;
  }
  .brand-mobile span {
    font-size: 10px;
  }
}
.ask-nsdf-float {
  position: fixed;
  z-index: 115;
  right: 18px;
  bottom: 18px;
  min-width: 238px;
  min-height: 62px;
  padding: 11px 16px;
  display: grid;
  grid-template-columns: 28px 1fr 18px;
  align-items: center;
  gap: 11px;
  color: #fff;
  background: linear-gradient(135deg, #0c61ee, #2381f5);
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 22px;
  box-shadow: 0 14px 34px #00359152;
  transition:
    transform 0.18s ease,
    box-shadow 0.18s ease;
}
.ask-nsdf-float:hover,
.ask-nsdf-float:focus-visible {
  transform: translateY(-2px);
  box-shadow: 0 18px 38px #00359166;
}
.ask-icon {
  display: grid;
  place-items: center;
  font-size: 21px;
  line-height: 1;
}
.ask-copy {
  display: flex;
  flex-direction: column;
  line-height: 1.08;
}
.ask-copy strong {
  font-size: 17px;
  font-weight: 800;
}
.ask-copy small {
  margin-top: 3px;
  font-size: 11px;
  font-weight: 500;
  color: #ffffffeb;
}
.ask-arrow {
  font-size: 20px;
  font-weight: 700;
  text-align: right;
}
@media (max-width: 760px) {
  .ask-nsdf-float {
    left: 16px;
    right: 16px;
    bottom: 76px;
    min-width: 0;
    min-height: 54px;
    padding: 9px 13px;
    grid-template-columns: 25px 1fr 17px;
    border-radius: 15px;
  }
  .ask-copy strong {
    font-size: 15px;
  }
  .ask-copy small {
    font-size: 9px;
  }
}
.use-cases-page {
  background: #f7f9fc;
}
.usecases-hero {
  position: relative;
  min-height: 130px;
  overflow: hidden;
  color: #fff;
  background: #00172f;
}
.usecases-hero-bg,
.usecases-hero-overlay {
  position: absolute;
  inset: 0;
}
.usecases-hero-bg {
  background: url(/assets/nsdf/hero-space.jpg) right center / cover no-repeat;
}
.usecases-hero-overlay {
  background: linear-gradient(
    90deg,
    #000f23fa,
    #000f23e6 37%,
    #000f2359 72%,
    #000f231f
  );
}
.usecases-hero-inner {
  position: relative;
  width: min(1060px, calc(100% - 48px));
  margin: 0 auto;
  padding: 18px 0 17px;
}
.usecases-hero h1 {
  margin: 0 0 6px;
  font-size: 35px;
  line-height: 1;
}
.usecases-hero p {
  max-width: 510px;
  margin: 0;
  font-size: 13px;
  line-height: 1.4;
}
.featured-usecase {
  width: min(1200px, calc(100% - 48px));
  margin: 20px auto 15px;
  display: grid;
  grid-template-columns: 35% 65%;
  overflow: hidden;
  background: #fff;
  border: 1px solid #e0e5ec;
  border-radius: 7px;
  box-shadow: 0 7px 18px #0f274814;
}
.featured-media {
  position: relative;
  min-height: 160px;
}
.featured-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.featured-badge {
  position: absolute;
  top: 12px;
  left: 12px;
  padding: 6px 12px;
  border-radius: 4px;
  background: #075ce8;
  color: #fff;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}
.featured-content {
  padding: 18px 22px 18px;
}
.eyebrow {
  margin: 0 0 5px;
  color: #194bc6;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}
.eyebrow span {
  padding: 0 5px;
  color: #74839a;
}
.featured-content h2 {
  margin: 0 0 8px;
  font-size: 1.5rem;
  color: #071a3a;
}
.featured-lede {
  margin: 0 0 14px;
  font-size: 1rem;
  line-height: 1.4;
}
.featured-points {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
}
.featured-points article {
  display: grid;
  grid-template-columns: 30px 1fr;
  gap: 10px;
}
.point-icon {
  color: #075ce8;
  font-size: 24px;
  line-height: 1;
}
.featured-points h3 {
  margin: 0 0 4px;
  font-size: 1rem;
}
.featured-points p {
  margin: 0;
  font-size: 1rem;
  line-height: 1.3;
}
.featured-actions {
  display: flex;
  gap: 9px;
  margin-top: 12px;
}
.featured-actions .btn {
  min-width: 145px;
  min-height: 38px;
  padding: 10px 19px;
  font-size: 13px;
}
.usecase-gallery {
  padding: 0 0 10px;
}
.gallery-inner {
  width: min(1060px, calc(100% - 48px));
  margin: 0 auto;
}
.filter-row {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  margin-bottom: 10px;
}
.filter-chip {
  padding: 6px 14px;
  border: 1px solid #cfd8e5;
  border-radius: 5px;
  background: #fff;
  color: #152849;
  font: inherit;
  font-size: 10px;
  font-weight: 700;
  cursor: pointer;
}
.filter-chip.active {
  background: #075ce8;
  color: #fff;
  border-color: #075ce8;
}
.mobile-gallery-title {
  display: none;
}
.usecase-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 10px;
}
.usecase-card {
  overflow: hidden;
  border: 1px solid #e0e5ec;
  border-radius: 7px;
  background: #fff;
  box-shadow: 0 6px 13px #132a4c12;
  display: flex;
  flex-direction: column;
  transition: transform 0.15s ease-in-out;
  text-decoration: none;
  color: inherit;
}
.usecase-card:hover {
  background: #f0f4fa;
  box-shadow: 0 4px 14px #0f27481a;
}
.usecase-card .usecase-body .card-link {
  color: #075ce8;
  font-size: 1rem;
  font-weight: 800;
  margin-top: auto;
  display: inline-flex;
  align-items: center;
  gap: 4px;
}
.usecase-card .usecase-body .card-link span {
  transition: transform 0.15s ease-in-out;
}
.usecase-card:hover .usecase-body .card-link span {
  transform: translateX(4px);
}
.usecase-card[hidden] {
  display: none !important;
}
.usecase-image {
  position: relative;
  height: 110px;
}
.usecase-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.case-icon.navy {
  background: #0a4d9a;
}
.usecase-body {
  padding: 10px 12px 12px;
  display: flex;
  flex-direction: column;
  flex: 1;
}
.usecase-body h3 {
  margin: 0 0 6px;
  font-size: 1rem;
  line-height: 1.2;
}
.usecase-body p:not(.eyebrow) {
  margin: 0 0 10px;
  font-size: 1rem;
  line-height: 1.3;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.usecase-dots {
  display: none;
}
.workflow-band {
  padding: 20px max(24px, calc((100% - 1060px) / 2));
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
  color: #fff;
  background: linear-gradient(90deg, #00142d, #00204a 58%, #00142d);
}
.workflow-intro {
  text-align: center;
}
.workflow-intro h1 {
  margin: 0;
  color: #6acbff;
  font-size: 32px;
  line-height: 1.1;
}
.workflow-flow {
  display: grid;
  grid-template-columns: 1fr auto 1fr auto 1fr auto 1fr auto 1fr auto 1fr;
  gap: 5px;
  align-items: center;
}
.workflow-flow > div {
  text-align: center;
}
.workflow-flow > i {
  color: #55aef9;
  font-style: normal;
}
.workflow-flow span {
  width: 60px;
  height: 60px;
  margin: 0 auto 8px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.35);
  border-radius: 50%;
  color: #fff;
  font-size: 24px;
}
.workflow-flow small {
  display: block;
  font-size: 12px;
  line-height: 1.2;
}
.workflow-flow .nsdf-node {
  border: 0;
}
.workflow-flow .nsdf-node img {
  width: 62px;
  height: 62px;
  object-fit: contain;
  filter: brightness(1.25);
}
.workflow-metrics {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
}
.workflow-metrics div {
  text-align: center;
  border-left: 1px solid rgba(255, 255, 255, 0.15);
}
.workflow-metrics strong {
  display: block;
  color: #28bbf7;
  font-size: 32px;
}
.workflow-metrics small {
  display: block;
  margin-top: 4px;
  font-size: 14px;
}
.outcomes-cta {
  width: min(1060px, calc(100% - 48px));
  margin: 0 auto;
  padding: 13px 0 18px;
  display: grid;
  grid-template-columns: 2.2fr 1fr;
  gap: 18px;
}
.outcomes h2,
.challenge-cta h2 {
  margin: 0 0 12px;
  font-size: 28px;
}
.outcome-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 10px;
}
.outcome-grid article {
  display: grid;
  grid-template-columns: 26px 1fr;
  gap: 7px;
}
.outcome-grid span {
  color: #075ce8;
  font-size: 28px;
}
.outcome-grid h3 {
  margin: 0 0 4px;
  font-size: 18px;
}
.outcome-grid p {
  margin: 0;
  font-size: 14px;
  line-height: 1.3;
}
.challenge-cta {
  padding-left: 18px;
  border-left: 1px solid #dfe5ed;
}
.challenge-cta p {
  margin: 0 0 12px;
  font-size: 16px;
  line-height: 1.4;
}
.challenge-actions {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}
.challenge-actions .btn {
  min-height: 36px;
  padding: 8px 16px;
  font-size: 14px;
}
@media (max-width: 900px) {
  .usecase-grid {
    grid-template-columns: repeat(3, 1fr);
  }
  .workflow-band {
    grid-template-columns: 1fr;
  }
  .workflow-intro h1 {
    font-size: 26px;
  }
  .workflow-metrics {
    max-width: 400px;
  }
}
@media (max-width: 760px) {
  .usecases-hero {
    min-height: 280px;
    padding-top: 70px;
  }
  .usecases-hero-bg {
    background-position: 62% center;
  }
  .usecases-hero-overlay {
    background:
      linear-gradient(90deg, #000f23fa, #000f23ad 65%, #000f2338),
      linear-gradient(0deg, #000f234d, #000f230d);
  }
  .usecases-hero-inner {
    width: calc(100% - 30px);
    padding: 26px 0;
  }
  .usecases-hero h1 {
    max-width: 280px;
    font-size: 32px;
  }
  .usecases-hero p {
    max-width: 295px;
    font-size: 11px;
  }
  .featured-usecase {
    width: calc(100% - 30px);
    margin-top: 90px;
    position: relative;
    z-index: 2;
    display: block;
  }
  .featured-media {
    min-height: 105px;
  }
  .featured-content {
    padding: 10px 12px 12px;
  }
  .featured-content h2 {
    font-size: 19px;
  }
  .featured-lede {
    font-size: 10px;
  }
  .featured-points {
    display: none;
  }
  .featured-actions {
    display: block;
  }
  .featured-actions .btn {
    width: 100%;
  }
  .featured-actions .btn-light {
    display: none;
  }
  .gallery-inner {
    width: 100%;
  }
  .mobile-gallery-title {
    display: block;
    margin: 12px 15px 8px;
    text-align: center;
    font-size: 18px;
  }
  .filter-row {
    padding: 0 15px;
    flex-wrap: nowrap;
    overflow-x: auto;
    scrollbar-width: none;
  }
  .filter-row::-webkit-scrollbar {
    display: none;
  }
  .filter-chip {
    flex: 0 0 auto;
  }
  .usecase-grid {
    display: block;
    padding: 0 15px;
  }
  .usecase-card {
    display: none;
  }
  .usecase-card:first-child {
    display: grid;
    grid-template-columns: 38% 62%;
  }
  .usecase-image {
    height: auto;
    min-height: 155px;
  }
  .usecase-body {
    padding: 10px;
  }
  .usecase-body h3 {
    font-size: 13px;
  }
  .usecase-body p:not(.eyebrow) {
    font-size: 10px;
  }
  .usecase-dots {
    display: flex;
    justify-content: center;
    gap: 5px;
    margin: 8px 0 0;
  }
  .usecase-dots span {
    width: 5px;
    height: 5px;
    border-radius: 50%;
    background: #c9d1df;
  }
  .usecase-dots .active {
    background: #075ce8;
  }
  .workflow-band {
    padding: 16px 15px;
    grid-template-columns: 1fr;
  }
  .workflow-intro {
    text-align: center;
  }
  .workflow-intro h1 {
    font-size: 22px;
  }
  .workflow-flow {
    display: none;
  }
  .workflow-metrics {
    grid-template-columns: repeat(2, 1fr);
    gap: 8px;
  }
  .workflow-metrics div {
    padding: 6px;
  }
  .workflow-metrics strong {
    font-size: 22px;
  }
  .workflow-metrics small {
    font-size: 11px;
  }
  .outcomes-cta {
    width: 100%;
    padding: 12px 15px 18px;
    display: block;
  }
  .outcomes {
    display: none;
  }
  .challenge-cta {
    padding: 0;
    border-left: 0;
  }
  .challenge-cta h2 {
    font-size: 22px;
  }
  .challenge-cta p {
    font-size: 14px;
  }
  .challenge-actions {
    display: grid;
  }
  .challenge-actions .btn {
    width: 100%;
    min-height: 32px;
  }
}
.gallery-heading-row {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 20px;
  margin: 0 0 10px;
}
.gallery-heading-row h2 {
  margin: 0;
  font-size: 19px;
}
.gallery-heading-row a {
  color: var(--blue);
  font-size: 11px;
  font-weight: 800;
}
.carousel-shell {
  position: relative;
}
.usecase-track {
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: calc((100% - 30px) / 4);
  gap: 10px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scrollbar-width: none;
  padding: 1px;
}
.usecase-track::-webkit-scrollbar {
  display: none;
}
.carousel-card {
  scroll-snap-align: start;
}
.carousel-arrow {
  position: absolute;
  z-index: 5;
  top: 50%;
  width: 38px;
  height: 38px;
  margin-top: -19px;
  border: 1px solid #d6dfeb;
  border-radius: 50%;
  background: #fffffff5;
  color: var(--blue);
  box-shadow: 0 7px 20px #071a3a1f;
  cursor: pointer;
}
.carousel-prev {
  left: -48px;
}
.carousel-next {
  right: -48px;
}
.carousel-status {
  display: flex;
  justify-content: center;
  gap: 6px;
  margin-top: 9px;
}
.carousel-status span {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #ced6e3;
}
.carousel-status .active {
  background: var(--blue);
}
.detail-page {
  background: #f7f9fc;
}
.detail-hero {
  position: relative;
  min-height: 200px;
  color: #fff;
  background: #00172f;
}
.detail-hero > img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.detail-overlay {
  display: none;
}
.detail-hero-content {
  position: relative;
  width: min(1060px, calc(100% - 48px));
  margin: 0 auto;
  padding: 60px 0 50px;
}
.detail-hero-content h1 {
  max-width: 700px;
  margin: 0 0 12px;
  font-size: clamp(32px, 4vw, 48px);
  line-height: 1.1;
}
.detail-hero-content > p:last-child {
  max-width: 620px;
  font-size: 17px;
}
.eyebrow.light {
  color: #82ceff;
}
.detail-content {
  width: min(900px, calc(100% - 48px));
  margin: 20px auto 40px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.detail-article-image {
  display: block;
  max-width: 800px;
  max-height: 360px;
  width: 100%;
  height: auto;
  margin: 0 auto 16px;
  border-radius: 8px;
  object-fit: contain;
}
.detail-content h2 {
  margin: 24px 0 10px;
  font-size: 36px;
  border-bottom: 2px solid #075ce8;
  padding-bottom: 6px;
}
.detail-content h3 {
  margin: 18px 0 8px;
  font-size: 26px;
  color: #091c48;
}
.detail-content p {
  margin: 0;
  font-size: 1.1rem;
  line-height: 1.6;
}
.detail-image {
  display: flex;
  justify-content: center;
  margin: 16px 0;
}
.detail-image img {
  max-width: 600px;
  width: 100%;
  height: auto;
  max-height: 360px;
  object-fit: contain;
  box-shadow: 0 2px 8px rgba(0,0,0,0.15);
}
.detail-image-grid {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin: 16px 0;
  flex-wrap: wrap;
}
.detail-image-grid figure {
  margin: 0;
  text-align: center;
  flex: 0 1 280px;
}
.detail-image-grid figure img {
  width: 100%;
  height: auto;
  box-shadow: 0 2px 8px rgba(0,0,0,0.15);
}
.detail-image-grid figcaption {
  margin-top: 4px;
  font-size: 0.9rem;
}
.ahm-table {
  width: 100%;
  border-collapse: collapse;
  margin: 12px 0 24px;
  font-size: 0.95rem;
}
.ahm-table th {
  text-align: left;
  padding: 6px 10px;
  background: #f0f4ff;
  border-bottom: 2px solid #075ce8;
  font-weight: 600;
  color: #071a3a;
}
.ahm-table td {
  padding: 8px 10px;
  border-bottom: 1px solid #e0e6ef;
  vertical-align: top;
}
.ahm-table td:first-child {
  white-space: nowrap;
  font-weight: 500;
  color: #075ce8;
}
.ahm-table td:last-child {
  width: 210px;
}
.ahm-table td:last-child img {
  display: block;
  width: 100%;
  height: auto;
  box-shadow: 0 1px 4px rgba(0,0,0,0.12);
}
.detail-content blockquote {
  margin: 8px 0;
  padding: 16px 24px;
  background: #f0f4ff;
  border-left: 4px solid #075ce8;
  border-radius: 4px;
  font-size: 1.05rem;
  line-height: 1.6;
  color: #071a3a;
  position: relative;
}
.detail-content blockquote::before {
  content: "\201c";
  font-size: 2.5rem;
  color: #075ce8;
  position: absolute;
  top: 4px;
  left: 8px;
  line-height: 1;
  font-family: Georgia, serif;
}
.detail-content blockquote p {
  margin: 0 0 0 20px;
  font-size: 1.05rem;
  font-style: italic;
}
.detail-content blockquote footer {
  margin: 8px 0 0 20px;
  font-size: 0.9rem;
  color: #555;
  font-style: normal;
}
.detail-content a:not(.btn) {
  color: #075ce8;
  text-decoration: underline;
}
.detail-content a:not(.btn):hover {
  color: #0548b3;
}
.detail-content .btn {
  width: max-content;
  margin-top: 10px;
}
.detail-meta {
  background: #f5f7fa;
  border: 1px solid #e0e5ec;
  border-radius: 8px;
  padding: 20px 24px;
}
.detail-meta dl,
.detail-contacts dl {
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.detail-meta dl > div,
.detail-contacts dl > div {
  display: grid;
  grid-template-columns: 140px 1fr;
  gap: 12px;
}
.detail-meta dt,
.detail-contacts dt {
  font-weight: 800;
  font-size: 16px;
  color: #071a3a;
}
.detail-meta dd,
.detail-contacts dd {
  margin: 0;
  font-size: 16px;
  color: #5f6d83;
  line-height: 1.5;
}
.detail-content ul {
  margin: 0;
  padding-left: 20px;
}
.detail-content li {
  margin-bottom: 6px;
  font-size: 1rem;
  line-height: 1.5;
  color: #071a3a;
}
.publications-list {
  list-style: decimal;
  padding-left: 24px;
}
.publications-list li {
  margin-bottom: 16px;
  padding-bottom: 16px;
  border-bottom: 1px solid #e8edf3;
}
.publications-list li:last-child {
  border-bottom: none;
  padding-bottom: 0;
  margin-bottom: 0;
}
.publications-list a {
  color: #075ce8;
  word-break: break-all;
}
.detail-contacts {
  background: #f5f7fa;
  border: 1px solid #e0e5ec;
  border-radius: 8px;
  padding: 20px 24px;
}
.detail-contacts a {
  color: #075ce8;
  font-weight: 600;
}
@media (max-width: 900px) {
  .usecase-track {
    grid-auto-columns: calc((100% - 20px) / 3);
  }
}
@media (max-width: 760px) {
  .gallery-heading-row {
    display: block;
    text-align: center;
    padding: 0 15px;
  }
  .gallery-heading-row h2 {
    font-size: 18px;
  }
  .gallery-heading-row a {
    display: inline-block;
    margin-top: 4px;
  }
  .usecase-track {
    grid-auto-columns: 88%;
    padding: 0 15px 2px;
    gap: 10px;
  }
  .carousel-arrow {
    display: none;
  }
  .usecase-card {
    display: block !important;
  }
  .detail-hero {
    min-height: 180px;
  }
  .detail-hero-content {
    width: calc(100% - 30px);
    padding-top: 90px;
    padding-bottom: 30px;
  }
  .detail-hero-content h1 {
    font-size: 32px;
  }
  .detail-content {
    width: calc(100% - 30px);
    margin-top: 10px;
  }
  .detail-meta dl > div,
  .detail-contacts dl > div {
    grid-template-columns: 1fr;
    gap: 4px;
  }
}

/* ==========================================================
   Data & Services page
   ========================================================== */
.data-services-page {
  background: #f7f9fc;
}

.data-hero {
  position: relative;
  width: min(1180px, calc(100% - 48px));
  min-height: 190px;
  margin: 18px auto 8px;
  padding: 25px 44px;
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  align-items: center;
  overflow: hidden;
  border: 1px solid #d7e4fa;
  border-radius: 23px;
  background: linear-gradient(135deg, #f5f9ff 0%, #edf4ff 100%);
}
.data-kicker {
  margin: 0 0 12px;
  color: #075ce8;
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}
.data-hero h1 {
  margin: 0 0 13px;
  color: #061633;
  font-size: clamp(38px, 4vw, 55px);
  line-height: 0.96;
  letter-spacing: -2px;
}
.data-hero-copy > p:not(.data-kicker) {
  max-width: 710px;
  margin: 0 0 17px;
  color: #63708a;
  font-size: 16px;
  line-height: 1.45;
}
.data-hero-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}
.btn-data-outline {
  color: #075ce8;
  border-color: #8caee8;
  background: #fff;
}
.btn-data-outline span {
  transition: transform 0.15s ease-in-out;
}
.btn-data-outline:hover span {
  transform: translateX(3px);
}
.data-hero-art {
  position: relative;
  min-height: 160px;
}
.data-globe {
  position: absolute;
  width: 160px;
  height: 160px;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  border: 1px solid #b9d3fb;
  border-radius: 50%;
  background:
    radial-gradient(
      circle at 38% 30%,
      rgba(255, 255, 255, 0.95),
      transparent 35%
    ),
    repeating-radial-gradient(
      circle,
      transparent 0 18px,
      rgba(58, 128, 235, 0.12) 19px 20px
    ),
    linear-gradient(145deg, rgba(45, 122, 233, 0.12), rgba(255, 255, 255, 0.7));
  box-shadow: 0 0 60px rgba(65, 136, 241, 0.15);
}
.data-globe::before,
.data-globe::after {
  content: "";
  position: absolute;
  inset: 18px -90px;
  border: 1px dashed rgba(51, 121, 232, 0.25);
  border-radius: 50%;
  transform: rotate(10deg);
}
.data-globe::after {
  inset: -20px -45px;
  transform: rotate(-18deg);
}
.orbit-icon {
  position: absolute;
  width: 43px;
  height: 43px;
  display: grid;
  place-items: center;
  border: 1px solid #cfe0fb;
  border-radius: 50%;
  background: #fff;
  color: #075ce8;
  font-size: 20px;
  font-weight: 800;
  box-shadow: 0 6px 18px rgba(35, 92, 179, 0.12);
}
.oi-code {
  left: 20%;
  top: 4%;
}
.oi-data {
  left: 7%;
  top: 45%;
}
.oi-cloud {
  right: 4%;
  top: 35%;
}
.oi-chart {
  left: 19%;
  bottom: 2%;
}
.oi-shield {
  right: 18%;
  bottom: 4%;
}

.about-hero-art {
  position: relative;
  width: 380px;
  height: 280px;
}
.about-scene {
  position: relative;
  width: 100%;
  height: 100%;
}
.about-lines {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}
.about-lines line {
  stroke: #b9d3fb;
  stroke-width: 1.5;
  stroke-dasharray: 4 4;
}
.about-database {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  width: 85px;
  height: 85px;
  background: linear-gradient(135deg, #075ce8, #0a4bc4);
  border-radius: 14px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  color: #fff;
  box-shadow: 0 8px 24px rgba(7, 92, 232, 0.35);
  z-index: 2;
}
.about-database svg {
  width: 36px;
  height: 36px;
}
.about-database small {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.05em;
  margin-top: 2px;
}
.about-building {
  position: absolute;
  width: 60px;
  height: 65px;
  background: #f0f5ff;
  border: 1.5px solid #b9d3fb;
  border-radius: 8px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding-top: 5px;
  z-index: 2;
}
.about-building svg {
  width: 28px;
  height: 28px;
}
.about-building small {
  font-size: 9px;
  font-weight: 700;
  color: #075ce8;
  margin-top: 2px;
}
.ab-1 {
  left: 40px;
  top: 15px;
}
.ab-2 {
  right: 35px;
  top: 25px;
}
.ab-3 {
  right: 20px;
  bottom: 40px;
}
.about-person {
  position: absolute;
  width: 44px;
  height: 44px;
  background: #fff;
  border: 1.5px solid #cfe0fb;
  border-radius: 50%;
  display: grid;
  place-items: center;
  z-index: 2;
}
.about-person svg {
  width: 24px;
  height: 24px;
}
.ap-1 {
  left: 20px;
  bottom: 50px;
}
.ap-2 {
  left: 120px;
  bottom: 15px;
}
.ap-3 {
  right: 115px;
  bottom: 10px;
}
.ap-4 {
  left: 140px;
  top: 15px;
}

.data-entry-grid {
  width: min(1080px, calc(100% - 48px));
  margin: 8px auto 22px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
}
.data-entry-card {
  min-height: 150px;
  padding: 20px;
  display: grid;
  grid-template-columns: 45px 1fr;
  gap: 14px;
  border: 1px solid #dfe6ef;
  border-radius: 9px;
  background: #fff;
  box-shadow: 0 6px 18px rgba(15, 45, 83, 0.06);
  transition: transform 0.15s ease-in-out;
}
.data-entry-card:hover {
  transform: scale(1.05);
}
.entry-icon {
  width: 44px;
  height: 44px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  color: #fff;
  font-size: 24px;
}
.entry-blue {
  background: #075ce8;
}
.entry-green {
  background: #31a44b;
}
.entry-purple {
  background: #7245d4;
}
.data-entry-card h2 {
  margin: 2px 0 8px;
  font-size: 1rem;
}
.data-entry-card p {
  margin: 0 0 10px;
  color: #34425b;
  font-size: 1rem;
  line-height: 1.4;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.data-entry-card a,
.data-heading-row a,
.collection-body a,
.collection-card-link,
.data-info-panel > a {
  color: #075ce8;
  font-size: 13px;
  font-weight: 800;
}

.data-section {
  width: min(1160px, calc(100% - 48px));
  margin: 0 auto 19px;
}
.data-heading-row {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  margin-bottom: 9px;
}
.data-heading-row h2,
.capabilities-section > h2 {
  margin: 0;
  font-size: 17px;
}
.collection-track {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 9px;
}
.collection-card {
  display: block;
  overflow: hidden;
  border: 1px solid #dfe6ef;
  border-radius: 7px;
  background: #fff;
  box-shadow: 0 5px 15px rgba(15, 45, 83, 0.06);
  transition: transform 0.15s ease-in-out;
  color: inherit;
  text-decoration: none;
}
.collection-card:hover {
  transform: scale(1.05);
}
.collection-image {
  position: relative;
  height: 100px;
}
.collection-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.collection-image span {
  position: absolute;
  left: 8px;
  top: 8px;
  padding: 4px 8px;
  border-radius: 3px;
  color: #fff;
  background: #6b40ca;
  font-size: 9px;
  font-weight: 900;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}
.collection-image .tag-green {
  background: #37a447;
}
.collection-image .tag-cyan {
  background: #159aba;
}
.collection-image .tag-orange {
  background: #f18b00;
}
.collection-image .tag-blue {
  background: #0879c8;
}
.collection-body {
  min-height: 170px;
  padding: 12px 12px 12px;
}
.collection-body h3 {
  margin: 0 0 7px;
  font-size: 1rem;
}
.collection-body p {
  margin: 0 0 10px;
  font-size: 1rem;
  line-height: 1.35;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.collection-body small {
  display: block;
  margin-bottom: 8px;
  color: #46546b;
  font-size: 12px;
}
.collection-dots {
  display: none;
}

.capabilities-section {
  padding-top: 2px;
}
.capability-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 15px;
  margin-top: 10px;
}
.capability-grid article {
  display: grid;
  grid-template-columns: 33px 1fr;
  gap: 8px;
}
.capability-grid span {
  width: 32px;
  height: 32px;
  display: grid;
  place-items: center;
  border: 1px solid #cfe0fb;
  border-radius: 50%;
  color: #075ce8;
  font-size: 18px;
}
.capability-grid h3 {
  margin: 1px 0 4px;
  font-size: 14px;
}
.capability-grid p {
  margin: 0;
  font-size: 12px;
  line-height: 1.34;
}

.data-lower-grid {
  width: min(1160px, calc(100% - 48px));
  margin: 0 auto 18px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
}
.data-info-panel {
  min-height: 190px;
  padding: 16px;
  border: 1px solid #dce5ef;
  border-radius: 9px;
  background: #fff;
  box-shadow: 0 5px 15px rgba(15, 45, 83, 0.04);
}
.data-info-panel h2 {
  margin: 0 0 9px;
  font-size: 18px;
}
.data-info-panel p {
  margin: 0 0 11px;
  font-size: 13px;
  line-height: 1.45;
}
.data-workflow {
  display: grid;
  grid-template-columns: repeat(9, auto);
  align-items: center;
  justify-content: space-between;
  gap: 4px;
  margin: 12px 0;
}
.data-workflow div {
  text-align: center;
}
.data-workflow div > span {
  width: 38px;
  height: 38px;
  margin: 0 auto 5px;
  display: grid;
  place-items: center;
  border: 1px solid #c9d9ef;
  border-radius: 50%;
  color: #174f9e;
  font-size: 17px;
}
.data-workflow .workflow-logo {
  border: 0;
}
.data-workflow .workflow-logo img {
  width: 43px;
  height: 43px;
  object-fit: contain;
}
.data-workflow small {
  display: block;
  font-size: 10px;
  line-height: 1.15;
}
.data-workflow i {
  color: #aac5eb;
  font-style: normal;
}
.panel-buttons {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 7px;
}
.panel-buttons a {
  padding: 6px 8px;
  border: 1px solid #8caee8;
  border-radius: 4px;
  color: #075ce8;
  font-size: 11px;
  font-weight: 800;
}
.panel-buttons .panel-cta {
  min-height: 46px;
  padding: 12px 28px;
  color: #fff;
  font-size: 15px;
  font-weight: 700;
}
.panel-buttons .panel-cta:hover {
  background: #3d8bff;
}
.panel-buttons.single-column {
  display: grid;
}
.trust-panel ul {
  margin: 0 0 12px;
  padding: 0;
  list-style: none;
}
.trust-panel li {
  position: relative;
  margin-bottom: 5px;
  padding-left: 16px;
  font-size: 13px;
}
.trust-panel li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: #30a34a;
  font-weight: 900;
}

@media (max-width: 980px) {
  .collection-track {
    grid-template-columns: repeat(3, 1fr);
  }
  .capability-grid {
    grid-template-columns: repeat(3, 1fr);
  }
  .data-lower-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 760px) {
  .data-services-page {
    padding-bottom: 69px;
  }

  .data-hero {
    width: calc(100% - 24px);
    min-height: 255px;
    margin-top: 90px;
    padding: 22px 18px 18px;
    display: block;
    border-radius: 17px;
  }
  .data-hero-art {
    display: none;
  }
  .data-kicker {
    font-size: 9px;
  }
  .data-hero h1 {
    font-size: 33px;
    letter-spacing: -1px;
  }
  .data-hero-copy > p:not(.data-kicker) {
    font-size: 12px;
  }
  .data-hero-actions {
    display: grid;
    gap: 8px;
  }
  .data-hero-actions .btn {
    width: 100%;
  }

  .data-entry-grid {
    width: 100%;
    padding: 0 12px;
    grid-template-columns: repeat(4, 1fr);
    gap: 2px;
  }
  .data-entry-card {
    min-height: 86px;
    padding: 8px 3px;
    display: block;
    text-align: center;
    border: 0;
    box-shadow: none;
  }
  .entry-icon {
    width: 34px;
    height: 34px;
    margin: 0 auto 6px;
  }
  .data-entry-card h2 {
    font-size: 11px;
  }
  .data-entry-card p,
  .data-entry-card a {
    display: none;
  }

  .data-section {
    width: 100%;
    margin-bottom: 14px;
  }
  .data-heading-row,
  .capabilities-section > h2 {
    padding: 0 15px;
  }
  .data-heading-row h2,
  .capabilities-section > h2 {
    font-size: 16px;
  }
  .collection-track {
    display: grid;
    grid-auto-flow: column;
    grid-auto-columns: 44%;
    grid-template-columns: none;
    gap: 8px;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    scrollbar-width: none;
    padding: 0 15px 3px;
  }
  .collection-track::-webkit-scrollbar {
    display: none;
  }
  .collection-card {
    scroll-snap-align: start;
  }
  .collection-image {
    height: 77px;
  }
  .collection-body {
    min-height: 122px;
  }
  .collection-body h3 {
    font-size: 13px;
  }
  .collection-body p {
    display: none;
  }
  .collection-dots {
    display: flex;
    justify-content: center;
    gap: 5px;
    margin-top: 8px;
  }
  .collection-dots span {
    width: 5px;
    height: 5px;
    border-radius: 50%;
    background: #ccd4e0;
  }
  .collection-dots .active {
    background: #075ce8;
  }

  .capabilities-section {
    padding: 12px 0;
    border-top: 1px solid #e1e6ee;
    border-bottom: 1px solid #e1e6ee;
  }
  .capability-grid {
    padding: 0 12px;
    grid-template-columns: repeat(6, 1fr);
    gap: 2px;
  }
  .capability-grid article {
    display: block;
    text-align: center;
  }
  .capability-grid span {
    margin: 0 auto 4px;
  }
  .capability-grid h3 {
    font-size: 10px;
  }
  .capability-grid p {
    display: none;
  }

  .data-lower-grid {
    width: 100%;
    padding: 0 15px;
    display: block;
  }
  .data-workflow-panel,
  .trust-panel,
  .data-lower-grid .data-info-panel:last-child {
    display: none;
  }
  .data-info-panel {
    min-height: 156px;
    padding: 15px;
  }
  .data-info-panel h2 {
    font-size: 18px;
  }
  .data-info-panel p {
    font-size: 13px;
  }
  .panel-buttons {
    display: grid;
  }
  .panel-buttons a {
    padding: 8px 10px;
    font-size: 12px;
    text-align: center;
  }
}

.community-page {
  background: #f7f9fc;
}
.community-hero-page {
  width: min(1180px, calc(100% - 48px));
  margin: 18px auto 28px;
  padding: 42px;
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 38px;
  align-items: center;
  border: 1px solid #d7e4fa;
  border-radius: 24px;
  background: linear-gradient(135deg, #f4f8ff, #edf4ff);
}
.community-hero-page h1 {
  margin: 0 0 16px;
  max-width: 680px;
  color: #061633;
  font-size: clamp(38px, 4vw, 55px);
  line-height: 0.98;
  letter-spacing: -2px;
}
.community-hero-page p:not(.data-kicker) {
  max-width: 700px;
  color: #60708b;
  font-size: 16px;
  line-height: 1.5;
}
.community-hero-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-top: 22px;
}
.community-hero-image img {
  width: 100%;
  height: auto;
  object-fit: contain;
  border-radius: 20px;
  box-shadow: 0 18px 40px rgba(22, 61, 116, 0.17);
}
.community-page-section {
  width: min(1120px, calc(100% - 48px));
  margin: 0 auto 44px;
}
.community-participation-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}
.community-participation-grid article,
.community-opportunity-grid article {
  padding: 24px;
  border: 1px solid #dce5ef;
  border-radius: 14px;
  background: #fff;
  box-shadow: 0 8px 22px rgba(15, 45, 83, 0.06);
  transition: background 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
}
.community-participation-grid article:hover,
.community-opportunity-grid article:hover {
  background: #f0f4fa;
  box-shadow: 0 4px 14px #0f27481a;
}
.community-participation-grid article > span {
  width: 48px;
  height: 48px;
  display: grid;
  place-items: center;
  margin-bottom: 18px;
  border-radius: 50%;
  color: #fff;
  background: #075ce8;
  font-size: 24px;
}
.community-participation-grid h3,
.community-opportunity-grid h3 {
  margin: 0 0 10px;
  font-size: 18px;
}
.community-participation-grid p,
.community-opportunity-grid p {
  color: #5f6d83;
  font-size: 14px;
  line-height: 1.55;
}
.community-participation-grid a,
.community-opportunity-grid a,
.community-event-card a {
  color: #075ce8;
  font-size: 13px;
  font-weight: 800;
}
.community-feature-band {
  width: min(1180px, calc(100% - 48px));
  margin: 10px auto 50px;
  padding: 34px;
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 30px;
  align-items: center;
  border-radius: 22px;
  color: #fff;
  background: linear-gradient(135deg, #001b42, #073a79);
}
.news-hero-card {
  width: min(1200px, calc(100% - 48px));
  margin: 10px auto 50px;
  background: #fff;
  border: 1px solid #e0e5ec;
  border-radius: 12px;
  box-shadow: 0 7px 18px #0f274814;
  overflow: hidden;
}
.news-hero-card .events-sidebar {
  padding: 24px 28px;
  background: linear-gradient(135deg, #001b42, #073a79);
  border-radius: 12px 12px 0 0;
}
.news-hero-card .community-event-card {
  display: grid;
  grid-template-columns: 78px 1fr;
  gap: 18px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(8px);
  border-radius: 16px;
  text-decoration: none;
  transition: background 0.15s ease-in-out;
}
.news-hero-card .community-event-card:hover {
  background: rgba(255, 255, 255, 0.14);
}
.news-hero-card .community-event-card .card-link {
  color: #fff;
  font-size: 13px;
  font-weight: 800;
  margin-top: 8px;
  display: inline-block;
}
.news-hero-card .community-event-card .card-link span {
  display: inline-block;
  transition: transform 0.15s ease-in-out;
}
.news-hero-card .community-event-card:hover .card-link span {
  transform: translateX(4px);
}
.news-hero-card .community-event-card small {
  color: #a9c8ef;
}
.news-hero-card .community-event-card h3 {
  color: #fff;
}
.news-hero-card .community-event-card p {
  color: #d7e7ff;
}
.news-hero-card .community-event-card a {
  color: #fff;
}
.news-hero-divider {
  border: none;
  border-top: 1px solid #e0e5ec;
  margin: 0 28px;
}
.news-hero-body {
  display: grid;
  grid-template-columns: 35% 65%;
}
.news-hero-card .featured-media {
  position: relative;
  min-height: 160px;
}
.news-hero-card .featured-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.news-hero-card .featured-content {
  padding: 18px 22px 18px;
}
.community-feature-band h2 {
  margin: 0 0 12px;
  font-size: 38px;
}
.community-feature-band p {
  color: #d7e7ff;
  line-height: 1.55;
}
.community-event-card {
  display: grid;
  grid-template-columns: 78px 1fr;
  gap: 18px;
  padding: 24px;
  border: 1px solid #e0e5ec;
  border-radius: 16px;
  background: #fff;
  box-shadow: 0 7px 18px #0f274814;
}
.event-date {
  height: 78px;
  display: grid;
  place-items: center;
  align-content: center;
  border-radius: 13px;
  color: #075ce8;
  background: #fff;
  font-weight: 900;
}
.event-date strong {
  font-size: 28px;
  line-height: 1;
}
.community-event-card small {
  color: #74839a;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}
.community-event-card h3 {
  margin: 6px 0 8px;
  font-size: 22px;
  color: #071a3a;
}
.community-event-card p {
  color: #5f6d83;
}
.community-event-card a {
  color: #075ce8;
  font-weight: 800;
}
.community-feature-band .community-event-card {
  border: 1px solid rgba(255, 255, 255, 0.2);
  background: rgba(255, 255, 255, 0.08);
}
.community-feature-band .community-event-card small {
  color: #a9c8ef;
}
.community-feature-band .community-event-card h3 {
  color: #fff;
}
.community-feature-band .community-event-card p {
  color: #d7e7ff;
}
.community-feature-band .community-event-card a {
  color: #fff;
}
.community-opportunity-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}
.community-join-panel {
  width: min(1120px, calc(100% - 48px));
  margin: 0 auto 30px;
  padding: 36px;
  display: grid;
  grid-template-columns: 1.3fr 0.7fr;
  gap: 30px;
  align-items: center;
  border: 1px solid #d7e4fa;
  border-radius: 20px;
  background: #fff;
}
.community-join-panel h2 {
  margin: 0 0 12px;
  font-size: 28px;
}
.community-join-panel p:not(.data-kicker) {
  color: #5f6d83;
  line-height: 1.55;
}
.community-join-actions {
  display: grid;
  gap: 10px;
}
@media (max-width: 900px) {
  .community-participation-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .community-feature-band,
  .community-join-panel {
    grid-template-columns: 1fr;
  }
  .news-hero-card {
    width: calc(100% - 30px);
    margin-top: 90px;
  }
  .news-hero-card .events-sidebar {
    padding: 18px 20px;
  }
  .events-sidebar .community-event-card {
    grid-template-columns: 62px 1fr;
    padding: 16px;
  }
  .news-hero-divider {
    margin: 0 20px;
  }
  .news-hero-body {
    grid-template-columns: 1fr;
  }
  .news-hero-card .featured-media {
    min-height: 105px;
  }
  .news-hero-card .featured-content {
    padding: 10px 12px 12px;
  }
}
@media (max-width: 760px) {
  .community-page {
    padding-bottom: 69px;
  }
  .community-hero-page {
    width: calc(100% - 24px);
    margin-top: 90px;
    padding: 22px 18px;
    display: block;
  }
  .community-hero-page h1 {
    font-size: 32px;
    letter-spacing: -1.5px;
  }
  .community-hero-page p:not(.data-kicker) {
    font-size: 13px;
  }
  .community-hero-image {
    margin-top: 20px;
  }
  .community-hero-image img {
    min-height: 220px;
  }
  .community-page-section,
  .community-feature-band,
  .community-join-panel {
    width: calc(100% - 24px);
  }
  .news-hero-card {
    width: calc(100% - 24px);
    margin-top: 90px;
  }
  .news-hero-card .events-sidebar {
    padding: 16px 18px;
  }
  .news-hero-card .featured-media {
    min-height: 220px;
  }
  .usecase-gallery {
    margin-top: 10px;
  }
  .community-participation-grid,
  .community-opportunity-grid {
    grid-template-columns: 1fr;
  }
  .community-feature-band {
    padding: 22px 18px;
  }
  .community-feature-band h2,
  .community-join-panel h2 {
    font-size: 24px;
  }
  .community-event-card {
    grid-template-columns: 62px 1fr;
    padding: 16px;
  }
  .event-date {
    height: 62px;
  }
  .community-join-panel {
    padding: 22px 18px;
  }
}

/* Complete portal pages */
.portal-page {
  background: #f7f9fc;
  padding-bottom: 0;
}
.portal-hero {
  width: min(1180px, calc(100% - 48px));
  margin: 18px auto 42px;
  padding: 44px;
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 38px;
  align-items: center;
  border: 1px solid #d7e4fa;
  border-radius: 24px;
  background: linear-gradient(135deg, #f5f9ff, #edf4ff);
}
.portal-kicker {
  margin: 0 0 12px;
  color: #075ce8;
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}
.portal-hero h1 {
  margin: 0 0 18px;
  color: #061633;
  font-size: clamp(38px, 4vw, 55px);
  line-height: 0.96;
  letter-spacing: -2px;
}
.portal-hero p:not(.portal-kicker) {
  color: #60708b;
  font-size: 17px;
  line-height: 1.55;
}
.portal-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-top: 22px;
}
.portal-actions.vertical {
  display: grid;
}
.portal-visual img {
  width: 100%;
  min-height: 330px;
  object-fit: cover;
  border-radius: 20px;
  box-shadow: 0 18px 40px rgba(22, 61, 116, 0.16);
}
.contact-section {
  margin-top: 32px;
}
.portal-section {
  width: min(1120px, calc(100% - 48px));
  margin: 0 auto 52px;
}
.section-heading {
  max-width: 780px;
  margin: 0 auto 23px;
  text-align: center;
}
.section-heading h2 {
  margin: 0 0 10px;
  color: #081a36;
  font-size: 38px;
  letter-spacing: -1px;
}
.section-heading p {
  color: #65728a;
  line-height: 1.55;
}
.three-card-grid,
.technology-layer-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}
.three-card-grid article,
.technology-layer-grid article,
.six-card-grid article,
.resource-provider-grid article,
.news-grid article {
  padding: 25px;
  border: 1px solid #dce5ef;
  border-radius: 15px;
  background: #fff;
  box-shadow: 0 8px 22px rgba(15, 45, 83, 0.06);
}
.three-card-grid article > span,
.technology-layer-grid article > span {
  color: #075ce8;
  font-size: 12px;
  font-weight: 900;
}
.three-card-grid h3,
.technology-layer-grid h3,
.six-card-grid h3,
.resource-provider-grid h3,
.news-grid h3 {
  margin: 10px 0;
  font-size: 21px;
}
.three-card-grid p,
.technology-layer-grid p,
.six-card-grid p,
.resource-provider-grid p,
.news-grid p {
  color: #60708b;
  line-height: 1.55;
}
.portal-band {
  width: min(1180px, calc(100% - 48px));
  margin: 0 auto 52px;
  padding: 38px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
  align-items: center;
  border-radius: 22px;
  color: #fff;
  background: linear-gradient(135deg, #001a40, #07427f);
}
.portal-band h2 {
  margin: 0 0 12px;
  font-size: 39px;
}
.portal-band p:not(.portal-kicker) {
  color: #d6e6fb;
  line-height: 1.55;
}
.metric-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
}
.metric-grid div {
  padding: 20px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.07);
}
.metric-grid strong,
.metric-grid span {
  display: block;
}
.metric-grid strong {
  font-size: 27px;
}
.metric-grid span {
  color: #c9dcf6;
  font-size: 12px;
}
.split-content {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}
.split-content > div {
  padding: 31px;
  border: 1px solid #dce5ef;
  border-radius: 16px;
  background: #fff;
}
.split-content h2 {
  font-size: 32px;
  margin: 0 0 12px;
}
.split-content p {
  color: #60708b;
  line-height: 1.6;
}
.split-content a,
.section-link {
  color: #075ce8;
  font-weight: 800;
}
.split-content a span,
.cta-panel a span {
  display: inline-block;
  transition: transform 0.15s ease-in-out;
}
.split-content a:hover span,
.cta-panel a:hover span {
  transform: translateX(4px);
}
.link-card-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
}
.link-card {
  padding: 28px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  border: 1px solid #dce5ef;
  border-radius: 15px;
  background: #fff;
}
.link-card span {
  color: #647289;
}
.link-card strong {
  color: #075ce8;
  font-size: 20px;
}
.contributors-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 24px;
  margin-top: 24px;
}
.contributor-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}
.contributor-card img {
  width: 95px;
  height: 95px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid #e0e5ec;
  margin-bottom: 8px;
}
.contributor-name {
  font-size: 14px;
  font-weight: 600;
  color: #071a3a;
  line-height: 1.2;
  display: block;
  width: 100%;
}
.contributor-affiliation {
  font-size: 11px;
  color: #5a6a7e;
  margin-top: 2px;
  display: block;
  width: 100%;
}
.logo-carousel {
  overflow: hidden;
  margin-bottom: 18px;
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 10%, #000 90%, transparent);
  mask-image: linear-gradient(90deg, transparent, #000 10%, #000 90%, transparent);
}
.logo-track {
  display: flex;
  gap: 40px;
  width: max-content;
  animation: scroll-logos 30s linear infinite;
}
.logo-carousel:hover .logo-track {
  animation-play-state: paused;
}
.logo-track a {
  display: flex;
  align-items: center;
}
.logo-track img {
  height: 50px;
  width: auto;
  object-fit: contain;
  filter: grayscale(100%) opacity(0.6);
  transition: filter 0.3s ease;
}
.logo-track img:hover {
  filter: grayscale(0%) opacity(1);
}
@keyframes scroll-logos {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}
.architecture-graphic {
  display: grid;
  grid-template-columns: 1fr auto 1fr auto 1fr auto 1fr;
  align-items: center;
  gap: 7px;
}
.architecture-graphic div {
  min-height: 110px;
  display: grid;
  place-items: center;
  padding: 13px;
  text-align: center;
  border: 1px solid #c9dcf7;
  border-radius: 14px;
  color: #075ce8;
  background: #fff;
  font-weight: 800;
}
.architecture-graphic i {
  color: #8eb3e8;
  font-style: normal;
}
.technology-layer-grid {
  grid-template-columns: repeat(4, 1fr);
}
.large-number {
  padding: 32px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.07);
}
.large-number strong,
.large-number span {
  display: block;
}
.large-number strong {
  font-size: 50px;
}
.large-number span {
  color: #d6e6fb;
}
.six-card-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 15px;
}
.cta-panel {
  padding: 35px;
  display: grid;
  grid-template-columns: 1.3fr 0.7fr;
  gap: 30px;
  align-items: center;
  border: 1px solid #d7e4fa;
  border-radius: 20px;
  background: #fff;
}
.cta-panel h2 {
  margin: 0 0 10px;
  font-size: 35px;
}
.cta-panel > div:last-child {
  display: grid;
  gap: 10px;
}
.resource-icon-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 13px;
}
.resource-icon-grid span {
  min-height: 120px;
  display: grid;
  place-items: center;
  align-content: center;
  gap: 8px;
  border: 1px solid #cfe0f8;
  border-radius: 15px;
  color: #075ce8;
  background: #fff;
  font-size: 30px;
}
.resource-icon-grid small {
  font-size: 12px;
  font-weight: 800;
}
.resource-provider-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 15px;
}
.resource-provider-grid article > span {
  color: #075ce8;
  font-size: 11px;
  font-weight: 900;
  text-transform: uppercase;
}
.btn-light {
  color: #075ce8;
  background: #fff;
}
.btn-outline-light {
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.65);
  background: transparent;
}
.four-card-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
}
.four-card-grid a {
  min-height: 145px;
  padding: 23px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  border: 1px solid #dce5ef;
  border-radius: 15px;
  background: #fff;
}
.four-card-grid span {
  color: #65728a;
}
.four-card-grid strong {
  color: #075ce8;
  font-size: 18px;
}
.news-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
}
.news-grid small {
  color: #075ce8;
  font-weight: 900;
}
@media (max-width: 950px) {
  .technology-layer-grid,
  .four-card-grid,
  .news-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .resource-provider-grid,
  .six-card-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 760px) {
  .portal-page {
    padding-bottom: 69px;
  }
  .portal-hero {
    width: calc(100% - 24px);
    margin-top: 90px;
    padding: 23px 18px;
    display: block;
  }
  .portal-hero h1 {
    font-size: 35px;
    letter-spacing: -1.2px;
  }
  .portal-hero p:not(.portal-kicker) {
    font-size: 13px;
  }
  .portal-visual,
  .architecture-graphic,
  .resource-icon-grid {
    margin-top: 22px;
  }
  .portal-visual img {
    min-height: 220px;
  }
  .portal-section,
  .portal-band {
    width: calc(100% - 24px);
  }
  .contact-section {
    margin-top: 90px;
  }
  .three-card-grid,
  .technology-layer-grid,
  .six-card-grid,
  .resource-provider-grid,
  .four-card-grid,
  .news-grid,
  .split-content,
  .link-card-grid,
  .portal-band,
  .cta-panel {
    grid-template-columns: 1fr;
  }
  .section-heading h2,
  .portal-band h2 {
    font-size: 29px;
  }
  .architecture-graphic {
    grid-template-columns: 1fr;
  }
  .architecture-graphic i {
    transform: rotate(90deg);
    text-align: center;
  }
  .metric-grid {
    grid-template-columns: 1fr 1fr;
  }
  .large-number strong {
    font-size: 38px;
  }
}
