:root {
  --accent: #b8c0c8;
  --accent-strong: #ffffff;
  --accent-dark: #30343a;
  --surface-deep: #20262e;
  --surface-ink: #2b323c;
  --surface-panel: #3d4550;
  --surface-soft: #98a0ab;
  --surface-mist: #cfd4da;
  --surface-fog: #eaedf1;
  --text-primary: #f7f9fb;
  --text-secondary: #d9dee4;
  --text-muted: #a7b0bb;
  --text-dark: #1f2630;
  --text-soft-dark: #4e5661;
  --line-light: rgba(255, 255, 255, 0.16);
  --line-dark: rgba(32, 38, 46, 0.14);
  --shadow-soft: 0 24px 60px rgba(10, 16, 24, 0.18);
  --shadow-deep: 0 28px 80px rgba(7, 12, 18, 0.32);
  --radius-sm: 0;
  --radius-md: 0;
  --radius-lg: 0;
  --radius-xl: 0;
  --header-height: 74px;
  --container: 1536px;
  --section-gap: 96px;
}

*,
*::before,
*::after {
  box-sizing: border-box;
  border-radius: 0 !important;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-width: 320px;
  font-family: "Noto Sans SC", "IBM Plex Sans", "Segoe UI", sans-serif;
  color: var(--text-primary);
  background: var(--surface-deep);
}

body.menu-open {
  overflow: hidden;
}

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

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

button {
  border: 0;
  background: none;
  font: inherit;
  color: inherit;
  cursor: pointer;
}

svg {
  display: block;
}

.page-shell {
  position: relative;
  overflow-x: clip;
}

.site-toast-stack {
  position: fixed;
  top: calc(var(--header-height) + 18px);
  right: 24px;
  z-index: 220;
  display: grid;
  gap: 12px;
  pointer-events: none;
}

.site-toast {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  align-items: start;
  gap: 12px;
  min-width: min(360px, calc(100vw - 48px));
  max-width: 420px;
  padding: 16px 18px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  background: rgba(17, 23, 30, 0.82);
  color: var(--text-primary);
  box-shadow: 0 20px 48px rgba(8, 12, 18, 0.22);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  pointer-events: auto;
  opacity: 0;
  transform: translate3d(0, -12px, 0) scale(0.98);
  transition: opacity 0.36s ease, transform 0.36s ease;
}

.site-toast.is-visible {
  opacity: 1;
  transform: translate3d(0, 0, 0) scale(1);
}

.site-toast--success {
  border-color: rgba(184, 192, 200, 0.32);
  background: rgba(17, 23, 30, 0.8);
}

.site-toast--error {
  border-color: rgba(255, 182, 182, 0.34);
  background: rgba(61, 24, 24, 0.84);
}

.site-toast__icon {
  margin-top: 1px;
  font-size: 22px;
}

.site-toast--success .site-toast__icon {
  color: #d9e0e6;
}

.site-toast--error .site-toast__icon {
  color: #ffd7d1;
}

.site-toast__body {
  min-width: 0;
}

.site-toast__message {
  margin: 0;
  font-size: 14px;
  line-height: 1.65;
}

.site-toast__close {
  width: 28px;
  height: 28px;
  display: grid;
  place-items: center;
  opacity: 0.72;
  transition: opacity 0.2s ease;
}

.site-toast__close:hover {
  opacity: 1;
}

.site-toast__close .material-symbols-outlined {
  font-size: 18px;
}

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

.page-pad {
  padding-top: var(--header-height);
}

.section {
  position: relative;
  padding: var(--section-gap) 0;
}

.section-tight {
  padding: 72px 0;
}

.section-dark {
  background: linear-gradient(180deg, #252c34 0%, #1d232b 100%);
}

.section-deep {
  background: linear-gradient(180deg, #1d232b 0%, #171c22 100%);
}

.section-light {
  color: var(--text-dark);
  background: linear-gradient(135deg, #cdd2d8 0%, #eaedf0 44%, #b0b7c0 100%);
}

.section-white {
  color: var(--text-dark);
  background: linear-gradient(180deg, #f9fafb 0%, #edf1f4 100%);
}

.section-panel {
  color: var(--text-dark);
  background: linear-gradient(180deg, #d5dbe1 0%, #eef1f4 100%);
}

.section-kicker {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  margin: 0 0 18px;
  font-family: "IBM Plex Sans", sans-serif;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: inherit;
  opacity: 0.72;
}

.section-kicker::before {
  content: "";
  display: block;
  width: 36px;
  height: 2px;
  background: currentColor;
  opacity: 0.75;
}

.section-title {
  margin: 0;
  font-size: clamp(34px, 4vw, 56px);
  line-height: 1.15;
  font-weight: 700;
  letter-spacing: -0.03em;
}

.section-subtitle {
  margin: 14px 0 0;
  font-size: clamp(20px, 2.1vw, 30px);
  line-height: 1.35;
  font-weight: 500;
}

.section-copy {
  max-width: 640px;
  margin: 22px 0 0;
  font-size: 17px;
  line-height: 1.9;
  color: inherit;
  opacity: 0.86;
}

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

.section-heading--center {
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.section-link {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 15px;
  font-weight: 600;
  color: inherit;
  opacity: 0.76;
  transition: opacity 0.24s ease, transform 0.24s ease;
}

.section-link:hover {
  opacity: 1;
}

.section-link .material-symbols-outlined {
  font-size: 18px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  min-height: 54px;
  padding: 0 28px;
  border: 1px solid currentColor;
  border-radius: var(--radius-sm);
  font-size: 15px;
  font-weight: 600;
  letter-spacing: 0.02em;
  transition: transform 0.24s ease, background-color 0.24s ease, color 0.24s ease, border-color 0.24s ease, opacity 0.24s ease;
}

.button:hover {
  transform: translateY(-2px);
}

.button .material-symbols-outlined {
  font-size: 18px;
}

.button-primary {
  background: rgba(255, 255, 255, 0.06);
  color: var(--text-primary);
  border-color: rgba(255, 255, 255, 0.3);
}

.button-primary:hover {
  background: rgba(255, 255, 255, 0.12);
}

.button-solid {
  background: var(--accent);
  color: var(--accent-dark);
  border-color: var(--accent);
}

.button-solid:hover {
  background: #d9dde2;
  border-color: #d9dde2;
}

.button-dark {
  background: rgba(32, 38, 46, 0.06);
  color: var(--text-dark);
  border-color: rgba(32, 38, 46, 0.2);
}

.button-dark:hover {
  background: rgba(32, 38, 46, 0.1);
}

.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 100;
  transition: background-color 0.24s ease, border-color 0.24s ease, box-shadow 0.24s ease, backdrop-filter 0.24s ease;
}

.site-header::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 1px;
  background: rgba(255, 255, 255, 0.1);
}

.site-header.is-light::after,
.site-header.is-light.is-scrolled::after {
  background: rgba(31, 38, 48, 0.12);
}

.site-header.is-dark {
  color: var(--text-primary);
  background: rgba(21, 27, 33, 0.24);
  backdrop-filter: blur(14px);
}

.site-header.is-dark.is-scrolled {
  background: rgba(18, 24, 31, 0.86);
  box-shadow: 0 18px 46px rgba(11, 17, 22, 0.22);
}

.site-header.is-light {
  color: var(--text-dark);
  background: rgba(248, 250, 251, 0.84);
  backdrop-filter: blur(16px);
}

.site-header.is-light.is-scrolled {
  background: rgba(248, 250, 251, 0.94);
  box-shadow: 0 18px 42px rgba(20, 26, 34, 0.08);
}

.site-header.transparent {
  background: rgba(17, 23, 30, 0.16);
  box-shadow: 0 10px 26px rgba(7, 12, 18, 0.08);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}

.site-header.transparent.is-scrolled {
  background: rgba(16, 21, 28, 0.84);
  backdrop-filter: blur(14px);
}

.site-header.transparent::after {
  background: rgba(255, 255, 255, 0.08);
}

.header-shell {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  height: var(--header-height);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  min-width: 0;
  flex-shrink: 0;
}

.brand-mark {
  width: 48px;
  height: 48px;
  flex-shrink: 0;
}

.brand-copy {
  min-width: 0;
}

.brand-copy strong {
  display: block;
  font-size: 18px;
  line-height: 1.15;
  letter-spacing: -0.02em;
}

.brand-copy span {
  display: block;
  margin-top: 4px;
  font-size: 14px;
  font-weight: 600;
  line-height: 1;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  opacity: 0.84;
}

.site-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 34px;
  min-width: 0;
}

.site-nav a {
  position: relative;
  padding: 8px 0;
  font-size: 16px;
  font-weight: 400;
  letter-spacing: 0.01em;
  opacity: 0.92;
  transition: opacity 0.24s ease;
}

.site-nav a:hover,
.site-nav a.is-active {
  opacity: 1;
}

.site-nav a.is-active::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -2px;
  width: 100%;
  height: 2px;
  background: currentColor;
}

.header-actions {
  display: inline-flex;
  align-items: center;
  gap: 18px;
  flex-shrink: 0;
}

.header-lang {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  min-width: 110px;
}

.header-lang::after {
  content: "expand_more";
  position: absolute;
  right: 0;
  top: 50%;
  font-family: "Material Symbols Outlined";
  font-size: 18px;
  line-height: 1;
  pointer-events: none;
  transform: translateY(-50%);
  opacity: 0.72;
}

.header-lang__icon {
  font-size: 19px;
  opacity: 0.86;
}

.header-lang__select {
  width: 82px;
  height: 38px;
  padding: 0 20px 0 12px;
  border: 0;
  background: transparent;
  color: inherit;
  font: inherit;
  font-size: 15px;
  font-weight: 400;
  opacity: 0.9;
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
}

.header-lang__select:focus {
  outline: none;
}

.header-lang__select option {
  color: var(--text-dark);
  background: #ffffff;
  text-align: center;
}

.header-action {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 15px;
  font-weight: 600;
  opacity: 0.86;
}

.header-action .material-symbols-outlined {
  font-size: 19px;
}

.menu-toggle {
  display: none;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border-radius: 999px;
  border: 1px solid currentColor;
  opacity: 0.82;
}

.menu-toggle .material-symbols-outlined {
  font-size: 22px;
}

.hero {
  position: relative;
  overflow: hidden;
}

.hero__media,
.hero__media img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.hero__media img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0;
  transform: scale(1.12);
  transform-origin: center center;
  transition: opacity 0.8s ease;
  will-change: opacity, transform;
}

.hero__media img.is-active {
  opacity: 1;
  animation: heroZoomOut 5.2s ease-out forwards;
}

@keyframes heroZoomOut {
  from {
    transform: scale(1.12);
  }

  to {
    transform: scale(1);
  }
}

.hero__overlay {
  position: absolute;
  inset: 0;
}

.hero__content {
  position: relative;
  z-index: 1;
}

.hero__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  margin: 0 0 22px;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  opacity: 0.82;
}

.hero__title {
  margin: 0;
  font-size: clamp(44px, 7.4vw, 98px);
  line-height: 1.02;
  font-weight: 700;
  letter-spacing: -0.05em;
}

.hero__subtitle {
  margin: 16px 0 0;
  font-size: clamp(20px, 3vw, 42px);
  line-height: 1.25;
  font-weight: 500;
}

.hero__copy {
  max-width: 640px;
  margin: 28px 0 0;
  font-size: clamp(16px, 1.45vw, 19px);
  line-height: 1.85;
  color: var(--text-secondary);
}

.hero__actions {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-top: 34px;
  flex-wrap: wrap;
}

.hero-home-a {
  min-height: 980px;
  padding: 174px 0 110px;
  color: var(--text-primary);
}

.hero-home-a .hero__overlay {
  background:
    linear-gradient(90deg, rgba(22, 28, 35, 0.76) 0%, rgba(22, 28, 35, 0.6) 32%, rgba(22, 28, 35, 0.24) 62%, rgba(22, 28, 35, 0.56) 100%),
    linear-gradient(180deg, rgba(28, 33, 40, 0.05) 0%, rgba(22, 28, 35, 0.18) 100%);
}

.hero-home-a .hero__content {
  display: grid;
  gap: 54px;
  align-items: end;
}

.hero-home-a .hero__top {
  max-width: 700px;
}

.hero-lines {
  display: flex;
  gap: 12px;
  margin-top: 42px;
}

.hero-lines span {
  display: block;
  width: 56px;
  height: 4px;
  background: rgba(255, 255, 255, 0.2);
}

.hero-lines span:first-child {
  background: rgba(255, 255, 255, 0.9);
}

.hero-inline-stats {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 42px;
  max-width: 640px;
}

.hero-inline-stat {
  display: grid;
  gap: 10px;
}

.hero-inline-stat .material-symbols-outlined {
  font-size: 34px;
  opacity: 0.88;
}

.hero-inline-stat small {
  font-size: 14px;
  color: var(--text-muted);
}

.hero-inline-stat strong {
  font-size: clamp(42px, 4.2vw, 62px);
  font-weight: 600;
  letter-spacing: -0.04em;
}

.hero-inline-stat span {
  font-size: 14px;
  color: var(--text-secondary);
}

.hero-home-b {
  min-height: 910px;
  padding: 164px 0 0;
  color: var(--text-primary);
}

.hero-home-b .hero__overlay {
  background:
    linear-gradient(90deg, rgba(17, 23, 30, 0.82) 0%, rgba(17, 23, 30, 0.72) 34%, rgba(17, 23, 30, 0.16) 66%, rgba(17, 23, 30, 0.4) 100%);
}

.hero-home-b .container {
  position: relative;
}

.hero-home-b__layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: 24px;
  min-height: 720px;
  align-items: center;
}

.hero-home-b__intro {
  position: relative;
  z-index: 2;
  max-width: 760px;
}

.hero-home-b__ore {
  position: relative;
  z-index: 1;
  justify-self: end;
  width: min(520px, 46vw);
  border-radius: 46% 54% 52% 48% / 28% 32% 68% 72%;
  overflow: hidden;
  box-shadow: var(--shadow-deep);
  transform: translate(40px, 18px) rotate(-8deg);
}

.hero-home-b__ore::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.08) 0%, rgba(12, 16, 20, 0.26) 100%);
}

.hero-home-b__ore img {
  aspect-ratio: 0.94;
  object-fit: cover;
  object-position: center;
  filter: saturate(0.82) contrast(1.04);
}

.hero-pagination {
  position: absolute;
  right: 28px;
  top: 50%;
  z-index: 2;
  display: grid;
  justify-items: end;
  gap: 14px;
  transform: translateY(-50%);
}

.hero-pagination button {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 8px;
  min-width: 52px;
  padding: 0;
  font-size: 18px;
  font-weight: 300;
  line-height: 1;
  letter-spacing: 0.02em;
  color: var(--text-primary);
  opacity: 0.62;
}

.hero-pagination button::after {
  content: "";
  display: block;
  width: 12px;
  height: 1px;
  background: currentColor;
  opacity: 0.75;
}

.hero-pagination button.is-active {
  opacity: 1;
}

.hero-pagination__rail {
  justify-self: end;
  width: 1px;
  height: 14px;
  margin-top: 2px;
  background: rgba(255, 255, 255, 0.72);
}

.hero-home-b__stats {
  margin-top: 0;
  color: var(--text-dark);
  background: linear-gradient(135deg, #a7afba 0%, #d7dde3 50%, #a0a8b1 100%);
}

.stats-strip {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.stats-strip__item {
  display: flex;
  align-items: center;
  gap: 22px;
  padding: 34px 26px;
  border-right: 1px solid rgba(39, 46, 54, 0.14);
}

.stats-strip__item:last-child {
  border-right: 0;
}

.stats-strip__icon {
  width: 46px;
  height: 46px;
  display: grid;
  place-items: center;
  border-radius: 999px;
  border: 1px solid rgba(39, 46, 54, 0.18);
}

.stats-strip__icon .material-symbols-outlined {
  font-size: 24px;
}

.stats-strip__value {
  font-size: 48px;
  line-height: 1;
  font-weight: 600;
  letter-spacing: -0.05em;
}

.stats-strip__label {
  margin-top: 8px;
  font-size: 15px;
  color: var(--text-soft-dark);
}

.about-dual {
  display: grid;
  grid-template-columns: minmax(280px, 0.9fr) minmax(340px, 1.1fr);
  gap: 48px;
  align-items: center;
}

.about-dual__media {
  position: relative;
}

.video-card,
.media-card {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-soft);
}

.video-card::after,
.media-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.02) 0%, rgba(17, 22, 27, 0.14) 100%);
  pointer-events: none;
}

.video-card img,
.media-card img {
  aspect-ratio: 1.55;
  object-fit: cover;
}

.video-card__play {
  position: absolute;
  inset: 50% auto auto 50%;
  width: 96px;
  height: 96px;
  display: grid;
  place-items: center;
  border-radius: 999px;
  border: 2px solid rgba(255, 255, 255, 0.82);
  color: var(--text-primary);
  background: rgba(17, 23, 30, 0.22);
  backdrop-filter: blur(10px);
  transform: translate(-50%, -50%);
}

.video-card__play .material-symbols-outlined {
  font-size: 42px;
}

.video-card__caption {
  position: absolute;
  left: 28px;
  bottom: 26px;
  z-index: 1;
}

.video-card__caption strong {
  display: block;
  font-size: 22px;
}

.video-card__caption span {
  display: block;
  margin-top: 8px;
  font-size: 14px;
  color: var(--text-secondary);
}

.business-grid {
  display: grid;
  gap: 18px;
}

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

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

.business-card {
  position: relative;
  display: flex;
  flex-direction: column;
  min-height: 100%;
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-soft);
}

.business-card__image {
  position: relative;
  overflow: hidden;
}

.business-card__image img {
  aspect-ratio: 1.36;
  object-fit: cover;
  transition: transform 0.7s ease;
}

.business-card:hover .business-card__image img {
  transform: scale(1.06);
}

.business-card__body {
  position: relative;
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 14px;
  padding: 52px 24px 24px;
}

.business-card__icon {
  position: absolute;
  left: 24px;
  top: -24px;
  width: 60px;
  height: 60px;
  display: grid;
  place-items: center;
  border-radius: 999px;
  backdrop-filter: blur(12px);
}

.business-card__icon .material-symbols-outlined {
  font-size: 28px;
}

.business-card__title {
  margin: 0;
  font-size: 30px;
  line-height: 1.2;
  font-weight: 700;
  letter-spacing: -0.03em;
}

.business-card__title small {
  display: block;
  margin-bottom: 10px;
  font-size: 14px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  opacity: 0.7;
}

.business-card__desc {
  margin: 0;
  font-size: 15px;
  line-height: 1.85;
  opacity: 0.84;
}

.business-card__link {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-top: auto;
  font-size: 15px;
  font-weight: 600;
}

.business-card__link .material-symbols-outlined {
  font-size: 18px;
  transition: transform 0.24s ease;
}

.business-card:hover .business-card__link .material-symbols-outlined {
  transform: translateX(4px);
}

.business-card--dark {
  background: linear-gradient(180deg, rgba(123, 132, 142, 0.34) 0%, rgba(78, 87, 98, 0.86) 100%);
  color: var(--text-primary);
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.business-card--dark .business-card__icon {
  background: rgba(181, 188, 197, 0.18);
  border: 1px solid rgba(255, 255, 255, 0.22);
}

.business-card--light {
  background: linear-gradient(180deg, #fafbfd 0%, #e8edf2 100%);
  color: var(--text-dark);
  border: 1px solid rgba(31, 38, 48, 0.08);
}

.business-card--light .business-card__icon {
  background: rgba(96, 107, 120, 0.14);
  border: 1px solid rgba(31, 38, 48, 0.18);
}

.news-data {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr);
  gap: 56px;
}

.news-list {
  display: grid;
  gap: 22px;
}

.news-item {
  display: grid;
  grid-template-columns: 150px minmax(0, 1fr) auto;
  gap: 18px;
  align-items: center;
  padding-bottom: 22px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.news-item:last-child {
  border-bottom: 0;
}

.news-item__thumb {
  overflow: hidden;
  border-radius: var(--radius-sm);
}

.news-item__thumb img {
  aspect-ratio: 1.3;
  object-fit: cover;
}

.news-item__meta {
  margin-top: 12px;
  font-size: 14px;
  color: var(--text-muted);
}

.news-item__title {
  margin: 0;
  font-size: 22px;
  line-height: 1.45;
  font-weight: 600;
}

.news-item__arrow .material-symbols-outlined {
  font-size: 20px;
  opacity: 0.72;
}

.data-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  border-left: 1px solid rgba(255, 255, 255, 0.08);
}

.data-card {
  display: grid;
  gap: 18px;
  min-height: 220px;
  padding: 32px;
  border-right: 1px solid rgba(255, 255, 255, 0.08);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.data-card__row {
  display: flex;
  align-items: center;
  gap: 18px;
}

.data-card__icon {
  width: 62px;
  height: 62px;
  display: grid;
  place-items: center;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  background: rgba(255, 255, 255, 0.04);
}

.data-card__icon .material-symbols-outlined {
  font-size: 34px;
}

.data-card__label {
  font-size: 18px;
  color: var(--text-secondary);
}

.data-card__value {
  font-size: clamp(42px, 4vw, 58px);
  line-height: 1;
  font-weight: 600;
  letter-spacing: -0.05em;
}

.compact-news {
  display: grid;
  gap: 20px;
}

.compact-news__item {
  display: grid;
  grid-template-columns: 120px minmax(0, 1fr) auto;
  gap: 18px;
  align-items: center;
  padding-bottom: 20px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.compact-news__thumb {
  overflow: hidden;
  border-radius: var(--radius-sm);
}

.compact-news__thumb img {
  aspect-ratio: 1.42;
  object-fit: cover;
}

.compact-news__item h4 {
  margin: 0;
  font-size: 18px;
  line-height: 1.55;
}

.compact-news__item time {
  display: block;
  margin-top: 10px;
  font-size: 14px;
  color: var(--text-muted);
}

.partner-block {
  display: grid;
  gap: 26px;
}

.partner-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 10px;
}

.partner-logo {
  display: grid;
  place-items: center;
  min-height: 74px;
  padding: 12px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  color: rgba(255, 255, 255, 0.72);
  font-family: "IBM Plex Sans", sans-serif;
  font-size: 18px;
  font-weight: 700;
  letter-spacing: -0.02em;
}

.contact-panel {
  position: relative;
  overflow: hidden;
  padding: 28px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  background: rgba(255, 255, 255, 0.03);
}

.contact-panel::after {
  content: "";
  position: absolute;
  right: -60px;
  bottom: -90px;
  width: 260px;
  height: 260px;
  border-radius: 999px;
  background: radial-gradient(circle at center, rgba(255, 255, 255, 0.12) 0%, rgba(255, 255, 255, 0) 68%);
}

.contact-panel h4 {
  margin: 0 0 18px;
  font-size: 28px;
}

.contact-list {
  position: relative;
  z-index: 1;
  display: grid;
  gap: 14px;
}

.contact-list li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  list-style: none;
  font-size: 15px;
  color: var(--text-secondary);
}

.contact-list .material-symbols-outlined {
  margin-top: 2px;
  font-size: 18px;
}

.hero-page {
  min-height: 720px;
  padding: 150px 0 110px;
  color: var(--text-primary);
}

.hero-page .hero__overlay {
  background:
    linear-gradient(90deg, rgba(18, 23, 29, 0.86) 0%, rgba(18, 23, 29, 0.7) 36%, rgba(18, 23, 29, 0.18) 100%);
}

.hero-page .hero__content {
  max-width: 620px;
}

.feature-row {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 0;
  border-top: 1px solid rgba(255, 255, 255, 0.14);
  border-bottom: 1px solid rgba(255, 255, 255, 0.14);
}

.feature-row__item {
  display: grid;
  justify-items: center;
  gap: 14px;
  padding: 36px 18px;
  text-align: center;
  border-right: 1px solid rgba(255, 255, 255, 0.14);
}

.feature-row__item:last-child {
  border-right: 0;
}

.feature-row__item .material-symbols-outlined {
  font-size: 40px;
}

.feature-row__item strong {
  font-size: 26px;
  line-height: 1.25;
}

.feature-row__item p {
  margin: 0;
  font-size: 15px;
  line-height: 1.85;
  color: var(--text-secondary);
}

.number-row {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 0;
}

.number-row__item {
  padding: 34px 18px 0;
  text-align: center;
}

.number-row__item strong {
  display: block;
  font-size: clamp(40px, 4.1vw, 58px);
  line-height: 1;
  font-weight: 600;
  letter-spacing: -0.05em;
}

.number-row__item span {
  display: block;
  margin-top: 10px;
  font-size: 14px;
  color: var(--text-secondary);
}

.project-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(280px, 0.9fr);
  gap: 28px;
}

.project-feature {
  position: relative;
  overflow: hidden;
  min-height: 610px;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-soft);
}

.project-feature img {
  position: absolute;
  inset: 0;
  height: 100%;
  object-fit: cover;
}

.project-feature::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(17, 22, 28, 0.9) 0%, rgba(17, 22, 28, 0.58) 36%, rgba(17, 22, 28, 0.08) 100%);
}

.project-feature__panel {
  position: absolute;
  left: 0;
  bottom: 0;
  z-index: 1;
  width: min(430px, 86%);
  padding: 36px 32px;
  background: rgba(26, 32, 40, 0.82);
  backdrop-filter: blur(14px);
}

.project-feature__panel h3 {
  margin: 0 0 16px;
  font-size: 38px;
  line-height: 1.15;
}

.project-feature__panel p {
  margin: 0 0 22px;
  font-size: 15px;
  line-height: 1.85;
  color: var(--text-secondary);
}

.project-facts {
  display: grid;
  gap: 12px;
  margin: 0 0 24px;
  padding: 0;
}

.project-facts li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  list-style: none;
  font-size: 15px;
  color: var(--text-secondary);
}

.project-facts .material-symbols-outlined {
  margin-top: 1px;
  font-size: 18px;
}

.project-list {
  display: grid;
  gap: 14px;
}

.project-list__item {
  display: grid;
  grid-template-columns: 180px minmax(0, 1fr) auto;
  gap: 18px;
  align-items: center;
  padding: 14px;
  border-radius: var(--radius-sm);
  border: 1px solid rgba(31, 38, 48, 0.1);
  background: rgba(255, 255, 255, 0.8);
}

.project-list__thumb {
  overflow: hidden;
  border-radius: var(--radius-sm);
}

.project-list__thumb img {
  aspect-ratio: 1.45;
  object-fit: cover;
}

.project-list__item h4 {
  margin: 0;
  font-size: 20px;
  line-height: 1.35;
}

.project-list__item p {
  margin: 8px 0 0;
  font-size: 14px;
  line-height: 1.7;
  color: var(--text-soft-dark);
}

.project-list__item .material-symbols-outlined {
  font-size: 19px;
  color: var(--text-soft-dark);
}

.commitment-layout {
  display: grid;
  grid-template-columns: minmax(280px, 0.92fr) minmax(0, 1.08fr);
  gap: 48px;
  align-items: start;
}

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

.commitment-item {
  padding: 12px 30px 12px 30px;
  border-left: 1px solid rgba(31, 38, 48, 0.16);
}

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

.commitment-item .material-symbols-outlined {
  font-size: 42px;
  margin-bottom: 18px;
}

.commitment-item h4 {
  margin: 0 0 12px;
  font-size: 24px;
}

.commitment-item p {
  margin: 0;
  font-size: 15px;
  line-height: 1.82;
  color: var(--text-soft-dark);
}

.strategy-layout {
  display: grid;
  grid-template-columns: minmax(280px, 0.82fr) minmax(0, 1.18fr);
  gap: 34px;
}

.strategy-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
}

.strategy-card {
  display: flex;
  flex-direction: column;
  overflow: hidden;
  border-radius: var(--radius-md);
  border: 1px solid rgba(31, 38, 48, 0.08);
  background: rgba(255, 255, 255, 0.78);
  box-shadow: 0 18px 44px rgba(22, 27, 34, 0.07);
}

.strategy-card img {
  aspect-ratio: 0.95;
  object-fit: cover;
}

.strategy-card__body {
  display: flex;
  flex: 1;
  flex-direction: column;
  gap: 12px;
  padding: 20px 18px 22px;
}

.strategy-card__body .material-symbols-outlined {
  font-size: 30px;
  opacity: 0.8;
}

.strategy-card h4 {
  margin: 0;
  font-size: 22px;
  line-height: 1.35;
}

.strategy-card p {
  margin: 0;
  font-size: 14px;
  line-height: 1.78;
  color: var(--text-soft-dark);
}

.metrics-band {
  color: var(--text-primary);
}

.metrics-band__grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 0;
  margin-top: 34px;
}

.metrics-band__item {
  padding: 12px 24px 20px;
  border-left: 1px solid rgba(255, 255, 255, 0.14);
}

.metrics-band__item:first-child {
  border-left: 0;
  padding-left: 0;
}

.metrics-band__item .material-symbols-outlined {
  font-size: 28px;
  margin-bottom: 14px;
}

.metrics-band__item strong {
  display: block;
  margin-top: 6px;
  font-size: clamp(42px, 4vw, 58px);
  line-height: 1;
  font-weight: 600;
  letter-spacing: -0.05em;
}

.metrics-band__item span {
  display: block;
  font-size: 15px;
  color: var(--text-secondary);
}

.metrics-band__item small {
  display: block;
  margin-top: 10px;
  font-size: 14px;
  color: var(--text-muted);
}

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

.action-card {
  overflow: hidden;
  border-radius: var(--radius-md);
  border: 1px solid rgba(31, 38, 48, 0.08);
  background: rgba(255, 255, 255, 0.85);
  box-shadow: 0 20px 48px rgba(18, 22, 28, 0.08);
}

.action-card img {
  aspect-ratio: 1.62;
  object-fit: cover;
}

.action-card__body {
  padding: 22px 22px 24px;
}

.action-card h4 {
  margin: 0;
  font-size: 24px;
  line-height: 1.35;
}

.action-card p {
  margin: 12px 0 0;
  font-size: 15px;
  line-height: 1.8;
  color: var(--text-soft-dark);
}

.action-card .section-link {
  margin-top: 18px;
}

.cta-banner {
  overflow: hidden;
  padding: 54px 0;
  color: var(--text-primary);
}

.cta-banner::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(18, 23, 29, 0.84) 0%, rgba(18, 23, 29, 0.66) 50%, rgba(18, 23, 29, 0.5) 100%),
    url("../images/hero-home-1.jpg") center/cover no-repeat;
}

.cta-banner__shell {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
}

.cta-banner h3 {
  margin: 0;
  font-size: clamp(34px, 4vw, 56px);
  line-height: 1.1;
}

.cta-banner p {
  max-width: 620px;
  margin: 16px 0 0;
  font-size: 17px;
  line-height: 1.9;
  color: var(--text-secondary);
}

.site-footer {
  color: var(--text-primary);
  background: linear-gradient(180deg, #20262e 0%, #1a2028 100%);
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-main {
  display: grid;
  grid-template-columns: 1.2fr repeat(4, minmax(0, 1fr));
  gap: 36px;
  padding: 48px 0 34px;
}

.footer-brand p {
  max-width: 280px;
  margin: 18px 0 22px;
  font-size: 15px;
  line-height: 1.8;
  color: var(--text-muted);
}

.social-list {
  display: flex;
  gap: 12px;
}

.social-list a {
  width: 34px;
  height: 34px;
  display: grid;
  place-items: center;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  color: var(--text-secondary);
}

.social-list .material-symbols-outlined {
  font-size: 18px;
}

.footer-column h4 {
  margin: 0 0 18px;
  font-size: 18px;
}

.footer-column ul {
  margin: 0;
  padding: 0;
  display: grid;
  gap: 12px;
  list-style: none;
}

.footer-column li,
.footer-column a,
.footer-column p {
  font-size: 15px;
  line-height: 1.75;
  color: var(--text-muted);
}

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 20px 0 28px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  font-size: 14px;
  color: var(--text-muted);
}

.footer-bottom nav {
  display: flex;
  gap: 22px;
  flex-wrap: wrap;
}

.footer-mini {
  padding: 0 0 24px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-mini__shell {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding-top: 22px;
  font-size: 14px;
  color: var(--text-muted);
}

.footer-mini nav {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
}

.surface-backdrop {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.surface-backdrop--mountain {
  background:
    linear-gradient(180deg, rgba(16, 22, 28, 0.34) 0%, rgba(16, 22, 28, 0.62) 100%),
    url("../images/project-main.jpg") center/cover no-repeat;
  opacity: 0.42;
}

.surface-backdrop--soft {
  background:
    radial-gradient(circle at top left, rgba(255, 255, 255, 0.56) 0%, rgba(255, 255, 255, 0) 36%),
    radial-gradient(circle at bottom right, rgba(112, 123, 136, 0.32) 0%, rgba(112, 123, 136, 0) 38%);
}

.text-light {
  color: var(--text-primary);
}

.text-dark {
  color: var(--text-dark);
}

.hide-desktop {
  display: none;
}

@media (max-width: 1180px) {
  :root {
    --section-gap: 84px;
  }

  .site-nav {
    gap: 22px;
  }

  .hero-home-b__layout {
    grid-template-columns: minmax(0, 1fr) 360px;
  }

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

  .business-grid--5,
  .feature-row,
  .number-row,
  .metrics-band__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 18px;
  }

  .feature-row,
  .number-row {
    border: 0;
  }

  .feature-row__item,
  .metrics-band__item,
  .number-row__item {
    border: 0;
    padding: 28px 0 0;
  }

  .commitment-grid,
  .action-grid {
    grid-template-columns: 1fr;
    gap: 18px;
  }

  .commitment-item {
    padding: 10px 0 0;
    border-left: 0;
    border-top: 1px solid rgba(31, 38, 48, 0.16);
  }

  .commitment-item:first-child {
    border-top: 0;
  }

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

@media (max-width: 960px) {
  .container {
    width: min(var(--container), calc(100% - 48px));
  }

  .brand-copy {
    display: none;
  }

  .site-nav {
    position: fixed;
    top: var(--header-height);
    left: 0;
    right: 0;
    display: grid;
    justify-items: start;
    gap: 0;
    padding: 18px 24px 26px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    background: rgba(20, 26, 34, 0.97);
    transform: translateY(-120%);
    opacity: 0;
    pointer-events: none;
    transition: transform 0.24s ease, opacity 0.24s ease;
  }

  .site-header.is-light .site-nav {
    background: rgba(248, 250, 251, 0.98);
    border-bottom-color: rgba(31, 38, 48, 0.08);
  }

  .site-nav a {
    width: 100%;
    padding: 14px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  }

  .site-header.is-light .site-nav a {
    border-bottom-color: rgba(31, 38, 48, 0.08);
  }

  .site-nav a:last-child {
    border-bottom: 0;
  }

  .site-nav.is-open {
    transform: translateY(0);
    opacity: 1;
    pointer-events: auto;
  }

  .menu-toggle {
    display: inline-flex;
  }

  .hide-desktop {
    display: inline-flex;
  }

  .hero-home-a,
  .hero-home-b,
  .hero-page {
    min-height: auto;
    padding: 138px 0 90px;
  }

  .hero-home-b__layout,
  .about-dual,
  .news-data,
  .project-layout,
  .commitment-layout,
  .strategy-layout,
  .cta-banner__shell,
  .about-dual {
    grid-template-columns: 1fr;
  }

  .hero-home-b__ore {
    justify-self: start;
    width: min(520px, 100%);
    transform: none;
    margin-top: 24px;
  }

  .hero-pagination {
    display: none;
  }

  .hero-inline-stats,
  .stats-strip,
  .business-grid--4,
  .business-grid--5,
  .partner-grid,
  .data-grid {
    grid-template-columns: 1fr 1fr;
  }

  .news-item,
  .compact-news__item,
  .project-list__item {
    grid-template-columns: 1fr;
  }

  .project-feature {
    min-height: 520px;
  }

  .project-feature__panel {
    width: 100%;
  }

  .footer-bottom,
  .footer-mini__shell {
    flex-direction: column;
    align-items: flex-start;
  }
}

@media (max-width: 680px) {
  :root {
    --header-height: 68px;
    --section-gap: 72px;
  }

  .site-toast-stack {
    top: calc(var(--header-height) + 12px);
    left: 16px;
    right: 16px;
  }

  .site-toast {
    min-width: 0;
    max-width: none;
  }

  .header-actions {
    gap: 12px;
  }

  .header-lang {
    min-width: 92px;
    gap: 6px;
  }

  .header-lang__icon {
    font-size: 17px;
  }

  .header-lang__select {
    width: 68px;
    font-size: 14px;
  }

  .container {
    width: calc(100% - 32px);
  }

  .brand-mark {
    width: 42px;
    height: 42px;
  }

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

  .brand-copy span {
    font-size: 14px;
    letter-spacing: 0.12em;
  }

  .hero__title {
    font-size: clamp(40px, 12vw, 60px);
  }

  .hero__subtitle {
    font-size: clamp(20px, 5.4vw, 28px);
  }

  .hero-home-a .hero__content,
  .hero-home-b__layout {
    gap: 36px;
  }

  .hero-inline-stats,
  .stats-strip,
  .business-grid--4,
  .business-grid--5,
  .partner-grid,
  .data-grid,
  .feature-row,
  .number-row,
  .metrics-band__grid,
  .strategy-grid,
  .footer-main {
    grid-template-columns: 1fr;
  }

  .stats-strip__item {
    border-right: 0;
    border-bottom: 1px solid rgba(39, 46, 54, 0.12);
  }

  .stats-strip__item:last-child {
    border-bottom: 0;
  }

  .section-heading {
    margin-bottom: 32px;
  }

  .video-card__play {
    width: 76px;
    height: 76px;
  }

  .video-card__play .material-symbols-outlined {
    font-size: 34px;
  }

  .business-card__body,
  .contact-panel,
  .metrics-band__item {
    padding-left: 20px;
    padding-right: 20px;
  }

  .project-feature__panel {
    padding: 28px 24px;
  }

  .cta-banner {
    padding: 42px 0;
  }
}
