/* ═══════════════════════════════════════════════
   CSS CUSTOM PROPERTIES
═══════════════════════════════════════════════ */
:root {
  --ink: #05080e;
  --ink2: #0c1019;
  --ink3: #131a27;
  --cyan: #00d4ff;
  --cyan-dim: #0099bb;
  --blue: #0057ff;
  --gold: #f5a623;
  --white: #ffffff;
  --white60: rgba(255, 255, 255, 0.6);
  --white40: rgba(255, 255, 255, 0.4);
  --white20: rgba(255, 255, 255, 0.2);
  --white10: rgba(255, 255, 255, 0.1);
  --white05: rgba(255, 255, 255, 0.05);
  --cyan10: rgba(0, 212, 255, 0.1);
  --cyan20: rgba(0, 212, 255, 0.2);
  --blue10: rgba(0, 87, 255, 0.1);
  --gold10: rgba(245, 166, 35, 0.1);
  --font-display: "Outfit", system-ui, sans-serif;
  --font-body: "Lexend", system-ui, sans-serif;
  --ease-smooth: cubic-bezier(0.22, 1, 0.36, 1);
  --nav-h: 72px;
  --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
  --ease-in-out: cubic-bezier(0.87, 0, 0.13, 1);
}

/* ═══════════════════════════════════════════════
   RESET & BASE
═══════════════════════════════════════════════ */
*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  font-size: 16px;
  scroll-behavior: smooth;
  overflow-x: hidden;
}

body {
  font-family: var(--font-body);
  background: var(--ink);
  color: var(--white);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
}

/* Reduce motion */
@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
  .grad-cyan {
    animation: none;
    background-position: 0 center;
  }
}

/* ── Accessibility ── */
.skip-link {
  position: absolute;
  top: -100px;
  left: 1rem;
  background: var(--cyan);
  color: var(--ink);
  padding: 0.75rem 1.5rem;
  border-radius: 0 0 8px 8px;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.875rem;
  z-index: 10000;
  transition: top 0.3s;
  text-decoration: none;
}
.skip-link:focus {
  top: 0;
  outline: 3px solid var(--ink);
  outline-offset: 2px;
}

:focus-visible {
  outline: 2px solid var(--cyan);
  outline-offset: 3px;
  border-radius: 4px;
}

/* ── Typography ── */
.font-display {
  font-family: var(--font-display);
}

/* ── Gradient Text (animated) ── */
.grad-cyan,
.grad-cyan .word,
.grad-cyan .char {
  background: linear-gradient(
    105deg,
    #00d4ff 0%,
    #00f0ff 35%,
    #0057ff 60%,
    #00d4ff 100%
  );
  background-size: 200% auto;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  color: transparent;
}
.grad-cyan,
.grad-cyan .word,
.grad-cyan .char {
  animation: gradShimmer 6s var(--ease-smooth) infinite;
}
@keyframes gradShimmer {
  0%,
  100% {
    background-position: 0% center;
  }
  50% {
    background-position: 100% center;
  }
}
.grad-gold {
  background: linear-gradient(135deg, #f5a623 0%, #fbbf24 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* ── Vector icons (SVG sprite) ── */
.vector-icon {
  display: block;
  flex-shrink: 0;
  fill: none;
  stroke: currentColor;
}
.vector-icon--xs {
  width: 14px;
  height: 14px;
}
.vector-icon--md {
  width: 22px;
  height: 22px;
}
.vector-icon--lg {
  width: 28px;
  height: 28px;
}
.icon-cyan {
  color: var(--cyan);
}
.icon-blue {
  color: var(--blue);
}
.icon-gold {
  color: var(--gold);
}
.icon-bg-blue {
  background: var(--blue10);
}
.icon-bg-gold {
  background: var(--gold10);
}

/* ── Scrollbar ── */
::-webkit-scrollbar {
  width: 4px;
}
::-webkit-scrollbar-track {
  background: var(--ink);
}
::-webkit-scrollbar-thumb {
  background: var(--cyan-dim);
  border-radius: 99px;
}

/* ═══════════════════════════════════════════════
   NOISE TEXTURE OVERLAY
═══════════════════════════════════════════════ */
body::after {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 9999;
  opacity: 0.25;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 300 300' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.04'/%3E%3C/svg%3E");
}

/* ═══════════════════════════════════════════════
   GRID BACKGROUND
═══════════════════════════════════════════════ */
.grid-bg {
  background-image:
    linear-gradient(rgba(0, 212, 255, 0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(0, 212, 255, 0.035) 1px, transparent 1px);
  background-size: 72px 72px;
}

/* ═══════════════════════════════════════════════
   NAVIGATION
═══════════════════════════════════════════════ */
#navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  height: var(--nav-h);
  background: rgba(5, 8, 14, 0.75);
  backdrop-filter: blur(24px) saturate(180%);
  border-bottom: 1px solid rgba(0, 212, 255, 0.08);
  transition:
    border-color 0.3s,
    background 0.3s;
}
#navbar.scrolled {
  background: rgba(5, 8, 14, 0.92);
  border-color: rgba(0, 212, 255, 0.15);
}
.nav-inner {
  /* max-width: 1280px; */
  margin: 0 auto;
  padding: 0 6rem;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.nav-logo {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.125rem;
  letter-spacing: -0.02em;
  display: flex;
  align-items: center;
  gap: 0.625rem;
  text-decoration: none;
  color: var(--white);
  letter-spacing: -0.02em;
}
.nav-logo-mark {
  width: 34px;
  height: 34px;
  border-radius: 10px;
  background: linear-gradient(135deg, #0057ff, #00d4ff);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 11px;
  font-weight: 800;
  color: #fff;
  flex-shrink: 0;
}
.nav-links {
  display: flex;
  align-items: center;
  gap: 2.5rem;
  list-style: none;
}
@media (max-width: 960px) {
  .nav-links {
    display: none;
  }
  
}
.nav-links a {
  font-size: 0.8125rem;
  font-weight: 400;
  color: var(--white40);
  text-decoration: none;
  letter-spacing: 0.02em;
  transition: color 0.2s;
  position: relative;
}
.nav-links a::after {
  content: "";
  position: absolute;
  bottom: -4px;
  left: 0;
  right: 0;
  height: 1px;
  background: var(--cyan);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.3s var(--ease-out);
}
.nav-links a:hover {
  color: var(--cyan);
}
.nav-links a:hover::after {
  transform: scaleX(1);
}

.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.625rem 1.375rem;
  border-radius: 10px;
  background: linear-gradient(135deg, #0057ff, #00d4ff);
  color: #fff;
  font-family: var(--font-display);
  font-size: 0.8125rem;
  font-weight: 600;
  text-decoration: none;
  border: none;
  cursor: pointer;
  transition:
    transform 0.25s var(--ease-out),
    box-shadow 0.25s;
  position: relative;
  overflow: hidden;
}
.btn-primary::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, #00d4ff, #0057ff);
  opacity: 0;
  transition: opacity 0.3s;
}
.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 32px rgba(0, 87, 255, 0.4);
}
.btn-primary:hover::before {
  opacity: 1;
}
.btn-primary span {
  position: relative;
  z-index: 1;
}
.btn-primary svg {
  position: relative;
  z-index: 1;
}

.btn-ghost {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.625rem 1.375rem;
  border-radius: 10px;
  border: 1px solid rgba(0, 212, 255, 0.25);
  color: var(--white60);
  font-family: var(--font-display);
  font-size: 0.8125rem;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.25s var(--ease-out);
  background: transparent;
  cursor: pointer;
}
.btn-ghost:hover {
  border-color: rgba(0, 212, 255, 0.6);
  background: rgba(0, 212, 255, 0.06);
  color: var(--cyan);
  transform: translateY(-2px);
}

/* Mobile hamburger */
.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: transparent;
  border: none;
  cursor: pointer;
  /* padding: 8px; */
  border-radius: 8px;
}
@media (max-width: 960px) {
  .nav-toggle {
    display: flex;
  }
}
.nav-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: all 0.3s var(--ease-out);
  transform-origin: center;
}
.nav-toggle.active span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}
.nav-toggle.active span:nth-child(2) {
  opacity: 0;
  transform: scaleX(0);
}
.nav-toggle.active span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

/* Mobile drawer */
#mobile-drawer {
  position: fixed;
  top: var(--nav-h);
  left: 0;
  right: 0;
  z-index: 99;
  background: rgba(5, 8, 14, 0.97);
  backdrop-filter: blur(24px);
  border-bottom: 1px solid var(--white10);
  padding: 1.5rem 2rem 2rem;
  transform: translateY(-120%);
  transition: transform 0.4s var(--ease-out);
  display: none;
}
@media (max-width: 960px) {
  #mobile-drawer {
    display: block;
  }
}
#mobile-drawer.open {
  transform: translateY(0);
}
#mobile-drawer a {
  display: block;
  padding: 0.875rem 0;
  color: var(--white60);
  text-decoration: none;
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 700;
  border-bottom: 1px solid var(--white05);
  transition: color 0.2s;
}
#mobile-drawer a:hover {
  color: var(--cyan);
}
#mobile-drawer a:last-child {
  border-bottom: none;
  margin-top: 1rem;
}

/* ═══════════════════════════════════════════════
   HERO
═══════════════════════════════════════════════ */
#hero {
  min-height: 100dvh;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  padding-top: var(--nav-h);
}
.hero-grid {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.hero-grid::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(0, 212, 255, 0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(0, 212, 255, 0.04) 1px, transparent 1px);
  background-size: 72px 72px;
}
.hero-grid::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(
      ellipse 70% 60% at 60% 50%,
      rgba(0, 87, 255, 0.12) 0%,
      transparent 65%
    ),
    radial-gradient(
      ellipse 40% 40% at 15% 80%,
      rgba(0, 212, 255, 0.08) 0%,
      transparent 60%
    );
}

.hero-blob-1 {
  position: absolute;
  top: -10%;
  right: -5%;
  width: 700px;
  height: 700px;
  border-radius: 50%;
  background: radial-gradient(
    circle,
    rgba(0, 87, 255, 0.18) 0%,
    transparent 65%
  );
  filter: blur(70px);
  animation: blobFloat 12s ease-in-out infinite;
}
.hero-blob-2 {
  position: absolute;
  bottom: -15%;
  left: -8%;
  width: 550px;
  height: 550px;
  border-radius: 50%;
  background: radial-gradient(
    circle,
    rgba(0, 212, 255, 0.1) 0%,
    transparent 65%
  );
  filter: blur(60px);
  animation: blobFloat 15s ease-in-out infinite reverse;
}
@keyframes blobFloat {
  0%,
  100% {
    transform: translate(0, 0) scale(1);
  }
  33% {
    transform: translate(30px, -20px) scale(1.05);
  }
  66% {
    transform: translate(-20px, 15px) scale(0.97);
  }
}

.hero-inner {
  /* max-width: 1280px; */
  margin: 0 auto;
  padding: 5rem 6rem 4rem;
  width: 100%;
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}
@media (max-width: 960px) {
  .hero-inner {
    grid-template-columns: 1fr;
    gap: 3rem;
    padding: 3rem 1.5rem;
    text-align: center;
  }
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.4rem 1rem;
  border-radius: 99px;
  border: 1px solid rgba(0, 212, 255, 0.2);
  background: rgba(0, 212, 255, 0.05);
  color: var(--cyan);
  font-size: 0.6875rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin-bottom: 2rem;
}
.hero-badge-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--cyan);
  animation: pulse 2.5s ease infinite;
}
@keyframes pulse {
  0%,
  100% {
    opacity: 1;
    transform: scale(1);
  }
  50% {
    opacity: 0.3;
    transform: scale(0.8);
  }
}

.hero-title {
  font-family: var(--font-display);
  font-size: clamp(3rem, 4vw, 5.5rem);
  font-weight: 700;
  line-height: 1.05;
  letter-spacing: -0.03em;
  margin-bottom: 1.5rem;
}

.title-line {
  overflow: hidden;
  display: block;
}
.title-line-inner {
  display: block;
}
.text-split .word {
  display: inline-block;
  overflow: hidden;
  vertical-align: top;
}
.text-split .char {
  display: inline-block;
  will-change: transform, opacity;
}

.hero-sub {
  font-size: clamp(0.9rem, 1.4vw, 1.05rem);
  color: var(--white40);
  line-height: 1.75;
  max-width: 460px;
  font-weight: 300;
  margin-bottom: 2.5rem;
}
@media (max-width: 960px) {
  .hero-sub {
    margin: 0 auto 2.5rem;
  }
}

.hero-btns {
  display: flex;
  gap: 0.875rem;
  flex-wrap: wrap;
  margin-bottom: 3.5rem;
}
@media (max-width: 960px) {
  .hero-btns {
    justify-content: center;
  }
}

.hero-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  padding-top: 2.5rem;
  border-top: 1px solid var(--white10);
}
.stat-num {
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 800;
  letter-spacing: -0.04em;
  line-height: 1;
  margin-bottom: 0.25rem;
}
.stat-lbl {
  font-size: 0.6875rem;
  color: var(--white40);
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

/* ── Hero Visual ── */
.hero-visual {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}
@media (max-width: 960px) {
  .hero-visual {
    display: none;
  }
}

.orbit-system {
  position: relative;
  width: 440px;
  height: 440px;
}
.orbit-ring {
  position: absolute;
  border-radius: 50%;
  border: 1px solid rgba(0, 212, 255, 0.08);
}
.orbit-ring-1 {
  inset: 0;
  animation: spinRing 22s linear infinite;
}
.orbit-ring-2 {
  inset: 50px;
  border-color: rgba(0, 87, 255, 0.12);
  animation: spinRing 30s linear infinite reverse;
}
.orbit-ring-3 {
  inset: 100px;
  animation: spinRing 18s linear infinite;
}
@keyframes spinRing {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}

.orbit-dot {
  position: absolute;
  border-radius: 50%;
  top: -3px;
  left: 50%;
  transform: translateX(-50%);
}
.orbit-dot-lg {
  width: 10px;
  height: 10px;
  background: var(--cyan);
  box-shadow: 0 0 20px var(--cyan);
}
.orbit-dot-md {
  width: 7px;
  height: 7px;
  background: var(--blue);
  box-shadow: 0 0 14px var(--blue);
}
.orbit-dot-sm {
  width: 5px;
  height: 5px;
  background: var(--cyan);
  box-shadow: 0 0 10px var(--cyan);
}

.orbit-core {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}
.orbit-core-ring {
  width: 220px;
  height: 220px;
  border-radius: 50%;
  border: 1.5px solid rgba(0, 212, 255, 0.25);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow:
    0 0 80px rgba(0, 212, 255, 0.12),
    inset 0 0 40px rgba(0, 87, 255, 0.1);
  animation: coreBreath 5s ease-in-out infinite;
}
@keyframes coreBreath {
  0%,
  100% {
    box-shadow:
      0 0 60px rgba(0, 212, 255, 0.12),
      inset 0 0 30px rgba(0, 87, 255, 0.1);
  }
  50% {
    box-shadow:
      0 0 100px rgba(0, 212, 255, 0.2),
      inset 0 0 60px rgba(0, 87, 255, 0.18);
  }
}
.orbit-core-inner {
  width: 140px;
  height: 140px;
  border-radius: 50%;
  background: radial-gradient(
    circle at 40% 40%,
    rgba(0, 87, 255, 0.3),
    rgba(0, 212, 255, 0.1)
  );
  border: 1px solid rgba(0, 212, 255, 0.25);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-size: 2.5rem;
  font-weight: 800;
}

.orbit-chip {
  position: absolute;
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  padding: 0.4rem 0.75rem;
  border-radius: 8px;
  font-size: 0.6875rem;
  font-weight: 500;
  border: 1px solid;
  background: rgba(5, 8, 14, 0.9);
  white-space: nowrap;
  animation: chipFloat 6s ease-in-out infinite;
}
.chip-cyan {
  color: var(--cyan);
  border-color: rgba(0, 212, 255, 0.2);
  top: 30px;
  right: 20px;
  animation-delay: 0s;
}
.chip-gold {
  color: var(--gold);
  border-color: rgba(245, 166, 35, 0.2);
  bottom: 80px;
  left: 10px;
  animation-delay: 1.5s;
}
.chip-white {
  color: var(--white60);
  border-color: var(--white10);
  bottom: 20px;
  right: 40px;
  animation-delay: 3s;
}
@keyframes chipFloat {
  0%,
  100% {
    transform: translateY(0px);
  }
  50% {
    transform: translateY(-10px);
  }
}

/* ═══════════════════════════════════════════════
   TRUST BAR
═══════════════════════════════════════════════ */
.trust-bar {
  background: var(--ink2);
  border-top: 1px solid var(--white05);
  border-bottom: 1px solid var(--white05);
  padding: 1.25rem 0;
  overflow: hidden;
}
.trust-bar-inner {
  position: relative;
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 2rem;
  display: flex;
  align-items: center;
  gap: 2rem;
}
.trust-bar-inner::before,
.trust-bar-inner::after {
  content: none;
}
.trust-marquee {
  position: relative;
  flex: 1;
  overflow: hidden;
}
.trust-marquee::before,
.trust-marquee::after {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  width: 6rem;
  pointer-events: none;
  z-index: 2;
}
.trust-marquee::before {
  left: 0;
  background: linear-gradient(90deg, var(--ink2) 0%, transparent 100%);
}
.trust-marquee::after {
  right: 0;
  background: linear-gradient(270deg, var(--ink2) 0%, transparent 100%);
}
.trust-track {
  display: flex;
  align-items: center;
  gap: 0;
  animation: marquee 24s linear infinite;
  min-width: max-content;
  will-change: transform;
}
.trust-group {
  display: flex;
  align-items: center;
  gap: 2rem;
  white-space: nowrap;
  margin-right: 4rem;
}
.trust-item {
  font-size: 0.8125rem;
  color: var(--white20);
  font-weight: 400;
  white-space: nowrap;
  transition: color 0.2s;
  cursor: default;
}
.trust-item:hover {
  color: var(--white60);
}
.trust-sep {
  color: var(--white10);
}
@keyframes marquee {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-33.3333%);
  }
}

/* ═══════════════════════════════════════════════
   SECTION SHARED
═══════════════════════════════════════════════ */
.section-label {
  display: inline-flex;
  align-items: center;
  gap: 0.625rem;
  color: var(--cyan);
  font-size: 0.6875rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin-bottom: 1.25rem;
}
.section-label::before {
  content: "";
  width: 24px;
  height: 1px;
  background: var(--cyan);
}

.section-title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 3.5vw, 3.25rem);
  font-weight: 700;
  line-height: 1.12;
  letter-spacing: -0.025em;
  margin-bottom: 1.25rem;
}

.divider {
  height: 1px;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(0, 212, 255, 0.25),
    transparent
  );
  margin: 0 3rem;
}

/* ═══════════════════════════════════════════════
   ABOUT
═══════════════════════════════════════════════ */
#about {
  padding: 8rem 0;
  position: relative;
  overflow: hidden;
}
.about-glow {
  position: absolute;
  right: -10%;
  top: 50%;
  transform: translateY(-50%);
  width: 600px;
  height: 600px;
  border-radius: 50%;
  background: radial-gradient(
    circle,
    rgba(0, 87, 255, 0.08) 0%,
    transparent 70%
  );
  filter: blur(80px);
  pointer-events: none;
}
.about-inner {
  /* max-width: 1280px; */
  margin: 0 auto;
  padding: 0 6rem;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 6rem;
  align-items: center;
}
@media (max-width: 960px) {
  #about {
    padding: 5rem 0;
  }
  .about-inner {
    grid-template-columns: 1fr;
    gap: 3rem;
  }
}
.about-text p {
  color: var(--white40);
  line-height: 1.8;
  font-weight: 300;
  font-size: 0.9375rem;
  margin-bottom: 1.25rem;
}
.gov-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.875rem;
  padding: 0.875rem 1.25rem;
  border-radius: 14px;
  border: 1px solid rgba(245, 166, 35, 0.2);
  background: rgba(245, 166, 35, 0.05);
  margin-top: 1rem;
}
.gov-badge-icon {
  width: 36px;
  height: 36px;
  border-radius: 10px;
  background: rgba(245, 166, 35, 0.12);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.chip-gold .vector-icon {
  color: var(--gold);
}
.gov-badge-title {
  font-size: 0.8125rem;
  font-weight: 600;
  color: var(--gold);
}
.gov-badge-sub {
  font-size: 0.6875rem;
  color: var(--white40);
  margin-top: 0.1rem;
}

.about-cards {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}
.about-card {
  background: var(--ink2);
  border: 1px solid rgba(0, 212, 255, 0.08);
  border-radius: 16px;
  padding: 1.5rem;
  transition:
    border-color 0.3s,
    transform 0.3s var(--ease-out);
}
.about-card:hover {
  border-color: rgba(0, 212, 255, 0.3);
  transform: translateY(-4px);
}
.about-card-icon {
  width: 40px;
  height: 40px;
  border-radius: 10px;
  background: var(--cyan10);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1rem;
}
.about-card h3 {
  font-family: var(--font-display);
  font-size: 0.8125rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
}
.about-card p {
  font-size: 0.75rem;
  color: var(--white40);
  line-height: 1.6;
}

/* ═══════════════════════════════════════════════
   SERVICES
═══════════════════════════════════════════════ */
#services {
  padding: 8rem 0;
  background: var(--ink2);
}
@media (max-width: 960px) {
  #services {
    padding: 5rem 0;
  }
}
.services-inner {
  /* max-width: 1280px; */
  margin: 0 auto;
  padding: 0 6rem;
}
.services-header {
  text-align: center;
  margin-bottom: 4rem;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}
@media (max-width: 768px) {
  .services-grid {
    grid-template-columns: 1fr;
    gap: 1rem;
  }
}
@media (min-width: 769px) and (max-width: 960px) {
  .services-grid {
    grid-template-columns: 1fr 1fr;
  }
}

.service-card {
  position: relative;
  overflow: hidden;
  border-radius: 20px;
  padding: 2rem;
  background: var(--ink);
  border: 1px solid rgba(0, 212, 255, 0.08);
  transition: all 0.4s var(--ease-out);
}
.service-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  opacity: 0;
  transition: opacity 0.3s;
}
.sc-1::before {
  background: linear-gradient(90deg, transparent, #00d4ff, transparent);
}
.sc-2::before {
  background: linear-gradient(90deg, transparent, #0057ff, transparent);
}
.sc-3::before {
  background: linear-gradient(90deg, transparent, #f5a623, transparent);
}
.service-card:hover {
  transform: translateY(-6px);
}
.service-card:hover::before {
  opacity: 1;
}
.sc-1:hover {
  border-color: rgba(0, 212, 255, 0.3);
  box-shadow: 0 24px 64px rgba(0, 212, 255, 0.08);
}
.sc-2:hover {
  border-color: rgba(0, 87, 255, 0.3);
  box-shadow: 0 24px 64px rgba(0, 87, 255, 0.08);
}
.sc-3:hover {
  border-color: rgba(245, 166, 35, 0.3);
  box-shadow: 0 24px 64px rgba(245, 166, 35, 0.08);
}

.service-icon {
  width: 56px;
  height: 56px;
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.5rem;
}
.si-1 {
  background: linear-gradient(
    135deg,
    rgba(0, 212, 255, 0.15),
    rgba(0, 87, 255, 0.08)
  );
}
.si-2 {
  background: linear-gradient(
    135deg,
    rgba(0, 87, 255, 0.15),
    rgba(0, 212, 255, 0.08)
  );
}
.si-3 {
  background: linear-gradient(
    135deg,
    rgba(245, 166, 35, 0.15),
    rgba(251, 191, 36, 0.08)
  );
}

.service-tag {
  display: inline-block;
  padding: 0.25rem 0.75rem;
  border-radius: 99px;
  font-size: 0.6875rem;
  font-weight: 500;
  margin-bottom: 1rem;
  border: 1px solid;
}
.st-cyan {
  color: var(--cyan);
  border-color: rgba(0, 212, 255, 0.2);
  background: rgba(0, 212, 255, 0.05);
}
.st-blue {
  color: #5b88ff;
  border-color: rgba(0, 87, 255, 0.2);
  background: rgba(0, 87, 255, 0.05);
}
.st-gold {
  color: var(--gold);
  border-color: rgba(245, 166, 35, 0.2);
  background: rgba(245, 166, 35, 0.05);
}

.service-card h3 {
  font-family: var(--font-display);
  font-size: 1.0625rem;
  font-weight: 700;
  margin-bottom: 0.75rem;
}
.service-card p {
  font-size: 0.8125rem;
  color: var(--white40);
  line-height: 1.7;
}

/* ═══════════════════════════════════════════════
   PRODUCTS — PINNED HORIZONTAL SCROLL
═══════════════════════════════════════════════ */
#products-section {
  position: relative;
}
.products-sticky-header {
  position: sticky;
  padding:1.5rem 6rem!important;
  top: var(--nav-h);
  z-index: 30;
  padding: 1.5rem 2rem;
  background: rgba(5, 8, 14, 0.88);
  backdrop-filter: blur(24px);
  border-bottom: 1px solid var(--white05);
}
.products-header-inner {
  /* max-width: 1280px; */
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.products-header-inner h2 {
  font-family: var(--font-display);
  font-size: clamp(1.125rem, 2.5vw, 1.5rem);
  font-weight: 800;
  letter-spacing: -0.03em;
}
.progress-pills {
  display: flex;
  gap: 6px;
  align-items: center;
}
@media (max-width: 640px) {
  .progress-pills {
    display: none;
  }
}
.pill {
  height: 4px;
  border-radius: 99px;
  background: var(--white20);
  transition: all 0.4s var(--ease-out);
}
.pill.active {
  background: var(--cyan);
  width: 28px !important;
}

/* h-scroll */
#h-scroll-wrapper {
  min-height: 100vh;
  overflow: hidden;
}
#h-sticky {
  position: sticky;
  top: 0;
  height: 100vh;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
#h-track {
  display: flex;
  will-change: transform;
}
.h-panel {
  min-width: 100vw;
  width: 100vw;
  flex-shrink: 0;
  padding: 2rem 2rem 3rem;
  display: flex;
  align-items: center;
}
.h-panel-inner {
  /* max-width: 1280px; */
  margin: 0 auto;
  width: 100%;
  display: grid;
  padding: 0 4rem;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
}
@media (max-width: 960px) {
  .h-panel-inner {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  #h-scroll-wrapper {
    height: auto;
  }
  #h-sticky {
    position: relative;
    height: auto;
    overflow: visible;
  }
  #h-track {
    flex-direction: column;
    width: 100%;
  }
  .h-panel {
    width: 100%;
    padding: 4rem 1.5rem;
    border-bottom: 1px solid var(--white05);
  }
}

.panel-num {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.375rem 0.875rem;
  border-radius: 8px;
  font-size: 0.6875rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  border: 1px solid;
  margin-bottom: 1.5rem;
}
.pn-cyan {
  color: var(--cyan);
  border-color: rgba(0, 212, 255, 0.2);
  background: rgba(0, 212, 255, 0.06);
}
.pn-blue {
  color: #6b9dff;
  border-color: rgba(0, 87, 255, 0.2);
  background: rgba(0, 87, 255, 0.06);
}
.pn-gold {
  color: var(--gold);
  border-color: rgba(245, 166, 35, 0.2);
  background: rgba(245, 166, 35, 0.06);
}
.pn-red {
  color: #ff8080;
  border-color: rgba(255, 80, 80, 0.2);
  background: rgba(255, 80, 80, 0.06);
}

.panel-title {
  font-family: var(--font-display);
  font-size: clamp(1.75rem, 3.5vw, 2.875rem);
  font-weight: 800;
  line-height: 1.08;
  letter-spacing: -0.04em;
  margin-bottom: 1.25rem;
}
.panel-desc {
  color: var(--white40);
  font-size: 0.9rem;
  line-height: 1.75;
  font-weight: 300;
  margin-bottom: 2rem;
  max-width: 480px;
}
.feature-list {
  list-style: none;
  space-y: 0.75rem;
}
.feature-list li {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  font-size: 0.8125rem;
  color: var(--white60);
  padding: 0.5rem 0;
  border-bottom: 1px solid var(--white05);
}
.feature-list li:last-child {
  border-bottom: none;
}
.feature-arrow {
  flex-shrink: 0;
  margin-top: 2px;
}

/* Panel visuals */
.panel-visual {
  border-radius: 20px;
  border: 1px solid var(--white10);
  background: var(--ink2);
  padding: 1.75rem;
  position: relative;
  overflow: hidden;
}
.panel-visual::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(0, 212, 255, 0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(0, 212, 255, 0.03) 1px, transparent 1px);
  background-size: 40px 40px;
}
.visual-label {
  font-size: 0.6875rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--white20);
  margin-bottom: 1.5rem;
  position: relative;
}
.bar-row {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 0.875rem;
  position: relative;
}
.bar-label {
  font-size: 0.6875rem;
  color: var(--white40);
  width: 80px;
  flex-shrink: 0;
}
.bar-track {
  flex: 1;
  height: 5px;
  background: var(--white05);
  border-radius: 99px;
  overflow: hidden;
}
.bar-fill {
  height: 100%;
  border-radius: 99px;
  background: linear-gradient(90deg, #0057ff, #00d4ff);
  transition: width 1.6s var(--ease-out);
}
.bar-pct {
  font-size: 0.6875rem;
  color: var(--cyan);
  width: 32px;
  text-align: right;
  flex-shrink: 0;
}

.vis-cards {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.75rem;
  margin-top: 1.5rem;
  padding-top: 1.5rem;
  border-top: 1px solid var(--white05);
  position: relative;
}
.vis-card {
  border-radius: 12px;
  padding: 1rem;
  text-align: center;
  border: 1px solid;
}
.vc-green {
  background: rgba(52, 211, 153, 0.05);
  border-color: rgba(52, 211, 153, 0.15);
}
.vc-cyan {
  background: rgba(0, 212, 255, 0.05);
  border-color: rgba(0, 212, 255, 0.15);
}
.vis-card-num {
  font-family: var(--font-display);
  font-size: 1.375rem;
  font-weight: 800;
  margin-bottom: 0.25rem;
}
.vc-green .vis-card-num {
  color: #34d399;
}
.vc-cyan .vis-card-num {
  color: var(--cyan);
}
.vis-card-sub {
  font-size: 0.6875rem;
  color: var(--white30);
}

.pipeline-step {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.75rem;
  border-radius: 12px;
  margin-bottom: 0.625rem;
  border: 1px solid;
  position: relative;
}
.step-num {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.6875rem;
  font-weight: 700;
  flex-shrink: 0;
}
.step-text {
  font-size: 0.75rem;
  flex: 1;
}
.step-badge {
  font-size: 0.625rem;
  padding: 0.2rem 0.5rem;
  border-radius: 99px;
  border: 1px solid;
  font-weight: 500;
  flex-shrink: 0;
}

.ps-done {
  background: var(--white05);
  border-color: var(--white10);
}
.ps-done .step-num {
  background: rgba(52, 211, 153, 0.12);
  color: #34d399;
  border: 1px solid rgba(52, 211, 153, 0.2);
}
.ps-done .step-text {
  color: var(--white60);
}
.ps-done .step-badge {
  background: rgba(52, 211, 153, 0.08);
  color: #34d399;
  border-color: rgba(52, 211, 153, 0.2);
}

.ps-active {
  background: rgba(0, 212, 255, 0.04);
  border-color: rgba(0, 212, 255, 0.2);
}
.ps-active .step-num {
  background: rgba(0, 212, 255, 0.15);
  color: var(--cyan);
  border: 1px solid rgba(0, 212, 255, 0.25);
}
.ps-active .step-text {
  color: #fff;
}
.ps-active .step-badge {
  background: rgba(0, 212, 255, 0.08);
  color: var(--cyan);
  border-color: rgba(0, 212, 255, 0.2);
  animation: pulse 2s ease infinite;
}

.ps-queued {
  background: var(--white05);
  border-color: var(--white05);
  opacity: 0.45;
}
.ps-queued .step-num {
  background: var(--white05);
  color: var(--white20);
  border: 1px solid var(--white10);
}
.ps-queued .step-text {
  color: var(--white30);
}
.ps-queued .step-badge {
  background: var(--white05);
  color: var(--white30);
  border-color: var(--white10);
}

.ps-gold-done {
  background: var(--white05);
  border-color: var(--white10);
}
.ps-gold-done .step-num {
  background: rgba(245, 166, 35, 0.12);
  color: var(--gold);
  border: 1px solid rgba(245, 166, 35, 0.2);
}
.ps-gold-done .step-text {
  color: var(--white60);
}
.ps-gold-done .step-badge {
  background: rgba(52, 211, 153, 0.08);
  color: #34d399;
  border-color: rgba(52, 211, 153, 0.2);
}

.ps-gold-active {
  background: rgba(245, 166, 35, 0.04);
  border-color: rgba(245, 166, 35, 0.2);
}
.ps-gold-active .step-num {
  background: rgba(245, 166, 35, 0.15);
  color: var(--gold);
  border: 1px solid rgba(245, 166, 35, 0.25);
}
.ps-gold-active .step-text {
  color: #fff;
}
.ps-gold-active .step-badge {
  background: rgba(245, 166, 35, 0.08);
  color: var(--gold);
  border-color: rgba(245, 166, 35, 0.2);
  animation: pulse 2s ease infinite;
}

/* Sec 4 security bars */
.sec-bar-red .bar-fill {
  background: linear-gradient(90deg, #991b1b, #f87171);
}

.security-mini-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.75rem;
  margin-top: 1.5rem;
  padding-top: 1.5rem;
  border-top: 1px solid var(--white05);
  position: relative;
}
.sec-mini-card {
  border-radius: 12px;
  padding: 0.875rem 0.75rem;
  text-align: center;
  border: 1px solid var(--white10);
  background: var(--white05);
}
.sec-mini-num {
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 800;
  color: var(--cyan);
  margin-bottom: 0.2rem;
}
.sec-mini-num.red {
  color: #f87171;
}
.sec-mini-sub {
  font-size: 0.625rem;
  color: var(--white30);
}
.blink {
  animation: pulse 2s ease infinite;
}

/* ═══════════════════════════════════════════════
   WHY US
═══════════════════════════════════════════════ */
#why-us {
  padding: 8rem 0;
  background: var(--ink2);
}
@media (max-width: 960px) {
  #why-us {
    padding: 5rem 0;
  }
}
.why-inner {
  /* max-width: 1280px; */
  margin: 0 auto;
  padding: 0 6rem;
}
.why-header {
  text-align: center;
  margin-bottom: 4rem;
}

.diff-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border: 1px solid var(--white10);
  border-radius: 20px;
  overflow: hidden;
}
@media (max-width: 768px) {
  .diff-grid {
    grid-template-columns: 1fr;
  }
}
@media (min-width: 769px) and (max-width: 960px) {
  .diff-grid {
    grid-template-columns: 1fr 1fr;
  }
}

.diff-cell {
  padding: 2rem;
  background: var(--ink);
  border-right: 1px solid var(--white05);
  border-bottom: 1px solid var(--white05);
  transition: background 0.3s;
  position: relative;
  overflow: hidden;
}
.diff-cell::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--cyan), transparent);
  transform: scaleX(0);
  transition: transform 0.4s var(--ease-out);
}
.diff-cell:hover {
  background: var(--ink2);
}
.diff-cell:hover::before {
  transform: scaleX(1);
}

.diff-num {
  font-family: var(--font-display);
  font-size: 3rem;
  font-weight: 800;
  color: rgba(0, 212, 255, 0.08);
  line-height: 1;
  margin-bottom: 1rem;
  letter-spacing: -0.05em;
}
.diff-cell h3 {
  font-family: var(--font-display);
  font-size: 0.875rem;
  font-weight: 700;
  margin-bottom: 0.625rem;
}
.diff-cell p {
  font-size: 0.75rem;
  color: var(--white40);
  line-height: 1.65;
}

/* ═══════════════════════════════════════════════
   CTA
═══════════════════════════════════════════════ */
#cta {
  padding: 9rem 0;
  position: relative;
  overflow: hidden;
  text-align: center;
}
.cta-bg {
  position: absolute;
  inset: 0;
  background: radial-gradient(
    ellipse 60% 60% at 50% 50%,
    rgba(0, 87, 255, 0.12) 0%,
    transparent 65%
  );
  pointer-events: none;
}
.cta-inner {
  max-width: 680px;
  margin: 0 auto;
  padding: 0 2rem;
  position: relative;
  z-index: 2;
}
.cta-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.4rem 1rem;
  border-radius: 99px;
  border: 1px solid rgba(0, 212, 255, 0.2);
  background: rgba(0, 212, 255, 0.05);
  color: var(--cyan);
  font-size: 0.6875rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin-bottom: 2rem;
}
.cta-title {
  font-family: var(--font-display);
  font-size: clamp(2.25rem, 4.5vw, 4rem);
  font-weight: 700;
  line-height: 1.06;
  letter-spacing: -0.03em;
  margin-bottom: 1.25rem;
}
.cta-sub {
  color: var(--white40);
  font-size: 0.9375rem;
  line-height: 1.7;
  font-weight: 300;
  margin-bottom: 2.5rem;
}
.cta-btns {
  display: flex;
  gap: 0.875rem;
  justify-content: center;
  flex-wrap: wrap;
}
.btn-primary.lg,
.btn-ghost.lg {
  padding: 1rem 2rem;
  font-size: 0.875rem;
  border-radius: 12px;
}

/* ═══════════════════════════════════════════════
   FOOTER
═══════════════════════════════════════════════ */
footer {
  border-top: 1px solid var(--white05);
  background: var(--ink);
  padding: 2.25rem 6rem;
}
.footer-inner {
  /* max-width: 1280px; */
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1rem;
}
.footer-logo {
  font-family: var(--font-display);
  font-size: 0.9375rem;
  font-weight: 800;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  text-decoration: none;
  color: var(--white);
}
.footer-logo-mark {
  width: 26px;
  height: 26px;
  border-radius: 7px;
  background: linear-gradient(135deg, #0057ff, #00d4ff);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 9px;
  font-weight: 800;
  color: #fff;
}
.footer-links {
  display: flex;
  align-items: center;
  gap: 1.5rem;
}
.footer-links a {
  font-size: 0.75rem;
  color: var(--white20);
  text-decoration: none;
  transition: color 0.2s;
}
.footer-links a:hover {
  color: var(--cyan);
}
.footer-copy {
  font-size: 0.6875rem;
  color: var(--white20);
}

/* ═══════════════════════════════════════════════
   SCROLL REVEAL STATES
═══════════════════════════════════════════════ */
.reveal {
  opacity: 0;
  transform: translateY(36px);
}
.reveal-left {
  opacity: 0;
  transform: translateX(-40px);
}
.reveal-right {
  opacity: 0;
  transform: translateX(40px);
}
.reveal-scale {
  opacity: 0;
  transform: scale(0.94);
}

/* ═══════════════════════════════════════════════
   CURSOR GLOW (desktop only)
═══════════════════════════════════════════════ */
#cursor-glow {
  pointer-events: none;
  position: fixed;
  left: 0;
  top: 0;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background: rgba(0, 212, 255, 0.08);
  border: 1px solid rgba(0, 212, 255, 0.55);
  box-shadow:
    0 0 20px rgba(0, 212, 255, 0.24),
    inset 0 0 4px rgba(255, 255, 255, 0.15);
  transform: translate3d(0, 0, 0) translate(-50%, -50%);
  z-index: 9999;
  will-change: transform;
}
#cursor-glow::after {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: rgba(0, 212, 255, 0.95);
  box-shadow: 0 0 12px rgba(0, 212, 255, 0.35);
  transform: translate(-50%, -50%);
}
#cursor-glow.active {
  background: rgba(0, 212, 255, 0.14);
}
@media (min-width: 961px) {
  html,
  body,
  a,
  button,
  input,
  textarea,
  select,
  label {
    cursor: none !important;
  }
}
@media (max-width: 960px) {
  #cursor-glow {
    display: none;
  }
}

/* ═══════════════════════════════════════════════
   SECTION SCROLL PROGRESS LINE
═══════════════════════════════════════════════ */
#scroll-progress {
  position: fixed;
  top: 0;
  left: 0;
  height: 2px;
  background: linear-gradient(90deg, #0057ff, #8c9a9c);
  z-index: 9998;
  width: 0%;
  transition: width 0.1s;
}



@media(max-width:960px){
    .btn-primary{
    display: none!important;
  }
}

@media(max-width:670px){
    .nav-inner{
        padding:0 1rem;
    }
     .hero-inner{
    padding: 4rem 1rem!important;
  }
  .about-inner{
    padding:0 1rem;
  }
  .services-inner{
    padding:0 1rem;
    }  
    .products-sticky-header{
        padding:1.5rem 1rem!important;
    }
    .h-panel{
        padding:4rem 1rem;
    }
    .why-inner{
        padding:0 1rem;
    }
    #cta{
        padding:5rem 0;
    }
    .cta-inner{
        padding:0 1rem;
    }
    footer{
        padding:2.25rem 1rem;
    }
    .trust-bar-inner{
        padding:0 1rem; 
    }
    .h-panel-inner{
        padding:0 1rem;
    }
}