:root {
  --bg: #eef6f4;
  --bg-soft: #f7faf8;
  --text: #273033;
  --muted: #65706f;
  --line: rgba(93, 124, 121, 0.2);
  --glass: rgba(255, 255, 255, 0.74);
  --glass-strong: rgba(255, 255, 255, 0.88);
  --sky: #0f766e;
  --cyan: #7bbdb5;
  --emerald: #16857b;
  --gold: #d4a64a;
  --gold-soft: #efd8a6;
  --teal-dark: #073f3a;
  --teal-deep: #052f2b;
  --poster-grey: #6f7270;
  --shadow: 0 18px 60px rgba(7, 63, 58, 0.13);
  --radius-xl: 36px;
  --radius-lg: 28px;
  --radius-md: 22px;
  --max: 1280px;
  --header-h: 92px;
}
* {
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
}
body {
  margin: 0;
  font-family:
    Inter,
    ui-sans-serif,
    system-ui,
    -apple-system,
    BlinkMacSystemFont,
    "Segoe UI",
    sans-serif;
  background:
    radial-gradient(circle at 10% 0, rgba(212, 166, 74, 0.1), transparent 22%),
    radial-gradient(
      circle at 82% 8%,
      rgba(123, 189, 181, 0.22),
      transparent 24%
    ),
    linear-gradient(180deg, #f3f5f1 0, #eef6f4 42%, #e7f1ee 100%);
  color: var(--text);
  overflow-x: hidden;
}
a {
  color: inherit;
  text-decoration: none;
}
img {
  display: block;
  max-width: 100%;
}
button {
  font: inherit;
}
.progress {
  position: fixed;
  top: 0;
  left: 0;
  width: 0%;
  height: 3px;
  z-index: 120;
  background: linear-gradient(
    90deg,
    var(--teal-dark),
    var(--gold),
    var(--cyan)
  );
  box-shadow: 0 0 20px rgba(15, 118, 110, 0.32);
  transform-origin: left center;
}
.container {
  width: min(var(--max), calc(100% - 32px));
  margin: 0 auto;
}
.glass {
  background: linear-gradient(
    180deg,
    rgba(255, 255, 255, 0.82),
    rgba(255, 255, 255, 0.62)
  );
  border: 1px solid rgba(212, 166, 74, 0.22);
  box-shadow: var(--shadow);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
}
.glass-soft {
  background: linear-gradient(
    180deg,
    rgba(255, 255, 255, 0.92),
    rgba(247, 250, 248, 0.88)
  );
  border: 1px solid rgba(212, 166, 74, 0.18);
  box-shadow: 0 16px 48px rgba(7, 63, 58, 0.1);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
}
.badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 14px;
  border-radius: 999px;
  border: 1px solid rgba(123, 189, 181, 0.45);
  background: rgba(255, 255, 255, 0.86);
  color: #0f766e;
  font-size: 12px;
  text-transform: uppercase;
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}
.section-badge {
  display: inline-flex;
  padding: 8px 14px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.86);
  border: 1px solid rgba(123, 189, 181, 0.42);
  color: #0f766e;
  font-size: 12px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
}
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 16px 24px;
  border-radius: 999px;
  border: 1px solid transparent;
  cursor: pointer;
  transition: 0.25s ease;
  text-decoration: none;
  white-space: nowrap;
}
.btn:hover {
  transform: translateY(-2px);
}
.btn-dark {
  color: #fffdf7;
  box-shadow: 0 18px 34px rgba(7, 63, 58, 0.2);
  border-color: rgba(212, 166, 74, 0.34);
}
.btn-dark:hover {
  background: linear-gradient(135deg, var(--teal-dark), var(--sky));
  border-color: rgba(212, 166, 74, 0.55);
}
.btn-light {
  background: linear-gradient(
    180deg,
    rgba(255, 255, 255, 0.88),
    rgba(248, 250, 246, 0.74)
  );
  color: var(--text);
  border-color: rgba(212, 166, 74, 0.28);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}
.btn-light:hover {
  background: rgba(255, 255, 255, 0.94);
  border-color: rgba(212, 166, 74, 0.58);
  color: var(--teal-dark);
  box-shadow: 0 12px 28px rgba(212, 166, 74, 0.12);
}
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 110;
  padding: 16px 0 0;
}
.site-header-inner {
  height: 76px;
  padding: 0 18px;
  border-radius: 999px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}
.brand {
  display: flex;
  align-items: center;
  gap: 14px;
  min-width: 0;
}
.brand-mark {
  width: 42px;
  height: 42px;
  border-radius: 18px;
  background:
    radial-gradient(
      circle at 32% 28%,
      rgba(255, 255, 255, 0.72),
      transparent 20%
    ),
    linear-gradient(135deg, var(--teal-dark), var(--sky) 62%, var(--gold));
  display: grid;
  place-items: center;
  color: #fffdf7;
  box-shadow: 0 18px 30px rgba(15, 118, 110, 0.18);
  flex: 0 0 auto;
}
.brand-text {
  min-width: 0;
}
.brand-title {
  font-size: 20px;
  font-weight: 700;
  letter-spacing: 0.02em;
  color: var(--teal-deep);
}
.brand-sub {
  font-size: 12px;
  color: var(--poster-grey);
  margin-top: 2px;
}
.desktop-nav {
  display: flex;
  gap: 26px;
  align-items: center;
  flex-wrap: wrap;
  justify-content: center;
  margin-right: 50px;
}
.desktop-nav a {
  color: #626a68;
  font-size: 15px;
  transition: 0.2s ease;
  position: relative;
}
.desktop-nav a:hover {
  color: var(--teal-dark);
}
.desktop-nav a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -7px;
  width: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--teal-dark), var(--gold));
  transition: width 0.25s ease;
  border-radius: 999px;
}
.desktop-nav a:hover::after {
  width: 100%;
}
.mobile-toggle {
  display: none;
  width: 46px;
  height: 46px;
  border-radius: 999px;
  border: 1px solid rgba(148, 163, 184, 0.3);
  background: rgba(255, 255, 255, 0.7);
  cursor: pointer;
  align-items: center;
  justify-content: center;
  font-size: 20px;
}
.mobile-panel {
  margin-top: 12px;
  padding: 12px;
  border-radius: 28px;
  display: none;
}
.mobile-panel.open {
  display: block;
}
.mobile-panel a {
  display: block;
  padding: 14px 16px;
  border-radius: 18px;
  color: #46514f;
}
.mobile-panel a:hover {
  background: rgba(255, 255, 255, 0.55);
}
.hero {
  position: relative;
  min-height: clamp(620px, 90vh, 900px);
  padding-bottom: 120px;
  overflow: hidden;
  display: flex;
  align-items: center;
  padding-top: 0;
}
.hero-fade,
.hero-image,
.hero-network,
.hero-overlay {
  position: absolute;
  inset: 0;
}
.hero-image {
  background-image: url("../img/hero-image.png");
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
  transform: none;
  background-color: transparent;
}
.hero-overlay {
  background: radial-gradient(
    ellipse 180% 110% at -18% 112%,
    rgba(248, 250, 246, 0.95) 0,
    rgba(248, 250, 246, 0.78) 18%,
    rgba(248, 250, 246, 0.55) 36%,
    rgba(248, 250, 246, 0.32) 56%,
    rgba(248, 250, 246, 0.14) 76%,
    rgba(248, 250, 246, 0) 100%
  );
}
.hero-grid {
  position: relative;
  z-index: 3;
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(340px, 0.9fr);
  align-items: center;
  gap: 44px;
  padding: 40px 0 60px;
}
.hero-content-box {
  position: relative;
  z-index: 3;
}
.hero-content-wrap {
  width: 100%;
  margin: 0;
  padding-top: calc(var(--header-h) + 20px);
}
.reveal {
  opacity: 0;
  transform: translateY(32px);
  transition:
    opacity 0.8s ease,
    transform 0.8s ease;
}
.reveal.in {
  opacity: 1;
  transform: translateY(0);
}
.hero-title {
  font-size: clamp(46px, 7vw, 98px);
  line-height: 0.93;
  letter-spacing: -0.04em;
  margin: 0;
  max-width: 860px;
  color: #1f292b;
}
.title-gradient {
  display: block !important;
  background: linear-gradient(
    90deg,
    #0f766e 0,
    #2f7f78 35%,
    #4d968d 68%,
    #0f766e 100%
  ) !important;
  background-size: 220% auto !important;
  -webkit-background-clip: text !important;
  background-clip: text !important;
  -webkit-text-fill-color: transparent !important;
  color: transparent !important;
  animation: titleShimmer 7s linear infinite !important;
  text-shadow: none !important;
  filter: none !important;
}
.hero-copy {
  max-width: 760px;
  color: #4f5856;
  font-size: clamp(18px, 2vw, 24px);
  line-height: 1.7;
}
.hero-actions {
  flex-wrap: wrap;
}
.stats-row {
  margin-top: 22px;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}
.stat-card {
  padding: 18px;
  border-radius: 26px;
}
.stat-card strong {
  display: block;
  font-size: 28px;
  line-height: 1;
  margin-bottom: 6px;
  text-align: center;
}
.stat-card span {
  display: block;
  color: var(--muted);
  font-size: 14px;
  text-align: center;
}
.section {
  position: relative;
  padding: 110px 0;
}
.section-head {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 38px;
}
.section-title {
  margin: 14px 0 0;
  font-size: clamp(34px, 4vw, 58px);
  line-height: 1.03;
  letter-spacing: -0.04em;
  color: #273033;
}
.section-copy {
  width: 100%;
  max-width: 100%;
  margin-top: 18px;
  color: var(--muted);
  font-size: 18px;
  line-height: 1.8;
}
.grid-2 {
  display: grid;
  grid-template-columns: minmax(0, 1.04fr) minmax(0, 0.96fr);
  gap: 24px;
}
.cards-2,
.cards-3 {
  display: grid;
  gap: 18px;
}
.cards-2 {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}
.cards-3 {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}
.info-card {
  border-radius: 32px;
  padding: 24px;
}
.icon-chip {
  width: 52px;
  height: 52px;
  border-radius: 18px;
  display: grid;
  place-items: center;
  color: var(--teal-dark);
  font-size: 22px;
  margin-bottom: 16px;
  border: 1px solid rgba(212, 166, 74, 0.24);
  background: linear-gradient(
    135deg,
    rgba(123, 189, 181, 0.34),
    rgba(248, 250, 246, 0.88)
  ) !important;
}
.activity-card h3,
.info-card h3,
.news-card h3,
.result-card h3 {
  margin: 0;
  font-size: 22px;
  line-height: 1.25;
}
.activity-card p,
.detail-article p,
.detail-copy,
.info-card p,
.news-card p,
.result-card p,
.timeline-item p {
  color: var(--muted);
  line-height: 1.8;
}
.image-card {
  position: relative;
  overflow: hidden;
  border-radius: 32px;
  min-height: 240px;
}
.image-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.8s ease;
}
.image-card:hover img {
  transform: scale(1.05);
}
.image-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    rgba(255, 255, 255, 0.1),
    transparent 35%,
    rgba(15, 23, 42, 0.18)
  );
  pointer-events: none;
}
.partner-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}
.partner-box {
  border-radius: 24px;
  padding: 20px;
  text-decoration: none;
  color: inherit;
  background: linear-gradient(
    180deg,
    rgba(255, 255, 255, 0.82),
    rgba(248, 250, 246, 0.7)
  );
  border: 1px solid rgba(93, 124, 121, 0.18);
}
.partner-box strong {
  display: block;
  font-size: 18px;
  margin-bottom: 6px;
  color: var(--teal-deep);
}
.partner-box span {
  color: var(--muted);
  font-size: 14px;
}
.partner-box {
  transition:
    transform 0.25s ease,
    background 0.25s ease,
    box-shadow 0.25s ease,
    border-color 0.25s ease;
  cursor: pointer;
}
.partner-box:hover {
  transform: translateY(-4px);
  background: rgba(255, 255, 255, 0.95);
  border-color: rgba(15, 118, 110, 0.35);
  box-shadow: 0 14px 30px rgba(15, 118, 110, 0.08);
}
.partner-box strong {
  transition: color 0.25s ease;
}
.partner-box:hover strong {
  color: #0f766e;
}
.activities-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(360px, 0.9fr);
  gap: 24px;
}
.activity-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}
.activity-card,
.archive-card,
.news-card,
.result-card {
  overflow: hidden;
  border-radius: 32px;
  transition:
    transform 0.25s ease,
    box-shadow 0.25s ease;
  cursor: pointer;
}
.activity-card:hover,
.archive-card:hover,
.news-card:hover,
.result-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 28px 60px rgba(2, 132, 199, 0.1);
}
.card-image {
  height: 210px;
  position: relative;
  overflow: hidden;
}
.card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.8s ease;
}
.activity-card:hover .card-image img,
.archive-card:hover .card-image img,
.news-card:hover .card-image img,
.result-card:hover .card-image img {
  transform: scale(1.06);
}
.card-image::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    rgba(255, 255, 255, 0.06),
    transparent 35%,
    rgba(15, 23, 42, 0.22)
  );
}
.card-body {
  padding: 24px;
}
.meta-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  margin-bottom: 16px;
  color: #6f7270;
  font-size: 14px;
}
.pill {
  display: inline-flex;
  align-items: center;
  padding: 8px 12px;
  border-radius: 999px;
  background: linear-gradient(
    180deg,
    rgba(255, 255, 255, 0.92),
    rgba(239, 231, 210, 0.5)
  );
  color: var(--teal-dark);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}
.readmore {
  margin-top: 18px;
  display: inline-flex;
  gap: 8px;
  align-items: center;
  font-size: 14px;
  font-weight: 700;
}
.timeline {
  border-radius: 32px;
  padding: 26px;
  position: relative;
  overflow: hidden;
}
.timeline::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(212, 166, 74, 0.72),
    transparent
  );
  pointer-events: none;
  left: 24px;
  right: 24px;
  top: 0;
  bottom: auto;
  height: 2px;
}
.timeline-items {
  position: relative;
  display: grid;
  gap: 18px;
  margin-top: 18px;
}
.timeline-item {
  position: relative;
  padding-left: 28px;
}
.timeline-item::before {
  content: "";
  position: absolute;
  left: 5px;
  top: 12px;
  width: 10px;
  height: 10px;
  border-radius: 999px;
  background: rgba(14, 165, 233, 0.28);
  border: 1px solid rgba(123, 189, 181, 0.5);
  box-shadow: 0 0 18px rgba(15, 118, 110, 0.22);
}
.timeline-item::after {
  content: "";
  position: absolute;
  left: 9px;
  top: 24px;
  bottom: -18px;
  width: 1px;
  background: linear-gradient(180deg, rgba(15, 118, 110, 0.45), transparent);
}
.timeline-item:last-child::after {
  display: none;
}
.timeline-item strong {
  display: block;
  margin-bottom: 6px;
  font-size: 15px;
}
.network-panel {
  position: relative;
  border-radius: 32px;
  overflow: hidden;
  min-height: 360px;
}
.network-panel .network-canvas {
  position: absolute;
  inset: 0;
}
.network-panel-content {
  position: relative;
  z-index: 2;
  min-height: 360px;
  display: grid;
  place-items: center;
  padding: 26px;
}
.network-blurb {
  max-width: 460px;
  text-align: center;
  border-radius: 32px;
  padding: 28px;
}
.page {
  display: none;
  padding-top: 0;
  min-height: 100svh;
}
.page.active {
  display: block;
}
.page-shell {
  padding: 0 0 70px;
}
.page-frame {
  overflow: hidden;
  border-radius: 40px;
}
.page-hero {
  position: relative;
  min-height: 340px;
  overflow: hidden;
}
.page-hero img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  position: absolute;
  inset: 0;
}
.page-hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(
      90deg,
      rgba(248, 250, 246, 0.88),
      rgba(248, 250, 246, 0.56),
      rgba(238, 246, 244, 0.26)
    ),
    radial-gradient(
      circle at 18% 30%,
      rgba(212, 166, 74, 0.14),
      transparent 28%
    );
  z-index: 1;
}
.page-network {
  position: absolute;
  inset: 0;
  z-index: 2;
}
.page-hero-content {
  position: relative;
  z-index: 3;
}
.page-hero-content {
  padding: 34px 28px 30px;
  min-height: 340px;
  display: flex;
  align-items: end;
}
.page-hero-content h1 {
  margin: 0;
  max-width: 980px;
  font-size: clamp(38px, 5vw, 72px);
  line-height: 1.02;
  letter-spacing: -0.04em;
}
.page-hero-content h2 {
  margin: 0;
  font-size: 32px;
  line-height: 1.02;
  letter-spacing: -0.04em;
}
.page-body {
  padding: 28px;
}
.detail-grid {
  display: grid;
  grid-template-columns: minmax(280px, 0.82fr) minmax(0, 1.18fr);
  gap: 28px;
}
.detail-main,
.detail-sidebar {
  display: grid;
  gap: 18px;
  align-content: start;
}
.detail-card {
  border-radius: 32px;
  padding: 24px;
  background: rgba(255, 255, 255, 0.75);
  border: 1px solid rgba(93, 124, 121, 0.18);
}
.detail-card h2,
.detail-card h3 {
  margin: 0 0 12px;
  font-size: 28px;
  line-height: 1.15;
}
.detail-card h3 {
  font-size: 22px;
}
.detail-meta {
  display: grid;
  gap: 12px;
  color: var(--muted);
  font-size: 14px;
}
.detail-meta strong {
  color: var(--text);
}
.detail-article p {
  margin: 0 0 18px;
  font-size: 17px;
}
.bullet-list {
  display: grid;
  gap: 12px;
  margin-top: 16px;
}
.bullet-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 14px 16px;
  border-radius: 22px;
  border: 1px solid rgba(93, 124, 121, 0.18);
  background: rgba(255, 255, 255, 0.84);
  color: #46514f;
}
.archive-layout {
  display: grid;
  grid-template-columns: minmax(280px, 0.78fr) minmax(0, 1.22fr);
  gap: 28px;
}
.archive-main {
  display: grid;
  gap: 18px;
}
.archive-card {
  display: grid;
  grid-template-columns: 320px minmax(0, 1fr);
  overflow: hidden;
}
.archive-card .card-image {
  height: 100%;
  min-height: 240px;
}
.search-wrap {
  margin-top: 14px;
  position: relative;
}
.search-wrap input {
  width: 100%;
  padding: 16px 18px;
  border-radius: 20px;
  border: 1px solid rgba(93, 124, 121, 0.22);
  background: linear-gradient(
    180deg,
    rgba(255, 255, 255, 0.96),
    rgba(248, 250, 246, 0.86)
  );
  color: var(--text);
  outline: 0;
  font-size: 15px;
  border-color: rgba(212, 166, 74, 0.28);
}
.search-wrap input:focus {
  border-color: rgba(212, 166, 74, 0.62);
  box-shadow: 0 0 0 4px rgba(212, 166, 74, 0.12);
}
.floating-home {
  position: fixed;
  right: 26px;
  bottom: 26px;
  width: 56px;
  height: 56px;
  border: 1px solid rgba(212, 166, 74, 0.46);
  border-radius: 999px;
  background:
    radial-gradient(
      circle at 32% 24%,
      rgba(255, 255, 255, 0.18),
      transparent 30%
    ),
    linear-gradient(135deg, var(--teal-deep), var(--teal-dark) 58%, var(--sky));
  color: #fffdf7;
  cursor: pointer;
  z-index: 9999;
  box-shadow: 0 18px 42px rgba(7, 63, 58, 0.26);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transform: translateY(14px) scale(0.94);
  transition:
    opacity 0.22s ease,
    visibility 0.22s ease,
    transform 0.22s ease,
    box-shadow 0.22s ease,
    border-color 0.22s ease,
    background 0.22s ease;
}
.floating-home.show {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translateY(0) scale(1);
}
.floating-home::before {
  content: "↑";
  color: #fffdf7;
  font-size: 30px;
  font-weight: 800;
  line-height: 1;
  display: block;
  transform: translateY(-2px);
}
.floating-home i,
.floating-home span,
.floating-home svg {
  display: none !important;
}
.floating-home:hover {
  transform: translateY(-5px) scale(1.03);
  background:
    radial-gradient(
      circle at 32% 24%,
      rgba(255, 255, 255, 0.2),
      transparent 30%
    ),
    linear-gradient(135deg, var(--teal-dark), var(--sky));
  border-color: rgba(212, 166, 74, 0.75);
  box-shadow: 0 24px 54px rgba(7, 63, 58, 0.34);
}
.muted {
  color: var(--muted);
}
.mono {
  letter-spacing: 0.2em;
  text-transform: uppercase;
  font-size: 20px;
  color: #0f766e;
}
@media (max-width: 1180px) {
  .activities-layout,
  .archive-layout,
  .detail-grid,
  .grid-2,
  .hero-grid {
    grid-template-columns: 1fr;
  }
}
@media (max-width: 960px) {
  .desktop-nav {
    display: none !important;
  }
  .mobile-toggle {
    display: inline-flex;
  }
  .activity-grid,
  .archive-card,
  .cards-2,
  .cards-3 {
    grid-template-columns: 1fr;
  }
  .partner-grid,
  .stats-row {
    grid-template-columns: 1fr 1fr;
  }
  .hero {
    min-height: 720px;
    align-items: center;
  }
  .hero-grid {
    padding-top: 16px;
  }
  .hero-image {
    background-position: center center;
  }
}
@media (max-width: 680px) {
  .container {
    width: min(var(--max), calc(100% - 20px));
  }
  .site-header {
    padding-top: 10px;
  }
  .site-header-inner {
    height: 70px;
    padding: 0 14px;
  }
  .hero-grid {
    gap: 24px;
  }
  .hero-copy {
    font-size: 18px;
  }
  .section {
    padding: 84px 0;
  }
  .section-copy {
    font-size: 16px;
  }
  .partner-grid,
  .stats-row {
    grid-template-columns: 1fr;
  }
  .page-body,
  .page-hero-content {
    padding-left: 16px;
    padding-right: 16px;
  }
  .archive-card .card-image {
    min-height: 210px;
  }
}
.site-footer {
  position: relative;
  overflow: hidden;
  background: var(--teal-dark);
  color: #fffdf7;
  margin-top: 80px;
  border-top: 1px solid rgba(212, 166, 74, 0.28);
}
.footer-bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(
      circle at 18% 18%,
      rgba(123, 189, 181, 0.24),
      transparent 30%
    ),
    radial-gradient(
      circle at 82% 12%,
      rgba(212, 166, 74, 0.18),
      transparent 25%
    ),
    linear-gradient(135deg, #052f2b 0, #0f766e 48%, #073f3a 100%);
}
.footer-bg::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(
      160deg,
      transparent 0 42%,
      rgba(232, 243, 241, 0.16) 42% 43%,
      transparent 43% 100%
    ),
    linear-gradient(
      155deg,
      transparent 0 48%,
      rgba(212, 166, 74, 0.2) 48% 49%,
      transparent 49% 100%
    ),
    linear-gradient(
      150deg,
      transparent 0 54%,
      rgba(232, 243, 241, 0.12) 54% 55%,
      transparent 55% 100%
    );
  opacity: 0.72;
}
.footer-bg::after {
  content: "";
  position: absolute;
  right: -24px;
  top: 36px;
  width: 260px;
  height: 260px;
  background-image: radial-gradient(
    circle,
    rgba(212, 166, 74, 0.62) 2px,
    transparent 2.6px
  );
  background-size: 22px 22px;
  opacity: 0.46;
}
.footer-main {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1.1fr 0.8fr 1.25fr;
  gap: 70px;
  padding: 90px 0 70px;
}
.footer-col h3 {
  margin: 0 0 28px;
  font-size: 20px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: #fffdf7;
}
.footer-contact-item {
  display: grid;
  grid-template-columns: 44px 1fr;
  gap: 18px;
  padding: 20px 0;
  border-bottom: 1px solid rgba(232, 243, 241, 0.18);
}
.footer-icon {
  width: 44px;
  height: 44px;
  border-radius: 16px;
  display: grid;
  place-items: center;
  color: var(--gold);
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(212, 166, 74, 0.48);
}
.footer-contact-item strong {
  display: block;
  font-size: 18px;
  line-height: 1.5;
  color: #fffdf7;
}
.footer-contact-item span {
  display: block;
  color: #dce9e6;
  line-height: 1.6;
}
.footer-policies {
  display: flex;
  gap: 22px;
  flex-wrap: wrap;
  margin-top: 24px;
}
.footer-links a,
.footer-policies a {
  color: var(--gold);
  transition: 0.2s ease;
}
.footer-links a:hover,
.footer-policies a:hover {
  color: #fffdf7;
}
.footer-links {
  display: grid;
  gap: 18px;
  font-size: 18px;
}
.footer-news {
  display: grid;
  grid-template-columns: 86px 1fr;
  gap: 18px;
  align-items: start;
  margin-bottom: 26px;
  cursor: pointer;
}
.footer-news img {
  width: 86px;
  height: 72px;
  object-fit: cover;
  border-radius: 16px;
  border: 1px solid rgba(212, 166, 74, 0.36);
}
.footer-news span {
  display: block;
  color: var(--gold-soft);
  margin-bottom: 8px;
  font-size: 14px;
}
.footer-news strong {
  display: block;
  line-height: 1.5;
  font-size: 16px;
  color: #fffdf7;
}
.footer-bottom {
  position: relative;
  z-index: 2;
  border-top: 1px solid rgba(232, 243, 241, 0.18);
  background: rgba(5, 47, 43, 0.38);
}
.footer-bottom-inner {
  display: flex;
  justify-content: space-between;
  gap: 24px;
  padding: 24px 0;
  color: #dce9e6;
  font-size: 14px;
  flex-wrap: wrap;
}
.footer-bottom strong {
  color: var(--gold);
}
@media (max-width: 960px) {
  .footer-main {
    grid-template-columns: 1fr;
    gap: 42px;
    padding: 70px 0 50px;
  }
}
.badge,
.mono,
.pill,
.section-badge {
  color: var(--teal-dark);
}
.badge,
.pill,
.section-badge {
  border-color: rgba(212, 166, 74, 0.28);
  position: relative;
  background: linear-gradient(
    180deg,
    rgba(255, 255, 255, 0.92),
    rgba(248, 250, 246, 0.78)
  );
  border: 1px solid rgba(212, 166, 74, 0.35);
  color: var(--teal-dark);
  box-shadow: 0 10px 28px rgba(7, 63, 58, 0.06);
}
.btn-dark {
  background: var(--teal-dark);
}
.readmore {
  color: var(--sky);
}
.bullet-item,
.detail-card,
.info-card,
.network-panel,
.partner-box,
.stat-card,
.timeline {
  border-color: rgba(212, 166, 74, 0.16);
}
.hero-title .title-gradient {
  display: block !important;
  background: linear-gradient(
    90deg,
    var(--sky) 0,
    var(--gold) 34%,
    #2f7f78 68%,
    var(--sky) 100%
  ) !important;
  -webkit-background-clip: text !important;
  background-clip: text !important;
  -webkit-text-fill-color: transparent !important;
  color: transparent !important;
  background-size: 230% auto !important;
  animation: titleShimmer 7s linear infinite !important;
}
body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: -1;
  background:
    linear-gradient(
      155deg,
      transparent 0 38%,
      rgba(212, 166, 74, 0.13) 38.08% 38.18%,
      transparent 38.26% 100%
    ),
    linear-gradient(
      160deg,
      transparent 0 48%,
      rgba(111, 114, 112, 0.1) 48.08% 48.18%,
      transparent 48.26% 100%
    ),
    linear-gradient(
      150deg,
      transparent 0 58%,
      rgba(123, 189, 181, 0.16) 58.08% 58.18%,
      transparent 58.26% 100%
    );
  opacity: 0.9;
}
.site-header-inner.glass {
  border: 1px solid rgba(212, 166, 74, 0.28);
  background: linear-gradient(
    180deg,
    rgba(255, 255, 255, 0.92),
    rgba(248, 250, 246, 0.76)
  );
  box-shadow: 0 18px 55px rgba(7, 63, 58, 0.12);
}
.hero::after {
  content: "";
  position: absolute;
  right: 8vw;
  top: 14vh;
  width: 190px;
  height: 190px;
  z-index: 2;
  pointer-events: none;
  background-image: radial-gradient(
    circle,
    rgba(212, 166, 74, 0.55) 2px,
    transparent 2.8px
  );
  background-size: 20px 20px;
  opacity: 0.45;
}
@keyframes titleShimmer {
  0% {
    background-position: 0 center;
  }
  100% {
    background-position: 230% center;
  }
}
.badge::before,
.section-badge::before {
  width: 7px;
  height: 7px;
  border-radius: 999px;
  background: var(--gold);
  box-shadow: 0 0 0 4px rgba(212, 166, 74, 0.14);
  display: none !important;
  content: none !important;
}
.activity-card,
.archive-card,
.bullet-item,
.detail-card,
.glass,
.glass-soft,
.info-card,
.network-panel,
.news-card,
.partner-box,
.result-card,
.stat-card,
.timeline {
  border-color: rgba(212, 166, 74, 0.22) !important;
}
.glass,
.glass-soft {
  background: linear-gradient(
    180deg,
    rgba(255, 255, 255, 0.86),
    rgba(248, 250, 246, 0.68)
  );
}
.activity-card,
.archive-card,
.detail-card,
.info-card,
.news-card,
.result-card,
.stat-card,
.timeline {
  position: relative;
}
.activity-card::before,
.archive-card::before,
.detail-card::before,
.info-card::before,
.news-card::before,
.result-card::before,
.stat-card::before,
.timeline::before {
  content: "";
  position: absolute;
  left: 24px;
  right: 24px;
  top: 0;
  height: 2px;
  border-radius: 999px;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(212, 166, 74, 0.72),
    transparent
  );
  opacity: 0.78;
  pointer-events: none;
}
.timeline::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(
      circle at top right,
      rgba(212, 166, 74, 0.08),
      transparent 30%
    ),
    radial-gradient(
      circle at bottom left,
      rgba(15, 118, 110, 0.07),
      transparent 32%
    );
  pointer-events: none;
}
.section-head .section-title::after {
  content: "";
  display: block;
  width: 96px;
  height: 3px;
  margin-top: 18px;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--gold), rgba(15, 118, 110, 0.55));
}
.activity-card p,
.detail-article p,
.detail-copy,
.detail-meta,
.footer-bottom-inner,
.info-card p,
.meta-row,
.muted,
.news-card p,
.partner-box span,
.result-card p,
.section-copy,
.stat-card span,
.timeline-item p {
  color: var(--poster-grey);
}
.meta-row span:last-child {
  color: #6f7270;
}
.bullet-item span:first-child {
  color: var(--gold);
}
.readmore:hover {
  color: var(--gold);
}
.activity-card:hover,
.archive-card:hover,
.info-card:hover,
.news-card:hover,
.result-card:hover {
  box-shadow:
    0 28px 60px rgba(7, 63, 58, 0.12),
    0 0 0 1px rgba(212, 166, 74, 0.22);
}
.card-image img,
.image-card img,
.page-hero img {
  filter: saturate(0.92) sepia(0.05);
}
.card-image::after,
.image-card::after {
  background:
    linear-gradient(
      180deg,
      rgba(255, 255, 255, 0.08),
      transparent 36%,
      rgba(39, 48, 51, 0.22)
    ),
    radial-gradient(
      circle at bottom left,
      rgba(212, 166, 74, 0.12),
      transparent 34%
    );
}
.site-footer::before {
  content: "";
  position: absolute;
  top: 0;
  left: 50%;
  width: min(900px, calc(100% - 48px));
  height: 3px;
  transform: translateX(-50%);
  border-radius: 999px;
  background: linear-gradient(
    90deg,
    transparent,
    var(--gold),
    rgba(123, 189, 181, 0.75),
    transparent
  );
  z-index: 3;
}
@media (max-width: 680px) {
  .hero::after {
    opacity: 0.22;
    right: -40px;
    top: 90px;
  }
  .section-head .section-title::after {
    width: 72px;
    margin-top: 14px;
  }
  .activity-card::before,
  .archive-card::before,
  .detail-card::before,
  .info-card::before,
  .news-card::before,
  .result-card::before,
  .stat-card::before {
    left: 18px;
    right: 18px;
  }
}
.footer-funding {
  margin-top: 38px;
  width: 100%;
  max-width: 620px;
  padding: 10px 10px;
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.94);
  border: 1px solid rgba(212, 166, 74, 0.34);
  box-shadow:
    0 18px 42px rgba(5, 47, 43, 0.22),
    inset 0 1px 0 rgba(255, 255, 255, 0.75);
}
.footer-funding img {
  width: 100%;
  height: auto;
  display: block;
}
.territory-carousel {
  position: relative;
  min-height: 240px;
  border-radius: 38px;
  overflow: hidden;
  width: 100%;
  aspect-ratio: 16/9;
  height: auto !important;
}
.territory-carousel-track {
  position: relative;
  width: 100%;
  height: 100%;
}
.territory-slide {
  position: relative;
  inset: 0;
  opacity: 0;
  transform: scale(1.04);
  transition:
    opacity 0.7s ease,
    transform 1.1s ease;
  width: 100%;
  aspect-ratio: 2048/1364;
  overflow: hidden;
  border-radius: 38px;
  background: #071f1d;
}
.territory-slide.active {
  opacity: 1;
  transform: scale(1);
}
.territory-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  object-position: center center;
}
.territory-slide::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(0, 0, 0, 0.05), rgba(5, 47, 43, 0.38)),
    radial-gradient(
      circle at bottom left,
      rgba(212, 166, 74, 0.18),
      transparent 40%
    );
}
.territory-slide span {
  position: absolute;
  left: 24px;
  bottom: 22px;
  z-index: 2;
  color: #fffdf7;
  font-size: 22px;
  font-weight: 800;
  text-shadow: 0 8px 24px rgba(0, 0, 0, 0.35);
}
.territory-carousel-btn {
  position: absolute;
  top: 50%;
  z-index: 3;
  width: 46px;
  height: 46px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.55);
  background: rgba(255, 255, 255, 0.72);
  color: var(--teal-dark);
  font-size: 34px;
  line-height: 1;
  cursor: pointer;
  transform: translateY(-50%);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  transition: 0.25s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0;
}
.territory-carousel-btn:hover {
  background: rgba(255, 255, 255, 0.94);
  transform: translateY(-50%) scale(1.06);
}
.territory-carousel-btn.prev {
  left: 16px;
}
.territory-carousel-btn.next {
  right: 16px;
}
#territorio .image-card {
  height: auto !important;
  min-height: 0;
}
#territorio .image-card img {
  width: 100%;
  height: auto;
  object-fit: contain;
}
.territory-carousel-track,
.territory-slide {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}
.territory-carousel-btn.next,
.territory-carousel-btn.prev {
  font-size: 0;
}
.territory-carousel-btn.next::before,
.territory-carousel-btn.prev::before {
  display: block;
  font-size: 34px;
  line-height: 1;
  transform: translateY(-2px);
}
.territory-carousel-btn.prev::before {
  content: "‹";
}
.territory-carousel-btn.next::before {
  content: "›";
}
.partner-logos {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 50px;
  flex-wrap: wrap;
  margin-top: 50px;
}
.partner-logos img {
  height: 130px;
  width: auto;
  object-fit: contain;
  transition:
    transform 0.25s ease,
    opacity 0.25s ease;
}
.partner-logos img:hover {
  transform: scale(1.05);
  opacity: 0.9;
}
#territorio .grid-2 {
  align-items: stretch;
}
#territorio .image-card,
#territorio .territory-carousel {
  height: 100%;
}
#territorio .territory-carousel {
  min-height: 100%;
}
.territory-video {
  position: relative;
  margin-top: 28px;
  border-radius: 36px;
  overflow: hidden;
  min-height: 520px;
  margin-bottom: 30px;
}
.territory-video video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.nav-dropdown {
  position: relative;
}
.dropdown-menu {
  position: absolute;
  top: calc(100% + 14px);
  left: 50%;
  transform: translateX(-50%) translateY(10px);
  width: max-content;
  min-width: 100%;
  padding: 10px;
  display: flex;
  flex-direction: column;
  gap: 4px;
  border-radius: 24px;
  background: linear-gradient(
    180deg,
    rgba(255, 255, 255, 0.82),
    rgba(255, 255, 255, 0.62)
  );
  border: 1px solid rgba(212, 166, 74, 0.22);
  box-shadow: var(--shadow);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  opacity: 0;
  visibility: hidden;
  transition:
    opacity 0.25s ease,
    transform 0.25s ease;
  z-index: 200;
}
.dropdown-menu a:hover {
  color: var(--teal-dark);
}
.nav-dropdown:hover .dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateX(-50%) translateY(0);
}
.dropdown-menu a {
  position: relative;
  padding: 10px 14px;
  border-radius: 14px;
  white-space: nowrap;
  transition: 0.2s ease;
  display: inline-flex;
  width: fit-content;
}
.dropdown-menu a::after {
  content: "";
  position: absolute;
  left: 14px;
  bottom: 6px;
  width: 0;
  height: 3px;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--teal-dark), var(--gold));
  transition: width 0.25s ease;
}
.dropdown-menu a:hover::after {
  width: calc(100% - 28px);
}
.bullet-item span:last-child {
  font-size: 15px;
  line-height: 1.55;
}
.bullet-item b {
  display: inline-block;
  margin-bottom: 1px;
}
.detail-grid {
  align-items: start;
}
.detail-photo {
  height: 293px;
  overflow: hidden;
  border-radius: 32px;
  border: 1px solid rgba(212, 166, 74, 0.16) !important;
  background: rgba(255, 255, 255, 0.75);
}
.detail-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
  border-radius: 30px;
  border: 1px solid rgba(212, 166, 74, 0.16) !important;
  background: rgba(255, 255, 255, 0.75);
}
.detail-article {
  grid-column: 1/-1;
}
.dropdown-menu a {
  color: inherit;
  font-size: 15px;
  font-weight: 400;
}
.desktop-nav .dropdown-menu a {
  color: #626a68 !important;
}
.desktop-nav .dropdown-menu a:hover {
  color: var(--teal-dark) !important;
}
.team-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 24px;
}
.team-card {
  text-align: center;
}
.team-photo {
  aspect-ratio: 4/5;
  overflow: hidden;
  border-radius: 28px;
  border: 1px solid rgba(212, 166, 74, 0.18);
  background: rgba(255, 255, 255, 0.75);
}
.team-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.team-card h3 {
  margin: 16px 0 4px;
  font-size: 22px;
}
.team-card p {
  margin: 0;
  color: var(--teal-dark);
  font-style: italic;
  font-size: 18px;
}
.team-card span {
  display: block;
  margin-top: 6px;
  color: var(--muted);
  font-size: 14px;
}
@media (max-width: 960px) {
  .team-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}
@media (max-width: 560px) {
  .team-grid {
    grid-template-columns: 1fr;
  }
}
.stats-overlap {
  margin-top: -24px;
  position: relative;
  z-index: 4;
}
.territory-carousel-wrap {
  display: grid;
  gap: 24px;
}
.text-green {
  color: #059669;
}
.flush {
  margin: 0;
}
.badge-compact {
  letter-spacing: 0.12em;
}
.detail-side-image {
  height: 260px;
}
.card-image-tall {
  height: 230px;
}
.mobile-dropdown {
  margin: 0;
}
.mobile-dropdown-toggle {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 16px;
  background: 0 0;
  border: 0;
  color: #46514f;
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
  text-align: left;
}
.mobile-dropdown-toggle span {
  font-size: 22px;
  line-height: 1;
  color: var(--teal-dark);
  transition: transform 0.25s ease;
}
.mobile-dropdown.open .mobile-dropdown-toggle span {
  transform: none;
}
.mobile-dropdown-menu {
  display: grid;
  max-height: 0;
  overflow: hidden;
  opacity: 0;
  transition:
    max-height 0.3s ease,
    opacity 0.25s ease;
}
.mobile-dropdown.open .mobile-dropdown-menu {
  max-height: 200px;
  opacity: 1;
}
.mobile-dropdown-menu a {
  padding: 10px 16px 10px 34px;
  font-size: 15px;
  color: var(--muted);
}
.mobile-dropdown-menu a:hover {
  color: var(--teal-dark);
}
@media (max-width: 680px) {
  .hero {
    min-height: 620px;
    padding: 130px 0 52px;
    align-items: flex-start;
  }
  .hero-image {
    background-size: cover;
    background-position: center top;
  }
  .hero-overlay {
    background: linear-gradient(
      180deg,
      rgba(238, 246, 244, 0.72) 0,
      rgba(238, 246, 244, 0.18) 32%,
      rgba(238, 246, 244, 0.85) 78%,
      #eef6f4 100%
    );
  }
  .hero-network {
    opacity: 0.45;
  }
  .hero-content-wrap {
    padding-top: 0;
  }
  .hero-grid {
    display: block;
    padding: 0;
  }
  .hero-title {
    font-size: clamp(42px, 14vw, 62px);
    line-height: 0.9;
    max-width: 100%;
    margin-top: 0;
  }
  .hero-copy {
    max-width: 100%;
  }
  .badge {
    justify-content: flex-start;
  }
  .stats-overlap,
  .stats-row {
    margin-top: -18px;
    position: relative;
    z-index: 5;
  }
  .stat-card strong {
    font-size: 28px;
  }
}
@media (max-width: 680px) {
  .badge {
    width: auto;
    max-width: 100%;
    padding: 13px 18px;
    border-radius: 24px;
    font-size: 10.5px;
    line-height: 1.65;
    letter-spacing: 0.2em;
  }
  .hero-copy {
    margin-top: 22px;
  }
}
@media (max-width: 390px) {
  .hero-actions {
    grid-template-columns: 1fr;
  }
  .hero-actions .btn {
    width: 100%;
  }
}
@media (max-width: 680px) {
  .btn-dark {
    box-shadow: 0 10px 22px rgba(7, 63, 58, 0.16);
  }
}
.hero-actions .btn {
  letter-spacing: -0.01em;
}

.hero-actions {
  display: flex;
  gap: 18px;
}
.hero-actions .btn {
  min-width: 230px;
}
.hero-copy {
  margin-top: 42px;
}
.hero-actions {
  margin-top: 120px;
}
.badge {
  letter-spacing: 0.18em;
  padding-inline: 26px;
}
.site-header-inner {
  background: rgba(255, 255, 255, 0.68);
  backdrop-filter: blur(18px);
}
.news-slider {
  position: relative;
  overflow: hidden;
  border-radius: 32px;
  padding: 0;
}
.news-slider.detail-side-image {
  height: 260px;
}
.news-slider-track,
.news-slider-track img {
  width: 100%;
  height: 100%;
}
.news-slider-track {
  position: relative;
}
.news-slider-track img {
  position: absolute;
  inset: 0;
  object-fit: cover;
  object-position: center;
  opacity: 0;
  transition: opacity 0.35s ease;
}
.news-slider-track img.active {
  opacity: 1;
}
.news-slider::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  background: linear-gradient(
    180deg,
    rgba(255, 255, 255, 0.04),
    transparent 45%,
    rgba(15, 23, 42, 0.18)
  );
}
.news-slider-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 3;
  width: 38px;
  height: 38px;
  border: 0;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.86);
  color: var(--teal-dark);
  cursor: pointer;
  font-size: 26px;
  line-height: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 10px 24px rgba(7, 63, 58, 0.14);
}
.news-slider-btn.prev {
  left: 12px;
}
.news-slider-btn.next {
  right: 12px;
}
.news-slider-dots {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 12px;
  z-index: 3;
  display: flex;
  justify-content: center;
  gap: 7px;
}
.news-slider-dots button {
  width: 8px;
  height: 8px;
  border: 0;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.68);
  cursor: pointer;
  transition: 0.25s ease;
}
.news-slider-dots button.active {
  width: 22px;
  background: var(--gold);
}
.detail-main > .detail-card:has(+ .detail-card #newsRelated) {
  margin-bottom: 46px !important;
}
.detail-main > .detail-card:has(#newsRelated) {
  margin-top: 0 !important;
}
#newsRelated,
.bullet-list#newsRelated,
.detail-card #newsRelated {
  display: flex !important;
  flex-direction: row !important;
  flex-wrap: wrap !important;
  align-items: center !important;
  justify-content: flex-start !important;
  gap: 16px !important;
  margin-top: 24px !important;
}
#newsRelated .bullet-item,
.bullet-list#newsRelated .bullet-item,
.detail-card #newsRelated .bullet-item {
  width: fit-content !important;
  max-width: none !important;
  min-width: 0 !important;
  flex: 0 0 auto !important;
  display: inline-flex !important;
  align-items: center !important;
  justify-content: flex-start !important;
  padding: 14px 20px !important;
  border-radius: 999px !important;
  margin: 0 !important;
}
#newsRelated .bullet-item span:last-child {
  white-space: nowrap !important;
  line-height: 1.35 !important;
}
@media (max-width: 860px) {
  #newsRelated,
  .bullet-list#newsRelated,
  .detail-card #newsRelated {
    flex-direction: column !important;
    align-items: stretch !important;
  }
  #newsRelated .bullet-item,
  .bullet-list#newsRelated .bullet-item,
  .detail-card #newsRelated .bullet-item {
    width: 100% !important;
  }
  #newsRelated .bullet-item span:last-child {
    white-space: normal !important;
  }
}
.detail-card .bullet-list {
  display: flex !important;
  flex-wrap: wrap !important;
  gap: 14px !important;
}
.detail-card .bullet-list .bullet-item {
  width: auto !important;
  flex: 0 0 auto !important;
  display: inline-flex !important;
  align-items: center !important;
  padding: 14px 22px !important;
  border-radius: 999px !important;
}
.detail-card .bullet-list .bullet-item span:last-child {
  white-space: nowrap !important;
}
.detail-grid + .related-bottom {
  margin-top: 24px !important;
}
.bullet-item {
  cursor: pointer;
  transition:
    transform 0.2s ease,
    background 0.2s ease,
    border-color 0.2s ease,
    box-shadow 0.2s ease;
}
.bullet-item:hover {
  transform: translateY(-2px);
  background: rgba(255, 255, 255, 0.96);
  border-color: rgba(15, 118, 110, 0.28);
  box-shadow: 0 10px 24px rgba(15, 118, 110, 0.08);
}
.bullet-item:hover span:first-child {
  transform: translateX(3px);
}
.bullet-item span:first-child {
  transition: transform 0.2s ease;
}
.detail-card .bullet-list:not(#newsRelated) {
  display: grid !important;
  gap: 12px !important;
}
.detail-card .bullet-list:not(#newsRelated) .bullet-item {
  width: 100% !important;
  flex: none !important;
  display: flex !important;
  align-items: flex-start !important;
  border-radius: 22px !important;
}
.detail-card .bullet-list:not(#newsRelated) .bullet-item span:last-child {
  white-space: normal !important;
  overflow-wrap: anywhere;
  min-width: 0;
}
.detail-card .bullet-list .bullet-item {
  font-size: 18px;
  line-height: 1.7;
}
.detail-card .bullet-list .bullet-item strong {
  font-size: 18px;
  line-height: 1.4;
}
.detail-card .bullet-list .bullet-item p,
.detail-card .bullet-list .bullet-item span:last-child {
  font-size: 18px;
  line-height: 1.7;
  color: var(--muted);
}
.event-meta-card {
  position: relative;
  padding: 30px;
  padding-right: 210px;
}
.event-detail-meta {
  gap: 14px;
  font-size: 15px;
}
.event-register-btn {
  position: absolute;
  top: 24px;
  right: 24px;
  display: none;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 12px 22px;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--teal-deep), var(--teal-dark));
  color: #fffdf7;
  border: 1px solid rgba(212, 166, 74, 0.36);
  box-shadow: 0 14px 28px rgba(7, 63, 58, 0.16);
  font-size: 14px;
  font-weight: 800;
  letter-spacing: 0.02em;
  white-space: nowrap;
  transition:
    transform 0.25s ease,
    box-shadow 0.25s ease,
    background 0.25s ease,
    border-color 0.25s ease;
}
.event-register-btn:hover {
  transform: translateY(-2px);
  background: linear-gradient(135deg, var(--teal-dark), var(--sky));
  border-color: rgba(212, 166, 74, 0.58);
  box-shadow: 0 18px 34px rgba(7, 63, 58, 0.22);
}
.event-poster-row {
  display: none;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
}
.event-poster-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 30px;
  padding: 6px 13px;
  border-radius: 999px;
  background: linear-gradient(
    180deg,
    rgba(255, 255, 255, 0.9),
    rgba(248, 250, 246, 0.72)
  );
  color: var(--teal-dark);
  border: 1px solid rgba(212, 166, 74, 0.34);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  transition:
    transform 0.2s ease,
    background 0.2s ease,
    border-color 0.2s ease,
    color 0.2s ease;
}
.event-poster-btn:hover {
  transform: translateY(-1px);
  background: rgba(255, 255, 255, 0.96);
  border-color: rgba(212, 166, 74, 0.62);
  color: var(--sky);
}
@media (max-width: 680px) {
  .event-meta-card {
    padding-right: 18px;
  }
  .event-register-btn {
    position: static;
    width: fit-content;
    margin-bottom: 18px;
  }
}
.timeline-event {
  display: inline-flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 8px;
  color: var(--muted);
  line-height: 1.8;
}
.timeline-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 18px;
  height: 18px;
  border: none;
  background: 0 0;
  padding: 0;
  color: var(--teal-dark);
  cursor: pointer;
  opacity: 1;
  transform: translateY(-1px);
  transition:
    color 0.2s ease,
    opacity 0.2s ease,
    transform 0.2s ease;
}
.timeline-link i {
  font-size: 13px;
}
.timeline-link:hover {
  color: #9aa2a1;
  transform: translate(1px, -1px);
}
.project-visual-card {
  overflow: hidden;
  padding: 24px;
  margin-top: 28px;
}
.project-ecosystem {
  position: relative;
  min-height: 680px;
  border-radius: 32px;
}
.project-map-copy {
  position: absolute;
  z-index: 4;
}
.project-map-stage {
  position: relative;
  min-height: 620px;
  --cx: 50%;
  --cy: 55%;
  --rx: 380px;
  --ry: 260px;
}
.project-map-img {
  position: absolute;
  left: var(--cx);
  top: var(--cy);
  width: min(560px, 48vw);
  transform: translate(-50%, -50%);
  z-index: 2;
}
.orbit-circle {
  position: absolute;
  left: var(--cx);
  top: var(--cy);
  width: calc(var(--rx) * 2);
  height: calc(var(--ry) * 2);
  transform: translate(calc(-50% - 100px), -50%);
  border: 0 !important;
  border-radius: 50%;
  pointer-events: none;
  z-index: 1;
}
.orbit-circle::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 50%;
  padding: 1.8px;
  background: conic-gradient(
    from -90deg,
    #1f6f8b 0deg,
    #3f8fb0 60deg,
    #63bccf 120deg,
    #8edfd0 180deg,
    #5fc7a8 240deg,
    #4fa786 300deg,
    #1f6f8b 360deg
  );
  -webkit-mask:
    linear-gradient(#000 0 0) content-box,
    linear-gradient(#000 0 0);
  -webkit-mask-composite: xor;
  mask:
    linear-gradient(#000 0 0) content-box,
    linear-gradient(#000 0 0);
  mask-composite: exclude;
  opacity: 0.55;
}
.orbit-item {
  position: absolute;
  left: calc(var(--cx) + (var(--rx) * cos(var(--angle))));
  top: calc(var(--cy) + (var(--ry) * sin(var(--angle))));
  transform: translate(-50%, -50%);
  display: grid;
  grid-template-columns: 72px 1fr;
  gap: 16px;
  align-items: center;
  max-width: 340px;
  z-index: 3;
}
.orbit-icon {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: #fff;
  box-shadow: 0 18px 44px rgba(7, 63, 58, 0.12);
  color: var(--sky);
  font-size: 28px;
}
.item-1 {
  --angle: -90deg;
}
.item-2 {
  --angle: -30deg;
}
.item-3 {
  --angle: 30deg;
}
.item-4 {
  --angle: 90deg;
}
.item-5 {
  --angle: 150deg;
}
.item-6 {
  --angle: 210deg;
}
.orbit-item.item-2 {
  transform: translate(-50%, -50%) translateX(-18px) !important;
}
.orbit-item.item-3 {
  transform: translate(-50%, -50%) translateX(-18px) !important;
}
.orbit-item.item-5 {
  transform: translate(-50%, -50%) translateX(-75%) !important;
}
.orbit-item.item-6 {
  transform: translate(-50%, -50%) translateX(-70%) !important;
}
.project-ecosystem .orbit-item h4 {
  max-width: 230px !important;
  white-space: normal !important;
}
.project-ecosystem .orbit-item.item-2 h4,
.project-ecosystem .orbit-item.item-5 h4,
.project-ecosystem .orbit-item.item-6 h4 {
  max-width: 240px !important;
}
.project-ecosystem .orbit-item.item-5 h4 {
  max-width: 180px !important;
}
.project-ecosystem .orbit-item.item-5,
.project-ecosystem .orbit-item.item-6 {
  grid-template-columns: 1fr 72px !important;
  text-align: right !important;
}
.project-ecosystem .orbit-item.item-5 .orbit-icon,
.project-ecosystem .orbit-item.item-6 .orbit-icon {
  grid-column: 2 !important;
  grid-row: 1 !important;
}
.project-ecosystem .orbit-item.item-5 > div:not(.orbit-icon),
.project-ecosystem .orbit-item.item-6 > div:not(.orbit-icon) {
  grid-column: 1 !important;
  grid-row: 1 !important;
}
.project-visual-card .project-map-stage {
  transform: translateX(10%) !important;
}
.project-ecosystem .project-map-img {
  transform: translate(calc(-73% + 80px), -50%) !important;
}
.project-ecosystem .project-map-img {
  width: min(740px, 62%) !important;
}
.icon-network i {
  color: #1f6f8b;
}
.icon-display i {
  color: #3f8fb0;
}
.icon-search i {
  color: #63bccf;
}
.icon-people i {
  color: #8edfd0;
}
.icon-calendar i {
  color: #5fc7a8;
}
.icon-hands i {
  color: #4fa786;
}
.project-ecosystem .orbit-item.item-1 > div:not(.orbit-icon) {
  transform: translateY(-10px) !important;
}
.project-ecosystem .orbit-item.item-4 > div:not(.orbit-icon) {
  transform: translateY(10px) !important;
}
.project-mobile-features {
  display: none;
}
.project-mobile-feature {
  border-radius: 24px;
  padding: 18px;
  display: grid;
  grid-template-columns: 56px minmax(0, 1fr);
  gap: 14px;
  align-items: start;
}
.project-mobile-feature .orbit-icon {
  width: 56px;
  height: 56px;
  font-size: 22px;
  box-shadow: 0 14px 34px rgba(7, 63, 58, 0.1);
}
.project-mobile-feature h4 {
  margin: 0 0 6px;
  font-size: 17px;
  line-height: 1.25;
  color: var(--text);
}
.project-mobile-feature p {
  margin: 0;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.55;
}

@media (min-width: 795px) and (max-width: 1215px) {
  .project-map-stage {
    width: 100% !important;
    min-height: clamp(500px, 52vw, 620px) !important;
    padding: 24px 24px 42px !important;
    border-radius: 30px !important;
    transform: none !important;
    --cx: 40%;
    --cy: 55%;
    --rx: clamp(340px, 35vw, 430px);
    --ry: clamp(210px, 22vw, 280px);
  }

  .project-ecosystem .project-map-img,
  .project-map-img {
    left: var(--cx) !important;
    top: var(--cy) !important;
    width: clamp(580px, 58vw, 720px) !important;
    transform: translate(-50%, -50%) !important;
  }

  .orbit-circle {
    left: var(--cx) !important;
    top: var(--cy) !important;
    width: calc(var(--rx) * 2) !important;
    height: calc(var(--ry) * 2) !important;
    transform: translate(-50%, -50%) !important;
  }

  .project-map-stage .orbit-item {
    grid-template-columns: 1fr !important;
    max-width: none !important;
    gap: 0 !important;
    transform: translate(-50%, -50%) !important;
  }

  .project-map-stage .orbit-item > div:not(.orbit-icon) {
    display: none !important;
  }

  .project-map-stage .orbit-icon {
    width: clamp(62px, 5.5vw, 78px) !important;
    height: clamp(62px, 5.5vw, 78px) !important;
    font-size: clamp(24px, 2.2vw, 30px) !important;
  }

  .project-mobile-features {
    display: grid !important;
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
    gap: 14px !important;
    margin-top: 22px !important;
  }

  .project-mobile-feature {
    display: grid !important;
    grid-template-columns: 52px minmax(0, 1fr) !important;
    gap: 14px !important;
    align-items: start !important;
    padding: 15px !important;
  }

  .project-mobile-feature .orbit-icon {
    width: 52px !important;
    height: 52px !important;
    font-size: 20px !important;
  }

  .project-mobile-feature h4 {
    font-size: 16px !important;
    line-height: 1.2 !important;
  }

  .project-mobile-feature p {
    font-size: 13px !important;
    line-height: 1.45 !important;
  }

  .project-ecosystem {
    padding-bottom: 40px !important;
  }
}

@media (max-width: 795px) {
  .orbit-circle,
  .orbit-item {
    display: none !important;
  }

  .project-map-stage {
    width: 100% !important;
    min-height: auto !important;
    height: auto !important;
    padding: 24px 0 32px !important;

    display: flex !important;
    justify-content: center !important;
    align-items: center !important;

    position: relative !important;
    overflow: visible !important;
  }

  .project-ecosystem .project-map-img,
  .project-map-img {
    position: static !important;
    display: block !important;

    width: 115% !important;
    height: auto !important;

    margin: 0 0 -8% -17% !important;
    transform: none !important;
  }
  .project-mobile-features {
    display: grid;
    gap: 14px;
  }
}

@media (max-width: 468px) {
  .project-ecosystem .project-map-img,
  .project-map-img {
    margin-top: 10% !important;
  }
}

.project-mobile-feature {
  display: grid !important;
  grid-template-columns: 60px 1fr !important;
  align-items: center !important;
}

.project-mobile-feature > div:last-child {
  display: flex;
  align-items: center;
  height: 100%;
}

.project-mobile-feature h4 {
  margin: 0 !important;
}

/* Responsive hero fixes */
.hero {
  min-height: clamp(560px, 100svh, 900px);
  padding: clamp(120px, 14vw, 180px) 0 clamp(80px, 10vw, 140px);
}

.hero-grid {
  grid-template-columns: minmax(0, 1fr);
  padding: 0;
}

.hero-copy .badge {
  max-width: min(760px, 100%);
  white-space: normal;
}

.hero-actions {
  display: flex;
  gap: clamp(14px, 3vw, 28px);
  flex-wrap: wrap;
}

.hero-actions .btn {
  min-width: clamp(220px, 28vw, 360px);
}
