:root {
  --bg: #f4f8fc;
  --surface: #ffffff;
  --surface-muted: #edf3fb;
  --surface-strong: #e3ecf8;
  --text: #223660;
  --text-soft: #627390;
  --line: #d8e3f1;
  --line-strong: #c4d4ea;
  --brand: #39aae8;
  --brand-dark: #28437e;
  --accent: #9fcb3b;
  --teal: #39aae8;
  --navy: #28437e;
  --shadow: 0 20px 60px rgba(18, 43, 45, 0.08);
  --shadow-soft: 0 10px 30px rgba(18, 43, 45, 0.06);
  --radius: 28px;
  --radius-sm: 18px;
  --container: 1200px;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

@keyframes fadeLift {
  from {
    opacity: 0;
    transform: translateY(26px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes softReveal {
  from {
    opacity: 0;
    transform: scale(0.98);
  }

  to {
    opacity: 1;
    transform: scale(1);
  }
}

body {
  margin: 0;
  font-family: "Plus Jakarta Sans", sans-serif;
  color: var(--text);
  background:
    radial-gradient(circle at top left, rgba(57, 170, 232, 0.13), transparent 28%),
    radial-gradient(circle at right 20%, rgba(159, 203, 59, 0.1), transparent 26%),
    linear-gradient(180deg, #fbfefd 0%, var(--bg) 100%);
}

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

a {
  color: inherit;
  text-decoration: none;
}

.container {
  width: min(calc(100% - 2rem), var(--container));
  margin: 0 auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 30;
  backdrop-filter: blur(18px);
  background: rgba(248, 251, 255, 0.82);
  border-bottom: 1px solid rgba(196, 212, 234, 0.75);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  min-height: 92px;
}

.home-header {
  position: relative;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.96), rgba(244, 248, 252, 0.92));
  border-bottom: 1px solid rgba(196, 212, 234, 0.95);
  backdrop-filter: none;
  box-shadow: 0 18px 36px rgba(40, 67, 126, 0.08);
}

.home-header-inner {
  padding: 0.8rem 0 1.05rem;
}

.home-topbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  animation: fadeLift 700ms ease both;
}

.home-title-wrap {
  padding: 0.1rem 0 0.45rem;
  text-align: center;
  border-bottom: 1px solid rgba(196, 212, 234, 0.7);
  margin-bottom: 0.35rem;
}

.home-title {
  margin: 0;
  font-family: "Manrope", sans-serif;
  font-size: clamp(3.2rem, 7vw, 5.2rem);
  font-weight: 800;
  letter-spacing: -0.06em;
  color: var(--navy);
  animation: fadeLift 850ms ease both;
  animation-delay: 100ms;
}

.page-header .home-header-inner {
  padding-top: 0.65rem;
}

.page-title-wrap {
  padding-top: 0.1rem;
}

.page-title {
  font-size: clamp(2.6rem, 6vw, 4.2rem);
  color: var(--navy);
}

.title-blue {
  color: #2b4b88;
}

.title-green {
  color: #98c93c;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.85rem;
}

.brand-logo {
  width: 165px;
  height: 165px;
  object-fit: contain;
  border-radius: 50%;
  box-shadow: 0 10px 22px rgba(40, 67, 126, 0.12);
}

.brand-text {
  font-family: "Manrope", sans-serif;
  font-weight: 800;
  letter-spacing: 0.04em;
  font-size: 1.05rem;
  color: var(--navy);
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 0.45rem;
  padding: 0.35rem;
  border: 1px solid rgba(196, 212, 234, 0.9);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.86);
  box-shadow: var(--shadow-soft);
  font-family: "Manrope", sans-serif;
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--text-soft);
}

.home-nav {
  justify-content: center;
  flex-wrap: wrap;
  gap: 0.8rem;
  padding: 0.55rem 0 0;
  border: none;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
  font-size: 0.96rem;
  animation: fadeLift 850ms ease both;
  animation-delay: 180ms;
}

.menu-shell {
  display: flex;
  justify-content: center;
  position: relative;
}

.home-nav a {
  padding: 0.6rem 0.45rem;
  border-radius: 0;
  color: var(--brand-dark);
  font-weight: 700;
  white-space: nowrap;
}

.search-toggle {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 42px;
  border: none;
  background: transparent;
  color: #2b4b88;
  font-family: "Manrope", sans-serif;
  font-size: 1.02rem;
  font-weight: 700;
  cursor: pointer;
  padding: 0.6rem 0.45rem;
  border-radius: 999px;
  transition:
    color 180ms ease,
    background-color 180ms ease,
    transform 180ms ease;
}

.search-toggle:hover,
.search-toggle:focus-visible {
  background: rgba(57, 170, 232, 0.1);
  color: #2b4b88;
  transform: translateY(-1px);
}

.search-icon {
  position: relative;
  display: inline-block;
  width: 15px;
  height: 15px;
  border: 2px solid currentColor;
  border-radius: 50%;
}

.search-icon::after {
  content: "";
  position: absolute;
  right: -4px;
  bottom: -3px;
  width: 7px;
  height: 2px;
  background: currentColor;
  border-radius: 999px;
  transform: rotate(45deg);
  transform-origin: center;
}

.site-search-panel {
  position: fixed;
  top: 120px;
  left: 50%;
  z-index: 120;
  width: min(100% - 2rem, 420px);
  transform: translateX(-50%);
  background: transparent;
}

.search-panel-inner {
  width: 100%;
  padding: 0;
  position: relative;
}

.search-panel-inner::before {
  content: "";
  position: absolute;
  top: -10px;
  right: 34px;
  width: 16px;
  height: 16px;
  background: rgba(255, 255, 255, 0.92);
  border-top: 1px solid rgba(196, 212, 234, 0.6);
  border-left: 1px solid rgba(196, 212, 234, 0.6);
  transform: rotate(45deg);
  border-top-left-radius: 4px;
}

.search-input-wrap {
  display: flex;
  gap: 0.5rem;
  align-items: center;
  width: 100%;
  margin: 0;
  padding: 0.7rem;
  border: 1px solid rgba(196, 212, 234, 0.58);
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(18px);
  box-shadow:
    0 18px 40px rgba(40, 67, 126, 0.14),
    0 6px 16px rgba(40, 67, 126, 0.07);
}

.search-input-wrap input {
  flex: 1;
  min-height: 54px;
  border: none;
  border-radius: 16px;
  padding: 0 0.95rem;
  font: inherit;
  color: var(--text);
  background: linear-gradient(180deg, #f8fbff, #f1f6fd);
  font-size: 1rem;
  outline: none;
}

.search-input-wrap input::placeholder {
  color: #90a0ba;
}

.search-submit {
  min-width: 54px;
  min-height: 54px;
  border: none;
  border-radius: 16px;
  padding: 0;
  background: transparent;
  color: var(--brand-dark);
  font: inherit;
  font-size: 1.15rem;
  font-weight: 700;
  cursor: pointer;
  box-shadow: none;
  transition:
    background-color 180ms ease,
    color 180ms ease,
    transform 180ms ease;
}

.search-submit:hover,
.search-submit:focus-visible {
  background: rgba(57, 170, 232, 0.1);
  color: var(--brand);
  transform: translateY(-1px);
}

.search-icon-submit {
  width: 17px;
  height: 17px;
  border-width: 2.25px;
}

.search-icon-submit::after {
  right: -5px;
  bottom: -3px;
  width: 8px;
  height: 2.25px;
}

.site-search-results {
  display: grid;
  gap: 0.75rem;
  margin-top: 0.9rem;
}

.search-result-item {
  padding: 0.85rem 0.95rem;
  border: 1px solid rgba(196, 212, 234, 0.7);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.96);
  backdrop-filter: blur(14px);
  box-shadow: 0 10px 22px rgba(40, 67, 126, 0.07);
}

.search-result-hint {
  box-shadow: none;
  background: rgba(248, 251, 255, 0.96);
}

@media (max-width: 640px) {
  .site-search-panel {
    top: 108px;
    left: 50%;
    width: min(100vw - 1rem, 360px);
    transform: translateX(-50%);
  }

  .search-input-wrap {
    padding: 0.55rem;
  }

  .search-input-wrap input {
    min-height: 48px;
    font-size: 0.95rem;
  }

  .search-submit {
    min-width: 48px;
    min-height: 48px;
    font-size: 1rem;
  }
}

.search-result-item a {
  color: var(--brand-dark);
  font-family: "Manrope", sans-serif;
  font-weight: 800;
}

.search-result-item p {
  margin: 0.35rem 0 0;
  color: var(--text-soft);
  line-height: 1.6;
}

.home-nav a:nth-child(1) {
  animation: fadeLift 700ms ease both;
  animation-delay: 220ms;
}

.home-nav a:nth-child(2) {
  animation: fadeLift 700ms ease both;
  animation-delay: 280ms;
}

.home-nav a:nth-child(3) {
  animation: fadeLift 700ms ease both;
  animation-delay: 340ms;
}

.home-nav a:nth-child(4) {
  animation: fadeLift 700ms ease both;
  animation-delay: 400ms;
}

.home-nav a:nth-child(5) {
  animation: fadeLift 700ms ease both;
  animation-delay: 460ms;
}

.home-nav a:nth-child(6) {
  animation: fadeLift 700ms ease both;
  animation-delay: 520ms;
}

.home-nav a:nth-child(7) {
  animation: fadeLift 700ms ease both;
  animation-delay: 580ms;
}

.home-nav a:hover,
.home-nav a:focus-visible {
  background: transparent;
  color: var(--accent);
  transform: none;
}

.page-content-start {
  padding-top: 4.4rem;
}

.page-actions {
  margin-top: 0;
  margin-bottom: 2rem;
}

.site-nav a {
  padding: 0.78rem 1rem;
  border-radius: 999px;
  transition:
    color 180ms ease,
    background-color 180ms ease,
    transform 180ms ease;
}

.site-nav a:hover,
.site-nav a:focus-visible {
  color: var(--brand-dark);
  background: rgba(152, 201, 60, 0.18);
  transform: translateY(-1px);
}

.menu-toggle {
  display: none;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.94);
  color: var(--brand-dark);
  border-radius: 999px;
  padding: 0.85rem 1.1rem;
  font: inherit;
  font-weight: 700;
  box-shadow: var(--shadow-soft);
  line-height: 1;
  font-size: 1.3rem;
}

.hero {
  padding: 6rem 0 4.5rem;
}

.home-hero {
  padding: 0 0 4.5rem;
}

.home-hero-banner {
  padding-top: 0;
}

.home-hero-banner .container {
  width: 100%;
  max-width: none;
}

.home-hero-grid {
  display: grid;
  grid-template-columns: minmax(280px, 0.82fr) minmax(360px, 1.18fr);
  gap: 3rem;
  align-items: end;
  min-height: 470px;
}

.home-hero-copy {
  align-self: end;
  padding-bottom: 1rem;
  max-width: 760px;
  animation: fadeLift 900ms ease both;
  animation-delay: 320ms;
}

.home-hero-copy h2 {
  margin: 0 0 1rem;
  font-family: "Manrope", sans-serif;
  font-size: clamp(2rem, 3vw, 3rem);
  line-height: 1.05;
  color: #fff;
  max-width: 20ch;
}

.home-hero-kicker {
  margin: 0 0 0.7rem;
  font-size: 0.9rem;
  font-weight: 800;
  color: rgba(255, 255, 255, 0.88);
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.home-hero-subtitle {
  margin: 1rem 0 0;
  font-size: 1rem;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.82);
  font-weight: 600;
}

.home-hero .lead {
  color: rgba(255, 255, 255, 0.9);
}

.home-hero-photo {
  width: 100%;
  min-height: 620px;
  border-radius: 0;
  overflow: hidden;
  background:
    linear-gradient(115deg, rgba(23, 38, 79, 0.84) 0%, rgba(40, 67, 126, 0.54) 40%, rgba(40, 67, 126, 0.16) 100%),
    radial-gradient(circle at top right, rgba(159, 203, 59, 0.24), transparent 28%),
    linear-gradient(135deg, rgba(57, 170, 232, 0.34), rgba(159, 203, 59, 0.2)),
    linear-gradient(180deg, #d8e5f5, #b8cbe1);
  box-shadow: 0 24px 70px rgba(18, 43, 45, 0.16);
  position: relative;
  animation: softReveal 1100ms ease both;
  animation-delay: 220ms;
}

.home-hero-photo::after {
  content: "TAP-GRIN project visual";
  position: absolute;
  right: 2.2rem;
  bottom: 2rem;
  color: rgba(255, 255, 255, 0.72);
  font-family: "Manrope", sans-serif;
  font-size: 0.95rem;
  letter-spacing: 0.03em;
}

.home-hero-overlay {
  display: flex;
  align-items: flex-end;
  width: 100%;
  min-height: 620px;
  padding: 3.2rem;
}

.home-hero-split {
  min-height: 660px;
}

.home-hero-overlay-split {
  display: grid;
  grid-template-columns: minmax(0, 1.45fr) minmax(180px, 0.55fr);
  align-items: end;
  gap: 2rem;
}

.hero-side-card {
  display: grid;
  gap: 0.9rem;
  align-self: center;
}

.hero-side-photo {
  min-height: 210px;
  border-radius: 28px;
  border: 1px solid rgba(255, 255, 255, 0.22);
  background:
    radial-gradient(circle at top left, rgba(255, 255, 255, 0.18), transparent 28%),
    linear-gradient(135deg, rgba(57, 170, 232, 0.22), rgba(159, 203, 59, 0.22)),
    rgba(255, 255, 255, 0.08);
  display: grid;
  place-items: center;
  text-align: center;
  padding: 1.5rem;
  color: rgba(255, 255, 255, 0.88);
  font-family: "Manrope", sans-serif;
  font-weight: 700;
  letter-spacing: 0.02em;
}

.hero-side-note {
  margin: 0;
  color: rgba(255, 255, 255, 0.78);
  line-height: 1.7;
  font-size: 0.95rem;
}

.hero-side-button {
  width: 100%;
  background: rgba(255, 255, 255, 0.92);
  color: var(--brand-dark);
  border-color: rgba(255, 255, 255, 0.3);
}

@media (prefers-reduced-motion: reduce) {
  .home-topbar,
  .home-title,
  .home-nav,
  .home-nav a,
  .home-hero-copy,
  .home-hero-photo {
    animation: none !important;
  }
}

.home-hero-photo .button-secondary {
  background: rgba(255, 255, 255, 0.14);
  border-color: rgba(255, 255, 255, 0.28);
  color: #fff;
}

.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(340px, 0.92fr);
  gap: 2.2rem;
  align-items: center;
}

.hero-copy h1,
.section h2,
.panel-card h2,
.news-card h3 {
  font-family: "Manrope", sans-serif;
}

.hero-copy h1 {
  margin: 0;
  font-size: clamp(3rem, 6vw, 5.4rem);
  line-height: 0.92;
  letter-spacing: -0.06em;
  max-width: 10ch;
  color: var(--navy);
}

.eyebrow {
  margin: 0 0 1rem;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  font-size: 0.74rem;
  font-weight: 700;
  color: var(--teal);
}

.lead,
.prose p,
.contact-copy p {
  color: var(--text-soft);
  line-height: 1.82;
  font-size: 1.04rem;
}

.hero-actions,
.quick-links {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-top: 2rem;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 54px;
  padding: 0.95rem 1.4rem;
  border-radius: 999px;
  font-family: "Manrope", sans-serif;
  font-weight: 700;
  letter-spacing: 0.01em;
  transition:
    transform 180ms ease,
    box-shadow 180ms ease,
    background-color 180ms ease,
    border-color 180ms ease;
}

.button:hover,
.button:focus-visible {
  transform: translateY(-2px);
  box-shadow: 0 16px 32px rgba(21, 49, 83, 0.14);
}

.button-primary {
  background: linear-gradient(135deg, var(--brand) 0%, var(--brand-dark) 100%);
  color: #fff;
  border: 1px solid transparent;
}

.button-secondary {
  background: #2b4b88;
  border: 1px solid #2b4b88;
  color: #fff;
}

.button-secondary:hover,
.button-secondary:focus-visible {
  background: #98c93c;
  border-color: #98c93c;
  color: #1f315f;
}

.hero-panel {
  display: grid;
  gap: 1rem;
}

.panel-card,
.news-card,
.contact-block,
.logo-grid,
.gallery-grid {
  border-radius: var(--radius);
}

.panel-card {
  background:
    radial-gradient(circle at top right, rgba(159, 203, 59, 0.16), transparent 34%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(244, 249, 255, 0.95));
  padding: 2.1rem;
  box-shadow: var(--shadow);
  border: 1px solid rgba(216, 228, 226, 0.95);
}

.panel-card h2 {
  margin: 0.4rem 0 0.8rem;
  font-size: 1.72rem;
  color: var(--brand-dark);
}

.panel-card p {
  margin: 0;
  color: var(--text-soft);
  line-height: 1.75;
}

.panel-label {
  display: inline-block;
  padding: 0.48rem 0.82rem;
  border-radius: 999px;
  background: rgba(57, 170, 232, 0.12);
  color: var(--brand-dark);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.hero-stat-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
}

.hero-stat-grid article {
  background: rgba(255, 255, 255, 0.82);
  border: 1px solid rgba(216, 228, 226, 0.95);
  box-shadow: var(--shadow-soft);
  padding: 1.35rem;
  border-radius: 24px;
}

.hero-stat-grid strong {
  display: block;
  font-family: "Manrope", sans-serif;
  font-size: 1.6rem;
  margin-bottom: 0.35rem;
  color: var(--brand-dark);
}

.hero-stat-grid span {
  color: var(--text-soft);
}

.section {
  padding: 5rem 0;
}

.section-muted {
  background:
    linear-gradient(180deg, rgba(237, 243, 251, 0.78), rgba(244, 248, 252, 0.96)),
    linear-gradient(90deg, rgba(57, 170, 232, 0.03), rgba(159, 203, 59, 0.03));
}

.section-grid {
  display: grid;
  grid-template-columns: 0.58fr 1.42fr;
  gap: 2rem;
  align-items: start;
}

.current-scope-grid {
  grid-template-columns: minmax(220px, 0.5fr) minmax(0, 1.5fr);
  gap: 2.2rem;
  align-items: start;
}

.current-scope-intro h2 {
  max-width: 8ch;
  font-size: clamp(2.5rem, 3.4vw, 4rem);
  line-height: 0.92;
  letter-spacing: -0.05em;
  position: sticky;
  top: 2rem;
}

.current-scope-content {
  display: grid;
  gap: 1.1rem;
}

.scope-question-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.9rem;
}

.scope-question-card,
.scope-info-card {
  background: rgba(255, 255, 255, 0.9);
  border: 1px solid rgba(210, 225, 240, 0.95);
  border-radius: 24px;
  box-shadow: var(--shadow-soft);
}

.scope-question-card {
  min-height: 172px;
  padding: 1.35rem 1.45rem;
  display: flex;
  align-items: flex-start;
}

.scope-question-card p,
.scope-info-card p {
  margin: 0;
}

.scope-question-card p {
  color: var(--brand-dark);
  font-family: "Manrope", sans-serif;
  font-size: 0.98rem;
  font-weight: 700;
  line-height: 1.6;
}

.scope-info-card {
  padding: 1.5rem 1.6rem;
}

.scope-card-label {
  margin-bottom: 0.8rem !important;
  font-family: "Manrope", sans-serif;
  font-size: 0.8rem;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--brand);
}

.scope-list {
  margin: 0;
  padding-left: 1.2rem;
  color: var(--text-soft);
  display: grid;
  gap: 0.8rem;
  line-height: 1.8;
}

.section h2 {
  margin: 0;
  font-size: clamp(2.2rem, 3vw, 3.2rem);
  line-height: 1;
  max-width: 24ch;
  color: var(--brand-dark);
}

.section-heading {
  margin-bottom: 2.9rem;
}

.section-heading-tight {
  margin-top: 3rem;
  margin-bottom: 1.8rem;
}

.section-inline {
  padding: 0;
  margin-top: 3rem;
}

.project-feature {
  background: rgba(255, 255, 255, 0.92);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 2.2rem;
  margin-bottom: 2.2rem;
}

.project-feature-header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 1rem;
  margin-bottom: 1.5rem;
}

.project-feature-header h3 {
  margin: 0.35rem 0 0;
  font-family: "Manrope", sans-serif;
  font-size: clamp(1.7rem, 3vw, 2.4rem);
  line-height: 1.1;
  max-width: 18ch;
  color: var(--brand-dark);
}

.project-kicker {
  margin: 0;
  color: var(--accent);
  font-family: "Manrope", sans-serif;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.project-meta {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
  margin-bottom: 1.5rem;
}

.project-meta-intro {
  margin-bottom: 2.5rem;
}

.project-meta-card {
  background: linear-gradient(180deg, #fbfdff 0%, #edf4fb 100%);
  border: 1px solid var(--line);
  border-radius: 22px;
  padding: 1.05rem 1.15rem;
}

.project-meta-card strong {
  display: block;
  margin-bottom: 0.45rem;
  font-family: "Manrope", sans-serif;
  font-size: 0.95rem;
  color: var(--brand-dark);
}

.project-meta-card span {
  color: var(--text-soft);
  line-height: 1.6;
}

.project-copy p {
  margin: 0 0 1rem;
  color: var(--text-soft);
  line-height: 1.8;
}

.project-copy p:last-child {
  margin-bottom: 0;
}

.project-steps {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1.2rem;
}

.project-step {
  background: rgba(255, 255, 255, 0.96);
  border: 1px solid var(--line);
  border-radius: 24px;
  padding: 1.4rem;
  box-shadow: var(--shadow-soft);
}

.project-step-number {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 48px;
  min-height: 48px;
  margin-bottom: 1rem;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--brand) 0%, var(--accent) 100%);
  color: #fff;
  font-family: "Manrope", sans-serif;
  font-weight: 800;
}

.project-step h3 {
  margin: 0 0 0.75rem;
  font-family: "Manrope", sans-serif;
  font-size: 1.22rem;
  color: var(--brand-dark);
}

.project-step p {
  margin: 0;
  line-height: 1.75;
  color: var(--text-soft);
}

.project-source-note {
  margin-top: 1.8rem;
  padding-top: 1.2rem;
  border-top: 1px solid rgba(196, 212, 234, 0.8);
}

.project-source-note p {
  margin: 0;
  color: var(--text-soft);
  line-height: 1.7;
}

.project-source-note a {
  color: var(--brand-dark);
  font-weight: 700;
}

.logo-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
}

.logo-grid img,
.logo-tile {
  width: 100%;
  height: 128px;
  background: rgba(255, 255, 255, 0.88);
  border: 1px solid var(--line);
  border-radius: 24px;
  padding: 1.2rem;
  box-shadow: var(--shadow-soft);
}

.logo-tile,
.media-placeholder,
.gallery-tile,
.contact-placeholder,
.funding-badge {
  display: grid;
  place-items: center;
  font-family: "Manrope", sans-serif;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--brand-dark);
}

.news-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.25rem;
}

.news-card {
  overflow: hidden;
  background: var(--surface);
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
  transition:
    transform 180ms ease,
    box-shadow 180ms ease,
    border-color 180ms ease;
}

.news-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 22px 48px rgba(18, 43, 45, 0.1);
  border-color: var(--line-strong);
}

.news-card img,
.media-placeholder {
  width: 100%;
  height: 220px;
}

.media-placeholder,
.gallery-tile,
.contact-placeholder {
  background:
    radial-gradient(circle at top left, rgba(57, 170, 232, 0.22), transparent 32%),
    linear-gradient(135deg, rgba(57, 170, 232, 0.1), rgba(159, 203, 59, 0.18)),
    linear-gradient(180deg, #f8fbff, #e8f0fa);
}

.news-card-body {
  padding: 1.55rem;
}

.news-card h3 {
  margin: 0 0 0.8rem;
  font-size: 1.38rem;
  color: var(--brand-dark);
}

.news-card p {
  margin: 0;
  color: var(--text-soft);
  line-height: 1.75;
}

.news-card p + p {
  margin-top: 1rem;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
}

.gallery-card {
  margin: 0;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.94);
  border: 1px solid var(--line);
  border-radius: 26px;
  box-shadow: var(--shadow-soft);
}

.gallery-grid img,
.gallery-tile {
  width: 100%;
  aspect-ratio: 1.1 / 1;
  border-radius: 26px;
}

.gallery-trigger {
  display: block;
  width: 100%;
  padding: 0;
  border: none;
  background: transparent;
  cursor: pointer;
}

.gallery-card img,
.gallery-trigger img {
  display: block;
  width: 100%;
  height: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  border-radius: 0;
}

.gallery-trigger:focus-visible {
  outline: 3px solid rgba(57, 170, 232, 0.45);
  outline-offset: -3px;
}

.gallery-caption {
  padding: 1rem 1.1rem 1.15rem;
  font-family: "Manrope", sans-serif;
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--brand-dark);
}

.gallery-links {
  margin-top: 0;
  margin-bottom: 2rem;
}


.lightbox {
  position: fixed;
  inset: 0;
  z-index: 200;
  display: grid;
  place-items: center;
}

.lightbox[hidden] {
  display: none;
}

.lightbox-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(17, 28, 58, 0.76);
  backdrop-filter: blur(8px);
}

.lightbox-dialog {
  position: relative;
  z-index: 1;
  width: min(calc(100% - 2rem), 1040px);
  max-height: calc(100vh - 2rem);
  padding: 1rem 1rem 1.2rem;
  border-radius: 28px;
  background: rgba(255, 255, 255, 0.98);
  box-shadow: 0 28px 90px rgba(17, 28, 58, 0.28);
}

.lightbox-image {
  display: block;
  width: 100%;
  max-height: calc(100vh - 8rem);
  object-fit: contain;
  border-radius: 20px;
  background: #f7fbff;
}

.lightbox-caption {
  margin: 0.9rem 0 0;
  color: var(--brand-dark);
  font-family: "Manrope", sans-serif;
  font-weight: 700;
}

.lightbox-close {
  position: absolute;
  top: 0.8rem;
  right: 0.8rem;
  z-index: 2;
  width: 42px;
  height: 42px;
  border: none;
  border-radius: 999px;
  background: rgba(34, 54, 96, 0.1);
  color: var(--brand-dark);
  font-size: 1.8rem;
  line-height: 1;
  cursor: pointer;
}

.contact-block {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 1.5rem;
  align-items: center;
  background: var(--surface);
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
  padding: 1.7rem;
}

.contact-image {
  width: 100%;
  border-radius: 26px;
  min-height: 300px;
}

.contact-link {
  color: var(--brand-dark);
  font-weight: 700;
}

.funding-badge {
  width: 50px;
  height: 50px;
  flex: 0 0 auto;
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.12);
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.16);
}

.site-footer {
  background:
    radial-gradient(circle at top left, rgba(57, 170, 232, 0.18), transparent 30%),
    radial-gradient(circle at bottom right, rgba(159, 203, 59, 0.16), transparent 24%),
    linear-gradient(180deg, #28437e 0%, #21386b 100%);
  color: rgba(255, 255, 255, 0.84);
  padding-top: 2.5rem;
}

.footer-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 2rem;
  padding-bottom: 2rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
}

.footer-column h3 {
  margin: 0 0 1rem;
  font-family: "Manrope", sans-serif;
  font-size: 1rem;
  color: #fff;
}

.footer-brand {
  margin-bottom: 1rem;
}

.footer-brand .brand-text {
  color: #fff;
}

.footer-text,
.footer-bottom p {
  margin: 0;
  line-height: 1.7;
}

.footer-text {
  color: rgba(255, 255, 255, 0.72);
}

.footer-links {
  display: flex;
  flex-direction: column;
  gap: 0.7rem;
}

.footer-links a,
.footer-links span {
  color: rgba(255, 255, 255, 0.78);
}

.footer-links a:hover,
.footer-links a:focus-visible {
  color: #fff;
}

.footer-bottom {
  padding: 1.25rem 0 2rem;
}

.footer-bottom a {
  color: #fff;
}

@media (max-width: 980px) {
  .menu-toggle {
    display: inline-flex;
  }

  .site-nav {
    position: absolute;
    top: 100%;
    right: 1rem;
    left: 1rem;
    display: none;
    flex-direction: column;
    align-items: stretch;
    padding: 1rem;
    background: rgba(255, 255, 255, 0.98);
    border: 1px solid var(--line);
    border-radius: 24px;
    box-shadow: var(--shadow);
  }

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

  .home-nav {
    justify-content: flex-start;
    gap: 0;
    padding: 1rem;
  }

  .home-nav a {
    padding: 0.8rem 0.25rem;
  }

  .hero-grid,
  .section-grid,
  .contact-block,
  .news-grid,
  .gallery-grid,
  .project-meta,
  .project-steps {
    grid-template-columns: 1fr;
  }

  .project-feature-header {
    flex-direction: column;
  }

  .logo-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .footer-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 640px) {
  .hero {
    padding-top: 4.3rem;
  }

  .home-header-inner {
    padding-top: 1rem;
  }

  .home-title-wrap {
    padding-top: 0.8rem;
  }

  .hero-copy h1 {
    max-width: none;
    font-size: clamp(2.4rem, 15vw, 4rem);
  }

  .home-title {
    font-size: clamp(2.4rem, 14vw, 3.8rem);
  }

  .home-hero-photo,
  .home-hero-overlay {
    min-height: 460px;
  }

  .home-hero-overlay {
    padding: 1.6rem;
  }

  .home-hero-overlay-split {
    grid-template-columns: 1fr;
  }

  .hero-side-photo {
    min-height: 180px;
  }

  .home-hero-photo::after {
    right: 1.4rem;
    bottom: 1.2rem;
    font-size: 0.82rem;
  }

  .brand-logo {
    width: 112px;
    height: 112px;
  }

  .footer-grid {
    grid-template-columns: 1fr;
  }

  .hero-stat-grid,
  .logo-grid {
    grid-template-columns: 1fr;
  }

  .news-card img,
  .media-placeholder {
    height: 200px;
  }

}

.home-hero-photo::after {
  content: none !important;
}

.hero-side-figure {
  margin: 0;
  display: grid;
  gap: 1rem;
}

.hero-side-note {
  color: rgba(255, 255, 255, 0.88);
}

.hero-side-citation p {
  margin: 0;
}

.hero-side-credit {
  font-family: "Manrope", sans-serif;
  font-weight: 800;
  color: #fff;
}

.accordion-stack {
  display: grid;
  gap: 1.5rem;
}

.accordion-list {
  display: grid;
  gap: 0.9rem;
}

.center-meyer {
  order: 1;
}

.center-hcl {
  order: 2;
}

.center-cmhi {
  order: 3;
}

.info-accordion,
.profile-card {
  border: 1px solid var(--line);
  border-radius: 24px;
  background: linear-gradient(180deg, #ffffff 0%, #f7fbff 100%);
  box-shadow: var(--shadow-soft);
  overflow: hidden;
}

.info-accordion summary,
.profile-card summary {
  list-style: none;
  cursor: pointer;
}

.info-accordion summary::-webkit-details-marker,
.profile-card summary::-webkit-details-marker {
  display: none;
}

.info-accordion summary {
  position: relative;
  padding: 1.2rem 3.75rem 1.2rem 1.3rem;
  font-family: "Manrope", sans-serif;
  font-size: 1.02rem;
  font-weight: 800;
  color: var(--brand);
}

.info-accordion > summary::after {
  content: "+";
  position: absolute;
  top: 50%;
  right: 1.25rem;
  transform: translateY(-50%);
  width: 32px;
  height: 32px;
  border-radius: 999px;
  display: grid;
  place-items: center;
  background: rgba(57, 170, 232, 0.12);
  color: var(--brand-dark);
  font-size: 1.2rem;
}

.info-accordion[open] > summary::after {
  content: "−";
}

.info-accordion-body {
  padding: 0 1.3rem 1.25rem;
}

.profile-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
}

.profile-grid-compact {
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
}

.profile-card summary {
  position: relative;
  display: grid;
  grid-template-columns: 72px minmax(0, 1fr);
  gap: 0.95rem;
  align-items: center;
  min-height: 124px;
  padding: 1rem 3.75rem 1rem 1.1rem;
}

.profile-card summary::after {
  content: "+";
  position: absolute;
  top: 50%;
  right: 1.25rem;
  transform: translateY(-50%);
  width: 32px;
  height: 32px;
  border-radius: 999px;
  display: grid;
  place-items: center;
  background: rgba(57, 170, 232, 0.12);
  color: var(--brand-dark);
  font-size: 1.2rem;
  font-weight: 800;
}

.profile-card[open] summary::after {
  content: "−";
}

.profile-photo-placeholder {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: linear-gradient(135deg, rgba(57, 170, 232, 0.15), rgba(159, 203, 59, 0.22));
  color: var(--brand-dark);
  font-family: "Manrope", sans-serif;
  font-weight: 800;
}

.profile-photo {
  overflow: hidden;
  padding: 0;
  background: #eef5fb;
}

.profile-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.profile-photo-simona img {
  object-position: center 22%;
}

.profile-summary-text {
  display: grid;
  gap: 0.35rem;
  padding-right: 0.2rem;
}

.profile-summary-text strong {
  font-family: "Manrope", sans-serif;
  font-size: 0.92rem;
  line-height: 1.2;
  letter-spacing: -0.01em;
  color: var(--brand-dark);
}

.profile-summary-text span {
  color: var(--text-soft);
  font-size: 0.82rem;
  line-height: 1.35;
}

.profile-body {
  padding: 0 1rem 1rem;
  color: var(--text-soft);
  line-height: 1.75;
}

.project-steps-wide {
  margin-top: 2rem;
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.gallery-card-wide {
  grid-column: span 2;
}

.gallery-card-wide .gallery-trigger img,
.gallery-card-wide img {
  aspect-ratio: 1.7 / 1;
  object-fit: contain;
  background: #f7fbff;
}

@media (max-width: 980px) {
  .home-hero-overlay-split,
  .section-grid,
  .current-scope-grid,
  .project-meta,
  .project-steps,
  .project-steps-wide,
  .profile-grid,
  .gallery-grid,
  .contact-block {
    grid-template-columns: 1fr;
  }

  .scope-question-grid {
    grid-template-columns: 1fr;
  }

  .current-scope-intro h2 {
    max-width: none;
    position: static;
  }

  .gallery-card-wide {
    grid-column: span 1;
  }
}

.hero-side-photo-asset {
  padding: 0;
  overflow: hidden;
}

.hero-side-photo-asset img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top right;
}

.hero-reference-card {
  align-self: start;
}

.advocacy-logo {
  display: block;
  width: 100%;
  height: 220px;
  object-fit: contain;
  padding: 1.35rem;
  background: rgba(255, 255, 255, 0.96);
}

.advocacy-placeholder {
  font-size: 1.8rem;
  letter-spacing: 0.04em;
  text-transform: none;
}

.project-plan-figure-card {
  width: min(100%, 980px);
  margin: 0 auto;
}

.project-plan-figure-card img {
  width: 100%;
  height: auto;
  aspect-ratio: auto;
  object-fit: contain;
  background: #f7fbff;
}

.gene-highlight {
  font-style: italic;
  font-weight: 800;
  font-size: 1.08em;
  color: #ffffff;
  letter-spacing: 0.01em;
}

.button-primary:hover,
.button-primary:focus-visible {
  background: #98c93c;
  border-color: #98c93c;
  color: #1f315f;
}
