:root {
  --bg: #0b1020;
  --bg2: #0e1428;
  --blue: #00d4ff;
  --glow: #5df7ff;
  --text: #e8edf7;
  --muted: #8a93ad;
  --line: #ffffff14;
  --glass: rgba(255, 255, 255, 0.04);
  --r: 18px;
  --ease: cubic-bezier(0.2, 0.7, 0.2, 1);
}
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}
html {
  scroll-behavior: smooth;
}
body {
  font-family: "Inter", system-ui, sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.65;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}
body.menu-open {
  overflow: hidden;
}
h1,
h2,
h3,
h4 {
  font-family: "Sora", sans-serif;
  line-height: 1.08;
  letter-spacing: -0.02em;
  font-weight: 700;
}
a {
  color: inherit;
  text-decoration: none;
}
.mono {
  font-family: "JetBrains Mono", monospace;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-size: 12px;
}
.wrap {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 26px;
}
section {
  padding: 110px 0;
  position: relative;
}
.eyebrow {
  color: #1ca8dd;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 18px;
  font-size: 15px;
  font-weight: 700;
  letter-spacing: 0.18em;
}
.eyebrow::before {
  content: none;
}
.sec-head {
  max-width: 620px;
  margin: 0 auto 60px;
  text-align: center;
}
.sec-head .eyebrow {
  justify-content: center;
}
.sec-head h2 {
  font-size: clamp(28px, 4.4vw, 46px);
}
.sec-head p {
  color: var(--muted);
  margin-top: 16px;
  font-size: 16.5px;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -2;
  background:
    radial-gradient(900px circle at 80% -10%, #00d4ff14, transparent 55%),
    radial-gradient(700px circle at 0% 30%, #5b6bff10, transparent 55%),
    linear-gradient(180deg, var(--bg), #090d1a);
}
body::after {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -1;
  opacity: 0.5;
  pointer-events: none;
  background-image:
    linear-gradient(#ffffff08 1px, transparent 1px),
    linear-gradient(90deg, #ffffff08 1px, transparent 1px);
  background-size: 54px 54px;
  mask-image: radial-gradient(circle at 50% 30%, #000, transparent 80%);
}

/* ---- PRELOADER ---- */
#loader {
  position: fixed;
  inset: 0;
  z-index: 1000;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 26px;
  background: var(--bg);
  transition:
    opacity 0.6s,
    visibility 0.6s;
}
#loader.done {
  opacity: 0;
  visibility: hidden;
}
.load-bar {
  width: 150px;
  height: 3px;
  background: #ffffff14;
  border-radius: 3px;
  overflow: hidden;
}
.load-bar i {
  display: block;
  height: 100%;
  width: 0;
  background: linear-gradient(90deg, var(--blue), var(--glow));
  animation: load 1.1s var(--ease) forwards;
  box-shadow: 0 0 10px var(--blue);
}
@keyframes load {
  to {
    width: 100%;
  }
}
.load-name {
  font-family: "Sora";
  font-weight: 700;
  letter-spacing: -0.02em;
  font-size: 18px;
}
.load-name b {
  color: var(--blue);
}

/* ---- SCROLL PROGRESS ---- */
#progress {
  position: fixed;
  top: 0;
  left: 0;
  height: 3px;
  width: 0;
  z-index: 101;
  background: linear-gradient(90deg, var(--blue), var(--glow));
  box-shadow: 0 0 10px var(--blue);
}

/* ---- LOGO MARK ---- */
.mark {
  width: 36px;
  height: 36px;
  border-radius: 11px;
  display: grid;
  place-items: center;
  position: relative;
  background:
    linear-gradient(var(--bg2), var(--bg2)) padding-box,
    linear-gradient(135deg, var(--glow), #0072ff) border-box;
  border: 1.5px solid transparent;
  box-shadow: 0 0 18px -5px var(--blue);
}
.mark svg {
  width: 23px;
  height: 23px;
  overflow: visible;
}
.lg-line {
  stroke: url(#lgrad);
  stroke-width: 1.7;
  fill: none;
  stroke-linecap: round;
  stroke-dasharray: 3 5;
  animation: lgflow 2.2s linear infinite;
}
@keyframes lgflow {
  to {
    stroke-dashoffset: -32;
  }
}
.lg-node {
  fill: var(--blue);
  animation: lgblink 2.4s ease-in-out infinite;
}
@keyframes lgblink {
  0%,
  100% {
    opacity: 1;
  }
  50% {
    opacity: 0.4;
  }
}
.lg-core {
  fill: var(--glow);
  transform-origin: 24px 24px;
  animation: lgpulse 2s ease-in-out infinite;
}
@keyframes lgpulse {
  50% {
    transform: scale(1.28);
  }
}

/* buttons */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  padding: 13px 24px;
  border-radius: 60px;
  font-weight: 600;
  font-size: 14.5px;
  font-family: inherit;
  cursor: pointer;
  border: none;
  transition: all 0.3s var(--ease);
  position: relative;
  overflow: hidden;
}
.btn svg {
  width: 16px;
  height: 16px;
  position: relative;
  z-index: 1;
}
.btn span {
  position: relative;
  z-index: 1;
}
.btn::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: #ffffff32;
  transform: translate(-50%, -50%) scale(0);
  transition: transform 0.6s var(--ease);
  z-index: 0;
}
.btn-ghost::after {
  background: #00d4ff26;
}
.btn:hover::after {
  transform: translate(-50%, -50%) scale(42);
}
.btn-primary {
  background: linear-gradient(135deg, var(--blue), #0094ff);
  color: #04121c;
  box-shadow: 0 8px 28px -8px var(--blue);
}
.btn-primary:hover {
  box-shadow: 0 14px 38px -6px var(--blue);
  transform: translateY(-2px);
}
.btn-ghost {
  background: var(--glass);
  border: 1px solid var(--line);
  color: var(--text);
  backdrop-filter: blur(10px);
}
.btn-ghost:hover {
  border-color: var(--blue);
  color: var(--blue);
}

.glass {
  background: var(--glass);
  border: 1px solid var(--line);
  backdrop-filter: blur(14px);
  border-radius: var(--r);
}

.reveal {
  opacity: 0;
  transform: translateY(26px);
  transition:
    opacity 0.8s var(--ease),
    transform 0.8s var(--ease);
}
.reveal.in {
  opacity: 1;
  transform: none;
}

/* ---- NAV ---- */
nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  padding: 18px 0;
  transition: 0.4s var(--ease);
}
nav.scrolled {
  background: #0b1020cc;
  backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--line);
  padding: 10px 0;
}
.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}
.logo {
  display: flex;
  align-items: center;
  gap: 11px;
  font-family: "Sora";
  font-weight: 800;
  font-size: 21px;
  letter-spacing: -0.01em;
}
.logo .ai {
  background: linear-gradient(115deg, var(--blue), var(--glow));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.logo .ai {
  margin-left: 0;
}
nav .logo {
  min-height: 56px;
}
nav.scrolled .logo {
  min-height: 40px;
}
.nav-links {
  display: flex;
  gap: 30px;
  align-items: center;
}
.nav-links a.lnk {
  font-size: 14.5px;
  color: var(--muted);
  transition: color 0.25s;
  position: relative;
}
.nav-links a.lnk:hover {
  color: var(--text);
}
.nav-links a.lnk::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -5px;
  width: 0;
  height: 1.5px;
  background: linear-gradient(90deg, var(--blue), var(--glow));
  transition: width 0.3s var(--ease);
}
.nav-links a.lnk:hover::after {
  width: 100%;
}
.hamb {
  display: none;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 5px;
  background: none;
  border: 1px solid transparent;
  cursor: pointer;
  width: 44px;
  height: 44px;
  padding: 0;
  border-radius: 12px;
  transition:
    background 0.25s var(--ease),
    border-color 0.25s var(--ease);
}
.hamb span {
  width: 24px;
  height: 2px;
  background: var(--text);
  border-radius: 2px;
  transition:
    transform 0.3s var(--ease),
    opacity 0.2s var(--ease),
    background 0.25s;
}
.hamb:hover,
.hamb.is-open {
  background: rgba(255, 255, 255, 0.06);
  border-color: var(--line);
}
.hamb.is-open span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}
.hamb.is-open span:nth-child(2) {
  opacity: 0;
}
.hamb.is-open span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

/* ---- HERO ---- */
header {
  position: relative;
  height: 100vh;
  min-height: 660px;
  max-height: 960px;
  display: flex;
  align-items: center;
  padding: 100px 0 50px;
  overflow: hidden;
}
#neural {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.hero-grid {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 50px;
  align-items: center;
}
.hero-tag {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  padding: 7px 15px;
  border: 1px solid var(--line);
  border-radius: 60px;
  background: #ffffff06;
  backdrop-filter: blur(8px);
  margin-bottom: 26px;
}
.brand-block {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0;
}
.tagline-pill {
  margin-top: 0;
  white-space: nowrap;
  position: relative;
  z-index: 2;
}
.hero-tag .pill {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--glow);
  box-shadow: 0 0 10px var(--glow);
  animation: pulse 2s infinite;
}
@keyframes pulse {
  50% {
    opacity: 0.35;
  }
}
h1.hero {
  font-size: clamp(36px, 5.4vw, 62px);
  font-weight: 800;
}
h1.hero .grad {
  background: linear-gradient(115deg, var(--blue), var(--glow), var(--blue));
  background-size: 220% auto;
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  animation: shimmer 5s linear infinite;
}
@keyframes shimmer {
  to {
    background-position: 220% center;
  }
}
.hero-sub {
  color: var(--muted);
  font-size: clamp(15.5px, 1.6vw, 18px);
  max-width: 52ch;
  margin: 24px 0 34px;
}
.hero-cta {
  display: flex;
  gap: 13px;
  flex-wrap: wrap;
}
.ai-illus {
  position: relative;
  aspect-ratio: 1;
  max-width: 440px;
  margin-left: auto;
  will-change: transform;
  animation: float 7s ease-in-out infinite;
}
.hero-video {
  position: absolute;
  inset: 7%;
  border-radius: 28px;
  overflow: hidden;
  border: 1px solid #00d4ff33;
  background: #050914;
  box-shadow:
    0 0 34px -10px var(--blue),
    inset 0 0 42px #00d4ff12;
}
.hero-video video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  filter: saturate(1.12) contrast(1.08) brightness(0.82);
}
.hero-video::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, #00d4ff10, transparent 38%, #05091466),
    radial-gradient(circle at 50% 45%, transparent 38%, #050914cc 100%);
  mix-blend-mode: screen;
  pointer-events: none;
}
.hero-video::after {
  content: "";
  position: absolute;
  inset: 0;
  background: repeating-linear-gradient(
    0deg,
    #ffffff08 0 1px,
    transparent 1px 5px
  );
  opacity: 0.2;
  pointer-events: none;
}
.ai-illus::before,
.ai-illus::after {
  content: "";
  position: absolute;
  border-radius: 50%;
  inset: 0;
  border: 1px solid #ffffff18;
  pointer-events: none;
}
.ai-illus::before {
  animation: spin 60s linear infinite;
}
.ai-illus::after {
  inset: 12%;
  border-style: dashed;
  border-color: #00d4ff38;
  animation: spin 42s linear infinite reverse;
}

/* ---- HERO VIP EXTRAS ---- */
.orb-wrap {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 3;
  border-radius: 50%;
}
.orb-wrap.o1 {
  animation: spin 10s linear infinite;
}
.orb-wrap.o2 {
  inset: 11%;
  animation: spin 6.5s linear infinite reverse;
}
.orb-wrap.o3 {
  inset: 24%;
  animation: spin 14s linear infinite;
}
.orb-dot {
  position: absolute;
  top: 50%;
  right: -6px;
  transform: translateY(-50%);
  width: 11px;
  height: 11px;
  border-radius: 50%;
  background: var(--glow);
  box-shadow:
    0 0 20px 6px var(--glow),
    0 0 40px 8px rgba(93, 247, 255, 0.35);
}
.orb-wrap.o2 .orb-dot {
  width: 8px;
  height: 8px;
  right: -4px;
  background: var(--blue);
  box-shadow:
    0 0 16px 5px var(--blue),
    0 0 30px 6px rgba(0, 212, 255, 0.3);
}
.orb-wrap.o3 .orb-dot {
  width: 6px;
  height: 6px;
  right: -3px;
  background: #fff;
  box-shadow: 0 0 10px 3px #ffffff88;
}
.hero-stats {
  display: flex;
  gap: 18px;
  margin-top: 32px;
  flex-wrap: wrap;
}
.hstat {
  padding: 14px 22px;
  border: 1px solid var(--line);
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.03);
  backdrop-filter: blur(10px);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  opacity: 0;
  transform: translateY(18px);
  transition:
    border-color 0.3s,
    transform 0.3s var(--ease),
    opacity 0.7s,
    box-shadow 0.3s;
}
.hstat.in {
  opacity: 1;
  transform: translateY(0);
}
.hstat:nth-child(1) {
  transition-delay: 0.5s;
}
.hstat:nth-child(2) {
  transition-delay: 0.65s;
}
.hstat:nth-child(3) {
  transition-delay: 0.8s;
}
.hstat:hover {
  border-color: #00d4ff55;
  transform: translateY(-4px) !important;
  box-shadow: 0 8px 28px -8px rgba(0, 212, 255, 0.3);
}
.hstat-val {
  font-family: "Sora", sans-serif;
  font-size: 26px;
  font-weight: 800;
  background: linear-gradient(135deg, var(--glow), var(--blue));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  display: flex;
  align-items: baseline;
  justify-content: center;
  gap: 2px;
  line-height: 1;
}
.hstat-val sup {
  font-size: 17px;
}
.hstat small {
  color: var(--muted);
  font-size: 11.5px;
  margin-top: 5px;
  display: block;
  text-align: center;
}
.hero-scroll {
  position: absolute;
  bottom: 28px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 9px;
  z-index: 3;
  color: var(--muted);
  font-family: "JetBrains Mono", monospace;
  font-size: 10.5px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  animation: scrollBob 2.2s ease-in-out infinite;
}
.scroll-arrow {
  color: #1ca8dd;
  filter: drop-shadow(0 0 7px rgba(28, 168, 221, 0.55));
  animation: scrollArrowBob 1.6s ease-in-out infinite;
}
@keyframes scrollArrowBob {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(6px);
  }
}
@keyframes scrollBob {
  50% {
    transform: translateX(-50%) translateY(7px);
  }
}
.scroll-mouse {
  width: 24px;
  height: 38px;
  border: 1.5px solid rgba(0, 212, 255, 0.38);
  border-radius: 13px;
  position: relative;
  display: flex;
  justify-content: center;
}
.scroll-mouse::before {
  content: "";
  width: 4px;
  height: 9px;
  background: var(--blue);
  border-radius: 2px;
  position: absolute;
  top: 6px;
  box-shadow: 0 0 9px var(--blue);
  animation: wScroll 1.9s ease-in-out infinite;
}
@keyframes wScroll {
  0%,
  100% {
    transform: translateY(0);
    opacity: 1;
  }
  65% {
    transform: translateY(13px);
    opacity: 0;
  }
}
/* hero text slide-in */
.hero-tag,
.hero h1,
.hero-sub,
.hero-cta,
.hero-stats {
  --sd: 0s;
}
.hero-tag {
  animation: heroIn 0.9s var(--ease) both;
  --sd: 0.1s;
}
h1.hero {
  animation: heroIn 1s var(--ease) both;
  animation-delay: 0.25s;
}
.hero-sub {
  animation: heroIn 1s var(--ease) both;
  animation-delay: 0.4s;
}
.hero-cta {
  animation: heroIn 1s var(--ease) both;
  animation-delay: 0.55s;
}
@keyframes heroIn {
  from {
    opacity: 0;
    transform: translateY(30px) translateX(-10px);
  }
  to {
    opacity: 1;
    transform: none;
  }
}

/* ---- TYPEWRITER CURSOR ---- */
.type-cursor {
  display: inline-block;
  width: 3px;
  height: 0.82em;
  background: var(--glow);
  box-shadow: 0 0 12px var(--glow);
  margin-left: 4px;
  vertical-align: text-bottom;
  border-radius: 2px;
  animation: tcBlink 0.9s step-end infinite;
}
@keyframes tcBlink {
  50% {
    opacity: 0;
  }
}

/* ---- FLOATING VIP CARDS ---- */
.vcard {
  position: absolute;
  background: linear-gradient(
    140deg,
    rgba(11, 16, 32, 0.95),
    rgba(14, 21, 44, 0.92)
  );
  backdrop-filter: blur(24px) saturate(1.7);
  border: 1px solid rgba(0, 212, 255, 0.22);
  border-radius: 18px;
  padding: 15px 19px;
  min-width: 162px;
  z-index: 8;
  box-shadow:
    0 16px 48px -12px rgba(0, 0, 0, 0.8),
    0 0 0 1px rgba(0, 212, 255, 0.07);
  opacity: 0;
  transition:
    opacity 0.7s var(--ease),
    box-shadow 0.3s var(--ease);
}
.vcard:hover {
  box-shadow:
    0 16px 48px -12px rgba(0, 0, 0, 0.8),
    0 0 26px -4px rgba(0, 212, 255, 0.38),
    0 0 0 1px rgba(0, 212, 255, 0.32);
}
.vcard.in {
  opacity: 1;
}
.vc1 {
  top: -18px;
  right: -28px;
  animation: vcf 5.2s ease-in-out 1.2s infinite;
  transition-delay: 1.2s;
}
.vc2 {
  top: 30%;
  left: -58px;
  animation: vcf 4.3s ease-in-out 1.5s infinite;
  transition-delay: 1.5s;
}
.vc3 {
  bottom: -14px;
  right: -18px;
  animation: vcf 4.8s ease-in-out 1.8s infinite;
  transition-delay: 1.8s;
}
@keyframes vcf {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-11px);
  }
}
.vc-top {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 9px;
}
.vc-lbl {
  font-family: "JetBrains Mono", monospace;
  font-size: 9.5px;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: 0.1em;
}
.vc-val {
  font-family: "Sora", sans-serif;
  font-size: 25px;
  font-weight: 800;
  color: var(--text);
  line-height: 1.05;
}
.vc-val sub {
  font-size: 13px;
  color: var(--muted);
  font-weight: 400;
  vertical-align: baseline;
}
.vc-bar {
  height: 4px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 2px;
  margin-top: 11px;
  overflow: hidden;
}
.vc-fill {
  height: 100%;
  background: linear-gradient(90deg, var(--blue), var(--glow));
  border-radius: 2px;
  width: 0;
  transition: width 1.8s cubic-bezier(0.16, 1, 0.3, 1) 1.6s;
}
.vcard.in .vc-fill {
  width: var(--fw, 80%);
}
.vc-row {
  display: flex;
  align-items: center;
  gap: 7px;
  margin-top: 9px;
  font-size: 12px;
  color: var(--muted);
}
.vc-pip {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  flex-shrink: 0;
  background: #22c55e;
  box-shadow: 0 0 10px #22c55eaa;
  animation: pulse 1.6s ease-in-out infinite;
}
.vc-up {
  margin-top: 9px;
  font-size: 12px;
  font-weight: 600;
  color: #22c55e;
  letter-spacing: 0.02em;
}
.hero-stat-slider {
  position: absolute;
  top: 50%;
  right: 0;
  transform: translateY(-50%);
  width: 190px;
  height: 126px;
  z-index: 9;
}
.hero-stat-slider .vcard {
  position: absolute;
  inset: 0;
  min-width: 0;
  width: 100%;
  height: 100%;
  animation: none;
  transition:
    opacity 0.6s var(--ease),
    transform 0.6s var(--ease),
    box-shadow 0.3s var(--ease);
  opacity: 0;
  transform: translateY(12px);
  pointer-events: none;
}
.hero-stat-slider .vcard.in {
  opacity: 0;
}
.hero-stat-slider .vcard.active {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}
.hero-stat-slider .vcard.active .vc-fill {
  width: var(--fw, 80%);
}
.hero-stat-slider .vc1,
.hero-stat-slider .vc2,
.hero-stat-slider .vc3 {
  top: auto;
  right: auto;
  bottom: auto;
  left: auto;
  transition-delay: 0s;
}
@media (max-width: 900px) {
  .hero-stat-slider {
    top: auto;
    right: 50%;
    bottom: 8px;
    transform: translateX(50%);
    width: 178px;
    height: 118px;
  }
}

.ring {
  fill: none;
  stroke: #ffffff14;
  stroke-width: 1;
}
.ring.spin {
  transform-origin: 220px 220px;
  animation: spin 60s linear infinite;
}
.ring.spin.r {
  animation-duration: 42s;
  animation-direction: reverse;
  stroke-dasharray: 6 10;
}
@keyframes spin {
  to {
    transform: rotate(360deg);
  }
}
.node {
  fill: var(--blue);
  filter: drop-shadow(0 0 6px var(--blue));
}
.node.core {
  fill: var(--glow);
  filter: drop-shadow(0 0 16px var(--glow));
  transform-origin: 220px 220px;
  animation: lgpulse 2.4s ease-in-out infinite;
}
.edge {
  stroke: var(--blue);
  stroke-width: 1.2;
  opacity: 0.32;
  stroke-dasharray: 4 7;
  animation: flow 3s linear infinite;
}
@keyframes flow {
  to {
    stroke-dashoffset: -44;
  }
}
.pulse {
  fill: var(--glow);
  filter: drop-shadow(0 0 6px var(--glow));
}
@keyframes float {
  50% {
    transform: translateY(-12px);
  }
}

/* ---- WHO ---- */
.who {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: center;
}
.who .card {
  padding: 46px;
}
.who h2 {
  font-size: clamp(26px, 3.4vw, 38px);
  margin-bottom: 18px;
}
.who p {
  color: var(--muted);
}
.who p + p {
  margin-top: 14px;
}
.who-vis {
  position: relative;
  aspect-ratio: 1.1;
  border-radius: 24px;
  border: 1px solid var(--line);
  overflow: hidden;
  background: radial-gradient(circle at 50% 50%, #0e2740, #0a0f1e);
}
.who-vis svg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

/* ---- FEATURE ---- */
.feat-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}
.feat {
  padding: 32px 26px;
  border-radius: var(--r);
  border: 1px solid var(--line);
  background: var(--glass);
  backdrop-filter: blur(12px);
  transition:
    transform 0.3s var(--ease),
    border-color 0.3s;
  position: relative;
  overflow: hidden;
}
.feat::before {
  content: "";
  position: absolute;
  top: 0;
  left: -140%;
  width: 60%;
  height: 100%;
  background: linear-gradient(120deg, transparent, #00d4ff1c, transparent);
  transform: skewX(-20deg);
  transition: left 0.7s var(--ease);
}
.feat:hover::before {
  left: 160%;
}
.feat:hover {
  transform: translateY(-6px);
  border-color: #00d4ff55;
}
.feat .ico {
  width: 54px;
  height: 54px;
  border-radius: 14px;
  display: grid;
  place-items: center;
  background: radial-gradient(circle at 50% 30%, #00d4ff33, #00d4ff0a);
  border: 1px solid var(--line);
  margin-bottom: 20px;
  transition:
    transform 0.35s var(--ease),
    box-shadow 0.35s;
}
.feat:hover .ico {
  box-shadow: 0 0 24px -4px var(--blue);
  transform: translateY(-3px) scale(1.06) rotate(-4deg);
}
.feat .ico svg {
  width: 26px;
  height: 26px;
  stroke: var(--blue);
  fill: none;
  stroke-width: 1.7;
}
.feat h3 {
  font-size: 18px;
  margin-bottom: 9px;
}
.feat p {
  color: var(--muted);
  font-size: 14px;
}

/* ---- TIMELINE ---- */
.timeline {
  position: relative;
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 18px;
  margin-top: 20px;
}
.timeline .rail {
  position: absolute;
  top: 23px;
  left: 6%;
  right: 6%;
  height: 2px;
  background: #ffffff12;
  border-radius: 2px;
}
.timeline .rail i {
  position: absolute;
  inset: 0;
  width: 0;
  background: linear-gradient(90deg, var(--blue), var(--glow));
  border-radius: 2px;
  box-shadow: 0 0 12px var(--blue);
  transition: width 1.8s var(--ease);
}
.timeline.in .rail i {
  width: 100%;
}
.pstep {
  position: relative;
  text-align: center;
}
.pstep .dot {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  margin: 0 auto 16px;
  display: grid;
  place-items: center;
  background: var(--bg2);
  border: 2px solid #ffffff1f;
  font-family: "Sora";
  font-weight: 700;
  color: var(--blue);
  position: relative;
  z-index: 2;
  transition: 0.5s var(--ease);
}
.timeline.in .pstep:nth-child(2) .dot {
  border-color: var(--blue);
  box-shadow: 0 0 18px -4px var(--blue);
  transition-delay: 0.1s;
}
.timeline.in .pstep:nth-child(3) .dot {
  border-color: var(--blue);
  box-shadow: 0 0 18px -4px var(--blue);
  transition-delay: 0.35s;
}
.timeline.in .pstep:nth-child(4) .dot {
  border-color: var(--blue);
  box-shadow: 0 0 18px -4px var(--blue);
  transition-delay: 0.6s;
}
.timeline.in .pstep:nth-child(5) .dot {
  border-color: var(--blue);
  box-shadow: 0 0 18px -4px var(--blue);
  transition-delay: 0.85s;
}
.timeline.in .pstep:nth-child(6) .dot {
  border-color: var(--blue);
  box-shadow: 0 0 18px -4px var(--blue);
  transition-delay: 1.1s;
}
.pstep h4 {
  font-size: 16px;
  margin-bottom: 6px;
}
.pstep p {
  color: var(--muted);
  font-size: 13px;
}

/* ---- SERVICES ---- */
.svc-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.svc {
  padding: 32px 28px;
  border-radius: var(--r);
  border: 1px solid var(--line);
  background: var(--glass);
  backdrop-filter: blur(12px);
  position: relative;
  overflow: hidden;
  transition:
    transform 0.3s var(--ease),
    border-color 0.3s;
}
.svc::after {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(
    360px circle at var(--mx, 50%) var(--my, 0),
    #00d4ff1f,
    transparent 50%
  );
  opacity: 0;
  transition: opacity 0.35s;
}
.svc:hover {
  transform: translateY(-5px);
  border-color: #00d4ff45;
}
.svc:hover::after {
  opacity: 1;
}
.svc .ico {
  width: 50px;
  height: 50px;
  border-radius: 13px;
  display: grid;
  place-items: center;
  background: linear-gradient(135deg, #00d4ff26, #5df7ff14);
  border: 1px solid var(--line);
  margin-bottom: 20px;
  transition: transform 0.35s var(--ease);
}
.svc:hover .ico {
  transform: scale(1.1) rotate(4deg);
}
.svc .ico svg {
  width: 24px;
  height: 24px;
  stroke: var(--glow);
  fill: none;
  stroke-width: 1.7;
}
.svc h3 {
  font-size: 19px;
  margin-bottom: 9px;
  position: relative;
  z-index: 1;
}
.svc p {
  color: var(--muted);
  font-size: 14px;
  margin-bottom: 18px;
  position: relative;
  z-index: 1;
}
.learn {
  color: var(--blue);
  font-size: 13.5px;
  display: inline-flex;
  align-items: center;
  gap: 7px;
  position: relative;
  z-index: 1;
}
.svc-foot {
  text-align: center;
  margin-top: 40px;
}
.services-heading {
  font-size: clamp(30px, 4.8vw, 50px);
  font-weight: 800;
}

/* ============================================
     RADIAL ORBITAL SERVICES
     ============================================ */
.svc-orb-wrap {
  position: relative;
  width: min(660px, 100%);
  aspect-ratio: 1;
  margin: 0 auto;
  overflow: visible;
}
/* Orbit track rings (decorative) */
.svc-orb-track {
  position: absolute;
  inset: 16%;
  border-radius: 50%;
  border: 1px solid rgba(0, 212, 255, 0.13);
  animation: spin 55s linear infinite;
  pointer-events: none;
}
.svc-orb-track2 {
  position: absolute;
  inset: 8%;
  border-radius: 50%;
  border: 1px dashed rgba(255, 255, 255, 0.05);
  animation: spin 90s linear infinite reverse;
  pointer-events: none;
}
/* SVG connection lines */
.svc-orb-svg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  overflow: visible;
}
.orb-conn {
  stroke: var(--blue);
  stroke-width: 1;
  opacity: 0.18;
  stroke-dasharray: 5 9;
  animation: flow 4s linear infinite;
  transition:
    opacity 0.3s,
    stroke 0.3s,
    stroke-width 0.3s;
}
.orb-conn.lit {
  opacity: 0.7;
  stroke: var(--glow);
  stroke-width: 1.5;
}
/* Centre hub */
.svc-orb-center {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: clamp(100px, 18%, 118px);
  aspect-ratio: 1;
  z-index: 10;
  cursor: default;
}
.orb-ping {
  position: absolute;
  border-radius: 50%;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  pointer-events: none;
  border: 1px solid rgba(0, 212, 255, 0.2);
}
.orb-ping.a {
  width: 155%;
  height: 155%;
  animation: orbPing 2.8s ease-out infinite;
}
.orb-ping.b {
  width: 200%;
  height: 200%;
  animation: orbPing 2.8s ease-out infinite 0.75s;
  border-color: rgba(0, 212, 255, 0.12);
}
.orb-ping.c {
  width: 255%;
  height: 255%;
  animation: orbPing 2.8s ease-out infinite 1.5s;
  border-color: rgba(0, 212, 255, 0.06);
}
@keyframes orbPing {
  0% {
    opacity: 0.8;
    transform: translate(-50%, -50%) scale(1);
  }
  100% {
    opacity: 0;
    transform: translate(-50%, -50%) scale(1.1);
  }
}
.orb-hub-bg {
  position: absolute;
  inset: 0;
  border-radius: 50%;
  background: radial-gradient(circle at 42% 36%, #172f58, #07101f);
  border: 1.5px solid rgba(0, 212, 255, 0.5);
  box-shadow:
    0 0 44px -8px var(--blue),
    0 0 80px -26px #5b6bff44,
    inset 0 0 26px -8px rgba(0, 212, 255, 0.18);
}
.orb-hub-inner {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 3px;
}
.orb-hub-inner svg {
  width: 26px;
  height: 26px;
  stroke: var(--glow);
  fill: none;
  stroke-width: 1.7;
}
.orb-hub-inner span {
  font-family: "Sora";
  font-size: 15px;
  font-weight: 700;
  color: #36c9f0;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  text-align: center;
  line-height: 1.05;
  text-shadow: 0 0 12px rgba(54, 201, 240, 0.6);
}
.orb-hub-pause {
  position: absolute;
  bottom: -22px;
  left: 50%;
  transform: translateX(-50%);
  font-family: "JetBrains Mono";
  font-size: 9px;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  white-space: nowrap;
  opacity: 0;
  transition: opacity 0.3s;
}
.svc-orb-center.paused .orb-hub-pause {
  opacity: 0.7;
}
/* Nodes */
.svc-orb-node {
  position: absolute;
  width: clamp(98px, 16%, 116px);
  aspect-ratio: 1;
  cursor: pointer;
  transition: filter 0.25s;
}
.svc-orb-node:hover,
.svc-orb-node.active {
  filter: drop-shadow(0 0 14px rgba(0, 212, 255, 0.85));
}
.orb-node-circle {
  width: 100%;
  height: 100%;
  border-radius: 50%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 3px;
  background: linear-gradient(
    145deg,
    rgba(13, 24, 48, 0.98),
    rgba(8, 12, 26, 0.96)
  );
  border: 1px solid rgba(0, 212, 255, 0.22);
  transition:
    border-color 0.3s,
    box-shadow 0.3s;
  position: relative;
  overflow: hidden;
}
.orb-node-circle::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 50%;
  background: radial-gradient(
    circle at 50% 30%,
    rgba(0, 212, 255, 0.18),
    transparent 55%
  );
  opacity: 0;
  transition: opacity 0.3s;
}
.svc-orb-node:hover .orb-node-circle,
.svc-orb-node.active .orb-node-circle {
  border-color: rgba(0, 212, 255, 0.72);
  box-shadow: 0 0 24px -4px var(--blue);
}
.svc-orb-node:hover .orb-node-circle::before,
.svc-orb-node.active .orb-node-circle::before {
  opacity: 1;
}
.orb-node-circle svg {
  width: 22px;
  height: 22px;
  stroke: var(--blue);
  fill: none;
  stroke-width: 1.7;
  position: relative;
  z-index: 1;
  transition: stroke 0.3s;
}
.svc-orb-node:hover .orb-node-circle svg,
.svc-orb-node.active .orb-node-circle svg {
  stroke: var(--glow);
}
.orb-nlbl {
  font-family: "JetBrains Mono", monospace;
  font-size: 10.5px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: #e6f4fb;
  text-align: center;
  padding: 0 8px;
  line-height: 1.18;
  position: relative;
  z-index: 1;
  transition: color 0.3s;
}
.svc-orb-node:hover .orb-nlbl,
.svc-orb-node.active .orb-nlbl {
  color: var(--glow);
}
.orb-live {
  position: absolute;
  bottom: 5px;
  right: 5px;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  z-index: 2;
  background: #22c55e;
  box-shadow: 0 0 8px #22c55e88;
  animation: pulse 1.9s ease-in-out infinite;
}
/* Expanded detail card */
.svc-orb-card {
  position: absolute;
  width: 192px;
  background: rgba(7, 10, 22, 0.96);
  backdrop-filter: blur(26px) saturate(1.8);
  border: 1px solid rgba(0, 212, 255, 0.28);
  border-radius: 16px;
  padding: 15px 16px;
  z-index: 30;
  opacity: 0;
  pointer-events: none;
  transform: scale(0.86) translateY(6px);
  transition:
    opacity 0.28s var(--ease),
    transform 0.28s var(--ease);
  box-shadow:
    0 18px 52px -12px rgba(0, 0, 0, 0.88),
    0 0 0 1px rgba(0, 212, 255, 0.07);
}
.svc-orb-card.show {
  opacity: 1;
  pointer-events: auto;
  transform: scale(1) translateY(0);
}
.ocd-head {
  display: flex;
  align-items: center;
  gap: 9px;
  margin-bottom: 9px;
}
.ocd-ico {
  width: 32px;
  height: 32px;
  border-radius: 8px;
  flex-shrink: 0;
  display: grid;
  place-items: center;
  background: linear-gradient(
    135deg,
    rgba(0, 212, 255, 0.2),
    rgba(93, 247, 255, 0.06)
  );
  border: 1px solid rgba(0, 212, 255, 0.24);
}
.ocd-ico svg {
  width: 16px;
  height: 16px;
  stroke: var(--glow);
  fill: none;
  stroke-width: 1.7;
}
.ocd-head h4 {
  font-size: 12px;
  font-weight: 700;
  font-family: "Sora";
  line-height: 1.25;
  color: var(--text);
}
.ocd-desc {
  font-size: 11px;
  color: var(--muted);
  line-height: 1.65;
  margin-bottom: 11px;
}
.ocd-bar-row {
  display: flex;
  justify-content: space-between;
  font-family: "JetBrains Mono";
  font-size: 9.5px;
  color: var(--muted);
  margin-bottom: 5px;
}
.ocd-bar {
  height: 3.5px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 2px;
  overflow: hidden;
}
.ocd-fill {
  height: 100%;
  border-radius: 2px;
  width: 0;
  background: linear-gradient(90deg, var(--blue), var(--glow));
  transition: width 1.1s cubic-bezier(0.16, 1, 0.3, 1) 0.12s;
}
.ocd-badge {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  margin-top: 10px;
  padding: 3px 9px;
  border-radius: 20px;
  background: rgba(34, 197, 94, 0.13);
  border: 1px solid rgba(34, 197, 94, 0.28);
  font-family: "JetBrains Mono";
  font-size: 9px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: #22c55e;
}
.ocd-badge .dot {
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: #22c55e;
}
/* Close hint */
.ocd-close {
  position: absolute;
  top: 10px;
  right: 10px;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: rgba(255, 255, 255, 0.07);
  border: none;
  cursor: pointer;
  color: var(--muted);
  font-size: 12px;
  transition:
    background 0.2s,
    color 0.2s;
}
.ocd-close:hover {
  background: rgba(255, 255, 255, 0.14);
  color: var(--text);
}
/* Mobile fallback */
.svc-mob {
  display: none;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
  margin-top: 8px;
}
.svc-mob .svc p {
  font-size: 13px;
}
@media (max-width: 760px) {
  .svc-orb-wrap {
    display: none;
  }
  .svc-mob {
    display: grid;
  }
}

/* ---- PROJECTS ---- */
.proj-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.proj {
  border-radius: var(--r);
  border: 1px solid var(--line);
  overflow: hidden;
  background: var(--glass);
  backdrop-filter: blur(12px);
  transition: transform 0.35s var(--ease);
}
.proj:hover {
  transform: translateY(-6px);
}
.proj .top {
  height: 150px;
  position: relative;
  display: grid;
  place-items: center;
  overflow: hidden;
}
.proj .top.t1 {
  background: linear-gradient(135deg, #0e2a52, #0a1024);
}
.proj .top.t2 {
  background: linear-gradient(135deg, #0c3a42, #0a1024);
}
.proj .top.t3 {
  background: linear-gradient(135deg, #241652, #0a1024);
}
.proj .top svg {
  width: 60px;
  height: 60px;
  stroke: var(--blue);
  fill: none;
  stroke-width: 1.3;
  opacity: 0.85;
  transition: transform 0.5s var(--ease);
}
.proj:hover .top svg {
  transform: scale(1.12) rotate(-3deg);
}
.proj .body {
  padding: 24px;
}
.proj .meta {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  margin-bottom: 12px;
}
.proj .meta span {
  font-family: "JetBrains Mono";
  font-size: 10.5px;
  padding: 4px 9px;
  border: 1px solid var(--line);
  border-radius: 30px;
  color: var(--muted);
}
.proj h3 {
  font-size: 18px;
  margin-bottom: 8px;
}
.proj p {
  color: var(--muted);
  font-size: 13.5px;
  margin-bottom: 16px;
}

/* ---- INDUSTRIES ---- */
.ind-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}
.ind {
  padding: 26px 18px;
  border-radius: 14px;
  border: 1px solid var(--line);
  background: var(--glass);
  text-align: center;
  transition:
    transform 0.3s var(--ease),
    border-color 0.3s,
    background 0.3s,
    opacity 0.75s var(--ease);
}
.ind:hover {
  transform: translateY(-4px) !important;
  border-color: #00d4ff45;
  background: #00d4ff0d;
}
.ind .ico {
  width: 44px;
  height: 44px;
  margin: 0 auto 12px;
  display: grid;
  place-items: center;
  border-radius: 11px;
  background: #ffffff08;
  transition: transform 0.35s var(--ease);
}
.ind:hover .ico {
  transform: translateY(-3px) scale(1.08);
}
.ind .ico svg {
  width: 22px;
  height: 22px;
  stroke: var(--blue);
  fill: none;
  stroke-width: 1.6;
}
.ind span {
  font-size: 14px;
  font-weight: 500;
}
.ind small {
  display: block;
  color: var(--muted);
  font-size: 12px;
  line-height: 1.45;
  margin-top: 8px;
}
/* slide-in direction classes */
.ind-left {
  opacity: 0;
  transform: translateX(-100px) scale(0.95);
}
.ind-right {
  opacity: 0;
  transform: translateX(100px) scale(0.95);
}
.ind-left,
.ind-right {
  transition:
    opacity 0.75s var(--ease),
    transform 0.75s var(--ease),
    border-color 0.3s,
    background 0.3s;
}
.ind-left.in,
.ind-right.in {
  opacity: 1;
  transform: none;
}

/* ---- TESTIMONIALS ---- */
.carousel {
  max-width: 760px;
  margin: 0 auto;
  position: relative;
  text-align: center;
}
.slides {
  position: relative;
  min-height: 200px;
}
.slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transform: translateY(14px);
  transition: 0.6s var(--ease);
  padding: 44px 36px;
}
.slide.active {
  opacity: 1;
  transform: none;
  position: relative;
}
.slide .q {
  font-family: "Sora";
  font-size: clamp(18px, 2.6vw, 26px);
  font-weight: 500;
  line-height: 1.4;
}
.slide .who2 {
  color: var(--muted);
  margin-top: 22px;
  font-size: 14px;
}
.slide .who2 b {
  color: var(--text);
}
.stars {
  color: var(--glow);
  margin-bottom: 18px;
  letter-spacing: 3px;
}
.dots {
  display: flex;
  gap: 9px;
  justify-content: center;
  margin-top: 28px;
}
.dots button {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  border: none;
  background: #ffffff22;
  cursor: pointer;
  transition: 0.3s;
  padding: 0;
}
.dots button.on {
  background: var(--blue);
  width: 26px;
  border-radius: 30px;
}

/* ---- CTA ---- */
.cta {
  position: relative;
  text-align: center;
  padding: 84px 40px;
  border-radius: 30px;
  border: 1px solid var(--line);
  overflow: hidden;
  background: linear-gradient(180deg, #0f1b38, #0a0f20);
}
.cta canvas {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.cta .inner {
  position: relative;
  z-index: 2;
}
.cta h2 {
  font-size: clamp(28px, 4.6vw, 48px);
  max-width: 18ch;
  margin: 0 auto 18px;
}
.cta p {
  color: var(--muted);
  max-width: 46ch;
  margin: 0 auto 32px;
}
.cta-btns {
  display: flex;
  gap: 13px;
  justify-content: center;
  flex-wrap: wrap;
}

.news {
  display: flex;
  gap: 10px;
  max-width: 440px;
  margin: 18px 0 0;
  flex-wrap: wrap;
}
.news input {
  flex: 1;
  min-width: 200px;
  padding: 13px 18px;
  border-radius: 60px;
  border: 1px solid var(--line);
  background: #ffffff08;
  color: var(--text);
  font-family: inherit;
  font-size: 14px;
  outline: none;
}
.news input:focus {
  border-color: var(--blue);
}

/* ---- FOOTER ---- */
footer {
  border-top: 1px solid var(--line);
  padding: 64px 0 36px;
  margin-top: 110px;
}
.foot-top {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1.2fr;
  gap: 36px;
  margin-bottom: 46px;
}
.foot-brand p {
  color: var(--muted);
  font-size: 14px;
  margin-top: 14px;
  max-width: 30ch;
}
.foot-col h4 {
  font-family: "JetBrains Mono";
  font-size: 11.5px;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: 0.12em;
  margin-bottom: 16px;
}
.foot-col a {
  display: block;
  color: var(--muted);
  font-size: 14px;
  margin-bottom: 11px;
  transition: color 0.25s;
}
.foot-col a:hover {
  color: var(--blue);
}
.socials {
  display: flex;
  gap: 10px;
  margin-top: 6px;
}
.socials a {
  width: 38px;
  height: 38px;
  border-radius: 10px;
  border: 1px solid var(--line);
  display: grid;
  place-items: center;
  transition: 0.3s;
}
.socials a:hover {
  border-color: var(--blue);
  background: #00d4ff12;
  transform: translateY(-3px);
}
.socials svg {
  width: 18px;
  height: 18px;
  stroke: var(--text);
  fill: none;
  stroke-width: 1.7;
}
.foot-bottom {
  border-top: 1px solid var(--line);
  padding-top: 24px;
  text-align: center;
  color: var(--muted);
  font-size: 13px;
}

.sticky-cta {
  position: fixed;
  right: 22px;
  bottom: 22px;
  z-index: 90;
  display: inline-flex;
  align-items: center;
  gap: 9px;
  padding: 14px 22px;
  border-radius: 60px;
  background: linear-gradient(135deg, var(--blue), #0094ff);
  color: #04121c;
  font-weight: 600;
  font-size: 14px;
  box-shadow: 0 10px 30px -6px var(--blue);
  transition: 0.3s var(--ease);
  animation: bob 3.5s ease-in-out infinite;
}
.sticky-cta:hover {
  transform: translateY(-3px);
  box-shadow: 0 16px 40px -6px var(--blue);
}
.sticky-cta svg {
  width: 17px;
  height: 17px;
}
@keyframes bob {
  50% {
    transform: translateY(-5px);
  }
}

/* ---- SHOWREEL ---- */
.reel-section {
  padding: 0 0 120px;
}
.reel-outer {
  max-width: 1160px;
  margin: 0 auto;
  padding: 0 26px;
}
.reel-head {
  text-align: center;
  margin-bottom: 50px;
}
.reel-frame {
  position: relative;
  border-radius: 26px;
  overflow: hidden;
  aspect-ratio: 16/9;
  border: 1px solid transparent;
  opacity: 0;
  transform: translateY(55px) scale(0.93);
  filter: blur(7px);
  transition:
    opacity 1.1s cubic-bezier(0.16, 1, 0.3, 1),
    transform 1.1s cubic-bezier(0.16, 1, 0.3, 1),
    filter 1.1s cubic-bezier(0.16, 1, 0.3, 1),
    border-color 0.9s,
    box-shadow 1.2s;
}
.reel-frame.open {
  opacity: 1;
  transform: translateY(0) scale(1);
  filter: blur(0);
  border-color: #00d4ff44;
  box-shadow:
    0 0 0 1px #00d4ff1a,
    0 30px 90px -18px rgba(0, 212, 255, 0.38),
    0 60px 160px -40px rgba(91, 107, 255, 0.28),
    inset 0 0 60px -22px rgba(0, 212, 255, 0.06);
}
.reel-frame video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  filter: saturate(1.18) contrast(1.1) brightness(0.72);
}
.reel-overlay {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 1;
  background:
    linear-gradient(
      180deg,
      rgba(0, 212, 255, 0.06) 0%,
      transparent 26%,
      transparent 70%,
      rgba(5, 9, 20, 0.78) 100%
    ),
    radial-gradient(
      ellipse at 50% 100%,
      rgba(0, 212, 255, 0.07),
      transparent 60%
    );
}
.reel-lines {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 2;
  background: repeating-linear-gradient(
    0deg,
    transparent 0 3px,
    rgba(0, 212, 255, 0.05) 3px 4px
  );
  animation: rlScroll 8s linear infinite;
}
@keyframes rlScroll {
  to {
    background-position: 0 100px;
  }
}
.reel-sweep {
  position: absolute;
  left: 0;
  right: 0;
  height: 2px;
  top: -2px;
  z-index: 5;
  pointer-events: none;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(93, 247, 255, 0.85) 30%,
    #fff 50%,
    rgba(93, 247, 255, 0.85) 70%,
    transparent
  );
  box-shadow:
    0 0 22px 5px var(--glow),
    0 0 55px 8px rgba(0, 212, 255, 0.45);
  animation: rSweep 4.5s cubic-bezier(0.4, 0, 0.6, 1) infinite 1.5s;
}
@keyframes rSweep {
  0% {
    top: -2px;
    opacity: 0;
  }
  4% {
    opacity: 1;
  }
  96% {
    opacity: 0.8;
  }
  100% {
    top: 100%;
    opacity: 0;
  }
}
.reel-svg-border {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  z-index: 4;
  pointer-events: none;
  overflow: visible;
}
.reel-rect {
  fill: none;
  stroke: var(--blue);
  stroke-width: 2;
  stroke-linecap: round;
  stroke-dasharray: 3100;
  stroke-dashoffset: 3100;
  filter: drop-shadow(0 0 8px var(--blue));
  transition: stroke-dashoffset 2.2s cubic-bezier(0.16, 1, 0.3, 1) 0.25s;
}
.reel-frame.open .reel-rect {
  stroke-dashoffset: 0;
}
.reel-corner {
  position: absolute;
  width: 32px;
  height: 32px;
  z-index: 6;
  opacity: 0;
  transition:
    opacity 0.4s,
    transform 0.4s;
}
.reel-frame.open .reel-corner {
  opacity: 1;
  transform: none !important;
}
.reel-corner.tl {
  top: 14px;
  left: 14px;
  border-top: 2.5px solid var(--glow);
  border-left: 2.5px solid var(--glow);
  border-radius: 6px 0 0 0;
  transform: translate(-10px, -10px);
  transition-delay: 1.1s;
  filter: drop-shadow(0 0 7px var(--glow));
}
.reel-corner.tr {
  top: 14px;
  right: 14px;
  border-top: 2.5px solid var(--glow);
  border-right: 2.5px solid var(--glow);
  border-radius: 0 6px 0 0;
  transform: translate(10px, -10px);
  transition-delay: 1.2s;
  filter: drop-shadow(0 0 7px var(--glow));
}
.reel-corner.bl {
  bottom: 14px;
  left: 14px;
  border-bottom: 2.5px solid var(--glow);
  border-left: 2.5px solid var(--glow);
  border-radius: 0 0 0 6px;
  transform: translate(-10px, 10px);
  transition-delay: 1.3s;
  filter: drop-shadow(0 0 7px var(--glow));
}
.reel-corner.br {
  bottom: 14px;
  right: 14px;
  border-bottom: 2.5px solid var(--glow);
  border-right: 2.5px solid var(--glow);
  border-radius: 0 0 6px 0;
  transform: translate(10px, 10px);
  transition-delay: 1.4s;
  filter: drop-shadow(0 0 7px var(--glow));
}
.reel-badge {
  position: absolute;
  top: 20px;
  left: 50%;
  transform: translateX(-50%) translateY(-12px);
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 7px 18px;
  background: rgba(5, 9, 20, 0.78);
  backdrop-filter: blur(16px);
  border: 1px solid rgba(0, 212, 255, 0.38);
  border-radius: 60px;
  z-index: 7;
  white-space: nowrap;
  opacity: 0;
  transition:
    opacity 0.5s 1.7s,
    transform 0.5s 1.7s;
}
.reel-frame.open .reel-badge {
  opacity: 1;
  transform: translateX(-50%) translateY(0);
}
.reel-badge .dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--glow);
  box-shadow: 0 0 10px var(--glow);
  animation: pulse 1.4s ease-in-out infinite;
}
.reel-badge .rtxt {
  font-family: "JetBrains Mono", monospace;
  font-size: 11px;
  letter-spacing: 0.12em;
  color: var(--glow);
  text-transform: uppercase;
}
.reel-caption {
  position: absolute;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%) translateY(20px);
  background: rgba(5, 9, 20, 0.74);
  backdrop-filter: blur(20px);
  border: 1px solid rgba(0, 212, 255, 0.3);
  border-radius: 18px;
  padding: 20px 44px;
  text-align: center;
  white-space: nowrap;
  z-index: 7;
  opacity: 0;
  transition:
    opacity 0.7s 1.9s,
    transform 0.7s 1.9s;
}
.reel-frame.open .reel-caption {
  opacity: 1;
  transform: translateX(-50%) translateY(0);
}
.reel-caption .eyebrow {
  justify-content: center;
  margin-bottom: 8px;
}
.reel-caption h3 {
  font-size: clamp(16px, 2.2vw, 28px);
  background: linear-gradient(115deg, var(--blue), var(--glow));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.reel-glow-ring {
  position: absolute;
  inset: -1px;
  border-radius: 26px;
  z-index: 3;
  pointer-events: none;
  background: linear-gradient(
    135deg,
    rgba(0, 212, 255, 0.28),
    transparent 40%,
    rgba(91, 107, 255, 0.22) 60%,
    transparent
  );
  opacity: 0;
  animation: reelGlow 3.8s ease-in-out infinite;
}
.reel-frame.open .reel-glow-ring {
  animation: reelGlow 3.8s ease-in-out infinite 0.6s;
}
@keyframes reelGlow {
  0%,
  100% {
    opacity: 0;
  }
  50% {
    opacity: 1;
  }
}

@media (max-width: 900px) {
  header {
    height: auto;
    min-height: 100svh;
    padding: 96px 0 56px;
    max-height: none;
    align-items: flex-start;
  }
  .hero-grid,
  .who {
    grid-template-columns: 1fr;
    gap: 36px;
  }
  .hero-copy {
    order: -1;
    align-items: center;
    text-align: center;
    width: 100%;
    min-width: 0;
  }
  .tagline-pill {
    white-space: normal;
    justify-content: center;
    max-width: 100%;
  }
  .hero-tag .mono,
  h1.hero,
  .hero-sub {
    max-width: 100%;
    min-width: 0;
    overflow-wrap: anywhere;
  }
  .hero-tag .mono {
    flex: 1 1 auto;
    white-space: normal;
  }
  .hero-sub {
    margin-left: auto;
    margin-right: auto;
  }
  .hero-cta,
  .hero-stats {
    justify-content: center;
  }
  .ai-illus {
    width: min(330px, 86vw);
    max-width: none;
    margin: 0 auto;
    order: 0;
  }
  .hero-video {
    inset: 6%;
    border-radius: 22px;
  }
  .hero-scroll {
    display: none;
  }
  .feat-grid,
  .svc-grid,
  .proj-grid {
    grid-template-columns: 1fr;
  }
  .ind-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .timeline {
    grid-template-columns: 1fr 1fr;
    gap: 30px 18px;
  }
  .timeline .rail {
    display: none;
  }
  .foot-top {
    grid-template-columns: 1fr 1fr;
  }
  nav {
    padding: 12px 0;
  }
  .nav-inner {
    gap: 16px;
    min-width: 0;
  }
  .logo {
    min-width: 0;
  }
  nav .logo {
    min-height: 46px;
  }
  nav.scrolled .logo {
    min-height: 38px;
  }
  .nav-links {
    position: fixed;
    inset: 0;
    background:
      radial-gradient(650px circle at 50% 0%, rgba(0, 212, 255, 0.13), transparent 55%),
      #0b1020f7;
    backdrop-filter: blur(16px);
    flex-direction: column;
    justify-content: center;
    align-items: stretch;
    padding: 110px 26px 38px;
    font-size: 21px;
    gap: 14px;
    transform: translateY(-100%);
    opacity: 0;
    pointer-events: none;
    transition:
      transform 0.4s var(--ease),
      opacity 0.25s var(--ease);
    z-index: 90;
    overflow-y: auto;
  }
  .nav-links.open {
    transform: none;
    opacity: 1;
    pointer-events: auto;
  }
  .nav-links a.lnk {
    color: var(--text);
    width: min(420px, 100%);
    margin: 0 auto;
    padding: 15px 18px;
    border: 1px solid var(--line);
    border-radius: 14px;
    background: rgba(255, 255, 255, 0.035);
    text-align: center;
    font-size: 18px;
  }
  .nav-links a.lnk::after {
    display: none;
  }
  .nav-links .nav-cta-d {
    display: inline-flex;
    width: min(420px, 100%);
    margin: 10px auto 0;
    justify-content: center;
  }
  .hamb {
    display: flex;
    z-index: 100;
    flex: 0 0 auto;
  }
  section {
    padding: 78px 0;
  }
  .who .card {
    padding: 34px 28px;
  }
  .reel-section {
    padding: 0 0 84px;
  }
  .reel-caption {
    white-space: normal;
    padding: 14px 22px;
    bottom: 16px;
    width: 84%;
  }
  .reel-badge {
    top: 14px;
  }
}

@media (max-width: 760px) {
  .wrap,
  .reel-outer {
    padding-left: 20px;
    padding-right: 20px;
  }
  h1.hero {
    font-size: clamp(32px, 10vw, 46px);
  }
  .hero-sub {
    font-size: 15.5px;
    margin-top: 20px;
    margin-bottom: 28px;
  }
  .hero-stat-slider {
    width: 164px;
    height: 112px;
    bottom: 2px;
  }
  .hero-stat-slider .vcard {
    padding: 13px 15px;
    border-radius: 16px;
  }
  .vc-val {
    font-size: 22px;
  }
  .hstat {
    flex: 1 1 calc(50% - 10px);
    min-width: 138px;
    padding: 13px 14px;
  }
  .hstat:nth-child(3) {
    flex-basis: 100%;
  }
  .svc-mob {
    grid-template-columns: 1fr;
  }
  .timeline {
    grid-template-columns: 1fr;
    gap: 22px;
  }
  .pstep {
    display: grid;
    grid-template-columns: 48px 1fr;
    column-gap: 14px;
    text-align: left;
    align-items: start;
  }
  .pstep .dot {
    grid-row: span 2;
    margin: 0;
  }
  .ind-grid {
    grid-template-columns: 1fr;
  }
  .carousel {
    border-radius: 18px;
  }
  .slide {
    padding: 34px 22px;
  }
  .cta {
    padding: 58px 24px;
    border-radius: 22px;
  }
  .cta h2 {
    max-width: 12ch;
  }
  .foot-top {
    grid-template-columns: 1fr;
    gap: 30px;
  }
  .foot-brand p {
    max-width: none;
  }
}

@media (max-width: 560px) {
  body {
    padding-bottom: 74px;
  }
  .wrap,
  .reel-outer {
    padding-left: 16px;
    padding-right: 16px;
  }
  section {
    padding: 64px 0;
  }
  .sec-head {
    margin-bottom: 38px;
  }
  .eyebrow {
    font-size: 12px;
    letter-spacing: 0.14em;
  }
  .logo {
    font-size: 18px;
    gap: 9px;
  }
  .mark {
    width: 32px;
    height: 32px;
    border-radius: 10px;
  }
  .mark svg {
    width: 21px;
    height: 21px;
  }
  .hamb {
    padding: 10px;
    margin-right: -10px;
    width: 42px;
    height: 42px;
  }
  .nav-links {
    gap: 22px;
    padding-left: 16px;
    padding-right: 16px;
  }
  .nav-links a.lnk {
    font-size: 17px;
    padding: 14px 16px;
  }
  .hero-tag {
    padding: 7px 12px;
    margin-bottom: 20px;
  }
  .hero-tag .mono {
    font-size: 10px;
    letter-spacing: 0.08em;
  }
  h1.hero {
    font-size: clamp(26px, 8vw, 32px);
    line-height: 1.12;
    text-wrap: balance;
  }
  .type-cursor {
    width: 2px;
  }
  .hero-cta {
    width: 100%;
    max-width: 100%;
    min-width: 0;
  }
  .hero-cta .btn {
    width: 100%;
    max-width: 100%;
    min-width: 0;
    justify-content: center;
  }
  .hero-stats {
    display: grid;
    grid-template-columns: 1fr;
    width: 100%;
    gap: 12px;
  }
  .hstat {
    min-width: 0;
    width: 100%;
  }
  .ai-illus {
    width: min(292px, 82vw);
  }
  .hero-stat-slider {
    width: 150px;
    height: 104px;
  }
  .vc-top {
    gap: 6px;
    margin-bottom: 7px;
  }
  .vc-lbl {
    font-size: 8.5px;
  }
  .vc-up,
  .vc-row {
    font-size: 10.5px;
  }
  .who .card,
  .feat,
  .svc,
  .proj .body,
  .ind {
    padding: 24px 20px;
  }
  .who-vis {
    min-height: 260px;
  }
  .reel-frame {
    border-radius: 18px;
    aspect-ratio: 4 / 5;
  }
  .reel-caption {
    width: calc(100% - 28px);
    padding: 12px 14px;
    bottom: 12px;
    border-radius: 14px;
  }
  .reel-caption .eyebrow {
    font-size: 10px;
  }
  .reel-badge {
    max-width: calc(100% - 28px);
    padding: 6px 12px;
  }
  .proj .top {
    height: 126px;
  }
  .slides {
    min-height: 260px;
  }
  .slide .q {
    font-size: 17px;
  }
  .cta-btns .btn,
  .news input,
  .news button {
    width: 100%;
    justify-content: center;
  }
  .sticky-cta {
    left: 16px;
    right: 16px;
    bottom: 14px;
    justify-content: center;
    padding: 13px 18px;
  }
}

@media (max-width: 380px) {
  .hero-tag .mono {
    font-size: 9px;
  }
  h1.hero {
    font-size: 25px;
  }
  .ai-illus {
    width: min(260px, 80vw);
  }
  .hero-stat-slider {
    width: 138px;
    height: 98px;
  }
  .hero-stat-slider .vcard {
    padding: 11px 12px;
  }
  .vc-val {
    font-size: 20px;
  }
}
@media (prefers-reduced-motion: reduce) {
  * {
    animation: none !important;
    transition: none !important;
  }
  .reveal {
    opacity: 1;
    transform: none;
  }
  .timeline .rail i {
    width: 100%;
  }
  #loader {
    display: none;
  }
}

/* ---- HOVER: circle-draw icon ---- */
.circ {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 20px;
  height: 20px;
  flex: 0 0 auto;
  z-index: 1;
}
.circ .ring {
  position: absolute;
  inset: -9px;
  width: 38px;
  height: 38px;
  transform: rotate(-90deg);
  overflow: visible;
}
.circ .rb {
  fill: none;
  stroke: currentColor;
  stroke-width: 2.4;
  opacity: 0.16;
}
.circ .rp {
  fill: none;
  stroke: currentColor;
  stroke-width: 2.4;
  stroke-linecap: round;
  stroke-dasharray: 113;
  stroke-dashoffset: 113;
  transition: stroke-dashoffset 0.6s var(--ease);
}
.circ .arw {
  width: 12px;
  height: 12px;
  transition: transform 0.45s var(--ease);
}
.btn:hover .circ .rp,
.learn:hover .circ .rp {
  stroke-dashoffset: 0;
}
.btn:hover .circ .arw,
.learn:hover .circ .arw {
  transform: translateX(2px) scale(1.05);
}
.learn {
  gap: 12px;
  font-weight: 600;
}
.learn .circ {
  width: 24px;
  height: 24px;
  color: var(--blue);
}
.learn .circ .ring {
  inset: -10px;
  width: 44px;
  height: 44px;
}
.learn:hover .circ {
  color: var(--glow);
}
