﻿:root {
  --bg: #03070d;
  --bg-soft: #09131d;
  --panel: rgba(14, 27, 37, 0.85);
  --panel-strong: rgba(12, 22, 31, 0.95);
  --panel-light: rgba(255, 255, 255, 0.06);
  --line: rgba(145, 255, 247, 0.22);
  --line-soft: rgba(255, 255, 255, 0.08);
  --text: #ecf7ff;
  --muted: #9eb1c3;
  --primary: #73f7ff;
  --primary-deep: #40c7d0;
  --accent: #8be8f2;
  --white: #ffffff;
  --dark-text: #13212f;
  --radius: 24px;
  --radius-sm: 18px;
  --shadow: 0 24px 60px rgba(0, 0, 0, 0.38);
  --container: min(1180px, calc(100% - 40px));
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  background: #02060a;
}

body {
  margin: 0;
  font-family: "Microsoft YaHei", "PingFang SC", sans-serif;
  color: var(--text);
  background:
    radial-gradient(circle at top, rgba(69, 192, 201, 0.15), transparent 24%),
    linear-gradient(180deg, #02060a 0%, #050b12 52%, #02060a 100%);
}

body.nav-open {
  overflow: hidden;
}

body.content-motion main,
body.content-motion .site-footer {
  opacity: 0;
  transform: translateY(10px);
  transition:
    opacity 0.18s ease,
    transform 0.18s ease;
}

body.content-motion.page-ready main,
body.content-motion.page-ready .site-footer {
  opacity: 1;
  transform: none;
}

@media (prefers-reduced-motion: reduce) {
  body.content-motion main,
  body.content-motion .site-footer,
  body.content-motion.page-ready main,
  body.content-motion.page-ready .site-footer {
    opacity: 1;
    transform: none;
    transition: none;
  }
}
body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  background-image:
    linear-gradient(rgba(110, 220, 225, 0.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(110, 220, 225, 0.05) 1px, transparent 1px);
  background-size: 80px 80px;
  mask-image: linear-gradient(180deg, rgba(0, 0, 0, 0.5), transparent 85%);
}

img {
  max-width: 100%;
  display: block;
}

button,
a {
  color: inherit;
}

a {
  text-decoration: none;
}

.container {
  width: var(--container);
  margin: 0 auto;
}

.narrow-container {
  width: min(860px, 100%);
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  border-bottom: 1px solid var(--line-soft);
  background: rgba(2, 6, 10, 0.84);
  backdrop-filter: blur(14px);
}

.site-header.is-scrolled {
  background: rgba(2, 6, 10, 0.94);
}

.header-inner {
  min-height: 80px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 14px;
}

.brand strong,
.brand small {
  display: block;
}

.brand strong {
  font-size: 24px;
  letter-spacing: 0.06em;
}

.brand small {
  font-size: 11px;
  letter-spacing: 0.12em;
  color: var(--muted);
}

.brand-mark {
  width: 48px;
  height: 48px;
  display: inline-grid;
  place-items: center;
  border-radius: 50%;
  background: linear-gradient(135deg, #0ec7b4, #2496ff);
  color: var(--white);
  font-weight: 800;
  font-size: 26px;
  box-shadow: 0 0 30px rgba(64, 199, 208, 0.45);
}

.nav-toggle {
  display: none;
  min-width: 44px;
  min-height: 44px;
  padding: 0;
  border: 0;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.08);
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 6px;
}

.site-nav a {
  padding: 14px 22px;
  border-left: 1px solid rgba(255, 255, 255, 0.02);
  border-right: 1px solid rgba(255, 255, 255, 0.02);
  color: var(--muted);
  transition: 0.24s ease;
}

.site-nav a:hover,
.site-nav a.is-active {
  color: var(--white);
  background: rgba(115, 247, 255, 0.18);
}

.hero {
  position: relative;
  overflow: hidden;
  padding: 112px 0 88px;
}

.hero::before,
.hero::after {
  content: "";
  position: absolute;
  inset: auto;
  pointer-events: none;
}

.hero::before {
  width: 720px;
  height: 720px;
  right: -120px;
  top: -80px;
  background: radial-gradient(
    circle,
    rgba(56, 189, 248, 0.18) 0%,
    rgba(56, 189, 248, 0.06) 34%,
    transparent 68%
  );
}

.hero::after {
  left: -160px;
  bottom: -260px;
  width: 560px;
  height: 560px;
  background: radial-gradient(
    circle,
    rgba(115, 247, 255, 0.12),
    transparent 70%
  );
}

.hero-home,
.hero-technology,
.hero-services,
.hero-about {
  min-height: 78vh;
}

.hero-about {
  background:
    linear-gradient(180deg, rgba(2, 6, 10, 0.36), rgba(2, 6, 10, 0.66)),
    radial-gradient(
      circle at 20% 40%,
      rgba(38, 207, 231, 0.22),
      transparent 26%
    );
}

.hero-about .about-hero-grid {
  min-height: 52vh;
  align-items: center;
}

.hero-about::before {
  width: 100%;
  height: 100%;
  inset: 0;
  background-image:
    linear-gradient(rgba(36, 196, 235, 0.34) 0 0),
    linear-gradient(90deg, rgba(41, 191, 220, 0.22) 0 0);
  background-size:
    100% 2px,
    2px 100%;
  background-repeat: no-repeat;
  opacity: 0.2;
}

.hero-about::after {
  inset: 0;
  width: auto;
  height: auto;
  background:
    linear-gradient(
        120deg,
        transparent 8%,
        rgba(70, 234, 255, 0.24) 10%,
        transparent 12%
      )
      10% 30% / 380px 380px,
    linear-gradient(
        120deg,
        transparent 8%,
        rgba(70, 234, 255, 0.18) 10%,
        transparent 12%
      )
      60% 12% / 420px 420px,
    linear-gradient(
        120deg,
        transparent 8%,
        rgba(70, 234, 255, 0.14) 10%,
        transparent 12%
      )
      34% 64% / 320px 320px;
  opacity: 0.55;
}

.hero-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(340px, 0.9fr);
  gap: 42px;
  align-items: center;
}

.compact-grid {
  min-height: 62vh;
}

.hero-copy {
  max-width: 640px;
}

.eyebrow {
  margin: 0 0 16px;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--primary);
}

.hero h1,
.section-heading h2,
.service-copy h2,
.section-split h2,
.two-column h2 {
  margin: 0;
  line-height: 1.1;
}

.hero h1 {
  font-size: clamp(42px, 6vw, 84px);
  letter-spacing: 0.02em;
}

.hero-text,
.section-text,
.footer-text,
.feature-card p,
.engine-card p,
.layer-card p,
.partner-card,
.contact-card p,
.deliverable-card p,
.step-card p,
.ops-card p,
.about-intro p {
  color: var(--muted);
  line-height: 1.9;
}

.hero-text {
  margin: 22px 0 0;
  font-size: 18px;
}

.hero-actions,
.cta-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 34px;
}

.button {
  min-height: 50px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 24px;
  border-radius: 999px;
  font-weight: 700;
  transition:
    transform 0.2s ease,
    background 0.2s ease;
}

.button:hover {
  transform: translateY(-2px);
}

.button-primary {
  color: #031017;
  background: linear-gradient(135deg, #7df5ff, #66d8e5);
  box-shadow: 0 0 24px rgba(115, 247, 255, 0.35);
}

.button-secondary {
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.04);
}

.orbit-visual {
  position: relative;
  min-height: 520px;
}

.orbit-core {
  position: absolute;
  inset: 50% auto auto 50%;
  width: 240px;
  height: 240px;
  transform: translate(-50%, -50%);
  border-radius: 50%;
  display: grid;
  place-items: center;
  text-align: center;
  background: radial-gradient(
    circle at 50% 45%,
    rgba(152, 245, 255, 0.85),
    rgba(18, 51, 72, 0.96) 62%
  );
  box-shadow:
    0 0 0 18px rgba(72, 191, 202, 0.08),
    0 0 80px rgba(95, 241, 255, 0.32),
    inset 0 0 26px rgba(255, 255, 255, 0.2);
}

.orbit-core span {
  font-size: 18px;
  letter-spacing: 0.12em;
}

.orbit-core strong {
  display: block;
  margin-top: 12px;
  font-size: 40px;
}

.orbit-line,
.orbit-dot {
  position: absolute;
  inset: 50% auto auto 50%;
  transform: translate(-50%, -50%);
  border-radius: 50%;
}

.orbit-line {
  border: 1px solid rgba(105, 244, 255, 0.28);
}

.orbit-line-1 {
  width: 320px;
  height: 320px;
}

.orbit-line-2 {
  width: 440px;
  height: 220px;
  transform: translate(-50%, -50%) rotate(24deg);
}

.orbit-line-3 {
  width: 520px;
  height: 300px;
  transform: translate(-50%, -50%) rotate(-22deg);
}

.orbit-dot {
  width: 16px;
  height: 16px;
  background: var(--primary);
  box-shadow: 0 0 20px rgba(115, 247, 255, 0.75);
}

.orbit-dot-1 {
  margin: -154px 0 0 118px;
}

.orbit-dot-2 {
  margin: 126px 0 0 -172px;
}

.orbit-dot-3 {
  margin: -92px 0 0 -210px;
}

.section {
  padding: 92px 0;
}

.section-dark {
  background: linear-gradient(
    180deg,
    rgba(7, 14, 20, 0.86),
    rgba(7, 14, 20, 0.96)
  );
  border-top: 1px solid rgba(255, 255, 255, 0.04);
  border-bottom: 1px solid rgba(255, 255, 255, 0.04);
}

.section-light {
  background: #f6f8fb;
  color: var(--dark-text);
}

.section-light .eyebrow,
.section-light .section-text,
.section-light .footer-text,
.section-light p {
  color: #415466;
}

.section-heading {
  max-width: 760px;
  margin-bottom: 30px;
}

.section-heading h2,
.service-copy h2,
.section-split h2,
.two-column h2 {
  font-size: clamp(30px, 4.6vw, 52px);
}

.section-split,
.two-column,
.service-detail-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 36px;
  align-items: center;
}

.capability-wheel {
  position: relative;
  min-height: 420px;
  border-radius: 50%;
  border: 1px solid rgba(115, 247, 255, 0.18);
  background: radial-gradient(
    circle,
    rgba(115, 247, 255, 0.08),
    transparent 65%
  );
}

.capability-wheel::before,
.capability-wheel::after {
  content: "";
  position: absolute;
  inset: 42px;
  border-radius: 50%;
  border: 1px solid rgba(115, 247, 255, 0.12);
}

.capability-wheel::after {
  inset: 90px;
}

.wheel-center {
  position: absolute;
  inset: 50% auto auto 50%;
  transform: translate(-50%, -50%);
  width: 190px;
  height: 190px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  text-align: center;
  background: rgba(7, 21, 29, 0.96);
  border: 1px solid rgba(115, 247, 255, 0.18);
  box-shadow: inset 0 0 22px rgba(115, 247, 255, 0.12);
}

.wheel-center span {
  display: block;
  color: var(--muted);
}

.wheel-center strong {
  font-size: 32px;
}

.capability-wheel > span {
  position: absolute;
  left: var(--x);
  top: var(--y);
  transform: translate(-50%, -50%);
  padding: 12px 18px;
  border-radius: 999px;
  background: rgba(15, 34, 47, 0.92);
  border: 1px solid rgba(115, 247, 255, 0.2);
  color: var(--accent);
  white-space: nowrap;
}

.card-grid {
  display: grid;
  gap: 18px;
}

.card-grid-4 {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.card-grid-3 {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.feature-card,
.engine-card,
.layer-card,
.contact-card,
.step-card,
.deliverable-card,
.ops-card,
.partner-card {
  position: relative;
  overflow: hidden;
  min-height: 100%;
  padding: 28px;
  border-radius: var(--radius-sm);
  background: var(--panel);
  border: 1px solid rgba(115, 247, 255, 0.12);
  box-shadow: var(--shadow);
}

.feature-card::before,
.engine-card::before,
.layer-card::before,
.contact-card::before,
.step-card::before,
.deliverable-card::before,
.ops-card::before,
.partner-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(115, 247, 255, 0.08),
    transparent 38%
  );
  pointer-events: none;
}

.feature-card.highlight {
  background: linear-gradient(
    180deg,
    rgba(88, 226, 235, 0.22),
    rgba(13, 31, 45, 0.95)
  );
}

.feature-card h3,
.engine-card h3,
.layer-card h3,
.contact-card h3,
.step-card h3,
.deliverable-card h3,
.ops-card h3,
.partner-card h3,
.world-loop h3,
.footer-title,
.cta-slogan {
  margin: 0 0 10px;
}

.partner-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.partner-card {
  min-height: 120px;
  display: grid;
  place-items: center;
  text-align: center;
  font-size: 20px;
  color: var(--white);
  background: rgba(255, 255, 255, 0.95);
  color: #153148;
}

.cta-section {
  background: radial-gradient(
    circle at center,
    rgba(100, 194, 255, 0.16),
    transparent 40%
  );
}

.cta-panel {
  padding: 70px 54px;
  border-radius: var(--radius);
  text-align: center;
  background:
    linear-gradient(180deg, rgba(14, 22, 42, 0.85), rgba(6, 10, 20, 0.95)),
    radial-gradient(
      circle at center,
      rgba(115, 247, 255, 0.14),
      transparent 40%
    );
  border: 1px solid rgba(115, 247, 255, 0.16);
}

.cta-slogan {
  font-size: clamp(34px, 5vw, 64px);
  color: var(--primary);
}

.cta-text {
  margin: 0;
  color: var(--muted);
  font-size: 20px;
}

.cube-stage {
  position: relative;
  min-height: 440px;
}

.cube {
  position: absolute;
  left: 50%;
  top: 50%;
  border: 1px solid rgba(171, 247, 255, 0.48);
  background: linear-gradient(
    135deg,
    rgba(138, 241, 255, 0.32),
    rgba(34, 63, 79, 0.08)
  );
  transform: translate(-50%, -50%) rotate(45deg);
  box-shadow: 0 0 26px rgba(115, 247, 255, 0.26);
}

.cube-large {
  width: 260px;
  height: 260px;
}

.cube-small {
  width: 90px;
  height: 90px;
}

.cube-small-a {
  margin: -130px 0 0 120px;
}

.cube-small-b {
  margin: 120px 0 0 -120px;
}

.service-stage-visual .cube-large {
  width: 300px;
  height: 300px;
}

.service-glow {
  position: absolute;
  inset: 50% auto auto 50%;
  width: 420px;
  height: 180px;
  transform: translate(-50%, 24%);
  background: radial-gradient(
    circle,
    rgba(115, 247, 255, 0.28),
    transparent 70%
  );
}

.top-shift {
  margin-top: -88px;
}

.engine-grid,
.layer-grid,
.contact-grid,
.ops-grid {
  display: grid;
  gap: 18px;
}

.engine-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.layer-grid,
.contact-grid,
.ops-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
  margin-top: 22px;
}

.process-line {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
  margin-top: 26px;
}

.process-line span,
.benefit-stack article,
.tag-cloud span,
.twin-row span,
.twin-row strong {
  padding: 14px 18px;
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(115, 247, 255, 0.14);
}

.benefit-stack {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

.benefit-stack article {
  text-align: center;
  color: var(--accent);
}

.twin-table {
  display: grid;
  gap: 12px;
}

.twin-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.twin-row strong {
  color: var(--primary);
}

.world-loop {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
  margin-top: 28px;
}

.world-loop article {
  padding: 28px;
  border-radius: 50%;
  aspect-ratio: 1;
  display: grid;
  place-items: center;
  text-align: center;
  border: 1px solid rgba(115, 247, 255, 0.2);
  background: radial-gradient(
    circle,
    rgba(115, 247, 255, 0.16),
    rgba(10, 18, 28, 0.95) 60%
  );
}

.service-step-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
}

.step-card {
  text-align: center;
}

.step-card span {
  display: inline-grid;
  place-items: center;
  width: 64px;
  height: 64px;
  border-radius: 50%;
  margin-bottom: 16px;
  font-weight: 800;
  color: #031017;
  background: rgba(255, 255, 255, 0.9);
}

.step-card.active span {
  background: var(--primary);
}

.reverse-grid {
  direction: rtl;
}

.reverse-grid > * {
  direction: ltr;
}

.deliverable-grid,
.deliverable-gallery {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}

.screen-card {
  min-height: 170px;
  display: grid;
  place-items: center;
  text-align: center;
  padding: 24px;
  border-radius: var(--radius-sm);
  background:
    linear-gradient(
      180deg,
      rgba(255, 255, 255, 0.98),
      rgba(210, 224, 242, 0.96)
    ),
    linear-gradient(135deg, rgba(13, 86, 164, 0.22), rgba(16, 148, 168, 0.18));
  color: #17334a;
  font-weight: 700;
  box-shadow: var(--shadow);
}

.tall-card {
  min-height: 250px;
}

.wide-card {
  grid-column: span 2;
}

.ops-grid {
  gap: 16px;
}

.about-intro p {
  margin: 0 0 18px;
  font-size: 18px;
}

.tag-cloud {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.tag-cloud span {
  color: var(--accent);
}

.contact-section {
  background: radial-gradient(
    circle at bottom right,
    rgba(115, 247, 255, 0.12),
    transparent 30%
  );
}

.site-footer {
  padding: 26px 0 40px;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  background: rgba(2, 6, 10, 0.95);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr auto;
  gap: 20px;
  align-items: center;
}

.footer-title {
  font-size: 22px;
}

.footer-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  color: var(--muted);
}

.record-link {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 12px 16px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(115, 247, 255, 0.16);
}

.record-link img {
  width: 20px;
  height: 20px;
}

[data-reveal] {
  opacity: 0;
  transform: translateY(24px);
  transition:
    opacity 0.5s ease,
    transform 0.5s ease;
}

[data-reveal].revealed {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 1100px) {
  .hero-grid,
  .section-split,
  .two-column,
  .service-detail-grid,
  .footer-grid,
  .card-grid-4,
  .card-grid-3,
  .engine-grid,
  .layer-grid,
  .contact-grid,
  .service-step-grid,
  .partner-grid,
  .ops-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .footer-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 800px) {
  .nav-toggle {
    display: inline-grid;
    place-items: center;
  }

  .site-nav {
    position: absolute;
    left: 20px;
    right: 20px;
    top: calc(100% + 12px);
    display: none;
    flex-direction: column;
    gap: 0;
    padding: 12px;
    border-radius: 18px;
    background: rgba(2, 6, 10, 0.97);
    border: 1px solid rgba(115, 247, 255, 0.12);
  }

  body.nav-open .site-nav {
    display: flex;
  }

  .site-nav a {
    width: 100%;
    padding: 14px 16px;
    border: 0;
  }

  .hero {
    padding: 88px 0 60px;
  }

  .hero-grid,
  .section-split,
  .two-column,
  .service-detail-grid,
  .card-grid-4,
  .card-grid-3,
  .engine-grid,
  .layer-grid,
  .contact-grid,
  .service-step-grid,
  .partner-grid,
  .ops-grid,
  .benefit-stack,
  .deliverable-grid,
  .deliverable-gallery,
  .world-loop,
  .process-line {
    grid-template-columns: 1fr;
  }

  .top-shift {
    margin-top: 0;
  }

  .orbit-visual,
  .cube-stage,
  .capability-wheel {
    min-height: 360px;
  }

  .cta-panel {
    padding: 52px 24px;
  }

  .cta-text {
    font-size: 18px;
  }

  .wide-card {
    grid-column: span 1;
  }
}

@media (max-width: 560px) {
  .container {
    width: min(100% - 24px, 1180px);
  }

  .brand strong {
    font-size: 20px;
  }

  .brand small {
    font-size: 10px;
  }

  .hero h1 {
    font-size: 36px;
  }

  .section {
    padding: 68px 0;
  }

  .feature-card,
  .engine-card,
  .layer-card,
  .contact-card,
  .step-card,
  .deliverable-card,
  .ops-card,
  .partner-card,
  .screen-card {
    padding: 22px;
  }

  .partner-card {
    min-height: 96px;
    font-size: 18px;
  }

  .record-link {
    width: 100%;
    justify-content: center;
  }
}

body[data-page="home"] {
  scroll-snap-type: y mandatory;
  scroll-padding-top: 80px;
}

.home-scroll {
  position: relative;
}

.home-screen {
  position: relative;
  min-height: calc(100vh - 80px);
  display: flex;
  align-items: center;
  scroll-snap-align: start;
  scroll-snap-stop: always;
  overflow: hidden;
}

.home-screen::before,
.home-screen::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.home-screen-hero {
  background:
    linear-gradient(
      90deg,
      rgba(0, 0, 0, 0.84) 0%,
      rgba(1, 6, 11, 0.72) 38%,
      rgba(4, 12, 24, 0.46) 100%
    ),
    radial-gradient(
      circle at 78% 40%,
      rgba(87, 229, 255, 0.18),
      transparent 22%
    ),
    linear-gradient(180deg, #020406 0%, #03080d 100%);
}

.home-screen-hero::before {
  background:
    radial-gradient(
      circle at 80% 46%,
      rgba(122, 225, 255, 0.32),
      transparent 9%
    ),
    radial-gradient(
      circle at 80% 46%,
      rgba(122, 225, 255, 0.18),
      transparent 18%
    ),
    radial-gradient(
      circle at 80% 46%,
      rgba(122, 225, 255, 0.1),
      transparent 30%
    );
}

.home-screen-hero::after {
  inset: 10% -10% 0 auto;
  width: 52vw;
  background:
    radial-gradient(
      circle at 75% 40%,
      rgba(141, 219, 255, 0.35),
      transparent 10%
    ),
    radial-gradient(
      circle at 75% 40%,
      rgba(141, 219, 255, 0.12),
      transparent 34%
    );
  filter: blur(4px);
}

.home-screen-tech {
  padding: 52px 0;
}

.home-screen-inner {
  width: 100%;
}

.home-tech-layout {
  align-items: center;
}

.home-product-strip {
  margin-top: 30px;
}

.screen-actions {
  margin-top: 28px;
}

.home-screen-partners {
  background:
    linear-gradient(180deg, rgba(4, 4, 6, 0.9), rgba(8, 5, 5, 0.86)),
    radial-gradient(
      circle at 15% 70%,
      rgba(207, 118, 55, 0.22),
      transparent 24%
    ),
    radial-gradient(
      circle at 85% 28%,
      rgba(255, 255, 255, 0.08),
      transparent 18%
    );
}

.home-centered-heading {
  text-align: center;
  margin-inline: auto;
}

.home-partner-grid {
  margin-top: 36px;
}

.home-screen-contact {
  background:
    linear-gradient(180deg, rgba(11, 17, 32, 0.84), rgba(6, 9, 18, 0.96)),
    radial-gradient(
      circle at 50% 45%,
      rgba(134, 160, 255, 0.16),
      transparent 28%
    );
}

.home-screen-contact::before {
  background-image:
    radial-gradient(circle, rgba(255, 255, 255, 0.72) 1px, transparent 1.2px),
    radial-gradient(circle, rgba(115, 247, 255, 0.62) 1px, transparent 1.2px),
    radial-gradient(circle, rgba(255, 255, 255, 0.26) 1px, transparent 1.2px);
  background-size:
    180px 180px,
    240px 240px,
    320px 320px;
  background-position:
    0 0,
    120px 60px,
    40px 140px;
  opacity: 0.38;
}

.home-last-screen {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 28px;
}

.home-cta-panel {
  padding: 62px 48px;
}

.home-cta-subtitle {
  margin: 16px 0 0;
  color: var(--muted);
  font-size: 18px;
  letter-spacing: 0.08em;
}

.home-footer-bar {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.home-footer-item {
  padding: 22px 24px;
  border-radius: var(--radius-sm);
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(115, 247, 255, 0.12);
  box-shadow: var(--shadow);
}

.home-footer-item strong,
.home-footer-item span {
  display: block;
}

.home-footer-item strong {
  margin-bottom: 10px;
  color: var(--white);
}

.home-footer-item span {
  color: var(--muted);
  line-height: 1.8;
}

.home-record {
  display: flex;
  justify-content: center;
}

.home-pagination {
  position: fixed;
  left: 24px;
  top: 50%;
  z-index: 120;
  display: flex;
  flex-direction: column;
  gap: 14px;
  transform: translateY(-50%);
}

.home-pagination a {
  width: 14px;
  height: 14px;
  border-radius: 50%;
  border: 2px solid rgba(255, 255, 255, 0.78);
  background: transparent;
  transition: 0.25s ease;
}

.home-pagination a:hover,
.home-pagination a.is-active {
  border-color: var(--primary);
  background: var(--primary);
  box-shadow: 0 0 18px rgba(115, 247, 255, 0.6);
}

@media (max-width: 1100px) {
  .home-footer-bar {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 800px) {
  body[data-page="home"] {
    scroll-snap-type: y proximity;
  }

  .home-pagination {
    display: none;
  }

  .home-screen {
    min-height: auto;
    padding: 88px 0 64px;
  }

  .home-cta-panel {
    padding: 44px 24px;
  }
}

/* Home page visual refinement - closer to design draft */
body[data-page="home"] {
  background: #020406;
  overflow-x: hidden;
}

body[data-page="home"]::before {
  background-image: none;
}

body[data-page="home"] .site-header {
  background: rgba(0, 0, 0, 0.72);
  border-bottom: 1px solid rgba(255, 255, 255, 0.16);
}

body[data-page="home"] .header-inner {
  min-height: 74px;
}

body[data-page="home"] .site-nav a {
  min-width: 108px;
  text-align: center;
  padding: 24px 12px;
  font-size: 14px;
}

body[data-page="home"] .site-nav a.is-active,
body[data-page="home"] .site-nav a:hover {
  background: rgba(126, 233, 240, 0.72);
  color: #ffffff;
}

body[data-page="home"] .home-scroll {
  position: relative;
}

body[data-page="home"] .home-screen {
  min-height: 100vh;
  /* padding-top: 92px; */
  padding-bottom: 46px;
  align-items: stretch;
}

body[data-page="home"] .screen-scroll-cue {
  position: absolute;
  left: 50%;
  bottom: 54px;
  width: 16px;
  height: 16px;
  margin-left: -8px;
  border: 2px solid rgba(255, 255, 255, 0.92);
  border-radius: 50%;
  opacity: 0.9;
}

body[data-page="home"] .home-pagination {
  left: 24px;
  gap: 12px;
}

body[data-page="home"] .home-pagination a {
  width: 11px;
  height: 11px;
  border: 1.5px solid rgba(255, 255, 255, 0.9);
  box-shadow: none;
}

body[data-page="home"] .home-pagination a.is-active,
body[data-page="home"] .home-pagination a:hover {
  background: #72f1ff;
  border-color: #72f1ff;
  box-shadow: 0 0 12px rgba(114, 241, 255, 0.6);
}

body[data-page="home"] .home-hero-layout,
body[data-page="home"] .home-tech-layout-v2,
body[data-page="home"] .home-partner-layout-v2,
body[data-page="home"] .home-final-layout {
  position: relative;
  z-index: 1;
  display: grid;
  width: 100%;
  min-height: calc(100vh - 148px);
}

body[data-page="home"] .home-screen-hero {
  background:
    linear-gradient(
      90deg,
      rgba(0, 0, 0, 0.95) 0%,
      rgba(0, 0, 0, 0.95) 31%,
      rgba(0, 0, 0, 0.66) 31.1%,
      rgba(2, 8, 14, 0.34) 100%
    ),
    radial-gradient(
      circle at 78% 46%,
      rgba(89, 238, 255, 0.2),
      transparent 16%
    ),
    linear-gradient(180deg, #020406 0%, #020609 100%);
}

body[data-page="home"] .home-screen-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle, rgba(255, 255, 255, 0.85) 1px, transparent 1.4px) 0
      0 / 180px 180px,
    radial-gradient(circle, rgba(109, 239, 255, 0.75) 1px, transparent 1.2px)
      40px 70px / 240px 240px,
    radial-gradient(circle, rgba(255, 255, 255, 0.18) 1px, transparent 1.2px)
      20px 30px / 120px 120px;
  opacity: 0.22;
}

body[data-page="home"] .home-screen-hero::after {
  content: "";
  position: absolute;
  inset: 0 0 0 31%;
  background:
    linear-gradient(
        130deg,
        transparent 0%,
        rgba(58, 206, 236, 0.22) 35%,
        transparent 52%
      )
      20% 10% / 88% 88% no-repeat,
    linear-gradient(
        130deg,
        transparent 0%,
        rgba(58, 206, 236, 0.1) 36%,
        transparent 54%
      )
      14% 44% / 94% 94% no-repeat;
  opacity: 0.65;
}

body[data-page="home"] .home-hero-layout {
  grid-template-columns: minmax(360px, 0.88fr) minmax(540px, 1.12fr);
  align-items: center;
}

body[data-page="home"] .home-hero-copy {
  max-width: 520px;
  padding-left: 110px;
}

body[data-page="home"] .home-brand-lockup {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 30px;
}

body[data-page="home"] .home-brand-icon {
  width: 58px;
  height: 58px;
  border-radius: 50%;
  background: conic-gradient(
    from 210deg,
    #13d7b5 0deg,
    #13d7b5 110deg,
    #1f8cff 110deg,
    #1f8cff 240deg,
    #13d7b5 240deg,
    #13d7b5 360deg
  );
  box-shadow: 0 0 20px rgba(71, 194, 255, 0.28);
}

body[data-page="home"] .home-brand-lockup strong,
body[data-page="home"] .home-brand-lockup span {
  display: block;
}

body[data-page="home"] .home-brand-lockup strong {
  font-size: 38px;
  line-height: 1.05;
}

body[data-page="home"] .home-brand-lockup span {
  margin-top: 8px;
  color: rgba(255, 255, 255, 0.72);
  letter-spacing: 0.12em;
  font-size: 14px;
}

body[data-page="home"] .home-hero-copy h1 {
  margin: 0;
  font-size: clamp(48px, 5.4vw, 72px);
  font-weight: 400;
  line-height: 1.18;
}

body[data-page="home"] .home-outline-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 124px;
  height: 42px;
  margin-top: 44px;
  border: 1px solid rgba(255, 255, 255, 0.88);
  border-radius: 999px;
  color: #ffffff;
  transition: 0.25s ease;
}

body[data-page="home"] .home-outline-button:hover,
body[data-page="home"] .home-outline-button.primary-outline {
  border-color: #79edf8;
  color: #79edf8;
  box-shadow: 0 0 18px rgba(121, 237, 248, 0.28);
}

body[data-page="home"] .primary-outline {
  background: rgba(93, 212, 227, 0.08);
}

body[data-page="home"] .home-hero-stage {
  position: relative;
  min-height: 640px;
}

body[data-page="home"] .hero-orbit,
body[data-page="home"] .hero-sphere,
body[data-page="home"] .sphere-ring,
body[data-page="home"] .hero-glow {
  position: absolute;
}

body[data-page="home"] .hero-orbit {
  border: 1px solid rgba(114, 241, 255, 0.22);
  border-radius: 50%;
  box-shadow:
    inset 0 0 18px rgba(95, 220, 248, 0.08),
    0 0 18px rgba(70, 231, 255, 0.08);
}

body[data-page="home"] .hero-orbit-1 {
  width: 720px;
  height: 260px;
  right: 10px;
  bottom: 40px;
  transform: rotate(-18deg);
}

body[data-page="home"] .hero-orbit-2 {
  width: 630px;
  height: 220px;
  right: 90px;
  bottom: 120px;
  transform: rotate(-5deg);
}

body[data-page="home"] .hero-orbit-3 {
  width: 500px;
  height: 170px;
  right: 150px;
  bottom: 210px;
  transform: rotate(17deg);
}

body[data-page="home"] .hero-orbit-4 {
  width: 780px;
  height: 310px;
  right: -30px;
  bottom: 0;
  transform: rotate(-9deg);
}

body[data-page="home"] .hero-glow {
  right: 120px;
  top: 100px;
  width: 440px;
  height: 440px;
  border-radius: 50%;
  background: radial-gradient(
    circle,
    rgba(107, 244, 255, 0.22) 0%,
    rgba(83, 214, 236, 0.12) 28%,
    transparent 64%
  );
  filter: blur(4px);
}

body[data-page="home"] .hero-sphere {
  top: 36px;
  right: 112px;
  width: 360px;
  height: 360px;
  border-radius: 50%;
  background:
    radial-gradient(
      circle at 50% 48%,
      rgba(168, 246, 255, 0.1),
      rgba(10, 28, 39, 0.05) 54%,
      rgba(9, 26, 37, 0.22) 68%,
      transparent 76%
    ),
    radial-gradient(
      circle at 50% 50%,
      rgba(84, 218, 236, 0.12),
      transparent 74%
    );
  box-shadow:
    inset 0 0 42px rgba(255, 255, 255, 0.08),
    0 0 46px rgba(109, 239, 255, 0.14);
  border: 1px solid rgba(145, 247, 255, 0.36);
}

body[data-page="home"] .sphere-ring {
  inset: 50%;
  border-radius: 50%;
  border: 1px solid rgba(157, 247, 255, 0.56);
  transform: translate(-50%, -50%);
}

body[data-page="home"] .sphere-ring-1 {
  width: 308px;
  height: 106px;
}

body[data-page="home"] .sphere-ring-2 {
  width: 308px;
  height: 106px;
  transform: translate(-50%, -50%) rotate(24deg);
}

body[data-page="home"] .sphere-ring-3 {
  width: 308px;
  height: 106px;
  transform: translate(-50%, -50%) rotate(-24deg);
}

body[data-page="home"] .sphere-ring-4 {
  width: 160px;
  height: 314px;
}

body[data-page="home"] .sphere-ring-5 {
  width: 210px;
  height: 314px;
  transform: translate(-50%, -50%) rotate(28deg);
}

body[data-page="home"] .sphere-core {
  position: absolute;
  left: 50%;
  top: 50%;
  width: 42px;
  height: 42px;
  margin: -21px 0 0 -21px;
  border-radius: 50%;
  background: radial-gradient(
    circle,
    rgba(148, 247, 255, 0.95) 0%,
    rgba(96, 223, 255, 0.4) 45%,
    transparent 72%
  );
  box-shadow: 0 0 30px rgba(118, 240, 255, 0.85);
}

body[data-page="home"] .home-screen-tech {
  background:
    linear-gradient(180deg, rgba(0, 0, 0, 0.98), rgba(2, 9, 12, 0.98)),
    radial-gradient(
      circle at 35% 42%,
      rgba(80, 233, 247, 0.12),
      transparent 28%
    );
}

body[data-page="home"] .home-screen-tech::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(85, 192, 198, 0.06) 1px, transparent 1px),
    linear-gradient(90deg, rgba(85, 192, 198, 0.06) 1px, transparent 1px);
  background-size: 80px 80px;
  opacity: 0.35;
}

body[data-page="home"] .home-tech-layout-v2 {
  grid-template-columns: minmax(560px, 0.95fr) minmax(320px, 0.75fr);
  align-items: center;
}

body[data-page="home"] .home-tech-visual {
  position: relative;
  min-height: 620px;
}

body[data-page="home"] .home-tech-arc {
  position: absolute;
  left: 58px;
  top: 42px;
  width: 420px;
  height: 92px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 34px;
  border-radius: 50% 50% 0 0 / 100% 100% 0 0;
  background: linear-gradient(
    180deg,
    rgba(132, 245, 250, 0.28),
    rgba(49, 86, 98, 0.1)
  );
  color: #ffffff;
  font-weight: 700;
}

body[data-page="home"] .home-capability-wheel {
  position: absolute;
  left: 0;
  top: 120px;
  width: 560px;
  height: 420px;
  border-radius: 50%;
  background: radial-gradient(
    circle at 50% 50%,
    rgba(109, 240, 255, 0.28),
    rgba(16, 42, 49, 0.42) 44%,
    rgba(8, 20, 26, 0.15) 68%,
    transparent 72%
  );
  border: 1px solid rgba(125, 241, 255, 0.18);
  box-shadow: inset 0 0 42px rgba(88, 236, 248, 0.08);
}

body[data-page="home"] .home-capability-wheel::before,
body[data-page="home"] .home-capability-wheel::after {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  border-radius: 50%;
  border: 1px solid rgba(125, 241, 255, 0.18);
}

body[data-page="home"] .home-capability-wheel::before {
  width: 460px;
  height: 260px;
}

body[data-page="home"] .home-capability-wheel::after {
  width: 280px;
  height: 160px;
}

body[data-page="home"] .home-capability-wheel .wheel-center {
  position: absolute;
  left: 50%;
  top: 56%;
  width: 260px;
  height: 130px;
  transform: translate(-50%, -50%);
  border-radius: 999px;
  background: linear-gradient(
    180deg,
    rgba(116, 244, 255, 0.22),
    rgba(14, 28, 36, 0.9)
  );
  display: grid;
  place-items: center;
  text-align: center;
  border: 1px solid rgba(114, 241, 255, 0.26);
}

body[data-page="home"] .home-capability-wheel .wheel-center strong {
  font-size: 26px;
  line-height: 1;
}

body[data-page="home"] .home-capability-wheel .wheel-center span {
  margin-top: -10px;
  color: #ffffff;
  font-size: 24px;
}

body[data-page="home"] .platform-tag,
body[data-page="home"] .platform-node {
  position: absolute;
  color: #72f1ff;
  font-style: normal;
}

body[data-page="home"] .platform-tag {
  width: 64px;
  height: 64px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  border: 1px solid rgba(114, 241, 255, 0.6);
  background: rgba(0, 0, 0, 0.5);
  text-align: center;
  line-height: 1.15;
  font-size: 14px;
}

body[data-page="home"] .tag-1 {
  left: 34px;
  top: 184px;
}
body[data-page="home"] .tag-2 {
  left: 98px;
  top: 108px;
}
body[data-page="home"] .tag-3 {
  left: 176px;
  top: 66px;
}
body[data-page="home"] .tag-4 {
  left: 266px;
  top: 58px;
}
body[data-page="home"] .tag-5 {
  left: 356px;
  top: 72px;
}
body[data-page="home"] .tag-6 {
  left: 434px;
  top: 118px;
}
body[data-page="home"] .tag-7 {
  left: 492px;
  top: 194px;
}

body[data-page="home"] .platform-node {
  font-size: 26px;
  text-shadow: 0 0 16px rgba(114, 241, 255, 0.22);
}

body[data-page="home"] .node-1 {
  left: 48px;
  bottom: 110px;
}
body[data-page="home"] .node-2 {
  right: 38px;
  bottom: 110px;
}
body[data-page="home"] .node-3 {
  left: 84px;
  bottom: 24px;
}
body[data-page="home"] .node-4 {
  right: 10px;
  bottom: 24px;
}

body[data-page="home"] .home-tech-copy {
  max-width: 390px;
  justify-self: end;
}

body[data-page="home"] .home-tech-copy h2 {
  margin: 0;
  font-size: clamp(58px, 6vw, 80px);
  color: #63dceb;
  line-height: 1;
}

body[data-page="home"] .home-tech-subtitle {
  margin: 10px 0 28px;
  font-size: 30px;
  font-weight: 700;
}

body[data-page="home"] .home-tech-bar {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 330px;
  height: 44px;
  background: rgba(109, 223, 232, 0.84);
  color: #ffffff;
  font-size: 26px;
  font-weight: 700;
}

body[data-page="home"] .home-tech-desc {
  margin-top: 30px;
  font-size: 22px;
  line-height: 2;
  text-align: center;
}

body[data-page="home"] .home-screen-partners {
  background:
    linear-gradient(180deg, rgba(0, 0, 0, 0.94), rgba(8, 6, 6, 0.92)),
    radial-gradient(
      circle at 18% 72%,
      rgba(214, 121, 63, 0.22),
      transparent 22%
    ),
    radial-gradient(
      circle at 84% 50%,
      rgba(255, 255, 255, 0.12),
      transparent 20%
    );
}

body[data-page="home"] .home-screen-partners::before {
  content: "";
  position: absolute;
  left: -8%;
  right: -8%;
  bottom: 12%;
  height: 34%;
  background:
    radial-gradient(
      circle at 30% 50%,
      rgba(228, 135, 81, 0.32),
      transparent 28%
    ),
    radial-gradient(
      circle at 72% 50%,
      rgba(255, 255, 255, 0.18),
      transparent 22%
    );
  filter: blur(20px);
  opacity: 0.5;
}

body[data-page="home"] .home-partner-layout-v2 {
  align-content: center;
}

body[data-page="home"] .home-partner-header {
  margin-left: 140px;
}

body[data-page="home"] .home-partner-header h2 {
  margin: 0;
  color: #61dbe9;
  font-size: clamp(56px, 5.6vw, 78px);
  line-height: 1;
}

body[data-page="home"] .home-partner-header p {
  margin: 12px 0 0;
  font-size: 28px;
  font-weight: 700;
}

body[data-page="home"] .home-partner-board {
  width: min(980px, calc(100% - 160px));
  margin: 40px auto 0;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 22px;
}

body[data-page="home"] .home-logo-card {
  min-height: 138px;
  display: grid;
  place-items: center;
  border-radius: 2px;
  background: rgba(255, 255, 255, 0.96);
  color: #173149;
  font-size: 24px;
  font-weight: 700;
  text-align: center;
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.22);
}

body[data-page="home"] .home-screen-contact {
  background:
    linear-gradient(180deg, rgba(6, 10, 18, 0.88), rgba(5, 8, 15, 0.96)),
    radial-gradient(
      circle at 50% 80%,
      rgba(144, 177, 255, 0.1),
      transparent 30%
    );
}

body[data-page="home"] .home-screen-contact::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(circle, rgba(255, 255, 255, 0.92) 1px, transparent 1.3px),
    radial-gradient(circle, rgba(113, 242, 255, 0.78) 1px, transparent 1.3px),
    radial-gradient(circle, rgba(255, 255, 255, 0.26) 1px, transparent 1.1px);
  background-size:
    180px 180px,
    240px 240px,
    320px 320px;
  background-position:
    0 0,
    120px 60px,
    30px 120px;
  opacity: 0.42;
}

body[data-page="home"] .home-final-layout {
  align-items: center;
  justify-items: center;
}

body[data-page="home"] .home-final-copy {
  text-align: center;
  max-width: 860px;
}

body[data-page="home"] .home-final-copy h2 {
  margin: 0;
  font-size: clamp(54px, 6vw, 88px);
  font-weight: 700;
  line-height: 1.15;
}

body[data-page="home"] .home-final-copy h2 span:first-child,
body[data-page="home"] .home-final-copy h2 span:last-child {
  color: #7cf3ff;
}

body[data-page="home"] .home-final-copy h2 span:nth-child(2) {
  color: #ffffff;
}

body[data-page="home"] .home-final-desc {
  margin: 18px 0 0;
  font-size: 26px;
  color: #ffffff;
}

body[data-page="home"] .home-final-line {
  width: min(860px, 84vw);
  height: 1px;
  margin: 38px auto 26px;
  background: rgba(120, 236, 247, 0.35);
}

body[data-page="home"] .home-final-cn {
  margin: 0;
  font-size: 52px;
  color: rgba(255, 255, 255, 0.84);
}

body[data-page="home"] .home-final-en {
  margin: 14px 0 0;
  color: rgba(255, 255, 255, 0.6);
  font-size: 24px;
  letter-spacing: 0.08em;
}

body[data-page="home"] .home-contact-strip {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 34px;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 28px;
  align-items: center;
  padding: 0 90px;
}

body[data-page="home"] .home-contact-item {
  text-align: center;
}

body[data-page="home"] .home-contact-item strong,
body[data-page="home"] .home-contact-item span {
  display: block;
}

body[data-page="home"] .home-contact-item strong {
  margin-bottom: 10px;
  font-size: 28px;
}

body[data-page="home"] .home-contact-item span {
  color: rgba(255, 255, 255, 0.74);
  font-size: 20px;
}

body[data-page="home"] .home-record-bar {
  position: absolute;
  left: 50%;
  bottom: 6px;
  z-index: 1;
  transform: translateX(-50%);
}

body[data-page="home"] .home-record-bar .record-link {
  background: transparent;
  border-color: transparent;
  color: rgba(255, 255, 255, 0.7);
  padding: 8px 10px;
}

body[data-page="home"] .home-record-bar .record-link img {
  width: 16px;
  height: 16px;
}

@media (max-width: 1180px) {
  body[data-page="home"] .home-hero-layout,
  body[data-page="home"] .home-tech-layout-v2 {
    grid-template-columns: 1fr;
  }

  body[data-page="home"] .home-hero-copy,
  body[data-page="home"] .home-tech-copy,
  body[data-page="home"] .home-partner-header {
    padding-left: 0;
    margin-left: 0;
    justify-self: center;
    text-align: center;
  }

  body[data-page="home"] .home-hero-stage,
  body[data-page="home"] .home-tech-visual {
    min-height: 540px;
  }

  body[data-page="home"] .home-capability-wheel {
    left: 50%;
    transform: translateX(-50%);
  }

  body[data-page="home"] .home-tech-arc {
    left: 50%;
    transform: translateX(-50%);
  }

  body[data-page="home"] .home-partner-board {
    width: 100%;
  }
}

@media (max-width: 900px) {
  body[data-page="home"] .home-screen {
    min-height: auto;
    padding-top: 96px;
    padding-bottom: 88px;
  }

  body[data-page="home"] .screen-scroll-cue,
  body[data-page="home"] .home-pagination {
    display: none;
  }

  body[data-page="home"] .home-hero-stage {
    min-height: 460px;
  }

  body[data-page="home"] .hero-sphere {
    right: 50%;
    top: 30px;
    transform: translateX(50%);
    width: 280px;
    height: 280px;
  }

  body[data-page="home"] .hero-orbit-1 {
    width: 480px;
    height: 180px;
    right: 50%;
    bottom: 50px;
    transform: translateX(50%) rotate(-18deg);
  }

  body[data-page="home"] .hero-orbit-2 {
    width: 440px;
    height: 156px;
    right: 50%;
    bottom: 106px;
    transform: translateX(50%) rotate(-5deg);
  }

  body[data-page="home"] .hero-orbit-3 {
    width: 350px;
    height: 124px;
    right: 50%;
    bottom: 158px;
    transform: translateX(50%) rotate(17deg);
  }

  body[data-page="home"] .hero-orbit-4 {
    width: 520px;
    height: 220px;
    right: 50%;
    bottom: 20px;
    transform: translateX(50%) rotate(-9deg);
  }

  body[data-page="home"] .hero-glow {
    right: 50%;
    transform: translateX(50%);
    width: 320px;
    height: 320px;
  }

  body[data-page="home"] .home-tech-arc {
    width: min(420px, calc(100% - 20px));
    font-size: 14px;
    padding: 0 22px;
  }

  body[data-page="home"] .home-capability-wheel {
    width: min(560px, calc(100% - 10px));
    height: 360px;
  }

  body[data-page="home"] .home-tech-copy h2,
  body[data-page="home"] .home-partner-header h2 {
    font-size: 48px;
  }

  body[data-page="home"] .home-tech-bar {
    min-width: 280px;
    font-size: 20px;
  }

  body[data-page="home"] .home-tech-desc,
  body[data-page="home"] .home-final-desc,
  body[data-page="home"] .home-contact-item span {
    font-size: 18px;
  }

  body[data-page="home"] .home-partner-board,
  body[data-page="home"] .home-contact-strip {
    grid-template-columns: 1fr;
  }

  body[data-page="home"] .home-contact-strip {
    position: static;
    padding: 0 20px;
    margin-top: 42px;
  }

  body[data-page="home"] .home-record-bar {
    position: static;
    transform: none;
    margin-top: 18px;
    display: flex;
    justify-content: center;
  }
}

@media (max-width: 640px) {
  body[data-page="home"] .site-nav a {
    min-width: 0;
    padding: 14px 16px;
  }

  body[data-page="home"] .home-hero-copy h1,
  body[data-page="home"] .home-final-copy h2 {
    font-size: 34px;
  }

  body[data-page="home"] .home-brand-lockup strong {
    font-size: 28px;
  }

  body[data-page="home"] .home-brand-lockup span,
  body[data-page="home"] .home-final-en {
    font-size: 14px;
  }

  body[data-page="home"] .home-tech-copy h2,
  body[data-page="home"] .home-partner-header h2 {
    font-size: 36px;
  }

  body[data-page="home"] .home-tech-subtitle,
  body[data-page="home"] .home-contact-item strong,
  body[data-page="home"] .home-final-cn {
    font-size: 24px;
  }

  body[data-page="home"] .home-logo-card {
    min-height: 96px;
    font-size: 18px;
    padding: 18px;
  }
}

/* Home page refinement pass 2 */
body[data-page="home"] .home-screen-divider {
  position: absolute;
  left: 0;
  right: 0;
  top: 74px;
  height: 1px;
  background: rgba(255, 255, 255, 0.14);
  z-index: 2;
}

body[data-page="home"] .home-hero-title-wrap {
  position: relative;
}

body[data-page="home"] .home-ghost-word {
  position: absolute;
  left: 0;
  top: 78px;
  white-space: nowrap;
  font-size: clamp(86px, 8vw, 132px);
  letter-spacing: 0.01em;
  color: rgba(255, 255, 255, 0.12);
  font-weight: 700;
  pointer-events: none;
}

body[data-page="home"] .home-brand-icon {
  position: relative;
  overflow: hidden;
}

body[data-page="home"] .home-brand-icon::before {
  content: "";
  position: absolute;
  inset: 11px;
  border-radius: 50%;
  background: #03080d;
}

body[data-page="home"] .home-brand-icon::after {
  content: "";
  position: absolute;
  left: 14px;
  top: 20px;
  width: 32px;
  height: 18px;
  border-radius: 50px;
  background: linear-gradient(90deg, #16cdbd, #1c89ff);
  transform: rotate(-22deg);
  box-shadow: 0 0 12px rgba(90, 217, 255, 0.6);
}

body[data-page="home"] .hero-orbit-5 {
  width: 560px;
  height: 188px;
  right: 70px;
  bottom: 160px;
  transform: rotate(34deg);
  opacity: 0.4;
}

body[data-page="home"] .hero-particle {
  position: absolute;
  border-radius: 50%;
  background: rgba(116, 243, 255, 0.9);
  box-shadow: 0 0 12px rgba(116, 243, 255, 0.9);
}

body[data-page="home"] .hero-particle-1 {
  right: 440px;
  top: 160px;
  width: 8px;
  height: 8px;
}

body[data-page="home"] .hero-particle-2 {
  right: 200px;
  top: 250px;
  width: 10px;
  height: 10px;
}

body[data-page="home"] .hero-particle-3 {
  right: 540px;
  top: 370px;
  width: 6px;
  height: 6px;
}

body[data-page="home"] .hero-particle-4 {
  right: 310px;
  top: 470px;
  width: 7px;
  height: 7px;
}

body[data-page="home"] .sphere-ring-6 {
  width: 250px;
  height: 314px;
  transform: translate(-50%, -50%) rotate(-28deg);
}

body[data-page="home"] .home-tech-copy {
  position: relative;
}

body[data-page="home"] .home-tech-bg-word {
  position: absolute;
  left: -8px;
  top: -34px;
  font-size: clamp(84px, 8vw, 126px);
  color: rgba(255, 255, 255, 0.08);
  font-weight: 700;
  letter-spacing: 0.01em;
  pointer-events: none;
}

body[data-page="home"] .home-tech-beam {
  position: absolute;
  display: block;
  height: 34px;
  background: linear-gradient(
    90deg,
    rgba(109, 240, 255, 0),
    rgba(109, 240, 255, 0.28),
    rgba(109, 240, 255, 0)
  );
  filter: blur(1px);
}

body[data-page="home"] .beam-1 {
  left: 44px;
  top: 332px;
  width: 480px;
  transform: rotate(-26deg);
}

body[data-page="home"] .beam-2 {
  left: 80px;
  top: 330px;
  width: 480px;
  transform: rotate(26deg);
}

body[data-page="home"] .home-logo-card {
  position: relative;
  overflow: hidden;
}

body[data-page="home"] .home-logo-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(104, 193, 233, 0.12),
    transparent 44%
  );
}

body[data-page="home"] .home-logo-card span {
  position: relative;
  z-index: 1;
}

body[data-page="home"] .home-final-copy {
  margin-top: -24px;
}

body[data-page="home"] .home-contact-item {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
}

body[data-page="home"] .home-contact-item div {
  text-align: left;
}

body[data-page="home"] .home-contact-icon {
  display: inline-grid;
  place-items: center;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  color: #ffffff;
  border: 1px solid rgba(255, 255, 255, 0.34);
  font-size: 20px;
  flex: 0 0 42px;
}

body[data-page="home"] .home-record-bar {
  bottom: 0;
}

@media (max-width: 1180px) {
  body[data-page="home"] .home-ghost-word,
  body[data-page="home"] .home-tech-bg-word {
    position: static;
    display: block;
    margin-bottom: 16px;
    font-size: 44px;
    color: rgba(255, 255, 255, 0.14);
  }

  body[data-page="home"] .home-final-copy {
    margin-top: 0;
  }
}

@media (max-width: 900px) {
  body[data-page="home"] .home-screen-divider {
    top: 80px;
  }

  body[data-page="home"] .home-contact-item {
    justify-content: flex-start;
  }

  body[data-page="home"] .home-contact-item div {
    text-align: left;
  }

  body[data-page="home"] .home-tech-beam,
  body[data-page="home"] .hero-particle,
  body[data-page="home"] .hero-orbit-5 {
    display: none;
  }
}

@media (max-width: 640px) {
  body[data-page="home"] .home-ghost-word,
  body[data-page="home"] .home-tech-bg-word {
    font-size: 28px;
  }

  body[data-page="home"] .home-contact-item {
    gap: 12px;
  }

  body[data-page="home"] .home-contact-icon {
    width: 34px;
    height: 34px;
    font-size: 16px;
    flex-basis: 34px;
  }
}

/* Home centering and partner logo pass */
body[data-page="home"] .home-hero-layout,
body[data-page="home"] .home-tech-layout-v2,
body[data-page="home"] .home-partner-layout-v2,
body[data-page="home"] .home-final-layout {
  align-items: center;
  justify-items: center;
}

body[data-page="home"] .home-hero-copy,
body[data-page="home"] .home-tech-copy,
body[data-page="home"] .home-partner-header,
body[data-page="home"] .home-final-copy {
  align-self: center;
}

body[data-page="home"] .home-hero-copy {
  justify-self: center;
  width: 100%;
  max-width: 620px;
  padding-left: 40px;
}

body[data-page="home"] .home-hero-title-wrap,
body[data-page="home"] .home-tech-copy,
body[data-page="home"] .home-partner-header {
  text-align: center;
}

body[data-page="home"] .home-brand-lockup {
  justify-content: center;
}

body[data-page="home"] .home-tech-copy {
  max-width: 470px;
  justify-self: center;
}

body[data-page="home"] .home-tech-desc {
  max-width: 420px;
  margin-left: auto;
  margin-right: auto;
}

body[data-page="home"] .home-partner-layout-v2 {
  justify-content: center;
}

body[data-page="home"] .home-partner-header {
  width: 100%;
  margin-left: 0;
}

body[data-page="home"] .home-partner-board {
  width: min(1040px, calc(100% - 40px));
  margin-top: 48px;
}

body[data-page="home"] .home-logo-card {
  min-height: 146px;
  padding: 22px;
}

body[data-page="home"] .home-logo-card img {
  display: block;
  width: 100%;
  height: 88px;
  object-fit: contain;
  object-position: center;
}

body[data-page="home"] .logo-card-stategrid {
  overflow: hidden;
}

body[data-page="home"] .logo-card-stategrid img {
  height: 96px;
  object-fit: cover;
  object-position: center top;
}

body[data-page="home"] .home-final-layout {
  align-content: center;
}

body[data-page="home"] .home-contact-strip {
  align-items: center;
}

body[data-page="home"] .home-contact-item {
  justify-content: center;
}

@media (max-width: 1180px) {
  body[data-page="home"] .home-hero-copy {
    padding-left: 0;
  }
}

@media (max-width: 900px) {
  body[data-page="home"] .home-logo-card img,
  body[data-page="home"] .logo-card-stategrid img {
    height: 72px;
  }

  body[data-page="home"] .home-partner-board {
    width: 100%;
  }
}

/* Partner logo positioning */
body[data-page="home"] .home-logo-card {
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

body[data-page="home"] .home-logo-card img {
  display: block;
  max-width: none;
}

body[data-page="home"] .logo-card-yuntianhua img {
  width: 108%;
  transform: translate(-1%, -2px);
}

body[data-page="home"] .logo-card-yunmei img {
  width: 108%;
  transform: translate(-1%, -6px);
}

body[data-page="home"] .logo-card-csg img {
  width: 110%;
  transform: translate(-2%, -4px);
}

body[data-page="home"] .logo-card-fucai img {
  width: 108%;
  transform: translate(0, -34px);
}

body[data-page="home"] .logo-card-tailun img {
  width: 110%;
  transform: translate(-2%, -30px);
}

body[data-page="home"] .logo-card-stategrid img {
  width: 112%;
  transform: translate(-4%, -22px);
}

@media (max-width: 900px) {
  body[data-page="home"] .logo-card-yuntianhua img,
  body[data-page="home"] .logo-card-yunmei img,
  body[data-page="home"] .logo-card-csg img,
  body[data-page="home"] .logo-card-fucai img,
  body[data-page="home"] .logo-card-tailun img,
  body[data-page="home"] .logo-card-stategrid img {
    width: 106%;
  }
}

/* Home spacing normalization */
body[data-page="home"] {
  --home-frame-width: min(1280px, calc(100% - 160px));
}

body[data-page="home"] .home-screen-divider {
  display: none;
}

body[data-page="home"] .home-hero-layout,
body[data-page="home"] .home-tech-layout-v2,
body[data-page="home"] .home-partner-layout-v2,
body[data-page="home"] .home-final-layout,
body[data-page="home"] .home-contact-strip {
  width: var(--home-frame-width);
  max-width: var(--home-frame-width);
  margin-left: auto;
  margin-right: auto;
}

body[data-page="home"] .home-hero-layout,
body[data-page="home"] .home-tech-layout-v2 {
  column-gap: clamp(48px, 5vw, 88px);
}

body[data-page="home"] .home-hero-layout {
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
}

body[data-page="home"] .home-tech-layout-v2 {
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
}

body[data-page="home"] .home-hero-copy {
  max-width: 560px;
  padding-left: 0;
  margin-left: auto;
  margin-right: auto;
}

body[data-page="home"] .home-tech-copy {
  max-width: 440px;
  margin-left: auto;
  margin-right: auto;
}

body[data-page="home"] .home-hero-stage,
body[data-page="home"] .home-tech-visual {
  width: 100%;
}

body[data-page="home"] .home-partner-layout-v2 {
  align-content: center;
}

body[data-page="home"] .home-partner-header,
body[data-page="home"] .home-partner-board {
  width: 100%;
}

body[data-page="home"] .home-partner-board {
  margin-top: 44px;
}

body[data-page="home"] .home-final-layout {
  width: var(--home-frame-width);
}

body[data-page="home"] .home-final-copy {
  width: min(900px, 100%);
  margin-left: auto;
  margin-right: auto;
}

body[data-page="home"] .home-contact-strip {
  padding-left: 0;
  padding-right: 0;
}

@media (max-width: 1180px) {
  body[data-page="home"] {
    --home-frame-width: min(1120px, calc(100% - 72px));
  }
}

@media (max-width: 900px) {
  body[data-page="home"] {
    --home-frame-width: min(100%, calc(100% - 32px));
  }

  body[data-page="home"] .home-hero-layout,
  body[data-page="home"] .home-tech-layout-v2 {
    grid-template-columns: 1fr;
    row-gap: 30px;
  }

  body[data-page="home"] .home-partner-board,
  body[data-page="home"] .home-contact-strip {
    width: 100%;
  }
}

/* Hero background image - digital earth style */
body[data-page="home"] .home-screen-hero {
  background:
    linear-gradient(
      90deg,
      rgba(0, 0, 0, 0.96) 0%,
      rgba(0, 0, 0, 0.96) 27%,
      rgba(0, 0, 0, 0.74) 27.1%,
      rgba(2, 8, 14, 0.18) 100%
    ),
    url("./assets/images/hero-digital-earth.svg") center center / cover
      no-repeat,
    #020406;
}

body[data-page="home"] .home-screen-hero::before {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.04), transparent 14%),
    radial-gradient(circle, rgba(255, 255, 255, 0.75) 1px, transparent 1.3px) 0
      0 / 220px 220px,
    radial-gradient(circle, rgba(109, 239, 255, 0.56) 1px, transparent 1.2px)
      40px 70px / 280px 280px;
  opacity: 0.16;
}

body[data-page="home"] .home-screen-hero::after {
  display: none;
}

body[data-page="home"] .home-hero-stage {
  min-height: 620px;
}

body[data-page="home"] .hero-orbit,
body[data-page="home"] .hero-glow,
body[data-page="home"] .hero-particle,
body[data-page="home"] .hero-sphere {
  opacity: 0.42;
}

body[data-page="home"] .hero-particle {
  box-shadow: 0 0 10px rgba(116, 243, 255, 0.72);
}

@media (max-width: 900px) {
  body[data-page="home"] .home-screen-hero {
    background:
      linear-gradient(180deg, rgba(0, 0, 0, 0.82), rgba(0, 0, 0, 0.72)),
      url("./assets/images/hero-digital-earth.svg") 66% center / cover no-repeat,
      #020406;
  }
}

/* Hero foreground sphere visibility fix */
body[data-page="home"] .home-hero-stage {
  position: relative;
  z-index: 3;
  min-height: 660px;
}

body[data-page="home"] .hero-orbit,
body[data-page="home"] .hero-glow,
body[data-page="home"] .hero-particle,
body[data-page="home"] .hero-sphere {
  opacity: 0.92;
}

body[data-page="home"] .hero-glow {
  right: 92px;
  top: 82px;
  width: 500px;
  height: 500px;
  background: radial-gradient(
    circle,
    rgba(130, 247, 255, 0.28) 0%,
    rgba(70, 213, 235, 0.16) 34%,
    transparent 70%
  );
  filter: blur(10px);
}

body[data-page="home"] .hero-sphere {
  top: 34px;
  right: 92px;
  width: 388px;
  height: 388px;
  border: 1px solid rgba(181, 252, 255, 0.74);
  box-shadow:
    inset 0 0 56px rgba(255, 255, 255, 0.12),
    0 0 60px rgba(107, 244, 255, 0.24),
    0 0 140px rgba(80, 220, 240, 0.16);
  background:
    radial-gradient(
      circle at 50% 48%,
      rgba(220, 253, 255, 0.16),
      rgba(20, 58, 77, 0.08) 48%,
      rgba(9, 23, 36, 0.18) 72%,
      transparent 80%
    ),
    radial-gradient(
      circle at 52% 46%,
      rgba(119, 242, 255, 0.18),
      transparent 74%
    );
}

body[data-page="home"] .sphere-ring {
  border-color: rgba(185, 251, 255, 0.88);
  box-shadow: 0 0 18px rgba(148, 245, 255, 0.16);
}

body[data-page="home"] .sphere-ring-1,
body[data-page="home"] .sphere-ring-2,
body[data-page="home"] .sphere-ring-3 {
  width: 334px;
  height: 116px;
}

body[data-page="home"] .sphere-ring-4 {
  width: 172px;
  height: 338px;
}

body[data-page="home"] .sphere-ring-5 {
  width: 228px;
  height: 338px;
}

body[data-page="home"] .sphere-ring-6 {
  width: 268px;
  height: 338px;
}

body[data-page="home"] .sphere-core {
  width: 56px;
  height: 56px;
  margin: -28px 0 0 -28px;
  background: radial-gradient(
    circle,
    rgba(212, 254, 255, 1) 0%,
    rgba(140, 247, 255, 0.62) 42%,
    transparent 76%
  );
  box-shadow: 0 0 38px rgba(149, 246, 255, 0.95);
}

body[data-page="home"] .hero-orbit {
  border-color: rgba(127, 244, 255, 0.34);
}

body[data-page="home"] .hero-orbit-1 {
  width: 760px;
  height: 278px;
  right: -8px;
  bottom: 26px;
}

body[data-page="home"] .hero-orbit-2 {
  width: 664px;
  height: 236px;
  right: 72px;
  bottom: 112px;
}

body[data-page="home"] .hero-orbit-3 {
  width: 530px;
  height: 182px;
  right: 134px;
  bottom: 206px;
}

body[data-page="home"] .hero-orbit-4 {
  width: 812px;
  height: 324px;
  right: -46px;
  bottom: -2px;
}

body[data-page="home"] .hero-orbit-5 {
  width: 604px;
  height: 206px;
  right: 56px;
  bottom: 154px;
}

body[data-page="home"] .hero-particle-1 {
  right: 456px;
  top: 146px;
}

body[data-page="home"] .hero-particle-2 {
  right: 180px;
  top: 244px;
}

body[data-page="home"] .hero-particle-3 {
  right: 560px;
  top: 392px;
}

body[data-page="home"] .hero-particle-4 {
  right: 286px;
  top: 486px;
}

@media (max-width: 900px) {
  body[data-page="home"] .home-hero-stage {
    min-height: 500px;
  }

  body[data-page="home"] .hero-glow {
    right: 50%;
    top: 54px;
    width: 340px;
    height: 340px;
    transform: translateX(50%);
  }

  body[data-page="home"] .hero-sphere {
    right: 50%;
    top: 42px;
    width: 286px;
    height: 286px;
    transform: translateX(50%);
  }
}

/* Hero background reference tuning */
body[data-page="home"] .home-screen-hero {
  background:
    linear-gradient(
      90deg,
      rgba(0, 0, 0, 0.97) 0%,
      rgba(0, 0, 0, 0.97) 34%,
      rgba(0, 0, 0, 0.52) 45%,
      rgba(2, 8, 14, 0.1) 100%
    ),
    url("./assets/images/hero-digital-earth.svg") 56% center / cover no-repeat,
    #020406;
}

@media (max-width: 900px) {
  body[data-page="home"] .home-screen-hero {
    background:
      linear-gradient(180deg, rgba(0, 0, 0, 0.86), rgba(0, 0, 0, 0.74)),
      url("./assets/images/hero-digital-earth.svg") 62% center / cover no-repeat,
      #020406;
  }
}

/* Hero screen as direct image */
body[data-page="home"] .home-screen-hero-image {
  background: #020406;
}

body[data-page="home"] .home-screen-hero-image::before,
body[data-page="home"] .home-screen-hero-image::after {
  display: none;
}

body[data-page="home"] .home-hero-image-layout {
  width: var(--home-frame-width);
  max-width: var(--home-frame-width);
  min-height: calc(100vh - 148px);
  display: grid;
  align-items: center;
  justify-items: center;
}

body[data-page="home"] .home-hero-reference-image {
  display: block;
  width: 100%;
  height: auto;
  max-height: calc(100vh - 148px);
  object-fit: contain;
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.28);
}

@media (max-width: 900px) {
  body[data-page="home"] .home-hero-image-layout {
    min-height: auto;
  }

  body[data-page="home"] .home-hero-reference-image {
    max-height: none;
  }
}

/* Shared header and footer */
.site-header-common {
  position: sticky;
  top: 0;
  z-index: 200;
  background: rgba(0, 0, 0, 0.82);
  border-bottom: 1px solid rgba(255, 255, 255, 0.14);
  backdrop-filter: blur(8px);
}

.header-inner-common {
  min-height: 60px;
}

.brand-common {
  gap: 18px;
}

.brand-copy {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

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

.brand-logo img {
  width: auto;
  height: 42px;
  display: block;
  object-fit: contain;
}

.brand-common strong {
  font-size: 18px;
  letter-spacing: 0.18em;
}

.brand-common small {
  margin-top: 4px;
  display: inline-block;
  width: fit-content;
  font-size: 8px;
  letter-spacing: 0.06em;
  transform: scaleX(0.84);
  transform-origin: left center;
}

.site-nav-common {
  gap: 0;
}

.site-nav-common a {
  min-width: 104px;
  padding: 20px 14px;
  text-align: center;
  color: rgba(255, 255, 255, 0.9);
}

.site-nav-common a.is-active,
.site-nav-common a:hover {
  background: rgba(118, 228, 236, 0.75);
  color: #ffffff;
}

.site-footer-common {
  padding: 30px 0 16px;
  background: #000000;
  border-top: 0;
}

.site-footer-common .footer-grid,
.site-footer-common .footer-title,
.site-footer-common .footer-text,
.site-footer-common .footer-meta {
  display: none;
}

.footer-contact-bar {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 30px;
  align-items: start;
}

.footer-contact-item {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  gap: 16px;
  color: #ffffff;
}

.footer-contact-icon {
  display: inline-grid;
  place-items: center;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.3);
  color: #ffffff;
  font-size: 16px;
  flex: 0 0 34px;
}

.footer-contact-item strong {
  display: block;
  margin-bottom: 8px;
  font-size: 16px;
  font-weight: 700;
}

.footer-contact-item p {
  margin: 0;
  color: rgba(255, 255, 255, 0.86);
  line-height: 1.7;
  font-size: 14px;
}

.footer-record-center {
  display: flex;
  justify-content: center;
  margin-top: 28px;
}

.site-footer-common .record-link {
  background: transparent;
  border: 0;
  color: rgba(255, 255, 255, 0.76);
  padding: 0;
}

.home-gallery {
  background: #000;
}

.home-gallery-screen {
  min-height: calc(100vh - 60px);
  display: flex;
  align-items: center;
  justify-content: center;
  /* padding: 12px 0; */
  scroll-snap-align: start;
  scroll-snap-stop: always;
}

.home-image-frame {
  width: min(1920px, 100%);
  height: calc(100vh - 84px);
  display: flex;
  align-items: center;
  justify-content: center;
}

.home-image-frame img {
  display: block;
  max-width: 100%;
  max-height: 100%;
  width: auto;
  height: auto;
  object-fit: contain;
}

.home-gallery-last {
  min-height: calc(100vh - 60px);
  padding-top: 12px;
  padding-bottom: 0;
  flex-direction: column;
}

.home-image-frame-last {
  height: calc(100vh - 240px);
  min-height: 0;
}

.site-footer-home {
  width: 100%;
  margin-top: auto;
  padding-top: 18px;
  padding-bottom: 12px;
}

body[data-page="home"] {
  scroll-snap-type: y mandatory;
  scroll-padding-top: 60px;
}

body[data-page="home"] .home-pagination,
body[data-page="home"] .screen-scroll-cue,
body[data-page="home"] .home-screen-divider {
  display: none;
}

body[data-page="home"] .home-screen-hero,
body[data-page="home"] .home-screen-tech,
body[data-page="home"] .home-screen-partners,
body[data-page="home"] .home-screen-contact {
  background: #000;
}

@media (max-width: 900px) {
  .header-inner-common {
    min-height: 56px;
  }

  .site-nav-common a {
    min-width: 0;
    padding: 14px 16px;
  }

  .footer-contact-bar {
    grid-template-columns: 1fr;
    gap: 18px;
  }

  .footer-contact-item {
    justify-content: flex-start;
  }

  .home-gallery-screen {
    min-height: auto;
    padding: 0;
  }

  .home-image-frame,
  .home-image-frame-last {
    height: auto;
  }

  .site-footer-home {
    margin-top: 0;
  }

  body[data-page="home"] {
    scroll-snap-type: y proximity;
  }
}

/* Normalize home screen image widths */
.home-gallery-screen {
  width: 100%;
}

.home-image-frame {
  width: 100%;
  max-width: none;
  height: calc(100vh - 84px);
}

.home-image-frame img {
  width: 100%;
  height: 100%;
  max-width: none;
  max-height: none;
  object-fit: cover;
  object-position: center top;
}

.home-gallery-last {
  display: grid;
  grid-template-rows: minmax(0, 1fr) auto;
}

.home-image-frame-last {
  width: 100%;
  height: calc(100vh - 240px);
}

.home-image-frame-last img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
}

body[data-page="technology"] .home-image-frame img,
body[data-page="services"] .home-image-frame img,
body[data-page="about"] .home-image-frame img {
  object-fit: contain;
  object-position: center center;
}

body[data-page="technology"] .home-gallery-screen {
  min-height: auto;
  padding: 0;
  display: block;
}

body[data-page="technology"] .home-gallery {
  line-height: 0;
}

body[data-page="technology"] .home-image-frame {
  width: 100%;
  height: auto;
  display: block;
}

body[data-page="technology"] .home-image-frame img {
  width: 100%;
  height: auto;
  object-fit: contain;
  object-position: center top;
}

body[data-page="services"] .home-gallery-screen,
body[data-page="about"] .home-gallery-screen {
  min-height: auto;
  padding: 0;
  display: block;
}

body[data-page="services"] .home-gallery,
body[data-page="about"] .home-gallery {
  line-height: 0;
}

body[data-page="services"] .home-image-frame,
body[data-page="about"] .home-image-frame {
  width: 100%;
  height: auto;
  display: block;
}

body[data-page="services"] .home-image-frame img,
body[data-page="about"] .home-image-frame img {
  width: 100%;
  height: auto;
  object-fit: contain;
  object-position: center top;
}

.site-footer-home {
  width: 100%;
}


@media (max-width: 900px) {
  .home-image-frame,
  .home-image-frame-last {
    height: auto;
  }

  .home-image-frame img,
  .home-image-frame-last img {
    width: 100%;
    height: auto;
    object-fit: contain;
  }
}





