﻿:root {
  --bg: #ffffff;
  --bg-alt: #f4f7fb;
  --text: #0e141b;
  --muted: #5c6675;
  --primary: #1e6bff;
  --accent: #2fd7b8;
  --border: rgba(14, 20, 27, 0.12);
  --card: #ffffff;
  --radius: 18px;
  --shadow: 0 22px 50px rgba(15, 23, 42, 0.12);
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Manrope', 'Segoe UI', sans-serif;
  color: var(--text);
  background: var(--bg);
  line-height: 1.6;
  position: relative;
  overflow-x: hidden;
}

body::before,
body::after {
  content: '';
  position: fixed;
  width: 520px;
  height: 520px;
  border-radius: 50%;
  background: radial-gradient(circle at top, rgba(47, 215, 184, 0.45), transparent 60%);
  filter: blur(12px);
  opacity: 0.5;
  z-index: -1;
  pointer-events: none;
  animation: float 14s ease-in-out infinite;
}

body::before {
  top: -180px;
  left: -180px;
}

body::after {
  right: -200px;
  bottom: -220px;
  background: radial-gradient(circle at top, rgba(30, 107, 255, 0.35), transparent 60%);
  animation-delay: -6s;
}

a {
  color: inherit;
  text-decoration: none;
}

img {
  max-width: 100%;
  display: block;
}

.container {
  width: min(1120px, 92%);
  margin: 0 auto;
}

.scroll-progress {
  position: fixed;
  top: 0;
  left: 0;
  height: 3px;
  width: 100%;
  background: rgba(14, 20, 27, 0.08);
  z-index: 12;
}

.scroll-progress span {
  display: block;
  height: 100%;
  width: 0%;
  background: linear-gradient(90deg, var(--accent), var(--primary));
  transition: width 0.15s ease;
}


.nav {
  position: sticky;
  top: 0;
  z-index: 10;
  background: rgba(255, 255, 255, 0.95);
  border-bottom: 1px solid rgba(14, 20, 27, 0.06);
  backdrop-filter: blur(6px);
}

.nav.scrolled {
  box-shadow: 0 14px 30px rgba(15, 23, 42, 0.08);
}

main,
.footer {
  position: relative;
  z-index: 1;
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 18px 0;
}

.brand {
  display: inline-flex;
  align-items: center;
}

.brand img {
  height: 72px;
  width: auto;
  object-fit: contain;
}

.menu {
  display: flex;
  gap: 22px;
  font-weight: 600;
  color: #2b3340;
}

.menu a {
  position: relative;
  padding: 4px 0;
}

.menu a::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: -4px;
  width: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--accent), var(--primary));
  transition: 0.2s ease;
}

.menu a:hover::after {
  width: 100%;
}

.menu a.active {
  color: var(--primary);
}

.menu a.active::after {
  width: 100%;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 10px 20px;
  border-radius: 999px;
  border: 1px solid var(--border);
  font-weight: 600;
  transition: 0.2s ease;
  position: relative;
  overflow: hidden;
}

.btn.primary {
  background: linear-gradient(120deg, var(--accent), var(--primary));
  color: #fff;
  border-color: transparent;
  box-shadow: 0 18px 35px rgba(30, 107, 255, 0.25);
}

.btn.primary:hover {
  transform: translateY(-1px);
}

.btn.primary::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(120deg, transparent, rgba(255, 255, 255, 0.4), transparent);
  transform: translateX(-120%);
  transition: transform 0.7s ease;
}

.btn.primary:hover::after {
  transform: translateX(120%);
}

.hero-cta {
  animation: pulseGlow 3s ease-in-out infinite;
}

.magnetic {
  will-change: transform;
}

.btn.ghost {
  background: #fff;
}

.btn.ghost:hover {
  border-color: rgba(30, 107, 255, 0.3);
}

.eyebrow {
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 3px;
  color: var(--primary);
  font-weight: 700;
  margin-bottom: 10px;
}

h1, h2, h3 {
  font-family: 'Sora', 'Segoe UI', sans-serif;
  line-height: 1.15;
}

.accent {
  background: linear-gradient(120deg, var(--accent), var(--primary));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  background-size: 200% 200%;
  animation: gradientShift 6s ease infinite;
}

h1 {
  font-size: clamp(2.1rem, 2.6vw + 1rem, 3.2rem);
  margin-bottom: 14px;
}

h2 {
  font-size: clamp(1.9rem, 2.4vw + 1rem, 2.8rem);
  margin-bottom: 10px;
}

.lead {
  color: var(--muted);
  font-size: 1.05rem;
  margin-bottom: 20px;
}

.hero {
  padding: 82px 0 50px;
  position: relative;
  overflow: hidden;
  --sx: 50%;
  --sy: 35%;
}

.hero-bg {
  position: absolute;
  inset: -60px 0 0;
  pointer-events: none;
  z-index: 0;
  overflow: hidden;
}

.hero-bg::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: radial-gradient(rgba(30, 107, 255, 0.18) 1px, transparent 1px);
  background-size: 34px 34px;
  opacity: 0.25;
  animation: gridMove 22s linear infinite;
}

/* removed spotlight and scan */


.hero-grid {
  position: relative;
  z-index: 1;
}

.orbit {
  position: absolute;
  right: -120px;
  top: -40px;
  width: 420px;
  height: 420px;
  border-radius: 50%;
  background: conic-gradient(from 180deg, rgba(47, 215, 184, 0.4), rgba(30, 107, 255, 0.4), rgba(47, 215, 184, 0.4));
  mask: radial-gradient(circle, transparent 60%, #000 61%);
  -webkit-mask: radial-gradient(circle, transparent 60%, #000 61%);
  filter: blur(0.5px);
  animation: spin 18s linear infinite;
}

.orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(2px);
  opacity: 0.7;
}

.orb-1 {
  width: 140px;
  height: 140px;
  right: 160px;
  top: 40px;
  background: radial-gradient(circle at 30% 30%, rgba(47, 215, 184, 0.7), transparent 60%);
  animation: float 10s ease-in-out infinite;
}

.orb-2 {
  width: 200px;
  height: 200px;
  right: 40px;
  top: 220px;
  background: radial-gradient(circle at 30% 30%, rgba(30, 107, 255, 0.6), transparent 60%);
  animation: float 12s ease-in-out infinite reverse;
}

.hero-lines {
  position: absolute;
  right: -40px;
  top: 40px;
  width: 520px;
  height: 300px;
  opacity: 0.4;
}

.hero-lines path {
  fill: none;
  stroke: rgba(30, 107, 255, 0.35);
  stroke-width: 2;
  stroke-dasharray: 6 10;
  animation: dash 6s linear infinite;
}

.hero-lines circle {
  fill: rgba(47, 215, 184, 0.8);
  animation: pulse 3s ease-in-out infinite;
}

.hero-animate [data-hero] {
  opacity: 0;
  transform: translateY(16px);
  animation: heroIn 0.7s ease forwards;
}

.hero-animate [data-hero]:nth-child(1) { animation-delay: 0.05s; }
.hero-animate [data-hero]:nth-child(2) { animation-delay: 0.15s; }
.hero-animate [data-hero]:nth-child(3) { animation-delay: 0.25s; }
.hero-animate [data-hero]:nth-child(4) { animation-delay: 0.35s; }
.hero-animate [data-hero]:nth-child(5) { animation-delay: 0.45s; }
.hero-animate [data-hero]:nth-child(6) { animation-delay: 0.55s; }

.hero-animate .hero-clip {
  clip-path: inset(0 100% 0 0);
  animation: heroIn 0.7s ease forwards, heroClip 0.9s ease forwards;
  will-change: clip-path, transform;
}


.hero-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 46px;
  align-items: start;
}

.hero-side {
  display: grid;
  gap: 16px;
  align-items: start;
}

.actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-bottom: 18px;
}

.hero-divider {
  height: 1px;
  background: rgba(14, 20, 27, 0.12);
  margin: 18px 0 18px;
}

.highlights {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 14px;
  font-size: 0.9rem;
  color: var(--muted);
}

.highlights strong {
  display: block;
  color: var(--text);
  margin-bottom: 4px;
}

.hero-panel {
  background:
    linear-gradient(#fff, #fff) padding-box,
    linear-gradient(120deg, rgba(47, 215, 184, 0.35), rgba(30, 107, 255, 0.35)) border-box;
  border-radius: var(--radius);
  border: 1px solid transparent;
  padding: 26px;
  display: grid;
  gap: 14px;
  box-shadow: var(--shadow);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
  animation: borderShift 8s ease infinite;
  position: relative;
}

.hero-panel > div {
  display: grid;
  gap: 6px;
}

.hero-panel h3 {
  margin: 0;
}

.hero-panel p {
  margin: 0;
}

.hero-panel ul {
  padding-left: 18px;
  color: var(--muted);
  display: grid;
  gap: 8px;
}

.hero-logo-under {
  width: 320px;
  height: auto;
  margin-top: 34px;
  margin-left: auto;
  margin-right: auto;
  align-self: center;
  display: block;
  object-fit: contain;
  animation: floatSlow 8s ease-in-out infinite;
}

.hero-panel .label {
  display: inline-flex;
  padding: 6px 12px;
  border-radius: 999px;
  background: rgba(47, 215, 184, 0.18);
  color: #0b5d4f;
  font-size: 0.75rem;
  font-weight: 700;
  justify-self: start;
}

.hero-panel .link {
  color: var(--primary);
  font-weight: 600;
}

.section {
  padding: 70px 0;
}

.section.alt {
  background: var(--bg-alt);
}

.section-head {
  max-width: 640px;
  margin-bottom: 30px;
}

.deliver-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 18px;
}

.deliver-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 20px;
  display: grid;
  gap: 10px;
}

.deliver-card ul {
  padding-left: 18px;
  color: var(--muted);
  display: grid;
  gap: 6px;
}

.signature {
  padding: 70px 0 90px;
}

.signature-inner {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 32px;
  align-items: center;
}

.signature-text p {
  color: var(--muted);
  margin-top: 10px;
}

.signature-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 16px;
}

.signature-tags span {
  padding: 6px 14px;
  border-radius: 999px;
  background: rgba(30, 107, 255, 0.1);
  color: var(--primary);
  font-weight: 600;
  font-size: 0.85rem;
}

.signature-media {
  display: grid;
  place-items: center;
}

.robot-card {
  width: min(520px, 100%);
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 22px;
  overflow: hidden;
  box-shadow: var(--shadow);
  display: grid;
}

.robot-visual {
  position: relative;
  background: #0b0f16;
  aspect-ratio: 4 / 3;
  padding: 0;
  display: block;
  overflow: hidden;
}

.robot-visual img {
  width: min(320px, 85%);
  height: auto;
  object-fit: contain;
  filter: drop-shadow(0 24px 40px rgba(0, 0, 0, 0.35));
}

.robot-iframe {
  width: 100%;
  height: 100%;
  border: 0;
}

.robot-prompt {
  padding: 16px 18px 18px;
  background: #f5f8ff;
  border-top: 1px solid rgba(14, 20, 27, 0.08);
}

.prompt-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  margin-bottom: 10px;
  font-size: 0.75rem;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: rgba(14, 20, 27, 0.55);
}

.prompt-chip {
  background: rgba(30, 107, 255, 0.12);
  color: var(--primary);
  padding: 4px 10px;
  border-radius: 999px;
  font-weight: 700;
  font-size: 0.7rem;
}

.prompt-text {
  margin: 0;
  padding: 12px 14px;
  border-radius: 14px;
  border: 1px solid rgba(14, 20, 27, 0.08);
  background: #fff;
  color: #1f2937;
  font-family: "JetBrains Mono", "Consolas", "SFMono-Regular", monospace;
  font-size: 0.72rem;
  line-height: 1.5;
  max-height: 220px;
  overflow: auto;
  white-space: pre-wrap;
}

.signature-visual {
  display: grid;
  place-items: center;
}

.ai-showcase {
  position: relative;
  width: 100%;
  border-radius: 26px;
  background: #f7f9fc;
  border: 1px solid rgba(30, 107, 255, 0.12);
  box-shadow: 0 24px 55px rgba(15, 23, 42, 0.12);
  padding: 28px;
  display: grid;
  grid-template-columns: minmax(220px, 1fr) minmax(260px, 1fr);
  gap: 26px;
  overflow: hidden;
}

.ai-copy h3 {
  margin: 10px 0 10px;
  font-size: 1.4rem;
}

.ai-copy p {
  color: var(--muted);
}

.ai-badges {
  margin-top: 14px;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.ai-badges span {
  padding: 6px 12px;
  border-radius: 999px;
  background: rgba(30, 107, 255, 0.08);
  color: var(--primary);
  font-weight: 600;
  font-size: 0.85rem;
}

.ai-media {
  display: grid;
  gap: 14px;
}

.ai-video {
  position: relative;
  height: 220px;
  border-radius: 18px;
  overflow: hidden;
  background: #0c111a;
  border: 1px solid rgba(30, 107, 255, 0.16);
  box-shadow: 0 18px 40px rgba(15, 23, 42, 0.18);
}

.ai-video video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.ai-overlay {
  position: absolute;
  inset: 0;
  padding: 16px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  pointer-events: none;
}

.ai-status {
  align-self: flex-start;
  padding: 6px 12px;
  border-radius: 999px;
  background: rgba(15, 23, 42, 0.7);
  color: #e9f3ff;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 1px;
}

.ai-caption {
  align-self: flex-end;
  color: rgba(233, 243, 255, 0.7);
  font-size: 0.8rem;
}

.ai-scan {
  position: absolute;
  inset: -40% -10%;
  background: linear-gradient(120deg, transparent 45%, rgba(47, 215, 184, 0.28), rgba(30, 107, 255, 0.28), transparent 55%);
  transform: translateX(-30%);
  animation: scanSweep 10s linear infinite;
  opacity: 0.5;
  mix-blend-mode: screen;
  pointer-events: none;
}

.ai-metrics {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
}

.ai-metric {
  background: #fff;
  border: 1px solid rgba(30, 107, 255, 0.12);
  border-radius: 14px;
  padding: 10px 12px;
  display: grid;
  gap: 4px;
  box-shadow: 0 12px 26px rgba(15, 23, 42, 0.08);
  text-align: center;
}

.ai-metric strong {
  font-size: 1.2rem;
}

.ai-metric span {
  color: var(--muted);
  font-size: 0.85rem;
}

.innovation-panel {
  position: relative;
  height: 400px;
  width: 100%;
  border-radius: 26px;
  background: radial-gradient(circle at 20% 20%, rgba(30, 107, 255, 0.22), transparent 45%),
    radial-gradient(circle at 80% 70%, rgba(47, 215, 184, 0.18), transparent 55%),
    #0b1320;
  border: 1px solid rgba(30, 107, 255, 0.2);
  box-shadow: 0 30px 70px rgba(15, 23, 42, 0.28);
  overflow: hidden;
}

.innovation-grid {
  position: absolute;
  inset: 0;
  background-image: radial-gradient(rgba(255, 255, 255, 0.08) 1px, transparent 1px);
  background-size: 36px 36px;
  opacity: 0.35;
  animation: gridMove 18s linear infinite;
}

.innovation-scan {
  position: absolute;
  inset: -40% -10%;
  background: linear-gradient(120deg, transparent 45%, rgba(47, 215, 184, 0.28), rgba(30, 107, 255, 0.28), transparent 55%);
  transform: translateX(-30%);
  animation: scanSweep 10s linear infinite;
  opacity: 0.6;
  mix-blend-mode: screen;
}

.innovation-lines {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.innovation-lines path {
  fill: none;
  stroke: rgba(47, 215, 184, 0.4);
  stroke-width: 1.5;
  stroke-dasharray: 6 10;
  animation: dash 8s linear infinite;
}

.innovation-core {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 170px;
  height: 170px;
  border-radius: 50%;
  background: radial-gradient(circle at 30% 30%, rgba(47, 215, 184, 0.5), rgba(30, 107, 255, 0.2) 55%, rgba(11, 19, 32, 0.9) 75%);
  border: 1px solid rgba(255, 255, 255, 0.12);
  box-shadow: 0 24px 50px rgba(15, 23, 42, 0.35);
  display: grid;
  place-items: center;
  text-align: center;
  color: #e9f3ff;
  padding: 14px;
  gap: 6px;
  z-index: 2;
  animation: corePulse 6s ease-in-out infinite;
}

.innovation-core .chip {
  display: inline-flex;
  padding: 4px 10px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.12);
  font-size: 0.7rem;
  letter-spacing: 2px;
  text-transform: uppercase;
}

.innovation-card {
  position: absolute;
  width: 220px;
  padding: 14px 16px;
  border-radius: 16px;
  background: rgba(15, 23, 42, 0.7);
  border: 1px solid rgba(255, 255, 255, 0.16);
  color: #e6f0ff;
  backdrop-filter: blur(10px);
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.25);
  display: grid;
  gap: 6px;
  z-index: 3;
  animation: floatSlow 8s ease-in-out infinite;
}

.innovation-card span {
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: rgba(230, 240, 255, 0.7);
}

.innovation-card strong {
  color: #fff;
}

.innovation-card p {
  color: rgba(230, 240, 255, 0.7);
  font-size: 0.85rem;
}

.innovation-card.card-1 { top: 34px; left: 34px; animation-delay: -1s; }
.innovation-card.card-2 { top: 34px; right: 34px; animation-delay: -2.5s; }
.innovation-card.card-3 { bottom: 34px; left: 34px; animation-delay: -3.5s; }
.innovation-card.card-4 { bottom: 34px; right: 34px; animation-delay: -4.5s; }

.innovation-node {
  position: absolute;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.9), rgba(47, 215, 184, 0.7));
  box-shadow: 0 0 14px rgba(47, 215, 184, 0.6);
  animation: pulse 3s ease-in-out infinite;
}

.innovation-node.node-1 { top: 84px; left: 140px; animation-delay: 0s; }
.innovation-node.node-2 { top: 84px; right: 140px; animation-delay: 0.7s; }
.innovation-node.node-3 { bottom: 84px; left: 140px; animation-delay: 1.4s; }
.innovation-node.node-4 { bottom: 84px; right: 140px; animation-delay: 2.1s; }

.signature-stage {
  position: relative;
  height: 380px;
  border-radius: 26px;
  background: #0f1722;
  overflow: hidden;
  box-shadow: 0 30px 80px rgba(15, 23, 42, 0.35);
}

.signature-stage.signature-vortex {
  background: radial-gradient(circle at 20% 20%, rgba(47, 215, 184, 0.16), transparent 45%),
    radial-gradient(circle at 80% 12%, rgba(30, 107, 255, 0.18), transparent 48%),
    radial-gradient(circle at 50% 90%, rgba(30, 107, 255, 0.12), transparent 60%),
    linear-gradient(160deg, #f7fbff, #eef4ff);
  border: 1px solid rgba(30, 107, 255, 0.12);
  box-shadow: 0 25px 60px rgba(15, 23, 42, 0.12);
  display: grid;
  place-items: center;
  isolation: isolate;
}

.vortex-bg {
  position: absolute;
  inset: -10%;
  background-image:
    radial-gradient(rgba(255, 255, 255, 0.05) 1px, transparent 1px),
    radial-gradient(rgba(47, 215, 184, 0.08) 1px, transparent 1px);
  background-size: 28px 28px, 52px 52px;
  opacity: 0.5;
  animation: gridMove 22s linear infinite;
  pointer-events: none;
  z-index: 0;
}

.vortex-core {
  position: relative;
  z-index: 3;
  width: 150px;
  height: 150px;
  border-radius: 50%;
  background: radial-gradient(circle at 30% 30%, rgba(47, 215, 184, 0.32), rgba(30, 107, 255, 0.2) 55%, rgba(255, 255, 255, 0.95) 78%);
  border: 1px solid rgba(30, 107, 255, 0.2);
  box-shadow: 0 20px 40px rgba(30, 107, 255, 0.18);
  display: grid;
  place-items: center;
  text-align: center;
  color: var(--text);
  padding: 14px;
  gap: 6px;
  animation: corePulse 6s ease-in-out infinite;
}

.vortex-core strong {
  font-size: 1rem;
}

.vortex-core p {
  font-size: 0.8rem;
  opacity: 0.75;
}

.core-label {
  font-size: 0.7rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: rgba(14, 20, 27, 0.6);
}

.vortex-ring {
  position: absolute;
  border-radius: 50%;
  border: 1px dashed rgba(30, 107, 255, 0.22);
  animation: orbitSpin 24s linear infinite;
  z-index: 1;
  pointer-events: none;
}

.signature-vortex::after {
  content: '';
  position: absolute;
  inset: 50%;
  width: 360px;
  height: 360px;
  transform: translate(-50%, -50%);
  border-radius: 50%;
  background: conic-gradient(from 120deg, rgba(47, 215, 184, 0.12), rgba(30, 107, 255, 0.2), rgba(47, 215, 184, 0.12));
  mask: radial-gradient(circle, transparent 58%, #000 61%, #000 63%, transparent 66%);
  -webkit-mask: radial-gradient(circle, transparent 58%, #000 61%, #000 63%, transparent 66%);
  opacity: 0.5;
  animation: spin 26s linear infinite;
  pointer-events: none;
  z-index: 2;
}

.vortex-ring span {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: rotate(calc(var(--i) * 45deg)) translateX(var(--radius)) rotate(calc(var(--i) * -45deg));
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.95) 0%, rgba(47, 215, 184, 0.85) 45%, rgba(30, 107, 255, 0.55) 75%, transparent 80%);
  border: 1px solid rgba(30, 107, 255, 0.2);
  box-shadow: 0 0 10px rgba(47, 215, 184, 0.4), 0 0 20px rgba(30, 107, 255, 0.28);
  font-size: 0;
  color: transparent;
}

.ring-1 {
  width: 340px;
  height: 340px;
  --radius: 170px;
}

.ring-2 {
  width: 260px;
  height: 260px;
  --radius: 130px;
  border-color: rgba(47, 215, 184, 0.25);
  animation-duration: 16s;
  animation-direction: reverse;
}

.vortex-card {
  position: absolute;
  width: 200px;
  padding: 14px;
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.92);
  border: 1px solid rgba(30, 107, 255, 0.16);
  color: var(--text);
  backdrop-filter: blur(12px);
  box-shadow: 0 18px 40px rgba(15, 23, 42, 0.12);
  display: grid;
  gap: 6px;
  animation: floatSlow 8s ease-in-out infinite;
  z-index: 4;
}

.vortex-card span {
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: rgba(14, 20, 27, 0.55);
}

.vortex-card strong {
  color: var(--text);
}

.vortex-card p {
  color: var(--muted);
  font-size: 0.85rem;
}

.vortex-card.card-a { top: 30px; left: 18px; animation-delay: -1s; }
.vortex-card.card-b { top: 120px; right: 18px; animation-delay: -2.5s; }
.vortex-card.card-c { bottom: 30px; left: 22px; animation-delay: -3.5s; }

.section-head h2 {
  position: relative;
  display: inline-block;
}

.section-head h2::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: -10px;
  width: 46px;
  height: 3px;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--accent), var(--primary));
}

.diff-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
  gap: 18px;
  margin-bottom: 32px;
}

.diff-card {
  background: #fff;
  border-radius: var(--radius);
  border: 1px solid rgba(30, 107, 255, 0.15);
  padding: 20px;
  position: relative;
  overflow: hidden;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.diff-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(120deg, rgba(47, 215, 184, 0.16), rgba(30, 107, 255, 0.12));
  opacity: 0;
  transition: opacity 0.25s ease;
}

.diff-card > * {
  position: relative;
  z-index: 1;
}

.diff-card:hover::before {
  opacity: 1;
}

.diff-tag {
  display: inline-flex;
  padding: 4px 10px;
  border-radius: 999px;
  background: rgba(30, 107, 255, 0.12);
  color: var(--primary);
  font-size: 0.75rem;
  font-weight: 700;
  margin-bottom: 10px;
}

.scoreboard {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 18px;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 22px;
  box-shadow: var(--shadow);
}

.stat {
  display: grid;
  gap: 6px;
}

.stat .count {
  font-size: clamp(1.8rem, 2.2vw + 1rem, 2.6rem);
  font-weight: 700;
  color: var(--text);
}

.stat p {
  color: var(--muted);
  font-size: 0.9rem;
}

.pillar-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 18px;
}

.pillar-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 20px;
  display: grid;
  gap: 10px;
  position: relative;
  overflow: hidden;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.pillar-number {
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--primary);
  letter-spacing: 2px;
}

.commit-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 18px;
}

.commit-card {
  background: #fff;
  border: 1px solid rgba(30, 107, 255, 0.16);
  border-radius: var(--radius);
  padding: 20px;
  display: grid;
  gap: 8px;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.about-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 22px;
  box-shadow: var(--shadow);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.about-card ul {
  margin-top: 12px;
  padding-left: 18px;
  color: var(--muted);
  display: grid;
  gap: 8px;
}

.logo-marquee {
  position: relative;
  overflow: hidden;
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 8px 0;
  background: #fff;
  mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent);
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent);
}

.logo-track {
  display: flex;
  align-items: center;
  gap: 70px;
  width: max-content;
  animation: logoMarquee 24s linear infinite;
  will-change: transform;
}

.logo-track span {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 16px 20px;
  text-align: center;
  color: #3a4452;
  font-weight: 600;
  min-width: 160px;
  white-space: nowrap;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.logo-item {
  width: 240px;
  height: 90px;
  border: 1px solid var(--border);
  border-radius: 12px;
  background: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 10px 14px;
  overflow: hidden;
}

.logo-item img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  image-rendering: -webkit-optimize-contrast;
  border-radius: 12px;
}

.portfolio {
  position: relative;
  background: var(--bg-alt);
}

.portfolio::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 12% 10%, rgba(47, 215, 184, 0.14), transparent 55%),
    radial-gradient(circle at 86% 18%, rgba(30, 107, 255, 0.12), transparent 55%);
  opacity: 0.7;
  pointer-events: none;
}

.portfolio .container {
  position: relative;
  z-index: 1;
}

.portfolio-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 22px;
}

.portfolio-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  display: grid;
  grid-template-rows: auto 1fr;
  box-shadow: var(--shadow);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.portfolio-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 26px 60px rgba(15, 23, 42, 0.18);
}

.portfolio-media {
  position: relative;
  aspect-ratio: 16 / 9;
  background: #0b1320;
  overflow: hidden;
}

.portfolio-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top;
  transform: scale(1.01);
  transition: transform 0.6s ease;
}

.portfolio-card:hover .portfolio-media img {
  transform: scale(1.06);
}

.portfolio-card.is-infinity:hover .portfolio-media img {
  transform: scale(1.02);
}

.portfolio-card.is-infinity .portfolio-media img {
  object-position: 0% 0;
  transform: scale(1);
}

.portfolio-tag {
  position: absolute;
  right: 14px;
  bottom: 14px;
  padding: 6px 12px;
  border-radius: 999px;
  background: rgba(15, 23, 42, 0.72);
  color: #e9f3ff;
  font-size: 0.72rem;
  letter-spacing: 1px;
  text-transform: uppercase;
  border: 1px solid rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(6px);
}

.portfolio-body {
  padding: 20px 20px 22px;
  display: grid;
  gap: 10px;
}

.portfolio-domain {
  font-size: 0.8rem;
  letter-spacing: 0.4px;
  color: var(--muted);
}

.portfolio-body h3 {
  margin: 0;
  color: var(--text);
}

.portfolio-body p {
  margin: 0;
  color: var(--muted);
}

.portfolio-body .link {
  color: var(--primary);
  font-weight: 600;
}

.portfolio-body .link:hover {
  color: #0b4dd9;
}


.service-list {
  display: grid;
  gap: 18px;
  position: relative;
  padding-left: 28px;
}

.service-list::before {
  content: '';
  position: absolute;
  left: 10px;
  top: 12px;
  bottom: 12px;
  width: 2px;
  background: rgba(14, 20, 27, 0.12);
  border-radius: 999px;
}

.service-item {
  display: grid;
  grid-template-columns: minmax(220px, 1fr) minmax(260px, 1fr);
  gap: 24px;
  align-items: start;
  border-top: 1px solid rgba(14, 20, 27, 0.1);
  padding-top: 18px;
  position: relative;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.service-item::before {
  content: '';
  position: absolute;
  left: -23px;
  top: 22px;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: rgba(30, 107, 255, 0.12);
  border: 2px solid rgba(30, 107, 255, 0.35);
  box-shadow: 0 0 0 0 rgba(47, 215, 184, 0.2);
  transition: transform 0.25s ease, box-shadow 0.25s ease, background 0.25s ease, border-color 0.25s ease;
}

.service-item:last-child {
  border-bottom: 1px solid rgba(14, 20, 27, 0.1);
  padding-bottom: 18px;
}

.service-index {
  color: var(--primary);
  font-weight: 700;
  font-size: 0.9rem;
  letter-spacing: 1px;
}

.service-list h3 {
  margin-top: 6px;
}

.service-list p {
  color: var(--muted);
  max-width: 420px;
  text-align: left;
}

.two-col {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 30px;
  align-items: start;
}

.bullets {
  margin-top: 12px;
  padding-left: 18px;
  color: var(--muted);
  display: grid;
  gap: 8px;
}


.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 20px;
}

.testimonial {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 20px;
  display: grid;
  gap: 10px;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.testimonial strong {
  color: var(--text);
}

.testimonial span {
  color: var(--muted);
  font-size: 0.9rem;
}

.stats {
  background: #fff;
  border-radius: var(--radius);
  border: 1px solid var(--border);
  padding: 20px;
  display: grid;
  gap: 16px;
  box-shadow: var(--shadow);
}

.stats strong {
  font-size: 1.4rem;
  color: var(--text);
}

.stats span {
  color: var(--muted);
}


.grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
  gap: 20px;
}

.step {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 20px;
}

.step span {
  display: inline-flex;
  width: 36px;
  height: 36px;
  align-items: center;
  justify-content: center;
  border-radius: 10px;
  background: rgba(30, 107, 255, 0.12);
  color: var(--primary);
  font-weight: 700;
  margin-bottom: 10px;
}

.contact {
  background: #fff;
}

.contact-box {
  display: grid;
  gap: 12px;
  margin-top: 14px;
}

.form {
  display: grid;
  gap: 12px;
  background: var(--bg-alt);
  border-radius: var(--radius);
  padding: 20px;
  border: 1px solid var(--border);
  box-shadow: var(--shadow);
}

.form label {
  display: grid;
  gap: 6px;
  font-weight: 600;
}

.form input,
.form select,
.form textarea {
  padding: 10px 12px;
  border-radius: 10px;
  border: 1px solid rgba(14, 20, 27, 0.15);
  font-family: inherit;
}

.form small {
  color: var(--muted);
}

.footer {
  margin-top: 36px;
  border-top: 1px solid rgba(14, 20, 27, 0.08);
  background:
    radial-gradient(120% 80% at 10% -10%, rgba(30, 107, 255, 0.1), transparent 60%),
    radial-gradient(120% 80% at 90% 110%, rgba(47, 215, 184, 0.12), transparent 60%),
    var(--bg-alt);
  color: var(--text);
}

.footer-top {
  display: grid;
  grid-template-columns: 1.65fr repeat(3, minmax(180px, 1fr));
  gap: 26px;
  align-items: stretch;
  padding: 54px 0 30px;
}

.footer-brand {
  display: grid;
  align-content: start;
  gap: 18px;
  padding: 10px 28px 8px 0;
  border-right: none;
}

.footer-brand p {
  margin: 0;
  color: var(--muted);
  line-height: 1.7;
  font-size: 1.02rem;
  max-width: 52ch;
}

.footer-col {
  display: grid;
  align-content: start;
  gap: 11px;
  padding: 8px 0 8px 16px;
  border-left: 1px solid rgba(14, 20, 27, 0.08);
}

.footer-col h4 {
  margin: 0 0 6px;
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 1.15px;
  color: var(--text);
}

.footer-col a,
.footer-col span {
  color: var(--muted);
  text-decoration: none;
  transition: color 0.2s ease, transform 0.2s ease;
  width: fit-content;
  line-height: 1.5;
  font-size: 1rem;
  word-break: break-word;
}

.footer-col a:hover {
  color: var(--primary);
  transform: translateX(3px);
}

.footer-bottom {
  border-top: 1px solid rgba(14, 20, 27, 0.08);
  padding: 14px 0 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  color: var(--muted);
  font-size: 0.86rem;
}

.footer-logo {
  height: 56px;
  width: auto;
  filter: drop-shadow(0 8px 16px rgba(30, 107, 255, 0.14));
}

.footer-col h4::after {
  content: '';
  display: block;
  width: 34px;
  height: 2px;
  margin-top: 8px;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--primary), var(--accent));
}

.reveal {
  opacity: 0;
  transform: translateY(20px);
  transition: 0.6s ease;
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.tilt {
  transform-style: preserve-3d;
  will-change: transform;
  transition: transform 0.15s ease, box-shadow 0.25s ease;
}

.service-item:hover {
  transform: translateX(6px);
}

.logo-track span:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow);
}


.tilt:hover {
  box-shadow: var(--shadow);
}


@keyframes spin {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}

@keyframes gridMove {
  0% { background-position: 0 0; }
  100% { background-position: 120px 120px; }
}

@keyframes heroIn {
  from { opacity: 0; transform: translateY(16px); }
  to { opacity: 1; transform: translateY(0); }
}

@keyframes heroClip {
  from { clip-path: inset(0 100% 0 0); }
  to { clip-path: inset(0 0 0 0); }
}


@keyframes gradientShift {
  0% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
  100% { background-position: 0% 50%; }
}

@keyframes borderShift {
  0% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
  100% { background-position: 0% 50%; }
}


@keyframes dash {
  from { stroke-dashoffset: 0; }
  to { stroke-dashoffset: 120; }
}


@keyframes pulse {
  0%, 100% { transform: scale(1); opacity: 0.8; }
  50% { transform: scale(1.15); opacity: 0.5; }
}

@keyframes scanSweep {
  0% { transform: translateX(-40%); }
  100% { transform: translateX(40%); }
}

@keyframes orbitSpin {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}

@keyframes corePulse {
  0%, 100% { transform: scale(1); box-shadow: 0 24px 50px rgba(15, 23, 42, 0.4); }
  50% { transform: scale(1.03); box-shadow: 0 30px 70px rgba(30, 107, 255, 0.35); }
}

@keyframes logoMarquee {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

@media (prefers-reduced-motion: reduce) {
  .logo-track {
    animation: none;
  }

  .service-item {
    transition: none;
  }

  .logo-track span {
    transition: none;
  }

  .vortex-bg,
  .vortex-ring,
  .vortex-card,
  .vortex-core,
  .signature-vortex::after {
    animation: none;
  }

  .innovation-grid,
  .innovation-scan,
  .innovation-lines path,
  .innovation-card,
  .innovation-core,
  .innovation-node {
    animation: none;
  }

  .ops-glow,
  .ai-scan {
    animation: none;
  }
}

@keyframes pulseGlow {
  0%, 100% { box-shadow: 0 18px 35px rgba(30, 107, 255, 0.25); }
  50% { box-shadow: 0 24px 55px rgba(30, 107, 255, 0.45); }
}

@keyframes float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-18px); }
}

@keyframes floatSlow {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-10px); }
}

@media (hover: none) {
  .cursor-glow {
    display: none;
  }
}

@media (max-width: 900px) {
  .menu {
    display: none;
  }
  .hero-bg {
    opacity: 0.6;
  }
  .signature-stage {
    height: 360px;
  }
  .innovation-panel {
    height: 360px;
  }
  .innovation-card {
    width: 190px;
  }
  .innovation-card.card-1 { top: 26px; left: 22px; }
  .innovation-card.card-2 { top: 26px; right: 22px; }
  .innovation-card.card-3 { bottom: 26px; left: 22px; }
  .innovation-card.card-4 { bottom: 26px; right: 22px; }
  .ai-showcase {
    grid-template-columns: 1fr;
  }
  .ai-metrics {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
  .ring-1 {
    width: 300px;
    height: 300px;
    --radius: 150px;
  }
  .ring-2 {
    width: 220px;
    height: 220px;
    --radius: 110px;
  }
  .vortex-card {
    width: 170px;
  }
  .vortex-card.card-a { top: 32px; left: 16px; }
  .vortex-card.card-b { top: 112px; right: 16px; }
  .vortex-card.card-c { bottom: 28px; left: 18px; }
  .footer-top {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 18px;
  }
  .footer-brand {
    grid-column: 1 / -1;
    border-right: none;
    padding-right: 0;
    padding-bottom: 6px;
  }
  .footer-bottom {
    flex-direction: column;
    align-items: flex-start;
    gap: 6px;
  }
}

@media (max-width: 680px) {
  .actions {
    flex-direction: column;
    align-items: flex-start;
  }
  .service-item {
    grid-template-columns: 1fr;
  }
  .innovation-panel {
    height: 320px;
  }
  .innovation-card {
    width: 170px;
  }
  .innovation-card.card-1 { top: 22px; left: 18px; }
  .innovation-card.card-2 { top: 22px; right: 18px; }
  .innovation-card.card-3 { bottom: 22px; left: 18px; }
  .innovation-card.card-4 { bottom: 22px; right: 18px; }
  .ai-showcase {
    grid-template-columns: 1fr;
    padding: 20px;
  }
  .ai-metrics {
    grid-template-columns: 1fr;
  }
  .ring-2 {
    display: none;
  }
  .ring-1 span:nth-child(n + 6) {
    display: none;
  }
  .vortex-card {
    width: 160px;
  }
  .vortex-card.card-a { top: 28px; left: 14px; }
  .vortex-card.card-b { top: 110px; right: 14px; }
  .vortex-card.card-c { bottom: 24px; left: 14px; }
  .footer-top {
    grid-template-columns: 1fr;
    padding-top: 32px;
    gap: 10px;
  }
  .footer-col {
    padding: 10px 0 8px 0;
    border-left: none;
    border-top: 1px solid rgba(14, 20, 27, 0.08);
  }
}

