:root {
  --ink: #0b1220;
  --muted: #56667a;
  --line: #dbe4f0;
  --paper: #f4f7fb;
  --white: #ffffff;
  --green: #00b894;
  --green-dark: #087c68;
  --blue: #1f6feb;
  --cyan: #00c2ff;
  --gold: #f2b84b;
  --rose: #f05b8f;
  --violet: #6d5efc;
  --navy: #07111f;
  --deep: #0b1630;
  --shadow: 0 28px 80px rgba(7, 17, 31, 0.18);
  --glow-blue: 0 18px 46px rgba(31, 111, 235, 0.3);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  position: relative;
  margin: 0;
  color: var(--ink);
  background:
    linear-gradient(115deg, rgba(31, 111, 235, 0.11) 0 1px, transparent 1px 18%),
    linear-gradient(245deg, rgba(0, 194, 255, 0.08) 0 1px, transparent 1px 22%),
    radial-gradient(circle at 70% 0, rgba(0, 194, 255, 0.22), transparent 30vw),
    linear-gradient(180deg, #06101f 0, #0b1630 620px, var(--paper) 620px),
    var(--paper);
  font-family:
    "HarmonyOS Sans SC", "MiSans", "Alibaba PuHuiTi", "PingFang SC", "Microsoft YaHei", "Noto Sans SC", system-ui, -apple-system, BlinkMacSystemFont, sans-serif;
  line-height: 1.6;
  font-feature-settings: "kern";
}

body::before {
  position: fixed;
  inset: 0;
  z-index: -2;
  content: "";
  background:
    radial-gradient(circle, rgba(125, 211, 252, 0.18) 0 1px, transparent 1.5px),
    linear-gradient(rgba(31, 111, 235, 0.06) 1px, transparent 1px),
    linear-gradient(90deg, rgba(31, 111, 235, 0.06) 1px, transparent 1px),
    linear-gradient(135deg, transparent 0 48%, rgba(0, 194, 255, 0.08) 48% 48.4%, transparent 48.4% 100%);
  background-size: 22px 22px, 44px 44px, 44px 44px, 160px 160px;
  mask-image: linear-gradient(180deg, #000 0, transparent 36%, transparent 100%);
  pointer-events: none;
  animation: textureShift 26s linear infinite;
}

body::after {
  position: fixed;
  inset: 0;
  z-index: -1;
  content: "";
  background:
    conic-gradient(from 120deg at 76% 18%, transparent 0 14%, rgba(0, 194, 255, 0.1) 14% 15%, transparent 15% 38%, rgba(31, 111, 235, 0.09) 38% 39%, transparent 39%),
    radial-gradient(circle at 8% 22%, rgba(109, 94, 252, 0.12), transparent 24vw),
    radial-gradient(circle at 92% 42%, rgba(0, 194, 255, 0.12), transparent 26vw),
    radial-gradient(circle at 22% 82%, rgba(242, 184, 75, 0.08), transparent 24vw),
    linear-gradient(100deg, transparent 0 42%, rgba(255, 255, 255, 0.06) 42% 42.4%, transparent 42.4% 100%);
  pointer-events: none;
}

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

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: grid;
  grid-template-columns: 1fr auto auto;
  align-items: center;
  gap: 28px;
  min-height: 76px;
  padding: 14px clamp(20px, 4vw, 64px);
  background: rgba(7, 17, 31, 0.78);
  border-bottom: 1px solid rgba(148, 163, 184, 0.18);
  backdrop-filter: blur(18px);
}

.brand {
  display: inline-flex;
  align-items: center;
  min-width: 0;
  gap: 12px;
}

.brand-mark {
  position: relative;
  display: grid;
  place-items: center;
  width: 44px;
  height: 44px;
  flex: 0 0 auto;
  border-radius: 12px;
  box-shadow: 0 16px 46px rgba(0, 194, 255, 0.28), 0 0 0 1px rgba(125, 211, 252, 0.2);
  overflow: hidden;
}

.brand-mark img {
  width: 100%;
  height: 100%;
}

.brand-mark::after {
  position: absolute;
  inset: 0;
  content: "";
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.34), transparent 44%);
  pointer-events: none;
}

.brand-text {
  display: grid;
  min-width: 0;
}

.brand-text strong {
  overflow: hidden;
  color: #f8fbff;
  font-size: 16px;
  font-weight: 850;
  white-space: nowrap;
  text-overflow: ellipsis;
}

.brand-text small {
  color: #97a6bb;
  font-size: 11px;
  letter-spacing: 0;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 24px;
  color: #c7d2e5;
  font-size: 15px;
}

.site-nav a {
  transition: color 180ms ease;
}

.site-nav a:hover {
  color: var(--cyan);
}

.header-cta,
.primary-button,
.secondary-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 0 20px;
  border-radius: 8px;
  font-weight: 700;
  transition:
    transform 180ms ease,
    box-shadow 180ms ease,
    background 180ms ease;
}

.header-cta,
.primary-button {
  color: var(--white);
  background: linear-gradient(135deg, var(--blue), var(--violet) 58%, var(--cyan));
  box-shadow: var(--glow-blue);
}

.secondary-button {
  color: #dff7ff;
  border: 1px solid rgba(125, 211, 252, 0.34);
  background: rgba(15, 23, 42, 0.38);
  backdrop-filter: blur(14px);
}

.header-cta:hover,
.primary-button:hover,
.secondary-button:hover {
  transform: translateY(-2px);
}

.menu-button {
  display: none;
  width: 44px;
  height: 44px;
  padding: 0;
  border: 1px solid rgba(148, 163, 184, 0.32);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.08);
}

.menu-button span {
  display: block;
  width: 18px;
  height: 2px;
  margin: 5px auto;
  background: #dbeafe;
}

.hero {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 0.78fr) minmax(420px, 1.04fr);
  gap: clamp(28px, 4vw, 58px);
  align-items: start;
  min-height: calc(100svh - 76px);
  padding: clamp(28px, 4.8vw, 68px) clamp(20px, 4vw, 64px) 54px;
  overflow: hidden;
  color: #f8fbff;
}

.hero::before {
  position: absolute;
  inset: 0 44% 0 0;
  content: "";
  background:
    linear-gradient(120deg, rgba(31, 111, 235, 0.2), transparent 68%),
    radial-gradient(circle at 18% 22%, rgba(0, 194, 255, 0.22), transparent 27%),
    linear-gradient(90deg, rgba(8, 17, 33, 0.92), rgba(8, 17, 33, 0.2) 74%);
  pointer-events: none;
}

.hero-copy {
  position: relative;
  z-index: 1;
  max-width: 720px;
  padding-top: clamp(12px, 2vw, 34px);
}

.eyebrow {
  display: inline-flex;
  color: var(--cyan);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0;
  text-transform: uppercase;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1 {
  display: grid;
  gap: 10px;
  max-width: 700px;
  margin-bottom: 22px;
  font-size: clamp(38px, 4.55vw, 60px);
  line-height: 1.05;
  letter-spacing: 0;
  font-weight: 900;
}

h1 span {
  display: block;
}

h1 span:first-child {
  color: #eaf4ff;
}

h1 span:last-child {
  width: fit-content;
  color: transparent;
  background: linear-gradient(90deg, #ffffff, #7dd3fc 48%, #f2b84b);
  background-clip: text;
}

h2 {
  margin-bottom: 18px;
  font-size: clamp(28px, 4vw, 44px);
  line-height: 1.15;
  letter-spacing: 0;
  font-weight: 850;
}

h3 {
  margin-bottom: 10px;
  font-size: 21px;
  line-height: 1.25;
  letter-spacing: 0;
  font-weight: 850;
}

.hero-copy p {
  max-width: 640px;
  color: #c3d0e3;
  font-size: clamp(17px, 2vw, 20px);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin: 34px 0;
}

.hero-stats {
  display: grid;
  grid-column: 1 / -1;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  max-width: none;
  margin: 0;
}

.hero-stats div {
  min-height: 118px;
  padding: 18px;
  background: rgba(15, 23, 42, 0.52);
  border: 1px solid rgba(125, 211, 252, 0.22);
  border-radius: 8px;
  box-shadow: 0 14px 38px rgba(0, 0, 0, 0.18);
  backdrop-filter: blur(16px);
}

.hero-stats dt {
  margin-bottom: 6px;
  color: var(--cyan);
  font-size: 24px;
  font-weight: 900;
}

.hero-stats dd {
  margin: 0;
  color: #aebbd0;
  font-size: 14px;
}

.hero-media {
  position: relative;
  z-index: 1;
  align-self: start;
  margin-top: 0;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: var(--shadow);
  outline: 1px solid rgba(125, 211, 252, 0.22);
}

.hero-system {
  display: grid;
  place-items: center;
  min-height: clamp(440px, 62vh, 620px);
  perspective: 1100px;
  isolation: isolate;
  background:
    radial-gradient(circle at 50% 48%, rgba(0, 194, 255, 0.28), transparent 14%),
    radial-gradient(circle at 46% 64%, rgba(31, 111, 235, 0.24), transparent 32%),
    radial-gradient(circle at 82% 18%, rgba(109, 94, 252, 0.24), transparent 26%),
    linear-gradient(145deg, rgba(15, 23, 42, 0.82), rgba(8, 17, 31, 0.98));
}

.system-grid {
  position: absolute;
  inset: 0;
  opacity: 0.34;
  background-image:
    linear-gradient(rgba(125, 211, 252, 0.18) 1px, transparent 1px),
    linear-gradient(90deg, rgba(125, 211, 252, 0.18) 1px, transparent 1px);
  background-size: 38px 38px;
  mask-image: radial-gradient(circle at 50% 48%, #000 0, transparent 70%);
  animation: gridDrift 16s linear infinite;
}

.holo-stage {
  position: absolute;
  inset: 7% 8%;
  z-index: 1;
  transform: rotateX(62deg) rotateZ(-18deg);
  transform-style: preserve-3d;
}

.holo-disc {
  position: absolute;
  inset: 50% auto auto 50%;
  aspect-ratio: 1;
  border-radius: 50%;
  transform: translate(-50%, -50%);
  transform-style: preserve-3d;
}

.disc-outer {
  width: min(92%, 620px);
  border: 1px solid rgba(125, 211, 252, 0.3);
  background:
    conic-gradient(from 0deg, transparent 0 11%, rgba(0, 194, 255, 0.42) 11% 13%, transparent 13% 31%, rgba(242, 184, 75, 0.3) 31% 33%, transparent 33% 100%);
  box-shadow:
    inset 0 0 44px rgba(0, 194, 255, 0.08),
    0 0 46px rgba(0, 194, 255, 0.12);
  animation: orbitSpin 18s linear infinite;
}

.disc-mid {
  width: min(68%, 460px);
  border: 1px solid rgba(242, 184, 75, 0.28);
  background:
    repeating-conic-gradient(from 24deg, rgba(31, 111, 235, 0.28) 0 5deg, transparent 5deg 18deg);
  filter: drop-shadow(0 0 18px rgba(31, 111, 235, 0.24));
  animation: orbitSpinReverse 13s linear infinite;
}

.disc-inner {
  width: min(46%, 310px);
  border: 1px solid rgba(0, 194, 255, 0.48);
  background:
    radial-gradient(circle, rgba(0, 194, 255, 0.2), transparent 55%),
    conic-gradient(from 120deg, rgba(0, 194, 255, 0.32), transparent 18%, rgba(109, 94, 252, 0.28), transparent 48%, rgba(242, 184, 75, 0.22), transparent 68%);
  box-shadow:
    inset 0 0 40px rgba(0, 194, 255, 0.14),
    0 0 32px rgba(0, 194, 255, 0.18);
  animation: orbitSpin 9s linear infinite;
}

.holo-scan {
  position: absolute;
  inset: 50% auto auto 50%;
  width: min(88%, 590px);
  height: 2px;
  background: linear-gradient(90deg, transparent, rgba(125, 211, 252, 0.9), transparent);
  box-shadow: 0 0 24px rgba(0, 194, 255, 0.55);
  transform-origin: 0 50%;
  animation: scanSweep 4.6s linear infinite;
}

.holo-node {
  position: absolute;
  width: 12px;
  height: 12px;
  border: 2px solid rgba(255, 255, 255, 0.72);
  border-radius: 50%;
  background: var(--cyan);
  box-shadow:
    0 0 0 8px rgba(0, 194, 255, 0.12),
    0 0 26px rgba(0, 194, 255, 0.72);
  animation: nodePulse 2.8s ease-in-out infinite;
}

.node-one {
  top: 21%;
  left: 24%;
}

.node-two {
  top: 24%;
  right: 22%;
  animation-delay: -0.7s;
}

.node-three {
  right: 26%;
  bottom: 18%;
  animation-delay: -1.4s;
}

.node-four {
  bottom: 20%;
  left: 23%;
  animation-delay: -2.1s;
}

.data-stream {
  position: absolute;
  z-index: 1;
  width: 120px;
  height: 210px;
  opacity: 0.46;
  background:
    linear-gradient(180deg, transparent, rgba(0, 194, 255, 0.28), transparent),
    repeating-linear-gradient(180deg, rgba(125, 211, 252, 0.3) 0 8px, transparent 8px 18px);
  filter: blur(0.2px);
  mask-image: linear-gradient(180deg, transparent, #000 18%, #000 78%, transparent);
  animation: dataRise 3.8s linear infinite;
}

.stream-one {
  left: 8%;
  top: 10%;
}

.stream-two {
  right: 9%;
  top: 19%;
  height: 260px;
  animation-delay: -1.4s;
}

.stream-three {
  left: 47%;
  bottom: 2%;
  height: 180px;
  animation-delay: -2.4s;
}

.system-core {
  position: relative;
  z-index: 4;
  display: grid;
  place-items: center;
  width: min(42%, 270px);
  aspect-ratio: 1;
  padding: 28px;
  text-align: center;
  background:
    linear-gradient(145deg, rgba(31, 111, 235, 0.52), rgba(0, 194, 255, 0.12)),
    rgba(7, 17, 31, 0.76);
  border: 1px solid rgba(125, 211, 252, 0.34);
  border-radius: 50%;
  box-shadow:
    0 0 0 12px rgba(31, 111, 235, 0.08),
    0 0 58px rgba(0, 194, 255, 0.22),
    0 34px 92px rgba(0, 0, 0, 0.46);
  animation: corePulse 3.8s ease-in-out infinite;
}

.system-core::before,
.system-core::after {
  position: absolute;
  inset: -16px;
  content: "";
  border: 1px solid rgba(125, 211, 252, 0.18);
  border-radius: 50%;
  animation: orbitSpin 11s linear infinite;
}

.system-core::after {
  inset: 16px;
  border-color: rgba(242, 184, 75, 0.22);
  animation-duration: 7s;
  animation-direction: reverse;
}

.system-core span,
.system-card span {
  color: var(--cyan);
  font-size: 12px;
  font-weight: 900;
}

.system-core strong {
  color: #ffffff;
  font-size: clamp(24px, 2.4vw, 34px);
  line-height: 1.1;
}

.system-core small {
  color: #b9c8df;
  font-size: 13px;
}

.system-card {
  position: absolute;
  z-index: 5;
  display: grid;
  gap: 4px;
  width: clamp(142px, 18vw, 190px);
  padding: 14px 16px;
  background:
    linear-gradient(135deg, rgba(31, 111, 235, 0.18), transparent),
    rgba(15, 23, 42, 0.74);
  border: 1px solid rgba(125, 211, 252, 0.28);
  border-radius: 8px;
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.08),
    0 16px 50px rgba(0, 0, 0, 0.28);
  backdrop-filter: blur(14px);
  animation: panelFloat 5.2s ease-in-out infinite;
}

.system-card::before {
  position: absolute;
  top: 50%;
  width: 82px;
  height: 1px;
  content: "";
  background: linear-gradient(90deg, rgba(125, 211, 252, 0.74), transparent);
  opacity: 0.58;
}

.system-card strong {
  color: #f8fbff;
  font-size: 15px;
}

.card-ai {
  top: 12%;
  left: 10%;
}

.card-product {
  top: 16%;
  right: 9%;
  animation-delay: -1.2s;
}

.card-ai::before,
.card-industry::before {
  right: -82px;
}

.card-product::before,
.card-data::before {
  left: -82px;
  transform: rotate(180deg);
}

.card-data {
  right: 12%;
  bottom: 15%;
  animation-delay: -2.4s;
}

.card-industry {
  bottom: 13%;
  left: 9%;
  animation-delay: -3.6s;
}

.hero-media::after {
  position: absolute;
  inset: 0;
  content: "";
  background:
    linear-gradient(90deg, rgba(8, 17, 31, 0.16), transparent 34%),
    linear-gradient(180deg, transparent 62%, rgba(7, 17, 31, 0.32));
  pointer-events: none;
}

.hero-media img {
  width: 100%;
  min-height: clamp(440px, 62vh, 620px);
  object-fit: cover;
  object-position: center;
}

.ai-badge {
  position: absolute;
  right: 18px;
  bottom: 18px;
  display: grid;
  gap: 4px;
  max-width: min(340px, calc(100% - 36px));
  padding: 16px 18px;
  color: var(--white);
  background: rgba(7, 17, 31, 0.76);
  border: 1px solid rgba(125, 211, 252, 0.34);
  border-radius: 8px;
  backdrop-filter: blur(16px);
}

.ai-badge strong {
  font-size: 16px;
}

.ai-badge span {
  color: #dbeafe;
  font-size: 13px;
}

.section,
.case-section,
.strengths,
.contact {
  position: relative;
  padding: clamp(58px, 7.5vw, 104px) clamp(20px, 4vw, 64px);
  overflow: hidden;
  transform-style: preserve-3d;
}

.section::before,
.case-section::before,
.contact::before {
  position: absolute;
  inset: 0;
  z-index: 0;
  content: "";
  background:
    radial-gradient(circle, rgba(31, 111, 235, 0.08) 0 1px, transparent 1.5px),
    linear-gradient(135deg, rgba(31, 111, 235, 0.042) 0 1px, transparent 1px 44px),
    linear-gradient(45deg, rgba(0, 194, 255, 0.035) 0 1px, transparent 1px 54px),
    repeating-linear-gradient(90deg, transparent 0 118px, rgba(0, 194, 255, 0.035) 118px 120px);
  background-size: 18px 18px, 44px 44px, 54px 54px, 240px 240px;
  opacity: 0.86;
  pointer-events: none;
  animation: sectionTextureDrift 32s linear infinite;
}

.section::after,
.case-section::after {
  position: absolute;
  right: clamp(18px, 5vw, 70px);
  bottom: clamp(18px, 4vw, 58px);
  z-index: 0;
  width: min(34vw, 420px);
  height: min(34vw, 420px);
  content: "";
  background:
    radial-gradient(circle, rgba(0, 194, 255, 0.1), transparent 58%),
    conic-gradient(from 90deg, transparent 0 18%, rgba(31, 111, 235, 0.14) 18% 22%, transparent 22% 44%, rgba(242, 184, 75, 0.1) 44% 48%, transparent 48%);
  border-radius: 50%;
  opacity: 0.55;
  pointer-events: none;
}

.panorama::after,
.services::after,
.case-section::after,
.industry-solutions::after,
.showcase::after,
.ai-layer::after,
.tech-stack::after,
.process::after {
  right: auto;
  bottom: clamp(-120px, -8vw, -64px);
  left: 50%;
  width: min(86vw, 980px);
  height: clamp(260px, 28vw, 430px);
  border-radius: 28px;
  opacity: 0.5;
  transform: translateX(-50%) perspective(900px) rotateX(58deg) rotateZ(-5deg);
  transform-origin: 50% 100%;
  filter: saturate(1.08);
}

.section > *,
.case-section > *,
.contact > * {
  position: relative;
  z-index: 1;
}

.section-heading {
  max-width: 760px;
}

.intro {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(280px, 0.55fr);
  gap: 56px;
  align-items: end;
  background:
    radial-gradient(circle at 88% 10%, rgba(0, 194, 255, 0.12), transparent 28%),
    linear-gradient(90deg, rgba(31, 111, 235, 0.06), transparent),
    var(--white);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.intro p {
  margin-bottom: 0;
  color: var(--muted);
  font-size: 18px;
}

.panorama {
  background:
    linear-gradient(135deg, rgba(7, 17, 31, 0.04), transparent 46%),
    radial-gradient(circle at 82% 12%, rgba(0, 194, 255, 0.14), transparent 28%),
    linear-gradient(180deg, #ffffff, #edf2fb);
}

.services {
  background:
    radial-gradient(circle at 14% 12%, rgba(31, 111, 235, 0.11), transparent 26%),
    radial-gradient(circle at 86% 72%, rgba(0, 194, 255, 0.1), transparent 28%),
    linear-gradient(180deg, #f8fbff, #eef3fb);
}

.panorama::after {
  background:
    radial-gradient(circle at 18% 28%, rgba(125, 211, 252, 0.22) 0 2px, transparent 3px),
    radial-gradient(circle at 80% 62%, rgba(242, 184, 75, 0.16) 0 2px, transparent 3px),
    radial-gradient(circle at 50% 42%, rgba(0, 194, 255, 0.16), transparent 32%),
    linear-gradient(32deg, transparent 0 38%, rgba(0, 194, 255, 0.18) 38% 38.5%, transparent 38.5% 100%),
    linear-gradient(90deg, transparent 0 9%, rgba(31, 111, 235, 0.18) 9% 10%, transparent 10% 23%, rgba(0, 194, 255, 0.16) 23% 24%, transparent 24% 100%),
    repeating-linear-gradient(90deg, transparent 0 72px, rgba(31, 111, 235, 0.14) 72px 74px),
    repeating-linear-gradient(0deg, rgba(125, 211, 252, 0.12) 0 1px, transparent 1px 34px);
  background-size: auto, auto, auto, auto, auto, auto, auto;
}

.services::after {
  bottom: clamp(-150px, -10vw, -78px);
  height: clamp(300px, 32vw, 470px);
  opacity: 0.62;
  background:
    conic-gradient(from 45deg at 50% 48%, transparent 0 8%, rgba(0, 194, 255, 0.18) 8% 8.7%, transparent 8.7% 19%, rgba(242, 184, 75, 0.15) 19% 19.7%, transparent 19.7%),
    radial-gradient(circle at 18% 28%, rgba(31, 111, 235, 0.2) 0 4px, transparent 5px),
    radial-gradient(circle at 72% 68%, rgba(0, 194, 255, 0.22) 0 4px, transparent 5px),
    radial-gradient(circle at 50% 50%, rgba(0, 194, 255, 0.18), transparent 28%),
    linear-gradient(90deg, transparent 0 8%, rgba(0, 194, 255, 0.22) 8% 9%, transparent 9% 18%, rgba(31, 111, 235, 0.2) 18% 19%, transparent 19% 100%),
    linear-gradient(0deg, transparent 0 8%, rgba(0, 194, 255, 0.2) 8% 9%, transparent 9% 23%, rgba(31, 111, 235, 0.18) 23% 24%, transparent 24% 100%),
    repeating-linear-gradient(90deg, rgba(31, 111, 235, 0.13) 0 1px, transparent 1px 38px),
    repeating-linear-gradient(0deg, rgba(0, 194, 255, 0.12) 0 1px, transparent 1px 38px),
    linear-gradient(145deg, rgba(31, 111, 235, 0.1), rgba(0, 194, 255, 0.04));
  border: 1px solid rgba(31, 111, 235, 0.1);
  box-shadow:
    inset 0 0 80px rgba(0, 194, 255, 0.06),
    0 30px 90px rgba(31, 111, 235, 0.08);
}

.panorama-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  margin-top: 34px;
}

.panorama-grid article {
  position: relative;
  min-height: 238px;
  padding: 26px;
  background:
    linear-gradient(160deg, rgba(255, 255, 255, 0.68), rgba(225, 241, 255, 0.36)),
    rgba(255, 255, 255, 0.4);
  border: 1px solid rgba(31, 111, 235, 0.16);
  border-radius: 8px;
  box-shadow:
    0 18px 42px rgba(15, 23, 42, 0.08),
    0 44px 90px rgba(31, 111, 235, 0.07);
  overflow: hidden;
  transform: translateZ(0);
  backdrop-filter: blur(16px) saturate(1.08);
  transition:
    transform 220ms ease,
    border-color 220ms ease,
    box-shadow 220ms ease;
}

.panorama-grid article::before,
.service-card::before,
.case-item::before,
.tech-list article::before {
  position: absolute;
  inset: 0 0 auto;
  height: 3px;
  content: "";
  background: linear-gradient(90deg, var(--blue), var(--cyan), var(--gold));
}

.panorama-grid article::after,
.service-card::after,
.case-item::after,
.industry-render-grid article::after,
.showcase-grid figure::after,
.tech-list article::after,
.timeline li::after,
.contact-form::after {
  position: absolute;
  inset: 1px;
  content: "";
  border-radius: inherit;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.26), transparent 28%, rgba(0, 194, 255, 0.08));
  opacity: 0.58;
  pointer-events: none;
}

.panorama-grid span {
  display: inline-flex;
  margin-bottom: 28px;
  color: var(--blue);
  font-size: 28px;
  font-weight: 900;
  line-height: 1;
}

.panorama-grid p {
  margin-bottom: 0;
  color: var(--muted);
}

.service-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  margin-top: 34px;
}

.service-card,
.case-item {
  position: relative;
  padding: 26px;
  background:
    radial-gradient(circle at 86% 12%, rgba(0, 194, 255, 0.09), transparent 28%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.62), rgba(225, 241, 255, 0.32)),
    rgba(255, 255, 255, 0.38);
  border: 1px solid rgba(31, 111, 235, 0.18);
  border-radius: 8px;
  box-shadow:
    0 18px 42px rgba(15, 23, 42, 0.08),
    0 48px 96px rgba(31, 111, 235, 0.08);
  overflow: hidden;
  transform: translateZ(0);
  backdrop-filter: blur(16px) saturate(1.08);
  transition:
    transform 220ms ease,
    border-color 220ms ease,
    box-shadow 220ms ease,
    background 220ms ease;
}

.service-card:hover,
.case-item:hover,
.panorama-grid article:hover,
.industry-render-grid article:hover,
.showcase-grid figure:hover,
.tech-list article:hover {
  border-color: rgba(31, 111, 235, 0.34);
  box-shadow:
    0 26px 62px rgba(15, 23, 42, 0.14),
    0 70px 130px rgba(31, 111, 235, 0.13);
  transform: translateY(-10px) scale(1.012);
}

.service-card:hover h3,
.case-item:hover h3,
.panorama-grid article:hover h3,
.industry-render-grid article:hover h3,
.showcase-grid figure:hover figcaption,
.tech-list article:hover h3 {
  transform: scale(1.045);
  transform-origin: left center;
}

.service-card h3,
.case-item h3,
.panorama-grid h3,
.industry-render-grid h3,
.showcase-grid figcaption,
.tech-list h3 {
  transition:
    transform 180ms ease,
    color 180ms ease,
    background 180ms ease;
}

.service-card:hover .icon {
  transform: scale(1.12) rotate(-4deg);
  box-shadow: 0 18px 42px rgba(0, 194, 255, 0.3);
}

.case-item:hover .case-topline strong {
  color: var(--cyan);
  transform: scale(1.08);
}

.service-card {
  min-height: 248px;
}

.service-card p,
.case-item p,
.timeline p,
.contact-copy p {
  margin-bottom: 0;
  color: var(--muted);
}

.contact-direct {
  position: relative;
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 6px 18px;
  align-items: center;
  width: min(100%, 430px);
  margin-top: 24px;
  padding: 18px 20px;
  color: #dcecff;
  border: 1px solid rgba(125, 211, 252, 0.3);
  border-radius: 8px;
  background:
    linear-gradient(135deg, rgba(7, 17, 31, 0.82), rgba(31, 111, 235, 0.42)),
    rgba(15, 23, 42, 0.74);
  box-shadow:
    0 22px 54px rgba(15, 23, 42, 0.18),
    0 0 34px rgba(0, 194, 255, 0.12);
  overflow: hidden;
}

.contact-direct::before {
  position: absolute;
  inset: 0;
  content: "";
  pointer-events: none;
  background:
    linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.16), transparent),
    repeating-linear-gradient(90deg, transparent 0 24px, rgba(125, 211, 252, 0.06) 24px 25px);
  opacity: 0.72;
}

.contact-direct span,
.contact-direct strong,
.contact-direct a,
.contact-direct small {
  position: relative;
  z-index: 1;
}

.contact-direct span {
  grid-row: span 2;
  display: grid;
  place-items: center;
  width: 70px;
  height: 70px;
  color: var(--cyan);
  border: 1px solid rgba(0, 194, 255, 0.35);
  border-radius: 8px;
  background: rgba(0, 194, 255, 0.08);
  font-size: 13px;
  font-weight: 900;
}

.contact-direct strong {
  font-size: 24px;
  line-height: 1;
}

.contact-direct a {
  width: fit-content;
  color: #ffffff;
  font-size: 28px;
  font-weight: 900;
  text-decoration: none;
}

.contact-direct small {
  grid-column: 2;
  color: #aecaec;
  font-weight: 800;
}

.compute-panel {
  position: relative;
  min-height: 360px;
  margin-top: 42px;
  border-radius: 8px;
  overflow: hidden;
  background:
    radial-gradient(circle at 48% 48%, rgba(0, 194, 255, 0.2), transparent 28%),
    linear-gradient(145deg, rgba(7, 17, 31, 0.12), rgba(31, 111, 235, 0.06)),
    repeating-linear-gradient(90deg, rgba(31, 111, 235, 0.08) 0 1px, transparent 1px 34px),
    repeating-linear-gradient(0deg, rgba(0, 194, 255, 0.07) 0 1px, transparent 1px 34px);
}

.compute-panel::before,
.compute-panel::after {
  position: absolute;
  content: "";
  pointer-events: none;
}

.compute-panel::before {
  inset: 8%;
  background:
    linear-gradient(90deg, transparent 0 18%, rgba(0, 194, 255, 0.22) 18% 18.7%, transparent 18.7% 40%, rgba(31, 111, 235, 0.22) 40% 40.7%, transparent 40.7%),
    linear-gradient(0deg, transparent 0 22%, rgba(0, 194, 255, 0.2) 22% 22.7%, transparent 22.7% 62%, rgba(242, 184, 75, 0.16) 62% 62.7%, transparent 62.7%);
  transform: perspective(800px) rotateX(58deg) rotateZ(-12deg);
  transform-origin: 50% 80%;
  animation: computeBoardDrift 10s ease-in-out infinite;
}

.compute-panel::after {
  inset: 0;
  background:
    radial-gradient(circle at 20% 22%, rgba(0, 194, 255, 0.16) 0 3px, transparent 4px),
    radial-gradient(circle at 76% 28%, rgba(242, 184, 75, 0.16) 0 3px, transparent 4px),
    radial-gradient(circle at 66% 76%, rgba(109, 94, 252, 0.16) 0 3px, transparent 4px);
  animation: computeGlow 4.8s ease-in-out infinite;
}

.compute-chip {
  position: absolute;
  top: 50%;
  left: 50%;
  z-index: 2;
  display: grid;
  place-items: center;
  width: 190px;
  aspect-ratio: 1;
  padding: 22px;
  color: #ffffff;
  text-align: center;
  background:
    linear-gradient(145deg, rgba(31, 111, 235, 0.62), rgba(0, 194, 255, 0.16)),
    rgba(7, 17, 31, 0.8);
  border: 1px solid rgba(125, 211, 252, 0.42);
  border-radius: 18px;
  box-shadow:
    0 0 0 10px rgba(31, 111, 235, 0.08),
    0 26px 76px rgba(31, 111, 235, 0.22);
  transform: translate(-50%, -50%) rotateX(8deg);
  animation: computeChipPulse 3.8s ease-in-out infinite;
}

.compute-chip::before,
.compute-chip::after {
  position: absolute;
  inset: -14px;
  content: "";
  border: 1px solid rgba(125, 211, 252, 0.18);
  border-radius: 24px;
}

.compute-chip::after {
  inset: 18px;
  border-color: rgba(242, 184, 75, 0.18);
}

.compute-chip span {
  color: var(--cyan);
  font-size: 11px;
  font-weight: 900;
}

.compute-chip strong {
  font-size: 23px;
  line-height: 1.12;
}

.compute-chip small {
  color: #b9c8df;
  font-size: 12px;
}

.compute-rack {
  position: absolute;
  display: grid;
  gap: 8px;
  width: 112px;
  padding: 12px;
  background: rgba(15, 23, 42, 0.64);
  border: 1px solid rgba(125, 211, 252, 0.22);
  border-radius: 8px;
  box-shadow: 0 18px 48px rgba(31, 111, 235, 0.14);
  backdrop-filter: blur(14px);
}

.compute-rack span {
  display: block;
  height: 12px;
  border-radius: 999px;
  background: linear-gradient(90deg, rgba(0, 194, 255, 0.86), rgba(31, 111, 235, 0.16));
  animation: computeBar 2.4s ease-in-out infinite;
}

.compute-rack span:nth-child(2) {
  animation-delay: -0.4s;
}

.compute-rack span:nth-child(3) {
  animation-delay: -0.8s;
}

.compute-rack span:nth-child(4) {
  animation-delay: -1.2s;
}

.rack-a {
  top: 34px;
  left: 8%;
}

.rack-b {
  right: 8%;
  bottom: 38px;
  animation-delay: -1.5s;
}

.compute-stream {
  position: absolute;
  z-index: 1;
  width: 2px;
  height: 190px;
  background: linear-gradient(180deg, transparent, rgba(0, 194, 255, 0.76), transparent);
  box-shadow: 0 0 18px rgba(0, 194, 255, 0.5);
  animation: computeStream 3.6s linear infinite;
}

.stream-a {
  top: 38px;
  left: 42%;
  transform: rotate(58deg);
}

.stream-b {
  right: 34%;
  bottom: 22px;
  transform: rotate(-44deg);
  animation-delay: -1.8s;
}

.compute-metric {
  position: absolute;
  z-index: 3;
  display: grid;
  gap: 2px;
  min-width: 92px;
  padding: 10px 12px;
  color: #eaf4ff;
  background: rgba(15, 23, 42, 0.72);
  border: 1px solid rgba(125, 211, 252, 0.26);
  border-radius: 8px;
  box-shadow: 0 14px 42px rgba(31, 111, 235, 0.14);
  backdrop-filter: blur(14px);
  animation: contactFloat 4.8s ease-in-out infinite;
}

.compute-metric span {
  color: var(--cyan);
  font-size: 11px;
  font-weight: 900;
}

.compute-metric strong {
  font-size: 16px;
}

.metric-a {
  left: 12%;
  bottom: 42px;
}

.metric-b {
  top: 46px;
  right: 9%;
  animation-delay: -1.6s;
}

.metric-c {
  top: 132px;
  left: 7%;
  animation-delay: -3.2s;
}

.icon {
  position: relative;
  display: grid;
  place-items: center;
  width: 44px;
  height: 44px;
  margin-bottom: 22px;
  color: var(--white);
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.14), transparent),
    linear-gradient(135deg, var(--deep), var(--blue));
  border-radius: 8px;
  box-shadow: 0 14px 30px rgba(31, 111, 235, 0.22);
  font-weight: 900;
  overflow: hidden;
  transition:
    transform 220ms ease,
    box-shadow 220ms ease;
}

.icon::before {
  position: absolute;
  right: 6px;
  bottom: 6px;
  width: 9px;
  height: 9px;
  content: "";
  border: 1px solid rgba(255, 255, 255, 0.44);
  border-radius: 50%;
}

.icon::after {
  position: absolute;
  top: 8px;
  left: 8px;
  width: 18px;
  height: 1px;
  content: "";
  background: rgba(255, 255, 255, 0.5);
}

.service-card:nth-child(2) .icon,
.service-card:nth-child(5) .icon,
.service-card:nth-child(8) .icon {
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.14), transparent),
    linear-gradient(135deg, var(--blue), var(--cyan));
}

.service-card:nth-child(3) .icon,
.service-card:nth-child(6) .icon {
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.14), transparent),
    linear-gradient(135deg, #5b35d5, var(--rose), var(--gold));
}

.case-section {
  padding-top: clamp(96px, 11vw, 146px);
  background:
    linear-gradient(180deg, rgba(7, 17, 31, 0.035), transparent 28%),
    radial-gradient(circle at 12% 14%, rgba(109, 94, 252, 0.11), transparent 26%),
    linear-gradient(135deg, rgba(31, 111, 235, 0.08), transparent 42%),
    #eef3fb;
}

.case-section::after {
  opacity: 0.58;
  background:
    conic-gradient(from 220deg at 54% 50%, transparent 0 11%, rgba(0, 194, 255, 0.18) 11% 11.8%, transparent 11.8% 29%, rgba(31, 111, 235, 0.16) 29% 29.8%, transparent 29.8%),
    radial-gradient(circle at 18% 34%, rgba(0, 194, 255, 0.26) 0 8px, transparent 9px),
    radial-gradient(circle at 38% 54%, rgba(31, 111, 235, 0.22) 0 7px, transparent 8px),
    radial-gradient(circle at 61% 36%, rgba(109, 94, 252, 0.2) 0 8px, transparent 9px),
    radial-gradient(circle at 78% 58%, rgba(242, 184, 75, 0.2) 0 6px, transparent 7px),
    linear-gradient(28deg, transparent 0 18%, rgba(0, 194, 255, 0.2) 18% 18.5%, transparent 18.5% 100%),
    linear-gradient(145deg, transparent 0 34%, rgba(31, 111, 235, 0.18) 34% 34.5%, transparent 34.5% 100%),
    linear-gradient(82deg, transparent 0 48%, rgba(109, 94, 252, 0.16) 48% 48.5%, transparent 48.5% 100%),
    repeating-linear-gradient(90deg, rgba(31, 111, 235, 0.08) 0 1px, transparent 1px 42px),
    repeating-linear-gradient(0deg, rgba(0, 194, 255, 0.08) 0 1px, transparent 1px 42px);
}

.ai-layer {
  background:
    radial-gradient(circle at 82% 12%, rgba(109, 94, 252, 0.1), transparent 28%),
    radial-gradient(circle at 8% 64%, rgba(0, 194, 255, 0.11), transparent 26%),
    linear-gradient(135deg, rgba(31, 111, 235, 0.07), transparent 44%),
    var(--white);
  border-top: 1px solid var(--line);
}

.studio-visual {
  margin: 34px 0 22px;
  border: 1px solid rgba(31, 111, 235, 0.2);
  border-radius: 8px;
  overflow: hidden;
  box-shadow: var(--shadow);
}

.studio-visual img {
  width: 100%;
  max-height: 520px;
  object-fit: cover;
  object-position: center;
}

.ai-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
  margin-top: 34px;
}

.ai-grid article {
  min-height: 238px;
  padding: 26px;
  color: var(--white);
  background:
    radial-gradient(circle at 82% 0, rgba(109, 94, 252, 0.18), transparent 34%),
    linear-gradient(160deg, rgba(0, 194, 255, 0.16), transparent 54%),
    var(--navy);
  border: 1px solid rgba(125, 211, 252, 0.18);
  border-radius: 8px;
  box-shadow: 0 18px 50px rgba(7, 25, 35, 0.12);
}

.ai-grid span {
  display: inline-flex;
  margin-bottom: 28px;
  color: #7dd3fc;
  font-size: 28px;
  font-weight: 900;
  line-height: 1;
}

.ai-grid p {
  margin-bottom: 0;
  color: #d3e7ee;
}

.case-tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 28px 0 24px;
}

.case-tabs button {
  min-height: 40px;
  padding: 0 16px;
  color: #40536b;
  border: 1px solid rgba(31, 111, 235, 0.18);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.62);
  cursor: pointer;
}

.case-tabs button.active {
  color: var(--white);
  background: linear-gradient(135deg, var(--blue), var(--violet), var(--cyan));
  box-shadow: 0 12px 28px rgba(31, 111, 235, 0.2);
}

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

.case-item {
  min-height: 278px;
}

.case-item.is-hidden {
  display: none;
}

.case-topline {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 34px;
  color: var(--muted);
  font-size: 13px;
}

.case-topline strong {
  color: var(--blue);
  transition:
    color 180ms ease,
    transform 180ms ease;
}

.industry-solutions {
  background:
    radial-gradient(circle at 88% 18%, rgba(109, 94, 252, 0.1), transparent 26%),
    linear-gradient(135deg, rgba(0, 194, 255, 0.07), transparent 38%),
    var(--white);
  border-top: 1px solid var(--line);
}

.industry-solutions::after {
  opacity: 0.48;
  background:
    radial-gradient(circle at 24% 24%, rgba(0, 194, 255, 0.16) 0 3px, transparent 4px),
    radial-gradient(circle at 76% 64%, rgba(109, 94, 252, 0.14) 0 3px, transparent 4px),
    linear-gradient(24deg, transparent 0 44%, rgba(31, 111, 235, 0.16) 44% 44.6%, transparent 44.6% 100%),
    linear-gradient(145deg, rgba(31, 111, 235, 0.12), rgba(0, 194, 255, 0.04)),
    repeating-linear-gradient(90deg, transparent 0 52px, rgba(31, 111, 235, 0.16) 52px 54px),
    repeating-linear-gradient(0deg, transparent 0 34px, rgba(0, 194, 255, 0.12) 34px 35px);
}

.industry-render-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
  margin-top: 34px;
}

.industry-render-grid article {
  position: relative;
  display: grid;
  grid-template-rows: auto auto;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.72), rgba(232, 244, 255, 0.36)),
    rgba(255, 255, 255, 0.42);
  border: 1px solid rgba(31, 111, 235, 0.18);
  border-radius: 8px;
  overflow: hidden;
  backdrop-filter: blur(16px) saturate(1.08);
  box-shadow:
    0 22px 54px rgba(15, 23, 42, 0.11),
    0 56px 120px rgba(31, 111, 235, 0.08);
  transform: translateZ(0);
  transition:
    transform 220ms ease,
    border-color 220ms ease,
    box-shadow 220ms ease;
}

.industry-render-grid img {
  width: 100%;
  height: auto;
  aspect-ratio: 16 / 9;
  min-height: 0;
  padding: 10px;
  object-fit: contain;
  object-position: center;
  background:
    radial-gradient(circle at 50% 0, rgba(0, 194, 255, 0.13), transparent 42%),
    #eef4ff;
}

.industry-render-grid article > div {
  padding: 24px;
}

.industry-render-grid span {
  display: inline-flex;
  margin-bottom: 10px;
  color: var(--blue);
  font-size: 13px;
  font-weight: 800;
}

.industry-render-grid p {
  margin-bottom: 0;
  color: var(--muted);
}

.showcase {
  background:
    linear-gradient(135deg, rgba(7, 17, 31, 0.05), transparent 44%),
    radial-gradient(circle at 80% 14%, rgba(0, 194, 255, 0.12), transparent 26%),
    #eef3fb;
}

.showcase::after {
  opacity: 0.5;
  background:
    repeating-radial-gradient(circle at 24% 28%, rgba(125, 211, 252, 0.12) 0 2px, transparent 2px 18px),
    radial-gradient(circle at 20% 24%, rgba(242, 184, 75, 0.18), transparent 20%),
    radial-gradient(circle at 70% 46%, rgba(0, 194, 255, 0.16), transparent 24%),
    linear-gradient(112deg, transparent 0 32%, rgba(0, 194, 255, 0.16) 32% 32.6%, transparent 32.6% 100%),
    linear-gradient(135deg, rgba(31, 111, 235, 0.16), rgba(7, 17, 31, 0.02)),
    repeating-linear-gradient(90deg, rgba(31, 111, 235, 0.1) 0 1px, transparent 1px 64px);
}

.showcase-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 20px;
  margin-top: 34px;
}

.showcase-grid figure {
  position: relative;
  display: grid;
  grid-template-rows: minmax(210px, 240px) auto;
  min-height: 0;
  margin: 0;
  border: 1px solid rgba(31, 111, 235, 0.18);
  border-radius: 8px;
  overflow: hidden;
  background:
    linear-gradient(145deg, rgba(7, 17, 31, 0.94), rgba(11, 22, 48, 0.88)),
    var(--white);
  box-shadow:
    0 20px 50px rgba(15, 23, 42, 0.12),
    0 54px 115px rgba(31, 111, 235, 0.1);
  transform: translateZ(0);
  transition:
    transform 220ms ease,
    border-color 220ms ease,
    box-shadow 220ms ease;
}

.showcase-grid figure:nth-child(n + 2) {
  min-height: 0;
}

.showcase-large {
  grid-row: auto;
}

.showcase-grid img {
  width: 100%;
  height: 100%;
  min-height: 0;
  padding: 14px;
  object-fit: contain;
  background:
    radial-gradient(circle at 50% 0, rgba(0, 194, 255, 0.18), transparent 40%),
    #edf4ff;
  transition:
    transform 220ms ease,
    filter 220ms ease;
}

.showcase-grid figure:hover img {
  transform: scale(1.025);
  filter: saturate(1.05) contrast(1.04);
}

.showcase-grid figcaption {
  position: static;
  min-height: 64px;
  padding: 14px 16px;
  color: var(--white);
  background: rgba(7, 17, 31, 0.88);
  border-top: 1px solid rgba(125, 211, 252, 0.16);
  font-size: 14px;
}

.timeline {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
  margin: 38px 0 0;
  padding: 0;
  list-style: none;
}

.timeline li {
  position: relative;
  min-height: 248px;
  padding: 28px;
  border-top: 3px solid var(--blue);
  background:
    radial-gradient(circle at 88% 12%, rgba(0, 194, 255, 0.08), transparent 30%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.58), rgba(225, 241, 255, 0.3)),
    rgba(255, 255, 255, 0.36);
  border-radius: 8px;
  backdrop-filter: blur(16px) saturate(1.08);
  box-shadow:
    0 18px 42px rgba(15, 23, 42, 0.08),
    0 48px 96px rgba(31, 111, 235, 0.07);
  transition:
    transform 220ms ease,
    box-shadow 220ms ease;
}

.timeline li:hover {
  transform: translateY(-10px) scale(1.012);
  box-shadow:
    0 26px 62px rgba(15, 23, 42, 0.13),
    0 70px 130px rgba(31, 111, 235, 0.12);
}

.timeline span {
  display: block;
  margin-bottom: 36px;
  color: var(--gold);
  font-size: 34px;
  font-weight: 900;
  line-height: 1;
}

.strengths {
  display: grid;
  grid-template-columns: minmax(260px, 0.75fr) minmax(0, 1fr);
  gap: 54px;
  color: var(--white);
  background:
    radial-gradient(circle at 78% 8%, rgba(0, 194, 255, 0.24), transparent 28%),
    radial-gradient(circle at 20% 80%, rgba(109, 94, 252, 0.18), transparent 30%),
    linear-gradient(135deg, #06101f, #0b1732 52%, #07111f);
}

.tech-stack {
  background:
    radial-gradient(circle at 8% 10%, rgba(0, 194, 255, 0.1), transparent 24%),
    linear-gradient(135deg, rgba(31, 111, 235, 0.08), transparent 46%),
    #f8fafc;
  border-top: 1px solid var(--line);
}

.ai-layer::after {
  opacity: 0.56;
  background:
    repeating-radial-gradient(circle at 50% 48%, transparent 0 28px, rgba(0, 194, 255, 0.12) 29px 30px, transparent 31px 56px),
    radial-gradient(circle at 50% 48%, rgba(0, 194, 255, 0.18), transparent 24%),
    conic-gradient(from 0deg, transparent 0 12%, rgba(0, 194, 255, 0.2) 12% 14%, transparent 14% 34%, rgba(109, 94, 252, 0.18) 34% 36%, transparent 36% 100%),
    repeating-linear-gradient(90deg, rgba(31, 111, 235, 0.1) 0 1px, transparent 1px 44px),
    repeating-linear-gradient(0deg, rgba(0, 194, 255, 0.1) 0 1px, transparent 1px 44px);
  border-radius: 50%;
}

.tech-stack::after {
  opacity: 0.5;
  background:
    radial-gradient(circle at 16% 20%, rgba(0, 194, 255, 0.16) 0 3px, transparent 4px),
    radial-gradient(circle at 84% 78%, rgba(242, 184, 75, 0.14) 0 3px, transparent 4px),
    linear-gradient(28deg, transparent 0 35%, rgba(0, 194, 255, 0.16) 35% 35.5%, transparent 35.5% 100%),
    linear-gradient(180deg, rgba(31, 111, 235, 0.2) 0 13%, transparent 13% 20%, rgba(0, 194, 255, 0.16) 20% 33%, transparent 33% 40%, rgba(109, 94, 252, 0.14) 40% 53%, transparent 53%),
    repeating-linear-gradient(90deg, rgba(125, 211, 252, 0.1) 0 1px, transparent 1px 54px);
}

.process::after {
  opacity: 0.52;
  background:
    repeating-radial-gradient(circle at 50% 50%, rgba(125, 211, 252, 0.08) 0 2px, transparent 2px 22px),
    linear-gradient(90deg, transparent 0 8%, rgba(31, 111, 235, 0.22) 8% 10%, transparent 10% 31%, rgba(0, 194, 255, 0.2) 31% 33%, transparent 33% 56%, rgba(242, 184, 75, 0.2) 56% 58%, transparent 58% 100%),
    radial-gradient(circle at 10% 50%, rgba(0, 194, 255, 0.2) 0 10px, transparent 11px),
    radial-gradient(circle at 33% 50%, rgba(31, 111, 235, 0.2) 0 10px, transparent 11px),
    radial-gradient(circle at 58% 50%, rgba(109, 94, 252, 0.18) 0 10px, transparent 11px),
    radial-gradient(circle at 82% 50%, rgba(242, 184, 75, 0.18) 0 10px, transparent 11px);
}

.contact::after {
  position: absolute;
  right: clamp(-180px, -10vw, -80px);
  bottom: clamp(-160px, -9vw, -80px);
  z-index: 0;
  width: min(70vw, 760px);
  height: clamp(260px, 28vw, 420px);
  content: "";
  background:
    radial-gradient(circle at 50% 50%, rgba(0, 194, 255, 0.14), transparent 30%),
    conic-gradient(from 120deg, transparent 0 10%, rgba(31, 111, 235, 0.18) 10% 11%, transparent 11% 28%, rgba(242, 184, 75, 0.14) 28% 29%, transparent 29%),
    repeating-linear-gradient(90deg, rgba(31, 111, 235, 0.09) 0 1px, transparent 1px 46px);
  border-radius: 50%;
  opacity: 0.5;
  transform: rotateX(58deg) rotateZ(-12deg);
  pointer-events: none;
}

.tech-layout {
  display: grid;
  grid-template-columns: minmax(280px, 0.65fr) minmax(0, 1fr);
  gap: 42px;
  margin-top: 34px;
}

.tech-copy {
  padding: 28px;
  color: var(--white);
  background:
    radial-gradient(circle at 90% 8%, rgba(109, 94, 252, 0.18), transparent 34%),
    linear-gradient(160deg, rgba(0, 194, 255, 0.16), transparent 56%),
    var(--navy);
  border-radius: 8px;
  box-shadow:
    0 24px 60px rgba(15, 23, 42, 0.15),
    0 70px 130px rgba(31, 111, 235, 0.1);
}

.tech-copy p {
  margin-bottom: 0;
  color: #d9edf3;
  font-size: 18px;
}

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

.tech-list article {
  position: relative;
  min-height: 162px;
  padding: 24px;
  background:
    radial-gradient(circle at 86% 12%, rgba(0, 194, 255, 0.08), transparent 30%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.62), rgba(225, 241, 255, 0.32)),
    rgba(255, 255, 255, 0.38);
  border: 1px solid rgba(31, 111, 235, 0.18);
  border-radius: 8px;
  box-shadow:
    0 18px 42px rgba(15, 23, 42, 0.08),
    0 48px 96px rgba(31, 111, 235, 0.07);
  overflow: hidden;
  transform: translateZ(0);
  backdrop-filter: blur(16px) saturate(1.08);
  transition:
    transform 220ms ease,
    border-color 220ms ease,
    box-shadow 220ms ease;
}

.tech-list p {
  margin-bottom: 0;
  color: var(--muted);
}

.strengths .eyebrow {
  color: #7dd3fc;
}

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

.strength-grid p {
  min-height: 138px;
  margin: 0;
  padding: 24px;
  color: #dbeafe;
  background: rgba(255, 255, 255, 0.075);
  border: 1px solid rgba(125, 211, 252, 0.18);
  border-radius: 8px;
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.16);
  transition:
    transform 220ms ease,
    background 220ms ease;
}

.strength-grid p:hover {
  background: rgba(255, 255, 255, 0.105);
  transform: translateY(-8px);
}

.contact {
  display: grid;
  grid-template-columns: minmax(260px, 0.75fr) minmax(320px, 0.78fr);
  gap: 52px;
  align-items: start;
  background:
    radial-gradient(circle at 84% 12%, rgba(0, 194, 255, 0.11), transparent 28%),
    linear-gradient(135deg, rgba(31, 111, 235, 0.07), transparent 38%),
    var(--white);
}

.contact-form {
  position: relative;
  display: grid;
  gap: 16px;
  padding: 28px;
  border: 1px solid rgba(31, 111, 235, 0.18);
  border-radius: 8px;
  background:
    radial-gradient(circle at 86% 0, rgba(0, 194, 255, 0.08), transparent 34%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.62), rgba(225, 241, 255, 0.32)),
    rgba(255, 255, 255, 0.4);
  backdrop-filter: blur(16px) saturate(1.08);
  box-shadow:
    0 22px 54px rgba(15, 23, 42, 0.1),
    0 56px 120px rgba(31, 111, 235, 0.08);
}

.contact-form label {
  display: grid;
  gap: 8px;
  color: #27384f;
  font-weight: 700;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
  width: 100%;
  min-height: 46px;
  padding: 10px 12px;
  color: var(--ink);
  border: 1px solid #cad6e6;
  border-radius: 8px;
  background: var(--white);
  font: inherit;
}

.contact-form textarea {
  resize: vertical;
}

.site-footer {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 18px;
  padding: 24px clamp(20px, 4vw, 64px);
  color: #91a0b4;
  border-top: 1px solid rgba(148, 163, 184, 0.2);
  background: #07111f;
}

.site-footer p {
  margin: 0;
}

.site-footer a {
  color: inherit;
  text-decoration: none;
}

.site-footer a:hover {
  color: #dbeafe;
}

.site-footer > div,
.footer-records {
  display: grid;
  gap: 8px;
}

.footer-records {
  justify-items: end;
  text-align: right;
}

.footer-records p:last-child {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 16px;
  justify-content: flex-end;
}

@media (max-width: 1060px) {
  .header-cta {
    display: none;
  }

  .brand-text strong {
    max-width: 280px;
  }

  .service-grid,
  .case-grid,
  .ai-grid,
  .panorama-grid,
  .showcase-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .tech-layout {
    grid-template-columns: 1fr;
  }

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

  .section-heading {
    grid-template-columns: minmax(0, 1fr) minmax(220px, 300px);
  }
}

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

  .hero-media {
    order: -1;
  }

  .hero-system {
    min-height: 430px;
  }

  .holo-stage {
    inset: 12% 4%;
  }

  .system-card {
    width: 150px;
  }

  .hero-media img {
    max-height: 520px;
  }

}

@media (max-width: 780px) {
  .site-header {
    grid-template-columns: 1fr auto;
  }

  .site-nav,
  .header-cta {
    display: none;
  }

  .site-header.nav-open .site-nav {
    position: absolute;
    inset: 76px 14px auto;
    display: grid;
    gap: 2px;
    padding: 12px;
    color: #dbeafe;
    background: rgba(7, 17, 31, 0.96);
    border: 1px solid rgba(125, 211, 252, 0.22);
    border-radius: 8px;
    box-shadow: var(--shadow);
  }

  .site-header.nav-open .site-nav a {
    padding: 12px;
  }

  .menu-button {
    display: block;
  }

  .brand-text strong {
    max-width: 220px;
    font-size: 14px;
  }

  .hero {
    min-height: auto;
    padding-top: 42px;
  }

  h1 {
    font-size: 42px;
  }

  .hero-stats,
  .intro,
  .strengths,
  .contact {
    grid-template-columns: 1fr;
  }

  .hero-media img {
    min-height: 300px;
  }

  .service-grid,
  .case-grid,
  .ai-grid,
  .panorama-grid,
  .showcase-grid,
  .industry-render-grid,
  .timeline,
  .strength-grid,
  .tech-list {
    grid-template-columns: 1fr;
  }

  .service-card,
  .case-item,
  .ai-grid article,
  .panorama-grid article,
  .industry-render-grid article,
  .tech-list article,
  .timeline li {
    min-height: auto;
  }

  .hero-system {
    min-height: 360px;
  }

  .holo-stage {
    inset: 12% -8%;
  }

  .data-stream {
    opacity: 0.28;
  }

  .system-core {
    width: min(54%, 230px);
  }

  .system-card {
    width: 132px;
    padding: 11px 12px;
  }

  .system-card::before {
    display: none;
  }

  .system-card strong {
    font-size: 13px;
  }

  .industry-render-grid img {
    min-height: 300px;
  }

  .contact {
    gap: 28px;
  }

  .contact-direct {
    width: 100%;
  }

  .compute-panel {
    min-height: 260px;
    margin-top: 28px;
  }

  .compute-chip {
    width: 140px;
  }

  .compute-chip strong {
    font-size: 18px;
  }

  .site-footer {
    display: grid;
    justify-content: stretch;
  }

  .footer-records {
    justify-items: start;
    text-align: left;
  }

  .footer-records p:last-child {
    justify-content: flex-start;
  }
}

@media (max-width: 470px) {
  body {
    overflow-x: hidden;
  }

  section {
    padding-right: 16px;
    padding-left: 16px;
  }

  .site-header {
    min-height: 68px;
    padding: 12px 16px;
  }

  .brand-mark {
    width: 40px;
    height: 40px;
  }

  .brand-text strong {
    max-width: 170px;
  }

  h1 {
    font-size: 36px;
    line-height: 1.1;
  }

  h2 {
    font-size: 31px;
    line-height: 1.14;
  }

  .hero-actions {
    display: grid;
  }

  .hero-system {
    min-height: 300px;
  }

  .hero-stats div {
    min-height: auto;
  }

  .ai-badge {
    position: static;
    max-width: none;
    border-radius: 0;
  }

  .system-card {
    display: none;
  }

  .system-core {
    width: min(72%, 240px);
  }

  .holo-stage {
    inset: 16% -20%;
  }

  .compute-panel {
    min-height: 220px;
  }

  .contact-direct {
    grid-template-columns: 1fr;
    gap: 10px;
    padding: 16px;
  }

  .contact-direct span {
    grid-row: auto;
    width: 100%;
    height: auto;
    min-height: 44px;
  }

  .contact-direct a {
    font-size: 25px;
    overflow-wrap: anywhere;
  }

  .contact-direct small {
    grid-column: auto;
  }

  .contact-form {
    padding: 18px;
  }

  .contact-form input,
  .contact-form select,
  .contact-form textarea {
    min-width: 0;
    font-size: 15px;
  }

  .compute-rack,
  .compute-metric {
    display: none;
  }

  .site-footer {
    padding: 22px 16px;
    font-size: 13px;
  }

  .footer-records p:last-child {
    display: grid;
  }
}

@keyframes orbitSpin {
  to {
    transform: translate(-50%, -50%) rotate(360deg);
  }
}

@keyframes orbitSpinReverse {
  to {
    transform: translate(-50%, -50%) rotate(-360deg);
  }
}

@keyframes scanSweep {
  from {
    transform: rotate(0deg) translateX(-50%);
  }

  to {
    transform: rotate(360deg) translateX(-50%);
  }
}

@keyframes nodePulse {
  0%,
  100% {
    transform: translateZ(0) scale(0.78);
    opacity: 0.62;
  }

  50% {
    transform: translateZ(34px) scale(1.18);
    opacity: 1;
  }
}

@keyframes dataRise {
  from {
    background-position: 0 120px, 0 120px;
  }

  to {
    background-position: 0 -120px, 0 -120px;
  }
}

@keyframes panelFloat {
  0%,
  100% {
    transform: translate3d(0, 0, 42px);
  }

  50% {
    transform: translate3d(0, -10px, 64px);
  }
}

@keyframes corePulse {
  0%,
  100% {
    transform: translateZ(0) scale(1);
  }

  50% {
    transform: translateZ(30px) scale(1.035);
  }
}

@keyframes gridDrift {
  to {
    background-position: 38px 38px, 38px 38px;
  }
}

@keyframes textureShift {
  to {
    background-position:
      22px 22px,
      44px 44px,
      44px 44px,
      160px 160px;
  }
}

@keyframes sectionTextureDrift {
  to {
    background-position:
      18px 18px,
      44px 44px,
      54px 54px,
      240px 0;
  }
}

@keyframes computeBoardDrift {
  0%,
  100% {
    transform: perspective(800px) rotateX(58deg) rotateZ(-12deg) translateY(0);
  }

  50% {
    transform: perspective(800px) rotateX(58deg) rotateZ(-8deg) translateY(-10px);
  }
}

@keyframes computeGlow {
  0%,
  100% {
    opacity: 0.65;
  }

  50% {
    opacity: 1;
  }
}

@keyframes computeChipPulse {
  0%,
  100% {
    transform: translate(-50%, -50%) rotateX(8deg) scale(1);
  }

  50% {
    transform: translate(-50%, -50%) rotateX(8deg) scale(1.035);
  }
}

@keyframes computeBar {
  0%,
  100% {
    opacity: 0.45;
    transform: scaleX(0.68);
    transform-origin: left center;
  }

  50% {
    opacity: 1;
    transform: scaleX(1);
  }
}

@keyframes computeStream {
  from {
    opacity: 0.2;
    filter: hue-rotate(0deg);
  }

  50% {
    opacity: 1;
  }

  to {
    opacity: 0.2;
    filter: hue-rotate(80deg);
  }
}

@keyframes contactFloat {
  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-10px);
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
    scroll-behavior: auto !important;
  }
}
