:root {
  --brand-blue: #2862a6;
  --brand-blue-deep: #174d8d;
  --brand-blue-soft: #eaf2fb;
  --brand-sky: #4e8fd1;
  --ink: #252a31;
  --muted: #68717d;
  --line: #dbe2ea;
  --paper: #ffffff;
  --wash: #f4f6f8;
  --shadow: 0 20px 55px rgba(17, 54, 96, 0.14);
  --header-height: 82px;
  --max-width: 1160px;
}

@font-face {
  font-family: "demo-icons";
  src: url("assets/bf724adb78a39419.woff2") format("woff2");
  font-display: block;
  font-style: normal;
  font-weight: normal;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: "Public Sans", "Noto Sans TC", "PingFang TC", "Microsoft JhengHei", Arial, sans-serif;
  font-size: 15px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}

body.menu-open {
  overflow: hidden;
}

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

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

.visually-hidden,
.skip-label {
  position: absolute !important;
  width: 1px !important;
  height: 1px !important;
  padding: 0 !important;
  margin: -1px !important;
  overflow: hidden !important;
  clip: rect(0 0 0 0) !important;
  white-space: nowrap !important;
  border: 0 !important;
}

button,
input,
textarea,
select {
  font: inherit;
}

button,
a {
  -webkit-tap-highlight-color: transparent;
}

.skip-link {
  position: fixed;
  top: 8px;
  left: 8px;
  z-index: 9999;
  padding: 10px 14px;
  color: #fff;
  background: #101820;
  transform: translateY(-150%);
  transition: transform 0.2s ease;
}

.skip-link:focus {
  transform: translateY(0);
}

.container {
  width: min(calc(100% - 48px), var(--max-width));
  margin-inline: auto;
}

.utility-bar {
  height: 40px;
  color: #52575d;
  background: #fff;
}

.utility-inner {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  height: 100%;
  gap: 0;
}

.utility-link,
.language-link {
  position: relative;
  display: inline-flex;
  align-items: center;
  min-height: 30px;
  padding: 0 15px;
  font-weight: 600;
  white-space: nowrap;
}

.utility-link + .utility-link::before {
  content: "";
  position: absolute;
  left: 0;
  width: 1px;
  height: 14px;
  background: #aeb4ba;
}

.utility-link:hover,
.language-link:hover {
  color: var(--brand-blue);
}

.utility-external::after,
.external-mark {
  margin-left: 5px;
  font-size: 0.72em;
  opacity: 0.72;
}

.external-mark {
  display: none;
}

.utility-external::after {
  content: none;
}

.language-link {
  margin-left: 10px;
  color: #5f6770;
  font-weight: 500;
}

.language-link::before {
  content: "\e800";
  margin-right: 7px;
  color: var(--brand-blue);
  font-family: "demo-icons";
  font-size: 18px;
  font-style: normal;
  line-height: 1;
}

.language-link::after {
  content: none;
}

.utility-search {
  position: relative;
  display: flex;
  align-items: center;
  height: 100%;
  margin-left: 4px;
  border-left: 1px solid #aeb4ba;
}

.search-toggle {
  display: grid;
  width: 48px;
  height: 40px;
  padding: 0;
  place-items: center;
  color: var(--brand-blue-deep);
  background: none;
  border: 0;
  cursor: pointer;
}

.search-icon {
  display: inline-grid;
  width: 22px;
  height: 22px;
  place-items: center;
}

.search-icon::before {
  content: "\e804";
  font-family: "demo-icons";
  font-size: 20px;
  font-style: normal;
  line-height: 1;
}

.desktop-search-panel {
  position: absolute;
  top: 40px;
  right: 0;
  z-index: 110;
  display: none;
  width: min(420px, calc(100vw - 28px));
  padding: 16px;
  background: #fff;
  border-top: 3px solid var(--brand-blue);
  box-shadow: var(--shadow);
}

.utility-search.is-open .desktop-search-panel {
  display: block;
}

.site-search-form {
  display: flex;
  align-items: center;
  gap: 8px;
}

.site-search-form input {
  min-width: 0;
  flex: 1;
  height: 44px;
  padding: 0 13px;
  color: var(--ink);
  background: #fff;
  border: 1px solid #c7d0da;
  border-radius: 0;
  outline: none;
}

.site-search-form input:focus {
  border-color: var(--brand-blue);
  box-shadow: 0 0 0 3px rgba(40, 98, 166, 0.14);
}

.site-search-form button {
  height: 44px;
  padding: 0 18px;
  color: #fff;
  background: var(--brand-blue);
  border: 0;
  cursor: pointer;
}

.search-results {
  display: none;
  max-height: 270px;
  margin: 10px 0 0;
  padding: 4px 0;
  overflow-y: auto;
  list-style: none;
  background: #fff;
  border: 1px solid var(--line);
}

.search-results.has-results {
  display: block;
}

.search-results a,
.search-results .no-result {
  display: block;
  padding: 9px 12px;
}

.search-results a:hover,
.search-results a:focus-visible {
  color: var(--brand-blue);
  background: var(--brand-blue-soft);
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  height: var(--header-height);
  color: #fff;
  background: var(--brand-blue);
  box-shadow: 0 2px 8px rgba(5, 31, 64, 0.1);
}

.header-inner {
  display: flex;
  align-items: stretch;
  justify-content: space-between;
  height: 100%;
}

.brand {
  display: flex;
  align-items: center;
  width: 220px;
  padding-right: 26px;
  flex: 0 0 auto;
}

.brand img {
  width: 202px;
  height: auto;
}

.demo-wordmark {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: #fff;
  line-height: 1;
  white-space: nowrap;
}

.demo-monogram {
  padding-right: 10px;
  border-right: 1px solid rgba(255, 255, 255, 0.48);
  font-size: 24px;
  font-weight: 900;
  letter-spacing: -0.08em;
}

.demo-lockup {
  display: grid;
  gap: 4px;
}

.demo-lockup strong {
  font-size: 19px;
  font-weight: 800;
  letter-spacing: 0.06em;
}

.demo-lockup small {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.04em;
  opacity: 0.86;
}

.main-nav {
  height: 100%;
  flex: 1;
}

.nav-list {
  display: grid;
  grid-template-columns: repeat(5, minmax(112px, 1fr));
  height: 100%;
  margin: 0;
  padding: 0;
  list-style: none;
}

.nav-item {
  position: static;
  display: flex;
  align-items: center;
}

.nav-button {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 50%;
  padding: 0 18px;
  color: #fff;
  background: none;
  border: 0;
  border-left: 1px solid rgba(255, 255, 255, 0.28);
  font-size: 17px;
  font-weight: 700;
  cursor: pointer;
}

.nav-item:first-child .nav-button {
  border-left: 0;
}

.nav-button::after {
  content: "";
  position: absolute;
  right: 50%;
  bottom: -21px;
  left: 50%;
  height: 3px;
  background: #fff;
  transition: left 0.2s ease, right 0.2s ease;
}

.nav-item:hover .nav-button::after,
.nav-item:focus-within .nav-button::after,
.nav-item.is-open .nav-button::after,
.nav-button[aria-current="page"]::after {
  right: 22%;
  left: 22%;
}

.mega-menu {
  position: absolute;
  top: 100%;
  right: 0;
  left: 0;
  z-index: 99;
  visibility: hidden;
  color: var(--ink);
  background: #fff;
  border-top: 1px solid rgba(0, 0, 0, 0.07);
  box-shadow: 0 18px 35px rgba(8, 37, 72, 0.16);
  opacity: 0;
  transform: translateY(-7px);
  transition: opacity 0.18s ease, visibility 0.18s ease, transform 0.18s ease;
}

.nav-item:hover .mega-menu,
.nav-item:focus-within .mega-menu,
.nav-item.is-open .mega-menu {
  visibility: visible;
  opacity: 1;
  transform: translateY(0);
}

.mega-inner {
  display: grid;
  grid-template-columns: 0.8fr 2.2fr;
  gap: 42px;
  padding-block: 34px 38px;
}

.mega-summary {
  padding-right: 32px;
  border-right: 1px solid var(--line);
}

.mega-kicker {
  margin: 0 0 7px;
  color: var(--brand-blue);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.mega-summary h2 {
  margin: 0 0 12px;
  font-size: 27px;
  line-height: 1.25;
}

.mega-summary p {
  margin: 0;
  color: var(--muted);
}

.mega-links {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px 24px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.mega-links a {
  position: relative;
  display: flex;
  align-items: center;
  min-height: 45px;
  padding: 8px 27px 8px 0;
  border-bottom: 1px solid #e6ebf0;
  font-weight: 600;
}

.mega-links a::after {
  content: "→";
  position: absolute;
  right: 3px;
  color: var(--brand-sky);
  font-size: 19px;
  line-height: 1;
}

.mega-links a:hover,
.mega-links a:focus-visible {
  color: var(--brand-blue);
}

.mobile-menu-button,
.mobile-menu {
  display: none;
}

.hero {
  position: relative;
  height: calc(100vh - 120px);
  min-height: 590px;
  max-height: 840px;
  overflow: hidden;
  color: #fff;
  background: #071427;
}

.demo-disclaimer {
  color: #405164;
  background: #eef5fc;
  border-bottom: 1px solid #d3e2f2;
}

.demo-disclaimer .container {
  display: flex;
  min-height: 54px;
  align-items: center;
  gap: 18px;
}

.demo-disclaimer strong {
  color: var(--brand-blue);
  font-size: 12px;
  letter-spacing: 0.16em;
}

.demo-disclaimer span {
  flex: 1;
}

.demo-disclaimer a {
  color: var(--brand-blue);
  font-weight: 750;
}

.hero-slide {
  position: absolute;
  inset: 0;
  visibility: hidden;
  opacity: 0;
  transition: opacity 0.8s ease, visibility 0.8s ease;
}

.hero-slide.is-active {
  visibility: visible;
  opacity: 1;
}

.hero-picture,
.hero-picture img {
  width: 100%;
  height: 100%;
}

.hero-picture img {
  object-fit: cover;
}

.hero-slide::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(3, 14, 28, 0.54) 0%, rgba(3, 14, 28, 0.12) 58%, rgba(3, 14, 28, 0.2) 100%);
}

.hero-content {
  position: absolute;
  z-index: 2;
  top: 50%;
  left: max(5vw, calc((100% - var(--max-width)) / 2));
  width: min(660px, 68vw);
  transform: translateY(-43%);
}

.hero-content h1,
.hero-content h2 {
  margin: 0 0 40px;
  color: #fff;
  font-size: clamp(36px, 4vw, 54px);
  font-weight: 800;
  line-height: 1.22;
  letter-spacing: 0.01em;
}

.hero-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 218px;
  min-height: 63px;
  padding: 12px 30px;
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.92);
  font-size: 18px;
  font-weight: 600;
  transition: color 0.2s ease, background 0.2s ease;
}

.hero-cta:hover,
.hero-cta:focus-visible {
  color: var(--brand-blue);
  background: #fff;
}

.carousel-arrow {
  position: absolute;
  z-index: 4;
  top: 50%;
  display: grid;
  width: 58px;
  height: 70px;
  padding: 0;
  place-items: center;
  color: #fff;
  background: rgba(0, 0, 0, 0.06);
  border: 0;
  cursor: pointer;
  transform: translateY(-50%);
}

.carousel-arrow span {
  font-size: 42px;
  font-weight: 200;
  line-height: 1;
}

.carousel-arrow:hover,
.carousel-arrow:focus-visible {
  background: rgba(0, 0, 0, 0.28);
}

.carousel-prev {
  left: 0;
}

.carousel-next {
  right: 0;
}

.carousel-dots {
  position: absolute;
  z-index: 5;
  right: 0;
  bottom: 36px;
  left: 0;
  display: flex;
  justify-content: center;
  gap: 10px;
}

.carousel-dot {
  width: 50px;
  height: 16px;
  padding: 0;
  background: none;
  border: 0;
  cursor: pointer;
}

.carousel-dot::before {
  content: "";
  display: block;
  height: 3px;
  background: rgba(255, 255, 255, 0.5);
}

.carousel-dot.is-active::before {
  background: #fff;
}

.section {
  padding-block: 92px;
}

.section-wash {
  background: var(--wash);
}

.section-blue {
  color: #fff;
  background: var(--brand-blue);
}

.section-head {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 42px;
}

.section-title {
  margin: 0;
  color: #646b73;
  font-size: clamp(31px, 3.4vw, 45px);
  font-weight: 750;
  line-height: 1.2;
}

.section-blue .section-title {
  color: #fff;
}

.section-kicker {
  margin: 0 0 8px;
  color: var(--brand-blue);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}

.section-blue .section-kicker {
  color: #bcd7f3;
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 15px;
  color: var(--brand-blue);
  font-weight: 800;
}

.text-link::after {
  content: "→";
  color: var(--brand-sky);
  font-size: 22px;
  line-height: 1;
  transition: transform 0.2s ease;
}

.text-link:hover::after,
.text-link:focus-visible::after {
  transform: translateX(5px);
}

.financial-list {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  margin: 0;
  padding: 0;
  list-style: none;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.financial-item {
  min-height: 170px;
  padding: 30px 28px;
  border-right: 1px solid var(--line);
}

.financial-item:last-child {
  border-right: 0;
}

.financial-date {
  display: block;
  margin-bottom: 14px;
  color: #8b9299;
  font-weight: 700;
}

.financial-item p {
  margin: 0;
  font-size: 17px;
}

.financial-item:hover,
.financial-item:focus-within {
  background: var(--brand-blue-soft);
}

.capability-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 34px;
}

.capability-card {
  display: flex;
  min-width: 0;
  flex-direction: column;
}

.capability-visual {
  position: relative;
  height: 220px;
  overflow: hidden;
}

.capability-visual img:first-child {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.45s ease;
}

.capability-icon {
  position: absolute;
  top: 18px;
  right: 18px;
  width: 46px;
  height: 46px;
  object-fit: contain;
}

.capability-card:hover .capability-visual img:first-child {
  transform: scale(1.04);
}

.capability-card h3 {
  margin: 29px 0 10px;
  color: var(--brand-blue);
  font-size: 27px;
  line-height: 1.2;
}

.capability-card p {
  display: -webkit-box;
  min-height: 54px;
  margin: 0 0 24px;
  overflow: hidden;
  color: #50565d;
  font-size: 16px;
  line-height: 1.55;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
}

.about-home {
  position: relative;
  overflow: hidden;
  color: #fff;
  background: linear-gradient(135deg, #184f8f, #2f75ba);
}

.about-home::before {
  content: "";
  position: absolute;
  inset: 0 0 0 48%;
  background: radial-gradient(circle at 75% 45%, rgba(255, 255, 255, 0.18), transparent 55%);
}

.about-home-grid {
  position: relative;
  display: grid;
  grid-template-columns: 0.92fr 1.08fr;
  align-items: center;
  gap: 68px;
}

.about-home-copy h2 {
  margin: 0 0 25px;
  font-size: clamp(36px, 4vw, 50px);
  line-height: 1.2;
}

.about-home-copy p {
  margin: 0 0 30px;
  color: rgba(255, 255, 255, 0.84);
  font-size: 17px;
}

.about-home-copy .text-link {
  color: #fff;
}

.about-orbit {
  position: relative;
  aspect-ratio: 1;
}

.about-orbit > img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border: 1px solid rgba(255, 255, 255, 0.3);
  border-radius: 50%;
  box-shadow: 0 28px 70px rgba(1, 18, 42, 0.34);
  opacity: 0.95;
}

.about-values {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
  margin-top: 56px;
}

.about-value {
  padding-top: 18px;
  border-top: 1px solid rgba(255, 255, 255, 0.4);
  text-align: center;
}

.about-value-mark {
  display: grid;
  width: 54px;
  height: 54px;
  margin: 0 auto 12px;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.55);
  border-radius: 50%;
  color: #fff;
  font-size: 15px;
  font-weight: 800;
  letter-spacing: 0.08em;
}

.about-value strong {
  font-size: 18px;
}

.metric-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border: 1px solid rgba(255, 255, 255, 0.22);
}

.metric {
  min-height: 170px;
  padding: 29px;
  border-right: 1px solid rgba(255, 255, 255, 0.22);
}

.metric:last-child {
  border-right: 0;
}

.metric strong {
  display: block;
  margin-bottom: 8px;
  font-size: 37px;
  line-height: 1;
}

.metric p {
  margin: 0;
  color: rgba(255, 255, 255, 0.74);
}

.invest-section {
  position: relative;
  min-height: 660px;
  display: flex;
  align-items: center;
  color: #fff;
  background: var(--brand-blue-deep) url("assets/demo-images/data-detail.webp") center / cover no-repeat;
}

.invest-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(27, 89, 153, 0.45);
}

.invest-grid {
  position: relative;
  display: grid;
  grid-template-columns: 1fr 1fr;
  width: 100%;
}

.invest-card {
  position: relative;
  min-height: 390px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 54px;
  overflow: hidden;
  isolation: isolate;
}

.invest-card::before {
  content: "";
  position: absolute;
  z-index: -2;
  inset: 0;
  background-position: center;
  background-size: cover;
  transition: transform 0.5s ease;
}

.invest-card:first-child::before {
  background-image: url("assets/demo-images/team-detail.webp");
}

.invest-card:last-child::before {
  background-image: url("assets/demo-images/green-detail.webp");
}

.invest-card::after {
  content: "";
  position: absolute;
  z-index: -1;
  inset: 0;
  background: linear-gradient(0deg, rgba(4, 27, 56, 0.83), rgba(4, 27, 56, 0.04) 75%);
}

.invest-card:hover::before {
  transform: scale(1.04);
}

.invest-card h3 {
  margin: 0 0 10px;
  font-size: 39px;
  font-weight: 500;
}

.invest-card p {
  max-width: 480px;
  margin: 0;
  color: rgba(255, 255, 255, 0.82);
  font-size: 17px;
}

.news-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr) 160px;
  border-top: 1px solid var(--line);
}

.news-card {
  min-height: 155px;
  padding: 28px 25px;
  border-right: 1px solid var(--line);
}

.news-card time,
.news-card > span {
  display: block;
  margin-bottom: 13px;
  color: #9ba1a8;
  font-weight: 700;
}

.news-card p {
  margin: 0;
  font-size: 16px;
}

.news-card:hover {
  color: var(--brand-blue);
  background: var(--brand-blue-soft);
}

.all-news-link {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  color: var(--brand-blue);
  font-weight: 800;
}

.all-news-link span:first-child {
  display: grid;
  width: 62px;
  height: 62px;
  place-items: center;
  border: 2px solid var(--brand-sky);
  border-radius: 50%;
  font-size: 0;
}

.all-news-link span:first-child::before {
  content: "+";
  color: var(--brand-sky);
  font-size: 31px;
  font-weight: 300;
  line-height: 1;
}

.quick-link-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
}

.quick-link {
  position: relative;
  min-height: 270px;
  display: flex;
  align-items: end;
  padding: 32px;
  overflow: hidden;
  color: #fff;
  isolation: isolate;
}

.quick-link img {
  position: absolute;
  z-index: -2;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.quick-link::after {
  content: "";
  position: absolute;
  z-index: -1;
  inset: 0;
  background: linear-gradient(0deg, rgba(6, 34, 65, 0.86), transparent 68%);
}

.quick-link:hover img {
  transform: scale(1.05);
}

.quick-link span {
  font-size: 26px;
  font-weight: 700;
}

.page-hero {
  position: relative;
  min-height: 360px;
  display: flex;
  align-items: center;
  overflow: hidden;
  color: #fff;
  background: #123c70;
}

.page-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: var(--page-image, url("assets/demo-images/hero-packaging-desktop.webp")) center 42% / cover no-repeat;
  opacity: 0.48;
}

.page-hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(13, 55, 103, 0.96), rgba(21, 85, 148, 0.55), rgba(2, 22, 48, 0.2));
}

.page-hero-inner {
  position: relative;
  z-index: 1;
  padding-block: 66px;
}

.breadcrumb {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 0 0 27px;
  padding: 0;
  list-style: none;
  color: rgba(255, 255, 255, 0.76);
  font-size: 14px;
}

.breadcrumb li + li::before {
  content: "/";
  margin-right: 8px;
  opacity: 0.65;
}

.page-hero-kicker {
  margin: 0 0 7px;
  color: #bfdbf7;
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}

.page-hero h1 {
  max-width: 820px;
  margin: 0 0 15px;
  font-size: clamp(39px, 5vw, 62px);
  line-height: 1.15;
}

.page-hero p:last-child {
  max-width: 760px;
  margin: 0;
  color: rgba(255, 255, 255, 0.84);
  font-size: 18px;
}

.page-layout {
  display: grid;
  grid-template-columns: 245px minmax(0, 1fr);
  gap: 72px;
  align-items: start;
}

.side-nav {
  position: sticky;
  top: calc(var(--header-height) + 30px);
}

.side-nav-title {
  margin: 0;
  padding: 17px 20px;
  color: #fff;
  background: var(--brand-blue);
  font-size: 19px;
  font-weight: 750;
}

.side-nav-list {
  margin: 0;
  padding: 0;
  list-style: none;
  border: 1px solid var(--line);
  border-top: 0;
}

.side-nav-list a {
  position: relative;
  display: block;
  padding: 13px 30px 13px 18px;
  color: #5e6670;
  border-bottom: 1px solid var(--line);
  line-height: 1.4;
}

.side-nav-list li:last-child a {
  border-bottom: 0;
}

.side-nav-list a::after {
  content: "›";
  position: absolute;
  right: 15px;
  top: 50%;
  color: var(--brand-sky);
  font-size: 24px;
  line-height: 1;
  transform: translateY(-50%);
}

.side-nav-list a:hover,
.side-nav-list a:focus-visible,
.side-nav-list a[aria-current="page"] {
  color: var(--brand-blue);
  background: var(--brand-blue-soft);
}

.content-lead {
  margin-bottom: 48px;
}

.content-lead h2 {
  margin: 0 0 20px;
  color: var(--brand-blue);
  font-size: clamp(30px, 3.5vw, 42px);
  line-height: 1.24;
}

.content-lead p {
  margin: 0;
  color: #56606a;
  font-size: 18px;
  line-height: 1.85;
}

.highlight-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
  margin-bottom: 52px;
}

.highlight-card {
  position: relative;
  min-height: 210px;
  padding: 29px 26px;
  background: #fff;
  border: 1px solid var(--line);
  box-shadow: 0 10px 28px rgba(27, 65, 103, 0.06);
}

.highlight-card::before {
  content: "";
  display: block;
  width: 38px;
  height: 3px;
  margin-bottom: 24px;
  background: var(--brand-blue);
}

.highlight-card h3 {
  margin: 0 0 11px;
  color: var(--brand-blue-deep);
  font-size: 20px;
  line-height: 1.35;
}

.highlight-card p {
  margin: 0;
  color: var(--muted);
}

.detail-block {
  padding: 36px 0;
  border-top: 1px solid var(--line);
}

.detail-block h2 {
  margin: 0 0 15px;
  color: var(--ink);
  font-size: 27px;
}

.detail-block p {
  margin: 0;
  color: #5b646d;
  font-size: 16px;
  line-height: 1.85;
}

.detail-block p + p {
  margin-top: 13px;
}

.feature-band {
  display: grid;
  grid-template-columns: 1fr 1fr;
  margin-top: 42px;
  overflow: hidden;
  color: #fff;
  background: var(--brand-blue);
}

.feature-band-visual {
  min-height: 320px;
}

.feature-band-visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.feature-band-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 48px;
}

.feature-band-copy h2 {
  margin: 0 0 16px;
  font-size: 31px;
}

.feature-band-copy p {
  margin: 0;
  color: rgba(255, 255, 255, 0.78);
}

.data-table-wrap {
  margin-top: 40px;
  overflow-x: auto;
  border: 1px solid var(--line);
}

.data-table {
  width: 100%;
  border-collapse: collapse;
}

.data-table th,
.data-table td {
  padding: 17px 20px;
  border-bottom: 1px solid var(--line);
  text-align: left;
  white-space: nowrap;
}

.data-table th {
  color: #fff;
  background: var(--brand-blue);
}

.data-table tr:last-child td {
  border-bottom: 0;
}

.data-table tbody tr:nth-child(even) {
  background: #f7f9fb;
}

.data-table a {
  color: var(--brand-blue);
  font-weight: 700;
}

.news-list {
  display: grid;
  gap: 15px;
  margin-top: 34px;
}

.news-row {
  display: grid;
  grid-template-columns: 145px minmax(0, 1fr) auto;
  align-items: center;
  gap: 24px;
  padding: 22px 24px;
  border: 1px solid var(--line);
  background: #fff;
}

.news-row time {
  color: #8a929a;
  font-weight: 700;
}

.news-row h3 {
  margin: 0;
  font-size: 18px;
}

.news-row span:last-child {
  width: 30px;
  color: var(--brand-sky);
  font-size: 0;
  text-align: center;
}

.news-row span:last-child::before {
  content: "→";
  font-size: 22px;
}

.news-row:hover {
  border-color: #aac8e8;
  box-shadow: 0 10px 28px rgba(27, 65, 103, 0.08);
}

.form-panel {
  margin-top: 38px;
  padding: 36px;
  background: #f6f8fa;
  border-top: 4px solid var(--brand-blue);
}

.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 22px;
}

.field {
  display: grid;
  gap: 8px;
}

.field-full {
  grid-column: 1 / -1;
}

.field label {
  font-weight: 700;
}

.field input,
.field textarea,
.field select {
  width: 100%;
  min-height: 50px;
  padding: 11px 13px;
  color: var(--ink);
  background: #fff;
  border: 1px solid #cbd4dd;
  border-radius: 0;
  outline: none;
}

.field textarea {
  min-height: 145px;
  resize: vertical;
}

.field input:focus,
.field textarea:focus,
.field select:focus {
  border-color: var(--brand-blue);
  box-shadow: 0 0 0 3px rgba(40, 98, 166, 0.12);
}

.form-actions {
  display: flex;
  align-items: center;
  gap: 18px;
  margin-top: 24px;
}

.primary-button,
.secondary-button {
  display: inline-flex;
  min-height: 48px;
  align-items: center;
  justify-content: center;
  padding: 11px 24px;
  border: 1px solid var(--brand-blue);
  font-weight: 750;
  cursor: pointer;
}

.primary-button {
  color: #fff;
  background: var(--brand-blue);
}

.primary-button:hover,
.primary-button:focus-visible {
  background: var(--brand-blue-deep);
}

.secondary-button {
  color: var(--brand-blue);
  background: #fff;
}

.form-status {
  margin: 0;
  color: #287147;
  font-weight: 700;
}

.portal-grid,
.download-grid,
.location-grid,
.video-grid,
.certificate-grid,
.job-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 22px;
  margin-top: 36px;
}

.portal-card,
.download-card,
.location-card,
.video-card,
.certificate-card,
.job-card {
  padding: 28px;
  background: #fff;
  border: 1px solid var(--line);
}

.portal-card h3,
.download-card h3,
.location-card h3,
.video-card h3,
.certificate-card h3,
.job-card h3 {
  margin: 0 0 10px;
  color: var(--brand-blue);
  font-size: 21px;
}

.portal-card p,
.download-card p,
.location-card p,
.video-card p,
.certificate-card p,
.job-card p {
  margin: 0 0 18px;
  color: var(--muted);
}

.video-card {
  padding: 0;
  overflow: hidden;
}

.video-card .video-thumb {
  position: relative;
  height: 205px;
}

.video-card .video-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.video-card .video-thumb::after {
  content: "▶";
  position: absolute;
  top: 50%;
  left: 50%;
  display: grid;
  width: 58px;
  height: 58px;
  place-items: center;
  color: var(--brand-blue);
  background: rgba(255, 255, 255, 0.9);
  border-radius: 50%;
  transform: translate(-50%, -50%);
}

.video-card .card-copy {
  padding: 24px;
}

.notice-box {
  margin: 30px 0;
  padding: 20px 24px;
  color: #485461;
  background: #edf4fb;
  border-left: 4px solid var(--brand-blue);
}

.site-footer {
  color: rgba(255, 255, 255, 0.72);
  background: var(--brand-blue);
}

.footer-main {
  display: grid;
  grid-template-columns: 150px repeat(5, minmax(105px, 1fr)) 1.05fr;
  gap: 18px;
  padding-block: 50px 44px;
}

.footer-brand img {
  width: 150px;
}

.footer-wordmark {
  gap: 7px;
}

.footer-wordmark .demo-monogram {
  padding-right: 7px;
  font-size: 19px;
}

.footer-wordmark .demo-lockup strong {
  font-size: 14px;
}

.footer-wordmark .demo-lockup small {
  font-size: 8px;
}

.footer-column h2 {
  margin: 0 0 16px;
  padding-bottom: 13px;
  color: #fff;
  border-bottom: 1px solid rgba(255, 255, 255, 0.21);
  font-size: 16px;
}

.footer-column ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

.footer-column li + li {
  margin-top: 10px;
}

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

.footer-utility a {
  display: block;
  color: #fff;
  font-weight: 750;
}

.footer-utility a + a {
  margin-top: 4px;
}

.footer-utility .footer-external {
  margin-top: 19px;
  padding-top: 19px;
  color: rgba(255, 255, 255, 0.7);
  border-top: 1px solid rgba(255, 255, 255, 0.23);
  font-weight: 400;
}

.subscribe-row {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 40px;
  padding-bottom: 44px;
}

.subscribe-form {
  display: flex;
  width: min(440px, 100%);
  border-bottom: 1px solid rgba(255, 255, 255, 0.52);
}

.subscribe-form input {
  min-width: 0;
  height: 48px;
  padding: 0 4px;
  flex: 1;
  color: #fff;
  background: transparent;
  border: 0;
  outline: none;
}

.subscribe-form input::placeholder {
  color: rgba(255, 255, 255, 0.68);
}

.subscribe-form button {
  padding: 0 6px 0 18px;
  color: #fff;
  background: none;
  border: 0;
  font-weight: 700;
  cursor: pointer;
}

.subscribe-feedback {
  min-height: 24px;
  margin: 8px 0 0;
  color: #fff;
}

.social-link {
  display: grid;
  width: 60px;
  height: 60px;
  place-items: center;
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.5);
  border-radius: 50%;
  font-size: 27px;
  font-family: Arial, sans-serif;
  font-size: 16px;
  font-weight: 800;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.13);
}

.footer-bottom-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  min-height: 58px;
  font-size: 13px;
}

.legal-links {
  display: flex;
  gap: 15px;
}

.legal-links a:hover {
  color: #fff;
}

.back-to-top {
  position: fixed;
  right: 28px;
  bottom: 28px;
  z-index: 80;
  display: grid;
  width: 62px;
  height: 62px;
  place-items: center;
  padding: 8px 0 4px;
  color: #fff;
  background: rgba(22, 30, 39, 0.55);
  border: 0;
  border-radius: 50%;
  font-size: 11px;
  line-height: 1.1;
  cursor: pointer;
  backdrop-filter: blur(5px);
}

.back-to-top::before {
  content: "⌃";
  display: block;
  margin: 0 auto 3px;
  font-size: 19px;
  line-height: 0.8;
}

.back-to-top:hover,
.back-to-top:focus-visible {
  background: var(--brand-blue-deep);
}

:focus-visible {
  outline: 3px solid #ffcb57;
  outline-offset: 3px;
}

@media (max-width: 1040px) {
  .brand {
    width: 190px;
  }

  .brand img {
    width: 170px;
  }

  .nav-button {
    padding-inline: 9px;
    font-size: 15px;
  }

  .footer-main {
    grid-template-columns: 150px repeat(3, 1fr);
  }

  .footer-column:nth-of-type(4),
  .footer-utility {
    margin-top: 10px;
  }
}

@media (max-width: 820px) {
  :root {
    --header-height: 65px;
  }

  .container {
    width: min(calc(100% - 38px), var(--max-width));
  }

  .utility-bar,
  .main-nav {
    display: none;
  }

  .site-header {
    position: fixed;
    top: 0;
    right: 0;
    left: 0;
  }

  body {
    padding-top: var(--header-height);
  }

  .brand {
    width: auto;
    padding: 0;
  }

  .brand img {
    width: 153px;
  }

  .brand .demo-monogram {
    font-size: 20px;
  }

  .brand .demo-lockup strong {
    font-size: 16px;
  }

  .brand .demo-lockup small {
    font-size: 8px;
  }

  .mobile-menu-button {
    display: grid;
    width: 48px;
    height: 65px;
    padding: 0;
    place-items: center;
    color: #fff;
    background: none;
    border: 0;
    cursor: pointer;
  }

  .hamburger,
  .hamburger::before,
  .hamburger::after {
    display: block;
    width: 22px;
    height: 2px;
    background: currentColor;
    transition: transform 0.25s ease, opacity 0.25s ease;
  }

  .hamburger {
    position: relative;
  }

  .hamburger::before,
  .hamburger::after {
    content: "";
    position: absolute;
    left: 0;
  }

  .hamburger::before {
    top: -7px;
  }

  .hamburger::after {
    top: 7px;
  }

  .mobile-menu-button[aria-expanded="true"] .hamburger {
    background: transparent;
  }

  .mobile-menu-button[aria-expanded="true"] .hamburger::before {
    top: 0;
    transform: rotate(45deg);
  }

  .mobile-menu-button[aria-expanded="true"] .hamburger::after {
    top: 0;
    transform: rotate(-45deg);
  }

  .mobile-menu {
    position: fixed;
    z-index: 95;
    top: 65px;
    right: 0;
    bottom: 0;
    left: 0;
    display: block;
    visibility: hidden;
    overflow-y: auto;
    color: #fff;
    background: var(--brand-blue);
    opacity: 0;
    transform: translateX(100%);
    transition: opacity 0.25s ease, visibility 0.25s ease, transform 0.25s ease;
  }

  .mobile-menu.is-open {
    visibility: visible;
    opacity: 1;
    transform: translateX(0);
  }

  .mobile-primary {
    margin: 0;
    padding: 0;
    list-style: none;
  }

  .mobile-group {
    border-bottom: 1px solid rgba(255, 255, 255, 0.18);
  }

  .mobile-group-button {
    position: relative;
    width: 100%;
    min-height: 68px;
    padding: 14px 56px 14px 20px;
    color: #fff;
    background: none;
    border: 0;
    text-align: center;
    font-size: 17px;
    font-weight: 750;
    cursor: pointer;
  }

  .mobile-group-button::after {
    content: "+";
    position: absolute;
    top: 50%;
    right: 23px;
    font-size: 22px;
    font-weight: 300;
    transform: translateY(-50%);
  }

  .mobile-group-button[aria-expanded="true"]::after {
    content: "−";
  }

  .mobile-submenu {
    display: none;
    margin: 0;
    padding: 4px 25px 17px;
    list-style: none;
    background: rgba(8, 53, 104, 0.22);
  }

  .mobile-submenu.is-open {
    display: grid;
  }

  .mobile-submenu a {
    display: block;
    padding: 9px 13px;
    color: rgba(255, 255, 255, 0.78);
    text-align: center;
  }

  .mobile-quick-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0 28px;
    padding: 27px 56px 19px;
  }

  .mobile-quick-grid a {
    min-height: 38px;
    color: #fff;
    font-size: 16px;
    font-weight: 650;
  }

  .mobile-quick-grid .muted-mobile-link {
    color: rgba(255, 255, 255, 0.55);
    font-weight: 400;
  }

  .mobile-search {
    padding: 12px 56px 22px;
  }

  .mobile-search .site-search-form {
    padding: 0 17px;
    border: 1px solid rgba(255, 255, 255, 0.42);
    border-radius: 26px;
  }

  .mobile-search .site-search-form input {
    color: #fff;
    background: transparent;
    border: 0;
    box-shadow: none;
  }

  .mobile-search .site-search-form input::placeholder {
    color: rgba(255, 255, 255, 0.62);
  }

  .mobile-search .site-search-form button {
    width: 40px;
    padding: 0;
    background: transparent;
  }

  .mobile-search .search-results {
    color: var(--ink);
  }

  .mobile-languages {
    display: flex;
    justify-content: center;
    gap: 18px;
    padding: 16px 20px 30px;
  }

  .mobile-languages a {
    color: rgba(255, 255, 255, 0.42);
    font-size: 17px;
    font-weight: 700;
  }

  .mobile-languages a.active {
    color: #fff;
  }

  .hero {
    height: calc(100svh - 65px);
    min-height: 680px;
    max-height: none;
  }

  .demo-disclaimer .container {
    min-height: 0;
    align-items: flex-start;
    flex-direction: column;
    gap: 5px;
    padding-block: 14px;
  }

  .demo-disclaimer a {
    margin-top: 3px;
  }

  .hero-content {
    top: 36px;
    left: 19px;
    width: calc(100% - 38px);
    transform: none;
  }

  .hero-content h1,
  .hero-content h2 {
    max-width: 330px;
    margin-bottom: 48px;
    font-size: clamp(28px, 8.5vw, 36px);
    line-height: 1.18;
  }

  .hero-cta {
    min-width: 218px;
    min-height: 64px;
    font-size: 18px;
  }

  .carousel-arrow {
    display: none;
  }

  .carousel-dots {
    bottom: 31px;
  }

  .carousel-dot {
    width: 34px;
  }

  .section {
    padding-block: 65px;
  }

  .section-head {
    align-items: start;
    flex-direction: column;
    margin-bottom: 31px;
  }

  .financial-list {
    grid-template-columns: 1fr 1fr;
  }

  .financial-item {
    min-height: 150px;
    padding: 22px 18px;
  }

  .financial-item:nth-child(2) {
    border-right: 0;
  }

  .financial-item:nth-child(-n + 2) {
    border-bottom: 1px solid var(--line);
  }

  .capability-grid,
  .highlight-grid {
    grid-template-columns: 1fr;
  }

  .capability-card + .capability-card {
    margin-top: 24px;
  }

  .capability-visual {
    height: 225px;
  }

  .about-home-grid {
    grid-template-columns: 1fr;
  }

  .about-orbit {
    width: min(100%, 500px);
    margin-inline: auto;
  }

  .about-values,
  .metric-grid {
    grid-template-columns: 1fr 1fr;
  }

  .metric:nth-child(2) {
    border-right: 0;
  }

  .metric:nth-child(-n + 2) {
    border-bottom: 1px solid rgba(255, 255, 255, 0.22);
  }

  .invest-section {
    min-height: 0;
    padding-block: 60px;
  }

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

  .invest-card {
    min-height: 330px;
    padding: 35px;
  }

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

  .news-card {
    border-bottom: 1px solid var(--line);
  }

  .news-card:nth-child(2n) {
    border-right: 0;
  }

  .all-news-link {
    grid-column: 1 / -1;
    padding: 24px;
  }

  .quick-link-grid {
    grid-template-columns: 1fr;
  }

  .quick-link {
    min-height: 230px;
  }

  .page-hero {
    min-height: 320px;
    margin-top: 0;
  }

  .page-hero-inner {
    padding-block: 53px;
  }

  .page-layout {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .side-nav {
    position: static;
  }

  .side-nav-list {
    display: flex;
    overflow-x: auto;
    border: 1px solid var(--line);
  }

  .side-nav-list li {
    flex: 0 0 auto;
  }

  .side-nav-list a {
    height: 100%;
    padding-right: 34px;
    border-right: 1px solid var(--line);
    border-bottom: 0;
  }

  .feature-band,
  .form-grid {
    grid-template-columns: 1fr;
  }

  .feature-band-copy {
    padding: 35px;
  }

  .news-row {
    grid-template-columns: 1fr auto;
    gap: 8px 18px;
  }

  .news-row time {
    grid-column: 1 / -1;
  }

  .footer-main {
    grid-template-columns: 1fr 1fr;
    gap: 31px 28px;
  }

  .footer-brand {
    grid-column: 1 / -1;
  }

  .subscribe-row,
  .footer-bottom-inner {
    align-items: start;
    flex-direction: column;
  }

  .footer-bottom-inner {
    padding-block: 18px;
  }

  .back-to-top {
    right: 17px;
    bottom: 18px;
    width: 54px;
    height: 54px;
  }
}

@media (max-width: 560px) {
  .container {
    width: calc(100% - 38px);
  }

  .financial-list,
  .about-values,
  .metric-grid,
  .news-grid,
  .portal-grid,
  .download-grid,
  .location-grid,
  .video-grid,
  .certificate-grid,
  .job-grid,
  .footer-main {
    grid-template-columns: 1fr;
  }

  .financial-item,
  .financial-item:nth-child(2),
  .metric,
  .metric:nth-child(2),
  .news-card,
  .news-card:nth-child(2n) {
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .metric,
  .metric:nth-child(2) {
    border-bottom-color: rgba(255, 255, 255, 0.22);
  }

  .financial-item:last-child,
  .metric:last-child,
  .news-card:nth-last-child(2) {
    border-bottom: 0;
  }

  .about-home-grid {
    gap: 28px;
  }

  .about-value {
    display: flex;
    align-items: center;
    gap: 18px;
    text-align: left;
  }

  .about-value-mark {
    width: 58px;
    min-width: 58px;
    margin: 0;
  }

  .invest-card {
    min-height: 285px;
    padding: 28px;
  }

  .invest-card h3 {
    font-size: 31px;
  }

  .form-panel {
    padding: 25px 20px;
  }

  .footer-brand {
    grid-column: auto;
  }

  .footer-column {
    display: none;
  }

  .footer-utility {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 6px 20px;
  }

  .footer-utility .footer-external {
    margin-top: 5px;
    padding-top: 8px;
  }

  .legal-links {
    flex-wrap: wrap;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
  }
}
