﻿:root {
  --navy: #071a42;
  --gold: #d6a24a;
  --text: #071a42;
  --header-h: 64px;
}

* {
  box-sizing: border-box;
}

html {
  width: 100%;
  overflow-x: hidden;
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--header-h) + 6px);
}

body {
  width: 100%;
  overflow-x: hidden;
  margin: 0;
  background: #fff;
  color: var(--text);
  font-family: Arial, "Microsoft YaHei", sans-serif;
}

a {
  color: inherit;
  text-decoration: none;
}

.page {
  position: relative;
  width: 100%;
  margin: 0;
  overflow: hidden;
  background: #fff;
}

.section-pad {
  padding-left: 72px;
  padding-right: 72px;
}

/* Header */
.header {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 999;
  width: 100%;
  height: var(--header-h);
  display: flex;
  align-items: center;
  gap: 44px;
  padding: 0 72px;
  background: #0f0f0f;
  box-shadow: 0 1px 0 rgba(0, 0, 0, 0.08);
  transition:
    box-shadow 0.28s ease,
    background-color 0.28s ease,
    backdrop-filter 0.28s ease;
}

.header.is-scrolled {
  background: rgba(0, 0, 0, 0.93);
  backdrop-filter: blur(16px);
  box-shadow: 0 10px 28px rgba(6, 6, 6, 0.13);
}

main {
  padding-top: var(--header-h);
}

.logo {
  display: flex;
  align-items: center;
  gap: 10px;
 
  font-weight: 900;
  line-height: 1;
}
.logo-img {
  height: 62px;
  width: auto;
  display: block;
}

.logo-v {
  color: transparent;
  font-size: 42px;
  font-weight: 900;
  line-height: 0.85;
  letter-spacing: -4px;
  background: linear-gradient(135deg, #062055 0 40%, #d99d39 42% 58%, #071b43 60% 100%);
  -webkit-background-clip: text;
  background-clip: text;
}

.logo-text {
  font-size: 20px;
  letter-spacing: 4px;
}

.nav {
  flex: 1;
  display: flex;
  justify-content: center;
  gap: 50px;
  font-size: 12px;
  font-weight: 800;
}

.nav a {
  position: relative;
  padding: 24px 0 21px;
  transition: color 0.25s ease;
}

.nav a::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 10px;
  height: 3px;
  background: var(--gold);
  opacity: 0;
  transform: scaleX(0.72);
  transition:
    opacity 0.2s ease,
    transform 0.2s ease;
}

.nav a.active::after,
.nav a:hover::after {
  opacity: 1;
  transform: scaleX(1);
}

.lang {
  display: flex;
  align-items: center;
  gap: 8px;
  color: #9ca6b8;
  font-size: 13px;
  font-weight: 800;
}

.lang button {
  padding: 0;
  border: 0;
  background: transparent;
  color: #8e98ac;
  font-weight: 900;
  cursor: pointer;
  transition: color 0.25s ease;
}

.lang button.active {
  color: #c68c34;
}

.nav-toggle {
  display: none;
  border: 0;
  background: transparent;
  color: var(--navy);
  font-size: 26px;
}

/* Shared text */
.eyebrow {
  margin: 0 0 8px;
  color: var(--gold);
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 2px;
  text-transform: uppercase;
}

.center {
  text-align: center;
}

.about h2,
.focus h2,
.technology h2,
.governance h2 {
  margin: 0 0 13px;
  font-size: 26px;
  font-weight: 900;
  line-height: 1.15;
}

.about-copy > p:not(.eyebrow),
.gov-copy p {
  margin: 0;
  color: #35435b;
  font-size: 13px;
  line-height: 1.62;
}

.mini-rule {
  display: block;
  width: 40px;
  height: 3px;
  margin: 22px 0;
  background: var(--gold);
}

/* Hero */
.hero {
  position: relative;
  display: grid;
  grid-template-columns: 45% 55%;
  height: calc(100vh - var(--header-h));
  height: calc(100dvh - var(--header-h));
  min-height: calc(100vh - var(--header-h));
  min-height: calc(100dvh - var(--header-h));
  max-height: none;
  padding: 0;
  overflow: hidden;
  color: #fff;
  background:
    linear-gradient(
      90deg,
      rgba(1, 10, 31, 0.86) 0%,
      rgba(1, 10, 31, 0.72) 36%,
      rgba(1, 10, 31, 0.15) 58%,
      rgba(1, 10, 31, 0.05) 100%
    ),
    url("images/image1.png") center center / cover no-repeat;
}

.hero::before,
.hero::after,
.hero-visual,
.hero-img,
.scan-card,
.hero-line {
  display: none;
}

.hero-copy {
  position: relative;
  z-index: 3;
  width: 530px;
}

.hero h1 {
  margin: 0 0 21px;
  font-size: 44px;
  font-weight: 900;
  line-height: 1.13;
  letter-spacing: -1px;
}

.hero-title-main {
  display: inline-block;
  max-width: 100%;
  white-space: nowrap;
}

.hero h1 span {
  color: #f1c36b;
}

.hero h1 .hero-title-main {
  color: inherit;
}

.hero p {
  width: 415px;
  margin: 0 0 28px;
  color: #edf4ff;
  font-size: 15.5px;
  line-height: 1.65;
}

.hero-buttons {
  display: flex;
  gap: 22px;
  margin-bottom: 39px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 45px;
  border-radius: 5px;
  font-size: 13px;
  font-weight: 900;
  transition: transform 0.25s ease;
}

.btn:hover {
  transform: translateY(-2px);
}

.btn-gold {
  width: 166px;
  color: #04112e;
  background: linear-gradient(#ffe5a2, #d89a3c);
}

.btn-gold i {
  margin-left: 10px;
  font-style: normal;
}

.btn-dark {
  width: 145px;
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.62);
  background: rgba(2, 15, 45, 0.28);
}

.metric-row {
  position: absolute;
  width: 660px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 13px;
}

.metric {
  display: grid;
  grid-template-columns: 34px 1fr;
  grid-template-rows: 20px 22px;
  height: 54px;
  padding: 8px 10px;
  color: #fff;
  border: 1px solid rgba(154, 194, 255, 0.45);
  border-radius: 8px;
  background: rgba(2, 17, 49, 0.56);
  box-shadow: 0 0 12px rgba(12, 92, 220, 0.16);
  transition:
    transform 0.28s ease,
    border-color 0.28s ease,
    background-color 0.28s ease;
}

.metric:hover {
  transform: translateY(-4px);
  border-color: rgba(242, 201, 120, 0.62);
  background: rgba(255, 255, 255, 0.08);
}

.metric i {
  grid-row: 1 / 3;
  display: grid;
  place-items: center;
  width: 25px;
  height: 25px;
  color: #f1cf88;
  border: 1px solid #8fb7ef;
  border-radius: 50%;
  font-size: 14px;
  font-style: normal;
}

.metric small {
  color: #cbd8ec;
  font-size: 10px;
  font-weight: 700;
  line-height: 1;
}

.metric b {
  font-size: 12px;
  line-height: 1.1;
}

/* About */
.about {
  display: grid;
  grid-template-columns: minmax(0, 52%) minmax(360px, 48%);
  gap: 36px;
  align-items: center;
  min-height: 372px;
  padding-top: 42px;
  padding-bottom: 26px;
  background: linear-gradient(90deg, #fff, #f7fbff);
}

.about-content {
  max-width: 720px;
}

.about-content .mini-rule {
  margin: 18px 0 20px;
}

.values {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.values div,
.gov-list div {
  display: grid;
  grid-template-columns: 30px 1fr;
  grid-template-rows: auto auto;
}

.values i {
  grid-row: 1 / 3;
  color: #286bd1;
  font-size: 22px;
  font-style: normal;
}

.values b,
.gov-list b {
  font-size: 12px;
}

.values small,
.gov-list small {
  color: #5f6f88;
  font-size: 10px;
  line-height: 1.35;
}

.platform-visual {
  position: relative;
  min-height: 290px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: visible;
}

.platform-visual img {
  width: 94%;
  height: 300px;
  object-fit: contain;
  opacity: 1;
  filter: none;
  transform-origin: center center;
  animation: imageFloatSoft 5.8s ease-in-out infinite;
}

.center-ring,
.platform-visual .tag,
.platform-visual::before {
  display: none;
}

/* Focus */
.focus {
  padding-top: 14px;
  padding-bottom: 44px;
  background: linear-gradient(#fff, #f9fbff);
}

.intro {
  display: none;
}

.focus-grid,
.tech-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}

.focus-grid {
  gap: 12px;
  margin-top: 20px;
}

.focus-card {
  position: relative;
  height: 174px;
  padding: 19px 17px;
  border: 1px solid #d9e3f2;
  border-radius: 9px;
  background: #fff;
  box-shadow: 0 7px 18px rgba(9, 34, 79, 0.1);
  transition:
    transform 0.36s cubic-bezier(0.22, 1, 0.36, 1),
    box-shadow 0.36s ease,
    border-color 0.36s ease;
}

.focus-card:hover,
.tech-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 18px 38px rgba(8, 30, 72, 0.16);
}

.focus-card i {
  display: grid;
  place-items: center;
  width: 35px;
  height: 35px;
  margin-bottom: 12px;
  color: #2b7de8;
  background: #eaf3ff;
  border-radius: 9px;
  font-size: 17px;
  font-style: normal;
}
.focus-icon {
  display: block;
  width: 35px;
  height: 35px;
  margin-bottom: 12px;
  padding: 8px;
  object-fit: contain;
  background: #eaf3ff;
  border-radius: 9px;
}

.focus-card h3,
.tech-card h3 {
  margin: 0 0 8px;
  font-size: 15px;
  font-weight: 900;
  line-height: 1.1;
}

.focus-card p {
  margin: 0;
  color: #596983;
  font-size: 11px;
  line-height: 1.36;
}

.focus-card em,
.tech-card em {
  position: absolute;
  right: 15px;
  bottom: 12px;
  color: #e0a947;
  font-style: normal;
  font-weight: 900;
}

/* Technology */
.technology {
  padding-top: 14px;
  padding-bottom: 41px;
  background: #fff;
}

.tech-grid {
  gap: 13px;
  margin-top: 18px;
}

.tech-card {
  position: relative;
  height: 180px;
  padding: 20px 16px;
  overflow: hidden;
  color: #fff;
  border-radius: 8px;
  background:
    linear-gradient(
      90deg,
      rgba(2, 13, 42, 0.98) 0%,
      rgba(2, 13, 42, 0.9) 44%,
      rgba(2, 13, 42, 0.2) 72%,
      rgba(2, 13, 42, 0) 100%
    ),
    var(--img) center / cover no-repeat;
  box-shadow: 0 8px 18px rgba(5, 25, 62, 0.18);
  transition:
    transform 0.36s cubic-bezier(0.22, 1, 0.36, 1),
    box-shadow 0.36s ease,
    filter 0.36s ease;
}

.tech-card:hover {
  filter: saturate(1.08) contrast(1.02);
}

.tech-card h3,
.tech-card p,
.tech-card em {
  position: relative;
}

.tech-card h3 {
  margin-bottom: 12px;
  line-height: 1.16;
}

.tech-card p {
  width: 64%;
  margin: 0;
  color: #e1eaff;
  font-size: 10.5px;
  line-height: 1.45;
}

/* Governance */
.governance {
  display: grid;
  grid-template-columns: 36% 38% 26%;
  gap: 10px;
  align-items: center;
  height: 322px;
  padding-top: 20px;
  padding-bottom: 20px;
  background: linear-gradient(90deg, #fff, #f3f8ff);
}

.shield-visual {
  position: relative;
  height: 260px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.shield-visual img {
  width: 100%;
  height: 290px;
  object-fit: contain;
  opacity: 1;
  filter: none;
  mix-blend-mode: normal;
  transform-origin: center center;
  animation: imageFloatSoft 5.8s ease-in-out infinite;
}

.shield-visual::before,
.shield-visual::after,
.shield {
  display: none;
}

.gov-list {
  display: grid;
  gap: 14px;
}

.gov-list i {
  grid-row: 1 / 3;
  display: grid;
  place-items: center;
  width: 25px;
  height: 25px;
  color: #d59a37;
  background: #fff;
  border: 1px solid #e7c681;
  border-radius: 50%;
  font-size: 11px;
  font-style: normal;
}

.gov-list small {
  color: #5c6b82;
  line-height: 1.32;
}



/* Footer */
.footer {
  display: grid;
  grid-template-columns: 1.65fr 0.95fr 0.95fr 0.9fr 1.25fr;
  gap: 42px;
  padding-top: 31px;
  padding-bottom: 18px;
  color: #dce8ff;
  background: #03163b;
}

.footer .logo {
  color: #fff;
}

.footer .logo-v {
  font-size: 37px;
}

.footer .logo-text {
  font-size: 18px;
}

.footer-logo {
  display: inline-flex;
  align-items: center;
}

.footer-logo {
  width: 300px;
  height: 92px;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  align-self: flex-start;
  margin: 0 0 16px;
  overflow: visible;
  background: transparent;
  
}

.footer-logo-img {
  width: 300px;
  height: 92px;
  object-fit: contain;
  object-position: left center;
  display: block;
  transform: none !important;
  
}

.footer p,
.footer a {
  display: block;
  margin: 5px 0;
  color: #d9e5ff;
  font-size: 11px;
  line-height: 1.55;

}

.footer h4 {
  margin: 0 0 10px;
  color: #e0aa4e;
  font-size: 10px;
  letter-spacing: 1px;
  text-transform: uppercase;
}
.footer-brand {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.footer-logo {
  transform: none !important;
  margin-bottom: 16px !important;
}

.footer-brand p {
  transform: none !important;
  margin-top: 0 !important;
}
.copy {
  grid-column: 1 / -1;
  margin: 5px 0 0;
  padding-top: 11px;
  color: #91a4c9;
  text-align: center;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}
.nav a {
  color: #fff;
}

.lang {
  color: #fff;
}

.lang button {
  color: #fff;
}

.lang button.active {
  color: #fff;
}

.nav-toggle {
  color: #fff;
}

/* Motion */
.motion-ready .anim-reveal {
  opacity: 0;
  transform: translate3d(0, 34px, 0) scale(0.985);
  transition:
    opacity 0.78s cubic-bezier(0.22, 1, 0.36, 1),
    transform 0.78s cubic-bezier(0.22, 1, 0.36, 1);
  transition-delay: var(--delay, 0ms);
  will-change: opacity, transform;
}

.motion-ready .anim-reveal.is-visible {
  opacity: 1;
  transform: translate3d(0, 0, 0) scale(1);
}

.motion-ready .hero h1.anim-reveal,
.motion-ready .hero p.anim-reveal,
.motion-ready .hero-buttons.anim-reveal {
  transform: translate3d(-24px, 28px, 0) scale(0.985);
}

.motion-ready .metric.anim-reveal,
.motion-ready .focus-card.anim-reveal,
.motion-ready .tech-card.anim-reveal,
.motion-ready .gov-list > div.anim-reveal,
.motion-ready .values > div.anim-reveal {
  transform: translate3d(0, 26px, 0) scale(0.97);
}

.motion-ready .hero h1.anim-reveal.is-visible,
.motion-ready .hero p.anim-reveal.is-visible,
.motion-ready .hero-buttons.anim-reveal.is-visible,
.motion-ready .metric.anim-reveal.is-visible,
.motion-ready .focus-card.anim-reveal.is-visible,
.motion-ready .tech-card.anim-reveal.is-visible,
.motion-ready .gov-list > div.anim-reveal.is-visible,
.motion-ready .values > div.anim-reveal.is-visible {
  transform: translate3d(0, 0, 0) scale(1);
}

@keyframes imageFloatSoft {
  0%,
  100% {
    transform: translate3d(0, 0, 0) scale(1);
  }

  50% {
    transform: translate3d(0, -10px, 0) scale(1.015);
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation: none;
    transition: none;
    scroll-behavior: auto;
  }

  .motion-ready .anim-reveal {
    opacity: 1;
    transform: none;
  }
}

/* Desktop */
@media (min-width: 981px) {
  .section-pad {
    padding-left: 80px;
    padding-right: 80px;
  }
.focus-icon {
  width: 44px;
  height: 44px;
  margin-bottom: 18px;
  padding: 10px;
  border-radius: 12px;
}
  .eyebrow {
    margin-bottom: 14px;
    font-size: 12px;
    letter-spacing: 2.4px;
  }

  .about h2,
  .focus h2,
  .technology h2,
  .governance h2 {
    margin-bottom: 18px;
    font-size: clamp(34px, 2.7vw, 42px);
    line-height: 1.18;
  }

  .hero {
    grid-template-columns: 41% 59%;
    align-items: stretch;
  }

  .hero-copy {
    width: min(600px, 100%);
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding-top: 8px;
    padding-bottom: 104px;
  }

  .hero h1 {
    margin-bottom: 28px;
    font-size: clamp(42px, 3.75vw, 64px);
    line-height: 1.12;
    letter-spacing: -1.7px;
  }

  .hero p {
    width: min(500px, 100%);
    margin-bottom: 36px;
    font-size: 17px;
    line-height: 1.72;
  }

  .hero-buttons {
    gap: 24px;
    margin-bottom: 0;
  }

  .btn {
    height: 54px;
    border-radius: 7px;
    font-size: 14px;
  }

  .btn-gold {
    width: 190px;
  }

  .btn-dark {
    width: 166px;
  }

  .metric-row {
    left: 0;
    bottom: 0;
    width: min(720px, calc(100vw - 144px));
    gap: 16px;
  }

  .metric {
    grid-template-columns: 42px 1fr;
    grid-template-rows: 23px 26px;
    height: 66px;
    padding: 11px 13px;
    border-radius: 10px;
  }

  .metric i {
    width: 32px;
    height: 32px;
    font-size: 16px;
  }

  .metric small {
    font-size: 11px;
  }

  .metric b {
    font-size: 14px;
  }

  .about {
    grid-template-columns: minmax(560px, 52%) minmax(420px, 48%);
    align-items: center;
    column-gap: 64px;
    min-height: 520px;
    padding-top: 76px;
    padding-bottom: 72px;
  }

  .about-copy > p:not(.eyebrow),
  .gov-copy p {
    font-size: 16px;
    line-height: 1.82;
  }

  .about-content {
    max-width: 760px;
  }

  .about-content .mini-rule {
    width: 36px;
    margin: 18px 0 22px;
  }

  .values {
    gap: 24px;
    align-items: start;
  }

  .values i {
    font-size: 24px;
  }

  .values b {
    margin-bottom: 6px;
    font-size: 15px;
  }
    .value-icon {
  grid-row: 1 / 3;
  width: 20px;
  height: 20px;
  object-fit: contain;
  display: block;
}
  .values small {
    font-size: 12px;
    line-height: 1.6;
  }

  .platform-visual {
    min-height: 420px;
  }

  .platform-visual img {
    width: 100%;
    max-width: 620px;
    height: 420px;
  }

  .focus {
    padding-top: 24px;
    padding-bottom: 84px;
  }

  .focus .intro {
    display: block;
    max-width: 760px;
    margin: 0 auto 12px;
    color: #60728d;
    text-align: center;
    font-size: 16px;
    line-height: 1.8;
  }

  .focus-grid {
    gap: 20px;
    margin-top: 36px;
  }

  .focus-card {
    min-height: 252px;
    height: auto;
    padding: 28px 22px 44px;
    border-radius: 14px;
    box-shadow: 0 12px 28px rgba(9, 34, 79, 0.08);
  }

  .focus-card i {
    width: 44px;
    height: 44px;
    margin-bottom: 18px;
    border-radius: 12px;
    font-size: 20px;
  }

  .focus-card h3,
  .tech-card h3 {
    margin-bottom: 14px;
    font-size: 20px;
    line-height: 1.24;
  }

  .focus-card p {
    font-size: 13.5px;
    line-height: 1.72;
  }

  .focus-card em,
  .tech-card em {
    right: 18px;
    bottom: 16px;
    font-size: 19px;
  }

  .technology {
    padding-top: 22px;
    padding-bottom: 88px;
  }

  .tech-grid {
    gap: 18px;
    margin-top: 36px;
  }

  .tech-card {
    height: 228px;
    padding: 24px 20px;
    border-radius: 12px;
  }

  .tech-card p {
    width: 62%;
    font-size: 12.5px;
    line-height: 1.65;
  }

  .governance {
    grid-template-columns: 34% 38% 28%;
    gap: 24px;
    min-height: 410px;
    height: auto;
    padding-top: 44px;
    padding-bottom: 44px;
  }

  .shield-visual,
  .shield-visual img {
    height: 320px;
  }

  .gov-list {
    gap: 18px;
  }

  .gov-list i {
    width: 29px;
    height: 29px;
    font-size: 13px;
  }

  .gov-list b {
    margin-bottom: 4px;
    font-size: 14px;
  }

  .gov-list small {
    font-size: 12px;
    line-height: 1.6;
  }

  .footer {
    grid-template-columns: 1.7fr 1fr 1fr 1fr 1.2fr;
    gap: 48px;
    padding-top: 58px;
    padding-bottom: 34px;
    background: linear-gradient(180deg, #03163b 0%, #02102c 100%);
  }

  .footer-brand {
    padding-right: 20px;
  }

  .footer .logo {
    margin-bottom: 18px;
  }

  .footer-logo {
    width: 320px;
    height: 98px;
  }

  .footer-logo-img {
    width: 320px;
    height: 98px;
  }

  .footer .logo-v {
    font-size: 42px;
  }

  .footer .logo-text {
    font-size: 20px;
  }

  .footer h4 {
    margin-bottom: 14px;
    font-size: 11px;
    letter-spacing: 1.4px;
  }

  .footer p,
  .footer a {
    margin: 7px 0;
    font-size: 13px;
    line-height: 1.85;
  }

  .footer-brand p {
    max-width: 330px;
    color: #cfdcf7;
  }

  .copy {
    margin-top: 12px;
    padding-top: 16px;
    font-size: 12px;
  }
}

@media (min-width: 900px) and (max-width: 1440px) {
  .tech-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    max-width: 980px;
    margin-left: auto;
    margin-right: auto;
  }

  .tech-card {
    min-height: 260px;
    height: auto;
  }

  .tech-card p {
    width: 58%;
  }
}

@media (min-width: 1441px) {
  .hero h1 {
    font-size: 64px;
  }
}

/* Tablet */
@media (max-width: 980px) {
  .section-pad {
    padding-left: 28px;
    padding-right: 28px;
  }

  .header {
    gap: 20px;
    padding: 0 28px;
  }

  .nav {
    gap: 22px;
  }

  .hero {
    grid-template-columns: 1fr;
    height: calc(100vh - var(--header-h));
    height: calc(100dvh - var(--header-h));
    min-height: calc(100vh - var(--header-h));
    min-height: calc(100dvh - var(--header-h));
    padding-top: 64px;
    padding-bottom: 42px;
  }

  .hero-copy {
    width: auto;
  }

  .metric-row {
    position: relative;
    width: auto;
    grid-template-columns: repeat(2, 1fr);
  }

  .about,
  .governance {
    grid-template-columns: 1fr;
    height: auto;
  }

  .focus-grid,
  .tech-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .focus .intro {
    display: block;
    max-width: 680px;
    margin: 0 auto 22px;
    color: #60728d;
    text-align: center;
    font-size: 14px;
    line-height: 1.7;
  }
@media (max-width: 680px) {
  .value-icon {
    width: 30px;
    height: 30px;
  }
}
  .about,
  .focus,
  .technology,
  .governance,
  .footer {
    padding-top: 40px;
    padding-bottom: 40px;
  }

  .focus-card,
  .tech-card {
    min-height: 220px;
    height: auto;
  }

  .footer {
    grid-template-columns: repeat(2, 1fr);
  }

  .footer p,
  .footer a {
    font-size: 12px;
    line-height: 1.7;
  }
}

/* Mobile */
@media (max-width: 680px) {
  :root {
    --header-h: 68px;
  }

  .header {
    min-height: 0;
    height: var(--header-h);
    flex-wrap: wrap;
  }

  .logo-img {
    height: 54px;
  }

  .footer-logo,
  .footer-logo-img {
    width: 240px;
    height: 74px;
  }

  .nav-toggle {
    display: block;
    margin-left: auto;
  }

  .nav {
    order: 4;
    display: none;
    flex-direction: column;
    align-items: flex-start;
    width: 100%;
    gap: 0;
  }

  .nav.open {
    display: flex;
  }

  .nav a {
    padding: 12px 0;
  }

  .lang {
    margin-left: 0;
  }

  .hero h1 {
    font-size: 34px;
  }

  .hero-title-main {
    white-space: normal;
  }

  .hero p {
    width: auto;
  }

  .hero-buttons {
    flex-direction: column;
    width: 180px;
  }

  .metric-row,
  .focus-grid,
  .tech-grid,
  .values,
  .footer {
    grid-template-columns: 1fr;
  }

  .about {
    padding-top: 34px;
  }

  .platform-visual {
    min-height: 230px;
  }

  .tag {
    display: none;
  }

  .governance {
    grid-template-columns: 1fr;
    gap: 18px;
    height: auto;
    min-height: 0;
    padding-top: 38px;
    padding-bottom: 38px;
    align-items: start;
  }

  .gov-copy {
    position: relative;
    z-index: 2;
  }

  .shield-visual {
    height: auto;
    min-height: 0;
    margin: 4px auto 0;
    width: min(100%, 360px);
  }

  .shield-visual img {
    width: 100%;
    height: auto;
    max-height: 300px;
    object-fit: contain;
    animation: none;
  }

  .gov-list {
    gap: 16px;
  }

  .footer {
    gap: 16px;
  }

  .copy {
    grid-column: auto;
  }
}

@media (min-width: 1440px) {
  .section-pad {
    padding-left: max(96px, calc((100vw - 1500px) / 2));
    padding-right: max(96px, calc((100vw - 1500px) / 2));
  }

  .focus-grid,
  .tech-grid {
    max-width: 1500px;
    margin-left: auto;
    margin-right: auto;
  }
}
@media (max-width: 680px) {
  .values {
    display: grid;
    grid-template-columns: 1fr;
    gap: 22px;
  }

  .values div {
    display: grid;
    grid-template-columns: 34px 1fr;
    grid-template-rows: auto auto;
    column-gap: 10px;
    align-items: start;
  }

  .value-icon {
    grid-row: 1 / 3;
    width: 24px !important;
    height: 24px !important;
    max-width: 24px;
    max-height: 24px;
    object-fit: contain;
    display: block;
    margin-top: 2px;
  }

  .values b {
    font-size: 16px;
    line-height: 1.2;
  }

  .values small {
    font-size: 12px;
    line-height: 1.45;
  }
}



.partners-title span {
  display: block;
  width: 58px;
  height: 4px;
  margin: 22px auto 0;
  background: linear-gradient(90deg, #4f8df7 0 50%, #ff6b50 50% 100%);
}

/* 鍚堜綔浼欎即妯″潡 - 鏈€缁堢増 */
.partners-section {
  width: 100%;
  padding: 72px 0 88px;
  background: #fff;
}

.partners-title {
  text-align: center;
  margin-bottom: 34px;
}

.partners-title h2 {
  margin: 0;
  color: #333;
  font-size: 30px;
  font-weight: 700;
  letter-spacing: 2px;
}

.partners-title span {
  display: block;
  width: 58px;
  height: 4px;
  margin: 22px auto 0;
  background: linear-gradient(90deg, #4f8df7 0 50%, #ff6b50 50% 100%);
}

.partners-card {
  width: min(980px, calc(100% - 48px)) !important;
  margin: 0 auto !important;
  overflow: hidden;
  border-radius: 8px;
  background: #fff;
  border: 1px solid rgba(15, 35, 80, 0.08);
  box-shadow: 0 10px 32px rgba(20, 40, 80, 0.05);
}

.partners-stats {
  height: 118px;
  display: grid;
  grid-template-columns: 1fr 1px 1fr 1px 1fr;
  align-items: center;
  background: linear-gradient(105deg, #eef3ff 0%, #f8f8fd 55%, #fff8f5 100%);
}

.partners-stat {
  text-align: center;
  min-width: 0;
}

.partners-stat strong {
  display: block;
  font-size: 30px;
  line-height: 1;
  font-weight: 800;
  color: #30333a;
}

.partners-stat span {
  display: block;
  margin-top: 8px;
  font-size: 14px;
  color: #747b88;
}

.partners-divider {
  width: 1px;
  height: 54px;
  background: #c99b6b;
}

.partners-marquee {
  width: 100%;
  height: 150px;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: #fff;
  border-top: 1px solid rgba(15, 35, 80, 0.06);
}

.partners-track {
  display: flex;
  align-items: center;
  gap: 58px;
  width: max-content;
  min-width: max-content;
  animation: partnersMove 26s linear infinite;
}

.partners-track img {
  height: 42px;
  width: auto;
  flex: 0 0 auto;
  object-fit: contain;
}

@keyframes partnersMove {
  from {
    transform: translateX(0);
  }

  to {
    transform: translateX(-50%);
  }
}

/* 鎵嬫満绔?*/
@media (max-width: 680px) {
  .partners-section {
    padding: 46px 0 48px;
  }

  .partners-title h2 {
    font-size: 24px;
  }

  .partners-card {
    width: calc(100% - 32px) !important;
  }

  .partners-stats {
    height: 96px;
  }

  .partners-stat strong {
    font-size: 22px;
  }

  .partners-stat span {
    font-size: 11px;
    white-space: nowrap;
  }

  .partners-divider {
    height: 38px;
  }

  .partners-marquee {
    height: 105px;
  }

  .partners-track {
    gap: 32px;
    animation-duration: 18s;
  }

  .partners-track img {
    height: 28px;
  }
}
.partners-card {
  width: min(1500px, calc(100% - 48px)) !important;
}

.partners-stats {
  height: 180px;
}

.partners-stat strong {
  font-size: 38px;
}

.partners-stat span {
  font-size: 16px;
}

.partners-divider {
  height: 70px;
}

.partners-marquee {
  height: 260px;
}

.partners-track img {
  height: 52px;
}

/* Partners section */
.partners-section {
  position: relative;
  width: 100%;
  padding: 72px 0 88px;
  background:
    radial-gradient(circle at 82% -20%, rgba(220, 120, 70, 0.1), transparent 28%),
    repeating-radial-gradient(circle at 82% -14%, rgba(228, 134, 83, 0.09) 0 1px, transparent 1px 20px),
    #fff;
}

.partners-title {
  margin-bottom: 36px;
  text-align: center;
}

.partners-title h2 {
  margin: 0;
  color: #33363b;
  font-size: 30px;
  font-weight: 500;
  letter-spacing: 0;
}

.partners-title span {
  display: block;
  width: 44px;
  height: 3px;
  margin: 22px auto 0;
  background: var(--gold);
}

.partners-card {
  width: min(1200px, calc(100% - 96px)) !important;
  margin: 0 auto !important;
  overflow: hidden;
  border: 1px solid rgba(232, 118, 72, 0.18);
  border-radius: 6px;
  background: rgba(255, 255, 255, 0.96);
  box-shadow: none;
}

.partners-stats {
  height: 148px;
  display: grid;
  grid-template-columns: 1fr 1px 1fr 1px 1fr;
  align-items: center;
  background: linear-gradient(105deg, rgba(239, 244, 255, 0.9) 0%, rgba(248, 248, 253, 0.9) 54%, rgba(255, 248, 245, 0.92) 100%);
}

.partners-stat {
  min-width: 0;
  text-align: center;
}

.partners-stat strong {
  display: block;
  color: #303238;
  font-size: 38px;
  font-weight: 800;
  line-height: 1;
}

.partners-stat span {
  display: block;
  margin-top: 8px;
  color: #777d89;
  font-size: 16px;
}

.partners-divider {
  width: 1px;
  height: 68px;
  background: #e08f61;
}

.partners-marquee {
  position: relative;
  width: 100%;
  height: 235px;
  display: grid;
  align-content: center;
  gap: 36px;
  overflow: hidden;
  background: #fff;
}

.partners-marquee::before,
.partners-marquee::after {
  content: "";
  position: absolute;
  top: 0;
  z-index: 2;
  width: 70px;
  height: 100%;
  pointer-events: none;
}

.partners-marquee::before {
  left: 0;
  background: linear-gradient(90deg, #fff, rgba(255, 255, 255, 0));
}

.partners-marquee::after {
  right: 0;
  background: linear-gradient(270deg, #fff, rgba(255, 255, 255, 0));
}

.partners-track {
  display: flex;
  align-items: center;
  gap: 56px;
  width: max-content;
  min-width: max-content;
  padding: 0 28px;
  animation: partnersMove 96s linear infinite;
  will-change: transform;
}

.partners-row {
  width: 100%;
  overflow: hidden;
}

.partners-track img {
  flex: 0 0 auto;
  width: auto;
  max-width: 180px;
  height: 54px;
  object-fit: contain;
}

@media (max-width: 900px) {
  .partners-section {
    padding: 52px 0 60px;
  }

  .partners-card {
    width: min(100% - 32px, 720px) !important;
  }

  .partners-stats {
    height: 116px;
  }

  .partners-stat strong {
    font-size: 30px;
  }

  .partners-stat span {
    font-size: 14px;
  }

  .partners-divider {
    height: 48px;
  }

  .partners-marquee {
    height: 170px;
    gap: 26px;
  }

  .partners-track {
    gap: 34px;
    animation-duration: 78s;
  }

  .partners-track img {
    max-width: 132px;
    height: 38px;
  }
}

@media (max-width: 520px) {
  .partners-section {
    padding: 42px 0 48px;
  }

  .partners-title {
    margin-bottom: 28px;
  }

  .partners-title h2 {
    font-size: 24px;
  }

  .partners-title span {
    width: 42px;
    margin-top: 18px;
  }

  .partners-card {
    width: calc(100% - 24px) !important;
  }

  .partners-stats {
    height: 98px;
  }

  .partners-stat strong {
    font-size: 24px;
  }

  .partners-stat span {
    margin-top: 7px;
    font-size: 12px;
    white-space: nowrap;
  }

  .partners-divider {
    height: 38px;
  }

  .partners-marquee {
    height: 136px;
    gap: 22px;
  }

  .partners-marquee::before,
  .partners-marquee::after {
    width: 28px;
  }

  .partners-track {
    gap: 24px;
    padding: 0 14px;
    animation-duration: 72s;
  }

  .partners-track img {
    max-width: 112px;
    height: 30px;
  }
}

/* Office environment */
.office-section {
  padding-top: 72px;
  padding-bottom: 96px;
  background: linear-gradient(180deg, #fff 0%, #f7fbff 100%);
}

.office-title {
  margin-bottom: 36px;
  text-align: center;
}

.office-title h2 {
  margin: 0;
  color: #33363b;
  font-size: 30px;
  font-weight: 500;
  letter-spacing: 0;
}

.office-title span {
  display: block;
  width: 44px;
  height: 3px;
  margin: 22px auto 0;
  background: var(--gold);
}

.office-carousel {
  position: relative;
  width: min(1180px, 100%);
  margin: 0 auto;
}

.office-viewport {
  position: relative;
  overflow: hidden;
  border-radius: 8px;
  background: #edf3fb;
  box-shadow: 0 24px 60px rgba(12, 42, 86, 0.16);
}

.office-swiper {
  width: 100%;
  aspect-ratio: 16 / 8.2;
}

.office-slide {
  position: relative;
  height: 100%;
  margin: 0;
  overflow: hidden;
  background: #eef4fb;
}

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

.office-slide::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 36%;
  background: linear-gradient(180deg, rgba(3, 18, 50, 0), rgba(3, 18, 50, 0.18));
  pointer-events: none;
}

.office-arrow {
  position: absolute;
  top: 50%;
  z-index: 3;
  width: 64px;
  height: 96px;
  display: grid;
  place-items: center;
  border: 0;
  border-radius: 0;
  color: rgba(255, 255, 255, 0.92);
  background: transparent;
  text-shadow: 0 2px 16px rgba(0, 0, 0, 0.45);
  filter: drop-shadow(0 5px 14px rgba(0, 0, 0, 0.34));
  cursor: pointer;
  font-size: 0;
  line-height: 1;
  transition: color 0.2s ease, transform 0.2s ease, opacity 0.2s ease;
}

.office-arrow::before {
  content: "";
  width: 20px;
  height: 20px;
  border-top: 3px solid currentColor;
  border-right: 3px solid currentColor;
}

.office-arrow:hover {
  color: var(--gold);
  transform: translateY(-50%) scale(1.08);
}

.office-arrow-prev {
  left: 12px;
  transform: translateY(-50%);
}

.office-arrow-prev::before {
  transform: rotate(-135deg);
}

.office-arrow-next {
  right: 12px;
  transform: translateY(-50%);
}

.office-arrow-next::before {
  transform: rotate(45deg);
}

@media (max-width: 900px) {
  .office-section {
    padding-top: 56px;
    padding-bottom: 72px;
  }

  .office-slide {
    aspect-ratio: auto;
  }

  .office-swiper {
    aspect-ratio: 4 / 3;
  }

  .office-arrow {
    width: 52px;
    height: 80px;
  }

  .office-arrow::before {
    width: 16px;
    height: 16px;
  }

  .office-arrow-prev {
    left: 12px;
  }

  .office-arrow-next {
    right: 12px;
  }

}

@media (max-width: 620px) {
  .office-section {
    padding-top: 44px;
    padding-bottom: 56px;
  }

  .office-title {
    margin-bottom: 28px;
  }

  .office-title h2 {
    font-size: 24px;
  }

  .office-slide {
    aspect-ratio: auto;
  }

  .office-swiper {
    aspect-ratio: 1 / 1;
  }

  .office-arrow {
    width: 46px;
    height: 68px;
  }

  .office-arrow::before {
    width: 14px;
    height: 14px;
    border-width: 2px;
  }

}
