

@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@300;400;500;600;700;800&family=Playfair+Display:ital,wght@0,700;1,700&display=swap');

/* Applies only to the ampersand character; surrounding text keeps its own font. */
.arial-ampersand { font-family: Arial, sans-serif; }

/* ── CSS CUSTOM PROPERTIES ── */
:root {
  /* Colors */
  --color-primary:   #003366;
  --color-accent:    #c8a84b;
  --color-red:       #b71c1c;
  --color-dark:      #0d1b2a;
  --color-light:     #f5f7fa;
  --color-white:     #ffffff;
  --color-text:      #333333;
  --color-muted:     #777777;
  --color-border:    #e0e0e0;

  /* Typography */
  --font-display:    'Playfair Display', serif;
  --font-body:       'Montserrat', sans-serif;

  /* Spacing & Shape */
  --radius:          8px;
  --radius-lg:       16px;
  --shadow:          0 4px 24px rgba(0,0,0,0.08);
  --shadow-lg:       0 8px 40px rgba(0,0,0,0.15);
  --transition:      0.3s ease;
  --max-width:       1280px;
  --section-pad:     96px 0;
}

/* ── RESET ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html  { scroll-behavior: smooth; }
body  { font-family: var(--font-body); color: var(--color-text); line-height: 1.7; overflow-x: hidden; }
img   { max-width: 100%; height: auto; display: block; }
a     { text-decoration: none; color: inherit; }
ul    { list-style: none; }

/* ── LAYOUT HELPERS ── */
.container   { max-width: var(--max-width); margin: 0 auto; padding: 0 32px; }
.section-pad { padding: var(--section-pad); }
.text-center { text-align: center; }

/* ── TYPOGRAPHY HELPERS ── */
.eyebrow {
  display: inline-block;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--color-accent);
  margin-bottom: 10px;
}
.section-title {
  font-family: var(--font-display);
  font-size: clamp(1.9rem, 4vw, 3rem);
  font-weight: 700;
  line-height: 1.2;
  color: var(--color-dark);
  margin-bottom: 16px;
}
.section-title .bracket { color: var(--color-primary); font-style: italic; }
.section-sub {
  font-size: 1rem;
  color: var(--color-muted);
  max-width: 620px;
  margin: 0 auto 48px;
  line-height: 1.8;
}

/* ── BUTTONS ── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 13px 30px;
  border-radius: 4px;
  font-family: var(--font-body);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  cursor: pointer;
  border: 2px solid transparent;
  transition: var(--transition);
}
.btn-primary        { background: var(--color-primary);  color: var(--color-white);  border-color: var(--color-primary); }
.btn-primary:hover  { background: transparent;            color: var(--color-primary); }
.btn-accent         { background: var(--color-accent);   color: var(--color-dark);   border-color: var(--color-accent); }
.btn-accent:hover   { background: transparent;            color: var(--color-accent); }

/* ── DOWNLOAD BUTTON (nav CTA — company profile) ──
   A light travels around the button frame in the brand palette. The two main
   travelling colours are re-tinted per page through --move-a / --move-b set
   inline on the anchor, so the frame always matches its host section. The
   footprint (height + fixed width) stays identical on every page so the
   navbar layout never shifts. */
@property --move-angle {
  syntax: '<angle>';
  initial-value: 0deg;
  inherits: false;
}

.btn-download {
  --move-a: var(--color-accent);
  --move-b: var(--color-red);
  position: relative;
  isolation: isolate;
  background: var(--color-primary);
  color: var(--color-white);
  font-size: 0.73rem;
  letter-spacing: 0.09em;
}

.btn-download::before {
  content: '';
  position: absolute;
  inset: -2px;                      /* covers the 2px transparent border slot */
  z-index: -1;
  border-radius: inherit;
  padding: 2px;                     /* frame thickness */
  background: conic-gradient(from var(--move-angle),
      var(--move-a) 0deg,
      var(--color-red) 100deg,
      var(--move-b) 190deg,
      var(--move-a) 290deg,
      var(--move-a) 360deg);
  -webkit-mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
  -webkit-mask-composite: xor;
  mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
  mask-composite: exclude;
  animation: moveBorderSpin 3.2s linear infinite;
}

.btn-download:hover {
  background: var(--color-primary);
  color: var(--color-white);
  transform: translateY(-2px);
  box-shadow: 0 10px 24px rgba(0, 20, 45, 0.35);
}

.btn-download .dl-icon { flex: none; }

.nav-cta {
  width: 196px;
  justify-content: center;
  padding-left: 10px;
  padding-right: 10px;
}

@keyframes moveBorderSpin { to { --move-angle: 360deg; } }

@media (prefers-reduced-motion: reduce) {
  .btn-download::before { animation: none; }
}
.btn-ghost-white    { background: transparent; color: var(--color-white); border-color: rgba(255,255,255,0.6); }
.btn-ghost-white:hover { background: var(--color-white); color: var(--color-dark); }


/* ======================================================
   TOP BAR
   ====================================================== */
#top-bar {
  background: var(--color-primary);
  padding: 8px 0;
}
.top-bar-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 8px;
}
.top-bar-contacts {
  display: flex;
  gap: 18px;
  align-items: center;
  flex-wrap: wrap;
  font-size: 0.78rem;
  color: rgba(255,255,255,0.82);
}
.top-bar-contacts a { color: rgba(255,255,255,0.82); transition: var(--transition); }
.top-bar-contacts a:hover { color: var(--color-accent); }
.top-bar-contacts .sep { opacity: 0.35; }
.top-bar-date {
  font-size: 0.75rem;
  font-weight: 700;
  color: rgba(255,255,255,0.9);
}


/* ======================================================
   NAVIGATION
   ====================================================== */
#navbar {
  position: sticky;
  top: 0;
  z-index: 999;
  background: var(--color-white);
  border-bottom: 1px solid var(--color-border);
  box-shadow: 0 2px 8px rgba(0,0,0,0.05);
  transition: box-shadow var(--transition);
}
#navbar.scrolled { box-shadow: var(--shadow); }

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 70px;
}

/* Logo */
.nav-logo {
  display: flex;
  align-items: center;
  justify-content: center;
  min-width: 0;
  flex-shrink: 0;
}
.nav-logo img {
  display: block;
  width: auto;
  max-width: min(220px, 34vw);
  height: auto;
  max-height: 46px;
  object-fit: contain;
  transform: scale(1.20);
  transform-origin: left center;
}
.nav-logo .logo-name {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--color-primary);
  line-height: 1;
}
.nav-logo .logo-sub {
  font-size: 0.6rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--color-muted);
}

/* Menu */
.nav-menu { display: flex; align-items: center; gap: 2px; }
.nav-item  { position: relative; }
/* Keep Careers immediately before Contact Us in every site navigation menu. */
.nav-menu > .nav-item:has(> .nav-link[href*="careers.html"]) { order: 90; }
.nav-menu > .nav-item:has(> .nav-link[href*="contact.html"]) { order: 91; }
.nav-link {
  display: block;
  padding: 8px 13px;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--color-dark);
  border-radius: 4px;
  transition: var(--transition);
  white-space: nowrap;
}
.nav-link:hover, .nav-item.active > .nav-link {
  color: var(--color-primary);
  background: rgba(0,51,102,0.06);
}
.has-dropdown > .nav-link::after { content: ' ▾'; font-size: 0.6rem; opacity: 0.45; }

/* Dropdown */
.dropdown {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  background: var(--color-white);
  min-width: 240px;
  border-radius: var(--radius);
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--color-border);
  overflow: hidden;
  z-index: 200;
}
.has-dropdown:hover .dropdown { display: block; }
.dropdown a {
  display: block;
  padding: 10px 20px;
  font-size: 0.82rem;
  font-weight: 500;
  color: var(--color-text);
  border-bottom: 1px solid var(--color-border);
  transition: var(--transition);
}
.dropdown a:last-child { border-bottom: none; }
.dropdown a:hover { background: var(--color-light); color: var(--color-primary); padding-left: 28px; }

/* Hamburger */
.hamburger { display: none; flex-direction: column; gap: 5px; cursor: pointer; padding: 8px; }
.hamburger span { display: block; width: 24px; height: 2px; background: var(--color-dark); border-radius: 2px; transition: var(--transition); }


/* ======================================================
   HERO — VIDEO BACKGROUND
   ====================================================== */
#hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  background: var(--color-dark);
  overflow: hidden;
  border-bottom-left-radius: 24px;
  border-bottom-right-radius: 24px;
}
.hero-video {
  position: absolute;
  inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  opacity: 0.4;
  pointer-events: none;
}
.hero-video::-webkit-media-controls {
  display: none !important;
}
.hero-video::-webkit-media-controls-panel {
  display: none !important;
}
.hero-video::-webkit-media-controls-play-button,
.hero-video::-webkit-media-controls-start-playback-button {
  display: none !important;
}
/* Fallback bg image if video not loaded */
.hero-video-fallback {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, #001a33 0%, #003366 50%, #001a33 100%);
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(0,20,50,0.88) 0%, rgba(0,51,102,0.45) 60%, transparent 100%);
  pointer-events: none;
}
/* ------------------------------------------------------
   HERO — ANIMATED 3D TECHNOLOGY SCENE
   Canvas data-globe + floating 3D orbital rings and
   solution chips. Sizing vars are published by js/hero-3d.js
   ------------------------------------------------------ */
.hero-3d {
  position: absolute;
  inset: 0;
  z-index: 1;
  overflow: hidden;
  pointer-events: none;
  --hero-globe-x: 70%;
  --hero-globe-y: 50%;
  --hero-globe-r: 200px;
  --hero-px: 0px;
  --hero-py: 0px;
}
.hero-3d-canvas {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  display: block;
}

/* Receding tech grid floor */
.hero-3d-floor {
  position: absolute;
  left: -18%;
  right: -18%;
  bottom: -8%;
  height: 58%;
  background-image:
    linear-gradient(rgba(122, 214, 255, 0.20) 1px, transparent 1px),
    linear-gradient(90deg, rgba(122, 214, 255, 0.14) 1px, transparent 1px);
  background-size: 64px 64px;
  transform: perspective(620px) rotateX(74deg);
  transform-origin: center bottom;
  -webkit-mask-image: linear-gradient(to top, #000 0%, rgba(0, 0, 0, 0.35) 44%, transparent 84%);
  mask-image: linear-gradient(to top, #000 0%, rgba(0, 0, 0, 0.35) 44%, transparent 84%);
  animation: heroFloorFlow 9s linear infinite;
  opacity: 0.7;
}

/* 3D stage — centred on the canvas globe, sized from --hero-globe-r.
   Holds the energy core + orbital rings, which are all px-sized around the
   stage centre, so the stage box itself only ever acts as a centre anchor. */
.hero-3d-stage {
  position: absolute;
  left: var(--hero-globe-x);
  top: var(--hero-globe-y);
  width: calc(var(--hero-globe-r) * 2.9);
  height: calc(var(--hero-globe-r) * 2.9);
  transform: translate(-50%, -50%) translate3d(var(--hero-px), var(--hero-py), 0);
  perspective: 900px;
  transform-style: preserve-3d;
}

/* Energy core glow behind the wireframe globe */
.hero-core {
  position: absolute;
  left: 50%;
  top: 50%;
  width: calc(var(--hero-globe-r) * 1.75);
  height: calc(var(--hero-globe-r) * 1.75);
  border-radius: 50%;
  background:
    radial-gradient(circle,
      rgba(200, 168, 75, 0.30) 0%,
      rgba(122, 214, 255, 0.14) 36%,
      transparent 68%);
  transform: translate(-50%, -50%);
  animation: heroCorePulse 6.5s ease-in-out infinite;
  opacity: 0.6;
}

/* Orbital rings (CSS 3D, rotateX + spinning border layers) */
.hero-ring {
  position: absolute;
  left: 50%;
  top: 50%;
  border-radius: 50%;
  transform-style: preserve-3d;
}
.hero-ring--1 {
  width: calc(var(--hero-globe-r) * 2.36);
  height: calc(var(--hero-globe-r) * 2.36);
  margin: calc(var(--hero-globe-r) * -1.18) 0 0 calc(var(--hero-globe-r) * -1.18);
  transform: rotateX(74deg) rotateZ(8deg);
}
.hero-ring--1::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: 50%;
  border: 1px dashed rgba(122, 214, 255, 0.38);
  animation: heroSpinZ 26s linear infinite;
}
.hero-ring--2 {
  width: calc(var(--hero-globe-r) * 2.72);
  height: calc(var(--hero-globe-r) * 2.72);
  margin: calc(var(--hero-globe-r) * -1.36) 0 0 calc(var(--hero-globe-r) * -1.36);
  transform: rotateX(70deg) rotateZ(-14deg);
}
.hero-ring--2::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: 50%;
  border: 1px solid rgba(200, 168, 75, 0.32);
  animation: heroSpinZ 34s linear infinite reverse;
}
.hero-ring--2::after {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: 50%;
  background: radial-gradient(circle at 50% 0%,
      rgba(255, 238, 196, 0.95) 0 3.5px,
      rgba(200, 168, 75, 0.5) 4.5px,
      transparent 12px);
  animation: heroSpinZ 18s linear infinite;
}
.hero-ring--3 {
  width: calc(var(--hero-globe-r) * 2.08);
  height: calc(var(--hero-globe-r) * 2.08);
  margin: calc(var(--hero-globe-r) * -1.04) 0 0 calc(var(--hero-globe-r) * -1.04);
  transform: rotateX(-64deg) rotateZ(18deg);
}
.hero-ring--3::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: 50%;
  border: 1px dashed rgba(238, 247, 255, 0.24);
  animation: heroSpinZ 20s linear infinite reverse;
}

/* Vertical light sweep */
.hero-3d-scan {
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  height: 34%;
  background: linear-gradient(to bottom,
      transparent 0%,
      rgba(122, 214, 255, 0.10) 62%,
      rgba(200, 168, 75, 0.16) 88%,
      transparent 100%);
  animation: heroScanSweep 9.5s linear infinite;
  opacity: 0.5;
}

/* Floating solution chips (3D depth + parallax).
   Anchors are percentages of the HERO box (the .hero-3d layer), not of the
   stage: the top pair rides above the headline, the middle pair sits in the
   free side gutters, the bottom pair sits below the CTA row — so a chip never
   overlaps the copy and never gets clipped by the hero edges.
   --delay and --depth stay inline on each chip in index.html. */
.hero-chip {
  position: absolute;
  left: var(--x, 50%);
  top: var(--y, 50%);
  transform: translate(-50%, -50%) translate3d(calc(var(--hero-px) * var(--depth, 1.4)),
      calc(var(--hero-py) * var(--depth, 1.4)), 0);
}
.hero-chip--sap      { --x: 24%; --y: 8%;  --chip-brand: #2080c5; --chip-glow: rgba(32, 128, 197, 0.55); }
.hero-chip--odoo     { --x: 80%; --y: 8%;  --chip-brand: #a06cc9; --chip-glow: rgba(160, 108, 201, 0.55); }
.hero-chip--huawei   { --x: 12%; --y: 50%; --chip-brand: #ed402a; --chip-glow: rgba(237, 64, 42, 0.55); }
.hero-chip--pos      { --x: 86%; --y: 48%; --chip-brand: #7cbe2e; --chip-glow: rgba(124, 190, 46, 0.55); }
.hero-chip--cloudops { --x: 20%; --y: 90%; --chip-brand: #6ee2ff; --chip-glow: rgba(110, 226, 255, 0.55); }
.hero-chip--erp      { --x: 64%; --y: 92%; --chip-brand: #c8a84b; --chip-glow: rgba(200, 168, 75, 0.60); }
.hero-chip-inner {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 9px;
  padding: 8px 16px 8px 13px;
  border-radius: 999px;
  border: 1px solid rgba(200, 168, 75, 0.32);
  background: linear-gradient(135deg,
      rgba(13, 27, 42, 0.80) 0%,
      rgba(0, 51, 102, 0.58) 100%);
  -webkit-backdrop-filter: blur(10px);
  backdrop-filter: blur(10px);
  color: rgba(240, 248, 255, 0.94);
  font-size: 0.66rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  white-space: nowrap;
  box-shadow:
    0 14px 34px rgba(0, 12, 30, 0.45),
    inset 0 1px 0 rgba(255, 255, 255, 0.10),
    inset 0 0 20px rgba(200, 168, 75, 0.05);
  animation: heroChipFloat 7s ease-in-out infinite;
  animation-delay: var(--delay, 0s);
}
/* A fine gold glint along the top edge of every chip — the same hairline
   accent used across the site's gold-on-navy components. */
.hero-chip-inner::after {
  content: '';
  position: absolute;
  left: 16px;
  right: 16px;
  top: -1px;
  height: 1px;
  border-radius: 999px;
  background: linear-gradient(90deg,
      transparent,
      rgba(200, 168, 75, 0.70) 50%,
      transparent);
  pointer-events: none;
}
.hero-chip-dot {
  width: 7px;
  height: 7px;
  flex: none;
  border-radius: 50%;
  background: var(--chip-brand, var(--color-accent));
  box-shadow:
    0 0 10px 2px var(--chip-glow, rgba(200, 168, 75, 0.6)),
    inset 0 0 3px rgba(255, 255, 255, 0.55);
  animation: heroDotBlink 2.6s ease-in-out infinite;
  animation-delay: var(--delay, 0s);
}

.hero-content {
  position: relative;
  z-index: 2;
  color: var(--color-white);
  max-width: 820px;
}
.hero-content h1 {
  font-family: var(--font-display);
  font-size: clamp(2.6rem, 6vw, 5.2rem);
  line-height: 1.08;
  margin-bottom: 26px;
}
.hero-content h1 em { color: var(--color-accent); font-style: italic; }
.hero-content p {
  font-size: 1.05rem;
  opacity: 0.88;
  max-width: 560px;
  margin-bottom: 38px;
  line-height: 1.85;
}
.hero-btns { display: flex; gap: 14px; flex-wrap: wrap; }

.hero-mute {
  position: absolute;
  bottom: 32px; right: 32px;
  z-index: 3;
  width: 46px; height: 46px;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,0.3);
  background: rgba(255,255,255,0.12);
  -webkit-backdrop-filter: blur(8px);
  backdrop-filter: blur(8px);
  display: flex; align-items: center; justify-content: center;
  cursor: pointer;
  color: var(--color-white);
  font-size: 1.1rem;
  transition: var(--transition);
}
.hero-mute:hover { background: rgba(255,255,255,0.25); }

.scroll-hint {
  position: absolute;
  bottom: 36px; left: 50%;
  transform: translateX(-50%);
  z-index: 3;
  display: flex; flex-direction: column; align-items: center; gap: 6px;
  color: rgba(255,255,255,0.5);
  font-size: 0.68rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}
.scroll-line {
  width: 1px; height: 44px;
  background: linear-gradient(to bottom, transparent, rgba(255,255,255,0.45));
  animation: pulse 2s infinite;
}
@keyframes pulse { 0%,100%{opacity:.3} 50%{opacity:1} }


/* ======================================================
   ABOUT SPLIT
   ====================================================== */
#about-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 580px;
  margin-top: clamp(12px, 2vw, 24px);
  gap: 32px;
  align-items: stretch;
  padding-top: 24px;
  padding-bottom: 24px;
}

.about-img {
  position: relative;
  overflow: hidden;
  border-radius: 20px;
  box-shadow: var(--shadow-lg);
  width: 100%;
  height: 100%;
  min-height: 580px;
  display: grid;
  place-items: center;
  isolation: isolate;
  background:
    radial-gradient(circle at 76% 20%, rgba(81, 190, 255, 0.34), transparent 25%),
    radial-gradient(circle at 18% 86%, rgba(66, 183, 165, 0.23), transparent 30%),
    linear-gradient(135deg, #031b39 0%, #075b83 100%);
}
.about-img::before {
  content: '';
  position: absolute;
  inset: 0;
  z-index: -1;
  opacity: 0.4;
  background-image: radial-gradient(rgba(185, 232, 255, 0.42) 1px, transparent 1px);
  background-size: 26px 26px;
  -webkit-mask-image: linear-gradient(135deg, #000, transparent 72%);
  mask-image: linear-gradient(135deg, #000, transparent 72%);
  animation: about-grid-drift 18s linear infinite;
}
.about-img::after {
  content: '';
  position: absolute;
  width: 360px;
  height: 360px;
  border: 1px solid rgba(141, 213, 255, 0.24);
  border-radius: 50%;
  top: -185px;
  right: -150px;
  z-index: -1;
  animation: about-orbit-drift 15s ease-in-out infinite;
}
.about-highlight {
  position: relative;
  width: min(460px, 88%);
  max-width: 100%;
  padding: 44px 34px 32px;
  background: linear-gradient(145deg, rgba(8, 44, 79, 0.76), rgba(4, 28, 57, 0.64));
  border-radius: 30px;
  box-shadow: 0 30px 80px rgba(0, 9, 24, 0.35);
  border: 1px solid rgba(181, 231, 255, 0.32);
  -webkit-backdrop-filter: blur(14px);
  backdrop-filter: blur(14px);
  display: grid;
  gap: 26px;
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 0.65s ease, transform 0.65s ease, box-shadow 0.35s ease, border-color 0.35s ease;
}
.about-highlight.visible {
  opacity: 1;
  transform: translateY(0);
}
.about-img:hover .about-highlight {
  border-color: rgba(193, 236, 255, 0.58);
  box-shadow: 0 36px 90px rgba(0, 9, 24, 0.48);
}
.about-highlight .counter-ring {
  display: grid;
  place-items: center;
  position: relative;
  width: 238px;
  height: 238px;
  margin: 0 auto 16px;
  border-radius: 50%;
  background:
    radial-gradient(circle at 38% 28%, rgba(153, 227, 255, 0.26), transparent 22%),
    radial-gradient(circle at 50% 50%, #0a5683 0%, #06385f 62%, #042b4e 100%);
  box-shadow: inset 0 0 0 1px rgba(189, 235, 255, 0.3), 0 24px 60px rgba(0, 12, 32, 0.38);
  overflow: visible;
  animation: about-ring-breathe 4s ease-in-out infinite;
  transition: transform 0.45s ease, box-shadow 0.45s ease;
}
.about-img:hover .counter-ring {
  transform: scale(1.045);
  box-shadow: inset 0 0 0 1px rgba(218, 247, 255, 0.52), 0 30px 74px rgba(0, 12, 32, 0.5);
}
.about-highlight .counter-ring::before {
  content: '';
  position: absolute;
  inset: 14px;
  border-radius: 50%;
  border: 1px dashed rgba(181, 231, 255, 0.36);
  opacity: 0.7;
  z-index: 2;
  animation: about-spin 22s linear infinite;
}
.about-highlight .counter-ring::after {
  content: '';
  position: absolute;
  inset: -28px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(96, 197, 255, 0.26), transparent 62%);
  filter: blur(16px);
  opacity: 0.8;
  z-index: -2;
}
.about-highlight .counter-orbit {
  position: absolute;
  inset: -16px;
  z-index: 3;
  border: 1px solid rgba(141, 213, 255, 0.22);
  border-radius: 50%;
  pointer-events: none;
}
.about-highlight .counter-orbit i {
  position: absolute;
  top: 16%;
  left: 18%;
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: #a7e5ff;
  box-shadow: 0 0 0 6px rgba(167, 229, 255, 0.14), 0 0 18px #8dd5ff;
}
.about-highlight .counter-orbit--one { animation: about-spin 11s linear infinite; }
.about-highlight .counter-orbit--two {
  inset: -31px;
  border-style: dashed;
  border-color: rgba(66, 183, 165, 0.25);
  animation: about-spin-reverse 16s linear infinite;
}
.about-highlight .counter-orbit--two i {
  top: 76%;
  left: 58%;
  width: 7px;
  height: 7px;
  background: #65d5c1;
  box-shadow: 0 0 0 5px rgba(101, 213, 193, 0.14), 0 0 16px #65d5c1;
}
.about-highlight .counter-spark {
  position: absolute;
  z-index: 4;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: #fff;
  box-shadow: 0 0 14px 3px rgba(255, 255, 255, 0.66);
  animation: about-spark 2.8s ease-in-out infinite;
}
.about-highlight .counter-spark--one { top: 16%; right: 17%; }
.about-highlight .counter-spark--two { bottom: 19%; left: 9%; animation-delay: -1.4s; }
.about-highlight .counter-svg {
  width: 100%;
  height: 100%;
  position: relative;
  z-index: 1;
  transform: rotate(-90deg);
}
.about-highlight .counter-bg,
.about-highlight .counter-progress {
  fill: none;
  stroke-linecap: round;
}
.about-highlight .counter-bg {
  stroke: rgba(188, 233, 255, 0.18);
  stroke-width: 10;
}
.about-highlight .counter-progress {
  stroke-width: 10;
  stroke-dasharray: 314;
  stroke-dashoffset: 314;
  transition: stroke-dashoffset 2s ease;
  filter: drop-shadow(0 0 18px rgba(78, 159, 255, 0.34));
}
.about-highlight .counter-label {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  padding: 0 10px;
  z-index: 4;
}
.about-highlight .count-number {
  display: block;
  font-size: 2.6rem;
  font-weight: 900;
  color: #fff;
  letter-spacing: -0.04em;
  line-height: 1;
  text-shadow: 0 4px 20px rgba(0, 12, 32, 0.5);
}
.about-highlight .count-text {
  display: block;
  margin-top: 8px;
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.24em;
  color: #a7e5ff;
  opacity: 1;
}
.about-highlight .counter-copy {
  margin: 0 auto;
  max-width: 100%;
  font-size: 0.95rem;
  line-height: 1.85;
  color: rgba(255,255,255,0.86);
  opacity: 1;
  text-align: center;
  padding: 18px 22px;
  border-radius: 18px;
  background: rgba(181, 231, 255, 0.08);
  border: 1px solid rgba(181, 231, 255, 0.18);
  box-shadow: inset 0 0 0 1px rgba(255,255,255,0.08);
  position: relative;
}
.about-highlight .counter-copy::before {
  content: '';
  position: absolute;
  top: 18px;
  left: 18px;
  width: 4px;
  height: 32px;
  border-radius: 999px;
  background: linear-gradient(180deg, #8dd5ff 0%, #2f6dcc 100%);
}

.about-copy {
  background: var(--color-light);
  color: var(--color-dark);
  padding: 64px 56px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  border-radius: 20px;
  box-shadow: var(--shadow);
  height: 100%;
  min-height: 100%;
  font-family: var(--font-body);
  transition: transform 0.35s ease, box-shadow 0.35s ease;
}
.about-copy:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}
.about-copy .eyebrow { color: var(--color-accent); font-weight: 700; font-family: var(--font-body); }
.about-copy .section-title { color: var(--color-dark); font-weight: 800; font-size: clamp(2rem, 3.8vw, 3rem); font-family: var(--font-display); }
.about-copy .section-title .bracket {
  color: var(--color-accent);
  font-style: italic;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.05em;
  letter-spacing: -0.02em;
  display: inline-block;
  transform: translateY(-4px);
  -webkit-font-smoothing: antialiased;
  text-shadow: 0 1px 0 rgba(0,0,0,0.06);
}
.about-copy p { color: rgba(13,27,42,0.78); margin-bottom: 28px; line-height: 1.9; font-size: 1.02rem; }
.about-links { display:flex; flex-direction:column; gap:20px; margin-top:8px; }
.about-links a {
  display: flex; align-items: center; justify-content: space-between;
  font-size: 0.95rem; font-weight: 700;
  color: var(--color-dark);
  padding: 6px 0;
  font-family: var(--font-body);
}
.about-links a .arrow { color: var(--color-red); font-weight: 700; margin-left: 12px; }
.about-links a:hover { color: var(--color-red); }

@keyframes about-grid-drift {
  to { background-position: 52px 52px; }
}
@keyframes about-orbit-drift {
  50% { transform: translate(-28px, 26px) scale(1.08); }
}
@keyframes about-ring-breathe {
  0%, 100% { filter: brightness(0.96); }
  50% { filter: brightness(1.13); }
}
@keyframes about-spin {
  to { transform: rotate(360deg); }
}
@keyframes about-spin-reverse {
  to { transform: rotate(-360deg); }
}
@keyframes about-spark {
  0%, 100% { opacity: 0.35; transform: scale(0.7); }
  50% { opacity: 1; transform: scale(1.45); }
}


/* ======================================================
   BUILDING BLOCKS
   ====================================================== */
#building-blocks { background: var(--color-light); }
.blocks-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  margin-top: 52px;
}
.block-card {
  display: flex;
  flex-direction: column;
  background: var(--color-white);
  border-radius: var(--radius-lg);
  padding: 40px 30px;
  text-align: center;
  box-shadow: var(--shadow);
  transition: var(--transition);
  border-bottom: 4px solid transparent;
}
.block-card:hover { transform: translateY(-8px); box-shadow: var(--shadow-lg); border-bottom-color: var(--color-accent); }
.block-card a:focus-visible { outline: 3px solid rgba(78, 156, 255, 0.55); outline-offset: 4px; border-radius: 2px; }
.block-card img   { height: 60px; width: auto; margin: 0 auto 18px; }
.block-card h3    { font-size: 1.05rem; font-weight: 700; margin-bottom: 12px; }
.block-card a {
  display: inline-flex; align-items: center; gap: 6px;
  align-self: flex-end;
  margin-top: auto;
  font-size: 0.78rem; font-weight: 700;
  text-transform: uppercase; letter-spacing: 0.08em;
  color: var(--color-primary); transition: var(--transition);
}
.block-card a:hover { color: var(--color-accent); gap: 10px; }


/* ======================================================
   COMPANY LOGOS MARQUEE
   ====================================================== */
#companies { padding: 56px 0; overflow: hidden; border-top: 1px solid var(--color-border); border-bottom: 1px solid var(--color-border); }
.logos-wrap { overflow: hidden; }
.index-logos-wrap { margin-top: 40px; }
.logos-track {
  display: flex;
  gap: 56px;
  align-items: center;
  width: max-content;
  animation: marquee 28s linear infinite;
}
.logos-track:hover { animation-play-state: paused; }
.logos-track img {
  height: 52px; width: auto;
  filter: grayscale(1) opacity(0.45);
  flex-shrink: 0;
  transition: filter var(--transition);
}
.logos-track img:hover { filter: none; }
@keyframes marquee { from{transform:translateX(0)} to{transform:translateX(-50%)} }

.index-newsletter-eyebrow { color: var(--color-accent); }


/* ======================================================
   WHO WE SERVE
   ====================================================== */
#serve { background: var(--color-dark); }
#serve .section-title { color: var(--color-white); }
#serve .section-title .bracket { color: var(--color-accent); }
#serve .section-sub { color: rgba(255,255,255,0.55); }

.serve-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
  margin-top: 52px;
}
.serve-card {
  background: rgba(255,255,255,0.035);
  border: 1px solid rgba(255,255,255,0.06);
  padding: 40px 30px;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}
.serve-card::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0;
  width: 0; height: 3px;
  background: var(--color-accent);
  transition: width var(--transition);
}
.serve-card:hover::after  { width: 100%; }
.serve-card:hover         { background: rgba(0,51,102,0.35); }
.serve-icon {
  width: 52px; height: 52px;
  background: rgba(200,168,75,0.12);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.4rem;
  margin-bottom: 18px;
}
.serve-card h3 { font-size: 1rem; font-weight: 700; color: var(--color-white); margin-bottom: 10px; }
.serve-card p  { font-size: 0.85rem; color: rgba(255,255,255,0.55); line-height: 1.75; }


/* ======================================================
   LEGACY VIDEO
   ====================================================== */
#legacy-video { background: var(--color-light); }
.legacy-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 72px;
  align-items: center;
}
.video-thumb {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  cursor: pointer;
}
.video-thumb img        { width: 100%; display: block; }
.video-thumb video      { width: 100%; display: block; }
.play-overlay {
  position: absolute;
  inset: 0;
  display: flex; align-items: center; justify-content: center;
  background: rgba(0,0,0,0.28);
  transition: background var(--transition);
}
.play-overlay:hover      { background: rgba(0,0,0,0.45); }
.play-circle {
  width: 74px; height: 74px;
  border-radius: 50%;
  background: rgba(255,255,255,0.92);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.8rem;
  color: var(--color-primary);
  box-shadow: 0 8px 32px rgba(0,0,0,0.25);
  transition: transform var(--transition);
}
.video-thumb:hover .play-circle { transform: scale(1.12); }
.legacy-copy .eyebrow { display: block; margin-bottom: 8px; }
.legacy-copy p { color: var(--color-muted); margin-bottom: 28px; line-height: 1.9; }


/* ======================================================
   BUSINESS FUNCTIONS
   ====================================================== */
#loading-screen {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background-color: #ffffff;
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 99999;
  transition: opacity 0.5s ease, visibility 0.5s;
}

.loader-video {
  width: min(420px, 65vw);
  height: auto;
  max-height: 55vh;
  object-fit: contain;
}

#loading-screen.hidden,
.hide-loader #loading-screen {
  opacity: 0 !important;
  visibility: hidden !important;
  pointer-events: none !important;
  display: none !important;
}

   .functions-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 22px;
  margin-top: 52px;
}
.fn-card {
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: var(--transition);
  background: var(--color-white);
}
.fn-card:hover { transform: translateY(-7px); box-shadow: var(--shadow-lg); }
.fn-card-img   { overflow: hidden; height: 190px; }
.fn-card-img img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.6s ease; }
.fn-card:hover .fn-card-img img { transform: scale(1.08); }
.fn-card-body { padding: 18px 20px; }
.fn-card-body h3 { font-size: 0.92rem; font-weight: 700; margin-bottom: 6px; }
.fn-card-body p  { font-size: 0.8rem; color: var(--color-muted); line-height: 1.6; }


/* ======================================================
   ADDED VALUE / MARKET SHARE
   ====================================================== */
#added-value { background: var(--color-primary); }
.av-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}
.av-copy .section-title { color: var(--color-white); }
.av-copy .section-title .bracket { color: var(--color-accent); }
.av-copy p { color: rgba(255,255,255,0.75); line-height: 1.9; }
.market-cards { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.market-card {
  background: rgba(255,255,255,0.07);
  border-radius: var(--radius);
  padding: 28px 24px;
  border-left: 4px solid var(--color-accent);
  text-align: center;
}
.market-card .big { font-family: var(--font-display); font-size: 3rem; font-weight: 700; color: var(--color-accent); display: block; line-height: 1; }
.market-card p { color: rgba(255,255,255,0.65); font-size: 0.82rem; margin-top: 8px; }


/* ======================================================
   GROWTH CHART
   ====================================================== */
#growth { background: var(--color-dark); }
.growth-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.growth-copy .section-title { color: var(--color-white); }
.growth-copy .section-title .bracket { color: var(--color-accent); }
.growth-copy p { color: rgba(255,255,255,0.65); margin-bottom: 32px; line-height: 1.9; }
.growth-ctas   { display: flex; gap: 12px; flex-wrap: wrap; }
.growth-img img { border-radius: var(--radius-lg); box-shadow: var(--shadow-lg); width: 100%; }


/* ======================================================
   AT A GLANCE — STATS GRID
   ====================================================== */
#glance { background: var(--color-light); }
.glance-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2px;
  margin-top: 52px;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow);
}
.glance-cell {
  background: var(--color-white);
  padding: 34px 20px;
  text-align: center;
  border: 1px solid var(--color-border);
  transition: var(--transition);
}
.glance-cell:hover { background: var(--color-primary); }
.glance-cell:hover .g-num,
.glance-cell:hover .g-label { color: var(--color-white); }
.g-num   { font-family: var(--font-display); font-size: 2rem; font-weight: 700; color: var(--color-primary); display: block; line-height: 1.1; }
.g-label { font-size: 0.68rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.1em; color: var(--color-muted); margin-top: 6px; display: block; }


/* ======================================================
   NEWSLETTER
   ====================================================== */
#newsletter { background: var(--color-primary); }
.nl-inner { max-width: 580px; margin: 0 auto; text-align: center; }
.nl-inner .section-title { color: var(--color-white); }
.nl-inner p { color: rgba(255,255,255,0.7); margin-bottom: 32px; }
.nl-form { display: flex; gap: 10px; }
.nl-form input {
  flex: 1;
  padding: 13px 20px;
  border: 2px solid rgba(255,255,255,0.25);
  border-radius: 4px;
  background: rgba(255,255,255,0.1);
  color: var(--color-white);
  font-family: var(--font-body);
  font-size: 0.9rem;
  outline: none;
  transition: var(--transition);
}
.nl-form input::placeholder { color: rgba(255,255,255,0.45); }
.nl-form input:focus { border-color: var(--color-accent); }


/* ======================================================
   BOARD OF DIRECTORS
   ====================================================== */
.board-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 20px;
  margin-top: 52px;
}
.board-card { text-align: center; transition: var(--transition); }
.board-card:hover { transform: translateY(-6px); }
.board-avatar {
  width: 110px; height: 110px;
  border-radius: 50%;
  margin: 0 auto 14px;
  background: var(--color-light);
  border: 4px solid var(--color-border);
  display: flex; align-items: center; justify-content: center;
  font-size: 2.2rem;
  overflow: hidden;
  transition: border-color var(--transition);
}
.board-card:hover .board-avatar { border-color: var(--color-accent); }
.board-avatar img { width: 100%; height: 100%; object-fit: cover; }
.board-card h4 { font-size: 0.9rem; font-weight: 700; color: var(--color-dark); margin-bottom: 4px; }
.board-card p  { font-size: 0.78rem; color: var(--color-muted); }


/* ======================================================
   LOGISTICS CTA BANNER
   ====================================================== */
#logistics-cta {
  background: linear-gradient(135deg, var(--color-primary) 0%, #001f40 100%);
  padding: 64px 0;
}
.lc-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  flex-wrap: wrap;
}
.lc-copy .section-title { color: var(--color-white); font-size: 2rem; margin-bottom: 10px; }
.lc-copy p { color: rgba(255,255,255,0.7); max-width: 600px; line-height: 1.8; }
.lc-btns   { display: flex; gap: 12px; flex-shrink: 0; }


/* ======================================================
   NEWS TICKER
   ====================================================== */
#ticker { background: var(--color-accent); padding: 12px 0; overflow: hidden; }
.ticker-inner { display: flex; gap: 80px; width: max-content; animation: marquee 20s linear infinite; }
.tick-item {
  display: flex; align-items: center; gap: 10px;
  font-size: 0.8rem; font-weight: 600;
  color: var(--color-dark);
  white-space: nowrap;
}
.tick-item::before { content: '◆'; font-size: 0.45rem; color: var(--color-primary); }


/* ======================================================
   FOOTER
   ====================================================== */
#footer { background: var(--color-dark); color: rgba(255,255,255,0.7); padding: 80px 0 0; }
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.4fr;
  gap: 48px;
  padding-bottom: 56px;
  border-bottom: 1px solid rgba(255,255,255,0.07);
}
.ft-brand .logo-name {
  font-family: var(--font-display);
  font-size: 1.9rem;
  font-weight: 700;
  color: var(--color-white);
  line-height: 1;
}
.ft-brand .logo-sub {
  font-size: 0.6rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.35);
  margin-bottom: 18px;
}
.ft-brand p { font-size: 0.86rem; line-height: 1.8; margin-bottom: 24px; }
.socials     { display: flex; gap: 9px; }
.soc-btn {
  width: 36px; height: 36px;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,0.15);
  display: flex; align-items: center; justify-content: center;
  font-size: 0.8rem;
  transition: var(--transition);
}
.soc-btn:hover { background: var(--color-accent); border-color: var(--color-accent); color: var(--color-dark); }
.soc-btn img { width: 100%; height: 100%; display: block; object-fit: contain; border-radius: inherit; }

.ft-col h5 {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--color-accent);
  margin-bottom: 18px;
}
.ft-col ul { display: flex; flex-direction: column; gap: 9px; }
.ft-col ul a { font-size: 0.85rem; color: rgba(255,255,255,0.6); transition: var(--transition); }
.ft-col ul a:hover { color: var(--color-white); padding-left: 5px; }

.ft-contact-item {
  display: flex; gap: 10px;
  margin-bottom: 12px;
  font-size: 0.85rem;
}
.ft-contact-item .ic { color: var(--color-accent); flex-shrink: 0; margin-top: 2px; }
.ft-contact-item a { color: rgba(255,255,255,0.6); transition: var(--transition); }
.ft-contact-item a:hover { color: var(--color-accent); }
.ft-map {
  margin-top: 14px;
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid rgba(255,255,255,0.08);
}
.ft-map iframe { display: block; width: 100%; height: 150px; border: 0; }

.footer-bottom {
  padding: 22px 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.78rem;
  opacity: 0.45;
  flex-wrap: wrap;
  gap: 10px;
}


/* ======================================================
   RESPONSIVE
   ====================================================== */
@media (max-width: 1024px) {
  .functions-grid { grid-template-columns: repeat(3, 1fr); }
  .board-grid     {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 32px 24px;
  }
  .board-card     { flex: 0 1 200px; }
  .footer-grid    { grid-template-columns: 1fr 1fr; }
  .av-layout      { grid-template-columns: 1fr; }
  .hero-3d        { opacity: 0.62; }
  .hero-chip-inner { padding: 7px 12px; font-size: 0.6rem; letter-spacing: 0.1em; }
  /* 861-1024px: the copy widens, so the side gutters narrow — tuck both gutter
     chips tight against the hero edges to stay clear of the paragraph. */
  .hero-chip--huawei { --x: 9%; }
  .hero-chip--pos    { --x: 88%; }
}

/* Tablet portrait / large phones: the copy fills most of the width and the side
   gutters can no longer fit a chip, so only the key chips remain — the third one
   drops to the free strip below the CTA row (clear of the centred scroll hint). */
@media (max-width: 860px) {
  .hero-chip:not(.hero-chip--key) { display: none; }
  .hero-chip--pos { --x: 78%; --y: 88%; }
}

@media (max-width: 768px) {
  :root { --section-pad: 60px 0; }
  .nav-menu, .nav-cta       { display: none; }
  .hamburger                { display: flex; }
  .nav-menu.open {
    display: flex; flex-direction: column;
    position: absolute; top: 70px; left: 0; width: 100%;
    background: var(--color-white);
    padding: 12px 16px;
    box-shadow: var(--shadow-lg);
    gap: 0;
  }
  .has-dropdown .dropdown { position: static; display: none; box-shadow: none; border: none; padding-left: 12px; }
  .has-dropdown.open .dropdown { display: block; }
  #about-split { grid-template-columns: 1fr; }
  .about-copy  { padding: 52px 32px; }
  .about-img { min-height: 520px; }
  .about-highlight { width: min(460px, 90%); }
  .blocks-grid { grid-template-columns: 1fr; }
  .serve-grid  { grid-template-columns: 1fr 1fr; }
  .legacy-layout { grid-template-columns: 1fr; gap: 40px; }
  .functions-grid { grid-template-columns: 1fr 1fr; }
  .growth-layout  { grid-template-columns: 1fr; }
  .glance-grid    { grid-template-columns: repeat(2, 1fr); }
  .board-grid     { gap: 24px 16px; }
  .board-card     { flex: 0 1 160px; }
  .lc-inner       { flex-direction: column; }
  .footer-grid    { grid-template-columns: 1fr; }
  .nl-form        { flex-direction: column; }
  .hero-3d        { opacity: 0.45; }
  .hero-3d-floor  { height: 44%; background-size: 44px 44px; }
  .hero-chip--key .hero-chip-inner { font-size: 0.56rem; letter-spacing: 0.08em; padding: 6px 10px; }
}
@media (max-width: 480px) {
  .hero-content h1   { font-size: 2.4rem; }
  .serve-grid        { grid-template-columns: 1fr; }
  .functions-grid    { grid-template-columns: 1fr; }
  .board-card        { flex: 0 1 calc(50% - 10px); }
  .about-img { min-height: 480px; }
  .about-highlight { padding: 34px 20px 24px; }
  .about-highlight .counter-ring { width: 200px; height: 200px; }
  .about-highlight .counter-copy { padding: 15px 17px; font-size: 0.88rem; }
}

@media (prefers-reduced-motion: reduce) {
  .about-img::before,
  .about-img::after,
  .about-highlight .counter-ring,
  .about-highlight .counter-ring::before,
  .about-highlight .counter-orbit,
  .about-highlight .counter-spark,
  .hero-3d-floor,
  .hero-3d-scan,
  .hero-core,
  .hero-ring::before,
  .hero-ring--2::after,
  .hero-chip-inner,
  .hero-chip-dot {
    animation: none;
  }
}
