/* RoboNow — Autodesk.cn inspired layout, minimal surface area */

:root {
  --bg: #fff;
  --bg-muted: #f5f5f5;
  --ink: #1a1a1a;
  --ink-muted: #4a4a4a;
  --line: #e6e6e6;
  --header: #000;
  --header-text: #fff;
  /* DHIG / MuiButton（与 autodesk.com.cn 所用 Pharmacopeia 一致） */
  --dhig-purple: #ffffff;
  --dhig-ring-hover: #bfbfbf;
  --dhig-green-active: #2bc275;
  --accent: #111111;
  --wrap: min(1500px, calc(100% - 40px));
  --site-header-height: 92px;
  --radius: 4px;
  --shadow: 0 12px 40px rgba(0, 0, 0, 0.12);
  font-synthesis: none;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  /* Lenis 已做平滑滚动；避免与 CSS smooth 叠乘导致「一格走不动」感 */
  scroll-behavior: auto;
}

body {
  margin: 0;
  font-family: system-ui, -apple-system, "Segoe UI", Roboto, "PingFang SC", "Hiragino Sans GB", "Microsoft YaHei", sans-serif;
  font-size: 15px;
  line-height: 1.5;
  color: var(--ink);
  background: #020617;
}

.site-three-bg {
  position: fixed;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  background: #000;
  --spot-x: -200px;
  --spot-y: -200px;
}

.site-three-bg::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: radial-gradient(
    260px circle at var(--spot-x) var(--spot-y),
    rgba(180, 220, 255, 0.16) 0%,
    rgba(120, 170, 255, 0.08) 35%,
    rgba(0, 0, 0, 0) 72%
  );
  opacity: 0.9;
}

.site-three-bg canvas {
  display: block;
  width: 100%;
  height: 100%;
}

main {
  position: relative;
  z-index: 1;
}

.site-footer {
  position: relative;
  z-index: 2;
  background: #fff;
}

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

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

a:hover {
  text-decoration: underline;
}

.wrap {
  width: var(--wrap);
  margin-inline: auto;
}

.skip {
  position: absolute;
  left: -9999px;
  top: auto;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

.skip:focus {
  left: 16px;
  top: 16px;
  width: auto;
  height: auto;
  padding: 8px 12px;
  background: #fff;
  color: #000;
  z-index: 2000;
  outline: 2px solid var(--accent);
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

/* Header */
.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: var(--header);
  color: var(--header-text);
}

.topbar {
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  font-size: 12px;
}

.topbar__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
  min-height: 36px;
}

.topbar__hint {
  min-width: 0;
  flex: 1;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.topbar__phone {
  color: #b8b8b8;
  text-decoration: none;
  font-weight: 600;
  letter-spacing: 0.02em;
  white-space: nowrap;
}

.topbar__phone:hover {
  color: #e8e8e8;
  text-decoration: none;
}

.topbar__phone:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 2px;
}

.topbar__nav {
  display: inline-flex;
  gap: 4px;
  align-items: center;
  flex-wrap: nowrap;
  padding: 0 0 0 12px;
  margin: 0;
  border: 0;
  border-left: 1px solid #b8b8b8;
  border-radius: 0;
  background: transparent;
  color: #b8b8b8;
  font: inherit;
  line-height: inherit;
  cursor: pointer;
  touch-action: manipulation;
  -webkit-tap-highlight-color: transparent;
}

.topbar__nav:hover {
  color: #e8e8e8;
}

.topbar__nav:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 2px;
}


.nav-row {
  display: flex;
  align-items: center;
  gap: 12px;
  min-height: 56px;
}

@media (min-width: 901px) {
  .nav-row {
    gap: 20px;
  }
}

.logo {
  display: inline-flex;
  align-items: center;
  flex-shrink: 0;
}

.logo:hover {
  text-decoration: none;
  opacity: 0.92;
}

.logo__img {
  display: block;
  height: 34px;
  width: auto;
}

.logo__img--footer {
  height: 43px;
}

.nav-toggle {
  display: none;
  margin-left: auto;
  flex-shrink: 0;
  width: 44px;
  height: 44px;
  border: 0;
  background: transparent;
  color: inherit;
  cursor: pointer;
  border-radius: var(--radius);
  touch-action: manipulation;
  -webkit-tap-highlight-color: transparent;
}

.nav-toggle:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 2px;
}

.nav-toggle__bar,
.nav-toggle__bar::before,
.nav-toggle__bar::after {
  display: block;
  width: 20px;
  height: 2px;
  background: currentColor;
  margin: 0 auto;
  position: relative;
}

.nav-toggle__bar::before,
.nav-toggle__bar::after {
  content: "";
  position: absolute;
  left: 0;
}

.nav-toggle__bar::before {
  top: -6px;
}

.nav-toggle__bar::after {
  top: 6px;
}

.site-nav {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 28px;
}

.site-nav__list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  align-items: center;
  gap: 8px;
}

.site-nav__item {
  position: relative;
}

.site-nav__link,
.site-nav__trigger {
  font: inherit;
  color: inherit;
  background: none;
  border: 0;
  cursor: pointer;
  padding: 10px 12px;
  border-radius: var(--radius);
}

.site-nav__link:hover,
.site-nav__trigger:hover {
  text-decoration: none;
  background: rgba(255, 255, 255, 0.08);
}

.site-nav__trigger[aria-expanded="true"] {
  background: rgba(255, 255, 255, 0.12);
}

.mega {
  position: absolute;
  left: 0;
  top: 100%;
  width: min(100vw, 720px);
  background: #fff;
  color: var(--ink);
  box-shadow: var(--shadow);
  border: 1px solid var(--line);
  padding: 20px 0;
}

.mega__grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1.2fr;
  gap: 24px;
  align-items: start;
}

.mega__title {
  margin: 0 0 8px;
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--ink-muted);
}

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

.mega__links a {
  display: block;
  padding: 6px 0;
  color: var(--ink);
}

.mega__links a:hover {
  color: var(--accent);
}

.mega__cta {
  background: var(--bg-muted);
  padding: 16px;
  border-radius: var(--radius);
}

.mega__cta p {
  margin: 0 0 12px;
  font-weight: 600;
}

/* 对齐 DHIG：.MuiButton-contained / .MuiButton-outlined（见 swc.autodesk.com pharmacopeia dhig-global） */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-width: 80px;
  padding: 9px 1.25rem;
  border-radius: 4px;
  font-weight: 600;
  font-size: 1rem;
  line-height: 1.25;
  border-width: 1px;
  border-style: solid;
  cursor: pointer;
  text-decoration: none;
  text-transform: none;
  box-sizing: border-box;
  box-shadow: none;
  transition: box-shadow 0.15s ease, background-color 0.15s ease, color 0.15s ease, border-color 0.15s ease;
}

.btn:hover {
  text-decoration: none;
}

.btn:focus {
  outline: none;
}

/* 浅色背景：MuiButton-contained */
.btn--primary {
  background-color: #000;
  border-color: #000;
  color: #fff;
}

.btn--primary:hover {
  background-color: #000;
  color: #fff;
  box-shadow: 0 0 0 1px var(--dhig-ring-hover);
}

.btn--primary:active {
  box-shadow: 0 0 0 2px var(--dhig-green-active);
}

.btn--primary:focus-visible {
  box-shadow: 0 0 0 3px var(--dhig-purple), 0 0 0 1px #fff;
}

/* 深色背景（顶栏、Autodesk 首屏）：dhig-theme--dark .MuiButton-contained */
.site-header .btn--primary,
.robo-hero-dex .btn--primary {
  background-color: #fff;
  border-color: #fff;
  color: #000;
}

.site-header .btn--primary:hover,
.robo-hero-dex .btn--primary:hover {
  background-color: #fff;
  color: #000;
  box-shadow: 0 0 0 1px var(--dhig-ring-hover);
}

.site-header .btn--primary:active,
.robo-hero-dex .btn--primary:active {
  box-shadow: 0 0 0 2px var(--dhig-green-active);
}

.site-header .btn--primary:focus-visible,
.robo-hero-dex .btn--primary:focus-visible {
  box-shadow: 0 0 0 3px var(--dhig-purple), 0 0 0 1px #000;
}

/* 浅色背景：MuiButton-outlined */
.btn--outline-dark {
  background-color: transparent;
  border-color: #000;
  color: #000;
}

.btn--outline-dark:hover {
  background-color: transparent;
  box-shadow: 0 0 0 1px var(--dhig-ring-hover);
}

.btn--outline-dark:active {
  box-shadow: 0 0 0 2px var(--dhig-green-active);
}

.btn--outline-dark:focus-visible {
  box-shadow: 0 0 0 3px var(--dhig-purple), 0 0 0 1px #fff;
}

.btn--lg {
  padding: 11px 1.5rem;
  font-size: 1rem;
  min-width: 96px;
}

/* —— 首屏 hero：DHIG 深色主题与排版 —— */
.dhig-theme--dark {
  color: #fff;
}

.dhig-typography-headline-larger {
  font-weight: 800;
  font-size: clamp(1.75rem, calc(1.42rem + 1.48vw), 2.75rem);
  letter-spacing: 0;
  line-height: 1.2;
  margin: 0 0 1rem;
}

/* —— 首屏大视频：dexforce.com 式 sticky + 滚动 scrub（见 hero-dex-scroll.js） —— */
.robo-hero-dex {
  position: relative;
  z-index: 1;
  color: #fff;
}

.robo-hero-dex__scroll {
  height: 210vh;
  height: 210dvh;
  position: relative;
}

.robo-hero-dex__bg {
  position: sticky;
  top: 0;
  left: 0;
  width: 100%;
  height: 100svh;
  height: 100dvh;
  perspective: 300vh;
  overflow: hidden;
  transform: translateZ(0);
  backface-visibility: hidden;
  background: #000;
  will-change: transform, filter, opacity;
}

.robo-hero-dex__bg video {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transform-origin: center center;
  will-change: transform;
}

.robo-hero-dex__title-layer {
  position: relative;
  z-index: 8;
  display: flex;
  justify-content: center;
  pointer-events: none;
  margin-top: clamp(-60vh, -32.55vw, -18rem);
  padding: 0 1rem clamp(2rem, 6vw, 5.5rem);
}

.robo-hero-dex__title {
  width: min(90vw, 720px);
  max-width: 100%;
  height: auto;
  max-height: min(38vh, 320px);
  object-fit: contain;
  user-select: none;
  -webkit-user-drag: none;
}

@media (max-width: 767px) {
  .robo-hero-dex__bg {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
  }

  .robo-hero-dex__bg video {
    height: auto;
    min-height: 100%;
    flex: 1 1 auto;
  }

  .robo-hero-dex__title-layer {
    margin-top: clamp(-22rem, -85vw, -14rem);
    padding-bottom: clamp(3rem, 14vw, 5rem);
  }

  .robo-hero-dex__title {
    max-width: 85%;
    max-height: none;
  }
}

/* 应用场景：单区 8 卡，上图下文 */
.app-scenes {
  position: relative;
  z-index: 1;
  padding: clamp(45px, 32vh, 318px) 0 clamp(49px, 12vh, 96px);
  color: #e8f0ff;
}

.app-scenes__inner {
  display: flex;
  flex-direction: column;
  gap: clamp(1.25rem, 3vh, 2rem);
}

.app-scenes__head {
  text-align: center;
  max-width: 42rem;
  margin-inline: auto;
}

.app-scenes__title {
  margin: 0 0 0.6rem;
  font-size: clamp(2rem, calc(1.4rem + 1.4vw), 3.25rem);
  color: #f4f8ff;
  letter-spacing: 0.08em;
}

.app-scenes__lede {
  margin: 0;
  font-size: clamp(14px, 1.35vw, 16px);
  line-height: 1.55;
  color: rgba(226, 235, 255, 0.78);
}

.app-scenes__cards {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: clamp(14px, 2vw, 22px);
}

@media (max-width: 1100px) {
  .app-scenes__cards {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 560px) {
  .app-scenes__cards {
    grid-template-columns: minmax(0, 1fr);
  }
}

.scene-card {
  display: flex;
  flex-direction: column;
  min-height: 0;
  height: 100%;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: calc(var(--radius) + 2px);
  transition: border-color 0.2s ease, background-color 0.2s ease, box-shadow 0.2s ease;
}

.scene-card:hover {
  background: rgba(255, 255, 255, 0.07);
  border-color: rgba(255, 255, 255, 0.62);
  box-shadow: 0 8px 28px rgba(0, 0, 0, 0.25);
}

.scene-card__media {
  position: relative;
  aspect-ratio: 16 / 10;
  overflow: hidden;
  background: #0c1220;
}

.scene-card__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transform: scale(1);
  transition: transform 0.35s ease;
}

.scene-card:hover .scene-card__media img {
  transform: scale(1.05);
}

.scene-card__body {
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
  flex: 1;
  padding: clamp(12px, 1.6vw, 16px) clamp(12px, 1.8vw, 16px) clamp(14px, 2vw, 18px);
  min-height: 0;
}

.scene-card__title {
  margin: 0;
  font-size: clamp(0.95rem, 0.85vw + 0.8rem, 1.12rem);
  font-weight: 700;
  color: #fff;
  line-height: 1.25;
}

.scene-card__desc {
  margin: 0;
  flex: 1;
  font-size: clamp(12.5px, 1.1vw, 14px);
  line-height: 1.45;
  color: rgba(215, 225, 245, 0.86);
}

.app-scenes.is-reveal-enabled .scene-card {
  opacity: 0;
  transform: translate3d(0, 72px, 0) scale(0.96);
  filter: blur(3px);
  transition:
    opacity 1.05s cubic-bezier(0.22, 0.7, 0.2, 1),
    transform 1.05s cubic-bezier(0.22, 0.7, 0.2, 1),
    filter 1.05s ease;
  transition-delay: var(--reveal-delay, 0ms);
}

.app-scenes.is-reveal-enabled.is-visible .scene-card {
  opacity: 1;
  transform: translate3d(0, 0, 0) scale(1);
  filter: blur(0);
}

.company-news.is-reveal-enabled .company-news__copy,
.company-news.is-reveal-enabled .company-news__feature {
  opacity: 0;
  transform: translate3d(0, 64px, 0) scale(0.97);
  filter: blur(3px);
  transition: opacity 0.72s cubic-bezier(0.2, 0.75, 0.2, 1), transform 0.72s cubic-bezier(0.2, 0.75, 0.2, 1), filter 0.72s ease;
}

.company-news.is-reveal-enabled .company-news__feature {
  transition-delay: 130ms;
}

.company-news.is-reveal-enabled.is-visible .company-news__copy,
.company-news.is-reveal-enabled.is-visible .company-news__feature {
  opacity: 1;
  transform: translate3d(0, 0, 0) scale(1);
  filter: blur(0);
}

.lede {
  margin: 0 0 24px;
  font-size: clamp(15px, 1.4vw, 18px);
  opacity: 0.95;
  max-width: 52ch;
}

.lede--muted {
  color: rgba(232, 242, 255, 0.82);
  opacity: 1;
}

.band {
  padding: 56px 0;
  color: #e7efff;
  content-visibility: auto;
  contain-intrinsic-size: 1px 480px;
}

.band--muted {
  background: transparent;
}

.section-title {
  margin: 0 0 20px;
  font-size: clamp(22px, 2.4vw, 28px);
  font-weight: 700;
  color: #f4f8ff;
}

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

.card {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  background: #fff;
  color: var(--ink);
  display: flex;
  flex-direction: column;
  min-height: 100%;
}

.card__media {
  aspect-ratio: 16 / 10;
  overflow: hidden;
  background: #eaeaea;
}

.card__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.card__title {
  margin: 16px 16px 6px;
  font-size: 18px;
}

.card__desc {
  margin: 0 16px 12px;
  color: var(--ink-muted);
  font-size: 14px;
  flex: 1;
}

.card__link {
  margin: 0 16px 16px;
  font-weight: 600;
  color: var(--accent);
}

.card__link:hover {
  text-decoration: underline;
}

.split__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items:center;
}

.split__copy,
.promo {
  color: #e7efff;
}

.split__media {
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--line);
  background: #eaeaea;
  aspect-ratio: 16 / 9;
}

.split__media img {
  width: 100%;
  height: 100%;
}

.split__media video {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
}

.company-news {
  padding-top: 124px;
  padding-bottom: 180px;
}

.company-news .split__inner {
  align-items: stretch;
}

.company-news__copy {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.company-news__copy .app-scenes__title {
  margin-bottom: 0.75rem;
}

.company-news__lede {
  margin-bottom: 20px;
}

.company-news__list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 10px;
}

.company-news__item {
  border-radius: var(--radius);
}

.company-news__item--placeholder {
  padding: 12px 14px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(255, 255, 255, 0.03);
}

.company-news__placeholder {
  color: rgba(226, 235, 255, 0.72);
  font-size: 14px;
}

.company-news__date {
  display: inline-block;
  margin: 0;
  white-space: nowrap;
  font-size: 12px;
  color: rgba(226, 235, 255, 0.74);
}

.company-news__link {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 10px;
  min-height: 92px;
  padding: 10px 12px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: inherit;
  background: rgba(255, 255, 255, 0.04);
  color: #f4f8ff;
  font-weight: 600;
  line-height: 1.45;
  transition: border-color 0.2s ease, background-color 0.2s ease, box-shadow 0.2s ease, color 0.2s ease;
}

.company-news__title {
  display: block;
  line-height: 1.35;
  line-clamp: 1;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 1;
  overflow: hidden;
}

.company-news__main {
  display: flex;
  flex: 1;
  min-width: 0;
  flex-direction: row;
  align-items: center;
  gap: 10px;
}

.company-news__thumb {
  flex: 0 0 112px;
  display: block;
  border-radius: var(--radius);
  overflow: hidden;
  background: #0c1220;
  height: 72px;
  min-height: 72px;
}

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

.company-news__link:hover {
  text-decoration: none;
  color: #ffffff;
  border-color: rgba(255, 255, 255, 0.72);
  background: rgba(255, 255, 255, 0.08);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.22);
}

.company-news__link:focus-visible {
  outline: 2px solid var(--dhig-purple);
  outline-offset: 2px;
  text-decoration: none;
}

.company-news__feature {
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.04);
  display: flex;
  flex-direction: column;
  height: 100%;
}

.company-news__feature-media {
  aspect-ratio: 16 / 10;
  background: #0c1220;
  flex: 1;
}

.company-news__feature-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.company-news__feature-body {
  padding: 14px 16px 16px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 8px;
}

.company-news__feature-title {
  margin: 0 0 8px;
  color: #f4f8ff;
  font-size: 20px;
  line-height: 1.35;
}

.company-news__feature-date {
  margin-bottom: 2px;
}

.company-news__feature-btn {
  min-width: 104px;
  border-color: #fff;
  color: #fff;
  background: transparent;
  transition: background-color 0.45s ease, color 0.45s ease, box-shadow 0.45s ease, border-color 0.45s ease;
}

.company-news__feature-btn:hover {
  background: #fff;
  border-color: #fff;
  color: #000;
  box-shadow: 0 0 0 1px #fff, 0 0 24px rgba(255, 255, 255, 0.45);
}

.company-news__feature-btn:focus-visible {
  box-shadow: 0 0 0 2px #fff, 0 0 0 4px rgba(255, 255, 255, 0.35);
}

.promo {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.biz-coop {
  margin-bottom: 100px;
  overflow: visible;
}

.biz-coop__actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 12px;
  overflow: visible;
}

.biz-order-popover {
  position: relative;
  display: inline-flex;
  overflow: visible;
}

.biz-order-popover__card {
  position: absolute;
  bottom: calc(100% + 10px);
  right: 0;
  z-index: 120;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  min-width: 300px;
  padding: 12px;
  border: 1px solid rgba(255, 255, 255, 0.32);
  border-radius: 8px;
  background: rgba(15, 15, 15, 0.95);
  box-shadow: 0 16px 36px rgba(0, 0, 0, 0.35);
  opacity: 0;
  visibility: hidden;
  transform: translateY(8px);
  pointer-events: none;
  transition: opacity 0.2s ease, transform 0.2s ease, visibility 0.2s ease;
}

.biz-order-popover__card::after {
  content: "";
  position: absolute;
  right: 20px;
  top: 100%;
  width: 10px;
  height: 10px;
  background: rgba(15, 15, 15, 0.95);
  border-right: 1px solid rgba(255, 255, 255, 0.32);
  border-bottom: 1px solid rgba(255, 255, 255, 0.32);
  transform: translateY(-5px) rotate(45deg);
}

.biz-order-popover:hover .biz-order-popover__card,
.biz-order-popover:focus-within .biz-order-popover__card {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
  pointer-events: auto;
}

.biz-order-popover__item {
  margin: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
}

.biz-order-popover__label {
  margin: 0;
  font-size: 12px;
  color: rgba(255, 255, 255, 0.88);
}

.biz-order-popover__qr {
  width: 120px;
  height: 120px;
  border-radius: 6px;
  background: #fff;
  border: 1px solid rgba(255, 255, 255, 0.4);
}

.btn--solid-light {
  background-color: #fff;
  border-color: #fff;
  color: #000;
}

.btn--solid-light:hover {
  background-color: #fff;
  border-color: #fff;
  color: #000;
  box-shadow: 0 0 0 1px #fff, 0 0 24px rgba(255, 255, 255, 0.45);
}

.btn--solid-light:active {
  box-shadow: 0 0 0 2px var(--dhig-green-active);
}

.btn--solid-light:focus-visible {
  box-shadow: 0 0 0 2px #fff, 0 0 0 4px rgba(255, 255, 255, 0.35);
}

.biz-modal {
  position: fixed;
  inset: 0;
  z-index: 1300;
  display: grid;
  place-items: center;
  padding: 12px;
}

.biz-modal[hidden] {
  display: none !important;
}

.biz-modal__mask {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.68);
  backdrop-filter: blur(3px);
  opacity: 0;
  transition: opacity 0.22s ease;
}

.biz-modal__panel {
  position: relative;
  z-index: 1;
  width: min(760px, 100%);
  max-height: calc(100dvh - 40px);
  margin: 0;
  padding: 22px 20px;
  border: 1px solid #4a4a4a;
  border-radius: 10px;
  background: #0f0f0f;
  box-shadow: 0 24px 52px rgba(0, 0, 0, 0.48);
  color: #f5f5f5;
  overflow-x: hidden;
  overflow-y: auto;
  transform-origin: center center;
  opacity: 0;
}

.biz-modal.is-open .biz-modal__mask {
  opacity: 1;
}

.biz-modal.is-open .biz-modal__panel {
  animation: biz-tv-open 280ms cubic-bezier(0.2, 0.8, 0.2, 1) both;
}

.biz-modal.is-closing .biz-modal__mask {
  opacity: 0;
}

.biz-modal.is-closing .biz-modal__panel {
  animation: biz-tv-close 260ms cubic-bezier(0.6, 0.04, 1, 0.28) both;
}

@keyframes biz-tv-open {
  0% {
    opacity: 0;
    transform: scaleY(0.03) scaleX(0.88);
    filter: brightness(2.2) blur(2px);
  }
  55% {
    opacity: 1;
    transform: scaleY(1.06) scaleX(1.01);
    filter: brightness(1.12) blur(0);
  }
  100% {
    opacity: 1;
    transform: scaleY(1) scaleX(1);
    filter: brightness(1) blur(0);
  }
}

@keyframes biz-tv-close {
  0% {
    opacity: 1;
    transform: scaleY(1) scaleX(1);
    filter: brightness(1) blur(0);
  }
  68% {
    opacity: 0.95;
    transform: scaleY(0.06) scaleX(0.98);
    filter: brightness(1.35) blur(1px);
  }
  100% {
    opacity: 0;
    transform: scaleY(0.01) scaleX(0.84);
    filter: brightness(2.4) blur(2px);
  }
}

.biz-modal__close {
  position: absolute;
  z-index: 2;
  top: 10px;
  right: 10px;
  width: 34px;
  height: 34px;
  border: 0;
  border-radius: 50%;
  background: #262626;
  color: #fff;
  font-size: 20px;
  line-height: 1;
  cursor: pointer;
}

.biz-modal__title {
  margin: 0;
  font-size: clamp(22px, 2.2vw, 28px);
  color: #ffffff;
}

.biz-modal__desc {
  margin: 8px 0 18px;
  font-size: 14px;
  color: rgba(255, 255, 255, 0.75);
}

.biz-modal__form {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px 16px;
}

.biz-modal__field {
  display: flex;
  flex-direction: column;
  gap: 7px;
}

.biz-modal__field span {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.95);
}

.biz-modal__field em {
  font-style: normal;
  color: #ffffff;
}

.biz-modal__field input,
.biz-modal__field select,
.biz-modal__field textarea {
  width: 100%;
  border: 1px solid #5e5e5e;
  border-radius: 6px;
  background: #161616;
  color: #f5f5f5;
  padding: 10px 12px;
  font: inherit;
}

.biz-modal__field input:focus,
.biz-modal__field select:focus,
.biz-modal__field textarea:focus {
  outline: 2px solid #ffffff;
  outline-offset: 1px;
}

.biz-modal__field--full {
  grid-column: 1 / -1;
}

.biz-modal__intent-group {
  margin: 0;
  padding: 0;
  border: 0;
}

.biz-modal__intent-group legend {
  margin: 0 0 8px;
  padding: 0;
  font-size: 14px;
  color: rgba(255, 255, 255, 0.95);
}

.biz-modal__intent-options {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
}

.biz-modal__intent-option {
  display: block;
}

.biz-modal__intent-option input {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}

.biz-modal__intent-option span {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  border: 1px solid #8a8a8a;
  border-radius: 6px;
  color: #ffffff;
  background: #101010;
  font-size: 14px;
  transition: background-color 0.18s ease, color 0.18s ease, border-color 0.18s ease, box-shadow 0.18s ease;
}

.biz-modal__intent-option:hover span {
  border-color: #ffffff;
  box-shadow: 0 0 0 1px rgba(255, 255, 255, 0.45), 0 0 18px rgba(255, 255, 255, 0.35);
}

.biz-modal__intent-option input:checked + span {
  background: #ffffff;
  color: #000000;
  border-color: #ffffff;
  box-shadow: 0 0 0 1px rgba(255, 255, 255, 0.45), 0 0 18px rgba(255, 255, 255, 0.35);
}

.biz-modal__intent-option input:focus-visible + span {
  outline: 2px solid #ffffff;
  outline-offset: 2px;
}

.biz-modal__actions {
  grid-column: 1 / -1;
  display: flex;
  justify-content: flex-end;
  gap: 10px;
  margin-top: 4px;
}

.biz-modal__btn {
  min-width: 106px;
}

.biz-modal__btn--cancel {
  border: 1px solid #ffffff;
  background: transparent;
  color: #ffffff;
}

.biz-modal__btn--cancel:hover {
  border-color: #ffffff;
  background: transparent;
  color: #ffffff;
}

.biz-modal__btn--submit {
  border: 1px solid #ffffff;
  background: #ffffff;
  color: #000000;
}

.biz-modal__btn--submit:hover {
  border-color: #ffffff;
  background: #ffffff;
  color: #000000;
}

@media (max-width: 760px) {
  .biz-modal {
    padding: 8px;
  }

  .biz-modal__panel {
    width: 100%;
    max-height: calc(100dvh - 16px);
    padding: 16px 14px;
    border-radius: 8px;
  }

  .biz-modal__close {
    top: 8px;
    right: 8px;
    width: 36px;
    height: 36px;
    font-size: 20px;
  }

  .biz-modal__title {
    padding-right: 36px;
    font-size: clamp(19px, 5vw, 24px);
  }

  .biz-modal__desc {
    margin-bottom: 14px;
    font-size: 13px;
  }

  .biz-modal__form {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .biz-modal__field input,
  .biz-modal__field textarea {
    min-height: 42px;
    padding: 10px 11px;
    font-size: 15px;
  }

  .biz-modal__intent-options {
    grid-template-columns: 1fr;
    gap: 8px;
  }

  .biz-modal__intent-option span {
    min-height: 40px;
    font-size: 14px;
  }

  .biz-modal__actions {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 8px;
  }

  .biz-modal__btn {
    min-width: 0;
    min-height: 42px;
    width: 100%;
    padding: 10px 12px;
  }
}

.site-footer {
  border-top: 1px solid var(--line);
  padding: 40px 0 48px;
  font-size: 14px;
  color: var(--ink-muted);
  content-visibility: auto;
  contain-intrinsic-size: 1px 220px;
}

.footer__grid {
  display: grid;
  grid-template-columns: 1.1fr 0.85fr 1fr 1.35fr;
  gap: 24px;
  justify-items: center;
  align-items: start;
}

.footer__brand {
  margin: 0 0 16px;
  font-weight: 700;
  color: var(--ink);
  display: flex;
  align-items: center;
  gap: 8px;
}

.footer__tag {
  margin: 0;
}

.footer__address {
  margin-top: 22px;
  max-width: 260px;
  color: var(--ink-muted);
  font-size: 13px;
  line-height: 1.82;
}

.footer__address p {
  margin: 0;
}

.footer__address p:first-child {
  margin-bottom: 12px;
  color: var(--ink);
  font-size: 16px;
  font-weight: 700;
  line-height: 1.45;
}

.footer__address p + p {
  margin-top: 4px;
}

.footer__qrs {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
  margin-top: 0;
  justify-self: end;
}

.footer__social-intro {
  grid-column: 1 / -1;
  max-width: 320px;
}

.footer__social-intro p {
  margin: 0;
}

.footer__social-intro p:not(.footer__heading) {
  color: var(--ink-muted);
  font-size: 13px;
}

.footer__qr-item {
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 6px;
  position: relative;
}

.footer__qr-label {
  margin: 0;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 12px;
  color: var(--ink);
}

.footer__qr-icon {
  width: 14px;
  height: 14px;
  display: block;
}

.footer__qr-image {
  width: 88px;
  height: 88px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fff;
  cursor: zoom-in;
  transform-origin: center top;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.footer__qr-image:hover,
.footer__qr-image:focus-visible,
.footer__contact-qr:hover,
.footer__contact-qr:focus-visible {
  position: relative;
  z-index: 5;
  transform: scale(2.25);
  box-shadow: 0 18px 46px rgba(0, 0, 0, 0.26);
}

.footer__heading {
  margin: 0 0 10px;
  font-size: 12px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--ink);
}

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

.footer__links li {
  margin-bottom: 8px;
}

.footer__contact .footer__links {
  color: var(--ink-muted);
}

.footer__contact-wechat {
  display: flex;
  align-items: flex-start;
}

.footer__contact-qr {
  width: 88px;
  height: 88px;
  border: 1px solid var(--line);
  background: #fff;
  object-fit: cover;
  cursor: zoom-in;
  transform-origin: left top;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.footer__meta {
  grid-column: 1 / -1;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 18px;
  padding-top: 18px;
  border-top: 1px solid var(--line);
  font-size: 13px;
  text-align: center;
}

.footer__meta p {
  margin: 0;
}

.footer__icp {
  opacity: 0.85;
}

.footer__meta-sep {
  margin: 0 10px;
  color: #b8b8b8;
}

@media (max-width: 960px) {
  .card-grid {
    grid-template-columns: 1fr;
  }

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

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

  .footer__qrs {
    justify-self: center;
  }

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

@media (max-width: 900px) {
  .site-header {
    padding-left: env(safe-area-inset-left);
    padding-right: env(safe-area-inset-right);
  }

  .nav-toggle {
    display: inline-flex;
    align-items: center;
    justify-content: center;
  }

  .site-nav {
    position: fixed;
    top: var(--site-header-height);
    right: 0;
    bottom: 0;
    left: auto;
    z-index: 1010;
    width: min(186px, calc(100vw - env(safe-area-inset-left) - env(safe-area-inset-right)));
    max-width: 100%;
    max-height: calc(100svh - var(--site-header-height));
    max-height: calc(100dvh - var(--site-header-height));
    background: #111;
    flex-direction: column-reverse;
    align-items: stretch;
    padding: 16px max(20px, env(safe-area-inset-right)) max(24px, env(safe-area-inset-bottom)) max(20px, env(safe-area-inset-left));
    gap: 12px;
    transform: translateX(100%);
    visibility: hidden;
    transition: transform 0.22s ease, visibility 0.22s ease;
    box-shadow: -8px 0 30px rgba(0, 0, 0, 0.35);
    overflow-x: hidden;
    overflow-y: auto;
    overscroll-behavior: contain;
    -webkit-overflow-scrolling: touch;
  }

  .site-nav.is-open {
    transform: translateX(0);
    visibility: visible;
  }

  .site-nav__list {
    flex-direction: column;
    align-items: stretch;
    gap: 4px;
  }

  .site-nav__link,
  .site-nav__trigger {
    width: 100%;
    min-height: 44px;
    text-align: left;
    display: inline-flex;
    align-items: center;
    box-sizing: border-box;
    -webkit-tap-highlight-color: transparent;
  }

  .mega {
    position: static;
    width: 100%;
    box-shadow: none;
    margin-top: 8px;
    border: 1px solid var(--line);
    max-height: min(60vh, 420px);
    overflow-y: auto;
    overscroll-behavior: contain;
    -webkit-overflow-scrolling: touch;
  }

  .nav-backdrop {
    position: fixed;
    inset: 0;
    z-index: 900;
    background: rgba(0, 0, 0, 0.45);
    border: 0;
    padding: 0;
    padding-top: env(safe-area-inset-top);
    cursor: pointer;
    -webkit-tap-highlight-color: transparent;
  }

  .nav-backdrop[hidden] {
    display: none;
  }
}

@media (max-width: 900px) and (prefers-reduced-motion: reduce) {
  .site-nav {
    transition-duration: 0.01ms;
  }
}

@media (max-width: 560px) {
  :root {
    --wrap: calc(100% - 24px);
  }

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

  .footer__meta {
    flex-direction: column;
    gap: 6px;
  }

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

}

/* 媒体中心页 */
.media-page {
  background: #fff;
  color: var(--ink);
}

.dex-media {
  color: #fff;
  background: transparent;
}

.dex-banner {
  position: relative;
  opacity: 1;
  height: calc(100svh - var(--site-header-height));
  height: calc(100dvh - var(--site-header-height));
  overflow: hidden;
  background: transparent;
}

.dex-banner::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: url("./assets/newsbg.png");
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  background-attachment: fixed;
  opacity: 0.6;
  z-index: 0;
  pointer-events: none;
}

.dex-banner__bg {
  display: none;
}

.dex-banner__overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  display: grid;
  place-items: center;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.3), rgba(0, 0, 0, -0.44));
}

.dex-banner__overlay h1 {
  margin: 0;
  font-size: clamp(36px, 5vw, 68px);
  font-weight: 600;
  letter-spacing: 0.18em;
}

.dex-banner__arrow {
  position: absolute;
  left: 50%;
  bottom: 22px;
  transform: translateX(-50%);
  z-index: 4;
  display: flex;
  flex-direction: column;
  align-items: center;
  pointer-events: none;
}

.dex-banner__arrow-item {
  width: 18px;
  height: 18px;
  display: block;
  border-right: 2px solid rgba(255, 255, 255, 0.92);
  border-bottom: 2px solid rgba(255, 255, 255, 0.92);
  transform: rotate(45deg);
  margin-top: -6px;
  opacity: 0;
  animation: dex-arrow-pulse 2s linear infinite;
}

.dex-banner__arrow-item:nth-child(1) {
  animation-delay: 0s;
}

.dex-banner__arrow-item:nth-child(2) {
  animation-delay: 0.35s;
}

.dex-banner__arrow-item:nth-child(3) {
  animation-delay: 0.7s;
}

@keyframes dex-arrow-pulse {
  0% {
    opacity: 0;
    transform: translateY(-2px) rotate(45deg);
  }
  35% {
    opacity: 1;
    transform: translateY(0) rotate(45deg);
  }
  100% {
    opacity: 0;
    transform: translateY(4px) rotate(45deg);
  }
}

.dex-section {
  padding: 72px 0;
  margin-top: 130px;
}

.dex-section__head {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 24px;
}

.dex-section__head h2 {
  margin: 0;
  font-size: clamp(30px, 4vw, 58px);
  font-weight: 700;
}

.dex-controls {
  display: inline-flex;
  align-items: center;
  gap: 10px;
}

.dex-controls__btn {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  border: 1px solid #4a4a4a;
  background: #181818;
  color: #fff;
  font-size: 18px;
  cursor: pointer;
}

.dex-controls__btn:hover {
  background: #242424;
}

.dex-controls__btn .chev {
  display: inline-block;
  font-size: 18px;
  line-height: 1;
  transform: translateX(1px);
}

.dex-controls__btn[data-news-prev] .chev {
  transform: rotate(180deg) translateX(1px);
}

.dex-controls__btn:disabled {
  opacity: 0.35;
  cursor: not-allowed;
}

.dex-news-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 33px;
  align-items: stretch;
}

.news-detail-section {
  padding: clamp(28px, 4vw, 52px) 0 clamp(56px, 8vw, 110px);
}

.news-detail-wrap {
  max-width: 980px;
}

.news-detail-back {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: #cdd7ea;
  text-decoration: none;
  margin-bottom: 16px;
  font-size: 14px;
}

.news-detail-back:hover,
.news-detail-back:focus-visible {
  color: #fff;
}

.news-detail-card {
  background: linear-gradient(180deg, rgba(23, 23, 23, 0.96) 0%, rgba(17, 17, 17, 0.98) 100%);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 14px;
  padding: clamp(18px, 3.2vw, 34px);
  box-shadow: 0 24px 50px rgba(0, 0, 0, 0.35);
}

.news-detail-loading {
  margin: 0;
  color: #b8c2d8;
  font-size: 15px;
}

.news-detail-header {
  margin-bottom: 20px;
}

.news-detail-title {
  margin: 0;
  font-size: clamp(26px, 4.2vw, 40px);
  line-height: 1.2;
  color: #f4f8ff;
}

.news-detail-meta {
  margin-top: 12px;
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  color: rgba(214, 224, 243, 0.78);
  font-size: 13px;
}

.news-detail-summary {
  margin: 16px 0 0;
  color: rgba(226, 236, 250, 0.88);
  line-height: 1.7;
  font-size: 15px;
}

.news-detail-cover {
  margin: 0 0 22px;
  border-radius: 10px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.news-detail-cover img {
  display: block;
  width: 100%;
  max-height: 460px;
  object-fit: cover;
}

.news-detail-content {
  color: rgba(235, 241, 252, 0.93);
  line-height: 1.85;
  font-size: 16px;
  word-break: break-word;
}

.news-detail-content img {
  max-width: 100%;
  height: auto;
}

.news-detail-content p,
.news-detail-content ul,
.news-detail-content ol,
.news-detail-content blockquote,
.news-detail-content h2,
.news-detail-content h3,
.news-detail-content h4 {
  margin-top: 0;
  margin-bottom: 1em;
}

.news-detail-content a {
  color: #9cc4ff;
}

.news-detail-content table {
  width: 100%;
  border-collapse: collapse;
  margin-bottom: 1.2em;
}

.news-detail-content th,
.news-detail-content td {
  border: 1px solid rgba(255, 255, 255, 0.2);
  padding: 8px 10px;
}

.news-detail-error h1 {
  margin: 0 0 10px;
  font-size: clamp(22px, 3vw, 30px);
}

.news-detail-error p {
  margin: 0 0 20px;
  color: rgba(219, 227, 240, 0.86);
}

.dex-news-footer {
  display: flex;
  justify-content: center;
  margin-top: 24px;
}

.dex-news-card {
  background: linear-gradient(180deg, #171717 0%, #111111 100%);
  border: 1px solid #333;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  border-radius: 6px;
  transition: transform 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease;
  min-height: 100%;
}

.dex-news-grid.is-reveal-enabled .dex-news-card {
  opacity: 0;
  transform: translate3d(0, 72px, 0) scale(0.96);
  filter: blur(3px);
  transition:
    opacity 1.05s cubic-bezier(0.22, 0.7, 0.2, 1),
    transform 1.05s cubic-bezier(0.22, 0.7, 0.2, 1),
    filter 1.05s ease,
    border-color 0.2s ease,
    box-shadow 0.2s ease;
  transition-delay: var(--reveal-delay, 0ms);
}

.dex-news-grid.is-reveal-enabled.is-visible .dex-news-card {
  opacity: 1;
  transform: translate3d(0, 0, 0) scale(1);
  filter: blur(0);
}

.dex-news-card:hover {
  text-decoration: none;
  transform: translateY(-2px);
  border-color: #666;
  box-shadow: 0 10px 28px rgba(0, 0, 0, 0.45);
}

.dex-news-card__time {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 12px 16px 0;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #b8b8b8;
}

.dex-news-card__time span {
  font-size: 11px;
  font-weight: 600;
}

.dex-news-card__time strong {
  font-size: 11px;
  line-height: 1.2;
  font-weight: 600;
}

.dex-news-card__info {
  padding: 10px 16px 16px;
  display: flex;
  flex-direction: column;
  flex: 1;
}

.dex-news-card__info h3 {
  margin: 0;
  font-size: 24px;
  line-height: 1.15;
  font-weight: 800;
  color: #f2f2f2;
  text-transform: uppercase;
}

.dex-news-card__desc {
  margin: 14px 0 0;
  color: #b0b0b0;
  font-size: 12px;
  line-height: 1.5;
}

.dex-news-card__more {
  margin-top: 16px;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: #e3e3e3;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.dex-news-card img {
  width: 100%;
  object-fit: cover;
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
}

.dex-news-card--featured {
  grid-column: span 2;
  grid-row: span 2;
  height: 100%;
  display: grid;
  grid-template-rows: minmax(0, 1fr) auto;
}

.dex-news-card--featured .dex-news-card__media img {
  width: 100%;
  height: 100%;
  min-height: 0;
  object-fit: cover;
}

/* 大卡图片单独兜底：始终填满图片区 */
.dex-news-grid .dex-news-card--featured .dex-news-card__media > img {
  height: 100%;
}

.dex-news-card--featured .dex-news-card__info h3 {
  font-size: clamp(28px, 3.6vw, 42px);
}

.dex-news-card__media {
  overflow: hidden;
  flex: 0 0 auto;
}

.dex-news-card__media img {
  width: 100%;
  display: block;
  transition: transform 0.35s ease;
}

.dex-news-card--short .dex-news-card__media img {
  height: 260px;
}

.dex-news-card--normal .dex-news-card__media img {
  height: 220px;
}

.dex-news-card--long .dex-news-card__media img {
  height: 180px;
}

.dex-news-card--featured.dex-news-card--long .dex-news-card__media img {
  min-height: 0;
}

.dex-news-card--featured .dex-news-card__media {
  height: 100%;
  min-height: 0;
}

.dex-news-card:hover .dex-news-card__media img {
  transform: scale(1.04);
}

.dex-news-empty {
  grid-column: 1 / -1;
  min-height: 200px;
  display: grid;
  place-items: center;
  border: 1px dashed #555;
  color: #bbb;
  background: #161616;
}

.dex-video-empty {
  min-height: 220px;
  border: 1px dashed #343b4a;
  background: #111620;
  border-radius: 4px;
}

.media-header {
  background: #fff;
  color: #111;
  border-bottom: 1px solid #eceff5;
}

.media-header .topbar {
  border-bottom: 1px solid #eceff5;
}

.media-header .topbar__nav {
  border-left-color: #d3d9e8;
  color: #4f5a6f;
}

.media-header .topbar__phone {
  color: #4f5a6f;
}

.media-header .topbar__phone:hover {
  color: #111;
}

.media-header .topbar__nav:hover {
  color: #111;
}

.media-header .site-nav__link:hover,
.media-header .site-nav__trigger:hover {
  background: #f4f6fa;
}
.media-nav-row {
  gap: 12px;
}

.media-coop-btn {
  border: 1px solid #111;
  background: #111;
  color: #fff;
  border-radius: 999px;
  padding: 7px 14px;
  font-size: 14px;
  cursor: pointer;
}

.media-has-dropdown {
  position: relative;
}

.media-dropdown {
  position: absolute;
  top: calc(100% + 8px);
  left: 0;
  min-width: 220px;
  border: 1px solid #e5e8ef;
  background: #fff;
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.08);
  padding: 8px;
  display: none;
  z-index: 20;
}

.media-has-dropdown:hover .media-dropdown {
  display: block;
}

.media-dropdown a {
  display: block;
  padding: 8px 10px;
  color: #232b39;
  border-radius: 6px;
}

.media-dropdown a:hover {
  background: #f4f6fa;
  text-decoration: none;
}

.media-nav__active {
  background: #eef2ff;
  color: #3152ff;
}

.media-hero {
  padding: 72px 0 56px;
  background: linear-gradient(180deg, #0a1020 0%, #121c38 65%, #fff 65%);
}

.media-hero--flat {
  background: #fff;
  padding: 44px 0 24px;
}

.media-hero__inner {
  color: #fff;
}

.media-hero--flat .media-hero__inner {
  color: #111;
}

.media-hero__kicker {
  margin: 0 0 10px;
  font-size: 13px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  opacity: 0.8;
}

.media-hero__title {
  margin: 0 0 12px;
  font-size: clamp(36px, 5vw, 56px);
  line-height: 1.1;
}

.media-hero__desc {
  margin: 0;
  max-width: 64ch;
  font-size: 16px;
  color: rgba(235, 241, 255, 0.9);
}

.media-news,
.media-videos,
.media-contact {
  padding: 44px 0;
}

.media-section-title {
  margin: 0 0 20px;
  color: #131313;
  font-size: clamp(24px, 3vw, 34px);
}

.media-news__list {
  list-style: none;
  margin: 0;
  padding: 0;
  border-top: 1px solid #e3e6ee;
}

.media-news__item {
  display: grid;
  grid-template-columns: 130px 90px 1fr;
  gap: 20px;
  align-items: center;
  padding: 18px 0;
  border-bottom: 1px solid #e3e6ee;
}

.media-news__date {
  color: #4f5a6f;
  font-weight: 600;
  font-size: 14px;
}

.media-news__tag {
  display: inline-block;
  min-width: 70px;
  font-size: 12px;
  color: #55607a;
  background: #f0f4ff;
  border: 1px solid #d9e2ff;
  padding: 5px 10px;
  border-radius: 999px;
  text-align: center;
}

.media-news__link {
  color: #171b24;
  font-size: 17px;
  font-weight: 600;
  line-height: 1.45;
}

.media-news__link:hover {
  color: #2c4dff;
}

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

.media-videos__placeholder {
  border: 1px dashed #d9deea;
  border-radius: 8px;
  min-height: 120px;
  display: grid;
  place-items: center;
  color: #738099;
  background: #fafbff;
}

.media-video-card {
  border: 1px solid #e5e8f0;
  border-radius: 8px;
  overflow: hidden;
  background: #fff;
}

.media-video-card__thumb {
  aspect-ratio: 16 / 10;
  background: #f2f4f8;
}

.media-video-card__thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.media-video-card__title {
  margin: 0;
  padding: 14px 14px 16px;
  font-size: 16px;
  line-height: 1.4;
}

.media-contact {
  border-top: 1px solid #2a2f39;
  padding-top: 30px;
}

.media-contact__inner {
  display: grid;
  grid-template-columns: 300px 1fr;
  gap: 28px;
  align-items: start;
}

.media-contact__head p {
  margin: 0;
  color: #b2bbcb;
}

.media-contact__form {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px 16px;
}

.media-field {
  display: flex;
  flex-direction: column;
  gap: 6px;
  font-size: 14px;
}

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

.media-field input,
.media-field textarea {
  border: 1px solid #384154;
  border-radius: 6px;
  padding: 10px 12px;
  font: inherit;
  background: #111620;
  color: #fff;
}

.media-field input:focus,
.media-field textarea:focus {
  outline: 2px solid #6f86ff;
  outline-offset: 1px;
}

.media-checks {
  display: flex;
  flex-wrap: wrap;
  gap: 12px 16px;
}

.media-checks label {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: #c6cfdf;
}

.media-contact__actions {
  grid-column: 1 / -1;
  display: flex;
  justify-content: flex-end;
  gap: 10px;
  margin-top: 4px;
}

.media-footer {
  background: #0c0f14;
  color: #d5dbe8;
  border-top: 1px solid #2a2f39;
}

.media-footer__grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 22px;
}

.media-footer__brand p {
  margin: 6px 0 0;
  color: #aab3c4;
  font-size: 13px;
}

.media-social__desc {
  margin: 0 0 10px;
  font-size: 13px;
  color: #aab3c4;
}

.media-socials {
  display: flex;
  gap: 8px;
}

.media-social {
  position: relative;
  border: 1px solid #384154;
  border-radius: 999px;
  padding: 6px 10px;
  font-size: 12px;
}

.media-social:hover {
  text-decoration: none;
  border-color: #6a7590;
}

.media-social img {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  bottom: calc(100% + 10px);
  width: 96px;
  height: 96px;
  border: 1px solid #2a2f39;
  background: #fff;
  padding: 4px;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.2s ease;
}

.media-social:hover img {
  opacity: 1;
}

.media-gotop {
  position: fixed;
  right: 22px;
  bottom: 28px;
  width: 42px;
  height: 42px;
  border: 1px solid #3c4559;
  border-radius: 50%;
  background: #0f1521;
  color: #fff;
  cursor: pointer;
  z-index: 40;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.2s ease;
}

.media-gotop .chev {
  display: inline-block;
  transform: rotate(-90deg);
  font-size: 18px;
  line-height: 1;
}

.media-gotop.is-visible {
  opacity: 1;
  pointer-events: auto;
}

.media-contact-modal {
  position: fixed;
  inset: 0;
  z-index: 1200;
}

.media-contact-modal__mask {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.55);
}

.media-contact-modal__panel {
  position: relative;
  margin: 8vh auto 0;
  width: min(860px, calc(100% - 24px));
  background: #0f1521;
  border: 1px solid #2a2f39;
  border-radius: 8px;
  padding: 18px;
}

.media-contact-modal__close {
  position: absolute;
  top: 8px;
  right: 8px;
  width: 34px;
  height: 34px;
  border: 0;
  border-radius: 50%;
  background: #202838;
  color: #fff;
  font-size: 18px;
  cursor: pointer;
}

/* 行业案例页：中间区域参考 gwtem_site 案例中心布局 */
.industry-page .case-showcase {
  padding: 36px 0 72px;
  background: transparent;
}

.industry-page .industry-hero {
  position: relative;
  height: calc(100svh - var(--site-header-height));
  height: calc(100dvh - var(--site-header-height));
  min-height: 420px;
  overflow: hidden;
}

.industry-page .industry-hero__video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.industry-page .industry-hero__overlay {
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.28), rgba(0, 0, 0, 0.45));
}

.industry-page .industry-hero__copy {
  text-align: center;
  padding: 0 16px;
}

.industry-page .industry-hero__title {
  margin: 0;
  color: #fff;
  font-size: clamp(30px, 5vw, 62px);
  letter-spacing: 0.06em;
  font-weight: 600;
}

.industry-page .industry-hero__subtitle {
  margin: 12px 0 0;
  color: rgba(244, 248, 255, 0.9);
  font-size: clamp(16px, 1.8vw, 24px);
  letter-spacing: 0.08em;
}

/* 隐私政策页 */
.privacy-page {
  background:
    radial-gradient(circle at 18% 12%, rgba(255, 255, 255, 0.1), transparent 30%),
    radial-gradient(circle at 82% 24%, rgba(148, 163, 184, 0.14), transparent 32%),
    linear-gradient(135deg, #111827 0%, #1f2937 48%, #030712 100%);
  color: #fff;
}

.privacy-hero {
  min-height: calc(100svh - var(--site-header-height));
  min-height: calc(100dvh - var(--site-header-height));
  padding: clamp(44px, 7vw, 86px) 0;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.privacy-hero__inner {
  display: flex;
  justify-content: center;
  align-items: center;
}

.privacy-hero__content {
  width: min(960px, 100%);
  text-align: center;
}

.privacy-hero__kicker {
  margin: 0 0 18px;
  font-size: clamp(20px, 2.5vw, 30px);
  font-weight: 800;
  text-shadow: 0 2px 12px rgba(0, 38, 120, 0.22);
}

.privacy-hero__content > h1 {
  margin: 0 0 28px;
  font-size: clamp(22px, 3vw, 34px);
  letter-spacing: 0.02em;
}

.privacy-card {
  max-width: 920px;
  padding: clamp(22px, 4vw, 44px);
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.94);
  color: #18213a;
  box-shadow: 0 24px 70px rgba(0, 40, 140, 0.22);
  backdrop-filter: blur(8px);
  text-align: left;
}

.privacy-card h2 {
  margin: 0 0 22px;
  text-align: left;
  font-size: clamp(20px, 2.3vw, 28px);
}

.privacy-card__intro {
  margin-bottom: 22px;
}

.privacy-card__intro p + p {
  margin-top: 8px;
}

.privacy-card__list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 18px;
}

.privacy-card__list li {
  display: grid;
  grid-template-columns: 34px minmax(0, 1fr);
  gap: 14px;
  align-items: start;
}

.privacy-card__icon {
  width: 30px;
  height: 30px;
  border-radius: 8px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: #e8f1ff;
  color: #126dff;
  font-size: 14px;
  font-weight: 800;
}

.privacy-card h3 {
  margin: 0 0 5px;
  font-size: 16px;
  color: #101827;
}

.privacy-card p {
  margin: 0;
  color: #6b7280;
  font-size: 14px;
  line-height: 1.75;
}

.privacy-card h3 + p,
.privacy-card p + p {
  margin-top: 4px;
}

.privacy-card__date {
  margin-top: 28px;
  padding-top: 18px;
  border-top: 1px solid #e5e7eb;
}

.privacy-card__date p {
  color: #111827;
  font-weight: 700;
}

.privacy-card__date p + p {
  margin-top: 6px;
}

/* 关于我们页 */
.about-page {
  position: relative;
  background: transparent;
  color: #f5f5f5;
}

.about-hero {
  position: relative;
  min-height: calc(100svh - var(--site-header-height));
  min-height: calc(100dvh - var(--site-header-height));
  display: grid;
  align-items: center;
  overflow: hidden;
}

.about-hero__bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.72;
}

.about-hero__shade {
  position: absolute;
  inset: 0;
}

.about-hero__copy {
  position: relative;
  z-index: 1;
  padding-top: clamp(70px, 8vw, 120px);
  padding-bottom: clamp(70px, 8vw, 120px);
  text-align: center;
}

.about-hero__eyebrow,
.about-kicker {
  margin: 0 0 14px;
  color: rgba(255, 255, 255, 0.62);
  font-size: clamp(15px, 1.25vw, 19px);
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.about-hero h1 {
  margin: 0;
  margin-inline: auto;
  font-size: clamp(42px, 8vw, 78px);
  line-height: 0.96;
  letter-spacing: 0.05em;
}

.about-hero p:not(.about-hero__eyebrow) {
  max-width: 680px;
  margin: 24px auto 0;
  color: rgba(245, 245, 245, 0.78);
  font-size: clamp(16px, 1.5vw, 20px);
  line-height: 1.75;
}

.about-section {
  padding: clamp(78px, 10vw, 132px) 0;
  position: relative;
}

.about-section--intro {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.about-split {
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(300px, 0.72fr);
  gap: clamp(28px, 6vw, 96px);
  align-items: stretch;
}

.about-copy {
  position: relative;
  min-height: 100%;
  padding: clamp(26px, 4vw, 54px);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 0;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.09), rgba(255, 255, 255, 0.025)),
    rgba(0, 0, 0, 0.28);
  box-shadow: 0 28px 80px rgba(0, 0, 0, 0.34);
  overflow: hidden;
}

.about-copy::before {
  content: "";
  position: absolute;
  inset: 0 auto 0 0;
  width: 3px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.8), rgba(118, 190, 255, 0.18));
}

.about-copy h2,
.about-section-title,
.about-contact-band h2 {
  margin: 0;
  color: #fff;
  font-size: clamp(28px, 3.4vw, 48px);
  line-height: 1.16;
  letter-spacing: -0.03em;
}

.about-copy p:not(.about-kicker),
.about-contact-band p {
  margin: 18px 0 0;
  color: rgba(245, 245, 245, 0.72);
  font-size: clamp(15px, 1.05vw, 17px);
  line-height: 1.78;
}

.about-stat-grid,
.about-capability-grid {
  display: grid;
  gap: 14px;
}

.about-stat-grid article,
.about-capability-grid article {
  border: 1px solid rgba(255, 255, 255, 0.12);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.082), rgba(255, 255, 255, 0.024)),
    rgba(0, 0, 0, 0.24);
  border-radius: 0;
  padding: clamp(18px, 2.6vw, 30px);
  box-shadow: 0 18px 48px rgba(0, 0, 0, 0.26);
  backdrop-filter: blur(8px);
  transition: transform 0.22s ease, border-color 0.22s ease, background-color 0.22s ease;
}

.about-stat-grid article:hover,
.about-capability-grid article:hover {
  transform: translateY(-6px);
  border-color: rgba(255, 255, 255, 0.32);
  background-color: rgba(255, 255, 255, 0.035);
}

.about-stat-grid strong {
  display: block;
  color: #fff;
  font-size: clamp(22px, 2.45vw, 34px);
  line-height: 1.08;
  margin-bottom: 10px;
}

.about-stat-grid span,
.about-capability-grid p {
  color: rgba(245, 245, 245, 0.7);
  font-size: clamp(14px, 0.98vw, 16px);
  line-height: 1.72;
}

.about-capability-grid {
  grid-template-columns: repeat(6, minmax(0, 1fr));
  margin-top: clamp(28px, 4vw, 48px);
}

.about-capability-grid article {
  min-height: 230px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.about-capability-grid article:nth-child(1),
.about-capability-grid article:nth-child(4) {
  grid-column: span 3;
}

.about-capability-grid article:nth-child(2),
.about-capability-grid article:nth-child(3) {
  grid-column: span 3;
}

.about-card-icon {
  width: 46px;
  height: 46px;
  margin-bottom: 20px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 0;
  background: rgba(255, 255, 255, 0.06);
  color: rgba(232, 244, 255, 0.92);
  box-shadow: inset 0 0 18px rgba(118, 190, 255, 0.08);
}

.about-card-icon svg {
  width: 24px;
  height: 24px;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.about-capability-grid h3 {
  margin: 0 0 12px;
  color: #fff;
  font-size: clamp(18px, 1.35vw, 22px);
  line-height: 1.3;
}

.about-capability-grid p {
  margin: 0;
}

.about-contact-band {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 28px;
  padding: clamp(26px, 5vw, 54px);
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 0;
  background: rgba(16, 16, 16, 0.82);
  backdrop-filter: blur(10px);
  text-align: center;
}

.about-contact-band > div {
  max-width: 760px;
}

.about-contact-band p {
  margin-left: auto;
  margin-right: auto;
  max-width: 660px;
}

.about-contact-actions {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 12px;
}

.about-contact-band .btn {
  flex-shrink: 0;
}

.about-reveal {
  opacity: 0;
  transform: translate3d(0, 64px, 0);
  filter: blur(4px);
  transition:
    opacity 0.85s cubic-bezier(0.22, 0.7, 0.2, 1),
    transform 0.85s cubic-bezier(0.22, 0.7, 0.2, 1),
    filter 0.85s ease;
}

.about-reveal.is-visible {
  opacity: 1;
  transform: translate3d(0, 0, 0);
  filter: blur(0);
}

@media (max-width: 1000px) {
  .about-split {
    grid-template-columns: 1fr;
  }

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

  .about-capability-grid article:nth-child(1),
  .about-capability-grid article:nth-child(2),
  .about-capability-grid article:nth-child(3),
  .about-capability-grid article:nth-child(4) {
    grid-column: auto;
  }
}


.industry-page .case-showcase__intro-wrap {
  padding-top: 24px;
  padding-bottom: 22px;
}

.industry-page .case-showcase__intro {
  text-align: center;
  max-width: 820px;
  margin: 0 auto;
}

.industry-page .case-showcase__eyebrow {
  margin: 0 0 12px;
  font-size: 12px;
  letter-spacing: 0.14em;
  font-weight: 700;
  color: rgba(226, 235, 255, 0.74);
}

.industry-page .case-showcase__title {
  margin: 0 0 12px;
  font-size: clamp(28px, 3.5vw, 42px);
  color: #fff;
}

.industry-page .case-showcase__lead {
  margin: 0;
  font-size: 15px;
  line-height: 1.75;
  color: rgba(226, 235, 255, 0.78);
}

.industry-page .pro_intro {
  width: min(1250px, calc(100% - 40px));
  margin: 0 auto;
  min-height: 200px;
  padding: clamp(40px, 6vw, 72px) clamp(16px, 4vw, 24px);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: clamp(20px, 4vw, 48px);
  background: transparent;
}

.industry-page .companys {
  width: 100%;
  margin-top: 0;
  background: transparent;
}

.industry-page .companys .pro_intro {
  background: transparent;
}

.industry-page .intro_left {
  width: 28%;
  flex: 0 0 28%;
  min-width: 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
}

.industry-page .intro_right {
  width: 58%;
  flex: 0 0 58%;
  min-width: 0;
  border-radius: 4px;
  overflow: hidden;
}

.industry-page .tits {
  width: 100%;
  font-size: clamp(26px, 2.4vw, 38px);
  color: #fff;
  font-weight: 700;
  line-height: 1.2;
}

.industry-page .info {
  width: 100%;
  margin-top: clamp(18px, 4vw, 44px);
  color: rgba(236, 242, 255, 0.9);
  font-size: 16px;
  line-height: 1.6;
  text-align: justify;
}

.industry-page .case-showcase__media-el {
  display: block;
  width: 100%;
  height: auto;
}

.industry-page .case-showcase__media-el--img,
.industry-page .case-showcase__media-el--video {
  object-fit: cover;
  aspect-ratio: 16 / 9;
  background: #0f172a;
}

.industry-page .pro_intro.is-reveal-item .intro_left,
.industry-page .pro_intro.is-reveal-item .intro_right {
  opacity: 0;
  filter: blur(2px);
  transition:
    opacity 0.75s cubic-bezier(0.22, 0.7, 0.2, 1),
    transform 0.75s cubic-bezier(0.22, 0.7, 0.2, 1),
    filter 0.75s ease;
  transition-delay: var(--reveal-delay, 0ms);
}

.industry-page .pro_intro.is-reveal-item .intro_left {
  transform: translate3d(-70px, 0, 0);
}

.industry-page .pro_intro.is-reveal-item .intro_right {
  transform: translate3d(70px, 0, 0);
}

.industry-page .pro_intro.is-reveal-item.is-visible .intro_left,
.industry-page .pro_intro.is-reveal-item.is-visible .intro_right {
  opacity: 1;
  filter: blur(0);
  transform: translate3d(0, 0, 0);
}

@media (max-width: 900px) {
  .industry-page .pro_intro,
  .industry-page .companys .pro_intro {
    flex-direction: column;
    align-items: stretch;
    width: calc(100% - 24px);
    padding-top: 30px;
    padding-bottom: 30px;
  }

  .industry-page .intro_left,
  .industry-page .intro_right {
    width: 100%;
    flex: 1 1 auto;
  }

  .industry-page .info {
    margin-top: 14px;
  }
}

@media (max-width: 960px) {
  .dex-banner::before {
    background-attachment: scroll;
  }

  .media-coop-btn {
    display: none;
  }

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

  .dex-news-card--featured {
    grid-column: span 2;
    grid-row: span 1;
  }

  .dex-news-card--featured .dex-news-card__media img {
    height: 260px;
  }

  .dex-news-card--short .dex-news-card__media img {
    height: 230px;
  }

  .dex-news-card--normal .dex-news-card__media img {
    height: 205px;
  }

  .dex-news-card--long .dex-news-card__media img {
    height: 170px;
  }

  .media-videos__grid {
    grid-template-columns: 1fr;
  }

  .media-contact__inner {
    grid-template-columns: 1fr;
  }

  .media-footer__grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 700px) {
  .dex-news-grid {
    grid-template-columns: 1fr;
  }

  .dex-news-card--featured {
    grid-column: span 1;
  }

  .dex-news-card--featured .dex-news-card__media img,
  .dex-news-card--short .dex-news-card__media img,
  .dex-news-card--normal .dex-news-card__media img,
  .dex-news-card--long .dex-news-card__media img {
    height: 210px;
  }

  .dex-news-card__info h3 {
    font-size: 20px;
  }

  .media-news__item {
    grid-template-columns: 1fr;
    gap: 10px;
    align-items: start;
  }

  .media-news__link {
    font-size: 16px;
  }

  .media-contact__form {
    grid-template-columns: 1fr;
  }

  .biz-modal__form {
    grid-template-columns: 1fr;
  }

  .biz-modal__intent-options {
    grid-template-columns: 1fr;
  }

  .biz-modal__actions {
    justify-content: flex-start;
  }

  .media-contact__actions {
    justify-content: flex-start;
  }

  .media-footer__grid {
    grid-template-columns: 1fr;
  }

  .biz-order-popover__card {
    top: calc(100% + 10px);
    bottom: auto;
    right: auto;
    left: 0;
    min-width: 250px;
    grid-template-columns: 1fr;
  }

  .biz-order-popover__card::after {
    top: auto;
    bottom: 100%;
    border-right: 1px solid rgba(255, 255, 255, 0.32);
    border-bottom: 0;
    border-left: 1px solid rgba(255, 255, 255, 0.32);
    transform: translateY(5px) rotate(45deg);
  }
}
