:root {
  --blue-900: #002c83;
  --blue-800: #063a9f;
  --blue-700: #0f5ac9;
  --red-600: #e11e34;
  --red-700: #c9172b;
  --green-600: #0ca25a;
  --yellow-500: #f5bb00;
  --ink-900: #0e1f3d;
  --ink-700: #334668;
  --slate-50: #ffffff;
  --white: #ffffff;
  --radius-lg: 16px;
  --radius-md: 12px;
  --shadow-lg: 0 24px 46px rgba(7, 33, 96, 0.18);
  --shadow-sm: 0 8px 18px rgba(8, 33, 89, 0.12);
  --hero-banner-image: url("assets/banner.png");
  --font-modern: "Manrope", "Barlow", sans-serif;
}

* {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  padding: 0;
}

body {
  font-family: "Barlow", sans-serif;
  color: var(--ink-900);
  background: var(--slate-50);
  line-height: 1.35;
}

img {
  max-width: 100%;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
}

.container {
  width: min(1260px, 92vw);
  margin: 0 auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: linear-gradient(90deg, rgba(1, 22, 76, 0.95), rgba(0, 42, 128, 0.95));
  backdrop-filter: blur(6px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.nav-wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  min-height: 86px;
}

.brand {
  display: flex;
  align-items: center;
  color: var(--white);
  flex-shrink: 0;
}

.brand-logo {
  width: clamp(190px, 24vw, 290px);
  height: clamp(54px, 7vw, 70px);
  object-fit: contain;
  object-position: left center;
  display: block;
}

.main-nav {
  display: flex;
  align-items: center;
  gap: 26px;
  color: #e7edff;
  font-size: 15px;
  font-weight: 600;
}

.main-nav a {
  opacity: 0.9;
  padding-bottom: 8px;
  border-bottom: 2px solid transparent;
  transition: 0.25s ease;
}

.main-nav a:hover,
.main-nav a.is-active {
  opacity: 1;
  color: #fff8cf;
  border-color: #ffcb1f;
}

.btn {
  border: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  border-radius: 10px;
  font-family: "Saira", sans-serif;
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 0.3px;
  font-weight: 700;
  cursor: pointer;
  padding: 12px 18px;
  transition: transform 0.18s ease, box-shadow 0.18s ease, background-color 0.18s ease;
}

.btn:hover {
  transform: translateY(-2px);
}

.btn-danger {
  color: #fff;
  background: linear-gradient(140deg, #f62844, #cd0822);
  box-shadow: 0 10px 20px rgba(218, 26, 53, 0.35);
}

.btn-outline {
  color: #e9f2ff;
  border: 1px solid rgba(233, 242, 255, 0.45);
  background: rgba(0, 18, 67, 0.33);
}

.btn-success {
  color: #fff;
  background: linear-gradient(140deg, #28b96f, #12894f);
  box-shadow: 0 10px 20px rgba(17, 120, 67, 0.33);
}

.btn-yellow {
  color: #1c2b52;
  background: linear-gradient(145deg, #ffd537, #f4bc00);
}

.btn-outline-light {
  color: #0940a8;
  border: 1px solid #3567c7;
  background: #fff;
}

.nav-cta {
  border-radius: 10px;
}

.menu-toggle {
  display: none;
  border: 0;
  background: transparent;
  color: #fff;
  font-size: 22px;
}

.hero {
  position: relative;
  background:
    linear-gradient(103deg, rgba(0, 27, 88, 0.93) 0%, rgb(0 35 106 / 42%) 43%, rgb(1 38 113 / 0%) 72%, rgb(0 38 111 / 73%) 100%),
    var(--hero-banner-image) center right / cover no-repeat;
  padding: 120px 0 120px;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
}

.hero-grid {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  align-items: center;
  gap: 28px;
}

.hero-content h1 {
  margin: 0;
  color: #fff;
  font-family: "Saira", sans-serif;
  font-size: clamp(42px, 5vw, 78px);
  line-height: 0.9;
  letter-spacing: -0.8px;
}

.hero-content h1 span {
  color: #ffd225;
  font-family: "Yellowtail", cursive;
  font-size: 1.16em;
  letter-spacing: 0;
  font-weight: 400;
}

.hero-content p {
  max-width: 620px;
  color: #ffffff;
  font-size: clamp(18px, 2.2vw, 24px);
  margin: 20px 0 40px;
}

.hero-actions {
  display: grid;
  grid-template-columns: repeat(3, max-content);
  gap: 12px;
  align-items: center;
}

.hero-actions .btn {
  min-height: 48px;
}

.hero-visual {
  display: flex;
  justify-content: flex-end;
}

.hero-pillars {
  width: min(360px, 100%);
  border-radius: 14px;
  border: 1px solid rgba(122, 162, 255, 0.4);
  background: rgba(4, 42, 123, 0.82);
  backdrop-filter: blur(6px);
  padding: 16px;
  display: grid;
  gap: 10px;
}

.hero-pillars article {
  display: grid;
  grid-template-columns: 42px 1fr;
  align-items: start;
  gap: 12px;
  color: #ebf1ff;
}

.hero-pillars i {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: rgba(87, 150, 255, 0.31);
}

.hero-pillars h3 {
  margin: 0;
  font-family: "Saira", sans-serif;
  font-size: 20px;
}

.hero-pillars p {
  margin: 2px 0 0;
  font-size: 14px;
  color: #d9e7ff;
}

.numbers {
  margin-top: 38px;
  position: relative;
  z-index: 4;
}

.highlights {
  margin-top: -26px;
  position: relative;
  z-index: 5;
}

.highlights-wrap {
  background: #f4f6fa;
  border-radius: 18px;
  border: 1px solid #e3eaf5;
  box-shadow: var(--shadow-sm);
  padding: 16px;
}

.highlights-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 12px;
}

.highlights-header h3 {
  margin: 0;
  font-family: "Saira", sans-serif;
  font-size: 22px;
  text-transform: uppercase;
  color: #10254e;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.highlights-header h3 i {
  color: #ffba08;
  font-size: 16px;
}

.highlights-arrow {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: 1px solid #d1dcee;
  background: #fff;
  color: #7f91b1;
  cursor: pointer;
}

.highlights-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
}

.highlight-card {
  background: #fff;
  border-radius: 12px;
  border: 1px solid #e7edf7;
  overflow: hidden;
  display: grid;
  grid-template-columns: 150px 1fr;
  transition: transform 0.22s ease, box-shadow 0.22s ease, border-color 0.22s ease;
}

.highlight-card:hover {
  transform: translateY(-4px);
  border-color: #c7d8f6;
  box-shadow: 0 14px 24px rgba(10, 42, 104, 0.14);
}

.highlight-card:focus-visible {
  outline: 3px solid rgba(21, 75, 168, 0.28);
  outline-offset: 2px;
}

.highlight-card img {
  width: 150px;
  height: 100%;
  min-height: 122px;
  object-fit: cover;
  transition: transform 0.28s ease;
}

.highlight-card:hover img {
  transform: scale(1.04);
}

.highlight-card > div {
  padding: 10px 10px 8px;
}

.highlight-card h4 {
  margin: 7px 0 8px;
  font-size: 21px;
  line-height: 1.05;
}

.highlight-cta {
  color: #1750bc;
  font-size: 16px;
  font-weight: 700;
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.highlight-card:hover .highlight-cta i {
  transform: translateX(2px);
  transition: transform 0.18s ease;
}

.cards-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
}

.number-card {
  background: #fff;
  border-radius: 11px;
  padding: 18px;
  display: flex;
  gap: 12px;
  box-shadow: var(--shadow-sm);
  border-bottom: 4px solid transparent;
}

.number-card i {
  font-size: 34px;
  margin-top: 2px;
}

.number-card strong {
  display: block;
  font-family: "Saira", sans-serif;
  font-size: 40px;
  line-height: 0.95;
}

.number-card span {
  color: #57698b;
  font-size: 17px;
}

.b-red {
  border-color: #e51c35;
}

.b-red i {
  color: #e51c35;
}

.b-blue {
  border-color: #185ac8;
}

.b-blue i {
  color: #185ac8;
}

.b-yellow {
  border-color: #efb007;
}

.b-yellow i {
  color: #efb007;
}

.b-green {
  border-color: #0da05a;
}

.b-green i {
  color: #0da05a;
}

.about {
  display: grid;
  grid-template-columns: 1fr 1.15fr;
  gap: 34px;
  align-items: center;
  margin-top: 68px;
}

.eyebrow {
  display: inline-block;
  color: #d91532;
  text-transform: uppercase;
  letter-spacing: 1px;
  font-size: 14px;
  font-weight: 800;
}

.about h2 {
  margin: 12px 0;
  font-family: "Saira", sans-serif;
  line-height: 1;
  font-size: clamp(30px, 3.5vw, 54px);
}

.about em {
  color: #1a4db0;
  font-style: italic;
}

.about p {
  color: var(--ink-700);
  font-size: 19px;
  max-width: 585px;
  margin-bottom: 24px;
}

.about-media {
  position: relative;
  min-height: 430px;
}

.about-media img {
  border-radius: 14px;
  width: 100%;
  height: 430px;
  object-fit: cover;
  box-shadow: var(--shadow-lg);
  position: relative;
  z-index: 3;
}

.flag-shape {
  position: absolute;
  z-index: 1;
  border-radius: 10px;
}

.flag-shape.blue {
  width: 110px;
  height: 170px;
  background: #154db8;
  left: -30px;
  top: 36px;
}

.flag-shape.red {

  height: 160px;
  background: #ea2235;
  right: -20px;
  top: 82px;
}

.flag-shape.yellow {
  width: 100px;
  height: 160px;
  background: #f2c004;
  right: 52px;
  top: 110px;
}

.projects {
  margin-top: 62px;
  background: #fff;
  border-radius: 14px;
  padding: 42px;
  box-shadow: var(--shadow-sm);
}

.project-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 12px;
  margin-top: 12px;
}

.project-grid article {
  border: 1px solid #e7ecf5;
  border-radius: 10px;
  padding: 18px 12px;
  text-align: center;
}

.project-grid i {
  font-size: 30px;
  color: #124dac;
}

.project-grid h3 {
  margin: 8px 0 4px;
  font-size: 19px;
  font-family: "Saira", sans-serif;
}

.project-grid p {
  margin: 0;
  color: #5a6f95;
  font-size: 15px;
}

.center-btn {
  margin: 18px auto 0;
  display: table;
}

.news-showcase {
  padding: 68px 0 40px;
}

.news-showcase-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 20px;
  margin-bottom: 16px;
}

.news-showcase-header h2 {
  margin: 6px 0 0;
  font-family: var(--font-modern);
  font-size: clamp(34px, 4vw, 52px);
  letter-spacing: -1px;
  line-height: 0.95;
  color: #122a5a;
}

.news-showcase-link {
  color: #154ba8;
  font-weight: 800;
  font-family: var(--font-modern);
  letter-spacing: 0.2px;
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.news-showcase-grid {
  display: grid;
  grid-template-columns: 1.18fr 0.82fr;
  gap: 14px;
  align-items: stretch;
}

.card-link {
  color: inherit;
  text-decoration: none;
}

.news-feature-card {
  position: relative;
  border-radius: 14px;
  overflow: hidden;
  min-height: 490px;
  box-shadow: var(--shadow-lg);
  transition: transform 0.24s ease, box-shadow 0.24s ease;
}

.news-feature-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(3, 12, 29, 0.92) 22%, rgba(3, 12, 29, 0.2) 58%, rgba(3, 12, 29, 0));
}

.news-feature-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.32s ease;
}

.news-feature-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 28px 52px rgba(7, 33, 96, 0.24);
}

.news-feature-card:hover img {
  transform: scale(1.03);
}

.feature-content {
  position: absolute;
  left: 20px;
  right: 20px;
  bottom: 18px;
  z-index: 2;
}

.feature-content h3 {
  margin: 8px 0;
  color: #ffffff;
  font-family: var(--font-modern);
  font-size: clamp(28px, 3vw, 42px);
  line-height: 0.96;
  letter-spacing: -0.8px;
}

.feature-content p {
  margin: 0;
  max-width: 92%;
  font-size: clamp(15px, 1.4vw, 22px);
  color: #dbe7ff;
}

.feature-content time {
  margin-top: 10px;
  display: inline-block;
  color: #f2f5ff;
  font-size: 20px;
  font-family: var(--font-modern);
  font-weight: 600;
}

.news-stack {
  display: grid;
  gap: 10px;
}

.news-compact-item {
  display: grid;
  grid-template-columns: 180px 1fr;
  gap: 12px;
  align-items: center;
  border-radius: 12px;
  border: 1px solid #dce5f5;
  background: #ffffff;
  padding: 8px;
  min-height: 156px;
  transition: transform 0.24s ease, box-shadow 0.24s ease, border-color 0.24s ease;
}

.news-compact-item img {
  width: 100%;
  height: 138px;
  border-radius: 8px;
  object-fit: cover;
  transition: transform 0.28s ease;
}

.news-compact-item:hover {
  transform: translateY(-3px);
  box-shadow: 0 14px 28px rgba(10, 42, 104, 0.14);
  border-color: #bfd2f3;
}

.news-compact-item:hover img {
  transform: scale(1.03);
}

.news-meta {
  display: block;
  color: #2f426a;
  font-family: var(--font-modern);
  font-weight: 600;
  font-size: 14px;
  margin-bottom: 6px;
}

.news-compact-item h4 {
  margin: 0;
  color: #111f3e;
  font-family: var(--font-modern);
  font-size: clamp(18px, 1.2vw, 24px);
  line-height: 1.08;
  letter-spacing: -0.6px;
}

.news-compact-item time {
  display: inline-block;
  margin-top: 10px;
  color: #233d73;
  font-size: 15px;
  font-family: var(--font-modern);
}

.news-agenda-wrap {
  position: relative;
  padding: 62px 0 50px;
}

.news-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
  width: min(1260px, 92vw);
  margin: 0 auto;
}

.panel {
  background: #fff;
  border-radius: 12px;
  box-shadow: var(--shadow-sm);
  padding: 16px;
}

.panel > header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 14px;
}

.panel > header h3 {
  margin: 0;
  font-family: "Saira", sans-serif;
  font-size: 24px;
}

.panel > header a {
  font-size: 13px;
  color: #1750bc;
  font-weight: 700;
}

.news-item {
  display: grid;
  grid-template-columns: 102px 1fr;
  gap: 12px;
  margin-bottom: 12px;
}

.news-item img {
  border-radius: 7px;
  width: 102px;
  height: 82px;
  object-fit: cover;
}

.tag {
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  border-radius: 999px;
  display: inline-block;
  padding: 2px 10px;
}

.tag.blue {
  background: #dde9ff;
  color: #154ba8;
}

.tag.red {
  background: #ffe1e5;
  color: #af1f30;
}

.tag.green {
  background: #dcf8e9;
  color: #137a48;
}

.tag.yellow {
  background: #ffecb7;
  color: #8f6802;
}

.news-item h4 {
  margin: 6px 0 4px;
  font-size: 16px;
  line-height: 1.15;
}

.news-item a {
  color: #1750bc;
  font-weight: 700;
  font-size: 14px;
}

.agenda-list {
  display: grid;
  gap: 10px;
}

.agenda-item {
  background: #f7faff;
  border: 1px solid #e6eefb;
  border-radius: 10px;
  padding: 10px;
  display: grid;
  grid-template-columns: 68px 1fr;
  gap: 10px;
  align-items: center;
}

.date {
  background: #1450b0;
  color: #fff;
  border-radius: 8px;
  text-align: center;
  padding: 8px 0;
}

.date strong {
  font-family: "Saira", sans-serif;
  display: block;
  font-size: 28px;
  line-height: 0.85;
}

.date span {
  font-size: 12px;
  letter-spacing: 0.6px;
}

.agenda-item h4 {
  margin: 0;
  font-size: 16px;
}

.agenda-item p {
  margin: 3px 0 0;
  color: #516180;
  font-size: 14px;
}

.participate-panel p {
  margin: 0 0 14px;
  color: #495e83;
}

.participate-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
}

.participate-grid button {
  border: 1px solid #e5ecf8;
  background: #fff;
  border-radius: 10px;
  font: inherit;
  color: #193b78;
  padding: 10px 8px;
  min-height: 88px;
  cursor: pointer;
  display: grid;
  place-items: center;
  gap: 4px;
}

.participate-grid i {
  font-size: 20px;
}

.participate-grid span {
  font-size: 13px;
  font-weight: 600;
  text-align: center;
}

.full-btn {
  width: 100%;
  margin-top: 12px;
}

.trajectory {
  background: linear-gradient(135deg, #f8fbff 0%, #eef4fd 100%);
  padding: 66px 0;
  margin: 52px 0;
}

.trajectory-wrap {
  text-align: center;
}

.trajectory-wrap > h2 {
  margin: 0 0 32px;
  font-family: "Saira", sans-serif;
  font-size: clamp(32px, 4vw, 52px);
  color: var(--ink-900);
  line-height: 1.1;
}

.trajectory-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 16px;
}

.trajectory-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0;
  position: relative;
}

.trajectory-icon {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  font-size: 24px;
  color: #fff;
  font-weight: 700;
  position: absolute;
  top: 12px;
  left: 12px;
  z-index: 10;
}

.blue-icon {
  background: linear-gradient(135deg, #0064d8, #0052b3);
}

.green-icon {
  background: linear-gradient(135deg, #2ab96f, #1d8f54);
}

.yellow-icon {
  background: linear-gradient(135deg, #ffb81a, #e5a500);
}

.purple-icon {
  background: linear-gradient(135deg, #7c3aed, #6d28d9);
}

.red-icon {
  background: linear-gradient(135deg, #f62844, #cd0822);
}

.trajectory-card img {
  width: 100%;
  height: 200px;
  border-radius: 12px;
  object-fit: cover;
  box-shadow: 0 4px 12px rgba(1, 33, 102, 0.12);
  display: block;
}

.trajectory-card h3 {
  margin: 0;
  background: #fff;
  padding: 14px 16px;
  border: 1px solid #e0eafb;
  border-top: none;
  border-radius: 0 0 12px 12px;
  width: 100%;
  box-sizing: border-box;
  font-family: "Saira", sans-serif;
  font-size: 18px;
  color: var(--ink-900);
  line-height: 1.2;
  font-weight: 700;
}

.contact-band {
  margin-top: 36px;
  background: linear-gradient(100deg, #003188, #08398f 67%, #00286f);
  color: #fff;
  position: relative;
  overflow: hidden;
}

.contact-band::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 78% 10%, rgba(255, 255, 255, 0.13), transparent 36%);
}

.contact-wrap {
  position: relative;
  z-index: 2;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  padding: 44px 0;
}

.contact-wrap h3 {
  margin: 0;
  font-family: "Saira", sans-serif;
  font-size: 38px;
}

.contact-wrap p {
  margin: 6px 0 0;
  color: #d7e7ff;
  font-size: 17px;
}

.site-footer {
  background: linear-gradient(175deg, #052766, #002157);
  color: #d7e7ff;
  padding: 48px 0 0;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.9fr 0.9fr 1fr;
  gap: 20px;
}

.footer-grid h4 {
  margin: 0 0 10px;
  color: #fff;
  font-family: "Saira", sans-serif;
  font-size: 19px;
}

.footer-grid a {
  display: block;
  margin-bottom: 7px;
  color: #dbe8ff;
}

.footer-brand {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.brand-logo-footer {
  width: clamp(150px, 18vw, 220px);
  height: clamp(44px, 5.5vw, 70px);
}

.footer-brand p {
  margin: 0;
  max-width: 280px;
}

.socials {
  display: flex;
  gap: 8px;
  margin-bottom: 12px;
}

.socials a {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.16);
  display: grid;
  place-items: center;
  margin-bottom: 0;
}

address {
  font-style: normal;
}

.copyright {
  margin-top: 22px;
  padding: 14px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.14);
  display: flex;
  justify-content: space-between;
  gap: 12px;
  color: #cadbff;
  font-size: 14px;
}

.reveal-up {
  opacity: 0;
  transform: translateY(14px);
  transition: opacity 0.5s ease, transform 0.5s ease;
}

.reveal-up.in-view {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 1350px) {
  .news-grid {
    width: min(1260px, 92vw);
    margin: 0 auto;
  }
}

@media (max-width: 1110px) {
  .main-nav {
    position: absolute;
    top: 86px;
    left: 0;
    right: 0;
    background: #022b81;
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
    flex-direction: column;
    gap: 0;
    overflow: hidden;
    max-height: 0;
    transition: max-height 0.3s ease;
    z-index: 150;
  }

  .main-nav.is-open {
    max-height: 360px;
  }

  .main-nav a {
    width: 100%;
    text-align: center;
    padding: 13px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.12);
  }

  .nav-cta {
    display: none;
  }

  .menu-toggle {
    display: inline-flex;
  }

  .hero-grid {
    grid-template-columns: 1fr;
  }

  .hero-visual {
    justify-content: flex-start;
  }

  .hero-pillars {
    width: 100%;
    margin-top: 10px;
  }

  .cards-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .about {
    grid-template-columns: 1fr;
  }

  .project-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .news-grid {
    grid-template-columns: 1fr;
  }

  .news-showcase-grid {
    grid-template-columns: 1fr;
  }

  .news-feature-card {
    min-height: 420px;
  }

  .news-compact-item h4 {
    font-size: clamp(17px, 2vw, 21px);
  }

  .news-compact-item time {
    font-size: 14px;
  }

  .footer-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 730px) {
  .brand-logo {
    width: 182px;
    height: 56px;
  }

  .hero {
    padding-top: 28px;
    background: linear-gradient(103deg, rgba(0, 27, 88, 0.93) 0%, rgb(0 35 106 / 42%) 43%, rgb(1 38 113 / 0%) 72%, rgb(0 38 111 / 73%) 100%), var(--hero-banner-image) center left / cover no-repeat;
  }

  .hero-content h1 {
    font-size: clamp(38px, 11vw, 58px);
  }

  .hero-content p {
    font-size: 17px;
  }

  .hero-actions {
    grid-template-columns: 1fr;
  }

  .hero-actions .btn {
    width: 100%;
  }

  .trajectory-grid {
    display: flex;
    overflow-x: auto;
    scroll-behavior: smooth;
    gap: 16px;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    grid-template-columns: unset;
  }

  .trajectory-grid::-webkit-scrollbar {
    display: none;
  }

  .trajectory-card {
    min-width: 280px;
    flex-shrink: 0;
  }

  .trajectory-card h3 {
    font-size: 16px;
  }

  .highlights {
    margin-top: -14px;
  }

  .highlights-grid {
    grid-template-columns: 1fr;
  }

  .news-showcase {
    padding-top: 36px;
  }

  .news-showcase-header {
    align-items: flex-start;
    flex-direction: column;
    gap: 8px;
  }

  .news-showcase-header h2 {
    font-size: clamp(30px, 10vw, 48px);
  }

  .news-feature-card {
    min-height: 360px;
  }

  .feature-content {
    left: 14px;
    right: 14px;
    bottom: 14px;
  }

  .feature-content h3 {
    font-size: clamp(24px, 8vw, 40px);
  }

  .feature-content p {
    max-width: 100%;
    font-size: 15px;
  }

  .feature-content time {
    font-size: 16px;
  }

  .news-compact-item {
    grid-template-columns: 1fr;
    min-height: auto;
  }

  .news-compact-item img {
    height: 156px;
  }

  .news-compact-item h4 {
    font-size: clamp(17px, 5.4vw, 22px);
  }

  .news-compact-item time {
    font-size: 16px;
  }

  .highlight-card {
    grid-template-columns: 132px 1fr;
  }

  .highlight-card img {
    width: 132px;
  }

  .cards-grid {
    grid-template-columns: 1fr;
  }

  .number-card strong {
    font-size: 36px;
  }

  .projects {
    padding: 14px;
  }

  .project-grid {
    display: flex;
    overflow-x: auto;
    scroll-behavior: smooth;
    gap: 16px;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    grid-template-columns: unset;
  }

  .project-grid::-webkit-scrollbar {
    display: none;
  }

  .project-grid article {
    min-width: 280px;
    flex-shrink: 0;
  }

  .participate-grid {
    grid-template-columns: 1fr 1fr;
  }

  .contact-wrap {
    flex-direction: column;
    align-items: flex-start;
  }

  .contact-wrap h3 {
    font-size: 30px;
  }

  .footer-grid {
    grid-template-columns: 1fr;
  }

  .copyright {
    flex-direction: column;
  }
}
