/* Shunter CN rebuild — Orbbec-inspired IA, Shunter brand */
:root {
  --brand: #024287;
  --brand-deep: #012a58;
  --accent: #0581b7;
  --ink: #0d1b2a;
  --muted: #3d4f61;
  --line: rgba(2, 66, 135, 0.12);
  --surface: #f5f8fb;
  --white: #ffffff;
  --max: 1180px;
  --nav-h: 72px;
  --font: "Noto Sans SC", "Source Han Sans SC", "PingFang SC", "Microsoft YaHei", sans-serif;
  --display: "Outfit", "Noto Sans SC", sans-serif;
}

*,
*::before,
*::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: var(--font);
  color: var(--ink);
  background: var(--white);
  line-height: 1.65;
  /* Windows ClearType: avoid antialiased which softens small CJK glyphs */
  -webkit-font-smoothing: auto;
  -moz-osx-font-smoothing: auto;
  text-rendering: auto;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; margin: 0; padding: 0; }
button { font: inherit; cursor: pointer; border: none; background: none; }

.wrap {
  width: min(100% - 2.5rem, var(--max));
  margin-inline: auto;
}

/* ——— Header ——— */
.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 1000;
  height: var(--nav-h);
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid transparent;
  transition: border-color .25s, box-shadow .25s;
}
.site-header.is-scrolled {
  border-color: var(--line);
  box-shadow: 0 8px 28px rgba(1, 42, 88, 0.06);
}
.site-header__inner {
  height: var(--nav-h);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
}
.logo {
  display: flex;
  align-items: center;
  gap: .75rem;
  flex-shrink: 0;
}
.logo img { height: 36px; width: auto; }
.logo span {
  font-family: var(--display);
  font-weight: 700;
  font-size: 1.05rem;
  letter-spacing: 0.02em;
  color: var(--brand);
}

.nav-desktop { display: flex; align-items: center; gap: .25rem; }
.nav-item { position: relative; }
.nav-link {
  display: block;
  padding: .55rem 1.15rem;
  font-size: 1.125rem;
  font-weight: 500;
  color: var(--ink);
  border-radius: 2px;
  transition: color .2s, background .2s;
}
.nav-link:hover,
.nav-item:hover > .nav-link:not(.is-active) { color: var(--brand); }
.nav-desktop .nav-link.is-active,
.nav-desktop .nav-item.is-active > .nav-link {
  background: var(--brand);
  color: #fff;
  font-weight: 600;
}
.nav-desktop .nav-item.is-active:hover > .nav-link,
.nav-desktop .nav-link.is-active:hover {
  background: var(--brand-deep);
  color: #fff;
}
.nav-mobile a.is-active,
.nav-mobile summary.is-active {
  color: var(--brand);
  font-weight: 700;
}

.mega {
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%) translateY(8px);
  min-width: 420px;
  padding: 1.25rem 1.5rem;
  background: var(--white);
  border: 1px solid var(--line);
  box-shadow: 0 18px 48px rgba(1, 42, 88, 0.12);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity .2s, transform .2s, visibility .2s;
}
.nav-item:hover > .mega {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translateX(-50%) translateY(0);
}
.mega__title {
  font-size: .72rem;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: .85rem;
  font-weight: 600;
}
.mega__grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: .35rem 1.5rem;
}
.mega a {
  display: block;
  padding: .45rem 0;
  font-size: .9rem;
  color: var(--ink);
  border-bottom: 1px solid transparent;
  transition: color .2s, border-color .2s;
}
.mega a:hover {
  color: var(--brand);
  border-color: rgba(2, 66, 135, 0.25);
}

.nav-lang {
  margin-left: .15rem;
  font-weight: 600;
  letter-spacing: .04em;
}

.nav-toggle {
  display: none;
  width: 42px;
  height: 42px;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 5px;
}
.nav-toggle span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--ink);
}

.nav-mobile {
  display: none;
  position: fixed;
  inset: var(--nav-h) 0 0;
  background: var(--white);
  padding: 1.25rem 1.25rem 2rem;
  overflow-y: auto;
  z-index: 999;
}
.nav-mobile.is-open { display: block; }
.nav-mobile details { border-bottom: 1px solid var(--line); }
.nav-mobile summary,
.nav-mobile > a {
  display: block;
  padding: 1rem 0;
  font-weight: 600;
  font-size: 1.125rem;
  cursor: pointer;
  list-style: none;
}
.nav-mobile summary::-webkit-details-marker { display: none; }
.nav-mobile details a {
  display: block;
  padding: .55rem 0 .55rem .75rem;
  color: var(--muted);
  font-size: .92rem;
}

@media (max-width: 980px) {
  .nav-desktop { display: none; }
  .nav-toggle { display: flex; }
  .logo span { display: none; }
}

/* ——— Hero ——— */
.hero {
  position: relative;
  min-height: 100vh;
  min-height: 100dvh;
  display: flex;
  align-items: center;
  padding: calc(var(--nav-h) + 2rem) 0 5rem;
  color: #fff;
  overflow: hidden;
  background: #06101c;
  --hero-nav-edge: clamp(0.65rem, 1.8vw, 2.25rem);
  --hero-side-gutter: clamp(5rem, 8vw, 7.5rem);
}
.hero__media {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.hero__slide {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  opacity: 0;
  transition: opacity 1s ease;
  pointer-events: none;
}
.hero__slide.is-active {
  opacity: 1;
  pointer-events: auto;
  z-index: 1;
}
.hero__slide:not(.hero__slide--map):not(.hero__slide--panel)::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(2, 20, 40, 0.45) 0%, rgba(2, 20, 40, 0.18) 42%, rgba(2, 20, 40, 0.28) 100%),
    linear-gradient(105deg, rgba(2, 20, 40, 0.32) 0%, transparent 55%);
  pointer-events: none;
}
.hero-brand {
  position: relative;
  z-index: 2;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: calc(var(--nav-h) + 2rem) 1.5rem 4rem;
  box-sizing: border-box;
  pointer-events: none;
}
.hero-brand--on-map {
  position: absolute;
  inset: 0;
  z-index: 3;
  justify-content: flex-start;
  padding: calc(var(--nav-h) + clamp(1.5rem, 4vh, 2.75rem)) var(--hero-side-gutter) 4rem;
  background: linear-gradient(180deg, rgba(4, 16, 32, 0.55) 0%, rgba(4, 16, 32, 0.12) 42%, transparent 58%);
}
.hero-brand__name {
  margin: 0 0 .85rem;
  font-family: var(--font);
  font-size: clamp(1.5rem, 3.2vw, 2.55rem);
  font-weight: 700;
  letter-spacing: 0.04em;
  line-height: 1.25;
  color: #fff;
  text-shadow: 0 8px 28px rgba(0, 0, 0, 0.5);
  max-width: min(96vw, 72rem);
  padding-inline: clamp(1rem, 3vw, 2rem);
  white-space: normal;
}
.hero-brand__slogan {
  margin: 0 auto;
  max-width: min(96vw, 68rem);
  padding-inline: clamp(1rem, 3vw, 2rem);
  white-space: normal;
  font-size: clamp(1rem, 2.2vw, 1.75rem);
  font-weight: 700;
  letter-spacing: 0.02em;
  line-height: 1.4;
  color: #fff;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.35), 0 10px 32px rgba(0, 0, 0, 0.55);
}
@media (min-width: 1100px) {
  .hero-brand__name,
  .hero-brand__slogan {
    white-space: nowrap;
    max-width: none;
  }
}
.hero-cap {
  position: absolute;
  left: max(var(--hero-side-gutter), calc((100% - var(--max)) / 2));
  top: calc(var(--nav-h) + clamp(7.5rem, 20vh, 13rem));
  bottom: auto;
  z-index: 2;
  max-width: min(52rem, calc(100% - var(--hero-side-gutter) * 2 - 2rem));
  color: #fff;
}
.hero-cap--static {
  position: relative;
  left: auto;
  top: auto;
  max-width: 100%;
}
.hero-cap__eyebrow {
  margin: 0 0 .65rem;
  font-size: .75rem;
  font-weight: 600;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: rgba(0, 212, 255, 0.85);
}
.hero-cap__title {
  margin: 0 0 .75rem;
  font-family: var(--display);
  font-size: clamp(1.45rem, 2.8vw, 2.25rem);
  font-weight: 700;
  letter-spacing: -0.02em;
  line-height: 1.3;
  white-space: normal;
  text-shadow: 0 8px 24px rgba(0, 0, 0, 0.4);
  max-width: none;
}
.hero-cap__desc {
  margin: 0;
  max-width: none;
  white-space: normal;
  font-size: clamp(0.85rem, 1.15vw, 1.02rem);
  line-height: 1.7;
  color: rgba(220, 235, 250, 0.82);
}
@media (max-width: 720px) {
  .hero-cap {
    max-width: calc(100% - var(--hero-side-gutter) * 2 - 1rem);
  }
  .hero-cap__title {
    white-space: normal;
  }
  .hero-cap__desc {
    white-space: normal;
    font-size: 0.95rem;
  }
}
.hero__slide--map {
  background: #041428;
}
.hero__slide--map .global-map {
  height: 100%;
  min-height: 100%;
}
.hero__slide--panel {
  background-color: #060d18;
  background-size: cover;
  background-position: center;
  overflow: auto;
}
.hero__slide--panel::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(145deg, rgba(4, 12, 24, 0.48) 0%, rgba(6, 18, 34, 0.32) 45%, rgba(4, 14, 28, 0.5) 100%),
    linear-gradient(rgba(0, 212, 255, 0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(0, 212, 255, 0.035) 1px, transparent 1px);
  background-size: auto, 48px 48px, 48px 48px;
  pointer-events: none;
}
.hero-panel {
  position: relative;
  z-index: 1;
  height: 100%;
  display: flex;
  align-items: flex-start;
  padding: calc(var(--nav-h) + clamp(7.5rem, 20vh, 13rem)) 0 4rem;
  box-sizing: border-box;
  color: #e8f4ff;
}
.hero-panel__inner,
.hero-panel .wrap {
  width: min(100% - (var(--hero-side-gutter) * 2), var(--max));
  margin-inline: auto;
}
.hero-panel .section__eyebrow { color: rgba(0, 212, 255, 0.85); }
.hero-panel .section__title { color: #fff; }
.hero-panel .section__desc { color: rgba(220, 235, 250, 0.78); }
.hero-panel .section__head { margin-bottom: 1.75rem; }
.hero-panel .tech-card {
  background: transparent;
  backdrop-filter: none;
}
.hero-panel .tech-card--cert {
  background: transparent;
}
@media (max-width: 800px) {
  .hero-panel { align-items: flex-start; padding-top: calc(var(--nav-h) + 5rem); }
  .hero-cap { top: calc(var(--nav-h) + 5rem); }
}
.hero__content {
  position: relative;
  z-index: 2;
  max-width: 640px;
  margin-top: -4vh;
}
.hero__eyebrow {
  margin: 0 0 .85rem;
  font-size: .78rem;
  font-weight: 600;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: rgba(154, 212, 240, 0.95);
}
.hero__brand {
  font-family: var(--display);
  font-size: clamp(2rem, 4.8vw, 3.2rem);
  font-weight: 700;
  letter-spacing: -0.02em;
  line-height: 1.15;
  margin: 0 0 .85rem;
  text-shadow: 0 10px 32px rgba(0, 0, 0, 0.35);
}
.hero__headline {
  margin: 0 0 .9rem;
  font-size: clamp(1.15rem, 2.2vw, 1.45rem);
  font-weight: 600;
  line-height: 1.45;
  color: rgba(255, 255, 255, 0.95);
  max-width: 28rem;
}
.hero__lead {
  margin: 0 0 1rem;
  font-size: clamp(.95rem, 1.35vw, 1.08rem);
  line-height: 1.75;
  color: rgba(255, 255, 255, 0.78);
  max-width: 34rem;
}
.hero__focus {
  margin: 0 0 1.75rem;
  font-size: .9rem;
  color: rgba(180, 220, 240, 0.88);
  letter-spacing: .02em;
}
.hero__actions { display: flex; flex-wrap: wrap; gap: .75rem; }
.btn {
  display: inline-flex;
  align-items: center;
  gap: .45rem;
  padding: .85rem 1.4rem;
  font-size: .92rem;
  font-weight: 600;
  transition: transform .2s, background .2s, color .2s, border-color .2s;
}
.btn:hover { transform: translateY(-2px); }
.btn--primary { background: var(--accent); color: #fff; }
.btn--primary:hover { background: #046a97; }
.btn--ghost {
  border: 1.5px solid rgba(255, 255, 255, 0.45);
  color: #fff;
}
.btn--ghost:hover { background: rgba(255, 255, 255, 0.1); }
.btn--brand { background: var(--brand); color: #fff; }
.btn--brand:hover { background: var(--brand-deep); }
.btn--outline {
  border: 1.5px solid var(--brand);
  color: var(--brand);
}
.btn--outline:hover { background: var(--brand); color: #fff; }

.hero__nav {
  position: absolute;
  top: 50%;
  z-index: 4;
  width: 56px;
  height: 56px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: rgba(255, 255, 255, 0.55);
  background: rgba(8, 20, 36, 0.18);
  border: 1px solid rgba(255, 255, 255, 0.16);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  box-shadow: none;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition:
    opacity .35s ease,
    visibility .35s ease,
    background .35s ease,
    border-color .35s ease,
    box-shadow .35s ease,
    transform .35s cubic-bezier(.22, 1, .36, 1),
    color .25s ease;
  overflow: hidden;
}
.hero:hover .hero__nav,
.hero:focus-within .hero__nav {
  opacity: .42;
  visibility: visible;
  pointer-events: auto;
}
.hero__nav--prev {
  left: var(--hero-nav-edge);
  transform: translate(-10px, -50%);
}
.hero__nav--next {
  right: var(--hero-nav-edge);
  transform: translate(10px, -50%);
}
.hero:hover .hero__nav--prev,
.hero:focus-within .hero__nav--prev {
  transform: translate(0, -50%);
}
.hero:hover .hero__nav--next,
.hero:focus-within .hero__nav--next {
  transform: translate(0, -50%);
}
.hero__nav::before {
  content: "";
  position: absolute;
  inset: -1px;
  background: radial-gradient(circle at 30% 30%, rgba(0, 212, 255, 0.28), transparent 58%);
  opacity: 0;
  transition: opacity .35s ease;
  pointer-events: none;
}
.hero__nav::after {
  content: "";
  position: absolute;
  inset: 0;
  border: 1px solid transparent;
  transition: box-shadow .4s ease, border-color .35s ease;
  pointer-events: none;
}
.hero__nav svg {
  position: relative;
  z-index: 1;
  width: 22px;
  height: 22px;
  display: block;
  opacity: .85;
  transition: transform .35s cubic-bezier(.22, 1, .36, 1), opacity .25s ease;
}
.hero__nav:hover {
  opacity: 1 !important;
  color: #fff;
  background:
    linear-gradient(145deg, rgba(2, 66, 135, 0.78), rgba(5, 129, 183, 0.58));
  border-color: rgba(160, 230, 255, 0.55);
  box-shadow:
    0 10px 28px rgba(2, 40, 80, 0.35),
    0 0 0 4px rgba(0, 212, 255, 0.1),
    0 0 20px rgba(0, 200, 255, 0.22);
  transform: translate(0, -50%) scale(1.06);
}
.hero__nav:hover::before { opacity: .7; }
.hero__nav:hover::after {
  border-color: rgba(180, 240, 255, 0.22);
  box-shadow: inset 0 0 14px rgba(0, 212, 255, 0.18);
}
.hero__nav:hover svg { opacity: 1; }
.hero__nav--prev:hover svg { transform: translateX(-3px); }
.hero__nav--next:hover svg { transform: translateX(3px); }
.hero__nav:active {
  transform: translate(0, -50%) scale(0.98);
  box-shadow:
    0 6px 16px rgba(0, 0, 0, 0.28),
    0 0 0 3px rgba(0, 212, 255, 0.12);
}
@media (max-width: 720px) {
  .hero {
    --hero-nav-edge: 0.45rem;
    --hero-side-gutter: clamp(3.1rem, 11vw, 4.25rem);
  }
  .hero__nav {
    width: 42px;
    height: 42px;
    opacity: .35;
    visibility: visible;
    pointer-events: auto;
  }
  .hero__nav svg { width: 18px; height: 18px; }
  .hero__nav--prev {
    left: var(--hero-nav-edge);
    transform: translate(0, -50%);
  }
  .hero__nav--next {
    right: var(--hero-nav-edge);
    transform: translate(0, -50%);
  }
  .hero__nav:hover { opacity: 1; transform: translate(0, -50%) scale(1.04); }
}
@media (hover: none) {
  .hero__nav {
    opacity: .35;
    visibility: visible;
    pointer-events: auto;
  }
  .hero__nav--prev,
  .hero__nav--next {
    transform: translate(0, -50%);
  }
}

.hero__dots {
  position: absolute;
  right: max(1.25rem, calc((100% - var(--max)) / 2));
  bottom: 2rem;
  z-index: 2;
  display: flex;
  gap: .45rem;
}
.hero__dot {
  width: 28px;
  height: 3px;
  background: rgba(255, 255, 255, 0.35);
  transition: background .25s, width .25s;
}
.hero__dot.is-active {
  width: 42px;
  background: #fff;
}

/* ——— Sections ——— */
.section { padding: clamp(3.5rem, 7vw, 5.5rem) 0; }
.section--tint { background: var(--surface); }
.section--dark {
  background:
    linear-gradient(145deg, #060d18 0%, #0a1a2e 42%, #071018 100%);
  color: #e8f4ff;
  position: relative;
  overflow: hidden;
}
.section--dark::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(0, 212, 255, 0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(0, 212, 255, 0.04) 1px, transparent 1px);
  background-size: 48px 48px;
  opacity: .55;
  pointer-events: none;
}
.section__head {
  max-width: 640px;
  margin-bottom: 2.5rem;
}
.section__eyebrow {
  display: block;
  font-size: .75rem;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--accent);
  font-weight: 600;
  margin-bottom: .65rem;
}
.section--dark .section__eyebrow { color: rgba(0, 212, 255, 0.85); }
.section__title {
  margin: 0 0 .75rem;
  font-family: var(--display);
  font-size: clamp(1.65rem, 3vw, 2.25rem);
  font-weight: 700;
  letter-spacing: -0.02em;
  line-height: 1.25;
}
.section__desc {
  margin: 0;
  color: var(--muted);
  font-size: 1.02rem;
}
.section--dark .section__desc { color: rgba(220, 235, 250, 0.78); }

/* Featured products */
.tabs {
  display: flex;
  flex-wrap: wrap;
  gap: .5rem;
  margin-bottom: 1.75rem;
}
.tabs--dots {
  justify-content: center;
  gap: .65rem;
  margin-bottom: 1.5rem;
}
.tab {
  padding: .55rem 1.15rem;
  border: 1px solid rgba(2, 66, 135, 0.18);
  background: var(--white);
  color: var(--muted);
  font-size: .9rem;
  font-weight: 500;
  transition: all .2s;
}
.tab:hover,
.tab.is-active {
  background: var(--brand);
  border-color: var(--brand);
  color: #fff;
}
.tabs--dots .tab {
  padding: .45rem 1rem;
  border-radius: 999px;
  font-size: .85rem;
  background: transparent;
  border-color: transparent;
  color: var(--muted);
}
.tabs--dots .tab:hover {
  background: rgba(2, 66, 135, 0.06);
  color: var(--brand);
}
.tabs--dots .tab.is-active {
  background: var(--brand);
  color: #fff;
}

.product-panels [hidden] { display: none !important; }
.product-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.25rem;
}
@media (max-width: 900px) {
  .product-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}
@media (max-width: 560px) {
  .product-grid { grid-template-columns: 1fr; }
}

.product-card {
  display: flex;
  flex-direction: column;
  background: var(--white);
  border: 1px solid var(--line);
  overflow: hidden;
  transition: transform .25s, box-shadow .25s;
}
.product-card:hover {
  transform: none;
  box-shadow: 0 16px 40px rgba(1, 42, 88, 0.1);
  border-color: rgba(2, 66, 135, 0.22);
}
.product-card__media {
  position: relative;
  aspect-ratio: 4 / 3;
  background: #f4f7fa;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1.35rem 1.5rem;
}
.product-card__media img {
  position: static;
  width: auto;
  height: auto;
  max-width: 72%;
  max-height: 72%;
  object-fit: contain;
  object-position: center;
  transition: transform .45s;
}
.product-card:hover .product-card__media img { transform: scale(1.04); }
.product-card__body { padding: 1.15rem 1.25rem 1.35rem; flex: 1; display: flex; flex-direction: column; }
.product-card__sku {
  font-size: .82rem;
  letter-spacing: .04em;
  color: var(--accent);
  font-weight: 600;
  margin-bottom: .35rem;
}
.product-card__name {
  margin: 0 0 .45rem;
  font-size: 1.08rem;
  font-weight: 700;
  line-height: 1.35;
}
.product-card__tag {
  margin: 0 0 1rem;
  color: var(--muted);
  font-size: .94rem;
  line-height: 1.55;
  font-weight: 400;
  flex: 1;
}
.product-card__more {
  font-size: .92rem;
  font-weight: 600;
  color: var(--brand);
}

/* Orbbec-style 2x2 product showcase */
.wrap--wide {
  width: min(100% - 2rem, 1280px);
}
.section--products {
  padding-top: 1.75rem;
  padding-bottom: 3.5rem;
}
.section--products .tabs--dots {
  margin-bottom: 1.15rem;
}
.product-showcase {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1.25rem;
  background: transparent;
  border: none;
  overflow: visible;
}
.showcase-tile {
  position: relative;
  min-height: clamp(380px, 48vh, 520px);
  padding: 2.25rem 1.75rem 1.5rem;
  display: flex;
  flex-direction: column;
  text-align: center;
  color: var(--ink);
  border: 1px solid rgba(2, 66, 135, 0.08);
  background:
    radial-gradient(ellipse 80% 55% at 50% 88%, rgba(5, 129, 183, 0.12), transparent 70%),
    linear-gradient(180deg, #fbfcfe 0%, #f3f7fb 48%, #e8eef5 100%);
  transition: background .35s ease, border-color .25s ease, transform .25s ease;
}
.showcase-tile--alt {
  background:
    radial-gradient(ellipse 70% 50% at 55% 90%, rgba(2, 66, 135, 0.1), transparent 68%),
    linear-gradient(180deg, #fafbfc 0%, #eef3f8 50%, #e3ebf3 100%);
}
.showcase-tile--cool {
  background:
    radial-gradient(ellipse 75% 50% at 45% 92%, rgba(90, 160, 210, 0.16), transparent 70%),
    linear-gradient(180deg, #f9fcff 0%, #eef6fb 52%, #dde9f3 100%);
}
.showcase-tile--warm {
  background:
    radial-gradient(ellipse 70% 48% at 60% 90%, rgba(180, 160, 120, 0.12), transparent 68%),
    linear-gradient(180deg, #fcfbf9 0%, #f5f2ec 50%, #ebe6dc 100%);
}
.showcase-tile:hover {
  border-color: rgba(2, 66, 135, 0.18);
  background:
    radial-gradient(ellipse 85% 58% at 50% 88%, rgba(5, 129, 183, 0.18), transparent 72%),
    linear-gradient(180deg, #ffffff 0%, #f0f6fb 50%, #dde8f2 100%);
}
.showcase-tile__copy {
  position: relative;
  z-index: 1;
  max-width: 28rem;
  margin: 0 auto 1.25rem;
}
.showcase-tile__copy h3 {
  margin: 0 0 .65rem;
  font-family: var(--display);
  font-size: clamp(1.25rem, 2.2vw, 1.65rem);
  font-weight: 700;
  line-height: 1.3;
  letter-spacing: -0.02em;
}
.showcase-tile__copy p {
  margin: 0 0 1rem;
  color: var(--muted);
  font-size: 1rem;
  line-height: 1.65;
  font-weight: 400;
}
.showcase-tile__more {
  display: inline-flex;
  align-items: center;
  gap: .25rem;
  font-size: .92rem;
  font-weight: 600;
  color: var(--brand);
  transition: gap .25s ease;
}
.showcase-tile:hover .showcase-tile__more {
  gap: .45rem;
}
.showcase-tile__media {
  position: relative;
  z-index: 1;
  flex: 1;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  min-height: 220px;
  max-height: none;
  padding: 0 0.5rem 0.35rem;
  background: transparent;
  border: 0;
  box-shadow: none;
}
.showcase-tile__media img {
  width: auto;
  height: auto;
  max-width: min(100%, 400px);
  max-height: clamp(200px, 36vh, 300px);
  object-fit: contain;
  object-position: center bottom;
  filter: drop-shadow(0 16px 28px rgba(1, 42, 88, 0.16));
  transition: transform .55s ease;
  background: transparent;
}
.showcase-tile__media--photo {
  position: relative;
  flex: 1 1 auto;
  display: block;
  padding: 0;
  overflow: hidden;
  border-radius: 0;
  align-self: stretch;
  /* No max-height — fill all remaining space under the title */
  max-height: none;
  min-height: 240px;
  /* Bleed past tile padding so photo fills card bottom edge-to-edge */
  margin: 0 -1.75rem -1.5rem;
  width: calc(100% + 3.5rem);
  max-width: none;
}
.showcase-tile__media--photo img {
  position: absolute;
  inset: 0;
  max-width: none;
  max-height: none;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  filter: none;
  display: block;
}
.showcase-tile:hover .showcase-tile__media--cutout img {
  transform: translateY(-6px) scale(1.03);
}
.showcase-tile:hover .showcase-tile__media--photo img {
  transform: scale(1.04);
}
.showcase-tile__media--cutout {
  background: transparent;
}
.showcase-tile__media--cutout img {
  mix-blend-mode: normal;
  background: transparent;
  filter: drop-shadow(0 14px 24px rgba(1, 42, 88, 0.12));
}
@media (max-width: 800px) {
  .product-showcase {
    grid-template-columns: 1fr;
  }
  .showcase-tile {
    min-height: 360px;
  }
}

/* Tech strip */
.tech-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr 1.25fr;
  gap: 1.25rem;
}
@media (max-width: 800px) {
  .tech-grid { grid-template-columns: 1fr; }
}
.tech-card {
  border: 0;
  padding: 0 1.25rem 0 0;
  background: transparent;
}
.tech-card--cert {
  border: 0;
  background: transparent;
  padding: 0 1.25rem 0 0;
}
.tech-card:last-child {
  padding-right: 0;
  padding-left: 1.25rem;
}
@media (max-width: 800px) {
  .tech-card,
  .tech-card--cert,
  .tech-card:last-child {
    padding: 0;
  }
}
.tech-card__eyebrow {
  font-size: .72rem;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: rgba(0, 212, 255, 0.85);
  margin-bottom: .5rem;
  font-weight: 600;
}
.tech-card--cert .tech-card__eyebrow { color: rgba(255, 200, 140, 0.9); }
.tech-card__title {
  margin: 0 0 .65rem;
  font-size: clamp(1.05rem, 1.5vw, 1.35rem);
  font-weight: 700;
  line-height: 1.35;
}
.tech-card p { margin: 0; color: rgba(220, 235, 250, 0.82); font-size: .95rem; }
.tech-card ul {
  margin: 1rem 0 0;
  padding-left: 1.1rem;
  color: rgba(220, 235, 250, 0.82);
  font-size: .92rem;
}
.tech-card li { margin-bottom: .45rem; list-style: disc; }
.tech-card strong { color: #fff; }

/* Industries / solutions */
.industry-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1.15rem;
}
@media (max-width: 720px) {
  .industry-grid { grid-template-columns: 1fr; }
}
.industry-card {
  position: relative;
  min-height: 240px;
  overflow: hidden;
  color: #fff;
  display: block;
}
.industry-card--tall { grid-row: span 2; min-height: 100%; }
.industry-card img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .5s;
}
.industry-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(2, 20, 40, 0.85) 0%, rgba(2, 20, 40, 0.25) 55%);
}
.industry-card:hover img { transform: scale(1.06); }
.industry-card__body {
  position: relative;
  z-index: 1;
  height: 100%;
  min-height: inherit;
  padding: 1.75rem;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
}
.industry-card h3 {
  margin: 0 0 .35rem;
  font-size: 1.35rem;
  font-weight: 700;
}
.industry-card p {
  margin: 0 0 .85rem;
  color: rgba(255, 255, 255, 0.8);
  font-size: .92rem;
}
.industry-card span {
  font-size: .85rem;
  font-weight: 600;
  color: #9ad4f0;
}

/* Homepage solution entry tiles */
.solution-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1.15rem;
}
.solution-tile {
  position: relative;
  min-height: clamp(220px, 28vw, 320px);
  overflow: hidden;
  color: #fff;
  display: block;
  background: #0a1624;
}
.solution-tile--wide {
  grid-column: 1 / -1;
  min-height: clamp(240px, 32vw, 360px);
}
.solution-tile img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .55s ease;
}
.solution-tile::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(105deg, rgba(2, 18, 36, 0.82) 0%, rgba(2, 18, 36, 0.45) 48%, rgba(2, 18, 36, 0.28) 100%),
    linear-gradient(to top, rgba(2, 14, 28, 0.75) 0%, transparent 55%);
  transition: background .35s ease;
}
.solution-tile:hover img { transform: scale(1.05); }
.solution-tile:hover::after {
  background:
    linear-gradient(105deg, rgba(2, 40, 80, 0.78) 0%, rgba(2, 24, 48, 0.42) 50%, rgba(2, 18, 36, 0.3) 100%),
    linear-gradient(to top, rgba(2, 14, 28, 0.7) 0%, transparent 55%);
}
.solution-tile__body {
  position: relative;
  z-index: 1;
  height: 100%;
  min-height: inherit;
  padding: clamp(1.5rem, 3vw, 2.25rem);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  max-width: 36rem;
}
.solution-tile h3 {
  margin: 0 0 .45rem;
  font-family: var(--font);
  font-size: clamp(1.35rem, 2.4vw, 1.85rem);
  font-weight: 700;
  line-height: 1.3;
}
.solution-tile p {
  margin: 0 0 .9rem;
  color: rgba(255, 255, 255, 0.82);
  font-size: .98rem;
  line-height: 1.65;
}
.solution-tile span {
  font-size: .9rem;
  font-weight: 600;
  color: #9ad4f0;
  letter-spacing: .02em;
}
.solution-grid__more {
  margin: 1.75rem 0 0;
  text-align: center;
}
@media (max-width: 720px) {
  .solution-grid { grid-template-columns: 1fr; }
  .solution-tile--wide { grid-column: auto; }
}

/* Orbbec-style full-bleed solution stage */
.solution-stage {
  --stage-inset: clamp(2.5rem, 12vw, 11rem);
  position: relative;
  min-height: 100vh;
  min-height: 100dvh;
  color: #fff;
  overflow: hidden;
  background: #06101c;
}
.solution-stage--page {
  min-height: 100vh;
  min-height: 100dvh;
}
.solution-stage__media {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.solution-stage__slide {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  opacity: 0;
  transform: scale(1.04);
  transition: opacity .9s ease, transform 6s ease;
}
.solution-stage__slide.is-active {
  opacity: 1;
  transform: scale(1);
}
.solution-stage__shade {
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  background:
    linear-gradient(100deg, rgba(2, 16, 32, 0.78) 0%, rgba(2, 16, 32, 0.42) 42%, rgba(2, 16, 32, 0.18) 100%),
    linear-gradient(to top, rgba(2, 16, 32, 0.72) 0%, transparent 42%);
}
.solution-stage__inner {
  position: absolute;
  inset: 0;
  z-index: 2;
  width: auto;
  max-width: none;
  margin: 0;
  padding: 0;
  pointer-events: none;
}
.solution-stage__copy {
  position: absolute;
  left: var(--stage-inset);
  top: 44%;
  transform: translateY(-50%);
  max-width: min(34rem, calc(100% - var(--stage-inset) - 2rem));
  z-index: 1;
  pointer-events: auto;
}
.solution-stage__panel h2 {
  margin: 0 0 .85rem;
  font-family: var(--display);
  font-size: clamp(1.85rem, 4vw, 2.75rem);
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: -0.02em;
  text-shadow: 0 8px 28px rgba(0, 0, 0, 0.35);
}
.solution-stage__panel p {
  margin: 0 0 1.5rem;
  max-width: 30rem;
  font-size: clamp(.98rem, 1.4vw, 1.12rem);
  line-height: 1.75;
  color: rgba(255, 255, 255, 0.88);
  text-shadow: 0 4px 18px rgba(0, 0, 0, 0.35);
}
.solution-stage__more {
  display: inline-flex;
  align-items: center;
  gap: .35rem;
  font-size: 1rem;
  font-weight: 600;
  color: #fff;
  transition: gap .25s ease, opacity .2s;
}
.solution-stage__more:hover {
  gap: .55rem;
  opacity: .9;
}
.solution-stage__panel {
  animation: solutionPanelIn .55s ease both;
}
.solution-stage__panel[hidden] {
  display: none;
}
@keyframes solutionPanelIn {
  from { opacity: 0; transform: translateY(14px); }
  to { opacity: 1; transform: translateY(0); }
}

.solution-stage__tabs {
  position: absolute;
  left: var(--stage-inset);
  bottom: clamp(1.75rem, 4.5vh, 2.75rem);
  display: flex;
  flex-wrap: wrap;
  gap: .65rem;
  z-index: 1;
  pointer-events: auto;
}
.solution-stage__tab {
  width: 88px;
  height: 88px;
  padding: .55rem .4rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: .4rem;
  color: rgba(255, 255, 255, 0.92);
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.18);
  backdrop-filter: blur(8px);
  transition: background .25s ease, border-color .25s ease, transform .25s ease;
}
.solution-stage__tab svg {
  width: 26px;
  height: 26px;
  display: block;
}
.solution-stage__tab span {
  font-size: .78rem;
  font-weight: 600;
  letter-spacing: .02em;
  line-height: 1.2;
  text-align: center;
}
.solution-stage__tab:hover {
  background: rgba(255, 255, 255, 0.18);
  transform: translateY(-2px);
}
.solution-stage__tab.is-active {
  background: var(--brand);
  border-color: var(--brand);
  color: #fff;
  box-shadow: 0 10px 28px rgba(2, 66, 135, 0.35);
}
@media (max-width: 640px) {
  .solution-stage {
    --stage-inset: 1.25rem;
  }
  .solution-stage__tab {
    width: 72px;
    height: 72px;
    gap: .28rem;
  }
  .solution-stage__tab svg {
    width: 22px;
    height: 22px;
  }
  .solution-stage__tab span {
    font-size: .68rem;
  }
  .solution-stage__copy {
    top: 36%;
  }
  .solution-stage__tabs {
    bottom: 1.25rem;
  }
}

/* Legacy feature grid kept for other pages if needed */
.section__head--center {
  text-align: center;
  max-width: 720px;
  margin-left: auto;
  margin-right: auto;
}
.section__head--center .section__desc {
  margin-inline: auto;
}
.solution-feature-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1.25rem;
}
@media (max-width: 800px) {
  .solution-feature-grid { grid-template-columns: 1fr; }
}
.solution-feature {
  position: relative;
  display: block;
  min-height: clamp(360px, 48vw, 480px);
  overflow: hidden;
  color: #fff;
}
.solution-feature img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .7s ease;
}
.solution-feature::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(1, 20, 40, 0.15) 0%, rgba(1, 20, 40, 0.35) 42%, rgba(1, 18, 36, 0.92) 100%);
  transition: background .35s ease;
}
.solution-feature:hover img { transform: scale(1.05); }
.solution-feature:hover::after {
  background:
    linear-gradient(180deg, rgba(1, 20, 40, 0.2) 0%, rgba(1, 30, 55, 0.45) 40%, rgba(1, 24, 48, 0.95) 100%);
}
.solution-feature__body {
  position: relative;
  z-index: 1;
  height: 100%;
  min-height: inherit;
  padding: clamp(1.5rem, 3vw, 2.5rem);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  max-width: 34rem;
}
.solution-feature__label {
  display: inline-block;
  margin-bottom: .75rem;
  font-size: .72rem;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: rgba(154, 212, 240, 0.95);
  font-weight: 600;
}
.solution-feature h3 {
  margin: 0 0 .65rem;
  font-family: var(--display);
  font-size: clamp(1.35rem, 2.4vw, 1.85rem);
  font-weight: 700;
  line-height: 1.25;
}
.solution-feature p {
  margin: 0 0 1.15rem;
  color: rgba(255, 255, 255, 0.82);
  font-size: .98rem;
  line-height: 1.7;
}
.solution-feature__more {
  display: inline-flex;
  align-items: center;
  gap: .35rem;
  font-size: .9rem;
  font-weight: 600;
  color: #9ad4f0;
  transition: gap .25s ease, color .25s ease;
}
.solution-feature:hover .solution-feature__more {
  gap: .55rem;
  color: #fff;
}

.solution-cats {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: .65rem 1.75rem;
  margin-top: 2.25rem;
  padding-top: .25rem;
}
.solution-cats a {
  position: relative;
  padding: .35rem 0;
  font-size: 1rem;
  font-weight: 500;
  color: var(--muted);
  transition: color .2s;
}
.solution-cats a::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 2px;
  background: var(--brand);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .25s ease;
}
.solution-cats a:hover,
.solution-cats a.is-active {
  color: var(--brand);
}
.solution-cats a:hover::after,
.solution-cats a.is-active::after {
  transform: scaleX(1);
}

.solution-more-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1.15rem;
  margin-top: 2rem;
}
@media (max-width: 720px) {
  .solution-more-grid { grid-template-columns: 1fr; }
}
.solution-more-grid .industry-card {
  min-height: 220px;
}

/* Advantages */
.adv-layout {
  display: grid;
  grid-template-columns: 1fr 1.05fr;
  gap: 2.5rem;
  align-items: center;
}
@media (max-width: 900px) {
  .adv-layout { grid-template-columns: 1fr; }
}
.adv-list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.25rem;
}
@media (max-width: 560px) {
  .adv-list { grid-template-columns: 1fr; }
}
.adv-item {
  padding: 1.15rem 0;
  border-top: 1px solid var(--line);
}
.adv-item img { width: 40px; height: 40px; object-fit: contain; margin-bottom: .75rem; }
.adv-item h3 { margin: 0 0 .4rem; font-size: 1.05rem; }
.adv-item p { margin: 0; color: var(--muted); font-size: .9rem; }
.adv-visual {
  overflow: hidden;
  background: var(--surface);
}
.adv-visual img {
  width: 100%;
  height: 100%;
  min-height: 360px;
  object-fit: cover;
}

/* News */
.news-cats {
  display: flex;
  flex-wrap: wrap;
  gap: .65rem 1rem;
  margin: 0 0 1.5rem;
}
.news-cats a {
  font-size: .92rem;
  font-weight: 600;
  color: var(--muted);
  text-decoration: none;
  padding-bottom: .35rem;
  border-bottom: 2px solid transparent;
  transition: color .2s, border-color .2s;
}
.news-cats a:hover { color: var(--brand); }
.news-cats a.is-active {
  color: var(--brand);
  border-bottom-color: var(--brand);
}
.news-list { display: grid; gap: 0; }
.news-item {
  display: grid;
  grid-template-columns: 4.5rem 1fr;
  gap: 1.25rem;
  padding: 1.35rem 0;
  border-top: 1px solid var(--line);
  transition: background .2s;
}
.news-item:last-child { border-bottom: 1px solid var(--line); }
.news-item:hover { background: rgba(2, 66, 135, 0.03); }
.news-item__idx {
  font-family: var(--display);
  font-size: 1.35rem;
  font-weight: 700;
  color: var(--accent);
  line-height: 1.2;
}
.news-item__date {
  font-size: .82rem;
  color: var(--muted);
  margin-bottom: .35rem;
}
.news-item h3 {
  margin: 0 0 .4rem;
  font-size: 1.08rem;
  font-weight: 700;
  line-height: 1.4;
}
.news-item p {
  margin: 0;
  color: var(--muted);
  font-size: .9rem;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

/* Page hero (inner) */
.page-hero {
  padding: calc(var(--nav-h) + 3.5rem) 0 3rem;
  background:
    linear-gradient(135deg, #0a1628 0%, #123a66 55%, #0c2038 100%);
  color: #fff;
}
.page-hero h1 {
  margin: 0 0 .65rem;
  font-family: var(--display);
  font-size: clamp(1.8rem, 3.5vw, 2.6rem);
  font-weight: 700;
}
.page-hero p {
  margin: 0;
  max-width: 36rem;
  color: rgba(255, 255, 255, 0.75);
}

.category-bar {
  display: flex;
  flex-wrap: wrap;
  gap: .5rem;
  margin: -1.5rem 0 2rem;
  position: relative;
  z-index: 2;
}
.category-bar a {
  padding: .6rem 1.1rem;
  background: var(--white);
  border: 1px solid var(--line);
  font-size: .9rem;
  font-weight: 500;
  box-shadow: 0 8px 24px rgba(1, 42, 88, 0.06);
  transition: all .2s;
}
.category-bar a:hover,
.category-bar a.is-active {
  background: var(--brand);
  border-color: var(--brand);
  color: #fff;
}

.prose {
  max-width: 720px;
  color: var(--muted);
  font-size: 1.02rem;
}
.prose p { margin: 0 0 1rem; }

.contact-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1.5rem;
}
@media (max-width: 640px) {
  .contact-grid { grid-template-columns: 1fr; }
}
.contact-card {
  padding: 1.5rem;
  border: 1px solid var(--line);
  background: var(--white);
}
.contact-card h3 { margin: 0 0 .5rem; font-size: 1.05rem; }
.contact-card p { margin: 0; color: var(--muted); }
.contact-card__photo {
  margin-top: 1.15rem;
  overflow: hidden;
  border: 1px solid var(--line);
  background: #eef3f7;
}
.contact-card__photo img {
  display: block;
  width: 100%;
  height: auto;
  aspect-ratio: 4 / 3;
  object-fit: cover;
}

/* Applications */
.app-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.15rem;
}
@media (max-width: 900px) {
  .app-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}
@media (max-width: 520px) {
  .app-grid { grid-template-columns: 1fr; }
}
.app-card {
  padding: 0;
  text-align: left;
  border: 1px solid var(--line);
  background: var(--white);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: border-color .2s, transform .2s;
}
.app-card:hover {
  border-color: rgba(2, 66, 135, 0.35);
  transform: translateY(-3px);
}
.app-card__media {
  aspect-ratio: 4 / 3;
  overflow: hidden;
  background: #eef3f7;
}
.app-card__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .45s;
}
.app-card:hover .app-card__media img {
  transform: scale(1.05);
}
.app-card__body {
  padding: 1rem 1.1rem 1.15rem;
}
.app-card strong {
  display: block;
  font-size: 1.02rem;
  color: var(--brand);
  margin-bottom: .3rem;
}
.app-card span {
  font-size: .85rem;
  color: var(--muted);
}

/* Industry accelerating carousel */
.industry-head {
  text-align: center;
  margin-bottom: clamp(2.5rem, 5vw, 3.5rem);
}
.industry-head__title {
  margin: 0;
  font-family: var(--display);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 700;
  color: var(--ink);
  letter-spacing: -0.02em;
}
.industry-head__title span {
  color: var(--brand);
  margin-right: .2em;
}

.industry-carousel {
  position: relative;
  padding: 0 3.25rem;
}
.industry-carousel__track {
  display: flex;
  gap: 1.6rem;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
  padding: .5rem .2rem 1.25rem;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
}
.industry-carousel__track::-webkit-scrollbar {
  display: none;
}
.industry-slide {
  flex: 0 0 calc((100% - 1.6rem) / 2);
  min-width: 340px;
  scroll-snap-align: start;
  background: var(--white);
  border: 1px solid var(--line);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  text-align: left;
  transition: border-color .25s, transform .25s, box-shadow .25s;
}
.industry-slide:hover {
  border-color: rgba(2, 66, 135, 0.28);
  transform: translateY(-4px);
  box-shadow: 0 14px 36px rgba(1, 42, 88, 0.08);
}
.industry-slide__media {
  aspect-ratio: 16 / 10;
  min-height: clamp(220px, 26vw, 320px);
  overflow: hidden;
  background: #e8eef4;
}
.industry-slide__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .55s ease;
}
.industry-slide:hover .industry-slide__media img {
  transform: scale(1.04);
}
.industry-slide__body {
  padding: 1.75rem 1.85rem 2rem;
}
.industry-slide__body h3 {
  margin: 0 0 .75rem;
  font-size: clamp(1.35rem, 2vw, 1.65rem);
  font-weight: 700;
  color: var(--ink);
}
.industry-slide__body p {
  margin: 0;
  color: var(--muted);
  font-size: clamp(1rem, 1.2vw, 1.08rem);
  line-height: 1.75;
}
.industry-carousel__nav {
  position: absolute;
  top: 42%;
  transform: translateY(-50%);
  z-index: 2;
  width: 52px;
  height: 52px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  background: var(--brand-deep);
  border: none;
  transition: background .2s, opacity .2s;
}
.industry-carousel__nav svg {
  width: 20px;
  height: 20px;
}
.industry-carousel__nav:hover {
  background: var(--brand);
}
.industry-carousel__nav:disabled {
  opacity: .35;
  cursor: default;
}
.industry-carousel__nav--prev { left: 0; }
.industry-carousel__nav--next { right: 0; }
@media (max-width: 800px) {
  .industry-carousel { padding: 0 2.6rem; }
  .industry-slide {
    flex-basis: 88%;
    min-width: 280px;
  }
  .industry-slide__media { min-height: 200px; }
}
@media (max-width: 520px) {
  .industry-carousel { padding: 0; }
  .industry-carousel__nav { display: none; }
  .industry-slide {
    flex-basis: 90%;
  }
}

/* Stats */
.stats-row {
  display: flex;
  flex-wrap: wrap;
  gap: 1.75rem 2.5rem;
  margin: 1.5rem 0 0;
}
.stat-num {
  font-family: var(--display);
  font-size: 1.85rem;
  font-weight: 700;
  color: var(--brand);
  line-height: 1.1;
}
.stat-lbl {
  font-size: .85rem;
  color: var(--muted);
  margin-top: .2rem;
}

.capability-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1rem;
  margin-top: 1.5rem;
}
@media (max-width: 900px) {
  .capability-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}
.capability-card {
  padding: 0;
  border: 1px solid var(--line);
  background: var(--white);
  overflow: hidden;
  display: flex;
  flex-direction: column;
}
.capability-card__media {
  aspect-ratio: 4 / 3;
  overflow: hidden;
  background: #eef3f7;
}
.capability-card__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .45s;
}
.capability-card:hover .capability-card__media img {
  transform: scale(1.04);
}
.capability-card__body {
  padding: 1.15rem 1.15rem 1.25rem;
  flex: 1;
  display: flex;
  flex-direction: column;
}
.capability-card h3 {
  margin: 0 0 .5rem;
  font-size: 1.02rem;
  color: var(--brand-deep);
}
.capability-card p {
  margin: 0;
  font-size: .88rem;
  color: var(--muted);
  flex: 1;
}
.capability-card .tag-row {
  display: flex;
  flex-wrap: wrap;
  gap: .35rem;
  margin-top: .85rem;
}
.tag {
  display: inline-block;
  padding: .2rem .55rem;
  font-size: .72rem;
  font-weight: 600;
  color: var(--brand);
  background: rgba(2, 66, 135, 0.06);
  border: 1px solid rgba(2, 66, 135, 0.12);
}

.brand-band {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: clamp(1.75rem, 4vw, 3rem);
  align-items: start;
  padding: 0;
  border: none;
  background: none;
}
@media (max-width: 800px) {
  .brand-band { grid-template-columns: 1fr; }
}
.brand-band__eyebrow {
  font-size: .72rem;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--accent);
  font-weight: 600;
  margin-bottom: .5rem;
}
.brand-band h2 {
  margin: 0 0 .75rem;
  font-family: var(--display);
  font-size: clamp(1.35rem, 2.4vw, 1.75rem);
}
.brand-band p {
  margin: 0 0 .85rem;
  color: var(--muted);
  font-size: .98rem;
}
.brand-band__meta {
  display: flex;
  flex-wrap: wrap;
  gap: .5rem .85rem;
  font-size: .85rem;
  color: var(--brand-deep);
  font-weight: 600;
}
.brand-band__side {
  padding: 0;
  background: none;
  color: var(--ink);
}
.brand-band__side h3 {
  margin: 0 0 .65rem;
  color: var(--brand-deep);
  font-size: 1.05rem;
}
.brand-band__side p {
  margin: 0;
  color: var(--muted);
  font-size: .9rem;
  line-height: 1.6;
}
.brand-band__side ol {
  margin: .85rem 0 0;
  padding-left: 1.1rem;
  font-size: .86rem;
  color: var(--muted);
}
.brand-band__side li { margin-bottom: .35rem; list-style: decimal; }

.team-roles {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.25rem;
}
.team-role {
  padding: 1.5rem 0;
  background: none;
  border: none;
  border-top: 1px solid var(--line);
}
.team-role h3 {
  margin: 0 0 .55rem;
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--brand-deep);
}
.team-role > p {
  margin: 0 0 1rem;
  color: var(--muted);
  font-size: .95rem;
  line-height: 1.65;
}
.team-role ul {
  margin: 0;
  padding-left: 1.1rem;
  color: var(--ink);
  font-size: .92rem;
}
.team-role li {
  list-style: disc;
  margin-bottom: .4rem;
}
@media (max-width: 900px) {
  .team-roles { grid-template-columns: 1fr; }
}

.pipeline {
  display: flex;
  flex-wrap: wrap;
  gap: .35rem .85rem;
  margin-top: 1rem;
}
.pipeline span {
  padding: 0;
  font-size: .82rem;
  font-weight: 600;
  background: none;
  border: none;
  color: var(--brand);
}

.partner-logo-wall {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 1rem 1.25rem;
  align-items: center;
}
.partner-logo {
  min-height: 88px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: .85rem 1rem;
}
.partner-logo img {
  max-width: 100%;
  max-height: 52px;
  width: auto;
  height: auto;
  object-fit: contain;
  transition: transform .25s, opacity .25s;
}
.partner-logo:hover img {
  transform: translateY(-2px);
}
.partner-logo-wall--page .partner-logo {
  min-height: 110px;
}
.partner-logo-wall--page .partner-logo img {
  max-height: 64px;
}
.partner-more {
  margin: 2rem 0 0;
  text-align: center;
}
@media (max-width: 900px) {
  .partner-logo-wall { grid-template-columns: repeat(3, minmax(0, 1fr)); }
}
@media (max-width: 560px) {
  .partner-logo-wall { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: .75rem; }
  .partner-logo { min-height: 72px; padding: .65rem; }
  .partner-logo img { max-height: 42px; }
}

.prose h3 {
  margin: 1.75rem 0 .75rem;
  font-size: 1.15rem;
  color: var(--ink);
}
.prose ul {
  margin: 0 0 1rem;
  padding-left: 1.2rem;
  color: var(--muted);
}
.prose li {
  list-style: disc;
  margin-bottom: .4rem;
}

/* AI vision solution page */
.sol-lead {
  margin: 0 0 1rem;
  font-size: 1.08rem;
  line-height: 1.7;
  color: var(--ink);
}
.sol-intro {
  display: grid;
  grid-template-columns: 1.1fr .9fr;
  gap: 2rem;
  align-items: center;
  margin-bottom: 3rem;
}
.sol-intro__copy p {
  margin: 0 0 .85rem;
  color: var(--muted);
  line-height: 1.7;
}
.sol-intro__media {
  border: 1px solid var(--line);
  background: #f4f7fa;
  overflow: hidden;
}
.sol-intro__media img {
  display: block;
  width: 100%;
  height: auto;
  max-height: 280px;
  object-fit: cover;
}
.sol-block {
  margin: 0 0 3.25rem;
  padding-top: 2.25rem;
  border-top: 1px solid var(--line);
}
.sol-block__head {
  max-width: 40rem;
  margin-bottom: 1.5rem;
}
.sol-eyebrow {
  display: block;
  margin-bottom: .45rem;
  font-size: .82rem;
  font-weight: 600;
  letter-spacing: .06em;
  color: var(--accent);
}
.sol-block__head h2 {
  margin: 0 0 .55rem;
  font-size: clamp(1.35rem, 2.4vw, 1.75rem);
  color: var(--ink);
  line-height: 1.3;
}
.sol-block__head p {
  margin: 0;
  color: var(--muted);
  line-height: 1.65;
}
.flow-chain {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: .75rem;
  counter-reset: none;
}
.flow-chain__item {
  position: relative;
  padding: 1.1rem 1rem 1.15rem;
  background:
    linear-gradient(165deg, rgba(5, 129, 183, 0.08), transparent 55%),
    #fff;
  border: 1px solid rgba(2, 66, 135, 0.12);
  min-height: 100%;
}
.flow-chain__item:not(:last-child)::after {
  content: '';
  position: absolute;
  top: 1.45rem;
  right: -.55rem;
  width: .7rem;
  height: .7rem;
  border-top: 2px solid var(--accent);
  border-right: 2px solid var(--accent);
  transform: rotate(45deg);
  z-index: 1;
}
.flow-chain__idx {
  display: block;
  margin-bottom: .55rem;
  font-family: var(--display);
  font-size: .85rem;
  font-weight: 700;
  color: var(--accent);
}
.flow-chain__item strong {
  display: block;
  margin-bottom: .4rem;
  font-size: .98rem;
  color: var(--ink);
}
.flow-chain__item p {
  margin: 0;
  font-size: .82rem;
  line-height: 1.45;
  color: var(--muted);
}
.layer-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1rem;
}
.layer-grid--3 {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}
.layer-card {
  padding: 1.25rem 1.2rem 1.35rem;
  border-top: 3px solid var(--brand);
  background: linear-gradient(180deg, rgba(2, 66, 135, 0.04), transparent 40%), #fff;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  border-left: 1px solid var(--line);
}
.layer-card h3 {
  margin: 0 0 .5rem;
  font-size: 1.02rem;
  color: var(--ink);
}
.layer-card p {
  margin: 0;
  font-size: .9rem;
  line-height: 1.55;
  color: var(--muted);
}
.path-steps {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 0;
}
.path-steps > li {
  display: grid;
  grid-template-columns: 2.75rem 1fr;
  gap: 1rem;
  padding: 1.15rem 0;
  border-bottom: 1px solid var(--line);
}
.path-steps > li:first-child { border-top: 1px solid var(--line); }
.path-steps__num {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 50%;
  background: var(--brand);
  color: #fff;
  font-family: var(--display);
  font-weight: 700;
  font-size: .95rem;
}
.path-steps h3 {
  margin: 0 0 .35rem;
  font-size: 1.05rem;
  color: var(--ink);
}
.path-steps p {
  margin: 0;
  color: var(--muted);
  font-size: .92rem;
  line-height: 1.6;
}
.case-split {
  display: grid;
  grid-template-columns: .95fr 1.15fr;
  gap: 2rem;
  align-items: start;
}
.case-split__media {
  position: relative;
  width: 100%;
  aspect-ratio: 1 / 1;
  max-width: 520px;
  background: #f4f7fa;
  border: 1px solid var(--line);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1.5rem;
  overflow: hidden;
}
.case-split__media > img:first-child {
  display: block;
  width: auto;
  height: auto;
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
  object-position: center;
  background: transparent;
}
.case-split__thumbs {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: .65rem;
  margin-top: .65rem;
  width: 100%;
}
.case-split__thumbs img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  background: #eef3f7;
}
.case-meta {
  display: flex;
  flex-wrap: wrap;
  gap: .45rem;
  margin-bottom: 1rem;
}
.case-meta span {
  padding: .28rem .65rem;
  font-size: .78rem;
  font-weight: 600;
  color: var(--brand);
  background: rgba(2, 66, 135, 0.08);
}
.case-split__body h3 {
  margin: 1.15rem 0 .45rem;
  font-size: 1.02rem;
  color: var(--ink);
}
.case-split__body h3:first-of-type { margin-top: 0; }
.case-split__body ul {
  margin: 0;
  padding-left: 1.15rem;
  color: var(--muted);
}
.case-split__body li {
  margin-bottom: .35rem;
  font-size: .92rem;
  line-height: 1.55;
}
.spec-table {
  width: 100%;
  border-collapse: collapse;
  margin: 0 0 1.25rem;
  font-size: .9rem;
}
.spec-table th,
.spec-table td {
  padding: .55rem .65rem;
  border-bottom: 1px solid var(--line);
  text-align: left;
  vertical-align: top;
  line-height: 1.5;
}
.spec-table th {
  width: 7.5rem;
  color: var(--muted);
  font-weight: 600;
  white-space: nowrap;
}
.spec-table td { color: var(--ink); }
.spec-table tr:last-child th,
.spec-table tr:last-child td { border-bottom: none; }
.case-actions {
  display: flex;
  flex-wrap: wrap;
  gap: .65rem;
  margin: 1.5rem 0 0;
}
.sol-cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: .65rem;
  margin: 1.75rem 0 0;
}
@media (max-width: 980px) {
  .sol-intro { grid-template-columns: 1fr; }
  .flow-chain { grid-template-columns: repeat(3, minmax(0, 1fr)); }
  .flow-chain__item:nth-child(3)::after { display: none; }
  .layer-grid,
  .layer-grid--3 { grid-template-columns: 1fr 1fr; }
  .case-split { grid-template-columns: 1fr; }
  .case-split__media { max-width: none; }
}
@media (max-width: 640px) {
  .flow-chain { grid-template-columns: 1fr 1fr; }
  .flow-chain__item:nth-child(2n)::after { display: none; }
  .layer-grid,
  .layer-grid--3 { grid-template-columns: 1fr; }
}

.media-strip {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
  margin: 1.5rem 0 1.75rem;
}
.media-strip--2 {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}
.media-strip img {
  width: 100%;
  height: auto;
  max-height: 360px;
  object-fit: contain;
  background: #0b1220;
  border: 1px solid var(--line);
}
.media-strip--2 img {
  max-height: 240px;
  object-fit: cover;
  background: #e8eef4;
}
@media (max-width: 640px) {
  .media-strip--2 { grid-template-columns: 1fr; }
}

/* Footer */
.site-footer {
  background:
    radial-gradient(ellipse 70% 80% at 0% 0%, rgba(5, 129, 183, 0.14), transparent 55%),
    radial-gradient(ellipse 50% 60% at 100% 20%, rgba(2, 66, 135, 0.18), transparent 50%),
    linear-gradient(180deg, #0a1628 0%, #07111d 100%);
  color: rgba(255, 255, 255, 0.78);
  padding: 3.5rem 0 0;
  border-top: 1px solid rgba(5, 129, 183, 0.22);
}
.site-footer__grid {
  display: grid;
  grid-template-columns: 1.35fr 1.15fr 1.1fr .9fr;
  gap: 2.5rem 2rem;
  padding-bottom: 2.75rem;
}
.site-footer__logo {
  display: inline-flex;
  align-items: center;
  margin-bottom: 1rem;
}
.site-footer__logo img {
  height: 40px;
  width: auto;
  /* 保留原色，黑体边缘加白边以便深色底可读 */
  filter:
    drop-shadow(1px 0 0 rgba(255, 255, 255, 0.95))
    drop-shadow(-1px 0 0 rgba(255, 255, 255, 0.95))
    drop-shadow(0 1px 0 rgba(255, 255, 255, 0.95))
    drop-shadow(0 -1px 0 rgba(255, 255, 255, 0.95))
    drop-shadow(1px 1px 0 rgba(255, 255, 255, 0.7))
    drop-shadow(-1px -1px 0 rgba(255, 255, 255, 0.7));
}
.site-footer__tagline {
  margin: 0 0 1.15rem;
  font-size: 1.05rem;
  font-weight: 700;
  color: #fff;
  line-height: 1.45;
}
.site-footer__addr {
  margin: 0 0 .7rem;
  font-size: .82rem;
  line-height: 1.55;
  color: rgba(255, 255, 255, 0.52);
}
.site-footer__col h3 {
  margin: 0 0 1rem;
  font-size: .92rem;
  font-weight: 700;
  color: #7ec8e8;
  letter-spacing: .04em;
}
.site-footer__subhead { margin-top: 1.5rem !important; }
.site-footer__col ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: .55rem;
}
.site-footer__col a {
  color: rgba(255, 255, 255, 0.72);
  font-size: .88rem;
  text-decoration: none;
  transition: color .2s;
}
.site-footer__col a:hover { color: #fff; }
.site-footer__contacts li {
  display: grid;
  grid-template-columns: 4.5rem 1fr;
  gap: .5rem;
  align-items: baseline;
  font-size: .88rem;
}
.site-footer__contacts span {
  color: rgba(255, 255, 255, 0.42);
  font-size: .78rem;
}
.site-footer__contacts em {
  font-style: normal;
  color: rgba(255, 255, 255, 0.72);
}
.site-footer__cta {
  display: inline-flex;
  margin-top: 1.15rem;
  padding: .55rem 1rem;
  border-radius: 4px;
  background: var(--accent);
  color: #fff !important;
  font-size: .86rem;
  font-weight: 600;
  transition: background .2s, transform .2s;
}
.site-footer__cta:hover {
  background: #0698d4;
  transform: translateY(-1px);
}
.site-footer__follow p {
  margin: .75rem 0 0;
  font-size: .82rem;
  line-height: 1.5;
  color: rgba(255, 255, 255, 0.55);
}
.site-footer__qr {
  width: 132px;
  height: 132px;
  padding: .4rem;
  background: #fff;
  border-radius: 8px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.25);
}
.site-footer__qr img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
}
.site-footer__bar {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem 1.5rem;
  justify-content: space-between;
  align-items: center;
  padding: 1.15rem 0 1.35rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}
.site-footer__legal {
  display: flex;
  flex-wrap: wrap;
  gap: .65rem 1.15rem;
}
.site-footer__legal a {
  font-size: .82rem;
  color: rgba(255, 255, 255, 0.55);
  text-decoration: none;
}
.site-footer__legal a:hover { color: #7ec8e8; }
.site-footer__copy {
  display: flex;
  flex-wrap: wrap;
  gap: .35rem 1rem;
  font-size: .8rem;
  color: rgba(255, 255, 255, 0.42);
}
.site-footer__copy a { color: rgba(255, 255, 255, 0.5); }
.site-footer__copy a:hover { color: #7ec8e8; }

@media (max-width: 980px) {
  .site-footer__grid {
    grid-template-columns: 1fr 1fr;
    gap: 2rem 1.5rem;
  }
}
@media (max-width: 640px) {
  .site-footer { padding-top: 2.5rem; }
  .site-footer__grid { grid-template-columns: 1fr; gap: 1.75rem; }
  .site-footer__contacts li { grid-template-columns: 4rem 1fr; }
  .site-footer__bar { flex-direction: column; align-items: flex-start; }
}

/* ——— Global map (ported from live site) ——— */
.global-map {
  --gmap-cyan: #00fdfd;
  position: relative;
  overflow: hidden;
  min-height: min(100vh, 820px);
  color: #fff;
  background: #041428;
}
.global-map--hero {
  min-height: 100%;
  height: 100%;
}
.global-map--hero .global-map__inner {
  padding-top: calc(var(--nav-h) + clamp(4.75rem, 11vh, 7.25rem));
  padding-bottom: clamp(2.5rem, 5vw, 4rem);
  min-height: 100%;
  box-sizing: border-box;
}
.global-map--hero .global-map__photo {
  transform: none;
}
.global-map__bg {
  position: absolute;
  inset: 0;
  background: url("../img/map-bg.jpg") center / cover no-repeat;
  pointer-events: none;
}
.global-map__bg::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(4, 20, 40, 0.55) 0%, rgba(4, 20, 40, 0.12) 42%, transparent 70%),
    linear-gradient(180deg, rgba(4, 20, 40, 0.35) 0%, transparent 28%, transparent 72%, rgba(4, 20, 40, 0.45) 100%);
  pointer-events: none;
}
.global-map__inner {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: clamp(1.5rem, 4vw, 3.5rem);
  width: min(1280px, calc(100% - (var(--hero-side-gutter, 5rem) * 2)));
  margin: 0 auto;
  padding: clamp(4rem, 8vw, 6rem) 0;
  min-height: inherit;
}
.global-map__stats {
  display: grid;
  grid-template-columns: 1fr 1fr;
  column-gap: clamp(1.5rem, 3vw, 3rem);
  row-gap: clamp(1.75rem, 3.5vw, 3rem);
  flex: 0 0 auto;
  width: min(320px, 28vw);
  min-width: 220px;
}
.global-map__stat:nth-child(2),
.global-map__stat:nth-child(4) {
  text-align: right;
  justify-self: end;
}
.global-map__stat-num {
  display: flex;
  align-items: flex-end;
  justify-content: flex-start;
  gap: .15rem;
  white-space: nowrap;
  line-height: 1;
}
.global-map__stat:nth-child(2) .global-map__stat-num,
.global-map__stat:nth-child(4) .global-map__stat-num {
  justify-content: flex-end;
}
.global-map__stat-num span {
  font-family: var(--display);
  font-size: clamp(2.4rem, 4.2vw, 3.75rem);
  font-weight: 700;
  letter-spacing: -0.02em;
  color: #fff;
}
.global-map__stat-num em {
  position: relative;
  font-style: normal;
  font-size: clamp(1rem, 1.6vw, 1.5rem);
  letter-spacing: .08em;
  line-height: 1.8;
  color: #fff;
  margin-left: .15rem;
}
.global-map__stat-num em > sup {
  position: absolute;
  bottom: 55%;
  left: 100%;
  color: var(--gmap-cyan);
  font-size: .85em;
  text-shadow: none;
}
.global-map__stat-label {
  margin-top: .55rem;
  font-size: clamp(.9rem, 1.2vw, 1.05rem);
  letter-spacing: .18em;
  color: rgba(255, 255, 255, 0.92);
}
.global-map__photo {
  position: relative;
  flex: 1 1 auto;
  min-width: 0;
  max-width: 880px;
  margin-left: auto;
}
.global-map__photo > img {
  display: block;
  width: 100%;
  height: auto;
  user-select: none;
  pointer-events: none;
}
.global-map__dots {
  position: absolute;
  inset: 0;
}
.gmap-dot {
  position: absolute;
  left: 0;
  top: 0;
  pointer-events: none;
}
.gmap-dot__mid {
  position: relative;
  display: block;
  width: 30px;
  height: 30px;
}
.gmap-dot__mid > em {
  position: absolute;
  inset: 0;
  margin: auto;
  display: block;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--gmap-cyan);
  box-shadow: 0 0 10px rgba(0, 253, 253, 0.65);
}
.gmap-dot__rip {
  position: absolute;
  left: 50%;
  top: 50%;
  width: min(34vw, 340px);
  max-width: 340px;
  transform: translate(-50%, -50%);
  transform-origin: 50% 50%;
  animation: gmap-cir-out 5s linear infinite;
  animation-fill-mode: both;
  pointer-events: none;
}
.gmap-dot__rip:nth-child(2) { animation-delay: 1s; }
.gmap-dot__rip:nth-child(3) { animation-delay: 2.5s; }
.gmap-dot__rip:nth-child(4) { animation-delay: 4s; }
.gmap-dot__msg {
  position: absolute;
  text-align: center;
  width: 30px;
}
.gmap-dot__line {
  position: absolute;
  left: 0;
  right: 0;
  margin: 0 auto;
  width: 1px;
  height: calc(100% - 18px);
  background: var(--gmap-cyan);
  bottom: 99%;
}
.gmap-dot__pin {
  display: inline-block;
  width: 12px;
  height: 12px;
  border-radius: 50% 50% 50% 0;
  background: var(--gmap-cyan);
  transform: rotate(-45deg);
  box-shadow: 0 0 8px rgba(0, 253, 253, 0.5);
  vertical-align: middle;
}
.gmap-dot__notice {
  position: absolute;
  top: -27px;
  white-space: nowrap;
}
.gmap-dot__notice small {
  display: block;
  color: rgba(255, 255, 255, 0.85);
  font-size: .8rem;
  line-height: 1.5;
}
.gmap-dot__notice h4 {
  margin: 0;
  color: #fff;
  font-size: clamp(.95rem, 1.4vw, 1.35rem);
  font-weight: 600;
  line-height: 1.35;
}
.gmap-dot__notice p {
  margin: 0;
  color: rgba(255, 255, 255, 0.88);
  font-size: .8rem;
  line-height: 1.3;
}
.gmap-dot__msg--ld .gmap-dot__notice {
  text-align: right;
  right: 140%;
}
.gmap-dot__msg--rd .gmap-dot__notice {
  text-align: left;
  left: 140%;
}
.gmap-dot__msg--up {
  bottom: 100%;
}
.gmap-dot__msg--up .gmap-dot__line {
  bottom: -10px;
}
.gmap-dot__msg--down {
  top: 100%;
}
.gmap-dot__msg--down .gmap-dot__line {
  top: -10px;
  bottom: auto;
  height: calc(100% - 18px);
}
.gmap-dot__msg--down .gmap-dot__notice {
  top: auto;
  bottom: -10px;
}

@keyframes gmap-cir-out {
  0% {
    transform: translate(-50%, -50%) scale(0.05);
    opacity: 1;
  }
  80% {
    transform: translate(-50%, -50%) scale(1);
    opacity: 1;
  }
  100% {
    transform: translate(-50%, -50%) scale(1.1);
    opacity: 0;
  }
}

@media (max-width: 960px) {
  .global-map {
    min-height: 0;
  }
  .global-map--hero {
    min-height: auto;
  }
  .global-map__inner {
    flex-direction: column;
    align-items: stretch;
    padding: 3.25rem 0 3.5rem;
  }
  .global-map--hero .global-map__inner {
    padding-top: calc(var(--nav-h) + clamp(5rem, 12vh, 7rem));
    padding-bottom: 2.75rem;
  }
  .global-map--hero .global-map__photo {
    transform: none;
  }
  .global-map__stats {
    width: 100%;
    max-width: 420px;
    margin: 0 auto;
  }
  .global-map__photo {
    max-width: none;
    margin: 0 -.5rem;
  }
  .gmap-dot__rip {
    width: min(42vw, 220px);
  }
  .gmap-dot__notice h4 {
    font-size: .95rem;
  }
  .gmap-dot__notice small,
  .gmap-dot__notice p {
    font-size: .72rem;
  }
}

@media (max-width: 640px) {
  .gmap-dot__msg {
    display: none;
  }
  .gmap-dot__rip {
    width: min(48vw, 160px);
  }
}

/* Motion */
@keyframes rise {
  from { opacity: 0; transform: translateY(18px); }
  to { opacity: 1; transform: translateY(0); }
}
.reveal {
  animation: rise .7s ease both;
}
.reveal-delay-1 { animation-delay: .08s; }
.reveal-delay-2 { animation-delay: .16s; }
.reveal-delay-3 { animation-delay: .24s; }
