
:root {
  color-scheme: light;
  --font-sans: "Geist", "Inter", ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --geist-background: #ffffff;
  --geist-foreground: #0a0a0a;
  --geist-muted: #666666;
  --hero-blue: #7191d0;
  --hero-blue-soft: #aab8d5;
  --hero-cloud: #ece9e6;
  --hero-bg-bottom: linear-gradient(180deg, var(--hero-blue) 0%, var(--hero-blue-soft) 55%, var(--hero-cloud) 100%);
  --hero-bg-top: linear-gradient(180deg, rgb(255 255 255 / 0.04), rgb(255 255 255 / 0.12));
  --hero-max-width: 1820px;
}

- {
box-sizing: border-box;
}

html,
body {
  min-height: 100%;
}

body {
  margin: 0;
  background: var(--geist-background);
  color: var(--geist-foreground);
  font-family: var(--font-sans);
  -webkit-font-smoothing: antialiased;
  text-rendering: geometricPrecision;
}

a {
  color: inherit;
  text-decoration: none;
}

.mission {
  position: relative;
  z-index: 40;
  min-height: 100vh;
  margin-top: -12vh;
  background: #ffffff;
  color: #161616;
}

.mission__inner {
  display: grid;
  grid-template-columns: minmax(240px, 0.95fr) minmax(0, 2fr);
  grid-template-rows: auto minmax(360px, 1fr);
  column-gap: clamp(56px, 8vw, 170px);
  row-gap: clamp(76px, 5vw, 104px);
  width: min(100% - 96px, var(--hero-max-width));
  min-height: 100vh;
  margin: 0 auto;
  padding: clamp(34px, 3vw, 54px) 0 clamp(32px, 4vw, 62px);
}

.mission__eyebrow {
  grid-column: 1;
  grid-row: 1;
  align-self: start;
  margin: 0;
  color: #202020;
  font-size: clamp(13px, 0.9vw, 16.8px);
  font-weight: 700;
  line-height: 1.22;
  letter-spacing: 0;
}

.mission__statement {
  grid-column: 2;
  grid-row: 1;
  align-self: start;
  max-width: 1180px;
}

.mission__statement h2 {
  margin: 0;
  color: #141414;
  font-size: clamp(29px, 1.95vw, 41.3px);
  font-weight: 260;
  line-height: 1.18;
  letter-spacing: 0;
}

.mission__button {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-top: clamp(46px, 3.3vw, 72px);
  color: #171717;
  font-size: clamp(13.8px, 1vw, 18.3px);
  font-weight: 700;
  line-height: 1;
}

.mission__button span:last-child {
  display: inline-flex;
  align-items: center;
  min-height: clamp(58px, 3.65vw, 72px);
  padding: 0 clamp(18px, 1.35vw, 26px);
  border: 1px solid #c6c6c6;
  border-radius: 5px;
  box-shadow: inset 0 0 0 1px rgb(0 0 0 / 0.04);
}

.mission__button-icon {
  position: relative;
  display: inline-grid;
  place-items: center;
  width: clamp(58px, 3.65vw, 72px);
  aspect-ratio: 1;
  border-radius: 5px;
  background: #d8e8ff;
  transition:
    background 180ms ease,
    transform 180ms ease;
}

.mission__button-icon .ph {
  font-size: clamp(22px, 1.5vw, 28px);
  color: currentColor;
  display: block;
}

.mission__button:hover .mission__button-icon {
  background: #c7dcfb;
  transform: translate(2px, 2px);
}

.mission__support {
  grid-column: 1;
  grid-row: 2;
  align-self: start;
  max-width: 520px;
  margin: 0;
  color: #5f5f5f;
  font-size: clamp(23.7px, 1.56vw, 30.6px);
  font-weight: 370;
  line-height: 1.18;
  letter-spacing: 0;
}

.mission__media {
  grid-column: 2;
  grid-row: 2;
  align-self: start;
  width: 100%;
  aspect-ratio: 16 / 9;
  overflow: hidden;
  background: transparent;
}

.hero {
  position: relative;
  height: 180vh;
  min-height: 1238px;
  overflow: clip;
  background: var(--hero-blue);
}

.hero__background {
  position: sticky;
  top: 0;
  z-index: 0;
  height: 100vh;
  overflow: hidden;
  background:
    linear-gradient(
      180deg,
      var(--hero-top, #7191d0) 0%,
      var(--hero-mid, #aab8d5) 55%,
      var(--hero-bottom, #ece9e6) 100%
    );
}

.hero__bg-layer {
  position: absolute;
  inset: 0;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  pointer-events: none;
}

.hero__bg-layer--bottom {
  background:
    radial-gradient(circle at 52% 26%, rgb(255 255 255 / 0.22), transparent 35%),
    linear-gradient(180deg, rgb(70 100 170 / 0.14), rgb(255 255 255 / 0));
}

.hero__bg-layer--top {
  z-index: 1;
  background: var(--hero-bg-top);
  mix-blend-mode: screen;
}

.hero__stars {
  position: absolute;
  inset: 0 0 auto;
  z-index: 2;
  height: 210px;
  pointer-events: none;
  background-image:
    radial-gradient(circle, rgb(255 255 255 / 0.78) 0 1px, transparent 1.8px),
    radial-gradient(circle, rgb(255 255 255 / 0.58) 0 1px, transparent 1.6px),
    radial-gradient(circle, rgb(255 255 255 / 0.68) 0 1px, transparent 1.7px);
  background-position:
    10% 24%,
    38% 16%,
    76% 32%;
  background-size:
    180px 94px,
    260px 120px,
    340px 150px;
  opacity: 0.45;
  animation: hero-stars-twinkle 4.8s ease-in-out infinite alternate;
}

@keyframes hero-stars-twinkle {
  0% { opacity: 0.18; filter: brightness(0.92); }
  50% { opacity: 0.58; filter: brightness(1.12); }
  100% { opacity: 0.34; filter: brightness(1); }
}

.hero__nav {
  position: fixed;
  top: 0;
  left: 50%;
  z-index: 100;
  display: grid;
  grid-template-columns: minmax(220px, 1fr) auto minmax(180px, 1fr);
  align-items: center;
  gap: 32px;
  width: min(100% - 96px, var(--hero-max-width));
  margin: 0;
  padding: 27px 16px 16px;
  color: #ffffff;
  transform: translate3d(-50%, 0, 0);
  transition:
    background-color 300ms ease,
    color 300ms ease,
    transform 300ms ease,
    box-shadow 300ms ease,
    border-color 300ms ease,
    padding 300ms ease,
    top 300ms ease;
  border: 1px solid transparent;
  border-radius: 0;
}

.hero__nav.nav--scroll-down {
  transform: translate3d(-50%, 16px, 0);
  background-color: rgba(255, 255, 255, 0.88);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  color: #111111;
  padding: 14px 24px;
  border-radius: 40px;
  border-color: rgba(0, 0, 0, 0.08);
  box-shadow:
    0 12px 30px -10px rgba(0, 0, 0, 0.08),
    0 4px 12px -5px rgba(0, 0, 0, 0.03);
}

.hero__nav.nav--scroll-down .hero__links { color: rgba(17, 17, 17, 0.8); }
.hero__nav.nav--scroll-down .hero__links a { color: inherit; }
.hero__nav.nav--scroll-down .hero__links a:hover { color: #111111; }
.hero__nav.nav--scroll-down .hero__cta { background: #111111; color: #ffffff; box-shadow: none; }

.hero__nav.nav--scroll-up {
  transform: translate3d(-50%, -100px, 0);
  pointer-events: none;
}

.brand {
  display: inline-flex;
  align-items: center;
  justify-self: start;
  min-width: 0;
}

.brand__text {
  color: #ffffff;
  font-size: clamp(20px, 2.2vw, 28px);
  font-weight: 600;
  line-height: 1;
  letter-spacing: 0.02em;
  transition: opacity 300ms ease, transform 300ms ease;
}

.brand:hover .brand__text {
  opacity: 0.85;
  transform: scale(1.02);
}

.brand__logo {
  display: block;
  height: clamp(38px, 4.5vw, 52px);
  width: auto;
  object-fit: contain;
  transition: opacity 300ms ease, transform 300ms ease;
}

.brand:hover .brand__logo {
  opacity: 0.85;
  transform: scale(1.02);
}

.hero__links {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(22px, 2.55vw, 44px);
  color: rgb(255 255 255 / 0.9);
  font-size: 14px;
  font-weight: 600;
  line-height: 20px;
  white-space: nowrap;
  transition: color 300ms ease;
}

.hero__links a { transition: color 160ms ease; }
.hero__links a:hover { color: #ffffff; }

.hero__cta {
  justify-self: end;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 122px;
  min-height: 46px;
  padding: 0 17px;
  border-radius: 6px;
  background: rgb(233 240 255 / 0.9);
  color: #111111;
  font-size: 14px;
  font-weight: 600;
  line-height: 20px;
  box-shadow: inset 0 0 0 1px rgb(255 255 255 / 0.42);
  transition:
    background 160ms ease,
    transform 160ms ease,
    color 160ms ease;
}

.hero__cta:hover { background: #ffffff; transform: translateY(-1px); }

.hero__content {
  position: absolute;
  inset: 0;
  z-index: 1;
  display: grid;
  place-items: center;
  height: 100vh;
  width: min(100%, var(--hero-max-width));
  margin: 0 auto;
  pointer-events: none;
}

.hero__title {
  position: fixed;
  top: calc(50% - 56px - clamp(76px, 7vw, 112px));
  left: 4%;
  z-index: 10;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  margin: 0;
  width: 96vw;
  color: #ffffff;
  font-weight: 200;
  letter-spacing: 0;
  line-height: 0.88;
  pointer-events: none;
  transform: translate3d(0, var(--scroll-y, 0px), 0);
  will-change: transform, opacity;
}

.hero__title-line {
  display: block;
  font-size: clamp(116px, 14vw, 220px);
  background: linear-gradient(110deg, #ffffff 0%, #ffffff 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: #ffffff;
  transition:
    color 360ms ease,
    text-shadow 360ms ease,
    filter 360ms ease;
  white-space: nowrap;
}

.hero__title-line--one { position: relative; z-index: 10; }
.hero__title-subtitle {
  display: block;
  margin-top: clamp(12px, 1.2vw, 22px);
  background: linear-gradient(110deg, #ffffff 0%, #ffffff 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: rgb(255 255 255 / 0.94);
  font-size: clamp(28px, 3.05vw, 56px);
  font-weight: 720;
  line-height: 1;
  letter-spacing: 0.16em;
  text-shadow: 0 14px 34px rgb(0 0 0 / 0.14);
  transition:
    color 360ms ease,
    text-shadow 360ms ease,
    filter 360ms ease;
  white-space: nowrap;
}

.hero__title-row {
  position: fixed;
  top: calc(50% - 56px + clamp(146px, 11.5vw, 190px));
  left: 4%;
  z-index: 10;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0;
  color: #ffffff;
  font-weight: 200;
  pointer-events: none;
  transform: translate3d(15vw, var(--scroll-y, 0px), 0);
  will-change: transform, opacity;
}

.hero__title-word {
  display: flex;
  gap: 0;
  line-height: 0.88;
}

.hero__title-subtitle--row {
  margin-top: clamp(10px, 1vw, 18px);
  padding-left: clamp(5px, 0.45vw, 12px);
}

.hero__title-line--two,
.hero__title-line--three { position: relative; }
.hero__title-line--three { transform: none; }

.hero__slogan {
  position: fixed;
  top: 50%;
  right: clamp(42px, 7vw, 132px);
  z-index: 10;
  display: flex;
  flex-direction: row-reverse;
  align-items: flex-start;
  gap: clamp(16px, 1.6vw, 34px);
  color: #ffffff;
  font-weight: 200;
  line-height: 1;
  pointer-events: none;
  transform: translate3d(0, calc(-50% + var(--scroll-y, 0px)), 0);
  will-change: transform, opacity;
}

.hero__slogan span {
  display: block;
  writing-mode: vertical-rl;
  text-orientation: upright;
  background: linear-gradient(180deg, #ffffff 0%, #ffffff 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: #ffffff;
  font-size: clamp(54px, 5.4vw, 104px);
  letter-spacing: 0;
  text-shadow: 0 14px 34px rgb(0 0 0 / 0.14);
  transition:
    color 360ms ease,
    text-shadow 360ms ease,
    filter 360ms ease,
    transform 360ms ease;
}

.hero:hover .hero__title-line,
.hero:hover .hero__title-subtitle,
.hero:hover .hero__slogan span,
.hero.is-text-gradient .hero__title-line,
.hero.is-text-gradient .hero__title-subtitle,
.hero.is-text-gradient .hero__slogan span,
.hero:focus-within .hero__title-line,
.hero:focus-within .hero__title-subtitle,
.hero:focus-within .hero__slogan span {
  color: transparent;
  text-shadow:
    0 12px 28px rgb(40 138 255 / 0.18),
    0 0 36px rgb(125 225 255 / 0.28);
  filter: saturate(1.15);
}

.hero:hover .hero__title-line,
.hero.is-text-gradient .hero__title-line,
.hero:focus-within .hero__title-line {
  background-image: linear-gradient(110deg, #ffffff 0%, #a9d8ff 38%, #47d7ff 62%, #ffffff 100%);
}

.hero:hover .hero__title-subtitle,
.hero.is-text-gradient .hero__title-subtitle,
.hero:focus-within .hero__title-subtitle {
  background-image: linear-gradient(110deg, #ffffff 0%, #b7dcff 36%, #66f2ff 68%, #ffffff 100%);
}

.hero:hover .hero__slogan span,
.hero.is-text-gradient .hero__slogan span,
.hero:focus-within .hero__slogan span {
  background-image: linear-gradient(180deg, #ffffff 0%, #9fd7ff 34%, #36d9ff 66%, #ffffff 100%);
  transform: translateY(-4px);
}

.engine-visual {
  position: fixed;
  z-index: 5;
  left: 50%;
  top: 50%;
  width: clamp(400px, 50vw, 700px);
  height: auto;
  transform: translate3d(-50%, calc(-50% + var(--scroll-y, 0px)), 0);
  will-change: transform, opacity;
  perspective: 1200px;
  pointer-events: auto;
}

.engine-visual__wrapper {
  isolation: isolate;
  position: relative;
  width: 100%;
  height: 100%;
  transform-style: preserve-3d;
  transition: transform 0.3s cubic-bezier(0.23, 1, 0.32, 1);
  will-change: transform;
}

.engine-visual__wrapper::before,
.engine-visual__wrapper::after {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  z-index: 0;
  width: 128%;
  aspect-ratio: 1;
  border-radius: 50%;
  pointer-events: none;
  transform: translate(-50%, -50%);
  opacity: 0.95;
  filter: drop-shadow(0 0 22px rgb(118 211 255 / 0.45));
}

.engine-visual__wrapper::before {
  border: 3px solid rgb(255 255 255 / 0.72);
  border-inline-color: rgb(90 200 255 / 0.24);
  background:
    conic-gradient(
      from 18deg,
      transparent 0 9%,
      rgb(255 255 255 / 0.92) 11%,
      rgb(78 184 255 / 0.88) 14%,
      transparent 19% 48%,
      rgb(255 255 255 / 0.72) 52%,
      rgb(80 190 255 / 0.76) 55%,
      transparent 61% 100%
    );
  -webkit-mask: radial-gradient(farthest-side, transparent calc(100% - 12px), #000 calc(100% - 10px));
  mask: radial-gradient(farthest-side, transparent calc(100% - 12px), #000 calc(100% - 10px));
  box-shadow:
    0 0 0 1px rgb(255 255 255 / 0.16),
    0 0 34px rgb(112 205 255 / 0.52),
    0 0 88px rgb(255 255 255 / 0.24);
  animation: hero-ring-spin 12s linear infinite;
}

.engine-visual__wrapper::after {
  width: 92%;
  border: 2px dashed rgb(255 255 255 / 0.62);
  border-block-color: rgb(75 195 255 / 0.28);
  box-shadow:
    inset 0 0 30px rgb(77 186 255 / 0.18),
    0 0 38px rgb(255 255 255 / 0.18);
  animation: hero-ring-spin 8s linear infinite reverse;
}

.engine-visual__asset {
  position: relative;
  z-index: 2;
  display: block;
  width: 100%;
  height: auto;
  object-fit: contain;
  object-position: center;
  filter: drop-shadow(0 30px 60px rgba(0, 0, 0, 0.35));
  transition: filter 0.3s ease;
}

.engine-visual:hover .engine-visual__asset {
  filter: drop-shadow(0 40px 80px rgba(0, 0, 0, 0.45));
}

@keyframes hero-ring-spin {
  from { transform: translate(-50%, -50%) rotate(0deg); }
  to { transform: translate(-50%, -50%) rotate(360deg); }
}

.hero__caption {
  position: fixed;
  z-index: 4;
  left: clamp(24px, 3.85vw, 78px);
  bottom: 28px;
  display: inline-flex;
  align-items: center;
  gap: 24px;
  max-width: min(170px, calc(50vw - 112px));
  margin: 0;
  color: rgb(42 42 42 / 0.58);
  font-size: 16px;
  font-weight: 400;
  line-height: 22px;
  letter-spacing: 0;
  transform: translate3d(0, var(--scroll-y, 0px), 0);
  will-change: transform, opacity;
}

.hero__caption::before {
  content: "";
  display: block;
  width: 1px;
  height: 44px;
  background: rgb(42 42 42 / 0.32);
}

.hero.is-past .hero__title,
.hero.is-past .hero__title-row,
.hero.is-past .hero__slogan,
.hero.is-past .hero__caption,
.hero.is-past .engine-visual {
  opacity: 0;
  pointer-events: none;
}

@media (max-width: 1180px) {
  .mission__inner {
    grid-template-columns: minmax(190px, 0.7fr) minmax(0, 1.7fr);
    column-gap: clamp(36px, 5vw, 72px);
    width: min(100% - 48px, var(--hero-max-width));
  }
  .mission__statement h2 { font-size: clamp(26px, 3.37vw, 38.2px); }
  .mission__support { font-size: clamp(20.6px, 2.3vw, 26px); }
  .hero__nav {
    grid-template-columns: auto 1fr auto;
    width: min(100% - 48px, var(--hero-max-width));
  }
  .hero__links { gap: 20px; font-size: 14px; }
  .brand__name { font-size: 22px; }
  .hero__cta { min-width: 122px; min-height: 46px; font-size: 14px; }
  .hero__slogan { right: 32px; }
  .hero__slogan span { font-size: clamp(44px, 5vw, 72px); }
}

@media (max-width: 860px) {
  .mission { margin-top: -8vh; }
  .mission__inner {
    display: flex;
    flex-direction: column;
    gap: 44px;
    width: min(100% - 48px, var(--hero-max-width));
    min-height: auto;
    padding: 34px 0 40px;
  }
  .mission__statement { max-width: none; }
  .mission__statement h2 { font-size: clamp(26px, 7.65vw, 39.8px); line-height: 1.1; }
  .mission__button { margin-top: 34px; font-size: 13.8px; }
  .mission__button-icon { width: 56px; }
  .mission__support { max-width: 640px; margin: 52px 0 0; font-size: clamp(19.9px, 5.35vw, 26px); }
  .mission__media { margin-top: 8px; }
  .hero { height: 180vh; min-height: 1238px; }
  .hero__nav { grid-template-columns: 1fr auto; padding-top: 22px; }
  .hero__links { display: none; }
  .hero__content { height: 100vh; }
  .hero__title-line { font-size: clamp(82px, 25vw, 150px); }
  .hero__title-subtitle { font-size: clamp(23px, 7vw, 38px); letter-spacing: 0.1em; }
  .hero__title { top: calc(50% - 56px - clamp(74px, 17vw, 112px)); left: 5%; }
  .hero__title-row { top: calc(50% - 56px + clamp(116px, 27vw, 166px)); left: 5%; transform: translate3d(8vw, var(--scroll-y, 0px), 0); }
  .hero__slogan { display: none; }
  .engine-visual {
    top: 50%;
    width: clamp(300px, 70vw, 500px);
  }
  .hero__caption { right: 24px; bottom: 24px; max-width: min(170px, calc(100vw - 48px)); font-size: 16px; line-height: 22px; }
}

@media (max-width: 560px) {
  .mission__inner { width: min(100% - 32px, var(--hero-max-width)); }
  .mission__eyebrow { max-width: 240px; font-size: 12.2px; }
  .mission__statement h2 { font-size: clamp(23.7px, 7.19vw, 32.1px); }
  .mission__support { font-size: clamp(18.3px, 5.97vw, 23.7px); }
  .mission__media { aspect-ratio: 4 / 3; }
  .hero__nav { width: min(100% - 32px, var(--hero-max-width)); gap: 16px; }
  .brand__mark { width: 24px; }
  .brand__name { font-size: 17px; }
  .hero__cta { min-width: auto; min-height: 38px; padding: 0 12px; font-size: 13px; }
  .hero__title-line { font-size: clamp(74px, 24vw, 120px); }
  .hero__title-subtitle { font-size: clamp(20px, 6.4vw, 30px); letter-spacing: 0.08em; }
  .hero__title-row { gap: 0; transform: translate3d(6vw, var(--scroll-y, 0px), 0); }
  .hero__caption { display: none; }
}

.showcase-film {
  position: fixed;
  top: 0;
  left: 0;
  width: 1px;
  height: 1px;
  z-index: 45;
  overflow: hidden;
  background: #d7dde4;
  opacity: 0;
  pointer-events: none;
  will-change: top, left, width, height, border-radius, opacity;
}

.showcase-film__video {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.showcase-film__overlay {
  position: absolute;
  inset: 0;
  background: #000;
  pointer-events: none;
}

.showcase {
  position: relative;
  z-index: 50;
  height: 600vh;
}

.showcase__sticky {
  position: sticky;
  top: 0;
  height: 100vh;
  background: transparent;
  overflow: visible;
}

.showcase__ui {
  position: fixed;
  inset: 0;
  z-index: 50;
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: end;
  padding: clamp(32px, 4vw, 72px) clamp(32px, 4.5vw, 80px);
  pointer-events: none;
  will-change: opacity;
}

.showcase__panels {
  grid-column: 1;
  position: relative;
  min-height: clamp(200px, 30vh, 400px);
  max-width: 640px;
}

.showcase__panel {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  opacity: 0;
  transform: translateY(16px);
  transition:
    opacity 460ms cubic-bezier(0.4, 0, 0.2, 1),
    transform 460ms cubic-bezier(0.4, 0, 0.2, 1);
  pointer-events: none;
}

.showcase__panel.is-active { opacity: 1; transform: none; pointer-events: auto; }

.showcase__panel-num {
  display: block;
  margin: 0 0 clamp(12px, 1.1vw, 22px);
  color: rgb(255 255 255 / 0.42);
  font-size: clamp(15px, 1vw, 20px);
  font-weight: 600;
  letter-spacing: 0.12em;
  line-height: 1;
  text-transform: uppercase;
}

.showcase__panel-title {
  margin: 0 0 clamp(14px, 1.3vw, 26px);
  color: #ffffff;
  font-size: clamp(54px, 6.4vw, 116px);
  font-weight: 200;
  line-height: 1.04;
  letter-spacing: 0;
}

.showcase__panel-desc {
  max-width: 720px;
  margin: 0;
  color: rgb(255 255 255 / 0.76);
  font-size: clamp(18px, 1.35vw, 26px);
  font-weight: 720;
  line-height: 1.62;
}

.showcase__tabs-nav {
  grid-column: 2;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: clamp(10px, 0.9vw, 20px);
  padding-left: clamp(36px, 5vw, 120px);
  pointer-events: auto;
}

.showcase__tab {
  display: flex;
  align-items: center;
  gap: clamp(10px, 0.9vw, 18px);
  color: rgb(255 255 255 / 0.42);
  font-size: clamp(20px, 1.35vw, 28px);
  font-weight: 720;
  line-height: 1;
  white-space: nowrap;
  cursor: default;
  user-select: none;
  transition: color 320ms ease;
}

.showcase__tab.is-active { color: #ffffff; }

.showcase__tab-bar {
  display: block;
  flex-shrink: 0;
  width: 1px;
  height: 20px;
  background: currentColor;
  opacity: 0;
  transition: opacity 320ms ease;
}

.showcase__tab.is-active .showcase__tab-bar { opacity: 1; }
.showcase__tab-name { transition: color 320ms ease; }

.showcase__tab-num {
  font-weight: 760;
  font-size: clamp(18px, 1.12vw, 24px);
  color: rgb(255 255 255 / 0.52);
  transition: color 320ms ease;
}

.showcase__tab.is-active .showcase__tab-num { color: rgb(255 255 255 / 0.82); }

@media (max-width: 860px) {
  .showcase__ui { grid-template-columns: 1fr; }
  .showcase__tabs-nav { display: none; }
  .showcase__panel-title { font-size: clamp(42px, 10vw, 76px); }
  .showcase__panel-desc { font-size: clamp(17px, 4vw, 23px); }
}

@media (max-width: 560px) {
  .showcase__ui { padding: 28px 24px; }
  .showcase__panel-title { font-size: clamp(38px, 11vw, 58px); }
  .showcase__panel-desc { font-size: 16px; }
}

.capabilities {
  position: relative;
  z-index: 70;
  min-height: 100vh;
  padding: clamp(34px, 4vw, 72px) clamp(16px, 3.8vw, 72px);
  background: #f7f8f8;
  color: #111111;
}

.capabilities__header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 32px;
  max-width: var(--hero-max-width);
  margin: 0 auto clamp(24px, 3vw, 42px);
}

.capabilities__intro { max-width: 860px; }

.capabilities__intro h2 {
  max-width: 920px;
  margin: 0;
  color: #111111;
  font-size: clamp(29px, 3.2vw, 54px);
  font-weight: 300;
  letter-spacing: 0;
  line-height: 1.08;
}

.capabilities__intro p {
  max-width: 760px;
  margin: 18px 0 0;
  color: #677070;
  font-size: clamp(14px, 1vw, 17px);
  font-weight: 400;
  line-height: 1.62;
}

.capabilities__button {
  flex: 0 0 auto;
  align-self: flex-start;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 48px;
  padding: 0 20px;
  border: 1px solid rgb(17 17 17 / 0.1);
  border-radius: 999px;
  background: rgb(255 255 255 / 0.78);
  color: #111111;
  font-size: 14px;
  font-weight: 700;
  box-shadow:
    inset 0 1px 0 rgb(255 255 255 / 0.95),
    0 18px 44px rgb(31 44 44 / 0.08);
}

.capabilities__button .ph { font-size: 18px; }

.capabilities__grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr) minmax(0, 1fr);
  gap: clamp(14px, 1.25vw, 22px);
  max-width: var(--hero-max-width);
  min-height: clamp(620px, 72vh, 780px);
  margin: 0 auto;
}

.capabilities__stack {
  display: grid;
  grid-template-rows: minmax(210px, 0.74fr) minmax(270px, 1fr);
  gap: clamp(14px, 1.25vw, 22px);
  min-width: 0;
}

.capabilities__stack--systems { grid-template-rows: minmax(420px, 1.45fr) auto; }

.cap-card {
  position: relative;
  overflow: hidden;
  border: 1px solid rgb(18 35 35 / 0.09);
  border-radius: 18px;
  background: #ffffff;
  box-shadow: 0 22px 60px rgb(21 34 34 / 0.08);
}

.cap-card--tall, .cap-card--metric, .cap-card--tools { min-height: 0; }
.cap-card--media, .cap-card--metric { color: #ffffff; background: #dce3e3; }

.cap-card__video {
  position: absolute;
  inset: 0;
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transform: scale(1.02);
}

.cap-card__shade {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgb(5 12 14 / 0.3), transparent 34%),
    linear-gradient(0deg, rgb(5 12 14 / 0.78), transparent 48%);
}

.cap-card__light {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(135deg, rgb(255 255 255 / 0.45), rgb(255 255 255 / 0.34)),
    linear-gradient(0deg, rgb(247 248 248 / 0.36), transparent 62%);
}

.cap-card__label {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
  color: rgb(255 255 255 / 0.78);
  font-size: 11px;
  font-weight: 760;
  letter-spacing: 0.18em;
  line-height: 1;
  text-transform: uppercase;
}

.cap-card__label--left { justify-content: flex-start; padding: 0; color: #758080; }

.cap-card__timeline {
  position: absolute;
  z-index: 1;
  right: 20px;
  bottom: 20px;
  left: 20px;
  display: grid;
  gap: 12px;
}

.cap-card__timeline div {
  display: grid;
  grid-template-columns: 58px 16px minmax(0, 1fr) auto;
  align-items: center;
  gap: 10px;
  color: rgb(255 255 255 / 0.76);
  line-height: 1.2;
}

.cap-card__timeline b { display: block; width: 5px; height: 5px; border-radius: 50%; background: rgb(255 255 255 / 0.62); }
.cap-card__timeline strong { min-width: 0; color: #ffffff; font-size: clamp(13px, 0.95vw, 15px); font-weight: 650; }
.cap-card__timeline em { color: rgb(255 255 255 / 0.58); font-style: normal; white-space: nowrap; }

.cap-card--quote,
.cap-card--contact {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 24px;
  background:
    linear-gradient(135deg, rgb(255 255 255 / 0.72), rgb(238 244 244 / 0.86)),
    #edf2f2;
}

.cap-card--video-panel > :not(.cap-card__video, .cap-card__light, .cap-card__shade) { position: relative; z-index: 1; }

.cap-card--quote blockquote { margin: clamp(22px, 2.4vw, 34px) 0 20px; color: #263030; font-size: clamp(15px, 1vw, 18px); line-height: 1.62; }
.cap-card--quote p, .cap-card--contact p { margin: 0; color: #6b7676; font-size: 14px; line-height: 1.5; }
.cap-card--quote strong { display: block; color: #111111; font-size: 15px; }

.cap-card--metric { display: block; min-height: 320px; }

.cap-card__metric {
  position: absolute;
  inset: 0;
  z-index: 1;
  width: 100%;
  height: 100%;
  text-align: center;
  text-shadow: 0 12px 32px rgb(0 0 0 / 0.3);
}

.cap-card__metric strong {
  position: absolute;
  top: 50%;
  left: 50%;
  font-size: clamp(82px, 7.4vw, 134px);
  font-weight: 220;
  letter-spacing: 0;
  line-height: 0.9;
  transform: translate(-50%, -50%);
}

.cap-card__metric span {
  position: absolute;
  right: 24px;
  bottom: 24px;
  left: 24px;
  color: rgb(255 255 255 / 0.82);
  font-size: clamp(14px, 1.05vw, 18px);
  line-height: 1.4;
}

.cap-card--tools {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 0 0 clamp(20px, 2vw, 28px);
  background:
    linear-gradient(135deg, rgb(255 255 255 / 0.72), rgb(231 238 238 / 0.9)),
    #eef3f3;
}

.cap-card--tools .cap-card__label { color: #758080; }
.cap-card--tools-media { min-height: 420px; padding-bottom: 0; background: transparent; }
.cap-card--tools-media .cap-card__label { color: rgb(255 255 255 / 0.82); }
.cap-card--tools-media .cap-card__shade {
  background:
    linear-gradient(180deg, rgb(5 12 14 / 0.18), transparent 34%),
    linear-gradient(0deg, rgb(5 12 14 / 0.32), transparent 56%);
}

.tool-marquee {
  display: grid;
  gap: 14px;
  overflow: hidden;
  padding: 26px 0 8px;
  mask-image: linear-gradient(to right, transparent, #000 9%, #000 91%, transparent);
}

.tool-marquee__row { display: flex; width: max-content; gap: 12px; }

.tool-marquee__row span {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  min-height: 54px;
  padding: 0 16px;
  border: 1px solid rgb(34 52 52 / 0.1);
  border-radius: 14px;
  background: rgb(255 255 255 / 0.78);
  color: #2c3838;
  font-size: 13px;
  font-weight: 700;
  box-shadow: inset 0 1px 0 rgb(255 255 255 / 0.9);
}

.cap-card--tools-media .tool-marquee__row span {
  border-color: rgb(255 255 255 / 0.2);
  background: rgb(255 255 255 / 0.18);
  color: #ffffff;
  backdrop-filter: blur(10px);
  box-shadow: inset 0 1px 0 rgb(255 255 255 / 0.24);
}

.tool-marquee__row .ph { font-size: 20px; }
.tool-marquee__row--left { animation: marquee-left 24s linear infinite; }
.tool-marquee__row--right { animation: marquee-right 28s linear infinite; }

@keyframes marquee-left { from { transform: translateX(0); } to { transform: translateX(-50%); } }
@keyframes marquee-right { from { transform: translateX(-50%); } to { transform: translateX(0); } }

.cap-card--contact {
  min-height: 118px;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 20px 76px 20px 24px;
}

.cap-card--contact a:not(.cap-card__icon-button),
.cap-card--contact strong {
  display: inline-block;
  margin: 14px 0 6px;
  color: #111111;
  font-size: clamp(18px, 1.45vw, 24px);
  font-weight: 360;
  letter-spacing: 0;
  line-height: 1.05;
}

.cap-card__icon-button {
  position: absolute;
  top: 50%;
  right: 16px;
  z-index: 2;
  display: inline-grid;
  place-items: center;
  width: 42px;
  height: 42px;
  border: 1px solid rgb(17 17 17 / 0.1);
  border-radius: 50%;
  background: #111111;
  color: #ffffff;
  transform: translateY(-50%);
}

.cap-card__icon-button .ph { font-size: 19px; }

@media (max-width: 1080px) {
  .capabilities__grid { grid-template-columns: repeat(2, minmax(0, 1fr)); min-height: auto; }
  .cap-card--tall { min-height: 620px; }
  .capabilities__stack:last-child { grid-column: 1 / -1; grid-template-columns: repeat(2, minmax(0, 1fr)); grid-template-rows: minmax(260px, 1fr); }
}

@media (max-width: 760px) {
  .capabilities__header { flex-direction: column; }
  .capabilities__button { width: 100%; }
  .capabilities__grid, .capabilities__stack, .capabilities__stack:last-child { grid-template-columns: 1fr; grid-template-rows: auto; }
  .cap-card--tall { min-height: 560px; }
  .cap-card__timeline div { grid-template-columns: 52px 14px minmax(0, 1fr); }
  .cap-card__timeline em { grid-column: 3; white-space: normal; }
}

.capabilities-flow {
  position: relative;
  z-index: 75;
  min-height: 100vh;
  padding: clamp(64px, 8vw, 120px) clamp(24px, 4vw, 72px);
  background: #ffffff;
  color: #1e2227;
}

.capabilities-flow__inner {
  max-width: 1400px;
  margin: 0 auto;
}

.capabilities-flow__header {
  max-width: 860px;
  margin: 0 auto clamp(56px, 7vw, 96px);
  text-align: center;
}

.capabilities-flow__header h2 {
  margin: 0 0 16px;
  color: #1e2227;
  font-size: clamp(32px, 4vw, 54px);
  font-weight: 300;
  line-height: 1.15;
  letter-spacing: -0.01em;
}

.capabilities-flow__header p {
  margin: 0;
  color: #6b7077;
  font-size: clamp(16px, 1.2vw, 19px);
  font-weight: 400;
  line-height: 1.6;
}

.capabilities-flow__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: clamp(24px, 3vw, 32px);
}

.flow-card {
  position: relative;
  padding: clamp(32px, 4vw, 48px) clamp(28px, 3.5vw, 40px);
  border: 1px solid #e7e3da;
  border-radius: 12px;
  background: #ffffff;
  box-shadow: 0 2px 12px rgba(30, 34, 39, 0.04);
  transition: all 320ms cubic-bezier(0.4, 0, 0.2, 1);
}

.flow-card:hover {
  transform: translateY(-4px);
  border-color: #3c5a78;
  box-shadow: 0 12px 32px rgba(60, 90, 120, 0.12);
}

.flow-card__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 56px;
  height: 56px;
  margin-bottom: 20px;
  border-radius: 10px;
  background: linear-gradient(135deg, #3c5a78 0%, #2e4760 100%);
  color: #ffffff;
}

.flow-card__icon .ph {
  font-size: 28px;
}

.flow-card__number {
  position: absolute;
  top: 24px;
  right: 28px;
  color: #e7e3da;
  font-size: 48px;
  font-weight: 700;
  line-height: 1;
}

.flow-card__title {
  margin: 0 0 12px;
  color: #1e2227;
  font-size: clamp(20px, 1.5vw, 24px);
  font-weight: 600;
  line-height: 1.3;
}

.flow-card__desc {
  margin: 0 0 20px;
  color: #6b7077;
  font-size: clamp(14px, 1vw, 16px);
  font-weight: 400;
  line-height: 1.6;
}

.flow-card__features {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.flow-card__features li {
  display: inline-flex;
  align-items: center;
  padding: 6px 12px;
  border-radius: 6px;
  background: #f7f5f1;
  color: #3c5a78;
  font-size: 12px;
  font-weight: 500;
  line-height: 1;
}

@media (max-width: 860px) {
  .capabilities-flow__grid {
    grid-template-columns: 1fr;
    max-width: 560px;
    margin: 0 auto;
  }
}

.stats {
  position: relative;
  z-index: 80;
  min-height: 100vh;
  padding: clamp(44px, 5vw, 86px) clamp(16px, 3.8vw, 72px) clamp(54px, 5vw, 90px);
  background:
    radial-gradient(circle at 78% 18%, rgb(113 145 208 / 0.18), transparent 34%),
    radial-gradient(circle at 18% 88%, rgb(170 184 213 / 0.11), transparent 28%),
    linear-gradient(180deg, #111414 0%, #171a1a 100%);
  color: #f7f8f8;
}

.stats__header {
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(320px, 0.72fr);
  gap: clamp(32px, 6vw, 120px);
  max-width: var(--hero-max-width);
  margin: 0 auto clamp(34px, 4.5vw, 72px);
}

.stats__title-wrap h2 {
  max-width: 920px;
  margin: 0;
  color: #f7f8f8;
  font-size: clamp(29px, 3.2vw, 54px);
  font-weight: 300;
  letter-spacing: 0;
  line-height: 1.08;
}

.stats__summary {
  align-self: start;
  margin: 0;
  color: rgb(247 248 248 / 0.8);
  font-size: clamp(18px, 1.65vw, 28px);
  font-weight: 360;
  line-height: 1.34;
  opacity: 0;
  transform: translateY(14px);
  transition: opacity 420ms ease, transform 420ms ease;
}

.stats__summary.is-visible { opacity: 1; transform: none; }

.stats__tabs {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0;
  max-width: var(--hero-max-width);
  margin: 0 auto;
  border-bottom: 1px solid rgb(255 255 255 / 0.14);
}

.stats__tab {
  position: relative;
  min-height: 58px;
  padding: 0 20px 18px 0;
  border: 0;
  background: transparent;
  color: rgb(247 248 248 / 0.5);
  font: inherit;
  font-size: clamp(18px, 1.45vw, 28px);
  font-weight: 720;
  letter-spacing: 0;
  text-align: left;
  cursor: pointer;
  transition: color 220ms ease;
}

.stats__tab::after {
  content: "";
  position: absolute;
  right: 16px;
  bottom: -1px;
  left: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--hero-blue), #aab8d5);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 360ms cubic-bezier(0.22, 1, 0.36, 1);
}

.stats__tab.is-active { color: #ffffff; }
.stats__tab.is-active::after { transform: scaleX(1); }

.stats__chart {
  position: relative;
  max-width: var(--hero-max-width);
  min-height: clamp(520px, 58vh, 680px);
  margin: clamp(28px, 3vw, 48px) auto 0;
  padding: 0 0 22px;
  overflow: hidden;
  border: 1px solid rgb(255 255 255 / 0.08);
  border-radius: 20px;
  background-color: rgb(255 255 255 / 0.025);
  background-image:
    repeating-linear-gradient(
      to right,
      transparent 0,
      transparent calc(10% - 1px),
      rgb(255 255 255 / 0.07) calc(10% - 1px),
      rgb(255 255 255 / 0.07) 10%
    );
  box-shadow:
    inset 0 1px 0 rgb(255 255 255 / 0.08),
    0 24px 70px rgb(0 0 0 / 0.18);
}

.stats__chart-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: clamp(18px, 2vw, 28px);
  border-bottom: 1px solid rgb(255 255 255 / 0.08);
  background: rgb(255 255 255 / 0.025);
}

.stats__chart-head span, .stats__chart-head strong { font-size: clamp(12px, 0.86vw, 14px); line-height: 1; text-transform: uppercase; }
.stats__chart-head span { color: #ffffff; font-weight: 760; letter-spacing: 0.16em; }
.stats__chart-head strong { color: rgb(247 248 248 / 0.48); font-weight: 620; letter-spacing: 0.12em; }

.stats__axis {
  display: grid;
  grid-template-columns: minmax(180px, 0.27fr) minmax(0, 1fr);
  gap: clamp(18px, 2vw, 34px);
  padding: 14px clamp(24px, 2.4vw, 42px) 0;
  color: rgb(247 248 248 / 0.42);
  font-size: clamp(11px, 0.84vw, 14px);
}

.stats__axis div { display: grid; grid-template-columns: repeat(11, minmax(0, 1fr)); }
.stats__axis div span { text-align: left; }
.stats__axis div span:last-child { text-align: right; }

.stats__bars { display: grid; gap: clamp(16px, 2vh, 26px); padding: clamp(26px, 3vw, 48px) clamp(24px, 2.4vw, 42px) 0; }

.stats__bar-row {
  display: grid;
  grid-template-columns: minmax(180px, 0.27fr) minmax(0, 1fr);
  align-items: center;
  gap: clamp(18px, 2vw, 34px);
  opacity: 0;
  transform: translateY(18px);
}

.stats__chart.is-ready .stats__bar-row { animation: stats-row-in 520ms cubic-bezier(0.22, 1, 0.36, 1) forwards; animation-delay: var(--bar-delay); }

.stats__bar-label strong, .stats__bar-label span { display: block; }
.stats__bar-label strong { color: #ffffff; font-size: clamp(15px, 1.1vw, 19px); font-weight: 680; line-height: 1.2; }
.stats__bar-label span { margin-top: 5px; color: rgb(247 248 248 / 0.48); font-size: clamp(12px, 0.86vw, 14px); line-height: 1.35; }

.stats__track {
  position: relative;
  height: clamp(48px, 5.4vh, 64px);
  overflow: hidden;
  border-radius: 0;
  background: rgb(255 255 255 / 0.055);
  box-shadow: inset 0 0 0 1px rgb(255 255 255 / 0.075), 0 12px 32px rgb(0 0 0 / 0.16);
}

.stats__range {
  position: absolute;
  top: 9px;
  bottom: 9px;
  left: var(--range-start);
  width: var(--range-width);
  border: 1px solid rgb(170 184 213 / 0.22);
  background: linear-gradient(90deg, rgb(113 145 208 / 0.05), rgb(170 184 213 / 0.14), rgb(113 145 208 / 0.05));
  opacity: 0;
  transform: scaleX(0.6);
  transform-origin: left;
}

.stats__chart.is-ready .stats__range { animation: stats-range-in 620ms cubic-bezier(0.22, 1, 0.36, 1) forwards; animation-delay: calc(var(--bar-delay) + 60ms); }

.stats__bar {
  position: relative;
  z-index: 1;
  width: var(--bar-value);
  height: 100%;
  background: linear-gradient(90deg, rgb(113 145 208 / 0.62) 0%, #8fb0ef 62%, #d6e3ff 100%);
  box-shadow: 0 0 34px rgb(113 145 208 / 0.24);
  transform: scaleX(0);
  transform-origin: left;
}

.stats__chart.is-ready .stats__bar { animation: stats-fill 900ms cubic-bezier(0.22, 1, 0.36, 1) forwards; animation-delay: calc(var(--bar-delay) + 110ms); }

.stats__value { position: absolute; z-index: 3; top: 50%; right: 18px; color: #ffffff; font-size: clamp(14px, 1vw, 18px); font-weight: 740; transform: translateY(-50%); }

.stats__trace { position: absolute; inset: 0; z-index: 2; pointer-events: none; }

.stats__trace i {
  position: absolute;
  top: var(--point-y);
  left: var(--point-x);
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: radial-gradient(circle, rgb(255 255 255 / 0.95) 0 8%, rgb(214 227 255 / 0.42) 9% 22%, transparent 58%);
  filter: blur(0.1px);
  opacity: 0;
  transform: translate(-50%, -50%) scale(0.2);
}

.stats__trace i::before, .stats__trace i::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  border-radius: 999px;
  background: linear-gradient(90deg, transparent, rgb(255 255 255 / 0.72), transparent);
  transform: translate(-50%, -50%) rotate(var(--spark-rotate, 0deg));
}

.stats__trace i::before { width: 24px; height: 1px; }
.stats__trace i::after { width: 1px; height: 18px; background: linear-gradient(180deg, transparent, rgb(170 184 213 / 0.62), transparent); }

.stats__spark--1 { --spark-rotate: 22deg; width: 14px; height: 14px; }
.stats__spark--2 { --spark-rotate: -18deg; width: 11px; height: 11px; }

.stats__chart.is-ready .stats__trace i { animation: stats-point-in 420ms cubic-bezier(0.22, 1, 0.36, 1) forwards; animation-delay: calc(var(--bar-delay) + 260ms + var(--point-delay)); }

@keyframes stats-row-in { to { opacity: 1; transform: none; } }
@keyframes stats-fill { to { transform: scaleX(1); } }
@keyframes stats-range-in { to { opacity: 1; transform: scaleX(1); } }
@keyframes stats-point-in { to { opacity: 0.86; transform: translate(-50%, -50%) scale(1); } }

@media (max-width: 980px) {
  .stats__header { grid-template-columns: 1fr; }
  .stats__tabs { display: flex; overflow-x: auto; }
  .stats__tab { flex: 0 0 min(260px, 76vw); }
  .stats__bar-row { grid-template-columns: 1fr; gap: 10px; }
  .stats__axis { grid-template-columns: 1fr; }
  .stats__axis > span { display: none; }
}

@media (max-width: 620px) {
  .stats__title-wrap h2 { font-size: clamp(26px, 8vw, 42px); }
  .stats__chart { min-height: auto; padding-bottom: 46px; }
  .stats__axis div { grid-template-columns: repeat(6, 1fr); }
  .stats__axis div span:nth-child(even) { display: none; }
}

.video-stories {
  position: relative;
  z-index: 90;
  min-height: 100vh;
  padding: clamp(46px, 5vw, 88px) 0 clamp(44px, 4vw, 74px);
  overflow: hidden;
  background: #f7f8f8;
  color: #111111;
}

.video-stories__header { width: min(100% - 96px, var(--hero-max-width)); margin: 0 auto clamp(38px, 4vw, 74px); text-align: left; }
.video-stories__header h2 { margin: 0; color: #111111; font-size: clamp(38px, 4.4vw, 76px); font-weight: 300; letter-spacing: 0; line-height: 1.08; }
.video-stories__header p { max-width: 720px; margin: 22px 0 0; color: #697272; font-size: clamp(16px, 1.25vw, 21px); font-weight: 420; line-height: 1.55; }

.video-stories__rail {
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: minmax(520px, 34vw);
  gap: clamp(28px, 3vw, 54px);
  overflow-x: scroll;
  overscroll-behavior-x: contain;
  scroll-snap-type: x mandatory;
  padding: 0 max(48px, calc((100vw - var(--hero-max-width)) / 2 + 48px)) 36px;
  scrollbar-width: thin;
  scrollbar-color: #111111 #d8dddf;
  scrollbar-gutter: stable;
}

.video-stories__rail::-webkit-scrollbar { height: 10px; }
.video-stories__rail::-webkit-scrollbar-track { background: #d8dddf; border-radius: 999px; }
.video-stories__rail::-webkit-scrollbar-thumb { background: #111111; border-radius: 999px; }

.story-card {
  scroll-snap-align: center;
  min-width: 0;
  opacity: 0.54;
  transform: translateY(10px);
  transition: opacity 260ms ease, transform 260ms ease;
}

.story-card:hover, .story-card:focus-within { opacity: 1; transform: none; }

.story-card__media {
  display: block;
  width: 100%;
  height: auto;
  aspect-ratio: 16 / 9;
  border-radius: 12px;
  background: #dfe5e6;
  object-fit: cover;
  object-position: center;
  box-shadow: 0 18px 48px rgb(21 34 34 / 0.1);
}

.story-card__content { padding: 24px 28px 0; }
.story-card__content p { margin: 0 0 12px; color: #111111; font-size: 15px; font-weight: 760; line-height: 1; }
.story-card__content h3 { max-width: 680px; margin: 0; color: #252b2b; font-size: clamp(18px, 1.22vw, 24px); font-weight: 520; letter-spacing: 0; line-height: 1.38; }
.story-card__content span { display: block; margin-top: 14px; color: #858d8d; font-size: 14px; line-height: 1.4; }

@media (max-width: 860px) {
  .video-stories__header { width: min(100% - 48px, 900px); }
  .video-stories__rail { grid-auto-columns: minmax(320px, 82vw); padding: 0 24px 30px; }
  .story-card { opacity: 1; transform: none; }
}

@media (max-width: 560px) {
  .video-stories__header { width: min(100% - 32px, 900px); }
  .story-card__content { padding: 18px 4px 0; }
}

.site-footer { position: relative; z-index: 100; overflow: hidden; background: #000000; color: #ffffff; }

.footer-dots { position: relative; height: clamp(72px, 7vw, 110px); overflow: hidden; background: #000000; }

.footer-dots__line {
  position: absolute;
  left: 0;
  top: 50%;
  width: 200%;
  height: 70px;
  opacity: 0.75;
  background-image:
    radial-gradient(circle, rgb(255 255 255 / 0.55) 1.5px, transparent 2px),
    radial-gradient(circle, rgb(255 255 255 / 0.35) 1px, transparent 1.5px),
    radial-gradient(circle, rgb(255 255 255 / 0.45) 1.2px, transparent 1.8px);
  background-position: 0 8px, 24px 22px, 48px 14px;
  background-size: 72px 38px, 110px 44px, 160px 52px;
  animation: footerDotsMove 18s linear infinite;
  transform: translateY(-50%);
}

@keyframes footerDotsMove { from { transform: translate3d(0, -50%, 0); } to { transform: translate3d(-50%, -50%, 0); } }

.site-footer__inner { width: min(100% - 96px, var(--hero-max-width)); margin: 0 auto; padding: clamp(28px, 3.4vw, 58px) 0 clamp(24px, 2.6vw, 42px); }

.site-footer__top {
  display: grid;
  grid-template-columns: minmax(160px, 0.28fr) minmax(0, 0.9fr);
  gap: clamp(38px, 6vw, 112px);
  align-items: start;
  justify-content: stretch;
  min-height: auto;
  padding-bottom: clamp(26px, 3vw, 46px);
  border-bottom: 1px solid rgb(255 255 255 / 0.12);
}

.site-footer__top h2 { max-width: 680px; margin: 0; color: #ffffff; font-size: clamp(34px, 3.5vw, 62px); font-weight: 220; letter-spacing: 0; line-height: 1.06; }

.site-footer__nav { display: flex; flex-direction: column; align-items: flex-start; gap: clamp(13px, 1.1vw, 18px); }
.site-footer__nav a { color: rgb(255 255 255 / 0.88); font-size: clamp(15px, 0.95vw, 18px); font-weight: 760; line-height: 1.1; transition: color 180ms ease, transform 180ms ease; }
.site-footer__nav a:hover { color: #ffffff; transform: translateX(3px); }

.site-footer__overview {
  max-width: 860px;
  justify-self: end;
  color: #ffffff;
  text-align: left;
}

.site-footer__overview .sub-kicker { margin-bottom: 12px; }

.site-footer__overview h3 {
  margin: 0;
  color: #ffffff;
  font-size: clamp(28px, 3vw, 56px);
  font-weight: 420;
  line-height: 1.12;
}

.site-footer__overview span {
  display: block;
  max-width: 760px;
  margin-top: 18px;
  color: rgb(255 255 255 / 0.66);
  font-size: clamp(15px, 1vw, 18px);
  line-height: 1.72;
}

.site-footer__contact-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(360px, 0.52fr);
  gap: clamp(34px, 5.4vw, 96px);
  align-items: start;
  margin-top: clamp(28px, 3.6vw, 58px);
  padding: clamp(30px, 3.8vw, 58px);
  border: 1px solid rgb(255 255 255 / 0.12);
  border-radius: 8px;
  background:
    linear-gradient(135deg, rgb(255 255 255 / 0.075), rgb(255 255 255 / 0.025)),
    rgb(255 255 255 / 0.04);
}

.site-footer__contact-details h3 {
  margin: 0 0 14px;
  color: #ffffff;
  font-size: clamp(28px, 3vw, 52px);
  font-weight: 360;
  line-height: 1.12;
}

.site-footer__contact-summary {
  max-width: 780px;
  margin: 0 0 24px;
  color: rgb(255 255 255 / 0.68);
  font-size: clamp(15px, 1.08vw, 18px);
  line-height: 1.72;
}

.site-footer__contact-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(18px, 2.5vw, 34px);
  margin: 0;
  padding: 0;
  list-style: none;
}

.site-footer__contact-list li {
  display: grid;
  grid-template-columns: 38px minmax(0, 1fr);
  gap: 16px;
  align-items: start;
  color: rgb(255 255 255 / 0.82);
  font-size: clamp(15px, 1.05vw, 18px);
  line-height: 1.55;
}

.site-footer__contact-list i {
  color: #4fbaff;
  font-size: 24px;
  line-height: 1.2;
}

.site-footer__contact-list strong {
  display: block;
  margin-bottom: 8px;
  color: #ffffff;
  font-size: clamp(16px, 1vw, 19px);
  font-weight: 820;
}

.site-footer__contact-list a {
  color: inherit;
  font-weight: 720;
}

.site-footer__contact-list a:hover { color: #ffffff; }

.site-footer__contact-list span {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 18px;
}

.site-footer__inquiry {
  margin: 0;
  border-color: rgb(255 255 255 / 0.14);
  background: #ffffff;
  box-shadow: 0 28px 80px rgb(0 0 0 / 0.28);
}

.site-footer__inquiry .sub-kicker { margin-bottom: 8px; }

.site-footer__brand-row { width: 100%; margin-top: clamp(18px, 3vw, 46px); }
.site-footer__brand-row--top { margin-top: 0; margin-bottom: clamp(22px, 3vw, 48px); }
.site-footer__brand { display: flex; align-items: center; width: 100%; min-width: 0; color: #ffffff; }
.site-footer__brand-row--top .brand__logo { height: clamp(48px, 5vw, 76px); }

.site-footer__mark {
  position: relative;
  flex: 0 0 clamp(58px, 6.1vw, 118px);
  aspect-ratio: 1;
  margin-right: clamp(14px, 1.6vw, 28px);
  overflow: hidden;
  border-radius: 50%;
  background: #ffffff;
}

.site-footer__mark::before {
  content: "";
  position: absolute;
  inset: -18%;
  background: #000000;
  clip-path: polygon(0 20%, 100% 8%, 100% 19%, 0 31%, 0 43%, 100% 31%, 100% 42%, 0 54%, 0 66%, 100% 54%, 100% 65%, 0 77%);
}

.site-footer__brand span:last-child { display: block; flex: 1 1 auto; min-width: 0; font-size: clamp(58px, 11.1vw, 214px); font-weight: 760; letter-spacing: -0.055em; line-height: 0.78; white-space: nowrap; }

.site-footer__legal { display: grid; grid-template-columns: minmax(0, 1fr) auto minmax(0, 1fr); align-items: center; gap: 12px 24px; margin-top: clamp(22px, 2.4vw, 38px); padding-top: clamp(16px, 1.6vw, 24px); border-top: 1px solid rgb(255 255 255 / 0.1); color: rgb(255 255 255 / 0.68); font-size: clamp(13px, 0.85vw, 16px); font-weight: 620; line-height: 1.45; }
.site-footer__legal p { margin: 0; }
.site-footer__legal span { text-align: center; }
.site-footer__legal a { color: inherit; }
.site-footer__legal a:last-child { justify-self: end; text-align: right; }
.site-footer__legal a:hover { color: #ffffff; }

.site-footer__main {
  display: grid;
  grid-template-columns: minmax(170px, 0.24fr) minmax(340px, 0.76fr) minmax(300px, 0.3fr);
  gap: clamp(34px, 4.6vw, 76px);
  align-items: start;
  padding: clamp(30px, 3.8vw, 58px) 0 clamp(26px, 3vw, 44px);
  border-top: 1px solid rgb(255 255 255 / 0.08);
  border-bottom: 1px solid rgb(255 255 255 / 0.1);
}

.site-footer__logo-column { display: flex; align-items: flex-start; justify-content: flex-start; min-width: 0; }
.site-footer__logo-link { display: inline-flex; align-items: center; max-width: min(220px, 100%); }
.site-footer__logo-link .brand__logo { height: clamp(58px, 6vw, 96px); width: auto; object-fit: contain; }

.site-footer__middle {
  display: grid;
  grid-template-columns: minmax(120px, 0.34fr) minmax(0, 0.66fr);
  gap: clamp(32px, 4vw, 72px);
  align-items: start;
}

.site-footer__nav--footer strong,
.site-footer__contact-block > strong {
  display: block;
  margin: 0 0 18px;
  color: #4fbaff;
  font-size: clamp(14px, 0.9vw, 16px);
  font-weight: 820;
  line-height: 1.1;
}

.site-footer__contact-block {
  display: grid;
  gap: 13px;
  min-width: 0;
}

.site-footer__contact-block p {
  display: grid;
  grid-template-columns: 86px minmax(0, 1fr);
  gap: 12px;
  margin: 0;
  color: rgb(255 255 255 / 0.82);
  font-size: clamp(15px, 1vw, 18px);
  line-height: 1.45;
}

.site-footer__contact-block span {
  color: rgb(255 255 255 / 0.58);
  white-space: nowrap;
}

.site-footer__contact-block a,
.site-footer__contact-block em {
  min-width: 0;
  color: #ffffff;
  font-style: normal;
  font-weight: 720;
  overflow-wrap: anywhere;
}

.site-footer__inquiry--dark {
  margin: 0;
  width: min(100%, 390px);
  justify-self: end;
  gap: 10px;
  padding: clamp(18px, 1.55vw, 26px);
  border: 1px solid rgb(255 255 255 / 0.14);
  background: #030303;
  color: #ffffff;
  box-shadow: 0 22px 58px rgb(0 0 0 / 0.34);
}

.site-footer__inquiry--dark .contact-form__head h3 {
  margin-bottom: 2px;
  font-size: clamp(22px, 1.8vw, 32px);
}

.site-footer__inquiry--dark .contact-form__head h3,
.site-footer__inquiry--dark label {
  color: #ffffff;
}

.site-footer__inquiry--dark label {
  gap: 6px;
  font-size: clamp(13px, 0.85vw, 15px);
}

.site-footer__inquiry--dark .sub-kicker {
  margin-bottom: 4px;
  color: #4fbaff;
}

.site-footer__inquiry--dark input,
.site-footer__inquiry--dark textarea {
  border-color: rgb(255 255 255 / 0.2);
  background: rgb(255 255 255 / 0.07);
  color: #ffffff;
}

.site-footer__inquiry--dark input {
  min-height: 38px;
  padding: 9px 11px;
}

.site-footer__inquiry--dark textarea {
  min-height: 82px;
  padding: 10px 11px;
}

.site-footer__inquiry--dark button {
  min-height: 40px;
}

.site-footer__inquiry--dark input:focus,
.site-footer__inquiry--dark textarea:focus {
  outline: 1px solid rgb(79 186 255 / 0.9);
  border-color: rgb(79 186 255 / 0.85);
}

.site-footer__inquiry--dark textarea::placeholder {
  color: rgb(255 255 255 / 0.42);
}

@media (max-width: 980px) {
  .site-footer__inner { width: min(100% - 48px, var(--hero-max-width)); }
  .site-footer__top { grid-template-columns: 1fr; }
  .site-footer__overview { justify-self: start; }
  .site-footer__contact-grid { grid-template-columns: 1fr; }
  .site-footer__contact-list { grid-template-columns: 1fr; }
  .site-footer__main { grid-template-columns: 1fr; }
  .site-footer__middle { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 560px) {
  .site-footer__inner { width: min(100% - 32px, var(--hero-max-width)); }
  .site-footer__top { grid-template-columns: 1fr; min-height: auto; }
  .site-footer__nav a { font-size: 15px; }
  .site-footer__contact-grid { padding: 22px; }
  .site-footer__contact-list li { grid-template-columns: 30px minmax(0, 1fr); }
  .site-footer__main { gap: 28px; }
  .site-footer__middle { grid-template-columns: 1fr; }
  .site-footer__contact-block p { grid-template-columns: 1fr; gap: 4px; }
  .site-footer__legal { grid-template-columns: 1fr; }
  .site-footer__legal span, .site-footer__legal a:last-child { justify-self: start; text-align: left; }
  .site-footer__mark { flex-basis: clamp(38px, 12vw, 58px); }
  .site-footer__brand span:last-child { font-size: clamp(45px, 18vw, 84px); }
}
    

/* Jingxiang generated subpages: built on top of the original 1.html visual system. */
html, body { overflow-x: hidden; }
.archive-section { background: #f7f8f8; }
.archive-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 14px; max-width: var(--hero-max-width); margin: 0 auto; }
.archive-card { display: grid; grid-template-columns: 132px 1fr; overflow: hidden; min-height: 132px; border: 1px solid rgb(18 35 35 / 0.09); border-radius: 8px; background: #fff; box-shadow: 0 22px 60px rgb(21 34 34 / 0.08); }
.archive-card__media { background: #d9dee1; min-height: 132px; }
.archive-card__media img { width: 100%; height: 100%; object-fit: cover; }
.archive-card div { padding: 16px; }
.archive-card p, .sub-card p, .sub-kicker { margin: 0 0 10px; color: #315f82; font-size: 12px; font-weight: 800; text-transform: uppercase; }
.archive-card h3, .sub-card h3 { margin: 0; font-size: 20px; line-height: 1.28; }
.archive-card span, .sub-card span { display: block; margin-top: 10px; color: #677070; font-size: 14px; line-height: 1.58; }
.subpage { background: #f7f8f8; color: #111; }
.subpage .subpage-nav { position: fixed; color: #111; }
.subpage-hero { position: relative; isolation: isolate; min-height: 78vh; display: flex; flex-direction: column; justify-content: flex-end; width: 100%; margin: 0; overflow: hidden; padding: 130px max(48px, calc((100vw - var(--hero-max-width)) / 2 + 48px)) 72px; color: #fff; background: #17212a; }
.subpage-hero::before { content: ""; position: absolute; inset: 0; z-index: -2; background-image: var(--subpage-banner); background-size: cover; background-position: center; opacity: 1; transform: scale(1.01); }
.subpage-hero::after { content: ""; position: absolute; inset: 0; z-index: -1; background: linear-gradient(90deg, rgb(0 0 0 / 0.68), rgb(0 0 0 / 0.34) 52%, rgb(0 0 0 / 0.14)); }
.subpage-hero p { margin: 0 0 16px; color: rgb(233 240 255 / 0.92); font-size: 14px; font-weight: 800; text-transform: uppercase; }
.subpage-hero h1 { max-width: 1100px; margin: 0; color: #fff; font-size: clamp(64px, 10vw, 170px); line-height: 0.9; font-weight: 220; letter-spacing: 0; text-shadow: 0 20px 60px rgb(0 0 0 / 0.34); }
.subpage-hero span { max-width: 780px; margin-top: 28px; color: rgb(255 255 255 / 0.84); font-size: clamp(17px, 1.4vw, 23px); line-height: 1.55; }
.subpage-section { width: min(100% - 96px, var(--hero-max-width)); margin: 0 auto; padding: clamp(56px, 7vw, 110px) 0; border-top: 1px solid rgb(18 35 35 / 0.1); }
.subpage-section h2 { max-width: 940px; margin: 0 0 28px; font-size: clamp(34px, 4.4vw, 72px); line-height: 1.08; font-weight: 260; letter-spacing: 0; }
.subpage-section p:not(.sub-kicker) { color: #2f3a40; font-size: 17px; line-height: 1.82; }
.subpage-two { display: grid; grid-template-columns: minmax(0, 1.25fr) minmax(280px, 0.75fr); gap: clamp(36px, 6vw, 100px); align-items: start; }
.subpage-metrics { display: grid; gap: 14px; }
.subpage-metrics div { min-height: 132px; padding: 24px; border: 1px solid rgb(18 35 35 / 0.09); border-radius: 8px; background: #fff; box-shadow: 0 22px 60px rgb(21 34 34 / 0.08); }
.subpage-metrics strong { display: block; font-size: clamp(32px, 3.2vw, 56px); font-weight: 260; line-height: 1; }
.subpage-metrics span { display: block; margin-top: 12px; color: #677070; }
.subpage-gallery, .subpage-card-grid { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 16px; }
.subpage-gallery img { width: 100%; aspect-ratio: 1; object-fit: cover; border-radius: 8px; background: #d9dee1; }
.about-intro { align-items: start; }
.about-intro p:not(.sub-kicker) { font-size: clamp(18px, 1.32vw, 22px); line-height: 1.9; font-weight: 560; }
.about-intro h2 { margin-bottom: clamp(30px, 3.4vw, 52px); }
.about-intro__side { display: grid; gap: 16px; }
.about-intro__side > img { width: 100%; aspect-ratio: 4 / 3; object-fit: cover; border-radius: 8px; background: #d9dee1; box-shadow: 0 22px 60px rgb(21 34 34 / 0.08); }
.about-gallery-overview { padding-bottom: clamp(28px, 4vw, 56px); }
.about-gallery-nav { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 26px; }
.about-gallery-nav a { display: inline-flex; align-items: center; justify-content: center; min-height: 38px; padding: 0 16px; border: 1px solid rgb(18 35 35 / 0.12); border-radius: 999px; background: #fff; color: #162020; font-size: 14px; font-weight: 760; box-shadow: 0 12px 30px rgb(21 34 34 / 0.06); }
.about-gallery-section { padding-top: clamp(42px, 5vw, 82px); }
.about-gallery-head { display: block; margin-bottom: 28px; text-align: left; }
.about-gallery-head h2 { max-width: none; margin: 0 0 18px; text-align: left; }
.about-gallery-head span { display: block; max-width: 760px; color: #4d5b5f; font-size: 16px; line-height: 1.76; text-align: left; }
.about-gallery-grid { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 16px; }
.about-gallery-card { overflow: hidden; margin: 0; border: 1px solid rgb(18 35 35 / 0.09); border-radius: 8px; background: #fff; box-shadow: 0 22px 60px rgb(21 34 34 / 0.08); cursor: zoom-in; }
.about-gallery-card:focus-visible { outline: 2px solid #0f7fc7; outline-offset: 4px; }
.about-gallery-card img { display: block; width: 100%; aspect-ratio: 4 / 3; object-fit: cover; background: #d9dee1; }
.about-gallery-grid--certificates .about-gallery-card img { aspect-ratio: 3 / 4; object-fit: contain; padding: 10px; background: #f3f5f7; }
.about-gallery-card figcaption { min-height: 48px; padding: 12px 14px; color: #2f3a40; font-size: 14px; font-weight: 760; line-height: 1.35; }
.about-lightbox { position: fixed; inset: 0; z-index: 2000; display: none; align-items: center; justify-content: center; padding: clamp(18px, 4vw, 48px); background: rgb(5 12 18 / 0.86); backdrop-filter: blur(8px); }
.about-lightbox.is-open { display: flex; }
.about-lightbox__panel { position: relative; display: grid; gap: 12px; max-width: min(1120px, 96vw); max-height: 92vh; color: #fff; }
.about-lightbox__image { display: block; max-width: 100%; max-height: min(78vh, 820px); object-fit: contain; border-radius: 8px; background: #f3f5f7; box-shadow: 0 24px 90px rgb(0 0 0 / 0.46); }
.about-lightbox__caption { color: rgb(255 255 255 / 0.88); font-size: 15px; font-weight: 760; text-align: left; }
.about-lightbox__close { position: absolute; top: -14px; right: -14px; display: inline-flex; align-items: center; justify-content: center; width: 42px; height: 42px; border: 0; border-radius: 999px; background: #fff; color: #111827; font-size: 24px; line-height: 1; cursor: pointer; box-shadow: 0 12px 36px rgb(0 0 0 / 0.28); }
.about-lightbox__close:focus-visible { outline: 2px solid #7fd0ff; outline-offset: 3px; }
.sub-card { overflow: hidden; border: 1px solid rgb(18 35 35 / 0.09); border-radius: 8px; background: #fff; box-shadow: 0 22px 60px rgb(21 34 34 / 0.08); }
.sub-card img { width: 100%; aspect-ratio: 4 / 3; object-fit: cover; background: #d9dee1; }
.sub-card div { padding: 18px; }
.product-overview p:not(.sub-kicker) { max-width: 820px; }
.product-filter { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 26px; }
.product-filter a { display: inline-flex; align-items: center; min-height: 38px; padding: 0 16px; border: 1px solid rgb(18 35 35 / 0.12); border-radius: 999px; background: #fff; color: #162020; font-size: 14px; font-weight: 760; }
.product-category { padding-top: clamp(44px, 5vw, 78px); }
.product-category__head { display: block; max-width: 920px; margin: 0 0 28px; text-align: left; }
.product-category__head h2 { max-width: none; margin: 0 0 18px; text-align: left; }
.product-category__head span { display: block; max-width: 760px; color: #4d5b5f; font-size: 16px; line-height: 1.76; text-align: left; }
.product-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); }
.product-card img { aspect-ratio: 16 / 10; }
.product-card h3 a { color: inherit; }
.product-card span { min-height: 4.6em; }
.story-card__media[src] { object-fit: cover; }
.showcase__tab { padding: 0; border: 0; appearance: none; background: transparent; cursor: pointer; }
.showcase__tab:focus-visible { outline: 1px solid rgb(255 255 255 / 0.72); outline-offset: 6px; }
@media (max-width: 980px) { .archive-grid, .subpage-card-grid, .about-gallery-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); } .subpage-gallery { grid-template-columns: repeat(3, minmax(0, 1fr)); } }
@media (max-width: 720px) { .subpage-hero { min-height: 70vh; padding: 118px 24px 56px; } .subpage-section { width: min(100% - 32px, var(--hero-max-width)); } .subpage-two, .archive-grid, .subpage-card-grid { grid-template-columns: 1fr; } .subpage-gallery { grid-template-columns: repeat(2, minmax(0, 1fr)); } .about-gallery-nav a { flex: 1 1 calc(50% - 10px); } .archive-card { grid-template-columns: 112px 1fr; } .subpage .hero__links { display: none; } }
@media (max-width: 520px) { .about-gallery-grid { grid-template-columns: 1fr; } .about-gallery-grid--certificates .about-gallery-card img { aspect-ratio: 4 / 5; } }
@media (max-width: 720px) { .product-category__head { grid-template-columns: 1fr; } .product-filter a { flex: 1 1 auto; justify-content: center; } .product-card span { min-height: auto; } }
.empty-state { grid-column: 1 / -1; padding: 28px; border: 1px dashed rgb(18 35 35 / 0.2); border-radius: 8px; background: #fff; color: #667276; }
.product-card__media { display: block; color: inherit; }
.product-detail-hero { min-height: 58vh; }
.product-detail-layout { display: grid; grid-template-columns: minmax(0, 1fr) minmax(260px, 0.32fr); gap: clamp(24px, 4vw, 56px); align-items: start; }
.product-intro-panel { padding: clamp(22px, 3vw, 36px); border: 1px solid rgb(18 35 35 / 0.08); border-radius: 8px; background: #fff; box-shadow: 0 22px 70px rgb(15 23 42 / 0.08); }
.product-detail-tab { display: inline-flex; align-items: center; min-height: 48px; padding: 0 22px; border-radius: 6px 6px 0 0; background: #0f7fc7; color: #fff; font-size: 18px; font-weight: 800; }
.product-detail-line { height: 2px; margin: 0 0 24px; background: #0f7fc7; }
.product-intro-panel h2 { display: flex; align-items: baseline; flex-wrap: wrap; gap: 4px; margin: 0 0 14px; font-size: clamp(28px, 3.4vw, 44px); line-height: 1.15; color: #0f7fc7; font-weight: 800; }
.product-intro-panel h2 em { color: #202a32; font-size: 0.5em; font-style: normal; font-weight: 750; }
.product-intro-panel p { margin: 0 0 20px; color: #17212a; font-size: clamp(17px, 1.45vw, 21px); line-height: 1.8; font-weight: 650; }
.product-detail-gallery { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 8px; padding: 8px; background: #e7e9ee; }
.product-detail-gallery img { width: 100%; aspect-ratio: 4 / 2.3; object-fit: cover; background: #d9dee1; }
.product-detail-side { display: grid; gap: 14px; padding: 22px; border-radius: 8px; background: #111827; color: #fff; position: sticky; top: 110px; }
.product-detail-side strong { color: #7fd0ff; font-size: 14px; }
.product-detail-side span { font-size: 24px; line-height: 1.25; font-weight: 800; }
.detail-contact { display: inline-flex; justify-content: center; align-items: center; min-height: 42px; border-radius: 6px; background: #0f7fc7; color: #fff; font-weight: 800; }
.contact-layout { display: grid; grid-template-columns: minmax(0, 0.9fr) minmax(320px, 0.7fr); gap: clamp(28px, 5vw, 80px); align-items: start; }
.contact-redesign { border-top: 0; }
.contact-redesign__intro { display: grid; grid-template-columns: minmax(240px, 0.42fr) minmax(0, 0.58fr); gap: 8px clamp(24px, 5vw, 86px); align-items: end; margin-bottom: clamp(34px, 5vw, 72px); }
.contact-redesign__intro .sub-kicker { grid-column: 1; grid-row: 1; margin: 0; text-align: left; }
.contact-redesign__intro h2 { grid-column: 1; grid-row: 2; margin: 0; color: #121f2a; font-size: clamp(40px, 5vw, 86px); font-weight: 320; text-align: left; }
.contact-redesign__intro p:not(.sub-kicker) { grid-column: 2; grid-row: 1 / span 2; align-self: end; max-width: 680px; margin: 0; color: #58656c; font-size: clamp(16px, 1.25vw, 20px); line-height: 1.78; text-align: left; }
.contact-redesign__body { display: grid; grid-template-columns: minmax(0, 1fr) minmax(320px, 0.46fr); gap: clamp(28px, 5vw, 74px); align-items: start; }
.contact-info-panel { display: grid; gap: 0; padding: 0 clamp(18px, 2.4vw, 34px); background: #fff; border: 1px solid #e6eef2; }
.contact-info-row { display: grid; grid-template-columns: 42px minmax(0, 1fr); gap: clamp(14px, 2vw, 24px); align-items: start; padding: clamp(24px, 2.8vw, 40px) 0; border-bottom: 1px solid #e6eef2; }
.contact-info-row:last-child { border-bottom: 0; }
.contact-info-row__icon { display: inline-flex; align-items: center; justify-content: center; width: 42px; height: 42px; color: #0f7fc7; font-size: 30px; line-height: 1; }
.contact-info-row strong { display: block; margin: 0 0 10px; color: #26323a; font-size: clamp(17px, 1.3vw, 21px); font-weight: 820; line-height: 1.25; }
.contact-info-row p { display: flex; flex-wrap: wrap; gap: 10px 28px; margin: 0; color: #34434a; font-size: clamp(16px, 1.15vw, 19px); line-height: 1.7; }
.contact-info-row a { color: #0f7fc7; font-weight: 760; }
.contact-info-row--qr { align-items: start; }
.contact-qr { display: block; width: min(150px, 42vw); aspect-ratio: 1; object-fit: contain; margin-top: 14px; border: 1px solid #e5edf1; background: #fff; }
.contact-form { display: grid; gap: 14px; padding: clamp(22px, 3vw, 34px); border: 1px solid rgb(18 35 35 / 0.1); border-radius: 8px; background: #fff; box-shadow: 0 22px 70px rgb(15 23 42 / 0.08); }
.contact-form__head h3 { margin: 0 0 6px; color: #111827; font-size: clamp(24px, 2.2vw, 34px); line-height: 1.18; font-weight: 520; }
.contact-form label { display: grid; gap: 8px; color: #536069; font-weight: 760; }
.contact-form input, .contact-form textarea { width: 100%; border: 1px solid #d8e0e5; border-radius: 6px; padding: 12px 13px; color: #17212a; font: inherit; }
.contact-form button { min-height: 46px; border: 0; border-radius: 6px; background: #0f7fc7; color: #fff; font-weight: 850; cursor: pointer; }
.contact-form [data-form-status] { color: #0f7fc7; font-weight: 760; }
.news-data-card h3 { color: #111827; }
.news-data-card span { min-height: 5em; }
.news-filter { display: flex; flex-wrap: wrap; gap: 10px; margin: 0 0 28px; }
.news-filter a { display: inline-flex; align-items: center; min-height: 40px; padding: 0 18px; border: 1px solid rgb(18 35 35 / 0.12); border-radius: 999px; background: #fff; color: #17212a; font-size: 14px; font-weight: 820; }
.news-filter a.is-active { background: #111827; border-color: #111827; color: #fff; }
.news-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); }
.news-data-card__media { display: block; color: inherit; }
.news-data-card__media img { width: 100%; aspect-ratio: 16 / 10; object-fit: cover; background: #d9dee1; }
.news-data-card h3 a, .story-card__content h3 a { color: inherit; }
.news-detail-hero { min-height: 62vh; }
.news-detail-layout { display: grid; grid-template-columns: minmax(0, 1fr) minmax(240px, 0.3fr); gap: clamp(24px, 4vw, 62px); align-items: start; }
.news-article { padding: clamp(24px, 3vw, 42px); border: 1px solid rgb(18 35 35 / 0.08); border-radius: 8px; background: #fff; box-shadow: 0 22px 70px rgb(15 23 42 / 0.08); }
.news-article p { margin: 0 0 18px; color: #17212a; font-size: clamp(17px, 1.35vw, 20px); line-height: 1.86; }
.news-detail-gallery { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 10px; margin-top: 28px; }
.news-detail-gallery img { width: 100%; aspect-ratio: 4 / 2.7; object-fit: cover; border-radius: 6px; background: #d9dee1; }
.news-detail-side { display: grid; gap: 12px; padding: 22px; border-radius: 8px; background: #111827; color: #fff; position: sticky; top: 110px; }
.news-detail-side strong { color: #7fd0ff; font-size: 14px; }
.news-detail-side span { color: rgb(255 255 255 / 0.78); }
.news-detail-side a { display: inline-flex; justify-content: center; align-items: center; min-height: 42px; border-radius: 6px; background: #0f7fc7; color: #fff; font-weight: 820; }
@media (max-width: 980px) { .news-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); } }
@media (max-width: 760px) {
  .news-grid, .news-detail-layout { grid-template-columns: 1fr; }
  .news-detail-side { position: static; }
  .news-detail-gallery { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}
@media (max-width: 860px) {
  .product-detail-layout, .contact-layout, .contact-redesign__intro, .contact-redesign__body { grid-template-columns: 1fr; }
  .product-detail-side { position: static; }
  .product-detail-gallery { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .contact-redesign__intro { gap: 18px; align-items: start; }
  .contact-redesign__intro .sub-kicker,
  .contact-redesign__intro h2,
  .contact-redesign__intro p:not(.sub-kicker) { grid-column: 1; grid-row: auto; }
  .contact-form--inquiry { order: 2; }
}
@media (max-width: 560px) {
  .contact-info-row { grid-template-columns: 42px minmax(0, 1fr); }
  .contact-info-row__icon { width: 36px; height: 36px; font-size: 26px; }
  .contact-info-row p { display: grid; gap: 8px; overflow-wrap: anywhere; }
}
@media (max-width: 560px) { .hero__nav { width: min(100% - 56px, var(--hero-max-width)); } .hero__cta { white-space: nowrap; } }

.site-footer .site-footer__inquiry--dark {
  box-sizing: border-box;
  width: min(100%, 420px);
  grid-template-columns: repeat(2, minmax(0, 1fr));
  background: #030303;
  background-color: #030303;
  color: #ffffff;
  gap: 10px 12px;
  padding: 0 18px 18px;
}

.site-footer .site-footer__inquiry--dark .contact-form__head,
.site-footer .site-footer__inquiry--dark label:nth-of-type(3),
.site-footer .site-footer__inquiry--dark label:nth-of-type(4),
.site-footer .site-footer__inquiry--dark button,
.site-footer .site-footer__inquiry--dark [data-form-status] {
  grid-column: 1 / -1;
}

.site-footer .site-footer__inquiry--dark .contact-form__head h3,
.site-footer .site-footer__inquiry--dark label {
  color: #ffffff;
}

.site-footer .site-footer__inquiry--dark .contact-form__head h3 {
  font-size: clamp(21px, 1.55vw, 28px);
}

.site-footer .site-footer__inquiry--dark label {
  gap: 5px;
  font-size: 13px;
}

.site-footer .site-footer__inquiry--dark input,
.site-footer .site-footer__inquiry--dark textarea {
  box-sizing: border-box;
  display: block;
  width: 100%;
  max-width: 100%;
  border-color: rgb(255 255 255 / 0.2);
  background: rgb(255 255 255 / 0.07);
  color: #ffffff;
}

.site-footer .site-footer__inquiry--dark input {
  min-height: 34px;
  padding: 7px 10px;
}

.site-footer .site-footer__inquiry--dark textarea {
  min-height: 92px;
  padding: 9px 10px;
}

.site-footer .site-footer__inquiry--dark button {
  min-height: 36px;
}

/* Stats Cards Grid */
.stats__cards-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: clamp(24px, 2.8vw, 32px);
  max-width: var(--hero-max-width);
  margin: 0 auto;
  padding: clamp(32px, 4vw, 48px) 0;
}

.stats-card {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: clamp(16px, 2vw, 24px);
  min-height: clamp(240px, 28vh, 320px);
  padding: clamp(28px, 3.2vw, 40px);
  border: 1px solid rgb(255 255 255 / 0.12);
  border-radius: 16px;
  overflow: hidden;
  opacity: 0;
  transform: translateY(20px);
  transition: all 420ms cubic-bezier(0.4, 0, 0.2, 1);
}

.stats__chart.is-ready .stats-card {
  animation: stats-card-in 560ms cubic-bezier(0.22, 1, 0.36, 1) forwards;
  animation-delay: var(--card-delay);
}

@keyframes stats-card-in {
  to { opacity: 1; transform: translateY(0); }
}

.stats-card__bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  opacity: 0.5;
  transition: all 520ms cubic-bezier(0.4, 0, 0.2, 1);
}

.stats-card:hover .stats-card__bg {
  opacity: 0.7;
  transform: scale(1.08);
}

.stats-card__overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(135deg, rgb(0 0 0 / 0.65) 0%, rgb(0 0 0 / 0.45) 100%);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  pointer-events: none;
  transition: background 420ms ease;
}

.stats-card:hover .stats-card__overlay {
  background:
    linear-gradient(135deg, rgb(113 145 208 / 0.45) 0%, rgb(0 0 0 / 0.5) 100%);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}

.stats-card::before {
  content: '';
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(135deg, rgb(113 145 208 / 0.18), transparent 65%);
  opacity: 0;
  transition: opacity 380ms ease;
  pointer-events: none;
}

.stats-card:hover {
  border-color: rgb(113 145 208 / 0.5);
  transform: translateY(-8px);
  box-shadow:
    0 16px 48px rgb(0 0 0 / 0.5),
    0 0 0 1px rgb(113 145 208 / 0.2);
}

.stats-card:hover::before {
  opacity: 1;
}

.stats-card__icon {
  position: relative;
  z-index: 2;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: clamp(56px, 6.5vw, 72px);
  height: clamp(56px, 6.5vw, 72px);
  border-radius: 14px;
  background: linear-gradient(135deg, rgb(113 145 208 / 0.4), rgb(170 184 213 / 0.3));
  color: rgb(214 227 255);
  flex-shrink: 0;
  box-shadow:
    0 6px 16px rgb(113 145 208 / 0.35),
    inset 0 1px 0 rgb(255 255 255 / 0.15);
  transition: all 360ms cubic-bezier(0.4, 0, 0.2, 1);
}

.stats-card:hover .stats-card__icon {
  background: linear-gradient(135deg, rgb(113 145 208 / 0.6), rgb(170 184 213 / 0.45));
  box-shadow:
    0 8px 24px rgb(113 145 208 / 0.5),
    inset 0 1px 0 rgb(255 255 255 / 0.25);
  transform: scale(1.1) translateY(-2px);
}

.stats-card__icon .ph {
  font-size: clamp(28px, 3.2vw, 36px);
  filter: drop-shadow(0 2px 4px rgb(0 0 0 / 0.3));
}

.stats-card__content {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  gap: 10px;
  flex: 1;
}

.stats-card__label {
  margin: 0;
  color: #ffffff;
  font-size: clamp(19px, 1.5vw, 26px);
  font-weight: 600;
  line-height: 1.25;
  letter-spacing: -0.015em;
  text-shadow: 0 2px 10px rgb(0 0 0 / 0.6);
}

.stats-card__note {
  margin: 0;
  color: rgb(247 248 248 / 0.88);
  font-size: clamp(13.5px, 1vw, 16px);
  font-weight: 400;
  line-height: 1.5;
  text-shadow: 0 1px 6px rgb(0 0 0 / 0.5);
}

.stats-card__footer {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  gap: 8px;
  margin-top: auto;
  padding-top: 12px;
  border-top: 1px solid rgb(255 255 255 / 0.18);
}

.stats-card__tag {
  display: inline-flex;
  align-items: center;
  padding: 7px 14px;
  border-radius: 7px;
  background: rgb(113 145 208 / 0.3);
  color: rgb(214 227 255);
  font-size: 11.5px;
  font-weight: 600;
  line-height: 1;
  letter-spacing: 0.03em;
  box-shadow:
    0 2px 8px rgb(0 0 0 / 0.3),
    inset 0 1px 0 rgb(255 255 255 / 0.15);
  transition: all 320ms ease;
}

.stats-card:hover .stats-card__tag {
  background: rgb(113 145 208 / 0.5);
  color: #ffffff;
  box-shadow:
    0 4px 12px rgb(113 145 208 / 0.4),
    inset 0 1px 0 rgb(255 255 255 / 0.25);
  transform: translateX(2px);
}

@media (max-width: 1200px) {
  .stats__cards-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 680px) {
  .stats__cards-grid {
    grid-template-columns: 1fr;
    max-width: 520px;
    gap: 20px;
  }

  .stats-card {
    min-height: 220px;
    padding: 24px;
  }
}

/* 核心数据卡片：卷帘门 UI */
.stats:has(.stats__cards-grid) .stats__chart {
  min-height: auto;
  padding: clamp(18px, 2vw, 44px) clamp(18px, 2vw, 44px) clamp(2px, 0.4vw, 6px);
  border-color: rgb(255 255 255 / 0.12);
  border-radius: 18px;
  background-color: rgb(255 255 255 / 0.025);
  background-image:
    linear-gradient(90deg, rgb(255 255 255 / 0.06) 1px, transparent 1px),
    linear-gradient(180deg, rgb(255 255 255 / 0.055) 1px, transparent 1px),
    radial-gradient(circle at 76% 4%, rgb(66 86 108 / 0.42), transparent 32%);
  background-size: clamp(118px, 9vw, 170px) clamp(118px, 9vw, 170px), clamp(118px, 9vw, 170px) clamp(118px, 9vw, 170px), auto;
}

.stats:has(.stats__cards-grid) {
  min-height: auto;
  padding-bottom: clamp(10px, 1vw, 18px);
}

.stats__cards-grid {
  box-sizing: border-box;
  display: flex;
  align-items: stretch;
  gap: clamp(18px, 1.8vw, 30px);
  width: 100%;
  max-width: none;
  padding: 0;
}

.stats-card {
  box-sizing: border-box;
  isolation: isolate;
  flex: 1 1 0;
  width: 100%;
  min-width: 0;
  gap: 0;
  height: clamp(540px, 34vw, 680px);
  min-height: clamp(540px, 34vw, 680px);
  aspect-ratio: auto;
  padding: clamp(38px, 3vw, 52px) clamp(24px, 2.2vw, 36px);
  border-color: rgb(255 255 255 / 0.14);
  border-radius: 12px;
  background: #111515;
  box-shadow:
    inset 0 1px 0 rgb(255 255 255 / 0.12),
    0 22px 58px rgb(0 0 0 / 0.28);
  cursor: pointer;
  transition:
    flex-grow 760ms cubic-bezier(0.22, 1, 0.36, 1),
    flex-basis 760ms cubic-bezier(0.22, 1, 0.36, 1),
    filter 520ms ease,
    border-color 420ms ease,
    box-shadow 520ms ease,
    transform 520ms cubic-bezier(0.22, 1, 0.36, 1);
  --shutter-open: 0%;
}

@media (min-width: 1281px) {
  .stats__cards-grid:is(:hover, :focus-within) .stats-card {
    flex-grow: 0.58;
    filter: saturate(0.78) brightness(0.82);
  }

  .stats__cards-grid .stats-card:is(:hover, :focus-visible) {
    flex-grow: 2.55;
    filter: saturate(1.08) brightness(1);
  }
}

.stats-card__bg {
  z-index: 0;
  opacity: 0.7;
  filter: saturate(0.9) contrast(1.06) brightness(0.92);
  transform: scale(1.04);
}

.stats-card:nth-child(even) .stats-card__bg {
  filter: saturate(0.82) contrast(1.08) brightness(0.86);
}

.stats-card:is(:hover, :focus-visible) .stats-card__bg {
  opacity: 0.7;
  transform: scale(1.08);
}

.stats-card__overlay {
  z-index: 1;
  background:
    repeating-linear-gradient(
      180deg,
      rgb(255 255 255 / 0.16) 0 1px,
      rgb(255 255 255 / 0.025) 1px 8px,
      rgb(0 0 0 / 0.1) 8px 10px,
      transparent 10px 22px
    ),
    linear-gradient(180deg, rgb(255 255 255 / 0.08), transparent 20%, rgb(0 0 0 / 0.16) 100%),
    linear-gradient(90deg, rgb(0 0 0 / 0.3), rgb(38 54 58 / 0.28) 48%, rgb(0 0 0 / 0.34)),
    linear-gradient(180deg, rgb(3 12 13 / 0.08), rgb(3 12 13 / 0.5));
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
}

.stats-card:is(:hover, :focus-visible) .stats-card__overlay {
  background:
    repeating-linear-gradient(
      180deg,
      rgb(255 255 255 / 0.2) 0 1px,
      rgb(255 255 255 / 0.055) 1px 8px,
      rgb(0 0 0 / 0.2) 8px 10px,
      transparent 10px 22px
    ),
    linear-gradient(180deg, rgb(255 255 255 / 0.13), transparent 18%, rgb(0 0 0 / 0.22) 100%),
    linear-gradient(90deg, rgb(0 0 0 / 0.52), rgb(42 76 78 / 0.52) 48%, rgb(0 0 0 / 0.6)),
    linear-gradient(180deg, rgb(12 56 54 / 0.4), rgb(3 12 13 / 0.78));
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
}

.stats-card::before {
  z-index: 2;
  background:
    linear-gradient(180deg, rgb(255 255 255 / 0.24) 0 1px, transparent 1px 18px),
    radial-gradient(circle at 18% 18%, rgb(119 150 197 / 0.22), transparent 24%),
    linear-gradient(180deg, rgb(255 255 255 / 0.05), transparent 42%);
  opacity: 1;
}

.stats-card::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 2;
  background:
    linear-gradient(180deg, rgb(255 255 255 / 0.08), rgb(255 255 255 / 0.01) 16%, rgb(0 0 0 / 0.13) 100%),
    repeating-linear-gradient(
      180deg,
      rgb(122 138 145 / 0.2) 0 1px,
      rgb(28 38 41 / 0.36) 1px 11px,
      rgb(255 255 255 / 0.08) 11px 12px,
      rgb(7 12 13 / 0.42) 12px 22px
    );
  clip-path: inset(var(--shutter-open) 0 0 0);
  transform: translate3d(0, 0, 0);
  pointer-events: none;
  transition:
    clip-path 620ms cubic-bezier(0.22, 1, 0.36, 1),
    transform 620ms cubic-bezier(0.22, 1, 0.36, 1),
    filter 620ms cubic-bezier(0.22, 1, 0.36, 1);
  filter: brightness(1);
  opacity: 0.72;
}

.stats__chart.is-switching .stats-card::after {
  animation: stats-shutter-drop 820ms cubic-bezier(0.22, 1, 0.36, 1) both;
  animation-delay: calc(var(--card-delay) + 100ms);
}

@keyframes stats-shutter-drop {
  0% {
    clip-path: inset(100% 0 0 0);
    transform: translate3d(0, -18px, 0);
    filter: brightness(1.18);
  }
  54% {
    clip-path: inset(0% 0 0 0);
    transform: translate3d(0, 0, 0);
    filter: brightness(1);
  }
  100% {
    clip-path: inset(0% 0 0 0);
    transform: translate3d(0, 0, 0);
    filter: brightness(0.86);
  }
}

.stats-card:is(:hover, :focus-visible) {
  --shutter-open: 72%;
}

.stats__chart:not(.is-switching) .stats-card:is(:hover, :focus-visible)::after {
  animation: none;
}

.stats-card:is(:hover, :focus-visible)::after {
  filter: brightness(1.08);
  opacity: 0.88;
}

.stats-card__icon,
.stats-card__content,
.stats-card__footer {
  position: relative;
  z-index: 3;
}

.stats-card__icon {
  width: clamp(58px, 4.6vw, 68px);
  height: clamp(58px, 4.6vw, 68px);
  margin-bottom: clamp(22px, 2vw, 30px);
  border: 1px solid rgb(255 255 255 / 0.13);
  border-radius: 12px;
  background: linear-gradient(135deg, rgb(119 150 197 / 0.78), rgb(86 110 150 / 0.58));
  color: #ffffff;
  box-shadow:
    inset 0 1px 0 rgb(255 255 255 / 0.18),
    0 16px 38px rgb(26 54 88 / 0.36);
}

.stats-card:is(:hover, :focus-visible) .stats-card__icon {
  transform: translateY(-2px);
}

.stats-card__icon .ph {
  font-size: clamp(34px, 3vw, 42px);
}

.stats-card__content {
  gap: 12px;
  flex: 0 0 auto;
}

.stats-card__label {
  max-width: 9em;
  font-size: clamp(34px, 3.4vw, 64px);
  font-weight: 820;
  line-height: 1.06;
  letter-spacing: 0;
}

.stats-card__note {
  color: rgb(255 255 255 / 0.9);
  font-size: clamp(18px, 1.35vw, 25px);
  font-weight: 720;
  line-height: 1.35;
}

.stats-card__footer {
  width: 100%;
  margin-top: auto;
  padding-top: 14px;
  border-top-color: rgb(255 255 255 / 0.22);
}

.stats-card__tag {
  min-height: 28px;
  padding: 0 16px;
  border-radius: 7px;
  background: rgb(91 123 162 / 0.88);
  color: #ffffff;
  font-size: clamp(14px, 1vw, 18px);
  font-size: 12px;
  font-weight: 760;
  box-shadow:
    inset 0 1px 0 rgb(255 255 255 / 0.16),
    0 8px 18px rgb(0 0 0 / 0.24);
}

@media (max-width: 1280px) {
  .stats__cards-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 680px) {
  .stats:has(.stats__cards-grid) .stats__chart {
    padding: 16px;
  }

  .stats__cards-grid {
    display: grid;
    grid-template-columns: 1fr;
    max-width: none;
  }

  .stats-card {
    min-height: 430px;
    aspect-ratio: auto;
  }
}

/* 保持首页 banner 设备图在大标题文字后方 */
.hero .hero__title,
.hero .hero__title-row,
.hero .hero__slogan {
  z-index: 10 !important;
}

.hero .hero__title-row {
  gap: 0 !important;
}

.hero .hero__title-line--three {
  transform: none !important;
}

.hero .engine-visual {
  z-index: 5 !important;
}

@media (max-width: 860px) {
  .hero {
    min-height: 980px;
    height: 150vh;
  }

  .hero__nav,
  .hero__nav.nav--scroll-down {
    grid-template-columns: minmax(0, 1fr) auto;
    grid-template-areas:
      "brand cta"
      "links links";
    align-items: center;
    gap: 10px 12px;
    box-sizing: border-box;
    width: calc(100% - 24px);
    max-width: var(--hero-max-width);
    padding: 11px 12px 10px;
    border-radius: 20px;
    background-color: rgb(255 255 255 / 0.92);
    color: #111111;
    box-shadow: 0 14px 34px rgb(15 23 42 / 0.12);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
  }

  .hero__nav.nav--scroll-up {
    transform: translate3d(-50%, -148px, 0);
  }

  .brand {
    grid-area: brand;
  }

  .brand__logo {
    height: 34px;
  }

  .hero__cta {
    grid-area: cta;
    min-width: auto;
    min-height: 36px;
    padding: 0 13px;
    border-radius: 999px;
    background: #111111;
    color: #ffffff;
    font-size: 13px;
    white-space: nowrap;
  }

  .hero__links,
  .subpage .hero__links {
    grid-area: links;
    display: flex;
    justify-content: flex-start;
    gap: 8px;
    width: 100%;
    overflow-x: auto;
    overflow-y: hidden;
    padding: 2px 1px 1px;
    color: #111111;
    font-size: 13px;
    scroll-snap-type: x proximity;
    scrollbar-width: none;
    -webkit-overflow-scrolling: touch;
  }

  .hero__links::-webkit-scrollbar {
    display: none;
  }

  .hero__links a {
    flex: 0 0 auto;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 32px;
    padding: 0 12px;
    border-radius: 999px;
    background: rgb(17 17 17 / 0.06);
    color: inherit;
    scroll-snap-align: start;
  }

  .hero__links a:hover {
    color: inherit;
  }

  .hero__title {
    top: calc(50% - 30px - clamp(74px, 17vw, 112px));
  }

  .hero__title-row {
    top: calc(50% - 30px + clamp(116px, 27vw, 166px));
  }

  .subpage-hero {
    padding-top: 158px;
  }
}

@media (max-width: 560px) {
  .hero {
    min-height: 820px;
    height: 132vh;
  }

  .hero__nav,
  .hero__nav.nav--scroll-down {
    width: calc(100% - 16px);
    padding: 9px 10px;
    gap: 8px 10px;
    border-radius: 18px;
  }

  .brand__logo {
    height: 30px;
  }

  .hero__links {
    gap: 6px;
    font-size: 12px;
  }

  .hero__links a {
    min-height: 30px;
    padding: 0 10px;
  }

  .hero__cta {
    min-height: 34px;
    padding: 0 11px;
    font-size: 12px;
  }

  .hero__title {
    top: calc(50% - 14px - clamp(66px, 17vw, 94px));
  }

  .hero__title-row {
    top: calc(50% - 14px + clamp(106px, 27vw, 146px));
  }

  .subpage-hero {
    min-height: 62vh;
    padding: 148px 18px 46px;
  }

  .subpage-section {
    width: min(100% - 28px, var(--hero-max-width));
    padding: 48px 0;
  }

  .site-footer .site-footer__inquiry--dark {
    grid-template-columns: 1fr;
    width: 100%;
  }

  .site-footer .site-footer__inquiry--dark label {
    grid-column: 1 / -1;
  }
}
